routing.c 31.9 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
static int batadv_route_unicast_packet(struct sk_buff *skb,
33
				       struct batadv_hard_iface *recv_if);
34

35
void batadv_slide_own_bcast_window(struct batadv_hard_iface *hard_iface)
36
{
37
	struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
38
	struct batadv_hashtable *hash = bat_priv->orig_hash;
39
	struct hlist_node *node;
40
	struct hlist_head *head;
41
	struct batadv_orig_node *orig_node;
42
	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 batadv_priv *bat_priv,
				 struct batadv_orig_node *orig_node,
				 struct batadv_neigh_node *neigh_node)
68
{
69
	struct batadv_neigh_node *curr_router;
70

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 112
void batadv_update_route(struct batadv_priv *bat_priv,
			 struct batadv_orig_node *orig_node,
			 struct batadv_neigh_node *neigh_node)
113
{
114
	struct batadv_neigh_node *router = NULL;
115 116

	if (!orig_node)
117 118
		goto out;

119
	router = batadv_orig_node_get_router(orig_node);
120

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

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

129
/* caller must hold the neigh_list_lock */
130 131
void batadv_bonding_candidate_del(struct batadv_orig_node *orig_node,
				  struct batadv_neigh_node *neigh_node)
132 133 134 135 136 137 138
{
	/* 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);
139
	batadv_neigh_node_free_ref(neigh_node);
140 141 142 143 144 145
	atomic_dec(&orig_node->bond_candidates);

out:
	return;
}

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

	spin_lock_bh(&orig_node->neigh_list_lock);

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

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

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

168
	/* check if we have another candidate with the same mac address or
169 170 171 172 173 174 175 176 177 178
	 * 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
179 180
		 * considered as candidate.
		 */
181 182 183 184
		if (list_empty(&tmp_neigh_node->bonding_list))
			continue;

		if ((neigh_node->if_incoming == tmp_neigh_node->if_incoming) ||
185 186
		    (batadv_compare_eth(neigh_node->addr,
					tmp_neigh_node->addr))) {
187 188 189 190 191 192 193 194 195 196 197 198 199
			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;

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

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

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

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

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

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

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

229 230 231 232 233
/* 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.
 */
234
int batadv_window_protected(struct batadv_priv *bat_priv, int32_t seq_num_diff,
235
			    unsigned long *last_reset)
236
{
237 238 239 240
	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))
241
			return 1;
242 243

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

248 249 250
	return 0;
}

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

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

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

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

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

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

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

279
	return true;
280 281
}

282
static int batadv_recv_my_icmp_packet(struct batadv_priv *bat_priv,
283
				      struct sk_buff *skb, size_t icmp_len)
284
{
285 286 287
	struct batadv_hard_iface *primary_if = NULL;
	struct batadv_orig_node *orig_node = NULL;
	struct batadv_neigh_node *router = NULL;
288
	struct batadv_icmp_packet_rr *icmp_packet;
289
	int ret = NET_RX_DROP;
290

291
	icmp_packet = (struct batadv_icmp_packet_rr *)skb->data;
292 293

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

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

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

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

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

317
	icmp_packet = (struct batadv_icmp_packet_rr *)skb->data;
318 319

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

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

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

337
static int batadv_recv_icmp_ttl_exceeded(struct batadv_priv *bat_priv,
338
					 struct sk_buff *skb)
339
{
340 341 342
	struct batadv_hard_iface *primary_if = NULL;
	struct batadv_orig_node *orig_node = NULL;
	struct batadv_neigh_node *router = NULL;
343
	struct batadv_icmp_packet *icmp_packet;
344
	int ret = NET_RX_DROP;
345

346
	icmp_packet = (struct batadv_icmp_packet *)skb->data;
347 348

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

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

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

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

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

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

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

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

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


393 394
int batadv_recv_icmp_packet(struct sk_buff *skb,
			    struct batadv_hard_iface *recv_if)
395
{
396
	struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
397
	struct batadv_icmp_packet_rr *icmp_packet;
398
	struct ethhdr *ethhdr;
399 400
	struct batadv_orig_node *orig_node = NULL;
	struct batadv_neigh_node *router = NULL;
401
	int hdr_size = sizeof(struct batadv_icmp_packet);
402
	int ret = NET_RX_DROP;
403

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

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

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

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

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

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

426
	icmp_packet = (struct batadv_icmp_packet_rr *)skb->data;
427 428

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

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

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

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

449
	router = batadv_orig_node_get_router(orig_node);
450 451
	if (!router)
		goto out;
452

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

457
	icmp_packet = (struct batadv_icmp_packet_rr *)skb->data;
458

459
	/* decrement ttl */
460
	icmp_packet->header.ttl--;
461 462

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

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

474 475 476 477
/* 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
478 479
 * returned router's refcount.
 */
480 481 482
static struct batadv_neigh_node *
batadv_find_bond_router(struct batadv_orig_node *primary_orig,
			const struct batadv_hard_iface *recv_if)
483
{
484 485
	struct batadv_neigh_node *tmp_neigh_node;
	struct batadv_neigh_node *router = NULL, *first_candidate = NULL;
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 511 512

	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
513 514
	 * after the current router
	 */
515 516
	spin_lock_bh(&primary_orig->neigh_list_lock);
	/* this is a list_move(), which unfortunately
517 518
	 * does not exist as rcu version
	 */
519 520 521 522 523 524 525 526 527 528 529 530 531 532
	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.
 *
533 534
 * Increases the returned router's refcount
 */
535 536 537
static struct batadv_neigh_node *
batadv_find_ifalter_router(struct batadv_orig_node *primary_orig,
			   const struct batadv_hard_iface *recv_if)
538
{
539 540
	struct batadv_neigh_node *tmp_neigh_node;
	struct batadv_neigh_node *router = NULL, *first_candidate = NULL;
541 542 543 544 545 546 547 548 549 550 551

	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;

552 553 554
		if (router && tmp_neigh_node->tq_avg <= router->tq_avg)
			continue;

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

558 559 560
		/* decrement refcount of previously selected router */
		if (router)
			batadv_neigh_node_free_ref(router);
561

562 563
		/* we found a better router (or at least one valid router) */
		router = tmp_neigh_node;
564 565 566 567 568 569 570 571 572 573 574
	}

	/* 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;
}

575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
static int batadv_check_unicast_packet(struct sk_buff *skb, int hdr_size)
{
	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 */
	if (!batadv_is_my_mac(ethhdr->h_dest))
		return -1;

	return 0;
}

600
int batadv_recv_tt_query(struct sk_buff *skb, struct batadv_hard_iface *recv_if)
601
{
602
	struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
603
	struct batadv_tt_query_packet *tt_query;
604
	uint16_t tt_size;
605
	int hdr_size = sizeof(*tt_query);
606
	char tt_flag;
607
	size_t packet_size;
608

609 610
	if (batadv_check_unicast_packet(skb, hdr_size) < 0)
		return NET_RX_DROP;
611 612

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

616
	tt_query = (struct batadv_tt_query_packet *)skb->data;
617

618
	switch (tt_query->flags & BATADV_TT_QUERY_TYPE_MASK) {
619
	case BATADV_TT_REQUEST:
620
		batadv_inc_counter(bat_priv, BATADV_CNT_TT_REQUEST_RX);
621

622
		/* If we cannot provide an answer the tt_request is
623 624
		 * forwarded
		 */
625
		if (!batadv_send_tt_response(bat_priv, tt_query)) {
626 627 628 629 630
			if (tt_query->flags & BATADV_TT_FULL_TABLE)
				tt_flag = 'F';
			else
				tt_flag = '.';

631
			batadv_dbg(BATADV_DBG_TT, bat_priv,
632 633 634
				   "Routing TT_REQUEST to %pM [%c]\n",
				   tt_query->dst,
				   tt_flag);
635
			return batadv_route_unicast_packet(skb, recv_if);
636 637
		}
		break;
638
	case BATADV_TT_RESPONSE:
639
		batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_RX);
640

641
		if (batadv_is_my_mac(tt_query->dst)) {
642
			/* packet needs to be linearized to access the TT
643 644
			 * changes
			 */
645 646
			if (skb_linearize(skb) < 0)
				goto out;
647
			/* skb_linearize() possibly changed skb->data */
648
			tt_query = (struct batadv_tt_query_packet *)skb->data;
649

650
			tt_size = batadv_tt_len(ntohs(tt_query->tt_data));
651 652

			/* Ensure we have all the claimed data */
653 654 655
			packet_size = sizeof(struct batadv_tt_query_packet);
			packet_size += tt_size;
			if (unlikely(skb_headlen(skb) < packet_size))
656 657
				goto out;

658
			batadv_handle_tt_response(bat_priv, tt_query);
659
		} else {
660 661 662 663
			if (tt_query->flags & BATADV_TT_FULL_TABLE)
				tt_flag =  'F';
			else
				tt_flag = '.';
664
			batadv_dbg(BATADV_DBG_TT, bat_priv,
665 666 667
				   "Routing TT_RESPONSE to %pM [%c]\n",
				   tt_query->dst,
				   tt_flag);
668
			return batadv_route_unicast_packet(skb, recv_if);
669 670 671 672 673 674 675 676 677
		}
		break;
	}

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

678
int batadv_recv_roam_adv(struct sk_buff *skb, struct batadv_hard_iface *recv_if)
679
{
680
	struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
681
	struct batadv_roam_adv_packet *roam_adv_packet;
682
	struct batadv_orig_node *orig_node;
683

684
	if (batadv_check_unicast_packet(skb, sizeof(*roam_adv_packet)) < 0)
685 686
		goto out;

687
	batadv_inc_counter(bat_priv, BATADV_CNT_TT_ROAM_ADV_RX);
688

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

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

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

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

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

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

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

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

725
/* find a suitable router for this originator, and use
726
 * bonding if possible. increases the found neighbors
727 728
 * refcount.
 */
729 730 731 732
struct batadv_neigh_node *
batadv_find_router(struct batadv_priv *bat_priv,
		   struct batadv_orig_node *orig_node,
		   const struct batadv_hard_iface *recv_if)
733
{
734 735 736
	struct batadv_orig_node *primary_orig_node;
	struct batadv_orig_node *router_orig;
	struct batadv_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_route_unicast_packet(struct sk_buff *skb,
816
				       struct batadv_hard_iface *recv_if)
817
{
818 819 820
	struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
	struct batadv_orig_node *orig_node = NULL;
	struct batadv_neigh_node *neigh_node = NULL;
821
	struct batadv_unicast_packet *unicast_packet;
822
	struct ethhdr *ethhdr = (struct ethhdr *)skb_mac_header(skb);
823
	int ret = NET_RX_DROP;
824 825
	struct sk_buff *new_skb;

826
	unicast_packet = (struct batadv_unicast_packet *)skb->data;
827 828

	/* TTL exceeded */
829
	if (unicast_packet->header.ttl < 2) {
830 831
		pr_debug("Warning - can't forward unicast packet from %pM to %pM: ttl exceeded\n",
			 ethhdr->h_source, unicast_packet->dest);
832
		goto out;
833 834 835
	}

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

838
	if (!orig_node)
839
		goto out;
840

841
	/* find_router() increases neigh_nodes refcount if found. */
842
	neigh_node = batadv_find_router(bat_priv, orig_node, recv_if);
843

844
	if (!neigh_node)
845
		goto out;
846 847

	/* create a copy of the skb, if needed, to modify it. */
848
	if (skb_cow(skb, ETH_HLEN) < 0)
849
		goto out;
850

851
	unicast_packet = (struct batadv_unicast_packet *)skb->data;
852

853
	if (unicast_packet->header.packet_type == BATADV_UNICAST &&
854
	    atomic_read(&bat_priv->fragmentation) &&
855
	    skb->len > neigh_node->if_incoming->net_dev->mtu) {
856 857 858
		ret = batadv_frag_send_skb(skb, bat_priv,
					   neigh_node->if_incoming,
					   neigh_node->addr);
859 860
		goto out;
	}
861

862
	if (unicast_packet->header.packet_type == BATADV_UNICAST_FRAG &&
863 864
	    batadv_frag_can_reassemble(skb,
				       neigh_node->if_incoming->net_dev->mtu)) {
865

866
		ret = batadv_frag_reassemble_skb(skb, bat_priv, &new_skb);
867 868

		if (ret == NET_RX_DROP)
869
			goto out;
870 871

		/* packet was buffered for late merge */
872 873 874 875
		if (!new_skb) {
			ret = NET_RX_SUCCESS;
			goto out;
		}
876 877

		skb = new_skb;
878
		unicast_packet = (struct batadv_unicast_packet *)skb->data;
879 880 881
	}

	/* decrement ttl */
882
	unicast_packet->header.ttl--;
883

884
	/* Update stats counter */
885 886
	batadv_inc_counter(bat_priv, BATADV_CNT_FORWARD);
	batadv_add_counter(bat_priv, BATADV_CNT_FORWARD_BYTES,
887 888
			   skb->len + ETH_HLEN);

889
	/* route it */
890
	batadv_send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr);
891
	ret = NET_RX_SUCCESS;
892

893 894
out:
	if (neigh_node)
895
		batadv_neigh_node_free_ref(neigh_node);
896
	if (orig_node)
897
		batadv_orig_node_free_ref(orig_node);
898
	return ret;
899 900
}

901
static int batadv_check_unicast_ttvn(struct batadv_priv *bat_priv,
902
				     struct sk_buff *skb) {
903
	uint8_t curr_ttvn;
904
	struct batadv_orig_node *orig_node;
905
	struct ethhdr *ethhdr;
906
	struct batadv_hard_iface *primary_if;
907
	struct batadv_unicast_packet *unicast_packet;
908
	bool tt_poss_change;
909
	int is_old_ttvn;
910 911

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

915
	unicast_packet = (struct batadv_unicast_packet *)skb->data;
916

917
	if (batadv_is_my_mac(unicast_packet->dest)) {
918 919
		tt_poss_change = bat_priv->tt.poss_change;
		curr_ttvn = (uint8_t)atomic_read(&bat_priv->tt.vn);
920
	} else {
921 922
		orig_node = batadv_orig_hash_find(bat_priv,
						  unicast_packet->dest);
923 924 925 926 927

		if (!orig_node)
			return 0;

		curr_ttvn = (uint8_t)atomic_read(&orig_node->last_ttvn);
928
		tt_poss_change = orig_node->tt_poss_change;
929
		batadv_orig_node_free_ref(orig_node);
930 931 932
	}

	/* Check whether I have to reroute the packet */
933 934
	is_old_ttvn = batadv_seq_before(unicast_packet->ttvn, curr_ttvn);
	if (is_old_ttvn || tt_poss_change) {
935
		/* check if there is enough data before accessing it */
936
		if (pskb_may_pull(skb, sizeof(struct batadv_unicast_packet) +
937
				  ETH_HLEN) < 0)
938 939
			return 0;

940
		ethhdr = (struct ethhdr *)(skb->data + sizeof(*unicast_packet));
941 942 943 944

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

949 950
		orig_node = batadv_transtable_search(bat_priv, NULL,
						     ethhdr->h_dest);
951 952

		if (!orig_node) {
953
			if (!batadv_is_my_client(bat_priv, ethhdr->h_dest))
954
				return 0;
955
			primary_if = batadv_primary_if_get_selected(bat_priv);
956 957 958 959
			if (!primary_if)
				return 0;
			memcpy(unicast_packet->dest,
			       primary_if->net_dev->dev_addr, ETH_ALEN);
960
			batadv_hardif_free_ref(primary_if);
961 962 963
		} else {
			memcpy(unicast_packet->dest, orig_node->orig,
			       ETH_ALEN);
964
			curr_ttvn = (uint8_t)atomic_read(&orig_node->last_ttvn);
965
			batadv_orig_node_free_ref(orig_node);
966 967
		}

968 969 970 971
		net_ratelimited_function(batadv_dbg, BATADV_DBG_TT, bat_priv,
					 "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);
972 973 974 975 976 977

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

978 979
int batadv_recv_unicast_packet(struct sk_buff *skb,
			       struct batadv_hard_iface *recv_if)
980
{
981
	struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
982
	struct batadv_unicast_packet *unicast_packet;
983
	int hdr_size = sizeof(*unicast_packet);
984

985
	if (batadv_check_unicast_packet(skb, hdr_size) < 0)
986 987
		return NET_RX_DROP;

988
	if (!batadv_check_unicast_ttvn(bat_priv, skb))
989 990
		return NET_RX_DROP;

991
	unicast_packet = (struct batadv_unicast_packet *)skb->data;
992 993

	/* packet for me */
994
	if (batadv_is_my_mac(unicast_packet->dest)) {
995 996 997
		batadv_interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size,
				    NULL);

998 999 1000
		return NET_RX_SUCCESS;
	}

1001
	return batadv_route_unicast_packet(skb, recv_if);
1002 1003
}

1004
int batadv_recv_ucast_frag_packet(struct sk_buff *skb,
1005
				  struct batadv_hard_iface *recv_if)
1006
{
1007
	struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
1008
	struct batadv_unicast_frag_packet *unicast_packet;
1009
	int hdr_size = sizeof(*unicast_packet);
1010 1011 1012
	struct sk_buff *new_skb = NULL;
	int ret;

1013
	if (batadv_check_unicast_packet(skb, hdr_size) < 0)
1014 1015
		return NET_RX_DROP;

1016
	if (!batadv_check_unicast_ttvn(bat_priv, skb))
1017 1018
		return NET_RX_DROP;

1019
	unicast_packet = (struct batadv_unicast_frag_packet *)skb->data;
1020 1021

	/* packet for me */
1022
	if (batadv_is_my_mac(unicast_packet->dest)) {
1023

1024
		ret = batadv_frag_reassemble_skb(skb, bat_priv, &new_skb);
1025 1026 1027 1028 1029 1030 1031 1032

		if (ret == NET_RX_DROP)
			return NET_RX_DROP;

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

1033
		batadv_interface_rx(recv_if->soft_iface, new_skb, recv_if,
1034
				    sizeof(struct batadv_unicast_packet), NULL);
1035 1036 1037
		return NET_RX_SUCCESS;
	}

1038
	return batadv_route_unicast_packet(skb, recv_if);
1039 1040 1041
}


1042 1043
int batadv_recv_bcast_packet(struct sk_buff *skb,
			     struct batadv_hard_iface *recv_if)
1044
{
1045 1046
	struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
	struct batadv_orig_node *orig_node = NULL;
1047
	struct batadv_bcast_packet *bcast_packet;
1048
	struct ethhdr *ethhdr;
1049
	int hdr_size = sizeof(*bcast_packet);
1050
	int ret = NET_RX_DROP;
1051 1052 1053 1054
	int32_t seq_diff;

	/* drop packet if it has not necessary minimum size */
	if (unlikely(!pskb_may_pull(skb, hdr_size)))
1055
		goto out;
1056 1057 1058 1059 1060

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

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

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

	/* ignore broadcasts sent by myself */
1068
	if (batadv_is_my_mac(ethhdr->h_source))
1069
		goto out;
1070

1071
	bcast_packet = (struct batadv_bcast_packet *)skb->data;
1072 1073

	/* ignore broadcasts originated by myself */
1074
	if (batadv_is_my_mac(bcast_packet->orig))
1075
		goto out;
1076

1077
	if (bcast_packet->header.ttl < 2)
1078
		goto out;
1079

1080
	orig_node = batadv_orig_hash_find(bat_priv, bcast_packet->orig);
1081 1082

	if (!orig_node)
1083
		goto out;
1084

1085
	spin_lock_bh(&orig_node->bcast_seqno_lock);
1086 1087

	/* check whether the packet is a duplicate */
1088 1089
	if (batadv_test_bit(orig_node->bcast_bits, orig_node->last_bcast_seqno,
			    ntohl(bcast_packet->seqno)))
1090
		goto spin_unlock;
1091 1092 1093 1094

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

	/* check whether the packet is old and the host just restarted. */
1095 1096
	if (batadv_window_protected(bat_priv, seq_diff,
				    &orig_node->bcast_seqno_reset))
1097
		goto spin_unlock;
1098 1099

	/* mark broadcast in flood history, update window position
1100 1101
	 * if required.
	 */
1102
	if (batadv_bit_get_packet(bat_priv, orig_node->bcast_bits, seq_diff, 1))
1103 1104
		orig_node->last_bcast_seqno = ntohl(bcast_packet->seqno);

1105 1106
	spin_unlock_bh(&orig_node->bcast_seqno_lock);

1107 1108 1109 1110 1111 1112
	/* keep skb linear for crc calculation */
	if (skb_linearize(skb) < 0)
		goto out;

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

1113
	/* check whether this has been sent by another originator before */
1114
	if (batadv_bla_check_bcast_duplist(bat_priv, bcast_packet, skb->len))
1115 1116
		goto out;

1117
	/* rebroadcast packet */
1118
	batadv_add_bcast_packet_to_list(bat_priv, skb, 1);
1119

1120 1121 1122
	/* don't hand the broadcast up if it is from an originator
	 * from the same backbone.
	 */
1123
	if (batadv_bla_is_backbone_gw(skb, orig_node, hdr_size))
1124 1125
		goto out;

1126
	/* broadcast for me */
1127 1128
	batadv_interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size,
			    orig_node);
1129 1130
	ret = NET_RX_SUCCESS;
	goto out;
1131

1132 1133 1134 1135
spin_unlock:
	spin_unlock_bh(&orig_node->bcast_seqno_lock);
out:
	if (orig_node)
1136
		batadv_orig_node_free_ref(orig_node);
1137
	return ret;
1138 1139
}

1140 1141
int batadv_recv_vis_packet(struct sk_buff *skb,
			   struct batadv_hard_iface *recv_if)
1142
{
1143
	struct batadv_vis_packet *vis_packet;
1144
	struct ethhdr *ethhdr;
1145
	struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
1146
	int hdr_size = sizeof(*vis_packet);
1147 1148 1149 1150 1151 1152 1153 1154

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

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

1155
	vis_packet = (struct batadv_vis_packet *)skb->data;
1156 1157 1158
	ethhdr = (struct ethhdr *)skb_mac_header(skb);

	/* not for me */
1159
	if (!batadv_is_my_mac(ethhdr->h_dest))
1160 1161 1162
		return NET_RX_DROP;

	/* ignore own packets */
1163
	if (batadv_is_my_mac(vis_packet->vis_orig))
1164 1165
		return NET_RX_DROP;

1166
	if (batadv_is_my_mac(vis_packet->sender_orig))
1167 1168 1169
		return NET_RX_DROP;

	switch (vis_packet->vis_type) {
1170
	case BATADV_VIS_TYPE_SERVER_SYNC:
1171 1172
		batadv_receive_server_sync_packet(bat_priv, vis_packet,
						  skb_headlen(skb));
1173 1174
		break;

1175
	case BATADV_VIS_TYPE_CLIENT_UPDATE:
1176 1177
		batadv_receive_client_update_packet(bat_priv, vis_packet,
						    skb_headlen(skb));
1178 1179 1180 1181 1182 1183 1184
		break;

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

	/* We take a copy of the data in the packet, so we should
1185 1186
	 * always free the skbuf.
	 */
1187 1188
	return NET_RX_DROP;
}