1 /* Copyright (C) 2009-2017 B.A.T.M.A.N. contributors:
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, see <http://www.gnu.org/licenses/>.
16 */
17
18 #include "gateway_client.h"
19 #include "main.h"
20
21 #include <linux/atomic.h>
22 #include <linux/byteorder/generic.h>
23 #include <linux/errno.h>
24 #include <linux/etherdevice.h>
25 #include <linux/fs.h>
26 #include <linux/if_ether.h>
27 #include <linux/if_vlan.h>
28 #include <linux/in.h>
29 #include <linux/ip.h>
30 #include <linux/ipv6.h>
31 #include <linux/kernel.h>
32 #include <linux/kref.h>
33 #include <linux/list.h>
34 #include <linux/lockdep.h>
35 #include <linux/netdevice.h>
36 #include <linux/netlink.h>
37 #include <linux/rculist.h>
38 #include <linux/rcupdate.h>
39 #include <linux/seq_file.h>
40 #include <linux/skbuff.h>
41 #include <linux/slab.h>
42 #include <linux/spinlock.h>
43 #include <linux/stddef.h>
44 #include <linux/udp.h>
45 #include <net/sock.h>
46 #include <uapi/linux/batman_adv.h>
47
48 #include "gateway_common.h"
49 #include "hard-interface.h"
50 #include "log.h"
51 #include "netlink.h"
52 #include "originator.h"
53 #include "packet.h"
54 #include "routing.h"
55 #include "soft-interface.h"
56 #include "sysfs.h"
57 #include "translation-table.h"
58
59 /* These are the offsets of the "hw type" and "hw address length" in the dhcp
60 * packet starting at the beginning of the dhcp header
61 */
62 #define BATADV_DHCP_HTYPE_OFFSET 1
63 #define BATADV_DHCP_HLEN_OFFSET 2
64 /* Value of htype representing Ethernet */
65 #define BATADV_DHCP_HTYPE_ETHERNET 0x01
66 /* This is the offset of the "chaddr" field in the dhcp packet starting at the
67 * beginning of the dhcp header
68 */
69 #define BATADV_DHCP_CHADDR_OFFSET 28
70
71 /**
72 * batadv_gw_node_release - release gw_node from lists and queue for free after
73 * rcu grace period
74 * @ref: kref pointer of the gw_node
75 */
batadv_gw_node_release(struct kref * ref)76 static void batadv_gw_node_release(struct kref *ref)
77 {
78 struct batadv_gw_node *gw_node;
79
80 gw_node = container_of(ref, struct batadv_gw_node, refcount);
81
82 batadv_orig_node_put(gw_node->orig_node);
83 kfree_rcu(gw_node, rcu);
84 }
85
86 /**
87 * batadv_gw_node_put - decrement the gw_node refcounter and possibly release it
88 * @gw_node: gateway node to free
89 */
batadv_gw_node_put(struct batadv_gw_node * gw_node)90 void batadv_gw_node_put(struct batadv_gw_node *gw_node)
91 {
92 kref_put(&gw_node->refcount, batadv_gw_node_release);
93 }
94
95 struct batadv_gw_node *
batadv_gw_get_selected_gw_node(struct batadv_priv * bat_priv)96 batadv_gw_get_selected_gw_node(struct batadv_priv *bat_priv)
97 {
98 struct batadv_gw_node *gw_node;
99
100 rcu_read_lock();
101 gw_node = rcu_dereference(bat_priv->gw.curr_gw);
102 if (!gw_node)
103 goto out;
104
105 if (!kref_get_unless_zero(&gw_node->refcount))
106 gw_node = NULL;
107
108 out:
109 rcu_read_unlock();
110 return gw_node;
111 }
112
113 struct batadv_orig_node *
batadv_gw_get_selected_orig(struct batadv_priv * bat_priv)114 batadv_gw_get_selected_orig(struct batadv_priv *bat_priv)
115 {
116 struct batadv_gw_node *gw_node;
117 struct batadv_orig_node *orig_node = NULL;
118
119 gw_node = batadv_gw_get_selected_gw_node(bat_priv);
120 if (!gw_node)
121 goto out;
122
123 rcu_read_lock();
124 orig_node = gw_node->orig_node;
125 if (!orig_node)
126 goto unlock;
127
128 if (!kref_get_unless_zero(&orig_node->refcount))
129 orig_node = NULL;
130
131 unlock:
132 rcu_read_unlock();
133 out:
134 if (gw_node)
135 batadv_gw_node_put(gw_node);
136 return orig_node;
137 }
138
batadv_gw_select(struct batadv_priv * bat_priv,struct batadv_gw_node * new_gw_node)139 static void batadv_gw_select(struct batadv_priv *bat_priv,
140 struct batadv_gw_node *new_gw_node)
141 {
142 struct batadv_gw_node *curr_gw_node;
143
144 spin_lock_bh(&bat_priv->gw.list_lock);
145
146 if (new_gw_node)
147 kref_get(&new_gw_node->refcount);
148
149 curr_gw_node = rcu_dereference_protected(bat_priv->gw.curr_gw, 1);
150 rcu_assign_pointer(bat_priv->gw.curr_gw, new_gw_node);
151
152 if (curr_gw_node)
153 batadv_gw_node_put(curr_gw_node);
154
155 spin_unlock_bh(&bat_priv->gw.list_lock);
156 }
157
158 /**
159 * batadv_gw_reselect - force a gateway reselection
160 * @bat_priv: the bat priv with all the soft interface information
161 *
162 * Set a flag to remind the GW component to perform a new gateway reselection.
163 * However this function does not ensure that the current gateway is going to be
164 * deselected. The reselection mechanism may elect the same gateway once again.
165 *
166 * This means that invoking batadv_gw_reselect() does not guarantee a gateway
167 * change and therefore a uevent is not necessarily expected.
168 */
batadv_gw_reselect(struct batadv_priv * bat_priv)169 void batadv_gw_reselect(struct batadv_priv *bat_priv)
170 {
171 atomic_set(&bat_priv->gw.reselect, 1);
172 }
173
174 /**
175 * batadv_gw_check_client_stop - check if client mode has been switched off
176 * @bat_priv: the bat priv with all the soft interface information
177 *
178 * This function assumes the caller has checked that the gw state *is actually
179 * changing*. This function is not supposed to be called when there is no state
180 * change.
181 */
batadv_gw_check_client_stop(struct batadv_priv * bat_priv)182 void batadv_gw_check_client_stop(struct batadv_priv *bat_priv)
183 {
184 struct batadv_gw_node *curr_gw;
185
186 if (atomic_read(&bat_priv->gw.mode) != BATADV_GW_MODE_CLIENT)
187 return;
188
189 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
190 if (!curr_gw)
191 return;
192
193 /* deselect the current gateway so that next time that client mode is
194 * enabled a proper GW_ADD event can be sent
195 */
196 batadv_gw_select(bat_priv, NULL);
197
198 /* if batman-adv is switching the gw client mode off and a gateway was
199 * already selected, send a DEL uevent
200 */
201 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_DEL, NULL);
202
203 batadv_gw_node_put(curr_gw);
204 }
205
batadv_gw_election(struct batadv_priv * bat_priv)206 void batadv_gw_election(struct batadv_priv *bat_priv)
207 {
208 struct batadv_gw_node *curr_gw = NULL;
209 struct batadv_gw_node *next_gw = NULL;
210 struct batadv_neigh_node *router = NULL;
211 struct batadv_neigh_ifinfo *router_ifinfo = NULL;
212 char gw_addr[18] = { '\0' };
213
214 if (atomic_read(&bat_priv->gw.mode) != BATADV_GW_MODE_CLIENT)
215 goto out;
216
217 if (!bat_priv->algo_ops->gw.get_best_gw_node)
218 goto out;
219
220 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
221
222 if (!batadv_atomic_dec_not_zero(&bat_priv->gw.reselect) && curr_gw)
223 goto out;
224
225 /* if gw.reselect is set to 1 it means that a previous call to
226 * gw.is_eligible() said that we have a new best GW, therefore it can
227 * now be picked from the list and selected
228 */
229 next_gw = bat_priv->algo_ops->gw.get_best_gw_node(bat_priv);
230
231 if (curr_gw == next_gw)
232 goto out;
233
234 if (next_gw) {
235 sprintf(gw_addr, "%pM", next_gw->orig_node->orig);
236
237 router = batadv_orig_router_get(next_gw->orig_node,
238 BATADV_IF_DEFAULT);
239 if (!router) {
240 batadv_gw_reselect(bat_priv);
241 goto out;
242 }
243
244 router_ifinfo = batadv_neigh_ifinfo_get(router,
245 BATADV_IF_DEFAULT);
246 if (!router_ifinfo) {
247 batadv_gw_reselect(bat_priv);
248 goto out;
249 }
250 }
251
252 if ((curr_gw) && (!next_gw)) {
253 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
254 "Removing selected gateway - no gateway in range\n");
255 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_DEL,
256 NULL);
257 } else if ((!curr_gw) && (next_gw)) {
258 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
259 "Adding route to gateway %pM (bandwidth: %u.%u/%u.%u MBit, tq: %i)\n",
260 next_gw->orig_node->orig,
261 next_gw->bandwidth_down / 10,
262 next_gw->bandwidth_down % 10,
263 next_gw->bandwidth_up / 10,
264 next_gw->bandwidth_up % 10,
265 router_ifinfo->bat_iv.tq_avg);
266 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_ADD,
267 gw_addr);
268 } else {
269 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
270 "Changing route to gateway %pM (bandwidth: %u.%u/%u.%u MBit, tq: %i)\n",
271 next_gw->orig_node->orig,
272 next_gw->bandwidth_down / 10,
273 next_gw->bandwidth_down % 10,
274 next_gw->bandwidth_up / 10,
275 next_gw->bandwidth_up % 10,
276 router_ifinfo->bat_iv.tq_avg);
277 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_CHANGE,
278 gw_addr);
279 }
280
281 batadv_gw_select(bat_priv, next_gw);
282
283 out:
284 if (curr_gw)
285 batadv_gw_node_put(curr_gw);
286 if (next_gw)
287 batadv_gw_node_put(next_gw);
288 if (router)
289 batadv_neigh_node_put(router);
290 if (router_ifinfo)
291 batadv_neigh_ifinfo_put(router_ifinfo);
292 }
293
batadv_gw_check_election(struct batadv_priv * bat_priv,struct batadv_orig_node * orig_node)294 void batadv_gw_check_election(struct batadv_priv *bat_priv,
295 struct batadv_orig_node *orig_node)
296 {
297 struct batadv_orig_node *curr_gw_orig;
298
299 /* abort immediately if the routing algorithm does not support gateway
300 * election
301 */
302 if (!bat_priv->algo_ops->gw.is_eligible)
303 return;
304
305 curr_gw_orig = batadv_gw_get_selected_orig(bat_priv);
306 if (!curr_gw_orig)
307 goto reselect;
308
309 /* this node already is the gateway */
310 if (curr_gw_orig == orig_node)
311 goto out;
312
313 if (!bat_priv->algo_ops->gw.is_eligible(bat_priv, curr_gw_orig,
314 orig_node))
315 goto out;
316
317 reselect:
318 batadv_gw_reselect(bat_priv);
319 out:
320 if (curr_gw_orig)
321 batadv_orig_node_put(curr_gw_orig);
322 }
323
324 /**
325 * batadv_gw_node_add - add gateway node to list of available gateways
326 * @bat_priv: the bat priv with all the soft interface information
327 * @orig_node: originator announcing gateway capabilities
328 * @gateway: announced bandwidth information
329 *
330 * Has to be called with the appropriate locks being acquired
331 * (gw.list_lock).
332 */
batadv_gw_node_add(struct batadv_priv * bat_priv,struct batadv_orig_node * orig_node,struct batadv_tvlv_gateway_data * gateway)333 static void batadv_gw_node_add(struct batadv_priv *bat_priv,
334 struct batadv_orig_node *orig_node,
335 struct batadv_tvlv_gateway_data *gateway)
336 {
337 struct batadv_gw_node *gw_node;
338
339 lockdep_assert_held(&bat_priv->gw.list_lock);
340
341 if (gateway->bandwidth_down == 0)
342 return;
343
344 gw_node = kzalloc(sizeof(*gw_node), GFP_ATOMIC);
345 if (!gw_node)
346 return;
347
348 kref_init(&gw_node->refcount);
349 INIT_HLIST_NODE(&gw_node->list);
350 kref_get(&orig_node->refcount);
351 gw_node->orig_node = orig_node;
352 gw_node->bandwidth_down = ntohl(gateway->bandwidth_down);
353 gw_node->bandwidth_up = ntohl(gateway->bandwidth_up);
354
355 kref_get(&gw_node->refcount);
356 hlist_add_head_rcu(&gw_node->list, &bat_priv->gw.gateway_list);
357
358 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
359 "Found new gateway %pM -> gw bandwidth: %u.%u/%u.%u MBit\n",
360 orig_node->orig,
361 ntohl(gateway->bandwidth_down) / 10,
362 ntohl(gateway->bandwidth_down) % 10,
363 ntohl(gateway->bandwidth_up) / 10,
364 ntohl(gateway->bandwidth_up) % 10);
365
366 /* don't return reference to new gw_node */
367 batadv_gw_node_put(gw_node);
368 }
369
370 /**
371 * batadv_gw_node_get - retrieve gateway node from list of available gateways
372 * @bat_priv: the bat priv with all the soft interface information
373 * @orig_node: originator announcing gateway capabilities
374 *
375 * Return: gateway node if found or NULL otherwise.
376 */
batadv_gw_node_get(struct batadv_priv * bat_priv,struct batadv_orig_node * orig_node)377 struct batadv_gw_node *batadv_gw_node_get(struct batadv_priv *bat_priv,
378 struct batadv_orig_node *orig_node)
379 {
380 struct batadv_gw_node *gw_node_tmp, *gw_node = NULL;
381
382 rcu_read_lock();
383 hlist_for_each_entry_rcu(gw_node_tmp, &bat_priv->gw.gateway_list,
384 list) {
385 if (gw_node_tmp->orig_node != orig_node)
386 continue;
387
388 if (!kref_get_unless_zero(&gw_node_tmp->refcount))
389 continue;
390
391 gw_node = gw_node_tmp;
392 break;
393 }
394 rcu_read_unlock();
395
396 return gw_node;
397 }
398
399 /**
400 * batadv_gw_node_update - update list of available gateways with changed
401 * bandwidth information
402 * @bat_priv: the bat priv with all the soft interface information
403 * @orig_node: originator announcing gateway capabilities
404 * @gateway: announced bandwidth information
405 */
batadv_gw_node_update(struct batadv_priv * bat_priv,struct batadv_orig_node * orig_node,struct batadv_tvlv_gateway_data * gateway)406 void batadv_gw_node_update(struct batadv_priv *bat_priv,
407 struct batadv_orig_node *orig_node,
408 struct batadv_tvlv_gateway_data *gateway)
409 {
410 struct batadv_gw_node *gw_node, *curr_gw = NULL;
411
412 spin_lock_bh(&bat_priv->gw.list_lock);
413 gw_node = batadv_gw_node_get(bat_priv, orig_node);
414 if (!gw_node) {
415 batadv_gw_node_add(bat_priv, orig_node, gateway);
416 spin_unlock_bh(&bat_priv->gw.list_lock);
417 goto out;
418 }
419 spin_unlock_bh(&bat_priv->gw.list_lock);
420
421 if ((gw_node->bandwidth_down == ntohl(gateway->bandwidth_down)) &&
422 (gw_node->bandwidth_up == ntohl(gateway->bandwidth_up)))
423 goto out;
424
425 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
426 "Gateway bandwidth of originator %pM changed from %u.%u/%u.%u MBit to %u.%u/%u.%u MBit\n",
427 orig_node->orig,
428 gw_node->bandwidth_down / 10,
429 gw_node->bandwidth_down % 10,
430 gw_node->bandwidth_up / 10,
431 gw_node->bandwidth_up % 10,
432 ntohl(gateway->bandwidth_down) / 10,
433 ntohl(gateway->bandwidth_down) % 10,
434 ntohl(gateway->bandwidth_up) / 10,
435 ntohl(gateway->bandwidth_up) % 10);
436
437 gw_node->bandwidth_down = ntohl(gateway->bandwidth_down);
438 gw_node->bandwidth_up = ntohl(gateway->bandwidth_up);
439
440 if (ntohl(gateway->bandwidth_down) == 0) {
441 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
442 "Gateway %pM removed from gateway list\n",
443 orig_node->orig);
444
445 /* Note: We don't need a NULL check here, since curr_gw never
446 * gets dereferenced.
447 */
448 spin_lock_bh(&bat_priv->gw.list_lock);
449 if (!hlist_unhashed(&gw_node->list)) {
450 hlist_del_init_rcu(&gw_node->list);
451 batadv_gw_node_put(gw_node);
452 }
453 spin_unlock_bh(&bat_priv->gw.list_lock);
454
455 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
456 if (gw_node == curr_gw)
457 batadv_gw_reselect(bat_priv);
458
459 if (curr_gw)
460 batadv_gw_node_put(curr_gw);
461 }
462
463 out:
464 if (gw_node)
465 batadv_gw_node_put(gw_node);
466 }
467
batadv_gw_node_delete(struct batadv_priv * bat_priv,struct batadv_orig_node * orig_node)468 void batadv_gw_node_delete(struct batadv_priv *bat_priv,
469 struct batadv_orig_node *orig_node)
470 {
471 struct batadv_tvlv_gateway_data gateway;
472
473 gateway.bandwidth_down = 0;
474 gateway.bandwidth_up = 0;
475
476 batadv_gw_node_update(bat_priv, orig_node, &gateway);
477 }
478
batadv_gw_node_free(struct batadv_priv * bat_priv)479 void batadv_gw_node_free(struct batadv_priv *bat_priv)
480 {
481 struct batadv_gw_node *gw_node;
482 struct hlist_node *node_tmp;
483
484 spin_lock_bh(&bat_priv->gw.list_lock);
485 hlist_for_each_entry_safe(gw_node, node_tmp,
486 &bat_priv->gw.gateway_list, list) {
487 hlist_del_init_rcu(&gw_node->list);
488 batadv_gw_node_put(gw_node);
489 }
490 spin_unlock_bh(&bat_priv->gw.list_lock);
491 }
492
493 #ifdef CONFIG_BATMAN_ADV_DEBUGFS
batadv_gw_client_seq_print_text(struct seq_file * seq,void * offset)494 int batadv_gw_client_seq_print_text(struct seq_file *seq, void *offset)
495 {
496 struct net_device *net_dev = (struct net_device *)seq->private;
497 struct batadv_priv *bat_priv = netdev_priv(net_dev);
498 struct batadv_hard_iface *primary_if;
499
500 primary_if = batadv_seq_print_text_primary_if_get(seq);
501 if (!primary_if)
502 return 0;
503
504 seq_printf(seq, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s %s)]\n",
505 BATADV_SOURCE_VERSION, primary_if->net_dev->name,
506 primary_if->net_dev->dev_addr, net_dev->name,
507 bat_priv->algo_ops->name);
508
509 batadv_hardif_put(primary_if);
510
511 if (!bat_priv->algo_ops->gw.print) {
512 seq_puts(seq,
513 "No printing function for this routing protocol\n");
514 return 0;
515 }
516
517 bat_priv->algo_ops->gw.print(bat_priv, seq);
518
519 return 0;
520 }
521 #endif
522
523 /**
524 * batadv_gw_dump - Dump gateways into a message
525 * @msg: Netlink message to dump into
526 * @cb: Control block containing additional options
527 *
528 * Return: Error code, or length of message
529 */
batadv_gw_dump(struct sk_buff * msg,struct netlink_callback * cb)530 int batadv_gw_dump(struct sk_buff *msg, struct netlink_callback *cb)
531 {
532 struct batadv_hard_iface *primary_if = NULL;
533 struct net *net = sock_net(cb->skb->sk);
534 struct net_device *soft_iface;
535 struct batadv_priv *bat_priv;
536 int ifindex;
537 int ret;
538
539 ifindex = batadv_netlink_get_ifindex(cb->nlh,
540 BATADV_ATTR_MESH_IFINDEX);
541 if (!ifindex)
542 return -EINVAL;
543
544 soft_iface = dev_get_by_index(net, ifindex);
545 if (!soft_iface || !batadv_softif_is_valid(soft_iface)) {
546 ret = -ENODEV;
547 goto out;
548 }
549
550 bat_priv = netdev_priv(soft_iface);
551
552 primary_if = batadv_primary_if_get_selected(bat_priv);
553 if (!primary_if || primary_if->if_status != BATADV_IF_ACTIVE) {
554 ret = -ENOENT;
555 goto out;
556 }
557
558 if (!bat_priv->algo_ops->gw.dump) {
559 ret = -EOPNOTSUPP;
560 goto out;
561 }
562
563 bat_priv->algo_ops->gw.dump(msg, cb, bat_priv);
564
565 ret = msg->len;
566
567 out:
568 if (primary_if)
569 batadv_hardif_put(primary_if);
570 if (soft_iface)
571 dev_put(soft_iface);
572
573 return ret;
574 }
575
576 /**
577 * batadv_gw_dhcp_recipient_get - check if a packet is a DHCP message
578 * @skb: the packet to check
579 * @header_len: a pointer to the batman-adv header size
580 * @chaddr: buffer where the client address will be stored. Valid
581 * only if the function returns BATADV_DHCP_TO_CLIENT
582 *
583 * This function may re-allocate the data buffer of the skb passed as argument.
584 *
585 * Return:
586 * - BATADV_DHCP_NO if the packet is not a dhcp message or if there was an error
587 * while parsing it
588 * - BATADV_DHCP_TO_SERVER if this is a message going to the DHCP server
589 * - BATADV_DHCP_TO_CLIENT if this is a message going to a DHCP client
590 */
591 enum batadv_dhcp_recipient
batadv_gw_dhcp_recipient_get(struct sk_buff * skb,unsigned int * header_len,u8 * chaddr)592 batadv_gw_dhcp_recipient_get(struct sk_buff *skb, unsigned int *header_len,
593 u8 *chaddr)
594 {
595 enum batadv_dhcp_recipient ret = BATADV_DHCP_NO;
596 struct ethhdr *ethhdr;
597 struct iphdr *iphdr;
598 struct ipv6hdr *ipv6hdr;
599 struct udphdr *udphdr;
600 struct vlan_ethhdr *vhdr;
601 int chaddr_offset;
602 __be16 proto;
603 u8 *p;
604
605 /* check for ethernet header */
606 if (!pskb_may_pull(skb, *header_len + ETH_HLEN))
607 return BATADV_DHCP_NO;
608
609 ethhdr = eth_hdr(skb);
610 proto = ethhdr->h_proto;
611 *header_len += ETH_HLEN;
612
613 /* check for initial vlan header */
614 if (proto == htons(ETH_P_8021Q)) {
615 if (!pskb_may_pull(skb, *header_len + VLAN_HLEN))
616 return BATADV_DHCP_NO;
617
618 vhdr = vlan_eth_hdr(skb);
619 proto = vhdr->h_vlan_encapsulated_proto;
620 *header_len += VLAN_HLEN;
621 }
622
623 /* check for ip header */
624 switch (proto) {
625 case htons(ETH_P_IP):
626 if (!pskb_may_pull(skb, *header_len + sizeof(*iphdr)))
627 return BATADV_DHCP_NO;
628
629 iphdr = (struct iphdr *)(skb->data + *header_len);
630 *header_len += iphdr->ihl * 4;
631
632 /* check for udp header */
633 if (iphdr->protocol != IPPROTO_UDP)
634 return BATADV_DHCP_NO;
635
636 break;
637 case htons(ETH_P_IPV6):
638 if (!pskb_may_pull(skb, *header_len + sizeof(*ipv6hdr)))
639 return BATADV_DHCP_NO;
640
641 ipv6hdr = (struct ipv6hdr *)(skb->data + *header_len);
642 *header_len += sizeof(*ipv6hdr);
643
644 /* check for udp header */
645 if (ipv6hdr->nexthdr != IPPROTO_UDP)
646 return BATADV_DHCP_NO;
647
648 break;
649 default:
650 return BATADV_DHCP_NO;
651 }
652
653 if (!pskb_may_pull(skb, *header_len + sizeof(*udphdr)))
654 return BATADV_DHCP_NO;
655
656 udphdr = (struct udphdr *)(skb->data + *header_len);
657 *header_len += sizeof(*udphdr);
658
659 /* check for bootp port */
660 switch (proto) {
661 case htons(ETH_P_IP):
662 if (udphdr->dest == htons(67))
663 ret = BATADV_DHCP_TO_SERVER;
664 else if (udphdr->source == htons(67))
665 ret = BATADV_DHCP_TO_CLIENT;
666 break;
667 case htons(ETH_P_IPV6):
668 if (udphdr->dest == htons(547))
669 ret = BATADV_DHCP_TO_SERVER;
670 else if (udphdr->source == htons(547))
671 ret = BATADV_DHCP_TO_CLIENT;
672 break;
673 }
674
675 chaddr_offset = *header_len + BATADV_DHCP_CHADDR_OFFSET;
676 /* store the client address if the message is going to a client */
677 if (ret == BATADV_DHCP_TO_CLIENT &&
678 pskb_may_pull(skb, chaddr_offset + ETH_ALEN)) {
679 /* check if the DHCP packet carries an Ethernet DHCP */
680 p = skb->data + *header_len + BATADV_DHCP_HTYPE_OFFSET;
681 if (*p != BATADV_DHCP_HTYPE_ETHERNET)
682 return BATADV_DHCP_NO;
683
684 /* check if the DHCP packet carries a valid Ethernet address */
685 p = skb->data + *header_len + BATADV_DHCP_HLEN_OFFSET;
686 if (*p != ETH_ALEN)
687 return BATADV_DHCP_NO;
688
689 ether_addr_copy(chaddr, skb->data + chaddr_offset);
690 }
691
692 return ret;
693 }
694
695 /**
696 * batadv_gw_out_of_range - check if the dhcp request destination is the best gw
697 * @bat_priv: the bat priv with all the soft interface information
698 * @skb: the outgoing packet
699 *
700 * Check if the skb is a DHCP request and if it is sent to the current best GW
701 * server. Due to topology changes it may be the case that the GW server
702 * previously selected is not the best one anymore.
703 *
704 * This call might reallocate skb data.
705 * Must be invoked only when the DHCP packet is going TO a DHCP SERVER.
706 *
707 * Return: true if the packet destination is unicast and it is not the best gw,
708 * false otherwise.
709 */
batadv_gw_out_of_range(struct batadv_priv * bat_priv,struct sk_buff * skb)710 bool batadv_gw_out_of_range(struct batadv_priv *bat_priv,
711 struct sk_buff *skb)
712 {
713 struct batadv_neigh_node *neigh_curr = NULL;
714 struct batadv_neigh_node *neigh_old = NULL;
715 struct batadv_orig_node *orig_dst_node = NULL;
716 struct batadv_gw_node *gw_node = NULL;
717 struct batadv_gw_node *curr_gw = NULL;
718 struct batadv_neigh_ifinfo *curr_ifinfo, *old_ifinfo;
719 struct ethhdr *ethhdr = (struct ethhdr *)skb->data;
720 bool out_of_range = false;
721 u8 curr_tq_avg;
722 unsigned short vid;
723
724 vid = batadv_get_vid(skb, 0);
725
726 if (is_multicast_ether_addr(ethhdr->h_dest))
727 goto out;
728
729 orig_dst_node = batadv_transtable_search(bat_priv, ethhdr->h_source,
730 ethhdr->h_dest, vid);
731 if (!orig_dst_node)
732 goto out;
733
734 gw_node = batadv_gw_node_get(bat_priv, orig_dst_node);
735 if (!gw_node)
736 goto out;
737
738 switch (atomic_read(&bat_priv->gw.mode)) {
739 case BATADV_GW_MODE_SERVER:
740 /* If we are a GW then we are our best GW. We can artificially
741 * set the tq towards ourself as the maximum value
742 */
743 curr_tq_avg = BATADV_TQ_MAX_VALUE;
744 break;
745 case BATADV_GW_MODE_CLIENT:
746 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
747 if (!curr_gw)
748 goto out;
749
750 /* packet is going to our gateway */
751 if (curr_gw->orig_node == orig_dst_node)
752 goto out;
753
754 /* If the dhcp packet has been sent to a different gw,
755 * we have to evaluate whether the old gw is still
756 * reliable enough
757 */
758 neigh_curr = batadv_find_router(bat_priv, curr_gw->orig_node,
759 NULL);
760 if (!neigh_curr)
761 goto out;
762
763 curr_ifinfo = batadv_neigh_ifinfo_get(neigh_curr,
764 BATADV_IF_DEFAULT);
765 if (!curr_ifinfo)
766 goto out;
767
768 curr_tq_avg = curr_ifinfo->bat_iv.tq_avg;
769 batadv_neigh_ifinfo_put(curr_ifinfo);
770
771 break;
772 case BATADV_GW_MODE_OFF:
773 default:
774 goto out;
775 }
776
777 neigh_old = batadv_find_router(bat_priv, orig_dst_node, NULL);
778 if (!neigh_old)
779 goto out;
780
781 old_ifinfo = batadv_neigh_ifinfo_get(neigh_old, BATADV_IF_DEFAULT);
782 if (!old_ifinfo)
783 goto out;
784
785 if ((curr_tq_avg - old_ifinfo->bat_iv.tq_avg) > BATADV_GW_THRESHOLD)
786 out_of_range = true;
787 batadv_neigh_ifinfo_put(old_ifinfo);
788
789 out:
790 if (orig_dst_node)
791 batadv_orig_node_put(orig_dst_node);
792 if (curr_gw)
793 batadv_gw_node_put(curr_gw);
794 if (gw_node)
795 batadv_gw_node_put(gw_node);
796 if (neigh_old)
797 batadv_neigh_node_put(neigh_old);
798 if (neigh_curr)
799 batadv_neigh_node_put(neigh_curr);
800 return out_of_range;
801 }
802