1 /* Copyright (C) 2009-2017 B.A.T.M.A.N. contributors:
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.
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.
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/>.
18 #include "gateway_client.h"
21 #include <linux/atomic.h>
22 #include <linux/byteorder/generic.h>
23 #include <linux/errno.h>
24 #include <linux/etherdevice.h>
26 #include <linux/if_ether.h>
27 #include <linux/if_vlan.h>
30 #include <linux/ipv6.h>
31 #include <linux/kernel.h>
32 #include <linux/kref.h>
33 #include <linux/list.h>
34 #include <linux/netdevice.h>
35 #include <linux/netlink.h>
36 #include <linux/rculist.h>
37 #include <linux/rcupdate.h>
38 #include <linux/seq_file.h>
39 #include <linux/skbuff.h>
40 #include <linux/slab.h>
41 #include <linux/spinlock.h>
42 #include <linux/stddef.h>
43 #include <linux/udp.h>
45 #include <uapi/linux/batman_adv.h>
47 #include "gateway_common.h"
48 #include "hard-interface.h"
51 #include "originator.h"
54 #include "soft-interface.h"
56 #include "translation-table.h"
58 /* These are the offsets of the "hw type" and "hw address length" in the dhcp
59 * packet starting at the beginning of the dhcp header
61 #define BATADV_DHCP_HTYPE_OFFSET 1
62 #define BATADV_DHCP_HLEN_OFFSET 2
63 /* Value of htype representing Ethernet */
64 #define BATADV_DHCP_HTYPE_ETHERNET 0x01
65 /* This is the offset of the "chaddr" field in the dhcp packet starting at the
66 * beginning of the dhcp header
68 #define BATADV_DHCP_CHADDR_OFFSET 28
71 * batadv_gw_node_release - release gw_node from lists and queue for free after
73 * @ref: kref pointer of the gw_node
75 static void batadv_gw_node_release(struct kref
*ref
)
77 struct batadv_gw_node
*gw_node
;
79 gw_node
= container_of(ref
, struct batadv_gw_node
, refcount
);
81 batadv_orig_node_put(gw_node
->orig_node
);
82 kfree_rcu(gw_node
, rcu
);
86 * batadv_gw_node_put - decrement the gw_node refcounter and possibly release it
87 * @gw_node: gateway node to free
89 void batadv_gw_node_put(struct batadv_gw_node
*gw_node
)
91 kref_put(&gw_node
->refcount
, batadv_gw_node_release
);
94 struct batadv_gw_node
*
95 batadv_gw_get_selected_gw_node(struct batadv_priv
*bat_priv
)
97 struct batadv_gw_node
*gw_node
;
100 gw_node
= rcu_dereference(bat_priv
->gw
.curr_gw
);
104 if (!kref_get_unless_zero(&gw_node
->refcount
))
112 struct batadv_orig_node
*
113 batadv_gw_get_selected_orig(struct batadv_priv
*bat_priv
)
115 struct batadv_gw_node
*gw_node
;
116 struct batadv_orig_node
*orig_node
= NULL
;
118 gw_node
= batadv_gw_get_selected_gw_node(bat_priv
);
123 orig_node
= gw_node
->orig_node
;
127 if (!kref_get_unless_zero(&orig_node
->refcount
))
134 batadv_gw_node_put(gw_node
);
138 static void batadv_gw_select(struct batadv_priv
*bat_priv
,
139 struct batadv_gw_node
*new_gw_node
)
141 struct batadv_gw_node
*curr_gw_node
;
143 spin_lock_bh(&bat_priv
->gw
.list_lock
);
146 kref_get(&new_gw_node
->refcount
);
148 curr_gw_node
= rcu_dereference_protected(bat_priv
->gw
.curr_gw
, 1);
149 rcu_assign_pointer(bat_priv
->gw
.curr_gw
, new_gw_node
);
152 batadv_gw_node_put(curr_gw_node
);
154 spin_unlock_bh(&bat_priv
->gw
.list_lock
);
158 * batadv_gw_reselect - force a gateway reselection
159 * @bat_priv: the bat priv with all the soft interface information
161 * Set a flag to remind the GW component to perform a new gateway reselection.
162 * However this function does not ensure that the current gateway is going to be
163 * deselected. The reselection mechanism may elect the same gateway once again.
165 * This means that invoking batadv_gw_reselect() does not guarantee a gateway
166 * change and therefore a uevent is not necessarily expected.
168 void batadv_gw_reselect(struct batadv_priv
*bat_priv
)
170 atomic_set(&bat_priv
->gw
.reselect
, 1);
174 * batadv_gw_check_client_stop - check if client mode has been switched off
175 * @bat_priv: the bat priv with all the soft interface information
177 * This function assumes the caller has checked that the gw state *is actually
178 * changing*. This function is not supposed to be called when there is no state
181 void batadv_gw_check_client_stop(struct batadv_priv
*bat_priv
)
183 struct batadv_gw_node
*curr_gw
;
185 if (atomic_read(&bat_priv
->gw
.mode
) != BATADV_GW_MODE_CLIENT
)
188 curr_gw
= batadv_gw_get_selected_gw_node(bat_priv
);
192 /* deselect the current gateway so that next time that client mode is
193 * enabled a proper GW_ADD event can be sent
195 batadv_gw_select(bat_priv
, NULL
);
197 /* if batman-adv is switching the gw client mode off and a gateway was
198 * already selected, send a DEL uevent
200 batadv_throw_uevent(bat_priv
, BATADV_UEV_GW
, BATADV_UEV_DEL
, NULL
);
202 batadv_gw_node_put(curr_gw
);
205 void batadv_gw_election(struct batadv_priv
*bat_priv
)
207 struct batadv_gw_node
*curr_gw
= NULL
;
208 struct batadv_gw_node
*next_gw
= NULL
;
209 struct batadv_neigh_node
*router
= NULL
;
210 struct batadv_neigh_ifinfo
*router_ifinfo
= NULL
;
211 char gw_addr
[18] = { '\0' };
213 if (atomic_read(&bat_priv
->gw
.mode
) != BATADV_GW_MODE_CLIENT
)
216 if (!bat_priv
->algo_ops
->gw
.get_best_gw_node
)
219 curr_gw
= batadv_gw_get_selected_gw_node(bat_priv
);
221 if (!batadv_atomic_dec_not_zero(&bat_priv
->gw
.reselect
) && curr_gw
)
224 /* if gw.reselect is set to 1 it means that a previous call to
225 * gw.is_eligible() said that we have a new best GW, therefore it can
226 * now be picked from the list and selected
228 next_gw
= bat_priv
->algo_ops
->gw
.get_best_gw_node(bat_priv
);
230 if (curr_gw
== next_gw
)
234 sprintf(gw_addr
, "%pM", next_gw
->orig_node
->orig
);
236 router
= batadv_orig_router_get(next_gw
->orig_node
,
239 batadv_gw_reselect(bat_priv
);
243 router_ifinfo
= batadv_neigh_ifinfo_get(router
,
245 if (!router_ifinfo
) {
246 batadv_gw_reselect(bat_priv
);
251 if ((curr_gw
) && (!next_gw
)) {
252 batadv_dbg(BATADV_DBG_BATMAN
, bat_priv
,
253 "Removing selected gateway - no gateway in range\n");
254 batadv_throw_uevent(bat_priv
, BATADV_UEV_GW
, BATADV_UEV_DEL
,
256 } else if ((!curr_gw
) && (next_gw
)) {
257 batadv_dbg(BATADV_DBG_BATMAN
, bat_priv
,
258 "Adding route to gateway %pM (bandwidth: %u.%u/%u.%u MBit, tq: %i)\n",
259 next_gw
->orig_node
->orig
,
260 next_gw
->bandwidth_down
/ 10,
261 next_gw
->bandwidth_down
% 10,
262 next_gw
->bandwidth_up
/ 10,
263 next_gw
->bandwidth_up
% 10,
264 router_ifinfo
->bat_iv
.tq_avg
);
265 batadv_throw_uevent(bat_priv
, BATADV_UEV_GW
, BATADV_UEV_ADD
,
268 batadv_dbg(BATADV_DBG_BATMAN
, bat_priv
,
269 "Changing route to gateway %pM (bandwidth: %u.%u/%u.%u MBit, tq: %i)\n",
270 next_gw
->orig_node
->orig
,
271 next_gw
->bandwidth_down
/ 10,
272 next_gw
->bandwidth_down
% 10,
273 next_gw
->bandwidth_up
/ 10,
274 next_gw
->bandwidth_up
% 10,
275 router_ifinfo
->bat_iv
.tq_avg
);
276 batadv_throw_uevent(bat_priv
, BATADV_UEV_GW
, BATADV_UEV_CHANGE
,
280 batadv_gw_select(bat_priv
, next_gw
);
284 batadv_gw_node_put(curr_gw
);
286 batadv_gw_node_put(next_gw
);
288 batadv_neigh_node_put(router
);
290 batadv_neigh_ifinfo_put(router_ifinfo
);
293 void batadv_gw_check_election(struct batadv_priv
*bat_priv
,
294 struct batadv_orig_node
*orig_node
)
296 struct batadv_orig_node
*curr_gw_orig
;
298 /* abort immediately if the routing algorithm does not support gateway
301 if (!bat_priv
->algo_ops
->gw
.is_eligible
)
304 curr_gw_orig
= batadv_gw_get_selected_orig(bat_priv
);
308 /* this node already is the gateway */
309 if (curr_gw_orig
== orig_node
)
312 if (!bat_priv
->algo_ops
->gw
.is_eligible(bat_priv
, curr_gw_orig
,
317 batadv_gw_reselect(bat_priv
);
320 batadv_orig_node_put(curr_gw_orig
);
324 * batadv_gw_node_add - add gateway node to list of available gateways
325 * @bat_priv: the bat priv with all the soft interface information
326 * @orig_node: originator announcing gateway capabilities
327 * @gateway: announced bandwidth information
329 static void batadv_gw_node_add(struct batadv_priv
*bat_priv
,
330 struct batadv_orig_node
*orig_node
,
331 struct batadv_tvlv_gateway_data
*gateway
)
333 struct batadv_gw_node
*gw_node
;
335 if (gateway
->bandwidth_down
== 0)
338 gw_node
= kzalloc(sizeof(*gw_node
), GFP_ATOMIC
);
342 kref_init(&gw_node
->refcount
);
343 INIT_HLIST_NODE(&gw_node
->list
);
344 kref_get(&orig_node
->refcount
);
345 gw_node
->orig_node
= orig_node
;
346 gw_node
->bandwidth_down
= ntohl(gateway
->bandwidth_down
);
347 gw_node
->bandwidth_up
= ntohl(gateway
->bandwidth_up
);
349 spin_lock_bh(&bat_priv
->gw
.list_lock
);
350 kref_get(&gw_node
->refcount
);
351 hlist_add_head_rcu(&gw_node
->list
, &bat_priv
->gw
.gateway_list
);
352 spin_unlock_bh(&bat_priv
->gw
.list_lock
);
354 batadv_dbg(BATADV_DBG_BATMAN
, bat_priv
,
355 "Found new gateway %pM -> gw bandwidth: %u.%u/%u.%u MBit\n",
357 ntohl(gateway
->bandwidth_down
) / 10,
358 ntohl(gateway
->bandwidth_down
) % 10,
359 ntohl(gateway
->bandwidth_up
) / 10,
360 ntohl(gateway
->bandwidth_up
) % 10);
362 /* don't return reference to new gw_node */
363 batadv_gw_node_put(gw_node
);
367 * batadv_gw_node_get - retrieve gateway node from list of available gateways
368 * @bat_priv: the bat priv with all the soft interface information
369 * @orig_node: originator announcing gateway capabilities
371 * Return: gateway node if found or NULL otherwise.
373 struct batadv_gw_node
*batadv_gw_node_get(struct batadv_priv
*bat_priv
,
374 struct batadv_orig_node
*orig_node
)
376 struct batadv_gw_node
*gw_node_tmp
, *gw_node
= NULL
;
379 hlist_for_each_entry_rcu(gw_node_tmp
, &bat_priv
->gw
.gateway_list
,
381 if (gw_node_tmp
->orig_node
!= orig_node
)
384 if (!kref_get_unless_zero(&gw_node_tmp
->refcount
))
387 gw_node
= gw_node_tmp
;
396 * batadv_gw_node_update - update list of available gateways with changed
397 * bandwidth information
398 * @bat_priv: the bat priv with all the soft interface information
399 * @orig_node: originator announcing gateway capabilities
400 * @gateway: announced bandwidth information
402 void batadv_gw_node_update(struct batadv_priv
*bat_priv
,
403 struct batadv_orig_node
*orig_node
,
404 struct batadv_tvlv_gateway_data
*gateway
)
406 struct batadv_gw_node
*gw_node
, *curr_gw
= NULL
;
408 gw_node
= batadv_gw_node_get(bat_priv
, orig_node
);
410 batadv_gw_node_add(bat_priv
, orig_node
, gateway
);
414 if ((gw_node
->bandwidth_down
== ntohl(gateway
->bandwidth_down
)) &&
415 (gw_node
->bandwidth_up
== ntohl(gateway
->bandwidth_up
)))
418 batadv_dbg(BATADV_DBG_BATMAN
, bat_priv
,
419 "Gateway bandwidth of originator %pM changed from %u.%u/%u.%u MBit to %u.%u/%u.%u MBit\n",
421 gw_node
->bandwidth_down
/ 10,
422 gw_node
->bandwidth_down
% 10,
423 gw_node
->bandwidth_up
/ 10,
424 gw_node
->bandwidth_up
% 10,
425 ntohl(gateway
->bandwidth_down
) / 10,
426 ntohl(gateway
->bandwidth_down
) % 10,
427 ntohl(gateway
->bandwidth_up
) / 10,
428 ntohl(gateway
->bandwidth_up
) % 10);
430 gw_node
->bandwidth_down
= ntohl(gateway
->bandwidth_down
);
431 gw_node
->bandwidth_up
= ntohl(gateway
->bandwidth_up
);
433 if (ntohl(gateway
->bandwidth_down
) == 0) {
434 batadv_dbg(BATADV_DBG_BATMAN
, bat_priv
,
435 "Gateway %pM removed from gateway list\n",
438 /* Note: We don't need a NULL check here, since curr_gw never
441 spin_lock_bh(&bat_priv
->gw
.list_lock
);
442 if (!hlist_unhashed(&gw_node
->list
)) {
443 hlist_del_init_rcu(&gw_node
->list
);
444 batadv_gw_node_put(gw_node
);
446 spin_unlock_bh(&bat_priv
->gw
.list_lock
);
448 curr_gw
= batadv_gw_get_selected_gw_node(bat_priv
);
449 if (gw_node
== curr_gw
)
450 batadv_gw_reselect(bat_priv
);
453 batadv_gw_node_put(curr_gw
);
458 batadv_gw_node_put(gw_node
);
461 void batadv_gw_node_delete(struct batadv_priv
*bat_priv
,
462 struct batadv_orig_node
*orig_node
)
464 struct batadv_tvlv_gateway_data gateway
;
466 gateway
.bandwidth_down
= 0;
467 gateway
.bandwidth_up
= 0;
469 batadv_gw_node_update(bat_priv
, orig_node
, &gateway
);
472 void batadv_gw_node_free(struct batadv_priv
*bat_priv
)
474 struct batadv_gw_node
*gw_node
;
475 struct hlist_node
*node_tmp
;
477 spin_lock_bh(&bat_priv
->gw
.list_lock
);
478 hlist_for_each_entry_safe(gw_node
, node_tmp
,
479 &bat_priv
->gw
.gateway_list
, list
) {
480 hlist_del_init_rcu(&gw_node
->list
);
481 batadv_gw_node_put(gw_node
);
483 spin_unlock_bh(&bat_priv
->gw
.list_lock
);
486 #ifdef CONFIG_BATMAN_ADV_DEBUGFS
487 int batadv_gw_client_seq_print_text(struct seq_file
*seq
, void *offset
)
489 struct net_device
*net_dev
= (struct net_device
*)seq
->private;
490 struct batadv_priv
*bat_priv
= netdev_priv(net_dev
);
491 struct batadv_hard_iface
*primary_if
;
493 primary_if
= batadv_seq_print_text_primary_if_get(seq
);
497 seq_printf(seq
, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s %s)]\n",
498 BATADV_SOURCE_VERSION
, primary_if
->net_dev
->name
,
499 primary_if
->net_dev
->dev_addr
, net_dev
->name
,
500 bat_priv
->algo_ops
->name
);
502 batadv_hardif_put(primary_if
);
504 if (!bat_priv
->algo_ops
->gw
.print
) {
506 "No printing function for this routing protocol\n");
510 bat_priv
->algo_ops
->gw
.print(bat_priv
, seq
);
517 * batadv_gw_dump - Dump gateways into a message
518 * @msg: Netlink message to dump into
519 * @cb: Control block containing additional options
521 * Return: Error code, or length of message
523 int batadv_gw_dump(struct sk_buff
*msg
, struct netlink_callback
*cb
)
525 struct batadv_hard_iface
*primary_if
= NULL
;
526 struct net
*net
= sock_net(cb
->skb
->sk
);
527 struct net_device
*soft_iface
;
528 struct batadv_priv
*bat_priv
;
532 ifindex
= batadv_netlink_get_ifindex(cb
->nlh
,
533 BATADV_ATTR_MESH_IFINDEX
);
537 soft_iface
= dev_get_by_index(net
, ifindex
);
538 if (!soft_iface
|| !batadv_softif_is_valid(soft_iface
)) {
543 bat_priv
= netdev_priv(soft_iface
);
545 primary_if
= batadv_primary_if_get_selected(bat_priv
);
546 if (!primary_if
|| primary_if
->if_status
!= BATADV_IF_ACTIVE
) {
551 if (!bat_priv
->algo_ops
->gw
.dump
) {
556 bat_priv
->algo_ops
->gw
.dump(msg
, cb
, bat_priv
);
562 batadv_hardif_put(primary_if
);
570 * batadv_gw_dhcp_recipient_get - check if a packet is a DHCP message
571 * @skb: the packet to check
572 * @header_len: a pointer to the batman-adv header size
573 * @chaddr: buffer where the client address will be stored. Valid
574 * only if the function returns BATADV_DHCP_TO_CLIENT
576 * This function may re-allocate the data buffer of the skb passed as argument.
579 * - BATADV_DHCP_NO if the packet is not a dhcp message or if there was an error
581 * - BATADV_DHCP_TO_SERVER if this is a message going to the DHCP server
582 * - BATADV_DHCP_TO_CLIENT if this is a message going to a DHCP client
584 enum batadv_dhcp_recipient
585 batadv_gw_dhcp_recipient_get(struct sk_buff
*skb
, unsigned int *header_len
,
588 enum batadv_dhcp_recipient ret
= BATADV_DHCP_NO
;
589 struct ethhdr
*ethhdr
;
591 struct ipv6hdr
*ipv6hdr
;
592 struct udphdr
*udphdr
;
593 struct vlan_ethhdr
*vhdr
;
598 /* check for ethernet header */
599 if (!pskb_may_pull(skb
, *header_len
+ ETH_HLEN
))
600 return BATADV_DHCP_NO
;
602 ethhdr
= eth_hdr(skb
);
603 proto
= ethhdr
->h_proto
;
604 *header_len
+= ETH_HLEN
;
606 /* check for initial vlan header */
607 if (proto
== htons(ETH_P_8021Q
)) {
608 if (!pskb_may_pull(skb
, *header_len
+ VLAN_HLEN
))
609 return BATADV_DHCP_NO
;
611 vhdr
= vlan_eth_hdr(skb
);
612 proto
= vhdr
->h_vlan_encapsulated_proto
;
613 *header_len
+= VLAN_HLEN
;
616 /* check for ip header */
618 case htons(ETH_P_IP
):
619 if (!pskb_may_pull(skb
, *header_len
+ sizeof(*iphdr
)))
620 return BATADV_DHCP_NO
;
622 iphdr
= (struct iphdr
*)(skb
->data
+ *header_len
);
623 *header_len
+= iphdr
->ihl
* 4;
625 /* check for udp header */
626 if (iphdr
->protocol
!= IPPROTO_UDP
)
627 return BATADV_DHCP_NO
;
630 case htons(ETH_P_IPV6
):
631 if (!pskb_may_pull(skb
, *header_len
+ sizeof(*ipv6hdr
)))
632 return BATADV_DHCP_NO
;
634 ipv6hdr
= (struct ipv6hdr
*)(skb
->data
+ *header_len
);
635 *header_len
+= sizeof(*ipv6hdr
);
637 /* check for udp header */
638 if (ipv6hdr
->nexthdr
!= IPPROTO_UDP
)
639 return BATADV_DHCP_NO
;
643 return BATADV_DHCP_NO
;
646 if (!pskb_may_pull(skb
, *header_len
+ sizeof(*udphdr
)))
647 return BATADV_DHCP_NO
;
649 udphdr
= (struct udphdr
*)(skb
->data
+ *header_len
);
650 *header_len
+= sizeof(*udphdr
);
652 /* check for bootp port */
654 case htons(ETH_P_IP
):
655 if (udphdr
->dest
== htons(67))
656 ret
= BATADV_DHCP_TO_SERVER
;
657 else if (udphdr
->source
== htons(67))
658 ret
= BATADV_DHCP_TO_CLIENT
;
660 case htons(ETH_P_IPV6
):
661 if (udphdr
->dest
== htons(547))
662 ret
= BATADV_DHCP_TO_SERVER
;
663 else if (udphdr
->source
== htons(547))
664 ret
= BATADV_DHCP_TO_CLIENT
;
668 chaddr_offset
= *header_len
+ BATADV_DHCP_CHADDR_OFFSET
;
669 /* store the client address if the message is going to a client */
670 if (ret
== BATADV_DHCP_TO_CLIENT
&&
671 pskb_may_pull(skb
, chaddr_offset
+ ETH_ALEN
)) {
672 /* check if the DHCP packet carries an Ethernet DHCP */
673 p
= skb
->data
+ *header_len
+ BATADV_DHCP_HTYPE_OFFSET
;
674 if (*p
!= BATADV_DHCP_HTYPE_ETHERNET
)
675 return BATADV_DHCP_NO
;
677 /* check if the DHCP packet carries a valid Ethernet address */
678 p
= skb
->data
+ *header_len
+ BATADV_DHCP_HLEN_OFFSET
;
680 return BATADV_DHCP_NO
;
682 ether_addr_copy(chaddr
, skb
->data
+ chaddr_offset
);
689 * batadv_gw_out_of_range - check if the dhcp request destination is the best gw
690 * @bat_priv: the bat priv with all the soft interface information
691 * @skb: the outgoing packet
693 * Check if the skb is a DHCP request and if it is sent to the current best GW
694 * server. Due to topology changes it may be the case that the GW server
695 * previously selected is not the best one anymore.
697 * This call might reallocate skb data.
698 * Must be invoked only when the DHCP packet is going TO a DHCP SERVER.
700 * Return: true if the packet destination is unicast and it is not the best gw,
703 bool batadv_gw_out_of_range(struct batadv_priv
*bat_priv
,
706 struct batadv_neigh_node
*neigh_curr
= NULL
;
707 struct batadv_neigh_node
*neigh_old
= NULL
;
708 struct batadv_orig_node
*orig_dst_node
;
709 struct batadv_gw_node
*gw_node
= NULL
;
710 struct batadv_gw_node
*curr_gw
= NULL
;
711 struct batadv_neigh_ifinfo
*curr_ifinfo
, *old_ifinfo
;
712 struct ethhdr
*ethhdr
= (struct ethhdr
*)skb
->data
;
713 bool out_of_range
= false;
717 vid
= batadv_get_vid(skb
, 0);
719 orig_dst_node
= batadv_transtable_search(bat_priv
, ethhdr
->h_source
,
720 ethhdr
->h_dest
, vid
);
724 gw_node
= batadv_gw_node_get(bat_priv
, orig_dst_node
);
728 switch (atomic_read(&bat_priv
->gw
.mode
)) {
729 case BATADV_GW_MODE_SERVER
:
730 /* If we are a GW then we are our best GW. We can artificially
731 * set the tq towards ourself as the maximum value
733 curr_tq_avg
= BATADV_TQ_MAX_VALUE
;
735 case BATADV_GW_MODE_CLIENT
:
736 curr_gw
= batadv_gw_get_selected_gw_node(bat_priv
);
740 /* packet is going to our gateway */
741 if (curr_gw
->orig_node
== orig_dst_node
)
744 /* If the dhcp packet has been sent to a different gw,
745 * we have to evaluate whether the old gw is still
748 neigh_curr
= batadv_find_router(bat_priv
, curr_gw
->orig_node
,
753 curr_ifinfo
= batadv_neigh_ifinfo_get(neigh_curr
,
758 curr_tq_avg
= curr_ifinfo
->bat_iv
.tq_avg
;
759 batadv_neigh_ifinfo_put(curr_ifinfo
);
762 case BATADV_GW_MODE_OFF
:
767 neigh_old
= batadv_find_router(bat_priv
, orig_dst_node
, NULL
);
771 old_ifinfo
= batadv_neigh_ifinfo_get(neigh_old
, BATADV_IF_DEFAULT
);
775 if ((curr_tq_avg
- old_ifinfo
->bat_iv
.tq_avg
) > BATADV_GW_THRESHOLD
)
777 batadv_neigh_ifinfo_put(old_ifinfo
);
781 batadv_orig_node_put(orig_dst_node
);
783 batadv_gw_node_put(curr_gw
);
785 batadv_gw_node_put(gw_node
);
787 batadv_neigh_node_put(neigh_old
);
789 batadv_neigh_node_put(neigh_curr
);