]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/batman-adv/gateway_client.c
hlist: drop the node parameter from iterators
[mirror_ubuntu-bionic-kernel.git] / net / batman-adv / gateway_client.c
CommitLineData
0b873931 1/* Copyright (C) 2009-2013 B.A.T.M.A.N. contributors:
c6c8fea2
SE
2 *
3 * Marek Lindner
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
c6c8fea2
SE
18 */
19
20#include "main.h"
b706b13b 21#include "sysfs.h"
c6c8fea2
SE
22#include "gateway_client.h"
23#include "gateway_common.h"
24#include "hard-interface.h"
57f0c07c 25#include "originator.h"
be7af5cf 26#include "translation-table.h"
43676ab5 27#include "routing.h"
c6c8fea2
SE
28#include <linux/ip.h>
29#include <linux/ipv6.h>
30#include <linux/udp.h>
31#include <linux/if_vlan.h>
32
43676ab5 33/* This is the offset of the options field in a dhcp packet starting at
9cfc7bd6
SE
34 * the beginning of the dhcp header
35 */
347c80f0
SE
36#define BATADV_DHCP_OPTIONS_OFFSET 240
37#define BATADV_DHCP_REQUEST 3
43676ab5 38
56303d34 39static void batadv_gw_node_free_ref(struct batadv_gw_node *gw_node)
c6c8fea2 40{
25b6d3c1 41 if (atomic_dec_and_test(&gw_node->refcount))
eb340b2f 42 kfree_rcu(gw_node, rcu);
c6c8fea2
SE
43}
44
56303d34
SE
45static struct batadv_gw_node *
46batadv_gw_get_selected_gw_node(struct batadv_priv *bat_priv)
c6c8fea2 47{
56303d34 48 struct batadv_gw_node *gw_node;
c6c8fea2 49
5d02b3cd 50 rcu_read_lock();
807736f6 51 gw_node = rcu_dereference(bat_priv->gw.curr_gw);
c4aac1ab 52 if (!gw_node)
7b36e8ee 53 goto out;
c6c8fea2 54
c4aac1ab
ML
55 if (!atomic_inc_not_zero(&gw_node->refcount))
56 gw_node = NULL;
43c70ad5 57
5d02b3cd
LL
58out:
59 rcu_read_unlock();
c4aac1ab 60 return gw_node;
c6c8fea2
SE
61}
62
56303d34
SE
63struct batadv_orig_node *
64batadv_gw_get_selected_orig(struct batadv_priv *bat_priv)
c6c8fea2 65{
56303d34
SE
66 struct batadv_gw_node *gw_node;
67 struct batadv_orig_node *orig_node = NULL;
c6c8fea2 68
1409a834 69 gw_node = batadv_gw_get_selected_gw_node(bat_priv);
c4aac1ab
ML
70 if (!gw_node)
71 goto out;
72
73 rcu_read_lock();
74 orig_node = gw_node->orig_node;
75 if (!orig_node)
76 goto unlock;
77
78 if (!atomic_inc_not_zero(&orig_node->refcount))
79 orig_node = NULL;
c6c8fea2 80
c4aac1ab
ML
81unlock:
82 rcu_read_unlock();
83out:
c6c8fea2 84 if (gw_node)
1409a834 85 batadv_gw_node_free_ref(gw_node);
c4aac1ab 86 return orig_node;
c6c8fea2
SE
87}
88
56303d34
SE
89static void batadv_gw_select(struct batadv_priv *bat_priv,
90 struct batadv_gw_node *new_gw_node)
c6c8fea2 91{
56303d34 92 struct batadv_gw_node *curr_gw_node;
c6c8fea2 93
807736f6 94 spin_lock_bh(&bat_priv->gw.list_lock);
c4aac1ab 95
25b6d3c1
ML
96 if (new_gw_node && !atomic_inc_not_zero(&new_gw_node->refcount))
97 new_gw_node = NULL;
c6c8fea2 98
807736f6
SE
99 curr_gw_node = rcu_dereference_protected(bat_priv->gw.curr_gw, 1);
100 rcu_assign_pointer(bat_priv->gw.curr_gw, new_gw_node);
25b6d3c1
ML
101
102 if (curr_gw_node)
1409a834 103 batadv_gw_node_free_ref(curr_gw_node);
c4aac1ab 104
807736f6 105 spin_unlock_bh(&bat_priv->gw.list_lock);
c4aac1ab
ML
106}
107
56303d34 108void batadv_gw_deselect(struct batadv_priv *bat_priv)
c4aac1ab 109{
807736f6 110 atomic_set(&bat_priv->gw.reselect, 1);
c6c8fea2
SE
111}
112
56303d34
SE
113static struct batadv_gw_node *
114batadv_gw_get_best_gw_node(struct batadv_priv *bat_priv)
c6c8fea2 115{
56303d34 116 struct batadv_neigh_node *router;
56303d34 117 struct batadv_gw_node *gw_node, *curr_gw = NULL;
c6c8fea2 118 uint32_t max_gw_factor = 0, tmp_gw_factor = 0;
c67893d1 119 uint32_t gw_divisor;
2265c141 120 uint8_t max_tq = 0;
c6c8fea2 121 int down, up;
c67893d1 122 uint8_t tq_avg;
56303d34 123 struct batadv_orig_node *orig_node;
c6c8fea2 124
c67893d1
SE
125 gw_divisor = BATADV_TQ_LOCAL_WINDOW_SIZE * BATADV_TQ_LOCAL_WINDOW_SIZE;
126 gw_divisor *= 64;
127
c4aac1ab 128 rcu_read_lock();
b67bfe0d 129 hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) {
e1a5382f 130 if (gw_node->deleted)
c6c8fea2
SE
131 continue;
132
84d5e5e0 133 orig_node = gw_node->orig_node;
7d211efc 134 router = batadv_orig_node_get_router(orig_node);
e1a5382f 135 if (!router)
c6c8fea2
SE
136 continue;
137
2265c141
AQ
138 if (!atomic_inc_not_zero(&gw_node->refcount))
139 goto next;
140
c67893d1
SE
141 tq_avg = router->tq_avg;
142
c6c8fea2
SE
143 switch (atomic_read(&bat_priv->gw_sel_class)) {
144 case 1: /* fast connection */
84d5e5e0
SE
145 batadv_gw_bandwidth_to_kbit(orig_node->gw_flags,
146 &down, &up);
c6c8fea2 147
c67893d1
SE
148 tmp_gw_factor = tq_avg * tq_avg * down * 100 * 100;
149 tmp_gw_factor /= gw_divisor;
c6c8fea2
SE
150
151 if ((tmp_gw_factor > max_gw_factor) ||
152 ((tmp_gw_factor == max_gw_factor) &&
c67893d1 153 (tq_avg > max_tq))) {
2265c141 154 if (curr_gw)
1409a834 155 batadv_gw_node_free_ref(curr_gw);
2265c141
AQ
156 curr_gw = gw_node;
157 atomic_inc(&curr_gw->refcount);
158 }
c6c8fea2
SE
159 break;
160
9cfc7bd6 161 default: /* 2: stable connection (use best statistic)
c6c8fea2
SE
162 * 3: fast-switch (use best statistic but change as
163 * soon as a better gateway appears)
164 * XX: late-switch (use best statistic but change as
165 * soon as a better gateway appears which has
166 * $routing_class more tq points)
9cfc7bd6 167 */
c67893d1 168 if (tq_avg > max_tq) {
2265c141 169 if (curr_gw)
1409a834 170 batadv_gw_node_free_ref(curr_gw);
2265c141
AQ
171 curr_gw = gw_node;
172 atomic_inc(&curr_gw->refcount);
173 }
c6c8fea2
SE
174 break;
175 }
176
c67893d1
SE
177 if (tq_avg > max_tq)
178 max_tq = tq_avg;
c6c8fea2
SE
179
180 if (tmp_gw_factor > max_gw_factor)
181 max_gw_factor = tmp_gw_factor;
e1a5382f 182
1409a834 183 batadv_gw_node_free_ref(gw_node);
2265c141
AQ
184
185next:
7d211efc 186 batadv_neigh_node_free_ref(router);
c6c8fea2 187 }
2265c141 188 rcu_read_unlock();
c6c8fea2 189
2265c141
AQ
190 return curr_gw;
191}
c6c8fea2 192
56303d34 193void batadv_gw_election(struct batadv_priv *bat_priv)
2265c141 194{
56303d34
SE
195 struct batadv_gw_node *curr_gw = NULL, *next_gw = NULL;
196 struct batadv_neigh_node *router = NULL;
19595e05 197 char gw_addr[18] = { '\0' };
2265c141 198
9cfc7bd6 199 /* The batman daemon checks here if we already passed a full originator
2265c141
AQ
200 * cycle in order to make sure we don't choose the first gateway we
201 * hear about. This check is based on the daemon's uptime which we
202 * don't have.
9cfc7bd6 203 */
cd646ab1 204 if (atomic_read(&bat_priv->gw_mode) != BATADV_GW_MODE_CLIENT)
2265c141
AQ
205 goto out;
206
1409a834 207 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
2265c141 208
807736f6 209 if (!batadv_atomic_dec_not_zero(&bat_priv->gw.reselect) && curr_gw)
caa0bf64
ML
210 goto out;
211
1409a834 212 next_gw = batadv_gw_get_best_gw_node(bat_priv);
2265c141
AQ
213
214 if (curr_gw == next_gw)
215 goto out;
216
217 if (next_gw) {
19595e05
AQ
218 sprintf(gw_addr, "%pM", next_gw->orig_node->orig);
219
7d211efc 220 router = batadv_orig_node_get_router(next_gw->orig_node);
2265c141 221 if (!router) {
7cf06bc6 222 batadv_gw_deselect(bat_priv);
2265c141
AQ
223 goto out;
224 }
c6c8fea2
SE
225 }
226
2265c141 227 if ((curr_gw) && (!next_gw)) {
39c75a51 228 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf 229 "Removing selected gateway - no gateway in range\n");
39c75a51
SE
230 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_DEL,
231 NULL);
2265c141 232 } else if ((!curr_gw) && (next_gw)) {
39c75a51 233 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf
SE
234 "Adding route to gateway %pM (gw_flags: %i, tq: %i)\n",
235 next_gw->orig_node->orig,
236 next_gw->orig_node->gw_flags, router->tq_avg);
39c75a51
SE
237 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_ADD,
238 gw_addr);
2265c141 239 } else {
39c75a51 240 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf
SE
241 "Changing route to gateway %pM (gw_flags: %i, tq: %i)\n",
242 next_gw->orig_node->orig,
243 next_gw->orig_node->gw_flags, router->tq_avg);
39c75a51
SE
244 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_CHANGE,
245 gw_addr);
2265c141
AQ
246 }
247
1409a834 248 batadv_gw_select(bat_priv, next_gw);
2265c141 249
c4aac1ab
ML
250out:
251 if (curr_gw)
1409a834 252 batadv_gw_node_free_ref(curr_gw);
2265c141 253 if (next_gw)
1409a834 254 batadv_gw_node_free_ref(next_gw);
2265c141 255 if (router)
7d211efc 256 batadv_neigh_node_free_ref(router);
c6c8fea2
SE
257}
258
56303d34
SE
259void batadv_gw_check_election(struct batadv_priv *bat_priv,
260 struct batadv_orig_node *orig_node)
c6c8fea2 261{
56303d34
SE
262 struct batadv_orig_node *curr_gw_orig;
263 struct batadv_neigh_node *router_gw = NULL, *router_orig = NULL;
c6c8fea2
SE
264 uint8_t gw_tq_avg, orig_tq_avg;
265
7cf06bc6 266 curr_gw_orig = batadv_gw_get_selected_orig(bat_priv);
57f0c07c
LL
267 if (!curr_gw_orig)
268 goto deselect;
c6c8fea2 269
7d211efc 270 router_gw = batadv_orig_node_get_router(curr_gw_orig);
e1a5382f
LL
271 if (!router_gw)
272 goto deselect;
c6c8fea2
SE
273
274 /* this node already is the gateway */
57f0c07c 275 if (curr_gw_orig == orig_node)
e1a5382f 276 goto out;
c6c8fea2 277
7d211efc 278 router_orig = batadv_orig_node_get_router(orig_node);
e1a5382f
LL
279 if (!router_orig)
280 goto out;
5d02b3cd 281
e1a5382f
LL
282 gw_tq_avg = router_gw->tq_avg;
283 orig_tq_avg = router_orig->tq_avg;
c6c8fea2
SE
284
285 /* the TQ value has to be better */
286 if (orig_tq_avg < gw_tq_avg)
5d02b3cd 287 goto out;
c6c8fea2 288
9cfc7bd6 289 /* if the routing class is greater than 3 the value tells us how much
c6c8fea2 290 * greater the TQ value of the new gateway must be
9cfc7bd6 291 */
c6c8fea2
SE
292 if ((atomic_read(&bat_priv->gw_sel_class) > 3) &&
293 (orig_tq_avg - gw_tq_avg < atomic_read(&bat_priv->gw_sel_class)))
5d02b3cd 294 goto out;
c6c8fea2 295
39c75a51 296 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf
SE
297 "Restarting gateway selection: better gateway found (tq curr: %i, tq new: %i)\n",
298 gw_tq_avg, orig_tq_avg);
c6c8fea2
SE
299
300deselect:
7cf06bc6 301 batadv_gw_deselect(bat_priv);
5d02b3cd 302out:
57f0c07c 303 if (curr_gw_orig)
7d211efc 304 batadv_orig_node_free_ref(curr_gw_orig);
e1a5382f 305 if (router_gw)
7d211efc 306 batadv_neigh_node_free_ref(router_gw);
e1a5382f 307 if (router_orig)
7d211efc 308 batadv_neigh_node_free_ref(router_orig);
57f0c07c 309
5d02b3cd 310 return;
c6c8fea2
SE
311}
312
56303d34
SE
313static void batadv_gw_node_add(struct batadv_priv *bat_priv,
314 struct batadv_orig_node *orig_node,
1409a834 315 uint8_t new_gwflags)
c6c8fea2 316{
56303d34 317 struct batadv_gw_node *gw_node;
c6c8fea2
SE
318 int down, up;
319
704509b8 320 gw_node = kzalloc(sizeof(*gw_node), GFP_ATOMIC);
c6c8fea2
SE
321 if (!gw_node)
322 return;
323
c6c8fea2
SE
324 INIT_HLIST_NODE(&gw_node->list);
325 gw_node->orig_node = orig_node;
25b6d3c1 326 atomic_set(&gw_node->refcount, 1);
c6c8fea2 327
807736f6
SE
328 spin_lock_bh(&bat_priv->gw.list_lock);
329 hlist_add_head_rcu(&gw_node->list, &bat_priv->gw.list);
330 spin_unlock_bh(&bat_priv->gw.list_lock);
c6c8fea2 331
84d5e5e0 332 batadv_gw_bandwidth_to_kbit(new_gwflags, &down, &up);
39c75a51 333 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf
SE
334 "Found new gateway %pM -> gw_class: %i - %i%s/%i%s\n",
335 orig_node->orig, new_gwflags,
336 (down > 2048 ? down / 1024 : down),
337 (down > 2048 ? "MBit" : "KBit"),
338 (up > 2048 ? up / 1024 : up),
339 (up > 2048 ? "MBit" : "KBit"));
c6c8fea2
SE
340}
341
56303d34
SE
342void batadv_gw_node_update(struct batadv_priv *bat_priv,
343 struct batadv_orig_node *orig_node,
344 uint8_t new_gwflags)
c6c8fea2 345{
56303d34 346 struct batadv_gw_node *gw_node, *curr_gw;
c4aac1ab 347
9cfc7bd6 348 /* Note: We don't need a NULL check here, since curr_gw never gets
71e4aa9c
AQ
349 * dereferenced. If curr_gw is NULL we also should not exit as we may
350 * have this gateway in our list (duplication check!) even though we
351 * have no currently selected gateway.
352 */
1409a834 353 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
c6c8fea2
SE
354
355 rcu_read_lock();
b67bfe0d 356 hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) {
c6c8fea2
SE
357 if (gw_node->orig_node != orig_node)
358 continue;
359
39c75a51 360 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf
SE
361 "Gateway class of originator %pM changed from %i to %i\n",
362 orig_node->orig, gw_node->orig_node->gw_flags,
363 new_gwflags);
c6c8fea2
SE
364
365 gw_node->deleted = 0;
366
42d0b044 367 if (new_gwflags == BATADV_NO_FLAGS) {
c6c8fea2 368 gw_node->deleted = jiffies;
39c75a51 369 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf
SE
370 "Gateway %pM removed from gateway list\n",
371 orig_node->orig);
c6c8fea2 372
c4aac1ab
ML
373 if (gw_node == curr_gw)
374 goto deselect;
c6c8fea2
SE
375 }
376
c4aac1ab 377 goto unlock;
c6c8fea2 378 }
c6c8fea2 379
42d0b044 380 if (new_gwflags == BATADV_NO_FLAGS)
c4aac1ab 381 goto unlock;
c6c8fea2 382
1409a834 383 batadv_gw_node_add(bat_priv, orig_node, new_gwflags);
c4aac1ab
ML
384 goto unlock;
385
386deselect:
7cf06bc6 387 batadv_gw_deselect(bat_priv);
c4aac1ab
ML
388unlock:
389 rcu_read_unlock();
71e4aa9c 390
c4aac1ab 391 if (curr_gw)
1409a834 392 batadv_gw_node_free_ref(curr_gw);
c6c8fea2
SE
393}
394
56303d34
SE
395void batadv_gw_node_delete(struct batadv_priv *bat_priv,
396 struct batadv_orig_node *orig_node)
c6c8fea2 397{
7cf06bc6 398 batadv_gw_node_update(bat_priv, orig_node, 0);
c6c8fea2
SE
399}
400
56303d34 401void batadv_gw_node_purge(struct batadv_priv *bat_priv)
c6c8fea2 402{
56303d34 403 struct batadv_gw_node *gw_node, *curr_gw;
b67bfe0d 404 struct hlist_node *node_tmp;
42d0b044 405 unsigned long timeout = msecs_to_jiffies(2 * BATADV_PURGE_TIMEOUT);
b4e17054 406 int do_deselect = 0;
c4aac1ab 407
1409a834 408 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
c6c8fea2 409
807736f6 410 spin_lock_bh(&bat_priv->gw.list_lock);
c6c8fea2 411
b67bfe0d 412 hlist_for_each_entry_safe(gw_node, node_tmp,
807736f6 413 &bat_priv->gw.list, list) {
c6c8fea2
SE
414 if (((!gw_node->deleted) ||
415 (time_before(jiffies, gw_node->deleted + timeout))) &&
39c75a51 416 atomic_read(&bat_priv->mesh_state) == BATADV_MESH_ACTIVE)
c6c8fea2
SE
417 continue;
418
c4aac1ab
ML
419 if (curr_gw == gw_node)
420 do_deselect = 1;
c6c8fea2
SE
421
422 hlist_del_rcu(&gw_node->list);
1409a834 423 batadv_gw_node_free_ref(gw_node);
c6c8fea2
SE
424 }
425
807736f6 426 spin_unlock_bh(&bat_priv->gw.list_lock);
c4aac1ab
ML
427
428 /* gw_deselect() needs to acquire the gw_list_lock */
429 if (do_deselect)
7cf06bc6 430 batadv_gw_deselect(bat_priv);
c4aac1ab
ML
431
432 if (curr_gw)
1409a834 433 batadv_gw_node_free_ref(curr_gw);
c6c8fea2
SE
434}
435
9cfc7bd6 436/* fails if orig_node has no router */
56303d34
SE
437static int batadv_write_buffer_text(struct batadv_priv *bat_priv,
438 struct seq_file *seq,
439 const struct batadv_gw_node *gw_node)
c6c8fea2 440{
56303d34
SE
441 struct batadv_gw_node *curr_gw;
442 struct batadv_neigh_node *router;
e1a5382f 443 int down, up, ret = -1;
c6c8fea2 444
84d5e5e0 445 batadv_gw_bandwidth_to_kbit(gw_node->orig_node->gw_flags, &down, &up);
c6c8fea2 446
7d211efc 447 router = batadv_orig_node_get_router(gw_node->orig_node);
e1a5382f
LL
448 if (!router)
449 goto out;
5d02b3cd 450
1409a834 451 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
5d02b3cd 452
5d02b3cd 453 ret = seq_printf(seq, "%s %pM (%3i) %pM [%10s]: %3i - %i%s/%i%s\n",
c4aac1ab
ML
454 (curr_gw == gw_node ? "=>" : " "),
455 gw_node->orig_node->orig,
456 router->tq_avg, router->addr,
457 router->if_incoming->net_dev->name,
458 gw_node->orig_node->gw_flags,
459 (down > 2048 ? down / 1024 : down),
460 (down > 2048 ? "MBit" : "KBit"),
461 (up > 2048 ? up / 1024 : up),
462 (up > 2048 ? "MBit" : "KBit"));
5d02b3cd 463
7d211efc 464 batadv_neigh_node_free_ref(router);
c4aac1ab 465 if (curr_gw)
1409a834 466 batadv_gw_node_free_ref(curr_gw);
e1a5382f 467out:
5d02b3cd 468 return ret;
c6c8fea2
SE
469}
470
7cf06bc6 471int batadv_gw_client_seq_print_text(struct seq_file *seq, void *offset)
c6c8fea2
SE
472{
473 struct net_device *net_dev = (struct net_device *)seq->private;
56303d34
SE
474 struct batadv_priv *bat_priv = netdev_priv(net_dev);
475 struct batadv_hard_iface *primary_if;
476 struct batadv_gw_node *gw_node;
30da63a6 477 int gw_count = 0;
c6c8fea2 478
30da63a6
ML
479 primary_if = batadv_seq_print_text_primary_if_get(seq);
480 if (!primary_if)
32ae9b22 481 goto out;
c6c8fea2 482
86ceb360
SE
483 seq_printf(seq,
484 " %-12s (%s/%i) %17s [%10s]: gw_class ... [B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s)]\n",
42d0b044
SE
485 "Gateway", "#", BATADV_TQ_MAX_VALUE, "Nexthop", "outgoingIF",
486 BATADV_SOURCE_VERSION, primary_if->net_dev->name,
32ae9b22 487 primary_if->net_dev->dev_addr, net_dev->name);
c6c8fea2
SE
488
489 rcu_read_lock();
b67bfe0d 490 hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) {
c6c8fea2
SE
491 if (gw_node->deleted)
492 continue;
493
e1a5382f 494 /* fails if orig_node has no router */
1409a834 495 if (batadv_write_buffer_text(bat_priv, seq, gw_node) < 0)
c6c8fea2
SE
496 continue;
497
c6c8fea2
SE
498 gw_count++;
499 }
500 rcu_read_unlock();
501
502 if (gw_count == 0)
503 seq_printf(seq, "No gateways in range ...\n");
504
32ae9b22
ML
505out:
506 if (primary_if)
e5d89254 507 batadv_hardif_free_ref(primary_if);
30da63a6 508 return 0;
c6c8fea2
SE
509}
510
1409a834 511static bool batadv_is_type_dhcprequest(struct sk_buff *skb, int header_len)
43676ab5
AQ
512{
513 int ret = false;
514 unsigned char *p;
515 int pkt_len;
516
517 if (skb_linearize(skb) < 0)
518 goto out;
519
520 pkt_len = skb_headlen(skb);
521
347c80f0 522 if (pkt_len < header_len + BATADV_DHCP_OPTIONS_OFFSET + 1)
43676ab5
AQ
523 goto out;
524
347c80f0
SE
525 p = skb->data + header_len + BATADV_DHCP_OPTIONS_OFFSET;
526 pkt_len -= header_len + BATADV_DHCP_OPTIONS_OFFSET + 1;
43676ab5
AQ
527
528 /* Access the dhcp option lists. Each entry is made up by:
015758d0
AQ
529 * - octet 1: option type
530 * - octet 2: option data len (only if type != 255 and 0)
9cfc7bd6
SE
531 * - octet 3: option data
532 */
43676ab5 533 while (*p != 255 && !ret) {
015758d0 534 /* p now points to the first octet: option type */
43676ab5
AQ
535 if (*p == 53) {
536 /* type 53 is the message type option.
9cfc7bd6
SE
537 * Jump the len octet and go to the data octet
538 */
43676ab5
AQ
539 if (pkt_len < 2)
540 goto out;
541 p += 2;
542
543 /* check if the message type is what we need */
347c80f0 544 if (*p == BATADV_DHCP_REQUEST)
43676ab5
AQ
545 ret = true;
546 break;
547 } else if (*p == 0) {
548 /* option type 0 (padding), just go forward */
549 if (pkt_len < 1)
550 goto out;
551 pkt_len--;
552 p++;
553 } else {
554 /* This is any other option. So we get the length... */
555 if (pkt_len < 1)
556 goto out;
557 pkt_len--;
558 p++;
559
560 /* ...and then we jump over the data */
9205cc52 561 if (pkt_len < 1 + (*p))
43676ab5 562 goto out;
9205cc52
AQ
563 pkt_len -= 1 + (*p);
564 p += 1 + (*p);
43676ab5
AQ
565 }
566 }
567out:
568 return ret;
569}
570
7cf06bc6 571bool batadv_gw_is_dhcp_target(struct sk_buff *skb, unsigned int *header_len)
c6c8fea2
SE
572{
573 struct ethhdr *ethhdr;
574 struct iphdr *iphdr;
575 struct ipv6hdr *ipv6hdr;
576 struct udphdr *udphdr;
c6c8fea2
SE
577
578 /* check for ethernet header */
be7af5cf
ML
579 if (!pskb_may_pull(skb, *header_len + ETH_HLEN))
580 return false;
c6c8fea2 581 ethhdr = (struct ethhdr *)skb->data;
be7af5cf 582 *header_len += ETH_HLEN;
c6c8fea2
SE
583
584 /* check for initial vlan header */
585 if (ntohs(ethhdr->h_proto) == ETH_P_8021Q) {
be7af5cf
ML
586 if (!pskb_may_pull(skb, *header_len + VLAN_HLEN))
587 return false;
c6c8fea2 588 ethhdr = (struct ethhdr *)(skb->data + VLAN_HLEN);
be7af5cf 589 *header_len += VLAN_HLEN;
c6c8fea2
SE
590 }
591
592 /* check for ip header */
593 switch (ntohs(ethhdr->h_proto)) {
594 case ETH_P_IP:
be7af5cf
ML
595 if (!pskb_may_pull(skb, *header_len + sizeof(*iphdr)))
596 return false;
597 iphdr = (struct iphdr *)(skb->data + *header_len);
598 *header_len += iphdr->ihl * 4;
c6c8fea2
SE
599
600 /* check for udp header */
601 if (iphdr->protocol != IPPROTO_UDP)
be7af5cf 602 return false;
c6c8fea2
SE
603
604 break;
605 case ETH_P_IPV6:
be7af5cf
ML
606 if (!pskb_may_pull(skb, *header_len + sizeof(*ipv6hdr)))
607 return false;
608 ipv6hdr = (struct ipv6hdr *)(skb->data + *header_len);
609 *header_len += sizeof(*ipv6hdr);
c6c8fea2
SE
610
611 /* check for udp header */
612 if (ipv6hdr->nexthdr != IPPROTO_UDP)
be7af5cf 613 return false;
c6c8fea2
SE
614
615 break;
616 default:
be7af5cf 617 return false;
c6c8fea2
SE
618 }
619
be7af5cf
ML
620 if (!pskb_may_pull(skb, *header_len + sizeof(*udphdr)))
621 return false;
622 udphdr = (struct udphdr *)(skb->data + *header_len);
623 *header_len += sizeof(*udphdr);
c6c8fea2
SE
624
625 /* check for bootp port */
626 if ((ntohs(ethhdr->h_proto) == ETH_P_IP) &&
7c64fd98 627 (ntohs(udphdr->dest) != 67))
be7af5cf 628 return false;
c6c8fea2
SE
629
630 if ((ntohs(ethhdr->h_proto) == ETH_P_IPV6) &&
631 (ntohs(udphdr->dest) != 547))
be7af5cf 632 return false;
c6c8fea2 633
be7af5cf
ML
634 return true;
635}
c6c8fea2 636
56303d34 637bool batadv_gw_out_of_range(struct batadv_priv *bat_priv,
7cf06bc6 638 struct sk_buff *skb, struct ethhdr *ethhdr)
be7af5cf 639{
56303d34
SE
640 struct batadv_neigh_node *neigh_curr = NULL, *neigh_old = NULL;
641 struct batadv_orig_node *orig_dst_node = NULL;
642 struct batadv_gw_node *curr_gw = NULL;
be7af5cf
ML
643 bool ret, out_of_range = false;
644 unsigned int header_len = 0;
645 uint8_t curr_tq_avg;
646
7cf06bc6 647 ret = batadv_gw_is_dhcp_target(skb, &header_len);
be7af5cf
ML
648 if (!ret)
649 goto out;
650
08c36d3e
SE
651 orig_dst_node = batadv_transtable_search(bat_priv, ethhdr->h_source,
652 ethhdr->h_dest);
be7af5cf
ML
653 if (!orig_dst_node)
654 goto out;
655
656 if (!orig_dst_node->gw_flags)
657 goto out;
658
1409a834 659 ret = batadv_is_type_dhcprequest(skb, header_len);
be7af5cf
ML
660 if (!ret)
661 goto out;
662
663 switch (atomic_read(&bat_priv->gw_mode)) {
cd646ab1 664 case BATADV_GW_MODE_SERVER:
be7af5cf 665 /* If we are a GW then we are our best GW. We can artificially
9cfc7bd6
SE
666 * set the tq towards ourself as the maximum value
667 */
42d0b044 668 curr_tq_avg = BATADV_TQ_MAX_VALUE;
be7af5cf 669 break;
cd646ab1 670 case BATADV_GW_MODE_CLIENT:
1409a834 671 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
be7af5cf
ML
672 if (!curr_gw)
673 goto out;
674
675 /* packet is going to our gateway */
676 if (curr_gw->orig_node == orig_dst_node)
677 goto out;
678
679 /* If the dhcp packet has been sent to a different gw,
680 * we have to evaluate whether the old gw is still
9cfc7bd6
SE
681 * reliable enough
682 */
30d3c511
SE
683 neigh_curr = batadv_find_router(bat_priv, curr_gw->orig_node,
684 NULL);
be7af5cf
ML
685 if (!neigh_curr)
686 goto out;
687
688 curr_tq_avg = neigh_curr->tq_avg;
689 break;
cd646ab1 690 case BATADV_GW_MODE_OFF:
be7af5cf
ML
691 default:
692 goto out;
43676ab5 693 }
be7af5cf 694
30d3c511 695 neigh_old = batadv_find_router(bat_priv, orig_dst_node, NULL);
2ef04f47 696 if (!neigh_old)
be7af5cf
ML
697 goto out;
698
42d0b044 699 if (curr_tq_avg - neigh_old->tq_avg > BATADV_GW_THRESHOLD)
be7af5cf
ML
700 out_of_range = true;
701
702out:
703 if (orig_dst_node)
7d211efc 704 batadv_orig_node_free_ref(orig_dst_node);
be7af5cf 705 if (curr_gw)
1409a834 706 batadv_gw_node_free_ref(curr_gw);
43676ab5 707 if (neigh_old)
7d211efc 708 batadv_neigh_node_free_ref(neigh_old);
43676ab5 709 if (neigh_curr)
7d211efc 710 batadv_neigh_node_free_ref(neigh_curr);
be7af5cf 711 return out_of_range;
c6c8fea2 712}