gateway_client.c 17.8 KB
Newer Older
1
/* Copyright (C) 2009-2013 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
 *
 * Marek Lindner
 *
 * 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"
21
#include "sysfs.h"
22 23 24
#include "gateway_client.h"
#include "gateway_common.h"
#include "hard-interface.h"
25
#include "originator.h"
26
#include "translation-table.h"
27
#include "routing.h"
28 29 30 31 32
#include <linux/ip.h>
#include <linux/ipv6.h>
#include <linux/udp.h>
#include <linux/if_vlan.h>

33
/* This is the offset of the options field in a dhcp packet starting at
34 35
 * the beginning of the dhcp header
 */
36 37
#define BATADV_DHCP_OPTIONS_OFFSET 240
#define BATADV_DHCP_REQUEST 3
38

39
static void batadv_gw_node_free_ref(struct batadv_gw_node *gw_node)
40
{
41
	if (atomic_dec_and_test(&gw_node->refcount))
42
		kfree_rcu(gw_node, rcu);
43 44
}

45 46
static struct batadv_gw_node *
batadv_gw_get_selected_gw_node(struct batadv_priv *bat_priv)
47
{
48
	struct batadv_gw_node *gw_node;
49

50
	rcu_read_lock();
51
	gw_node = rcu_dereference(bat_priv->gw.curr_gw);
52
	if (!gw_node)
53
		goto out;
54

55 56
	if (!atomic_inc_not_zero(&gw_node->refcount))
		gw_node = NULL;
57

58 59
out:
	rcu_read_unlock();
60
	return gw_node;
61 62
}

63 64
struct batadv_orig_node *
batadv_gw_get_selected_orig(struct batadv_priv *bat_priv)
65
{
66 67
	struct batadv_gw_node *gw_node;
	struct batadv_orig_node *orig_node = NULL;
68

69
	gw_node = batadv_gw_get_selected_gw_node(bat_priv);
70 71 72 73 74 75 76 77 78 79
	if (!gw_node)
		goto out;

	rcu_read_lock();
	orig_node = gw_node->orig_node;
	if (!orig_node)
		goto unlock;

	if (!atomic_inc_not_zero(&orig_node->refcount))
		orig_node = NULL;
80

81 82 83
unlock:
	rcu_read_unlock();
out:
84
	if (gw_node)
85
		batadv_gw_node_free_ref(gw_node);
86
	return orig_node;
87 88
}

89 90
static void batadv_gw_select(struct batadv_priv *bat_priv,
			     struct batadv_gw_node *new_gw_node)
91
{
92
	struct batadv_gw_node *curr_gw_node;
93

94
	spin_lock_bh(&bat_priv->gw.list_lock);
95

96 97
	if (new_gw_node && !atomic_inc_not_zero(&new_gw_node->refcount))
		new_gw_node = NULL;
98

99 100
	curr_gw_node = rcu_dereference_protected(bat_priv->gw.curr_gw, 1);
	rcu_assign_pointer(bat_priv->gw.curr_gw, new_gw_node);
101 102

	if (curr_gw_node)
103
		batadv_gw_node_free_ref(curr_gw_node);
104

105
	spin_unlock_bh(&bat_priv->gw.list_lock);
106 107
}

108
void batadv_gw_deselect(struct batadv_priv *bat_priv)
109
{
110
	atomic_set(&bat_priv->gw.reselect, 1);
111 112
}

113 114
static struct batadv_gw_node *
batadv_gw_get_best_gw_node(struct batadv_priv *bat_priv)
115
{
116 117
	struct batadv_neigh_node *router;
	struct batadv_gw_node *gw_node, *curr_gw = NULL;
118
	uint32_t max_gw_factor = 0, tmp_gw_factor = 0;
119
	uint32_t gw_divisor;
120
	uint8_t max_tq = 0;
121
	int down, up;
122
	uint8_t tq_avg;
123
	struct batadv_orig_node *orig_node;
124

125 126 127
	gw_divisor = BATADV_TQ_LOCAL_WINDOW_SIZE * BATADV_TQ_LOCAL_WINDOW_SIZE;
	gw_divisor *= 64;

128
	rcu_read_lock();
129
	hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) {
130
		if (gw_node->deleted)
131 132
			continue;

133
		orig_node = gw_node->orig_node;
134
		router = batadv_orig_node_get_router(orig_node);
135
		if (!router)
136 137
			continue;

138 139 140
		if (!atomic_inc_not_zero(&gw_node->refcount))
			goto next;

141 142
		tq_avg = router->tq_avg;

143 144
		switch (atomic_read(&bat_priv->gw_sel_class)) {
		case 1: /* fast connection */
145 146
			batadv_gw_bandwidth_to_kbit(orig_node->gw_flags,
						    &down, &up);
147

148 149
			tmp_gw_factor = tq_avg * tq_avg * down * 100 * 100;
			tmp_gw_factor /= gw_divisor;
150 151 152

			if ((tmp_gw_factor > max_gw_factor) ||
			    ((tmp_gw_factor == max_gw_factor) &&
153
			     (tq_avg > max_tq))) {
154
				if (curr_gw)
155
					batadv_gw_node_free_ref(curr_gw);
156 157 158
				curr_gw = gw_node;
				atomic_inc(&curr_gw->refcount);
			}
159 160
			break;

161
		default: /* 2:  stable connection (use best statistic)
162 163 164 165 166
			  * 3:  fast-switch (use best statistic but change as
			  *     soon as a better gateway appears)
			  * XX: late-switch (use best statistic but change as
			  *     soon as a better gateway appears which has
			  *     $routing_class more tq points)
167
			  */
168
			if (tq_avg > max_tq) {
169
				if (curr_gw)
170
					batadv_gw_node_free_ref(curr_gw);
171 172 173
				curr_gw = gw_node;
				atomic_inc(&curr_gw->refcount);
			}
174 175 176
			break;
		}

177 178
		if (tq_avg > max_tq)
			max_tq = tq_avg;
179 180 181

		if (tmp_gw_factor > max_gw_factor)
			max_gw_factor = tmp_gw_factor;
182

183
		batadv_gw_node_free_ref(gw_node);
184 185

next:
186
		batadv_neigh_node_free_ref(router);
187
	}
188
	rcu_read_unlock();
189

190 191
	return curr_gw;
}
192

193
void batadv_gw_election(struct batadv_priv *bat_priv)
194
{
195 196
	struct batadv_gw_node *curr_gw = NULL, *next_gw = NULL;
	struct batadv_neigh_node *router = NULL;
197
	char gw_addr[18] = { '\0' };
198

199
	/* The batman daemon checks here if we already passed a full originator
200 201 202
	 * cycle in order to make sure we don't choose the first gateway we
	 * hear about. This check is based on the daemon's uptime which we
	 * don't have.
203
	 */
204
	if (atomic_read(&bat_priv->gw_mode) != BATADV_GW_MODE_CLIENT)
205 206
		goto out;

207
	curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
208

209
	if (!batadv_atomic_dec_not_zero(&bat_priv->gw.reselect) && curr_gw)
210 211
		goto out;

212
	next_gw = batadv_gw_get_best_gw_node(bat_priv);
213 214 215 216 217

	if (curr_gw == next_gw)
		goto out;

	if (next_gw) {
218 219
		sprintf(gw_addr, "%pM", next_gw->orig_node->orig);

220
		router = batadv_orig_node_get_router(next_gw->orig_node);
221
		if (!router) {
222
			batadv_gw_deselect(bat_priv);
223 224
			goto out;
		}
225 226
	}

227
	if ((curr_gw) && (!next_gw)) {
228
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
229
			   "Removing selected gateway - no gateway in range\n");
230 231
		batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_DEL,
				    NULL);
232
	} else if ((!curr_gw) && (next_gw)) {
233
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
234 235 236
			   "Adding route to gateway %pM (gw_flags: %i, tq: %i)\n",
			   next_gw->orig_node->orig,
			   next_gw->orig_node->gw_flags, router->tq_avg);
237 238
		batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_ADD,
				    gw_addr);
239
	} else {
240
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
241 242 243
			   "Changing route to gateway %pM (gw_flags: %i, tq: %i)\n",
			   next_gw->orig_node->orig,
			   next_gw->orig_node->gw_flags, router->tq_avg);
244 245
		batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_CHANGE,
				    gw_addr);
246 247
	}

248
	batadv_gw_select(bat_priv, next_gw);
249

250 251
out:
	if (curr_gw)
252
		batadv_gw_node_free_ref(curr_gw);
253
	if (next_gw)
254
		batadv_gw_node_free_ref(next_gw);
255
	if (router)
256
		batadv_neigh_node_free_ref(router);
257 258
}

259 260
void batadv_gw_check_election(struct batadv_priv *bat_priv,
			      struct batadv_orig_node *orig_node)
261
{
262 263
	struct batadv_orig_node *curr_gw_orig;
	struct batadv_neigh_node *router_gw = NULL, *router_orig = NULL;
264 265
	uint8_t gw_tq_avg, orig_tq_avg;

266
	curr_gw_orig = batadv_gw_get_selected_orig(bat_priv);
267 268
	if (!curr_gw_orig)
		goto deselect;
269

270
	router_gw = batadv_orig_node_get_router(curr_gw_orig);
271 272
	if (!router_gw)
		goto deselect;
273 274

	/* this node already is the gateway */
275
	if (curr_gw_orig == orig_node)
276
		goto out;
277

278
	router_orig = batadv_orig_node_get_router(orig_node);
279 280
	if (!router_orig)
		goto out;
281

282 283
	gw_tq_avg = router_gw->tq_avg;
	orig_tq_avg = router_orig->tq_avg;
284 285 286

	/* the TQ value has to be better */
	if (orig_tq_avg < gw_tq_avg)
287
		goto out;
288

289
	/* if the routing class is greater than 3 the value tells us how much
290
	 * greater the TQ value of the new gateway must be
291
	 */
292 293
	if ((atomic_read(&bat_priv->gw_sel_class) > 3) &&
	    (orig_tq_avg - gw_tq_avg < atomic_read(&bat_priv->gw_sel_class)))
294
		goto out;
295

296
	batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
297 298
		   "Restarting gateway selection: better gateway found (tq curr: %i, tq new: %i)\n",
		   gw_tq_avg, orig_tq_avg);
299 300

deselect:
301
	batadv_gw_deselect(bat_priv);
302
out:
303
	if (curr_gw_orig)
304
		batadv_orig_node_free_ref(curr_gw_orig);
305
	if (router_gw)
306
		batadv_neigh_node_free_ref(router_gw);
307
	if (router_orig)
308
		batadv_neigh_node_free_ref(router_orig);
309

310
	return;
311 312
}

313 314
static void batadv_gw_node_add(struct batadv_priv *bat_priv,
			       struct batadv_orig_node *orig_node,
315
			       uint8_t new_gwflags)
316
{
317
	struct batadv_gw_node *gw_node;
318 319
	int down, up;

320
	gw_node = kzalloc(sizeof(*gw_node), GFP_ATOMIC);
321 322 323 324 325
	if (!gw_node)
		return;

	INIT_HLIST_NODE(&gw_node->list);
	gw_node->orig_node = orig_node;
326
	atomic_set(&gw_node->refcount, 1);
327

328 329 330
	spin_lock_bh(&bat_priv->gw.list_lock);
	hlist_add_head_rcu(&gw_node->list, &bat_priv->gw.list);
	spin_unlock_bh(&bat_priv->gw.list_lock);
331

332
	batadv_gw_bandwidth_to_kbit(new_gwflags, &down, &up);
333
	batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
334 335 336 337 338 339
		   "Found new gateway %pM -> gw_class: %i - %i%s/%i%s\n",
		   orig_node->orig, new_gwflags,
		   (down > 2048 ? down / 1024 : down),
		   (down > 2048 ? "MBit" : "KBit"),
		   (up > 2048 ? up / 1024 : up),
		   (up > 2048 ? "MBit" : "KBit"));
340 341
}

342 343 344
void batadv_gw_node_update(struct batadv_priv *bat_priv,
			   struct batadv_orig_node *orig_node,
			   uint8_t new_gwflags)
345
{
346
	struct batadv_gw_node *gw_node, *curr_gw;
347

348
	/* Note: We don't need a NULL check here, since curr_gw never gets
349 350 351 352
	 * dereferenced. If curr_gw is NULL we also should not exit as we may
	 * have this gateway in our list (duplication check!) even though we
	 * have no currently selected gateway.
	 */
353
	curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
354 355

	rcu_read_lock();
356
	hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) {
357 358 359
		if (gw_node->orig_node != orig_node)
			continue;

360
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
361 362 363
			   "Gateway class of originator %pM changed from %i to %i\n",
			   orig_node->orig, gw_node->orig_node->gw_flags,
			   new_gwflags);
364 365 366

		gw_node->deleted = 0;

367
		if (new_gwflags == BATADV_NO_FLAGS) {
368
			gw_node->deleted = jiffies;
369
			batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
370 371
				   "Gateway %pM removed from gateway list\n",
				   orig_node->orig);
372

373 374
			if (gw_node == curr_gw)
				goto deselect;
375 376
		}

377
		goto unlock;
378 379
	}

380
	if (new_gwflags == BATADV_NO_FLAGS)
381
		goto unlock;
382

383
	batadv_gw_node_add(bat_priv, orig_node, new_gwflags);
384 385 386
	goto unlock;

deselect:
387
	batadv_gw_deselect(bat_priv);
388 389
unlock:
	rcu_read_unlock();
390

391
	if (curr_gw)
392
		batadv_gw_node_free_ref(curr_gw);
393 394
}

395 396
void batadv_gw_node_delete(struct batadv_priv *bat_priv,
			   struct batadv_orig_node *orig_node)
397
{
398
	batadv_gw_node_update(bat_priv, orig_node, 0);
399 400
}

401
void batadv_gw_node_purge(struct batadv_priv *bat_priv)
402
{
403
	struct batadv_gw_node *gw_node, *curr_gw;
404
	struct hlist_node *node_tmp;
405
	unsigned long timeout = msecs_to_jiffies(2 * BATADV_PURGE_TIMEOUT);
406
	int do_deselect = 0;
407

408
	curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
409

410
	spin_lock_bh(&bat_priv->gw.list_lock);
411

412
	hlist_for_each_entry_safe(gw_node, node_tmp,
413
				  &bat_priv->gw.list, list) {
414 415
		if (((!gw_node->deleted) ||
		     (time_before(jiffies, gw_node->deleted + timeout))) &&
416
		    atomic_read(&bat_priv->mesh_state) == BATADV_MESH_ACTIVE)
417 418
			continue;

419 420
		if (curr_gw == gw_node)
			do_deselect = 1;
421 422

		hlist_del_rcu(&gw_node->list);
423
		batadv_gw_node_free_ref(gw_node);
424 425
	}

426
	spin_unlock_bh(&bat_priv->gw.list_lock);
427 428 429

	/* gw_deselect() needs to acquire the gw_list_lock */
	if (do_deselect)
430
		batadv_gw_deselect(bat_priv);
431 432

	if (curr_gw)
433
		batadv_gw_node_free_ref(curr_gw);
434 435
}

436
/* fails if orig_node has no router */
437 438 439
static int batadv_write_buffer_text(struct batadv_priv *bat_priv,
				    struct seq_file *seq,
				    const struct batadv_gw_node *gw_node)
440
{
441 442
	struct batadv_gw_node *curr_gw;
	struct batadv_neigh_node *router;
443
	int down, up, ret = -1;
444

445
	batadv_gw_bandwidth_to_kbit(gw_node->orig_node->gw_flags, &down, &up);
446

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

451
	curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
452 453

	ret = seq_printf(seq, "%s %pM (%3i) %pM [%10s]: %3i - %i%s/%i%s\n",
454 455 456 457 458 459 460 461 462
			 (curr_gw == gw_node ? "=>" : "  "),
			 gw_node->orig_node->orig,
			 router->tq_avg, router->addr,
			 router->if_incoming->net_dev->name,
			 gw_node->orig_node->gw_flags,
			 (down > 2048 ? down / 1024 : down),
			 (down > 2048 ? "MBit" : "KBit"),
			 (up > 2048 ? up / 1024 : up),
			 (up > 2048 ? "MBit" : "KBit"));
463

464
	batadv_neigh_node_free_ref(router);
465
	if (curr_gw)
466
		batadv_gw_node_free_ref(curr_gw);
467
out:
468
	return ret;
469 470
}

471
int batadv_gw_client_seq_print_text(struct seq_file *seq, void *offset)
472 473
{
	struct net_device *net_dev = (struct net_device *)seq->private;
474 475 476
	struct batadv_priv *bat_priv = netdev_priv(net_dev);
	struct batadv_hard_iface *primary_if;
	struct batadv_gw_node *gw_node;
477
	int gw_count = 0;
478

479 480
	primary_if = batadv_seq_print_text_primary_if_get(seq);
	if (!primary_if)
481
		goto out;
482

483 484
	seq_printf(seq,
		   "      %-12s (%s/%i) %17s [%10s]: gw_class ... [B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s)]\n",
485 486
		   "Gateway", "#", BATADV_TQ_MAX_VALUE, "Nexthop", "outgoingIF",
		   BATADV_SOURCE_VERSION, primary_if->net_dev->name,
487
		   primary_if->net_dev->dev_addr, net_dev->name);
488 489

	rcu_read_lock();
490
	hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) {
491 492 493
		if (gw_node->deleted)
			continue;

494
		/* fails if orig_node has no router */
495
		if (batadv_write_buffer_text(bat_priv, seq, gw_node) < 0)
496 497 498 499 500 501 502
			continue;

		gw_count++;
	}
	rcu_read_unlock();

	if (gw_count == 0)
503
		seq_puts(seq, "No gateways in range ...\n");
504

505 506
out:
	if (primary_if)
507
		batadv_hardif_free_ref(primary_if);
508
	return 0;
509 510
}

511
static bool batadv_is_type_dhcprequest(struct sk_buff *skb, int header_len)
512 513 514 515 516 517 518 519 520 521
{
	int ret = false;
	unsigned char *p;
	int pkt_len;

	if (skb_linearize(skb) < 0)
		goto out;

	pkt_len = skb_headlen(skb);

522
	if (pkt_len < header_len + BATADV_DHCP_OPTIONS_OFFSET + 1)
523 524
		goto out;

525 526
	p = skb->data + header_len + BATADV_DHCP_OPTIONS_OFFSET;
	pkt_len -= header_len + BATADV_DHCP_OPTIONS_OFFSET + 1;
527 528

	/* Access the dhcp option lists. Each entry is made up by:
529 530
	 * - octet 1: option type
	 * - octet 2: option data len (only if type != 255 and 0)
531 532
	 * - octet 3: option data
	 */
533
	while (*p != 255 && !ret) {
534
		/* p now points to the first octet: option type */
535 536
		if (*p == 53) {
			/* type 53 is the message type option.
537 538
			 * Jump the len octet and go to the data octet
			 */
539 540 541 542 543
			if (pkt_len < 2)
				goto out;
			p += 2;

			/* check if the message type is what we need */
544
			if (*p == BATADV_DHCP_REQUEST)
545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560
				ret = true;
			break;
		} else if (*p == 0) {
			/* option type 0 (padding), just go forward */
			if (pkt_len < 1)
				goto out;
			pkt_len--;
			p++;
		} else {
			/* This is any other option. So we get the length... */
			if (pkt_len < 1)
				goto out;
			pkt_len--;
			p++;

			/* ...and then we jump over the data */
561
			if (pkt_len < 1 + (*p))
562
				goto out;
563 564
			pkt_len -= 1 + (*p);
			p += 1 + (*p);
565 566 567 568 569 570
		}
	}
out:
	return ret;
}

571
bool batadv_gw_is_dhcp_target(struct sk_buff *skb, unsigned int *header_len)
572 573 574 575 576 577 578
{
	struct ethhdr *ethhdr;
	struct iphdr *iphdr;
	struct ipv6hdr *ipv6hdr;
	struct udphdr *udphdr;

	/* check for ethernet header */
579 580
	if (!pskb_may_pull(skb, *header_len + ETH_HLEN))
		return false;
581
	ethhdr = (struct ethhdr *)skb->data;
582
	*header_len += ETH_HLEN;
583 584 585

	/* check for initial vlan header */
	if (ntohs(ethhdr->h_proto) == ETH_P_8021Q) {
586 587
		if (!pskb_may_pull(skb, *header_len + VLAN_HLEN))
			return false;
588
		ethhdr = (struct ethhdr *)(skb->data + VLAN_HLEN);
589
		*header_len += VLAN_HLEN;
590 591 592 593 594
	}

	/* check for ip header */
	switch (ntohs(ethhdr->h_proto)) {
	case ETH_P_IP:
595 596 597 598
		if (!pskb_may_pull(skb, *header_len + sizeof(*iphdr)))
			return false;
		iphdr = (struct iphdr *)(skb->data + *header_len);
		*header_len += iphdr->ihl * 4;
599 600 601

		/* check for udp header */
		if (iphdr->protocol != IPPROTO_UDP)
602
			return false;
603 604 605

		break;
	case ETH_P_IPV6:
606 607 608 609
		if (!pskb_may_pull(skb, *header_len + sizeof(*ipv6hdr)))
			return false;
		ipv6hdr = (struct ipv6hdr *)(skb->data + *header_len);
		*header_len += sizeof(*ipv6hdr);
610 611 612

		/* check for udp header */
		if (ipv6hdr->nexthdr != IPPROTO_UDP)
613
			return false;
614 615 616

		break;
	default:
617
		return false;
618 619
	}

620 621 622 623
	if (!pskb_may_pull(skb, *header_len + sizeof(*udphdr)))
		return false;
	udphdr = (struct udphdr *)(skb->data + *header_len);
	*header_len += sizeof(*udphdr);
624 625 626

	/* check for bootp port */
	if ((ntohs(ethhdr->h_proto) == ETH_P_IP) &&
627
	    (ntohs(udphdr->dest) != 67))
628
		return false;
629 630 631

	if ((ntohs(ethhdr->h_proto) == ETH_P_IPV6) &&
	    (ntohs(udphdr->dest) != 547))
632
		return false;
633

634 635
	return true;
}
636

637
bool batadv_gw_out_of_range(struct batadv_priv *bat_priv,
638
			    struct sk_buff *skb, struct ethhdr *ethhdr)
639
{
640 641 642
	struct batadv_neigh_node *neigh_curr = NULL, *neigh_old = NULL;
	struct batadv_orig_node *orig_dst_node = NULL;
	struct batadv_gw_node *curr_gw = NULL;
643 644 645 646
	bool ret, out_of_range = false;
	unsigned int header_len = 0;
	uint8_t curr_tq_avg;

647
	ret = batadv_gw_is_dhcp_target(skb, &header_len);
648 649 650
	if (!ret)
		goto out;

651 652
	orig_dst_node = batadv_transtable_search(bat_priv, ethhdr->h_source,
						 ethhdr->h_dest);
653 654 655 656 657 658
	if (!orig_dst_node)
		goto out;

	if (!orig_dst_node->gw_flags)
		goto out;

659
	ret = batadv_is_type_dhcprequest(skb, header_len);
660 661 662 663
	if (!ret)
		goto out;

	switch (atomic_read(&bat_priv->gw_mode)) {
664
	case BATADV_GW_MODE_SERVER:
665
		/* If we are a GW then we are our best GW. We can artificially
666 667
		 * set the tq towards ourself as the maximum value
		 */
668
		curr_tq_avg = BATADV_TQ_MAX_VALUE;
669
		break;
670
	case BATADV_GW_MODE_CLIENT:
671
		curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
672 673 674 675 676 677 678 679 680
		if (!curr_gw)
			goto out;

		/* packet is going to our gateway */
		if (curr_gw->orig_node == orig_dst_node)
			goto out;

		/* If the dhcp packet has been sent to a different gw,
		 * we have to evaluate whether the old gw is still
681 682
		 * reliable enough
		 */
683 684
		neigh_curr = batadv_find_router(bat_priv, curr_gw->orig_node,
						NULL);
685 686 687 688 689
		if (!neigh_curr)
			goto out;

		curr_tq_avg = neigh_curr->tq_avg;
		break;
690
	case BATADV_GW_MODE_OFF:
691 692
	default:
		goto out;
693
	}
694

695
	neigh_old = batadv_find_router(bat_priv, orig_dst_node, NULL);
696
	if (!neigh_old)
697 698
		goto out;

699
	if (curr_tq_avg - neigh_old->tq_avg > BATADV_GW_THRESHOLD)
700 701 702 703
		out_of_range = true;

out:
	if (orig_dst_node)
704
		batadv_orig_node_free_ref(orig_dst_node);
705
	if (curr_gw)
706
		batadv_gw_node_free_ref(curr_gw);
707
	if (neigh_old)
708
		batadv_neigh_node_free_ref(neigh_old);
709
	if (neigh_curr)
710
		batadv_neigh_node_free_ref(neigh_curr);
711
	return out_of_range;
712
}