routing.c 31.8 KB
Newer Older
1
/* Copyright (C) 2007-2012 B.A.T.M.A.N. contributors:
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
 *
 * Marek Lindner, Simon Wunderlich
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301, USA
 */

#include "main.h"
#include "routing.h"
#include "send.h"
#include "soft-interface.h"
#include "hard-interface.h"
#include "icmp_socket.h"
#include "translation-table.h"
#include "originator.h"
#include "vis.h"
#include "unicast.h"
30
#include "bridge_loop_avoidance.h"
31

32 33
static int batadv_route_unicast_packet(struct sk_buff *skb,
				       struct hard_iface *recv_if);
34

35
void batadv_slide_own_bcast_window(struct hard_iface *hard_iface)
36
{
37
	struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
38
	struct batadv_hashtable *hash = bat_priv->orig_hash;
39
	struct hlist_node *node;
40 41 42
	struct hlist_head *head;
	struct orig_node *orig_node;
	unsigned long *word;
43
	uint32_t i;
44
	size_t word_index;
45
	uint8_t *w;
46 47 48 49

	for (i = 0; i < hash->size; i++) {
		head = &hash->table[i];

50
		rcu_read_lock();
51
		hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
52
			spin_lock_bh(&orig_node->ogm_cnt_lock);
53
			word_index = hard_iface->if_num * BATADV_NUM_WORDS;
54 55
			word = &(orig_node->bcast_own[word_index]);

56
			batadv_bit_get_packet(bat_priv, word, 1, 0);
57 58
			w = &orig_node->bcast_own_sum[hard_iface->if_num];
			*w = bitmap_weight(word, BATADV_TQ_LOCAL_WINDOW_SIZE);
59
			spin_unlock_bh(&orig_node->ogm_cnt_lock);
60
		}
61
		rcu_read_unlock();
62 63 64
	}
}

65 66 67
static void _batadv_update_route(struct bat_priv *bat_priv,
				 struct orig_node *orig_node,
				 struct neigh_node *neigh_node)
68
{
69 70
	struct neigh_node *curr_router;

71
	curr_router = batadv_orig_node_get_router(orig_node);
72

73
	/* route deleted */
74
	if ((curr_router) && (!neigh_node)) {
75 76
		batadv_dbg(BATADV_DBG_ROUTES, bat_priv,
			   "Deleting route towards: %pM\n", orig_node->orig);
77 78
		batadv_tt_global_del_orig(bat_priv, orig_node,
					  "Deleted route towards originator");
79

80 81
	/* route added */
	} else if ((!curr_router) && (neigh_node)) {
82

83
		batadv_dbg(BATADV_DBG_ROUTES, bat_priv,
84 85
			   "Adding route towards: %pM (via %pM)\n",
			   orig_node->orig, neigh_node->addr);
86
	/* route changed */
87
	} else if (neigh_node && curr_router) {
88
		batadv_dbg(BATADV_DBG_ROUTES, bat_priv,
89 90 91
			   "Changing route towards: %pM (now via %pM - was via %pM)\n",
			   orig_node->orig, neigh_node->addr,
			   curr_router->addr);
92 93
	}

94
	if (curr_router)
95
		batadv_neigh_node_free_ref(curr_router);
96 97

	/* increase refcount of new best neighbor */
98 99
	if (neigh_node && !atomic_inc_not_zero(&neigh_node->refcount))
		neigh_node = NULL;
100 101 102 103 104 105 106

	spin_lock_bh(&orig_node->neigh_list_lock);
	rcu_assign_pointer(orig_node->router, neigh_node);
	spin_unlock_bh(&orig_node->neigh_list_lock);

	/* decrease refcount of previous best neighbor */
	if (curr_router)
107
		batadv_neigh_node_free_ref(curr_router);
108 109
}

110 111
void batadv_update_route(struct bat_priv *bat_priv, struct orig_node *orig_node,
			 struct neigh_node *neigh_node)
112
{
113
	struct neigh_node *router = NULL;
114 115

	if (!orig_node)
116 117
		goto out;

118
	router = batadv_orig_node_get_router(orig_node);
119

120
	if (router != neigh_node)
121
		_batadv_update_route(bat_priv, orig_node, neigh_node);
122 123 124

out:
	if (router)
125
		batadv_neigh_node_free_ref(router);
126 127
}

128
/* caller must hold the neigh_list_lock */
129 130
void batadv_bonding_candidate_del(struct orig_node *orig_node,
				  struct neigh_node *neigh_node)
131 132 133 134 135 136 137
{
	/* this neighbor is not part of our candidate list */
	if (list_empty(&neigh_node->bonding_list))
		goto out;

	list_del_rcu(&neigh_node->bonding_list);
	INIT_LIST_HEAD(&neigh_node->bonding_list);
138
	batadv_neigh_node_free_ref(neigh_node);
139 140 141 142 143 144
	atomic_dec(&orig_node->bond_candidates);

out:
	return;
}

145 146
void batadv_bonding_candidate_add(struct orig_node *orig_node,
				  struct neigh_node *neigh_node)
147 148
{
	struct hlist_node *node;
149 150
	struct neigh_node *tmp_neigh_node, *router = NULL;
	uint8_t interference_candidate = 0;
151 152 153 154

	spin_lock_bh(&orig_node->neigh_list_lock);

	/* only consider if it has the same primary address ...  */
155 156
	if (!batadv_compare_eth(orig_node->orig,
				neigh_node->orig_node->primary_addr))
157 158
		goto candidate_del;

159
	router = batadv_orig_node_get_router(orig_node);
160
	if (!router)
161 162 163
		goto candidate_del;

	/* ... and is good enough to be considered */
164
	if (neigh_node->tq_avg < router->tq_avg - BATADV_BONDING_TQ_THRESHOLD)
165 166
		goto candidate_del;

167
	/* check if we have another candidate with the same mac address or
168 169 170 171 172 173 174 175 176 177
	 * interface. If we do, we won't select this candidate because of
	 * possible interference.
	 */
	hlist_for_each_entry_rcu(tmp_neigh_node, node,
				 &orig_node->neigh_list, list) {

		if (tmp_neigh_node == neigh_node)
			continue;

		/* we only care if the other candidate is even
178 179
		 * considered as candidate.
		 */
180 181 182 183
		if (list_empty(&tmp_neigh_node->bonding_list))
			continue;

		if ((neigh_node->if_incoming == tmp_neigh_node->if_incoming) ||
184 185
		    (batadv_compare_eth(neigh_node->addr,
					tmp_neigh_node->addr))) {
186 187 188 189 190 191 192 193 194 195 196 197 198
			interference_candidate = 1;
			break;
		}
	}

	/* don't care further if it is an interference candidate */
	if (interference_candidate)
		goto candidate_del;

	/* this neighbor already is part of our candidate list */
	if (!list_empty(&neigh_node->bonding_list))
		goto out;

199 200 201
	if (!atomic_inc_not_zero(&neigh_node->refcount))
		goto out;

202 203 204 205 206
	list_add_rcu(&neigh_node->bonding_list, &orig_node->bond_list);
	atomic_inc(&orig_node->bond_candidates);
	goto out;

candidate_del:
207
	batadv_bonding_candidate_del(orig_node, neigh_node);
208 209 210

out:
	spin_unlock_bh(&orig_node->neigh_list_lock);
211 212

	if (router)
213
		batadv_neigh_node_free_ref(router);
214 215 216
}

/* copy primary address for bonding */
217 218 219 220
void
batadv_bonding_save_primary(const struct orig_node *orig_node,
			    struct orig_node *orig_neigh_node,
			    const struct batman_ogm_packet *batman_ogm_packet)
221
{
222
	if (!(batman_ogm_packet->flags & BATADV_PRIMARIES_FIRST_HOP))
223 224 225 226 227
		return;

	memcpy(orig_neigh_node->primary_addr, orig_node->orig, ETH_ALEN);
}

228 229 230 231 232
/* checks whether the host restarted and is in the protection time.
 * returns:
 *  0 if the packet is to be accepted
 *  1 if the packet is to be ignored.
 */
233 234
int batadv_window_protected(struct bat_priv *bat_priv, int32_t seq_num_diff,
			    unsigned long *last_reset)
235
{
236 237 238 239
	if (seq_num_diff <= -BATADV_TQ_LOCAL_WINDOW_SIZE ||
	    seq_num_diff >= BATADV_EXPECTED_SEQNO_RANGE) {
		if (!batadv_has_timed_out(*last_reset,
					  BATADV_RESET_PROTECTION_MS))
240
			return 1;
241 242

		*last_reset = jiffies;
243
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
244
			   "old packet received, start protection\n");
245
	}
246

247 248 249
	return 0;
}

250 251 252
bool batadv_check_management_packet(struct sk_buff *skb,
				    struct hard_iface *hard_iface,
				    int header_len)
253 254 255 256
{
	struct ethhdr *ethhdr;

	/* drop packet if it has not necessary minimum size */
257 258
	if (unlikely(!pskb_may_pull(skb, header_len)))
		return false;
259 260 261 262 263

	ethhdr = (struct ethhdr *)skb_mac_header(skb);

	/* packet with broadcast indication but unicast recipient */
	if (!is_broadcast_ether_addr(ethhdr->h_dest))
264
		return false;
265 266 267

	/* packet with broadcast sender address */
	if (is_broadcast_ether_addr(ethhdr->h_source))
268
		return false;
269 270 271

	/* create a copy of the skb, if needed, to modify it. */
	if (skb_cow(skb, 0) < 0)
272
		return false;
273 274 275

	/* keep skb linear */
	if (skb_linearize(skb) < 0)
276
		return false;
277

278
	return true;
279 280
}

281 282
static int batadv_recv_my_icmp_packet(struct bat_priv *bat_priv,
				      struct sk_buff *skb, size_t icmp_len)
283
{
284
	struct hard_iface *primary_if = NULL;
285
	struct orig_node *orig_node = NULL;
286
	struct neigh_node *router = NULL;
287
	struct icmp_packet_rr *icmp_packet;
288
	int ret = NET_RX_DROP;
289 290 291 292

	icmp_packet = (struct icmp_packet_rr *)skb->data;

	/* add data to device queue */
293
	if (icmp_packet->msg_type != BATADV_ECHO_REQUEST) {
294
		batadv_socket_receive_packet(icmp_packet, icmp_len);
295
		goto out;
296 297
	}

298
	primary_if = batadv_primary_if_get_selected(bat_priv);
299
	if (!primary_if)
300
		goto out;
301 302 303

	/* answer echo request (ping) */
	/* get routing information */
304
	orig_node = batadv_orig_hash_find(bat_priv, icmp_packet->orig);
305
	if (!orig_node)
306
		goto out;
307

308
	router = batadv_orig_node_get_router(orig_node);
309 310
	if (!router)
		goto out;
311

312
	/* create a copy of the skb, if needed, to modify it. */
313
	if (skb_cow(skb, ETH_HLEN) < 0)
314 315 316 317 318
		goto out;

	icmp_packet = (struct icmp_packet_rr *)skb->data;

	memcpy(icmp_packet->dst, icmp_packet->orig, ETH_ALEN);
319
	memcpy(icmp_packet->orig, primary_if->net_dev->dev_addr, ETH_ALEN);
320
	icmp_packet->msg_type = BATADV_ECHO_REPLY;
321
	icmp_packet->header.ttl = BATADV_TTL;
322

323
	batadv_send_skb_packet(skb, router->if_incoming, router->addr);
324
	ret = NET_RX_SUCCESS;
325

326
out:
327
	if (primary_if)
328
		batadv_hardif_free_ref(primary_if);
329
	if (router)
330
		batadv_neigh_node_free_ref(router);
331
	if (orig_node)
332
		batadv_orig_node_free_ref(orig_node);
333 334 335
	return ret;
}

336 337
static int batadv_recv_icmp_ttl_exceeded(struct bat_priv *bat_priv,
					 struct sk_buff *skb)
338
{
339
	struct hard_iface *primary_if = NULL;
340
	struct orig_node *orig_node = NULL;
341
	struct neigh_node *router = NULL;
342
	struct icmp_packet *icmp_packet;
343
	int ret = NET_RX_DROP;
344 345 346 347

	icmp_packet = (struct icmp_packet *)skb->data;

	/* send TTL exceeded if packet is an echo request (traceroute) */
348
	if (icmp_packet->msg_type != BATADV_ECHO_REQUEST) {
349 350
		pr_debug("Warning - can't forward icmp packet from %pM to %pM: ttl exceeded\n",
			 icmp_packet->orig, icmp_packet->dst);
351
		goto out;
352 353
	}

354
	primary_if = batadv_primary_if_get_selected(bat_priv);
355
	if (!primary_if)
356
		goto out;
357 358

	/* get routing information */
359
	orig_node = batadv_orig_hash_find(bat_priv, icmp_packet->orig);
360
	if (!orig_node)
361
		goto out;
362

363
	router = batadv_orig_node_get_router(orig_node);
364 365
	if (!router)
		goto out;
366

367
	/* create a copy of the skb, if needed, to modify it. */
368
	if (skb_cow(skb, ETH_HLEN) < 0)
369
		goto out;
370

371
	icmp_packet = (struct icmp_packet *)skb->data;
372

373
	memcpy(icmp_packet->dst, icmp_packet->orig, ETH_ALEN);
374
	memcpy(icmp_packet->orig, primary_if->net_dev->dev_addr, ETH_ALEN);
375
	icmp_packet->msg_type = BATADV_TTL_EXCEEDED;
376
	icmp_packet->header.ttl = BATADV_TTL;
377

378
	batadv_send_skb_packet(skb, router->if_incoming, router->addr);
379
	ret = NET_RX_SUCCESS;
380

381
out:
382
	if (primary_if)
383
		batadv_hardif_free_ref(primary_if);
384
	if (router)
385
		batadv_neigh_node_free_ref(router);
386
	if (orig_node)
387
		batadv_orig_node_free_ref(orig_node);
388 389 390 391
	return ret;
}


392
int batadv_recv_icmp_packet(struct sk_buff *skb, struct hard_iface *recv_if)
393 394 395 396
{
	struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
	struct icmp_packet_rr *icmp_packet;
	struct ethhdr *ethhdr;
397
	struct orig_node *orig_node = NULL;
398
	struct neigh_node *router = NULL;
399
	int hdr_size = sizeof(struct icmp_packet);
400
	int ret = NET_RX_DROP;
401

402
	/* we truncate all incoming icmp packets if they don't match our size */
403 404 405 406 407
	if (skb->len >= sizeof(struct icmp_packet_rr))
		hdr_size = sizeof(struct icmp_packet_rr);

	/* drop packet if it has not necessary minimum size */
	if (unlikely(!pskb_may_pull(skb, hdr_size)))
408
		goto out;
409 410 411 412 413

	ethhdr = (struct ethhdr *)skb_mac_header(skb);

	/* packet with unicast indication but broadcast recipient */
	if (is_broadcast_ether_addr(ethhdr->h_dest))
414
		goto out;
415 416 417

	/* packet with broadcast sender address */
	if (is_broadcast_ether_addr(ethhdr->h_source))
418
		goto out;
419 420

	/* not for me */
421
	if (!batadv_is_my_mac(ethhdr->h_dest))
422
		goto out;
423 424 425 426 427

	icmp_packet = (struct icmp_packet_rr *)skb->data;

	/* add record route information if not full */
	if ((hdr_size == sizeof(struct icmp_packet_rr)) &&
428
	    (icmp_packet->rr_cur < BATADV_RR_LEN)) {
429
		memcpy(&(icmp_packet->rr[icmp_packet->rr_cur]),
430
		       ethhdr->h_dest, ETH_ALEN);
431 432 433 434
		icmp_packet->rr_cur++;
	}

	/* packet for me */
435
	if (batadv_is_my_mac(icmp_packet->dst))
436
		return batadv_recv_my_icmp_packet(bat_priv, skb, hdr_size);
437 438

	/* TTL exceeded */
439
	if (icmp_packet->header.ttl < 2)
440
		return batadv_recv_icmp_ttl_exceeded(bat_priv, skb);
441 442

	/* get routing information */
443
	orig_node = batadv_orig_hash_find(bat_priv, icmp_packet->dst);
444
	if (!orig_node)
445
		goto out;
446

447
	router = batadv_orig_node_get_router(orig_node);
448 449
	if (!router)
		goto out;
450

451
	/* create a copy of the skb, if needed, to modify it. */
452
	if (skb_cow(skb, ETH_HLEN) < 0)
453
		goto out;
454

455
	icmp_packet = (struct icmp_packet_rr *)skb->data;
456

457
	/* decrement ttl */
458
	icmp_packet->header.ttl--;
459 460

	/* route it */
461
	batadv_send_skb_packet(skb, router->if_incoming, router->addr);
462
	ret = NET_RX_SUCCESS;
463

464
out:
465
	if (router)
466
		batadv_neigh_node_free_ref(router);
467
	if (orig_node)
468
		batadv_orig_node_free_ref(orig_node);
469 470 471
	return ret;
}

472 473 474 475
/* In the bonding case, send the packets in a round
 * robin fashion over the remaining interfaces.
 *
 * This method rotates the bonding list and increases the
476 477
 * returned router's refcount.
 */
478 479 480
static struct neigh_node *
batadv_find_bond_router(struct orig_node *primary_orig,
			const struct hard_iface *recv_if)
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510
{
	struct neigh_node *tmp_neigh_node;
	struct neigh_node *router = NULL, *first_candidate = NULL;

	rcu_read_lock();
	list_for_each_entry_rcu(tmp_neigh_node, &primary_orig->bond_list,
				bonding_list) {
		if (!first_candidate)
			first_candidate = tmp_neigh_node;

		/* recv_if == NULL on the first node. */
		if (tmp_neigh_node->if_incoming == recv_if)
			continue;

		if (!atomic_inc_not_zero(&tmp_neigh_node->refcount))
			continue;

		router = tmp_neigh_node;
		break;
	}

	/* use the first candidate if nothing was found. */
	if (!router && first_candidate &&
	    atomic_inc_not_zero(&first_candidate->refcount))
		router = first_candidate;

	if (!router)
		goto out;

	/* selected should point to the next element
511 512
	 * after the current router
	 */
513 514
	spin_lock_bh(&primary_orig->neigh_list_lock);
	/* this is a list_move(), which unfortunately
515 516
	 * does not exist as rcu version
	 */
517 518 519 520 521 522 523 524 525 526 527 528 529 530
	list_del_rcu(&primary_orig->bond_list);
	list_add_rcu(&primary_orig->bond_list,
		     &router->bonding_list);
	spin_unlock_bh(&primary_orig->neigh_list_lock);

out:
	rcu_read_unlock();
	return router;
}

/* Interface Alternating: Use the best of the
 * remaining candidates which are not using
 * this interface.
 *
531 532
 * Increases the returned router's refcount
 */
533 534 535
static struct neigh_node *
batadv_find_ifalter_router(struct orig_node *primary_orig,
			   const struct hard_iface *recv_if)
536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
{
	struct neigh_node *tmp_neigh_node;
	struct neigh_node *router = NULL, *first_candidate = NULL;

	rcu_read_lock();
	list_for_each_entry_rcu(tmp_neigh_node, &primary_orig->bond_list,
				bonding_list) {
		if (!first_candidate)
			first_candidate = tmp_neigh_node;

		/* recv_if == NULL on the first node. */
		if (tmp_neigh_node->if_incoming == recv_if)
			continue;

		if (!atomic_inc_not_zero(&tmp_neigh_node->refcount))
			continue;

		/* if we don't have a router yet
554 555
		 * or this one is better, choose it.
		 */
556 557 558
		if ((!router) ||
		    (tmp_neigh_node->tq_avg > router->tq_avg)) {
			/* decrement refcount of
559 560
			 * previously selected router
			 */
561
			if (router)
562
				batadv_neigh_node_free_ref(router);
563 564 565 566 567

			router = tmp_neigh_node;
			atomic_inc_not_zero(&router->refcount);
		}

568
		batadv_neigh_node_free_ref(tmp_neigh_node);
569 570 571 572 573 574 575 576 577 578 579
	}

	/* use the first candidate if nothing was found. */
	if (!router && first_candidate &&
	    atomic_inc_not_zero(&first_candidate->refcount))
		router = first_candidate;

	rcu_read_unlock();
	return router;
}

580
int batadv_recv_tt_query(struct sk_buff *skb, struct hard_iface *recv_if)
581 582 583
{
	struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
	struct tt_query_packet *tt_query;
584
	uint16_t tt_size;
585
	struct ethhdr *ethhdr;
586
	char tt_flag;
587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607

	/* drop packet if it has not necessary minimum size */
	if (unlikely(!pskb_may_pull(skb, sizeof(struct tt_query_packet))))
		goto out;

	/* I could need to modify it */
	if (skb_cow(skb, sizeof(struct tt_query_packet)) < 0)
		goto out;

	ethhdr = (struct ethhdr *)skb_mac_header(skb);

	/* packet with unicast indication but broadcast recipient */
	if (is_broadcast_ether_addr(ethhdr->h_dest))
		goto out;

	/* packet with broadcast sender address */
	if (is_broadcast_ether_addr(ethhdr->h_source))
		goto out;

	tt_query = (struct tt_query_packet *)skb->data;

608
	switch (tt_query->flags & BATADV_TT_QUERY_TYPE_MASK) {
609
	case BATADV_TT_REQUEST:
610
		batadv_inc_counter(bat_priv, BATADV_CNT_TT_REQUEST_RX);
611

612
		/* If we cannot provide an answer the tt_request is
613 614
		 * forwarded
		 */
615
		if (!batadv_send_tt_response(bat_priv, tt_query)) {
616 617 618 619 620
			if (tt_query->flags & BATADV_TT_FULL_TABLE)
				tt_flag = 'F';
			else
				tt_flag = '.';

621
			batadv_dbg(BATADV_DBG_TT, bat_priv,
622 623 624
				   "Routing TT_REQUEST to %pM [%c]\n",
				   tt_query->dst,
				   tt_flag);
625
			return batadv_route_unicast_packet(skb, recv_if);
626 627
		}
		break;
628
	case BATADV_TT_RESPONSE:
629
		batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_RX);
630

631
		if (batadv_is_my_mac(tt_query->dst)) {
632
			/* packet needs to be linearized to access the TT
633 634
			 * changes
			 */
635 636
			if (skb_linearize(skb) < 0)
				goto out;
637 638
			/* skb_linearize() possibly changed skb->data */
			tt_query = (struct tt_query_packet *)skb->data;
639

640
			tt_size = batadv_tt_len(ntohs(tt_query->tt_data));
641 642 643

			/* Ensure we have all the claimed data */
			if (unlikely(skb_headlen(skb) <
644
				     sizeof(struct tt_query_packet) + tt_size))
645 646
				goto out;

647
			batadv_handle_tt_response(bat_priv, tt_query);
648
		} else {
649 650 651 652
			if (tt_query->flags & BATADV_TT_FULL_TABLE)
				tt_flag =  'F';
			else
				tt_flag = '.';
653
			batadv_dbg(BATADV_DBG_TT, bat_priv,
654 655 656
				   "Routing TT_RESPONSE to %pM [%c]\n",
				   tt_query->dst,
				   tt_flag);
657
			return batadv_route_unicast_packet(skb, recv_if);
658 659 660 661 662 663 664 665 666
		}
		break;
	}

out:
	/* returning NET_RX_DROP will make the caller function kfree the skb */
	return NET_RX_DROP;
}

667
int batadv_recv_roam_adv(struct sk_buff *skb, struct hard_iface *recv_if)
668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687
{
	struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
	struct roam_adv_packet *roam_adv_packet;
	struct orig_node *orig_node;
	struct ethhdr *ethhdr;

	/* drop packet if it has not necessary minimum size */
	if (unlikely(!pskb_may_pull(skb, sizeof(struct roam_adv_packet))))
		goto out;

	ethhdr = (struct ethhdr *)skb_mac_header(skb);

	/* packet with unicast indication but broadcast recipient */
	if (is_broadcast_ether_addr(ethhdr->h_dest))
		goto out;

	/* packet with broadcast sender address */
	if (is_broadcast_ether_addr(ethhdr->h_source))
		goto out;

688
	batadv_inc_counter(bat_priv, BATADV_CNT_TT_ROAM_ADV_RX);
689

690 691
	roam_adv_packet = (struct roam_adv_packet *)skb->data;

692
	if (!batadv_is_my_mac(roam_adv_packet->dst))
693
		return batadv_route_unicast_packet(skb, recv_if);
694

695 696 697 698
	/* check if it is a backbone gateway. we don't accept
	 * roaming advertisement from it, as it has the same
	 * entries as we have.
	 */
699
	if (batadv_bla_is_backbone_gw_orig(bat_priv, roam_adv_packet->src))
700 701
		goto out;

702
	orig_node = batadv_orig_hash_find(bat_priv, roam_adv_packet->src);
703 704 705
	if (!orig_node)
		goto out;

706
	batadv_dbg(BATADV_DBG_TT, bat_priv,
707 708
		   "Received ROAMING_ADV from %pM (client %pM)\n",
		   roam_adv_packet->src, roam_adv_packet->client);
709

710
	batadv_tt_global_add(bat_priv, orig_node, roam_adv_packet->client,
711
			     BATADV_TT_CLIENT_ROAM,
712
			     atomic_read(&orig_node->last_ttvn) + 1);
713 714 715

	/* Roaming phase starts: I have new information but the ttvn has not
	 * been incremented yet. This flag will make me check all the incoming
716 717
	 * packets for the correct destination.
	 */
718 719
	bat_priv->tt_poss_change = true;

720
	batadv_orig_node_free_ref(orig_node);
721 722 723 724 725
out:
	/* returning NET_RX_DROP will make the caller function kfree the skb */
	return NET_RX_DROP;
}

726
/* find a suitable router for this originator, and use
727
 * bonding if possible. increases the found neighbors
728 729
 * refcount.
 */
730 731 732
struct neigh_node *batadv_find_router(struct bat_priv *bat_priv,
				      struct orig_node *orig_node,
				      const struct hard_iface *recv_if)
733 734 735
{
	struct orig_node *primary_orig_node;
	struct orig_node *router_orig;
736
	struct neigh_node *router;
737 738
	static uint8_t zero_mac[ETH_ALEN] = {0, 0, 0, 0, 0, 0};
	int bonding_enabled;
739
	uint8_t *primary_addr;
740 741 742 743

	if (!orig_node)
		return NULL;

744
	router = batadv_orig_node_get_router(orig_node);
745
	if (!router)
746
		goto err;
747 748

	/* without bonding, the first node should
749 750
	 * always choose the default router.
	 */
751 752
	bonding_enabled = atomic_read(&bat_priv->bonding);

753 754
	rcu_read_lock();
	/* select default router to output */
755
	router_orig = router->orig_node;
756 757
	if (!router_orig)
		goto err_unlock;
758 759 760

	if ((!recv_if) && (!bonding_enabled))
		goto return_router;
761

762 763
	primary_addr = router_orig->primary_addr;

764
	/* if we have something in the primary_addr, we can search
765 766
	 * for a potential bonding candidate.
	 */
767
	if (batadv_compare_eth(primary_addr, zero_mac))
768
		goto return_router;
769 770

	/* find the orig_node which has the primary interface. might
771 772
	 * even be the same as our router_orig in many cases
	 */
773
	if (batadv_compare_eth(primary_addr, router_orig->orig)) {
774 775
		primary_orig_node = router_orig;
	} else {
776 777
		primary_orig_node = batadv_orig_hash_find(bat_priv,
							  primary_addr);
778
		if (!primary_orig_node)
779
			goto return_router;
780

781
		batadv_orig_node_free_ref(primary_orig_node);
782 783 784
	}

	/* with less than 2 candidates, we can't do any
785 786
	 * bonding and prefer the original router.
	 */
787 788
	if (atomic_read(&primary_orig_node->bond_candidates) < 2)
		goto return_router;
789 790 791

	/* all nodes between should choose a candidate which
	 * is is not on the interface where the packet came
792 793
	 * in.
	 */
794
	batadv_neigh_node_free_ref(router);
795

796
	if (bonding_enabled)
797
		router = batadv_find_bond_router(primary_orig_node, recv_if);
798
	else
799
		router = batadv_find_ifalter_router(primary_orig_node, recv_if);
800

801
return_router:
802
	if (router && router->if_incoming->if_status != BATADV_IF_ACTIVE)
803 804
		goto err_unlock;

805
	rcu_read_unlock();
806
	return router;
807 808 809 810
err_unlock:
	rcu_read_unlock();
err:
	if (router)
811
		batadv_neigh_node_free_ref(router);
812
	return NULL;
813 814
}

815
static int batadv_check_unicast_packet(struct sk_buff *skb, int hdr_size)
816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833
{
	struct ethhdr *ethhdr;

	/* drop packet if it has not necessary minimum size */
	if (unlikely(!pskb_may_pull(skb, hdr_size)))
		return -1;

	ethhdr = (struct ethhdr *)skb_mac_header(skb);

	/* packet with unicast indication but broadcast recipient */
	if (is_broadcast_ether_addr(ethhdr->h_dest))
		return -1;

	/* packet with broadcast sender address */
	if (is_broadcast_ether_addr(ethhdr->h_source))
		return -1;

	/* not for me */
834
	if (!batadv_is_my_mac(ethhdr->h_dest))
835 836 837 838 839
		return -1;

	return 0;
}

840 841
static int batadv_route_unicast_packet(struct sk_buff *skb,
				       struct hard_iface *recv_if)
842 843
{
	struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
844 845
	struct orig_node *orig_node = NULL;
	struct neigh_node *neigh_node = NULL;
846 847
	struct unicast_packet *unicast_packet;
	struct ethhdr *ethhdr = (struct ethhdr *)skb_mac_header(skb);
848
	int ret = NET_RX_DROP;
849 850 851 852 853
	struct sk_buff *new_skb;

	unicast_packet = (struct unicast_packet *)skb->data;

	/* TTL exceeded */
854
	if (unicast_packet->header.ttl < 2) {
855 856
		pr_debug("Warning - can't forward unicast packet from %pM to %pM: ttl exceeded\n",
			 ethhdr->h_source, unicast_packet->dest);
857
		goto out;
858 859 860
	}

	/* get routing information */
861
	orig_node = batadv_orig_hash_find(bat_priv, unicast_packet->dest);
862

863
	if (!orig_node)
864
		goto out;
865

866
	/* find_router() increases neigh_nodes refcount if found. */
867
	neigh_node = batadv_find_router(bat_priv, orig_node, recv_if);
868

869
	if (!neigh_node)
870
		goto out;
871 872

	/* create a copy of the skb, if needed, to modify it. */
873
	if (skb_cow(skb, ETH_HLEN) < 0)
874
		goto out;
875 876 877

	unicast_packet = (struct unicast_packet *)skb->data;

878
	if (unicast_packet->header.packet_type == BATADV_UNICAST &&
879
	    atomic_read(&bat_priv->fragmentation) &&
880
	    skb->len > neigh_node->if_incoming->net_dev->mtu) {
881 882 883
		ret = batadv_frag_send_skb(skb, bat_priv,
					   neigh_node->if_incoming,
					   neigh_node->addr);
884 885
		goto out;
	}
886

887
	if (unicast_packet->header.packet_type == BATADV_UNICAST_FRAG &&
888 889
	    batadv_frag_can_reassemble(skb,
				       neigh_node->if_incoming->net_dev->mtu)) {
890

891
		ret = batadv_frag_reassemble_skb(skb, bat_priv, &new_skb);
892 893

		if (ret == NET_RX_DROP)
894
			goto out;
895 896

		/* packet was buffered for late merge */
897 898 899 900
		if (!new_skb) {
			ret = NET_RX_SUCCESS;
			goto out;
		}
901 902 903 904 905 906

		skb = new_skb;
		unicast_packet = (struct unicast_packet *)skb->data;
	}

	/* decrement ttl */
907
	unicast_packet->header.ttl--;
908

909
	/* Update stats counter */
910 911
	batadv_inc_counter(bat_priv, BATADV_CNT_FORWARD);
	batadv_add_counter(bat_priv, BATADV_CNT_FORWARD_BYTES,
912 913
			   skb->len + ETH_HLEN);

914
	/* route it */
915
	batadv_send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr);
916
	ret = NET_RX_SUCCESS;
917

918 919
out:
	if (neigh_node)
920
		batadv_neigh_node_free_ref(neigh_node);
921
	if (orig_node)
922
		batadv_orig_node_free_ref(orig_node);
923
	return ret;
924 925
}

926 927
static int batadv_check_unicast_ttvn(struct bat_priv *bat_priv,
				     struct sk_buff *skb) {
928 929 930 931 932
	uint8_t curr_ttvn;
	struct orig_node *orig_node;
	struct ethhdr *ethhdr;
	struct hard_iface *primary_if;
	struct unicast_packet *unicast_packet;
933
	bool tt_poss_change;
934
	int is_old_ttvn;
935 936 937 938 939 940 941

	/* I could need to modify it */
	if (skb_cow(skb, sizeof(struct unicast_packet)) < 0)
		return 0;

	unicast_packet = (struct unicast_packet *)skb->data;

942
	if (batadv_is_my_mac(unicast_packet->dest)) {
943
		tt_poss_change = bat_priv->tt_poss_change;
944
		curr_ttvn = (uint8_t)atomic_read(&bat_priv->ttvn);
945
	} else {
946 947
		orig_node = batadv_orig_hash_find(bat_priv,
						  unicast_packet->dest);
948 949 950 951 952

		if (!orig_node)
			return 0;

		curr_ttvn = (uint8_t)atomic_read(&orig_node->last_ttvn);
953
		tt_poss_change = orig_node->tt_poss_change;
954
		batadv_orig_node_free_ref(orig_node);
955 956 957
	}

	/* Check whether I have to reroute the packet */
958 959
	is_old_ttvn = batadv_seq_before(unicast_packet->ttvn, curr_ttvn);
	if (is_old_ttvn || tt_poss_change) {
960 961 962
		/* check if there is enough data before accessing it */
		if (pskb_may_pull(skb, sizeof(struct unicast_packet) +
				  ETH_HLEN) < 0)
963 964 965 966
			return 0;

		ethhdr = (struct ethhdr *)(skb->data +
			sizeof(struct unicast_packet));
967 968 969 970

		/* we don't have an updated route for this client, so we should
		 * not try to reroute the packet!!
		 */
971 972
		if (batadv_tt_global_client_is_roaming(bat_priv,
						       ethhdr->h_dest))
973 974
			return 1;

975 976
		orig_node = batadv_transtable_search(bat_priv, NULL,
						     ethhdr->h_dest);
977 978

		if (!orig_node) {
979
			if (!batadv_is_my_client(bat_priv, ethhdr->h_dest))
980
				return 0;
981
			primary_if = batadv_primary_if_get_selected(bat_priv);
982 983 984 985
			if (!primary_if)
				return 0;
			memcpy(unicast_packet->dest,
			       primary_if->net_dev->dev_addr, ETH_ALEN);
986
			batadv_hardif_free_ref(primary_if);
987 988 989 990 991
		} else {
			memcpy(unicast_packet->dest, orig_node->orig,
			       ETH_ALEN);
			curr_ttvn = (uint8_t)
				atomic_read(&orig_node->last_ttvn);
992
			batadv_orig_node_free_ref(orig_node);
993 994
		}

995
		batadv_dbg(BATADV_DBG_ROUTES, bat_priv,
996 997 998
			   "TTVN mismatch (old_ttvn %u new_ttvn %u)! Rerouting unicast packet (for %pM) to %pM\n",
			   unicast_packet->ttvn, curr_ttvn, ethhdr->h_dest,
			   unicast_packet->dest);
999 1000 1001 1002 1003 1004

		unicast_packet->ttvn = curr_ttvn;
	}
	return 1;
}

1005
int batadv_recv_unicast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
1006
{
1007
	struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
1008
	struct unicast_packet *unicast_packet;
1009
	int hdr_size = sizeof(*unicast_packet);
1010

1011
	if (batadv_check_unicast_packet(skb, hdr_size) < 0)
1012 1013
		return NET_RX_DROP;

1014
	if (!batadv_check_unicast_ttvn(bat_priv, skb))
1015 1016
		return NET_RX_DROP;

1017 1018 1019
	unicast_packet = (struct unicast_packet *)skb->data;

	/* packet for me */
1020
	if (batadv_is_my_mac(unicast_packet->dest)) {
1021 1022
		batadv_interface_rx(recv_if->soft_iface, skb, recv_if,
				    hdr_size);
1023 1024 1025
		return NET_RX_SUCCESS;
	}

1026
	return batadv_route_unicast_packet(skb, recv_if);
1027 1028
}

1029 1030
int batadv_recv_ucast_frag_packet(struct sk_buff *skb,
				  struct hard_iface *recv_if)
1031 1032 1033
{
	struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
	struct unicast_frag_packet *unicast_packet;
1034
	int hdr_size = sizeof(*unicast_packet);
1035 1036 1037
	struct sk_buff *new_skb = NULL;
	int ret;

1038
	if (batadv_check_unicast_packet(skb, hdr_size) < 0)
1039 1040
		return NET_RX_DROP;

1041
	if (!batadv_check_unicast_ttvn(bat_priv, skb))
1042 1043
		return NET_RX_DROP;

1044 1045 1046
	unicast_packet = (struct unicast_frag_packet *)skb->data;

	/* packet for me */
1047
	if (batadv_is_my_mac(unicast_packet->dest)) {
1048

1049
		ret = batadv_frag_reassemble_skb(skb, bat_priv, &new_skb);
1050 1051 1052 1053 1054 1055 1056 1057

		if (ret == NET_RX_DROP)
			return NET_RX_DROP;

		/* packet was buffered for late merge */
		if (!new_skb)
			return NET_RX_SUCCESS;

1058 1059
		batadv_interface_rx(recv_if->soft_iface, new_skb, recv_if,
				    sizeof(struct unicast_packet));
1060 1061 1062
		return NET_RX_SUCCESS;
	}

1063
	return batadv_route_unicast_packet(skb, recv_if);
1064 1065 1066
}


1067
int batadv_recv_bcast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
1068 1069
{
	struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
1070
	struct orig_node *orig_node = NULL;
1071 1072
	struct bcast_packet *bcast_packet;
	struct ethhdr *ethhdr;
1073
	int hdr_size = sizeof(*bcast_packet);
1074
	int ret = NET_RX_DROP;
1075 1076 1077 1078
	int32_t seq_diff;

	/* drop packet if it has not necessary minimum size */
	if (unlikely(!pskb_may_pull(skb, hdr_size)))
1079
		goto out;
1080 1081 1082 1083 1084

	ethhdr = (struct ethhdr *)skb_mac_header(skb);

	/* packet with broadcast indication but unicast recipient */
	if (!is_broadcast_ether_addr(ethhdr->h_dest))
1085
		goto out;
1086 1087 1088

	/* packet with broadcast sender address */
	if (is_broadcast_ether_addr(ethhdr->h_source))
1089
		goto out;
1090 1091

	/* ignore broadcasts sent by myself */
1092
	if (batadv_is_my_mac(ethhdr->h_source))
1093
		goto out;
1094 1095 1096 1097

	bcast_packet = (struct bcast_packet *)skb->data;

	/* ignore broadcasts originated by myself */
1098
	if (batadv_is_my_mac(bcast_packet->orig))
1099
		goto out;
1100

1101
	if (bcast_packet->header.ttl < 2)
1102
		goto out;
1103

1104
	orig_node = batadv_orig_hash_find(bat_priv, bcast_packet->orig);
1105 1106

	if (!orig_node)
1107
		goto out;
1108

1109
	spin_lock_bh(&orig_node->bcast_seqno_lock);
1110 1111

	/* check whether the packet is a duplicate */
1112 1113
	if (batadv_test_bit(orig_node->bcast_bits, orig_node->last_bcast_seqno,
			    ntohl(bcast_packet->seqno)))
1114
		goto spin_unlock;
1115 1116 1117 1118

	seq_diff = ntohl(bcast_packet->seqno) - orig_node->last_bcast_seqno;

	/* check whether the packet is old and the host just restarted. */
1119 1120
	if (batadv_window_protected(bat_priv, seq_diff,
				    &orig_node->bcast_seqno_reset))
1121
		goto spin_unlock;
1122 1123

	/* mark broadcast in flood history, update window position
1124 1125
	 * if required.
	 */
1126
	if (batadv_bit_get_packet(bat_priv, orig_node->bcast_bits, seq_diff, 1))
1127 1128
		orig_node->last_bcast_seqno = ntohl(bcast_packet->seqno);

1129 1130
	spin_unlock_bh(&orig_node->bcast_seqno_lock);

1131
	/* check whether this has been sent by another originator before */
1132
	if (batadv_bla_check_bcast_duplist(bat_priv, bcast_packet, hdr_size))
1133 1134
		goto out;

1135
	/* rebroadcast packet */
1136
	batadv_add_bcast_packet_to_list(bat_priv, skb, 1);
1137

1138 1139 1140
	/* don't hand the broadcast up if it is from an originator
	 * from the same backbone.
	 */
1141
	if (batadv_bla_is_backbone_gw(skb, orig_node, hdr_size))
1142 1143
		goto out;

1144
	/* broadcast for me */
1145
	batadv_interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size);
1146 1147
	ret = NET_RX_SUCCESS;
	goto out;
1148

1149 1150 1151 1152
spin_unlock:
	spin_unlock_bh(&orig_node->bcast_seqno_lock);
out:
	if (orig_node)
1153
		batadv_orig_node_free_ref(orig_node);
1154
	return ret;
1155 1156
}

1157
int batadv_recv_vis_packet(struct sk_buff *skb, struct hard_iface *recv_if)
1158 1159 1160 1161
{
	struct vis_packet *vis_packet;
	struct ethhdr *ethhdr;
	struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
1162
	int hdr_size = sizeof(*vis_packet);
1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174

	/* keep skb linear */
	if (skb_linearize(skb) < 0)
		return NET_RX_DROP;

	if (unlikely(!pskb_may_pull(skb, hdr_size)))
		return NET_RX_DROP;

	vis_packet = (struct vis_packet *)skb->data;
	ethhdr = (struct ethhdr *)skb_mac_header(skb);

	/* not for me */
1175
	if (!batadv_is_my_mac(ethhdr->h_dest))
1176 1177 1178
		return NET_RX_DROP;

	/* ignore own packets */
1179
	if (batadv_is_my_mac(vis_packet->vis_orig))
1180 1181
		return NET_RX_DROP;

1182
	if (batadv_is_my_mac(vis_packet->sender_orig))
1183 1184 1185
		return NET_RX_DROP;

	switch (vis_packet->vis_type) {
1186
	case BATADV_VIS_TYPE_SERVER_SYNC:
1187 1188
		batadv_receive_server_sync_packet(bat_priv, vis_packet,
						  skb_headlen(skb));
1189 1190
		break;

1191
	case BATADV_VIS_TYPE_CLIENT_UPDATE:
1192 1193
		batadv_receive_client_update_packet(bat_priv, vis_packet,
						    skb_headlen(skb));
1194 1195 1196 1197 1198 1199 1200
		break;

	default:	/* ignore unknown packet */
		break;
	}

	/* We take a copy of the data in the packet, so we should
1201 1202
	 * always free the skbuf.
	 */
1203 1204
	return NET_RX_DROP;
}