rtc: opal: Fix OPAL RTC driver OPAL_BUSY loops
[linux/fpc-iii.git] / net / batman-adv / gateway_client.c
blob808d2dd4a8394556744b694f3684745d876e1001
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (C) 2009-2017 B.A.T.M.A.N. contributors:
4 * Marek Lindner
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #include "gateway_client.h"
20 #include "main.h"
22 #include <linux/atomic.h>
23 #include <linux/byteorder/generic.h>
24 #include <linux/errno.h>
25 #include <linux/etherdevice.h>
26 #include <linux/gfp.h>
27 #include <linux/if_ether.h>
28 #include <linux/if_vlan.h>
29 #include <linux/in.h>
30 #include <linux/ip.h>
31 #include <linux/ipv6.h>
32 #include <linux/kernel.h>
33 #include <linux/kref.h>
34 #include <linux/list.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/batadv_packet.h>
47 #include <uapi/linux/batman_adv.h>
49 #include "gateway_common.h"
50 #include "hard-interface.h"
51 #include "log.h"
52 #include "netlink.h"
53 #include "originator.h"
54 #include "routing.h"
55 #include "soft-interface.h"
56 #include "sysfs.h"
57 #include "translation-table.h"
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
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
69 #define BATADV_DHCP_CHADDR_OFFSET 28
71 /**
72 * batadv_gw_node_release() - release gw_node from lists and queue for free
73 * after rcu grace period
74 * @ref: kref pointer of the gw_node
76 static void batadv_gw_node_release(struct kref *ref)
78 struct batadv_gw_node *gw_node;
80 gw_node = container_of(ref, struct batadv_gw_node, refcount);
82 batadv_orig_node_put(gw_node->orig_node);
83 kfree_rcu(gw_node, rcu);
86 /**
87 * batadv_gw_node_put() - decrement the gw_node refcounter and possibly release
88 * it
89 * @gw_node: gateway node to free
91 void batadv_gw_node_put(struct batadv_gw_node *gw_node)
93 kref_put(&gw_node->refcount, batadv_gw_node_release);
96 /**
97 * batadv_gw_get_selected_gw_node() - Get currently selected gateway
98 * @bat_priv: the bat priv with all the soft interface information
100 * Return: selected gateway (with increased refcnt), NULL on errors
102 struct batadv_gw_node *
103 batadv_gw_get_selected_gw_node(struct batadv_priv *bat_priv)
105 struct batadv_gw_node *gw_node;
107 rcu_read_lock();
108 gw_node = rcu_dereference(bat_priv->gw.curr_gw);
109 if (!gw_node)
110 goto out;
112 if (!kref_get_unless_zero(&gw_node->refcount))
113 gw_node = NULL;
115 out:
116 rcu_read_unlock();
117 return gw_node;
121 * batadv_gw_get_selected_orig() - Get originator of currently selected gateway
122 * @bat_priv: the bat priv with all the soft interface information
124 * Return: orig_node of selected gateway (with increased refcnt), NULL on errors
126 struct batadv_orig_node *
127 batadv_gw_get_selected_orig(struct batadv_priv *bat_priv)
129 struct batadv_gw_node *gw_node;
130 struct batadv_orig_node *orig_node = NULL;
132 gw_node = batadv_gw_get_selected_gw_node(bat_priv);
133 if (!gw_node)
134 goto out;
136 rcu_read_lock();
137 orig_node = gw_node->orig_node;
138 if (!orig_node)
139 goto unlock;
141 if (!kref_get_unless_zero(&orig_node->refcount))
142 orig_node = NULL;
144 unlock:
145 rcu_read_unlock();
146 out:
147 if (gw_node)
148 batadv_gw_node_put(gw_node);
149 return orig_node;
152 static void batadv_gw_select(struct batadv_priv *bat_priv,
153 struct batadv_gw_node *new_gw_node)
155 struct batadv_gw_node *curr_gw_node;
157 spin_lock_bh(&bat_priv->gw.list_lock);
159 if (new_gw_node)
160 kref_get(&new_gw_node->refcount);
162 curr_gw_node = rcu_dereference_protected(bat_priv->gw.curr_gw, 1);
163 rcu_assign_pointer(bat_priv->gw.curr_gw, new_gw_node);
165 if (curr_gw_node)
166 batadv_gw_node_put(curr_gw_node);
168 spin_unlock_bh(&bat_priv->gw.list_lock);
172 * batadv_gw_reselect() - force a gateway reselection
173 * @bat_priv: the bat priv with all the soft interface information
175 * Set a flag to remind the GW component to perform a new gateway reselection.
176 * However this function does not ensure that the current gateway is going to be
177 * deselected. The reselection mechanism may elect the same gateway once again.
179 * This means that invoking batadv_gw_reselect() does not guarantee a gateway
180 * change and therefore a uevent is not necessarily expected.
182 void batadv_gw_reselect(struct batadv_priv *bat_priv)
184 atomic_set(&bat_priv->gw.reselect, 1);
188 * batadv_gw_check_client_stop() - check if client mode has been switched off
189 * @bat_priv: the bat priv with all the soft interface information
191 * This function assumes the caller has checked that the gw state *is actually
192 * changing*. This function is not supposed to be called when there is no state
193 * change.
195 void batadv_gw_check_client_stop(struct batadv_priv *bat_priv)
197 struct batadv_gw_node *curr_gw;
199 if (atomic_read(&bat_priv->gw.mode) != BATADV_GW_MODE_CLIENT)
200 return;
202 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
203 if (!curr_gw)
204 return;
206 /* deselect the current gateway so that next time that client mode is
207 * enabled a proper GW_ADD event can be sent
209 batadv_gw_select(bat_priv, NULL);
211 /* if batman-adv is switching the gw client mode off and a gateway was
212 * already selected, send a DEL uevent
214 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_DEL, NULL);
216 batadv_gw_node_put(curr_gw);
220 * batadv_gw_election() - Elect the best gateway
221 * @bat_priv: the bat priv with all the soft interface information
223 void batadv_gw_election(struct batadv_priv *bat_priv)
225 struct batadv_gw_node *curr_gw = NULL;
226 struct batadv_gw_node *next_gw = NULL;
227 struct batadv_neigh_node *router = NULL;
228 struct batadv_neigh_ifinfo *router_ifinfo = NULL;
229 char gw_addr[18] = { '\0' };
231 if (atomic_read(&bat_priv->gw.mode) != BATADV_GW_MODE_CLIENT)
232 goto out;
234 if (!bat_priv->algo_ops->gw.get_best_gw_node)
235 goto out;
237 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
239 if (!batadv_atomic_dec_not_zero(&bat_priv->gw.reselect) && curr_gw)
240 goto out;
242 /* if gw.reselect is set to 1 it means that a previous call to
243 * gw.is_eligible() said that we have a new best GW, therefore it can
244 * now be picked from the list and selected
246 next_gw = bat_priv->algo_ops->gw.get_best_gw_node(bat_priv);
248 if (curr_gw == next_gw)
249 goto out;
251 if (next_gw) {
252 sprintf(gw_addr, "%pM", next_gw->orig_node->orig);
254 router = batadv_orig_router_get(next_gw->orig_node,
255 BATADV_IF_DEFAULT);
256 if (!router) {
257 batadv_gw_reselect(bat_priv);
258 goto out;
261 router_ifinfo = batadv_neigh_ifinfo_get(router,
262 BATADV_IF_DEFAULT);
263 if (!router_ifinfo) {
264 batadv_gw_reselect(bat_priv);
265 goto out;
269 if (curr_gw && !next_gw) {
270 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
271 "Removing selected gateway - no gateway in range\n");
272 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_DEL,
273 NULL);
274 } else if (!curr_gw && next_gw) {
275 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
276 "Adding route to gateway %pM (bandwidth: %u.%u/%u.%u MBit, tq: %i)\n",
277 next_gw->orig_node->orig,
278 next_gw->bandwidth_down / 10,
279 next_gw->bandwidth_down % 10,
280 next_gw->bandwidth_up / 10,
281 next_gw->bandwidth_up % 10,
282 router_ifinfo->bat_iv.tq_avg);
283 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_ADD,
284 gw_addr);
285 } else {
286 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
287 "Changing route to gateway %pM (bandwidth: %u.%u/%u.%u MBit, tq: %i)\n",
288 next_gw->orig_node->orig,
289 next_gw->bandwidth_down / 10,
290 next_gw->bandwidth_down % 10,
291 next_gw->bandwidth_up / 10,
292 next_gw->bandwidth_up % 10,
293 router_ifinfo->bat_iv.tq_avg);
294 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_CHANGE,
295 gw_addr);
298 batadv_gw_select(bat_priv, next_gw);
300 out:
301 if (curr_gw)
302 batadv_gw_node_put(curr_gw);
303 if (next_gw)
304 batadv_gw_node_put(next_gw);
305 if (router)
306 batadv_neigh_node_put(router);
307 if (router_ifinfo)
308 batadv_neigh_ifinfo_put(router_ifinfo);
312 * batadv_gw_check_election() - Elect orig node as best gateway when eligible
313 * @bat_priv: the bat priv with all the soft interface information
314 * @orig_node: orig node which is to be checked
316 void batadv_gw_check_election(struct batadv_priv *bat_priv,
317 struct batadv_orig_node *orig_node)
319 struct batadv_orig_node *curr_gw_orig;
321 /* abort immediately if the routing algorithm does not support gateway
322 * election
324 if (!bat_priv->algo_ops->gw.is_eligible)
325 return;
327 curr_gw_orig = batadv_gw_get_selected_orig(bat_priv);
328 if (!curr_gw_orig)
329 goto reselect;
331 /* this node already is the gateway */
332 if (curr_gw_orig == orig_node)
333 goto out;
335 if (!bat_priv->algo_ops->gw.is_eligible(bat_priv, curr_gw_orig,
336 orig_node))
337 goto out;
339 reselect:
340 batadv_gw_reselect(bat_priv);
341 out:
342 if (curr_gw_orig)
343 batadv_orig_node_put(curr_gw_orig);
347 * batadv_gw_node_add() - add gateway node to list of available gateways
348 * @bat_priv: the bat priv with all the soft interface information
349 * @orig_node: originator announcing gateway capabilities
350 * @gateway: announced bandwidth information
352 static void batadv_gw_node_add(struct batadv_priv *bat_priv,
353 struct batadv_orig_node *orig_node,
354 struct batadv_tvlv_gateway_data *gateway)
356 struct batadv_gw_node *gw_node;
358 if (gateway->bandwidth_down == 0)
359 return;
361 gw_node = kzalloc(sizeof(*gw_node), GFP_ATOMIC);
362 if (!gw_node)
363 return;
365 kref_init(&gw_node->refcount);
366 INIT_HLIST_NODE(&gw_node->list);
367 kref_get(&orig_node->refcount);
368 gw_node->orig_node = orig_node;
369 gw_node->bandwidth_down = ntohl(gateway->bandwidth_down);
370 gw_node->bandwidth_up = ntohl(gateway->bandwidth_up);
372 spin_lock_bh(&bat_priv->gw.list_lock);
373 kref_get(&gw_node->refcount);
374 hlist_add_head_rcu(&gw_node->list, &bat_priv->gw.gateway_list);
375 spin_unlock_bh(&bat_priv->gw.list_lock);
377 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
378 "Found new gateway %pM -> gw bandwidth: %u.%u/%u.%u MBit\n",
379 orig_node->orig,
380 ntohl(gateway->bandwidth_down) / 10,
381 ntohl(gateway->bandwidth_down) % 10,
382 ntohl(gateway->bandwidth_up) / 10,
383 ntohl(gateway->bandwidth_up) % 10);
385 /* don't return reference to new gw_node */
386 batadv_gw_node_put(gw_node);
390 * batadv_gw_node_get() - retrieve gateway node from list of available gateways
391 * @bat_priv: the bat priv with all the soft interface information
392 * @orig_node: originator announcing gateway capabilities
394 * Return: gateway node if found or NULL otherwise.
396 struct batadv_gw_node *batadv_gw_node_get(struct batadv_priv *bat_priv,
397 struct batadv_orig_node *orig_node)
399 struct batadv_gw_node *gw_node_tmp, *gw_node = NULL;
401 rcu_read_lock();
402 hlist_for_each_entry_rcu(gw_node_tmp, &bat_priv->gw.gateway_list,
403 list) {
404 if (gw_node_tmp->orig_node != orig_node)
405 continue;
407 if (!kref_get_unless_zero(&gw_node_tmp->refcount))
408 continue;
410 gw_node = gw_node_tmp;
411 break;
413 rcu_read_unlock();
415 return gw_node;
419 * batadv_gw_node_update() - update list of available gateways with changed
420 * bandwidth information
421 * @bat_priv: the bat priv with all the soft interface information
422 * @orig_node: originator announcing gateway capabilities
423 * @gateway: announced bandwidth information
425 void batadv_gw_node_update(struct batadv_priv *bat_priv,
426 struct batadv_orig_node *orig_node,
427 struct batadv_tvlv_gateway_data *gateway)
429 struct batadv_gw_node *gw_node, *curr_gw = NULL;
431 gw_node = batadv_gw_node_get(bat_priv, orig_node);
432 if (!gw_node) {
433 batadv_gw_node_add(bat_priv, orig_node, gateway);
434 goto out;
437 if (gw_node->bandwidth_down == ntohl(gateway->bandwidth_down) &&
438 gw_node->bandwidth_up == ntohl(gateway->bandwidth_up))
439 goto out;
441 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
442 "Gateway bandwidth of originator %pM changed from %u.%u/%u.%u MBit to %u.%u/%u.%u MBit\n",
443 orig_node->orig,
444 gw_node->bandwidth_down / 10,
445 gw_node->bandwidth_down % 10,
446 gw_node->bandwidth_up / 10,
447 gw_node->bandwidth_up % 10,
448 ntohl(gateway->bandwidth_down) / 10,
449 ntohl(gateway->bandwidth_down) % 10,
450 ntohl(gateway->bandwidth_up) / 10,
451 ntohl(gateway->bandwidth_up) % 10);
453 gw_node->bandwidth_down = ntohl(gateway->bandwidth_down);
454 gw_node->bandwidth_up = ntohl(gateway->bandwidth_up);
456 if (ntohl(gateway->bandwidth_down) == 0) {
457 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
458 "Gateway %pM removed from gateway list\n",
459 orig_node->orig);
461 /* Note: We don't need a NULL check here, since curr_gw never
462 * gets dereferenced.
464 spin_lock_bh(&bat_priv->gw.list_lock);
465 if (!hlist_unhashed(&gw_node->list)) {
466 hlist_del_init_rcu(&gw_node->list);
467 batadv_gw_node_put(gw_node);
469 spin_unlock_bh(&bat_priv->gw.list_lock);
471 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
472 if (gw_node == curr_gw)
473 batadv_gw_reselect(bat_priv);
475 if (curr_gw)
476 batadv_gw_node_put(curr_gw);
479 out:
480 if (gw_node)
481 batadv_gw_node_put(gw_node);
485 * batadv_gw_node_delete() - Remove orig_node from gateway list
486 * @bat_priv: the bat priv with all the soft interface information
487 * @orig_node: orig node which is currently in process of being removed
489 void batadv_gw_node_delete(struct batadv_priv *bat_priv,
490 struct batadv_orig_node *orig_node)
492 struct batadv_tvlv_gateway_data gateway;
494 gateway.bandwidth_down = 0;
495 gateway.bandwidth_up = 0;
497 batadv_gw_node_update(bat_priv, orig_node, &gateway);
501 * batadv_gw_node_free() - Free gateway information from soft interface
502 * @bat_priv: the bat priv with all the soft interface information
504 void batadv_gw_node_free(struct batadv_priv *bat_priv)
506 struct batadv_gw_node *gw_node;
507 struct hlist_node *node_tmp;
509 spin_lock_bh(&bat_priv->gw.list_lock);
510 hlist_for_each_entry_safe(gw_node, node_tmp,
511 &bat_priv->gw.gateway_list, list) {
512 hlist_del_init_rcu(&gw_node->list);
513 batadv_gw_node_put(gw_node);
515 spin_unlock_bh(&bat_priv->gw.list_lock);
518 #ifdef CONFIG_BATMAN_ADV_DEBUGFS
521 * batadv_gw_client_seq_print_text() - Print the gateway table in a seq file
522 * @seq: seq file to print on
523 * @offset: not used
525 * Return: always 0
527 int batadv_gw_client_seq_print_text(struct seq_file *seq, void *offset)
529 struct net_device *net_dev = (struct net_device *)seq->private;
530 struct batadv_priv *bat_priv = netdev_priv(net_dev);
531 struct batadv_hard_iface *primary_if;
533 primary_if = batadv_seq_print_text_primary_if_get(seq);
534 if (!primary_if)
535 return 0;
537 seq_printf(seq, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s %s)]\n",
538 BATADV_SOURCE_VERSION, primary_if->net_dev->name,
539 primary_if->net_dev->dev_addr, net_dev->name,
540 bat_priv->algo_ops->name);
542 batadv_hardif_put(primary_if);
544 if (!bat_priv->algo_ops->gw.print) {
545 seq_puts(seq,
546 "No printing function for this routing protocol\n");
547 return 0;
550 bat_priv->algo_ops->gw.print(bat_priv, seq);
552 return 0;
554 #endif
557 * batadv_gw_dump() - Dump gateways into a message
558 * @msg: Netlink message to dump into
559 * @cb: Control block containing additional options
561 * Return: Error code, or length of message
563 int batadv_gw_dump(struct sk_buff *msg, struct netlink_callback *cb)
565 struct batadv_hard_iface *primary_if = NULL;
566 struct net *net = sock_net(cb->skb->sk);
567 struct net_device *soft_iface;
568 struct batadv_priv *bat_priv;
569 int ifindex;
570 int ret;
572 ifindex = batadv_netlink_get_ifindex(cb->nlh,
573 BATADV_ATTR_MESH_IFINDEX);
574 if (!ifindex)
575 return -EINVAL;
577 soft_iface = dev_get_by_index(net, ifindex);
578 if (!soft_iface || !batadv_softif_is_valid(soft_iface)) {
579 ret = -ENODEV;
580 goto out;
583 bat_priv = netdev_priv(soft_iface);
585 primary_if = batadv_primary_if_get_selected(bat_priv);
586 if (!primary_if || primary_if->if_status != BATADV_IF_ACTIVE) {
587 ret = -ENOENT;
588 goto out;
591 if (!bat_priv->algo_ops->gw.dump) {
592 ret = -EOPNOTSUPP;
593 goto out;
596 bat_priv->algo_ops->gw.dump(msg, cb, bat_priv);
598 ret = msg->len;
600 out:
601 if (primary_if)
602 batadv_hardif_put(primary_if);
603 if (soft_iface)
604 dev_put(soft_iface);
606 return ret;
610 * batadv_gw_dhcp_recipient_get() - check if a packet is a DHCP message
611 * @skb: the packet to check
612 * @header_len: a pointer to the batman-adv header size
613 * @chaddr: buffer where the client address will be stored. Valid
614 * only if the function returns BATADV_DHCP_TO_CLIENT
616 * This function may re-allocate the data buffer of the skb passed as argument.
618 * Return:
619 * - BATADV_DHCP_NO if the packet is not a dhcp message or if there was an error
620 * while parsing it
621 * - BATADV_DHCP_TO_SERVER if this is a message going to the DHCP server
622 * - BATADV_DHCP_TO_CLIENT if this is a message going to a DHCP client
624 enum batadv_dhcp_recipient
625 batadv_gw_dhcp_recipient_get(struct sk_buff *skb, unsigned int *header_len,
626 u8 *chaddr)
628 enum batadv_dhcp_recipient ret = BATADV_DHCP_NO;
629 struct ethhdr *ethhdr;
630 struct iphdr *iphdr;
631 struct ipv6hdr *ipv6hdr;
632 struct udphdr *udphdr;
633 struct vlan_ethhdr *vhdr;
634 int chaddr_offset;
635 __be16 proto;
636 u8 *p;
638 /* check for ethernet header */
639 if (!pskb_may_pull(skb, *header_len + ETH_HLEN))
640 return BATADV_DHCP_NO;
642 ethhdr = eth_hdr(skb);
643 proto = ethhdr->h_proto;
644 *header_len += ETH_HLEN;
646 /* check for initial vlan header */
647 if (proto == htons(ETH_P_8021Q)) {
648 if (!pskb_may_pull(skb, *header_len + VLAN_HLEN))
649 return BATADV_DHCP_NO;
651 vhdr = vlan_eth_hdr(skb);
652 proto = vhdr->h_vlan_encapsulated_proto;
653 *header_len += VLAN_HLEN;
656 /* check for ip header */
657 switch (proto) {
658 case htons(ETH_P_IP):
659 if (!pskb_may_pull(skb, *header_len + sizeof(*iphdr)))
660 return BATADV_DHCP_NO;
662 iphdr = (struct iphdr *)(skb->data + *header_len);
663 *header_len += iphdr->ihl * 4;
665 /* check for udp header */
666 if (iphdr->protocol != IPPROTO_UDP)
667 return BATADV_DHCP_NO;
669 break;
670 case htons(ETH_P_IPV6):
671 if (!pskb_may_pull(skb, *header_len + sizeof(*ipv6hdr)))
672 return BATADV_DHCP_NO;
674 ipv6hdr = (struct ipv6hdr *)(skb->data + *header_len);
675 *header_len += sizeof(*ipv6hdr);
677 /* check for udp header */
678 if (ipv6hdr->nexthdr != IPPROTO_UDP)
679 return BATADV_DHCP_NO;
681 break;
682 default:
683 return BATADV_DHCP_NO;
686 if (!pskb_may_pull(skb, *header_len + sizeof(*udphdr)))
687 return BATADV_DHCP_NO;
689 udphdr = (struct udphdr *)(skb->data + *header_len);
690 *header_len += sizeof(*udphdr);
692 /* check for bootp port */
693 switch (proto) {
694 case htons(ETH_P_IP):
695 if (udphdr->dest == htons(67))
696 ret = BATADV_DHCP_TO_SERVER;
697 else if (udphdr->source == htons(67))
698 ret = BATADV_DHCP_TO_CLIENT;
699 break;
700 case htons(ETH_P_IPV6):
701 if (udphdr->dest == htons(547))
702 ret = BATADV_DHCP_TO_SERVER;
703 else if (udphdr->source == htons(547))
704 ret = BATADV_DHCP_TO_CLIENT;
705 break;
708 chaddr_offset = *header_len + BATADV_DHCP_CHADDR_OFFSET;
709 /* store the client address if the message is going to a client */
710 if (ret == BATADV_DHCP_TO_CLIENT &&
711 pskb_may_pull(skb, chaddr_offset + ETH_ALEN)) {
712 /* check if the DHCP packet carries an Ethernet DHCP */
713 p = skb->data + *header_len + BATADV_DHCP_HTYPE_OFFSET;
714 if (*p != BATADV_DHCP_HTYPE_ETHERNET)
715 return BATADV_DHCP_NO;
717 /* check if the DHCP packet carries a valid Ethernet address */
718 p = skb->data + *header_len + BATADV_DHCP_HLEN_OFFSET;
719 if (*p != ETH_ALEN)
720 return BATADV_DHCP_NO;
722 ether_addr_copy(chaddr, skb->data + chaddr_offset);
725 return ret;
729 * batadv_gw_out_of_range() - check if the dhcp request destination is the best
730 * gateway
731 * @bat_priv: the bat priv with all the soft interface information
732 * @skb: the outgoing packet
734 * Check if the skb is a DHCP request and if it is sent to the current best GW
735 * server. Due to topology changes it may be the case that the GW server
736 * previously selected is not the best one anymore.
738 * This call might reallocate skb data.
739 * Must be invoked only when the DHCP packet is going TO a DHCP SERVER.
741 * Return: true if the packet destination is unicast and it is not the best gw,
742 * false otherwise.
744 bool batadv_gw_out_of_range(struct batadv_priv *bat_priv,
745 struct sk_buff *skb)
747 struct batadv_neigh_node *neigh_curr = NULL;
748 struct batadv_neigh_node *neigh_old = NULL;
749 struct batadv_orig_node *orig_dst_node = NULL;
750 struct batadv_gw_node *gw_node = NULL;
751 struct batadv_gw_node *curr_gw = NULL;
752 struct batadv_neigh_ifinfo *curr_ifinfo, *old_ifinfo;
753 struct ethhdr *ethhdr = (struct ethhdr *)skb->data;
754 bool out_of_range = false;
755 u8 curr_tq_avg;
756 unsigned short vid;
758 vid = batadv_get_vid(skb, 0);
760 if (is_multicast_ether_addr(ethhdr->h_dest))
761 goto out;
763 orig_dst_node = batadv_transtable_search(bat_priv, ethhdr->h_source,
764 ethhdr->h_dest, vid);
765 if (!orig_dst_node)
766 goto out;
768 gw_node = batadv_gw_node_get(bat_priv, orig_dst_node);
769 if (!gw_node)
770 goto out;
772 switch (atomic_read(&bat_priv->gw.mode)) {
773 case BATADV_GW_MODE_SERVER:
774 /* If we are a GW then we are our best GW. We can artificially
775 * set the tq towards ourself as the maximum value
777 curr_tq_avg = BATADV_TQ_MAX_VALUE;
778 break;
779 case BATADV_GW_MODE_CLIENT:
780 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
781 if (!curr_gw)
782 goto out;
784 /* packet is going to our gateway */
785 if (curr_gw->orig_node == orig_dst_node)
786 goto out;
788 /* If the dhcp packet has been sent to a different gw,
789 * we have to evaluate whether the old gw is still
790 * reliable enough
792 neigh_curr = batadv_find_router(bat_priv, curr_gw->orig_node,
793 NULL);
794 if (!neigh_curr)
795 goto out;
797 curr_ifinfo = batadv_neigh_ifinfo_get(neigh_curr,
798 BATADV_IF_DEFAULT);
799 if (!curr_ifinfo)
800 goto out;
802 curr_tq_avg = curr_ifinfo->bat_iv.tq_avg;
803 batadv_neigh_ifinfo_put(curr_ifinfo);
805 break;
806 case BATADV_GW_MODE_OFF:
807 default:
808 goto out;
811 neigh_old = batadv_find_router(bat_priv, orig_dst_node, NULL);
812 if (!neigh_old)
813 goto out;
815 old_ifinfo = batadv_neigh_ifinfo_get(neigh_old, BATADV_IF_DEFAULT);
816 if (!old_ifinfo)
817 goto out;
819 if ((curr_tq_avg - old_ifinfo->bat_iv.tq_avg) > BATADV_GW_THRESHOLD)
820 out_of_range = true;
821 batadv_neigh_ifinfo_put(old_ifinfo);
823 out:
824 if (orig_dst_node)
825 batadv_orig_node_put(orig_dst_node);
826 if (curr_gw)
827 batadv_gw_node_put(curr_gw);
828 if (gw_node)
829 batadv_gw_node_put(gw_node);
830 if (neigh_old)
831 batadv_neigh_node_put(neigh_old);
832 if (neigh_curr)
833 batadv_neigh_node_put(neigh_curr);
834 return out_of_range;