xref: /openbmc/linux/net/batman-adv/gateway_client.c (revision 4f248cff9e21720bd5f057661f752fba067f3779)
19f6446c7SSven Eckelmann /* Copyright (C) 2009-2015 B.A.T.M.A.N. contributors:
2c6c8fea2SSven Eckelmann  *
3c6c8fea2SSven Eckelmann  * Marek Lindner
4c6c8fea2SSven Eckelmann  *
5c6c8fea2SSven Eckelmann  * This program is free software; you can redistribute it and/or
6c6c8fea2SSven Eckelmann  * modify it under the terms of version 2 of the GNU General Public
7c6c8fea2SSven Eckelmann  * License as published by the Free Software Foundation.
8c6c8fea2SSven Eckelmann  *
9c6c8fea2SSven Eckelmann  * This program is distributed in the hope that it will be useful, but
10c6c8fea2SSven Eckelmann  * WITHOUT ANY WARRANTY; without even the implied warranty of
11c6c8fea2SSven Eckelmann  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12c6c8fea2SSven Eckelmann  * General Public License for more details.
13c6c8fea2SSven Eckelmann  *
14c6c8fea2SSven Eckelmann  * You should have received a copy of the GNU General Public License
15ebf38fb7SAntonio Quartulli  * along with this program; if not, see <http://www.gnu.org/licenses/>.
16c6c8fea2SSven Eckelmann  */
17c6c8fea2SSven Eckelmann 
18c6c8fea2SSven Eckelmann #include "gateway_client.h"
191e2c2a4fSSven Eckelmann #include "main.h"
201e2c2a4fSSven Eckelmann 
211e2c2a4fSSven Eckelmann #include <linux/atomic.h>
221e2c2a4fSSven Eckelmann #include <linux/byteorder/generic.h>
231e2c2a4fSSven Eckelmann #include <linux/etherdevice.h>
241e2c2a4fSSven Eckelmann #include <linux/fs.h>
251e2c2a4fSSven Eckelmann #include <linux/if_ether.h>
261e2c2a4fSSven Eckelmann #include <linux/if_vlan.h>
271e2c2a4fSSven Eckelmann #include <linux/in.h>
281e2c2a4fSSven Eckelmann #include <linux/ip.h>
291e2c2a4fSSven Eckelmann #include <linux/ipv6.h>
301e2c2a4fSSven Eckelmann #include <linux/jiffies.h>
311e2c2a4fSSven Eckelmann #include <linux/kernel.h>
321e2c2a4fSSven Eckelmann #include <linux/list.h>
331e2c2a4fSSven Eckelmann #include <linux/netdevice.h>
341e2c2a4fSSven Eckelmann #include <linux/rculist.h>
351e2c2a4fSSven Eckelmann #include <linux/rcupdate.h>
361e2c2a4fSSven Eckelmann #include <linux/seq_file.h>
371e2c2a4fSSven Eckelmann #include <linux/skbuff.h>
381e2c2a4fSSven Eckelmann #include <linux/slab.h>
391e2c2a4fSSven Eckelmann #include <linux/spinlock.h>
401e2c2a4fSSven Eckelmann #include <linux/stddef.h>
411e2c2a4fSSven Eckelmann #include <linux/udp.h>
421e2c2a4fSSven Eckelmann 
43c6c8fea2SSven Eckelmann #include "gateway_common.h"
44c6c8fea2SSven Eckelmann #include "hard-interface.h"
4557f0c07cSLinus Lüssing #include "originator.h"
461e2c2a4fSSven Eckelmann #include "packet.h"
4743676ab5SAntonio Quartulli #include "routing.h"
481e2c2a4fSSven Eckelmann #include "sysfs.h"
491e2c2a4fSSven Eckelmann #include "translation-table.h"
50c6c8fea2SSven Eckelmann 
516c413b1cSAntonio Quartulli /* These are the offsets of the "hw type" and "hw address length" in the dhcp
526c413b1cSAntonio Quartulli  * packet starting at the beginning of the dhcp header
539cfc7bd6SSven Eckelmann  */
546c413b1cSAntonio Quartulli #define BATADV_DHCP_HTYPE_OFFSET	1
556c413b1cSAntonio Quartulli #define BATADV_DHCP_HLEN_OFFSET		2
566c413b1cSAntonio Quartulli /* Value of htype representing Ethernet */
576c413b1cSAntonio Quartulli #define BATADV_DHCP_HTYPE_ETHERNET	0x01
586c413b1cSAntonio Quartulli /* This is the offset of the "chaddr" field in the dhcp packet starting at the
596c413b1cSAntonio Quartulli  * beginning of the dhcp header
606c413b1cSAntonio Quartulli  */
616c413b1cSAntonio Quartulli #define BATADV_DHCP_CHADDR_OFFSET	28
6243676ab5SAntonio Quartulli 
6356303d34SSven Eckelmann static void batadv_gw_node_free_ref(struct batadv_gw_node *gw_node)
6425b6d3c1SMarek Lindner {
65377fe0f9SAntonio Quartulli 	if (atomic_dec_and_test(&gw_node->refcount)) {
66377fe0f9SAntonio Quartulli 		batadv_orig_node_free_ref(gw_node->orig_node);
67eb340b2fSPaul E. McKenney 		kfree_rcu(gw_node, rcu);
68c6c8fea2SSven Eckelmann 	}
69377fe0f9SAntonio Quartulli }
70c6c8fea2SSven Eckelmann 
7156303d34SSven Eckelmann static struct batadv_gw_node *
7256303d34SSven Eckelmann batadv_gw_get_selected_gw_node(struct batadv_priv *bat_priv)
73c6c8fea2SSven Eckelmann {
7456303d34SSven Eckelmann 	struct batadv_gw_node *gw_node;
75c6c8fea2SSven Eckelmann 
765d02b3cdSLinus Lüssing 	rcu_read_lock();
77807736f6SSven Eckelmann 	gw_node = rcu_dereference(bat_priv->gw.curr_gw);
78c4aac1abSMarek Lindner 	if (!gw_node)
795d02b3cdSLinus Lüssing 		goto out;
80c6c8fea2SSven Eckelmann 
81c4aac1abSMarek Lindner 	if (!atomic_inc_not_zero(&gw_node->refcount))
82c4aac1abSMarek Lindner 		gw_node = NULL;
83c4aac1abSMarek Lindner 
84c4aac1abSMarek Lindner out:
85c4aac1abSMarek Lindner 	rcu_read_unlock();
86c4aac1abSMarek Lindner 	return gw_node;
87c4aac1abSMarek Lindner }
88c4aac1abSMarek Lindner 
8956303d34SSven Eckelmann struct batadv_orig_node *
9056303d34SSven Eckelmann batadv_gw_get_selected_orig(struct batadv_priv *bat_priv)
91c4aac1abSMarek Lindner {
9256303d34SSven Eckelmann 	struct batadv_gw_node *gw_node;
9356303d34SSven Eckelmann 	struct batadv_orig_node *orig_node = NULL;
94c4aac1abSMarek Lindner 
951409a834SSven Eckelmann 	gw_node = batadv_gw_get_selected_gw_node(bat_priv);
96c4aac1abSMarek Lindner 	if (!gw_node)
977b36e8eeSMarek Lindner 		goto out;
985d02b3cdSLinus Lüssing 
99c4aac1abSMarek Lindner 	rcu_read_lock();
100c4aac1abSMarek Lindner 	orig_node = gw_node->orig_node;
101c4aac1abSMarek Lindner 	if (!orig_node)
102c4aac1abSMarek Lindner 		goto unlock;
103c4aac1abSMarek Lindner 
1047b36e8eeSMarek Lindner 	if (!atomic_inc_not_zero(&orig_node->refcount))
1057b36e8eeSMarek Lindner 		orig_node = NULL;
10643c70ad5SLinus Lüssing 
107c4aac1abSMarek Lindner unlock:
1085d02b3cdSLinus Lüssing 	rcu_read_unlock();
109c4aac1abSMarek Lindner out:
110c6c8fea2SSven Eckelmann 	if (gw_node)
1111409a834SSven Eckelmann 		batadv_gw_node_free_ref(gw_node);
112c4aac1abSMarek Lindner 	return orig_node;
113c6c8fea2SSven Eckelmann }
114c6c8fea2SSven Eckelmann 
11556303d34SSven Eckelmann static void batadv_gw_select(struct batadv_priv *bat_priv,
11656303d34SSven Eckelmann 			     struct batadv_gw_node *new_gw_node)
117c6c8fea2SSven Eckelmann {
11856303d34SSven Eckelmann 	struct batadv_gw_node *curr_gw_node;
119c6c8fea2SSven Eckelmann 
120807736f6SSven Eckelmann 	spin_lock_bh(&bat_priv->gw.list_lock);
121c4aac1abSMarek Lindner 
12225b6d3c1SMarek Lindner 	if (new_gw_node && !atomic_inc_not_zero(&new_gw_node->refcount))
12325b6d3c1SMarek Lindner 		new_gw_node = NULL;
124c6c8fea2SSven Eckelmann 
125807736f6SSven Eckelmann 	curr_gw_node = rcu_dereference_protected(bat_priv->gw.curr_gw, 1);
126807736f6SSven Eckelmann 	rcu_assign_pointer(bat_priv->gw.curr_gw, new_gw_node);
12725b6d3c1SMarek Lindner 
12825b6d3c1SMarek Lindner 	if (curr_gw_node)
1291409a834SSven Eckelmann 		batadv_gw_node_free_ref(curr_gw_node);
130c4aac1abSMarek Lindner 
131807736f6SSven Eckelmann 	spin_unlock_bh(&bat_priv->gw.list_lock);
132c4aac1abSMarek Lindner }
133c4aac1abSMarek Lindner 
1344e820e72SAntonio Quartulli /**
1354e820e72SAntonio Quartulli  * batadv_gw_reselect - force a gateway reselection
1364e820e72SAntonio Quartulli  * @bat_priv: the bat priv with all the soft interface information
1374e820e72SAntonio Quartulli  *
1384e820e72SAntonio Quartulli  * Set a flag to remind the GW component to perform a new gateway reselection.
1394e820e72SAntonio Quartulli  * However this function does not ensure that the current gateway is going to be
1404e820e72SAntonio Quartulli  * deselected. The reselection mechanism may elect the same gateway once again.
1414e820e72SAntonio Quartulli  *
1424e820e72SAntonio Quartulli  * This means that invoking batadv_gw_reselect() does not guarantee a gateway
1434e820e72SAntonio Quartulli  * change and therefore a uevent is not necessarily expected.
1444e820e72SAntonio Quartulli  */
1454e820e72SAntonio Quartulli void batadv_gw_reselect(struct batadv_priv *bat_priv)
146c4aac1abSMarek Lindner {
147807736f6SSven Eckelmann 	atomic_set(&bat_priv->gw.reselect, 1);
148c6c8fea2SSven Eckelmann }
149c6c8fea2SSven Eckelmann 
15056303d34SSven Eckelmann static struct batadv_gw_node *
15156303d34SSven Eckelmann batadv_gw_get_best_gw_node(struct batadv_priv *bat_priv)
152c6c8fea2SSven Eckelmann {
15356303d34SSven Eckelmann 	struct batadv_neigh_node *router;
15489652331SSimon Wunderlich 	struct batadv_neigh_ifinfo *router_ifinfo;
15556303d34SSven Eckelmann 	struct batadv_gw_node *gw_node, *curr_gw = NULL;
156*4f248cffSSven Eckelmann 	u64 max_gw_factor = 0;
157*4f248cffSSven Eckelmann 	u64 tmp_gw_factor = 0;
1586b5e971aSSven Eckelmann 	u8 max_tq = 0;
1596b5e971aSSven Eckelmann 	u8 tq_avg;
16056303d34SSven Eckelmann 	struct batadv_orig_node *orig_node;
161c6c8fea2SSven Eckelmann 
162c6c8fea2SSven Eckelmann 	rcu_read_lock();
163b67bfe0dSSasha Levin 	hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) {
164e1a5382fSLinus Lüssing 		if (gw_node->deleted)
165c6c8fea2SSven Eckelmann 			continue;
166c6c8fea2SSven Eckelmann 
16784d5e5e0SSven Eckelmann 		orig_node = gw_node->orig_node;
1687351a482SSimon Wunderlich 		router = batadv_orig_router_get(orig_node, BATADV_IF_DEFAULT);
169e1a5382fSLinus Lüssing 		if (!router)
170c6c8fea2SSven Eckelmann 			continue;
171c6c8fea2SSven Eckelmann 
17289652331SSimon Wunderlich 		router_ifinfo = batadv_neigh_ifinfo_get(router,
17389652331SSimon Wunderlich 							BATADV_IF_DEFAULT);
17489652331SSimon Wunderlich 		if (!router_ifinfo)
17589652331SSimon Wunderlich 			goto next;
17689652331SSimon Wunderlich 
1772265c141SAntonio Quartulli 		if (!atomic_inc_not_zero(&gw_node->refcount))
1782265c141SAntonio Quartulli 			goto next;
1792265c141SAntonio Quartulli 
18089652331SSimon Wunderlich 		tq_avg = router_ifinfo->bat_iv.tq_avg;
181c67893d1SSven Eckelmann 
182c6c8fea2SSven Eckelmann 		switch (atomic_read(&bat_priv->gw_sel_class)) {
183c6c8fea2SSven Eckelmann 		case 1: /* fast connection */
184414254e3SMarek Lindner 			tmp_gw_factor = tq_avg * tq_avg;
185414254e3SMarek Lindner 			tmp_gw_factor *= gw_node->bandwidth_down;
186414254e3SMarek Lindner 			tmp_gw_factor *= 100 * 100;
187e071d93eSSven Eckelmann 			tmp_gw_factor >>= 18;
188c6c8fea2SSven Eckelmann 
189c6c8fea2SSven Eckelmann 			if ((tmp_gw_factor > max_gw_factor) ||
190c6c8fea2SSven Eckelmann 			    ((tmp_gw_factor == max_gw_factor) &&
191c67893d1SSven Eckelmann 			     (tq_avg > max_tq))) {
1922265c141SAntonio Quartulli 				if (curr_gw)
1931409a834SSven Eckelmann 					batadv_gw_node_free_ref(curr_gw);
1942265c141SAntonio Quartulli 				curr_gw = gw_node;
1952265c141SAntonio Quartulli 				atomic_inc(&curr_gw->refcount);
1962265c141SAntonio Quartulli 			}
197c6c8fea2SSven Eckelmann 			break;
198c6c8fea2SSven Eckelmann 
1999cfc7bd6SSven Eckelmann 		default: /* 2:  stable connection (use best statistic)
200c6c8fea2SSven Eckelmann 			  * 3:  fast-switch (use best statistic but change as
201c6c8fea2SSven Eckelmann 			  *     soon as a better gateway appears)
202c6c8fea2SSven Eckelmann 			  * XX: late-switch (use best statistic but change as
203c6c8fea2SSven Eckelmann 			  *     soon as a better gateway appears which has
204c6c8fea2SSven Eckelmann 			  *     $routing_class more tq points)
2059cfc7bd6SSven Eckelmann 			  */
206c67893d1SSven Eckelmann 			if (tq_avg > max_tq) {
2072265c141SAntonio Quartulli 				if (curr_gw)
2081409a834SSven Eckelmann 					batadv_gw_node_free_ref(curr_gw);
2092265c141SAntonio Quartulli 				curr_gw = gw_node;
2102265c141SAntonio Quartulli 				atomic_inc(&curr_gw->refcount);
2112265c141SAntonio Quartulli 			}
212c6c8fea2SSven Eckelmann 			break;
213c6c8fea2SSven Eckelmann 		}
214c6c8fea2SSven Eckelmann 
215c67893d1SSven Eckelmann 		if (tq_avg > max_tq)
216c67893d1SSven Eckelmann 			max_tq = tq_avg;
217c6c8fea2SSven Eckelmann 
218c6c8fea2SSven Eckelmann 		if (tmp_gw_factor > max_gw_factor)
219c6c8fea2SSven Eckelmann 			max_gw_factor = tmp_gw_factor;
220e1a5382fSLinus Lüssing 
2211409a834SSven Eckelmann 		batadv_gw_node_free_ref(gw_node);
2222265c141SAntonio Quartulli 
2232265c141SAntonio Quartulli next:
2247d211efcSSven Eckelmann 		batadv_neigh_node_free_ref(router);
22589652331SSimon Wunderlich 		if (router_ifinfo)
22689652331SSimon Wunderlich 			batadv_neigh_ifinfo_free_ref(router_ifinfo);
227c6c8fea2SSven Eckelmann 	}
2282265c141SAntonio Quartulli 	rcu_read_unlock();
229c6c8fea2SSven Eckelmann 
2302265c141SAntonio Quartulli 	return curr_gw;
2312265c141SAntonio Quartulli }
232e1a5382fSLinus Lüssing 
233c6eaa3f0SAntonio Quartulli /**
234c6eaa3f0SAntonio Quartulli  * batadv_gw_check_client_stop - check if client mode has been switched off
235c6eaa3f0SAntonio Quartulli  * @bat_priv: the bat priv with all the soft interface information
236c6eaa3f0SAntonio Quartulli  *
237c6eaa3f0SAntonio Quartulli  * This function assumes the caller has checked that the gw state *is actually
238c6eaa3f0SAntonio Quartulli  * changing*. This function is not supposed to be called when there is no state
239c6eaa3f0SAntonio Quartulli  * change.
240c6eaa3f0SAntonio Quartulli  */
241c6eaa3f0SAntonio Quartulli void batadv_gw_check_client_stop(struct batadv_priv *bat_priv)
242c6eaa3f0SAntonio Quartulli {
243c6eaa3f0SAntonio Quartulli 	struct batadv_gw_node *curr_gw;
244c6eaa3f0SAntonio Quartulli 
245c6eaa3f0SAntonio Quartulli 	if (atomic_read(&bat_priv->gw_mode) != BATADV_GW_MODE_CLIENT)
246c6eaa3f0SAntonio Quartulli 		return;
247c6eaa3f0SAntonio Quartulli 
248c6eaa3f0SAntonio Quartulli 	curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
249c6eaa3f0SAntonio Quartulli 	if (!curr_gw)
250c6eaa3f0SAntonio Quartulli 		return;
251c6eaa3f0SAntonio Quartulli 
252f3163181SAntonio Quartulli 	/* deselect the current gateway so that next time that client mode is
253f3163181SAntonio Quartulli 	 * enabled a proper GW_ADD event can be sent
254f3163181SAntonio Quartulli 	 */
255f3163181SAntonio Quartulli 	batadv_gw_select(bat_priv, NULL);
256f3163181SAntonio Quartulli 
257c6eaa3f0SAntonio Quartulli 	/* if batman-adv is switching the gw client mode off and a gateway was
258c6eaa3f0SAntonio Quartulli 	 * already selected, send a DEL uevent
259c6eaa3f0SAntonio Quartulli 	 */
260c6eaa3f0SAntonio Quartulli 	batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_DEL, NULL);
261c6eaa3f0SAntonio Quartulli 
262c6eaa3f0SAntonio Quartulli 	batadv_gw_node_free_ref(curr_gw);
263c6eaa3f0SAntonio Quartulli }
264c6eaa3f0SAntonio Quartulli 
26556303d34SSven Eckelmann void batadv_gw_election(struct batadv_priv *bat_priv)
2662265c141SAntonio Quartulli {
267*4f248cffSSven Eckelmann 	struct batadv_gw_node *curr_gw = NULL;
268*4f248cffSSven Eckelmann 	struct batadv_gw_node *next_gw = NULL;
26956303d34SSven Eckelmann 	struct batadv_neigh_node *router = NULL;
27089652331SSimon Wunderlich 	struct batadv_neigh_ifinfo *router_ifinfo = NULL;
27119595e05SAntonio Quartulli 	char gw_addr[18] = { '\0' };
2722265c141SAntonio Quartulli 
273cd646ab1SSven Eckelmann 	if (atomic_read(&bat_priv->gw_mode) != BATADV_GW_MODE_CLIENT)
2742265c141SAntonio Quartulli 		goto out;
2752265c141SAntonio Quartulli 
2761409a834SSven Eckelmann 	curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
2772265c141SAntonio Quartulli 
278807736f6SSven Eckelmann 	if (!batadv_atomic_dec_not_zero(&bat_priv->gw.reselect) && curr_gw)
279caa0bf64SMarek Lindner 		goto out;
280caa0bf64SMarek Lindner 
2811409a834SSven Eckelmann 	next_gw = batadv_gw_get_best_gw_node(bat_priv);
2822265c141SAntonio Quartulli 
2832265c141SAntonio Quartulli 	if (curr_gw == next_gw)
2842265c141SAntonio Quartulli 		goto out;
2852265c141SAntonio Quartulli 
2862265c141SAntonio Quartulli 	if (next_gw) {
28719595e05SAntonio Quartulli 		sprintf(gw_addr, "%pM", next_gw->orig_node->orig);
28819595e05SAntonio Quartulli 
2897351a482SSimon Wunderlich 		router = batadv_orig_router_get(next_gw->orig_node,
2907351a482SSimon Wunderlich 						BATADV_IF_DEFAULT);
2912265c141SAntonio Quartulli 		if (!router) {
2924e820e72SAntonio Quartulli 			batadv_gw_reselect(bat_priv);
2932265c141SAntonio Quartulli 			goto out;
2942265c141SAntonio Quartulli 		}
29589652331SSimon Wunderlich 
29689652331SSimon Wunderlich 		router_ifinfo = batadv_neigh_ifinfo_get(router,
29789652331SSimon Wunderlich 							BATADV_IF_DEFAULT);
29889652331SSimon Wunderlich 		if (!router_ifinfo) {
29989652331SSimon Wunderlich 			batadv_gw_reselect(bat_priv);
30089652331SSimon Wunderlich 			goto out;
30189652331SSimon Wunderlich 		}
3022265c141SAntonio Quartulli 	}
3032265c141SAntonio Quartulli 
3042265c141SAntonio Quartulli 	if ((curr_gw) && (!next_gw)) {
30539c75a51SSven Eckelmann 		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
3062265c141SAntonio Quartulli 			   "Removing selected gateway - no gateway in range\n");
30739c75a51SSven Eckelmann 		batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_DEL,
30839c75a51SSven Eckelmann 				    NULL);
3092265c141SAntonio Quartulli 	} else if ((!curr_gw) && (next_gw)) {
31039c75a51SSven Eckelmann 		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
311414254e3SMarek Lindner 			   "Adding route to gateway %pM (bandwidth: %u.%u/%u.%u MBit, tq: %i)\n",
3121eda58bfSSven Eckelmann 			   next_gw->orig_node->orig,
313414254e3SMarek Lindner 			   next_gw->bandwidth_down / 10,
314414254e3SMarek Lindner 			   next_gw->bandwidth_down % 10,
315414254e3SMarek Lindner 			   next_gw->bandwidth_up / 10,
31689652331SSimon Wunderlich 			   next_gw->bandwidth_up % 10,
31789652331SSimon Wunderlich 			   router_ifinfo->bat_iv.tq_avg);
31839c75a51SSven Eckelmann 		batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_ADD,
31939c75a51SSven Eckelmann 				    gw_addr);
3202265c141SAntonio Quartulli 	} else {
32139c75a51SSven Eckelmann 		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
322414254e3SMarek Lindner 			   "Changing route to gateway %pM (bandwidth: %u.%u/%u.%u MBit, tq: %i)\n",
3231eda58bfSSven Eckelmann 			   next_gw->orig_node->orig,
324414254e3SMarek Lindner 			   next_gw->bandwidth_down / 10,
325414254e3SMarek Lindner 			   next_gw->bandwidth_down % 10,
326414254e3SMarek Lindner 			   next_gw->bandwidth_up / 10,
32789652331SSimon Wunderlich 			   next_gw->bandwidth_up % 10,
32889652331SSimon Wunderlich 			   router_ifinfo->bat_iv.tq_avg);
32939c75a51SSven Eckelmann 		batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_CHANGE,
33039c75a51SSven Eckelmann 				    gw_addr);
331c6c8fea2SSven Eckelmann 	}
332c6c8fea2SSven Eckelmann 
3331409a834SSven Eckelmann 	batadv_gw_select(bat_priv, next_gw);
3342265c141SAntonio Quartulli 
335c4aac1abSMarek Lindner out:
336c4aac1abSMarek Lindner 	if (curr_gw)
3371409a834SSven Eckelmann 		batadv_gw_node_free_ref(curr_gw);
3382265c141SAntonio Quartulli 	if (next_gw)
3391409a834SSven Eckelmann 		batadv_gw_node_free_ref(next_gw);
3402265c141SAntonio Quartulli 	if (router)
3417d211efcSSven Eckelmann 		batadv_neigh_node_free_ref(router);
34289652331SSimon Wunderlich 	if (router_ifinfo)
34389652331SSimon Wunderlich 		batadv_neigh_ifinfo_free_ref(router_ifinfo);
344c6c8fea2SSven Eckelmann }
345c6c8fea2SSven Eckelmann 
34656303d34SSven Eckelmann void batadv_gw_check_election(struct batadv_priv *bat_priv,
34756303d34SSven Eckelmann 			      struct batadv_orig_node *orig_node)
348c6c8fea2SSven Eckelmann {
34989652331SSimon Wunderlich 	struct batadv_neigh_ifinfo *router_orig_tq = NULL;
35089652331SSimon Wunderlich 	struct batadv_neigh_ifinfo *router_gw_tq = NULL;
35156303d34SSven Eckelmann 	struct batadv_orig_node *curr_gw_orig;
352*4f248cffSSven Eckelmann 	struct batadv_neigh_node *router_gw = NULL;
353*4f248cffSSven Eckelmann 	struct batadv_neigh_node *router_orig = NULL;
3546b5e971aSSven Eckelmann 	u8 gw_tq_avg, orig_tq_avg;
355c6c8fea2SSven Eckelmann 
3567cf06bc6SSven Eckelmann 	curr_gw_orig = batadv_gw_get_selected_orig(bat_priv);
35757f0c07cSLinus Lüssing 	if (!curr_gw_orig)
3584e820e72SAntonio Quartulli 		goto reselect;
359c6c8fea2SSven Eckelmann 
3607351a482SSimon Wunderlich 	router_gw = batadv_orig_router_get(curr_gw_orig, BATADV_IF_DEFAULT);
361e1a5382fSLinus Lüssing 	if (!router_gw)
3624e820e72SAntonio Quartulli 		goto reselect;
363c6c8fea2SSven Eckelmann 
36489652331SSimon Wunderlich 	router_gw_tq = batadv_neigh_ifinfo_get(router_gw,
36589652331SSimon Wunderlich 					       BATADV_IF_DEFAULT);
36689652331SSimon Wunderlich 	if (!router_gw_tq)
36789652331SSimon Wunderlich 		goto reselect;
36889652331SSimon Wunderlich 
369c6c8fea2SSven Eckelmann 	/* this node already is the gateway */
37057f0c07cSLinus Lüssing 	if (curr_gw_orig == orig_node)
371e1a5382fSLinus Lüssing 		goto out;
372c6c8fea2SSven Eckelmann 
3737351a482SSimon Wunderlich 	router_orig = batadv_orig_router_get(orig_node, BATADV_IF_DEFAULT);
374e1a5382fSLinus Lüssing 	if (!router_orig)
375e1a5382fSLinus Lüssing 		goto out;
376c6c8fea2SSven Eckelmann 
37789652331SSimon Wunderlich 	router_orig_tq = batadv_neigh_ifinfo_get(router_orig,
37889652331SSimon Wunderlich 						 BATADV_IF_DEFAULT);
37989652331SSimon Wunderlich 	if (!router_orig_tq)
38089652331SSimon Wunderlich 		goto out;
38189652331SSimon Wunderlich 
38289652331SSimon Wunderlich 	gw_tq_avg = router_gw_tq->bat_iv.tq_avg;
38389652331SSimon Wunderlich 	orig_tq_avg = router_orig_tq->bat_iv.tq_avg;
384c6c8fea2SSven Eckelmann 
385c6c8fea2SSven Eckelmann 	/* the TQ value has to be better */
386c6c8fea2SSven Eckelmann 	if (orig_tq_avg < gw_tq_avg)
3875d02b3cdSLinus Lüssing 		goto out;
388c6c8fea2SSven Eckelmann 
3899cfc7bd6SSven Eckelmann 	/* if the routing class is greater than 3 the value tells us how much
390c6c8fea2SSven Eckelmann 	 * greater the TQ value of the new gateway must be
3919cfc7bd6SSven Eckelmann 	 */
392c6c8fea2SSven Eckelmann 	if ((atomic_read(&bat_priv->gw_sel_class) > 3) &&
393c6c8fea2SSven Eckelmann 	    (orig_tq_avg - gw_tq_avg < atomic_read(&bat_priv->gw_sel_class)))
3945d02b3cdSLinus Lüssing 		goto out;
395c6c8fea2SSven Eckelmann 
39639c75a51SSven Eckelmann 	batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
39786ceb360SSven Eckelmann 		   "Restarting gateway selection: better gateway found (tq curr: %i, tq new: %i)\n",
398c6c8fea2SSven Eckelmann 		   gw_tq_avg, orig_tq_avg);
399c6c8fea2SSven Eckelmann 
4004e820e72SAntonio Quartulli reselect:
4014e820e72SAntonio Quartulli 	batadv_gw_reselect(bat_priv);
4025d02b3cdSLinus Lüssing out:
40357f0c07cSLinus Lüssing 	if (curr_gw_orig)
4047d211efcSSven Eckelmann 		batadv_orig_node_free_ref(curr_gw_orig);
405e1a5382fSLinus Lüssing 	if (router_gw)
4067d211efcSSven Eckelmann 		batadv_neigh_node_free_ref(router_gw);
407e1a5382fSLinus Lüssing 	if (router_orig)
4087d211efcSSven Eckelmann 		batadv_neigh_node_free_ref(router_orig);
40989652331SSimon Wunderlich 	if (router_gw_tq)
41089652331SSimon Wunderlich 		batadv_neigh_ifinfo_free_ref(router_gw_tq);
41189652331SSimon Wunderlich 	if (router_orig_tq)
41289652331SSimon Wunderlich 		batadv_neigh_ifinfo_free_ref(router_orig_tq);
413c6c8fea2SSven Eckelmann }
414c6c8fea2SSven Eckelmann 
415414254e3SMarek Lindner /**
416414254e3SMarek Lindner  * batadv_gw_node_add - add gateway node to list of available gateways
417414254e3SMarek Lindner  * @bat_priv: the bat priv with all the soft interface information
418414254e3SMarek Lindner  * @orig_node: originator announcing gateway capabilities
419414254e3SMarek Lindner  * @gateway: announced bandwidth information
420414254e3SMarek Lindner  */
42156303d34SSven Eckelmann static void batadv_gw_node_add(struct batadv_priv *bat_priv,
42256303d34SSven Eckelmann 			       struct batadv_orig_node *orig_node,
423414254e3SMarek Lindner 			       struct batadv_tvlv_gateway_data *gateway)
424c6c8fea2SSven Eckelmann {
42556303d34SSven Eckelmann 	struct batadv_gw_node *gw_node;
426414254e3SMarek Lindner 
427414254e3SMarek Lindner 	if (gateway->bandwidth_down == 0)
428414254e3SMarek Lindner 		return;
429c6c8fea2SSven Eckelmann 
430377fe0f9SAntonio Quartulli 	if (!atomic_inc_not_zero(&orig_node->refcount))
431c6c8fea2SSven Eckelmann 		return;
432c6c8fea2SSven Eckelmann 
433377fe0f9SAntonio Quartulli 	gw_node = kzalloc(sizeof(*gw_node), GFP_ATOMIC);
434377fe0f9SAntonio Quartulli 	if (!gw_node) {
435377fe0f9SAntonio Quartulli 		batadv_orig_node_free_ref(orig_node);
436377fe0f9SAntonio Quartulli 		return;
437377fe0f9SAntonio Quartulli 	}
438377fe0f9SAntonio Quartulli 
439c6c8fea2SSven Eckelmann 	INIT_HLIST_NODE(&gw_node->list);
440c6c8fea2SSven Eckelmann 	gw_node->orig_node = orig_node;
44127a4d5efSSimon Wunderlich 	gw_node->bandwidth_down = ntohl(gateway->bandwidth_down);
44227a4d5efSSimon Wunderlich 	gw_node->bandwidth_up = ntohl(gateway->bandwidth_up);
44325b6d3c1SMarek Lindner 	atomic_set(&gw_node->refcount, 1);
444c6c8fea2SSven Eckelmann 
445807736f6SSven Eckelmann 	spin_lock_bh(&bat_priv->gw.list_lock);
446807736f6SSven Eckelmann 	hlist_add_head_rcu(&gw_node->list, &bat_priv->gw.list);
447807736f6SSven Eckelmann 	spin_unlock_bh(&bat_priv->gw.list_lock);
448c6c8fea2SSven Eckelmann 
44939c75a51SSven Eckelmann 	batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
450414254e3SMarek Lindner 		   "Found new gateway %pM -> gw bandwidth: %u.%u/%u.%u MBit\n",
451414254e3SMarek Lindner 		   orig_node->orig,
452414254e3SMarek Lindner 		   ntohl(gateway->bandwidth_down) / 10,
453414254e3SMarek Lindner 		   ntohl(gateway->bandwidth_down) % 10,
454414254e3SMarek Lindner 		   ntohl(gateway->bandwidth_up) / 10,
455414254e3SMarek Lindner 		   ntohl(gateway->bandwidth_up) % 10);
456c6c8fea2SSven Eckelmann }
457c6c8fea2SSven Eckelmann 
458414254e3SMarek Lindner /**
459414254e3SMarek Lindner  * batadv_gw_node_get - retrieve gateway node from list of available gateways
460414254e3SMarek Lindner  * @bat_priv: the bat priv with all the soft interface information
461414254e3SMarek Lindner  * @orig_node: originator announcing gateway capabilities
462414254e3SMarek Lindner  *
463414254e3SMarek Lindner  * Returns gateway node if found or NULL otherwise.
46471e4aa9cSAntonio Quartulli  */
465414254e3SMarek Lindner static struct batadv_gw_node *
466414254e3SMarek Lindner batadv_gw_node_get(struct batadv_priv *bat_priv,
467414254e3SMarek Lindner 		   struct batadv_orig_node *orig_node)
468414254e3SMarek Lindner {
469414254e3SMarek Lindner 	struct batadv_gw_node *gw_node_tmp, *gw_node = NULL;
470c6c8fea2SSven Eckelmann 
471c6c8fea2SSven Eckelmann 	rcu_read_lock();
472414254e3SMarek Lindner 	hlist_for_each_entry_rcu(gw_node_tmp, &bat_priv->gw.list, list) {
473414254e3SMarek Lindner 		if (gw_node_tmp->orig_node != orig_node)
474c6c8fea2SSven Eckelmann 			continue;
475c6c8fea2SSven Eckelmann 
476414254e3SMarek Lindner 		if (gw_node_tmp->deleted)
477414254e3SMarek Lindner 			continue;
478414254e3SMarek Lindner 
479414254e3SMarek Lindner 		if (!atomic_inc_not_zero(&gw_node_tmp->refcount))
480414254e3SMarek Lindner 			continue;
481414254e3SMarek Lindner 
482414254e3SMarek Lindner 		gw_node = gw_node_tmp;
483414254e3SMarek Lindner 		break;
484414254e3SMarek Lindner 	}
485414254e3SMarek Lindner 	rcu_read_unlock();
486414254e3SMarek Lindner 
487414254e3SMarek Lindner 	return gw_node;
488414254e3SMarek Lindner }
489414254e3SMarek Lindner 
490414254e3SMarek Lindner /**
491414254e3SMarek Lindner  * batadv_gw_node_update - update list of available gateways with changed
492414254e3SMarek Lindner  *  bandwidth information
493414254e3SMarek Lindner  * @bat_priv: the bat priv with all the soft interface information
494414254e3SMarek Lindner  * @orig_node: originator announcing gateway capabilities
495414254e3SMarek Lindner  * @gateway: announced bandwidth information
496414254e3SMarek Lindner  */
497414254e3SMarek Lindner void batadv_gw_node_update(struct batadv_priv *bat_priv,
498414254e3SMarek Lindner 			   struct batadv_orig_node *orig_node,
499414254e3SMarek Lindner 			   struct batadv_tvlv_gateway_data *gateway)
500414254e3SMarek Lindner {
501414254e3SMarek Lindner 	struct batadv_gw_node *gw_node, *curr_gw = NULL;
502414254e3SMarek Lindner 
503414254e3SMarek Lindner 	gw_node = batadv_gw_node_get(bat_priv, orig_node);
504414254e3SMarek Lindner 	if (!gw_node) {
505414254e3SMarek Lindner 		batadv_gw_node_add(bat_priv, orig_node, gateway);
506414254e3SMarek Lindner 		goto out;
507414254e3SMarek Lindner 	}
508414254e3SMarek Lindner 
509414254e3SMarek Lindner 	if ((gw_node->bandwidth_down == ntohl(gateway->bandwidth_down)) &&
510414254e3SMarek Lindner 	    (gw_node->bandwidth_up == ntohl(gateway->bandwidth_up)))
511414254e3SMarek Lindner 		goto out;
512414254e3SMarek Lindner 
51339c75a51SSven Eckelmann 	batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
514414254e3SMarek Lindner 		   "Gateway bandwidth of originator %pM changed from %u.%u/%u.%u MBit to %u.%u/%u.%u MBit\n",
515414254e3SMarek Lindner 		   orig_node->orig,
516414254e3SMarek Lindner 		   gw_node->bandwidth_down / 10,
517414254e3SMarek Lindner 		   gw_node->bandwidth_down % 10,
518414254e3SMarek Lindner 		   gw_node->bandwidth_up / 10,
519414254e3SMarek Lindner 		   gw_node->bandwidth_up % 10,
520414254e3SMarek Lindner 		   ntohl(gateway->bandwidth_down) / 10,
521414254e3SMarek Lindner 		   ntohl(gateway->bandwidth_down) % 10,
522414254e3SMarek Lindner 		   ntohl(gateway->bandwidth_up) / 10,
523414254e3SMarek Lindner 		   ntohl(gateway->bandwidth_up) % 10);
524414254e3SMarek Lindner 
525414254e3SMarek Lindner 	gw_node->bandwidth_down = ntohl(gateway->bandwidth_down);
526414254e3SMarek Lindner 	gw_node->bandwidth_up = ntohl(gateway->bandwidth_up);
527c6c8fea2SSven Eckelmann 
528c6c8fea2SSven Eckelmann 	gw_node->deleted = 0;
529414254e3SMarek Lindner 	if (ntohl(gateway->bandwidth_down) == 0) {
530c6c8fea2SSven Eckelmann 		gw_node->deleted = jiffies;
53139c75a51SSven Eckelmann 		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
532c6c8fea2SSven Eckelmann 			   "Gateway %pM removed from gateway list\n",
533c6c8fea2SSven Eckelmann 			   orig_node->orig);
534c6c8fea2SSven Eckelmann 
535414254e3SMarek Lindner 		/* Note: We don't need a NULL check here, since curr_gw never
536414254e3SMarek Lindner 		 * gets dereferenced.
537414254e3SMarek Lindner 		 */
538414254e3SMarek Lindner 		curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
539c4aac1abSMarek Lindner 		if (gw_node == curr_gw)
5404e820e72SAntonio Quartulli 			batadv_gw_reselect(bat_priv);
541414254e3SMarek Lindner 	}
54271e4aa9cSAntonio Quartulli 
543414254e3SMarek Lindner out:
544c4aac1abSMarek Lindner 	if (curr_gw)
5451409a834SSven Eckelmann 		batadv_gw_node_free_ref(curr_gw);
546414254e3SMarek Lindner 	if (gw_node)
547414254e3SMarek Lindner 		batadv_gw_node_free_ref(gw_node);
548c6c8fea2SSven Eckelmann }
549c6c8fea2SSven Eckelmann 
55056303d34SSven Eckelmann void batadv_gw_node_delete(struct batadv_priv *bat_priv,
55156303d34SSven Eckelmann 			   struct batadv_orig_node *orig_node)
552c6c8fea2SSven Eckelmann {
553414254e3SMarek Lindner 	struct batadv_tvlv_gateway_data gateway;
554414254e3SMarek Lindner 
555414254e3SMarek Lindner 	gateway.bandwidth_down = 0;
556414254e3SMarek Lindner 	gateway.bandwidth_up = 0;
557414254e3SMarek Lindner 
558414254e3SMarek Lindner 	batadv_gw_node_update(bat_priv, orig_node, &gateway);
559c6c8fea2SSven Eckelmann }
560c6c8fea2SSven Eckelmann 
56156303d34SSven Eckelmann void batadv_gw_node_purge(struct batadv_priv *bat_priv)
562c6c8fea2SSven Eckelmann {
56356303d34SSven Eckelmann 	struct batadv_gw_node *gw_node, *curr_gw;
564b67bfe0dSSasha Levin 	struct hlist_node *node_tmp;
56542d0b044SSven Eckelmann 	unsigned long timeout = msecs_to_jiffies(2 * BATADV_PURGE_TIMEOUT);
5664e820e72SAntonio Quartulli 	int do_reselect = 0;
567c4aac1abSMarek Lindner 
5681409a834SSven Eckelmann 	curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
569c6c8fea2SSven Eckelmann 
570807736f6SSven Eckelmann 	spin_lock_bh(&bat_priv->gw.list_lock);
571c6c8fea2SSven Eckelmann 
572b67bfe0dSSasha Levin 	hlist_for_each_entry_safe(gw_node, node_tmp,
573807736f6SSven Eckelmann 				  &bat_priv->gw.list, list) {
574c6c8fea2SSven Eckelmann 		if (((!gw_node->deleted) ||
575c6c8fea2SSven Eckelmann 		     (time_before(jiffies, gw_node->deleted + timeout))) &&
57639c75a51SSven Eckelmann 		    atomic_read(&bat_priv->mesh_state) == BATADV_MESH_ACTIVE)
577c6c8fea2SSven Eckelmann 			continue;
578c6c8fea2SSven Eckelmann 
579c4aac1abSMarek Lindner 		if (curr_gw == gw_node)
5804e820e72SAntonio Quartulli 			do_reselect = 1;
581c6c8fea2SSven Eckelmann 
582c6c8fea2SSven Eckelmann 		hlist_del_rcu(&gw_node->list);
5831409a834SSven Eckelmann 		batadv_gw_node_free_ref(gw_node);
584c6c8fea2SSven Eckelmann 	}
585c6c8fea2SSven Eckelmann 
586807736f6SSven Eckelmann 	spin_unlock_bh(&bat_priv->gw.list_lock);
587c4aac1abSMarek Lindner 
5884e820e72SAntonio Quartulli 	/* gw_reselect() needs to acquire the gw_list_lock */
5894e820e72SAntonio Quartulli 	if (do_reselect)
5904e820e72SAntonio Quartulli 		batadv_gw_reselect(bat_priv);
591c4aac1abSMarek Lindner 
592c4aac1abSMarek Lindner 	if (curr_gw)
5931409a834SSven Eckelmann 		batadv_gw_node_free_ref(curr_gw);
594c6c8fea2SSven Eckelmann }
595c6c8fea2SSven Eckelmann 
5969cfc7bd6SSven Eckelmann /* fails if orig_node has no router */
59756303d34SSven Eckelmann static int batadv_write_buffer_text(struct batadv_priv *bat_priv,
5981409a834SSven Eckelmann 				    struct seq_file *seq,
59956303d34SSven Eckelmann 				    const struct batadv_gw_node *gw_node)
600c6c8fea2SSven Eckelmann {
60156303d34SSven Eckelmann 	struct batadv_gw_node *curr_gw;
60256303d34SSven Eckelmann 	struct batadv_neigh_node *router;
60389652331SSimon Wunderlich 	struct batadv_neigh_ifinfo *router_ifinfo = NULL;
604414254e3SMarek Lindner 	int ret = -1;
605c6c8fea2SSven Eckelmann 
6067351a482SSimon Wunderlich 	router = batadv_orig_router_get(gw_node->orig_node, BATADV_IF_DEFAULT);
607e1a5382fSLinus Lüssing 	if (!router)
608e1a5382fSLinus Lüssing 		goto out;
609e1a5382fSLinus Lüssing 
61089652331SSimon Wunderlich 	router_ifinfo = batadv_neigh_ifinfo_get(router, BATADV_IF_DEFAULT);
61189652331SSimon Wunderlich 	if (!router_ifinfo)
61289652331SSimon Wunderlich 		goto out;
61389652331SSimon Wunderlich 
6141409a834SSven Eckelmann 	curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
6155d02b3cdSLinus Lüssing 
6166d91147dSJoe Perches 	seq_printf(seq, "%s %pM (%3i) %pM [%10s]: %u.%u/%u.%u MBit\n",
6175d02b3cdSLinus Lüssing 		   (curr_gw == gw_node ? "=>" : "  "),
618c6c8fea2SSven Eckelmann 		   gw_node->orig_node->orig,
61989652331SSimon Wunderlich 		   router_ifinfo->bat_iv.tq_avg, router->addr,
620e1a5382fSLinus Lüssing 		   router->if_incoming->net_dev->name,
621414254e3SMarek Lindner 		   gw_node->bandwidth_down / 10,
622414254e3SMarek Lindner 		   gw_node->bandwidth_down % 10,
623414254e3SMarek Lindner 		   gw_node->bandwidth_up / 10,
624414254e3SMarek Lindner 		   gw_node->bandwidth_up % 10);
62592b83917SJoe Perches 	ret = seq_has_overflowed(seq) ? -1 : 0;
6265d02b3cdSLinus Lüssing 
627c4aac1abSMarek Lindner 	if (curr_gw)
6281409a834SSven Eckelmann 		batadv_gw_node_free_ref(curr_gw);
629e1a5382fSLinus Lüssing out:
63089652331SSimon Wunderlich 	if (router_ifinfo)
63189652331SSimon Wunderlich 		batadv_neigh_ifinfo_free_ref(router_ifinfo);
63289652331SSimon Wunderlich 	if (router)
63389652331SSimon Wunderlich 		batadv_neigh_node_free_ref(router);
6345d02b3cdSLinus Lüssing 	return ret;
635c6c8fea2SSven Eckelmann }
636c6c8fea2SSven Eckelmann 
6377cf06bc6SSven Eckelmann int batadv_gw_client_seq_print_text(struct seq_file *seq, void *offset)
638c6c8fea2SSven Eckelmann {
639c6c8fea2SSven Eckelmann 	struct net_device *net_dev = (struct net_device *)seq->private;
64056303d34SSven Eckelmann 	struct batadv_priv *bat_priv = netdev_priv(net_dev);
64156303d34SSven Eckelmann 	struct batadv_hard_iface *primary_if;
64256303d34SSven Eckelmann 	struct batadv_gw_node *gw_node;
64330da63a6SMarek Lindner 	int gw_count = 0;
644c6c8fea2SSven Eckelmann 
64530da63a6SMarek Lindner 	primary_if = batadv_seq_print_text_primary_if_get(seq);
64630da63a6SMarek Lindner 	if (!primary_if)
64732ae9b22SMarek Lindner 		goto out;
648c6c8fea2SSven Eckelmann 
64986ceb360SSven Eckelmann 	seq_printf(seq,
650414254e3SMarek Lindner 		   "      %-12s (%s/%i) %17s [%10s]: advertised uplink bandwidth ... [B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s)]\n",
65142d0b044SSven Eckelmann 		   "Gateway", "#", BATADV_TQ_MAX_VALUE, "Nexthop", "outgoingIF",
65242d0b044SSven Eckelmann 		   BATADV_SOURCE_VERSION, primary_if->net_dev->name,
65332ae9b22SMarek Lindner 		   primary_if->net_dev->dev_addr, net_dev->name);
654c6c8fea2SSven Eckelmann 
655c6c8fea2SSven Eckelmann 	rcu_read_lock();
656b67bfe0dSSasha Levin 	hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) {
657c6c8fea2SSven Eckelmann 		if (gw_node->deleted)
658c6c8fea2SSven Eckelmann 			continue;
659c6c8fea2SSven Eckelmann 
660e1a5382fSLinus Lüssing 		/* fails if orig_node has no router */
6611409a834SSven Eckelmann 		if (batadv_write_buffer_text(bat_priv, seq, gw_node) < 0)
662c6c8fea2SSven Eckelmann 			continue;
663c6c8fea2SSven Eckelmann 
664c6c8fea2SSven Eckelmann 		gw_count++;
665c6c8fea2SSven Eckelmann 	}
666c6c8fea2SSven Eckelmann 	rcu_read_unlock();
667c6c8fea2SSven Eckelmann 
668c6c8fea2SSven Eckelmann 	if (gw_count == 0)
6690c814653SAntonio Quartulli 		seq_puts(seq, "No gateways in range ...\n");
670c6c8fea2SSven Eckelmann 
67132ae9b22SMarek Lindner out:
67232ae9b22SMarek Lindner 	if (primary_if)
673e5d89254SSven Eckelmann 		batadv_hardif_free_ref(primary_if);
67430da63a6SMarek Lindner 	return 0;
675c6c8fea2SSven Eckelmann }
676c6c8fea2SSven Eckelmann 
6776c413b1cSAntonio Quartulli /**
6786c413b1cSAntonio Quartulli  * batadv_gw_dhcp_recipient_get - check if a packet is a DHCP message
6796c413b1cSAntonio Quartulli  * @skb: the packet to check
6806c413b1cSAntonio Quartulli  * @header_len: a pointer to the batman-adv header size
6816c413b1cSAntonio Quartulli  * @chaddr: buffer where the client address will be stored. Valid
6826c413b1cSAntonio Quartulli  *  only if the function returns BATADV_DHCP_TO_CLIENT
6836c413b1cSAntonio Quartulli  *
6846c413b1cSAntonio Quartulli  * Returns:
6856c413b1cSAntonio Quartulli  * - BATADV_DHCP_NO if the packet is not a dhcp message or if there was an error
6866c413b1cSAntonio Quartulli  *   while parsing it
6876c413b1cSAntonio Quartulli  * - BATADV_DHCP_TO_SERVER if this is a message going to the DHCP server
6886c413b1cSAntonio Quartulli  * - BATADV_DHCP_TO_CLIENT if this is a message going to a DHCP client
6896c413b1cSAntonio Quartulli  *
6906c413b1cSAntonio Quartulli  * This function may re-allocate the data buffer of the skb passed as argument.
6919cfc7bd6SSven Eckelmann  */
6926c413b1cSAntonio Quartulli enum batadv_dhcp_recipient
6936c413b1cSAntonio Quartulli batadv_gw_dhcp_recipient_get(struct sk_buff *skb, unsigned int *header_len,
6946b5e971aSSven Eckelmann 			     u8 *chaddr)
695c6c8fea2SSven Eckelmann {
6966c413b1cSAntonio Quartulli 	enum batadv_dhcp_recipient ret = BATADV_DHCP_NO;
697c6c8fea2SSven Eckelmann 	struct ethhdr *ethhdr;
698c6c8fea2SSven Eckelmann 	struct iphdr *iphdr;
699c6c8fea2SSven Eckelmann 	struct ipv6hdr *ipv6hdr;
700c6c8fea2SSven Eckelmann 	struct udphdr *udphdr;
701f7f8ed56SAntonio Quartulli 	struct vlan_ethhdr *vhdr;
7026c413b1cSAntonio Quartulli 	int chaddr_offset;
703f7f8ed56SAntonio Quartulli 	__be16 proto;
7046b5e971aSSven Eckelmann 	u8 *p;
705c6c8fea2SSven Eckelmann 
706c6c8fea2SSven Eckelmann 	/* check for ethernet header */
707be7af5cfSMarek Lindner 	if (!pskb_may_pull(skb, *header_len + ETH_HLEN))
7086c413b1cSAntonio Quartulli 		return BATADV_DHCP_NO;
7096c413b1cSAntonio Quartulli 
710927c2ed7SLinus Lüssing 	ethhdr = eth_hdr(skb);
711f7f8ed56SAntonio Quartulli 	proto = ethhdr->h_proto;
712be7af5cfSMarek Lindner 	*header_len += ETH_HLEN;
713c6c8fea2SSven Eckelmann 
714c6c8fea2SSven Eckelmann 	/* check for initial vlan header */
715f7f8ed56SAntonio Quartulli 	if (proto == htons(ETH_P_8021Q)) {
716be7af5cfSMarek Lindner 		if (!pskb_may_pull(skb, *header_len + VLAN_HLEN))
7176c413b1cSAntonio Quartulli 			return BATADV_DHCP_NO;
718f7f8ed56SAntonio Quartulli 
719927c2ed7SLinus Lüssing 		vhdr = vlan_eth_hdr(skb);
720f7f8ed56SAntonio Quartulli 		proto = vhdr->h_vlan_encapsulated_proto;
721be7af5cfSMarek Lindner 		*header_len += VLAN_HLEN;
722c6c8fea2SSven Eckelmann 	}
723c6c8fea2SSven Eckelmann 
724c6c8fea2SSven Eckelmann 	/* check for ip header */
725f7f8ed56SAntonio Quartulli 	switch (proto) {
726f7f8ed56SAntonio Quartulli 	case htons(ETH_P_IP):
727be7af5cfSMarek Lindner 		if (!pskb_may_pull(skb, *header_len + sizeof(*iphdr)))
7286c413b1cSAntonio Quartulli 			return BATADV_DHCP_NO;
7296c413b1cSAntonio Quartulli 
730be7af5cfSMarek Lindner 		iphdr = (struct iphdr *)(skb->data + *header_len);
731be7af5cfSMarek Lindner 		*header_len += iphdr->ihl * 4;
732c6c8fea2SSven Eckelmann 
733c6c8fea2SSven Eckelmann 		/* check for udp header */
734c6c8fea2SSven Eckelmann 		if (iphdr->protocol != IPPROTO_UDP)
7356c413b1cSAntonio Quartulli 			return BATADV_DHCP_NO;
736c6c8fea2SSven Eckelmann 
737c6c8fea2SSven Eckelmann 		break;
738f7f8ed56SAntonio Quartulli 	case htons(ETH_P_IPV6):
739be7af5cfSMarek Lindner 		if (!pskb_may_pull(skb, *header_len + sizeof(*ipv6hdr)))
7406c413b1cSAntonio Quartulli 			return BATADV_DHCP_NO;
7416c413b1cSAntonio Quartulli 
742be7af5cfSMarek Lindner 		ipv6hdr = (struct ipv6hdr *)(skb->data + *header_len);
743be7af5cfSMarek Lindner 		*header_len += sizeof(*ipv6hdr);
744c6c8fea2SSven Eckelmann 
745c6c8fea2SSven Eckelmann 		/* check for udp header */
746c6c8fea2SSven Eckelmann 		if (ipv6hdr->nexthdr != IPPROTO_UDP)
7476c413b1cSAntonio Quartulli 			return BATADV_DHCP_NO;
748c6c8fea2SSven Eckelmann 
749c6c8fea2SSven Eckelmann 		break;
750c6c8fea2SSven Eckelmann 	default:
7516c413b1cSAntonio Quartulli 		return BATADV_DHCP_NO;
752c6c8fea2SSven Eckelmann 	}
753c6c8fea2SSven Eckelmann 
754be7af5cfSMarek Lindner 	if (!pskb_may_pull(skb, *header_len + sizeof(*udphdr)))
7556c413b1cSAntonio Quartulli 		return BATADV_DHCP_NO;
7569d2c9488SLinus Lüssing 
757be7af5cfSMarek Lindner 	udphdr = (struct udphdr *)(skb->data + *header_len);
758be7af5cfSMarek Lindner 	*header_len += sizeof(*udphdr);
759c6c8fea2SSven Eckelmann 
760c6c8fea2SSven Eckelmann 	/* check for bootp port */
7616c413b1cSAntonio Quartulli 	switch (proto) {
7626c413b1cSAntonio Quartulli 	case htons(ETH_P_IP):
7636c413b1cSAntonio Quartulli 		if (udphdr->dest == htons(67))
7646c413b1cSAntonio Quartulli 			ret = BATADV_DHCP_TO_SERVER;
7656c413b1cSAntonio Quartulli 		else if (udphdr->source == htons(67))
7666c413b1cSAntonio Quartulli 			ret = BATADV_DHCP_TO_CLIENT;
7676c413b1cSAntonio Quartulli 		break;
7686c413b1cSAntonio Quartulli 	case htons(ETH_P_IPV6):
7696c413b1cSAntonio Quartulli 		if (udphdr->dest == htons(547))
7706c413b1cSAntonio Quartulli 			ret = BATADV_DHCP_TO_SERVER;
7716c413b1cSAntonio Quartulli 		else if (udphdr->source == htons(547))
7726c413b1cSAntonio Quartulli 			ret = BATADV_DHCP_TO_CLIENT;
7736c413b1cSAntonio Quartulli 		break;
774be7af5cfSMarek Lindner 	}
775c6c8fea2SSven Eckelmann 
7766c413b1cSAntonio Quartulli 	chaddr_offset = *header_len + BATADV_DHCP_CHADDR_OFFSET;
7776c413b1cSAntonio Quartulli 	/* store the client address if the message is going to a client */
7786c413b1cSAntonio Quartulli 	if (ret == BATADV_DHCP_TO_CLIENT &&
7796c413b1cSAntonio Quartulli 	    pskb_may_pull(skb, chaddr_offset + ETH_ALEN)) {
7806c413b1cSAntonio Quartulli 		/* check if the DHCP packet carries an Ethernet DHCP */
7816c413b1cSAntonio Quartulli 		p = skb->data + *header_len + BATADV_DHCP_HTYPE_OFFSET;
7826c413b1cSAntonio Quartulli 		if (*p != BATADV_DHCP_HTYPE_ETHERNET)
7836c413b1cSAntonio Quartulli 			return BATADV_DHCP_NO;
7846c413b1cSAntonio Quartulli 
7856c413b1cSAntonio Quartulli 		/* check if the DHCP packet carries a valid Ethernet address */
7866c413b1cSAntonio Quartulli 		p = skb->data + *header_len + BATADV_DHCP_HLEN_OFFSET;
7876c413b1cSAntonio Quartulli 		if (*p != ETH_ALEN)
7886c413b1cSAntonio Quartulli 			return BATADV_DHCP_NO;
7896c413b1cSAntonio Quartulli 
7908fdd0153SAntonio Quartulli 		ether_addr_copy(chaddr, skb->data + chaddr_offset);
7916c413b1cSAntonio Quartulli 	}
7926c413b1cSAntonio Quartulli 
7936c413b1cSAntonio Quartulli 	return ret;
7946c413b1cSAntonio Quartulli }
795aa143d28SAntonio Quartulli 
796bbb877edSAntonio Quartulli /**
797bbb877edSAntonio Quartulli  * batadv_gw_out_of_range - check if the dhcp request destination is the best gw
798bbb877edSAntonio Quartulli  * @bat_priv: the bat priv with all the soft interface information
799bbb877edSAntonio Quartulli  * @skb: the outgoing packet
800bbb877edSAntonio Quartulli  *
801bbb877edSAntonio Quartulli  * Check if the skb is a DHCP request and if it is sent to the current best GW
802bbb877edSAntonio Quartulli  * server. Due to topology changes it may be the case that the GW server
803bbb877edSAntonio Quartulli  * previously selected is not the best one anymore.
804bbb877edSAntonio Quartulli  *
805bbb877edSAntonio Quartulli  * Returns true if the packet destination is unicast and it is not the best gw,
806bbb877edSAntonio Quartulli  * false otherwise.
807bbb877edSAntonio Quartulli  *
808bbb877edSAntonio Quartulli  * This call might reallocate skb data.
8096c413b1cSAntonio Quartulli  * Must be invoked only when the DHCP packet is going TO a DHCP SERVER.
810bbb877edSAntonio Quartulli  */
81156303d34SSven Eckelmann bool batadv_gw_out_of_range(struct batadv_priv *bat_priv,
8129d2c9488SLinus Lüssing 			    struct sk_buff *skb)
813be7af5cfSMarek Lindner {
814*4f248cffSSven Eckelmann 	struct batadv_neigh_node *neigh_curr = NULL;
815*4f248cffSSven Eckelmann 	struct batadv_neigh_node *neigh_old = NULL;
81656303d34SSven Eckelmann 	struct batadv_orig_node *orig_dst_node = NULL;
817*4f248cffSSven Eckelmann 	struct batadv_gw_node *gw_node = NULL;
818*4f248cffSSven Eckelmann 	struct batadv_gw_node *curr_gw = NULL;
81989652331SSimon Wunderlich 	struct batadv_neigh_ifinfo *curr_ifinfo, *old_ifinfo;
8206c413b1cSAntonio Quartulli 	struct ethhdr *ethhdr = (struct ethhdr *)skb->data;
8216c413b1cSAntonio Quartulli 	bool out_of_range = false;
8226b5e971aSSven Eckelmann 	u8 curr_tq_avg;
823bbb877edSAntonio Quartulli 	unsigned short vid;
824bbb877edSAntonio Quartulli 
825bbb877edSAntonio Quartulli 	vid = batadv_get_vid(skb, 0);
826be7af5cfSMarek Lindner 
82708c36d3eSSven Eckelmann 	orig_dst_node = batadv_transtable_search(bat_priv, ethhdr->h_source,
828bbb877edSAntonio Quartulli 						 ethhdr->h_dest, vid);
829be7af5cfSMarek Lindner 	if (!orig_dst_node)
830be7af5cfSMarek Lindner 		goto out;
831be7af5cfSMarek Lindner 
832414254e3SMarek Lindner 	gw_node = batadv_gw_node_get(bat_priv, orig_dst_node);
8330d164491SAntonio Quartulli 	if (!gw_node)
834be7af5cfSMarek Lindner 		goto out;
835be7af5cfSMarek Lindner 
836be7af5cfSMarek Lindner 	switch (atomic_read(&bat_priv->gw_mode)) {
837cd646ab1SSven Eckelmann 	case BATADV_GW_MODE_SERVER:
838be7af5cfSMarek Lindner 		/* If we are a GW then we are our best GW. We can artificially
8399cfc7bd6SSven Eckelmann 		 * set the tq towards ourself as the maximum value
8409cfc7bd6SSven Eckelmann 		 */
84142d0b044SSven Eckelmann 		curr_tq_avg = BATADV_TQ_MAX_VALUE;
842be7af5cfSMarek Lindner 		break;
843cd646ab1SSven Eckelmann 	case BATADV_GW_MODE_CLIENT:
8441409a834SSven Eckelmann 		curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
845c4aac1abSMarek Lindner 		if (!curr_gw)
846be7af5cfSMarek Lindner 			goto out;
847c6c8fea2SSven Eckelmann 
848be7af5cfSMarek Lindner 		/* packet is going to our gateway */
849be7af5cfSMarek Lindner 		if (curr_gw->orig_node == orig_dst_node)
850be7af5cfSMarek Lindner 			goto out;
851be7af5cfSMarek Lindner 
85243676ab5SAntonio Quartulli 		/* If the dhcp packet has been sent to a different gw,
85343676ab5SAntonio Quartulli 		 * we have to evaluate whether the old gw is still
8549cfc7bd6SSven Eckelmann 		 * reliable enough
8559cfc7bd6SSven Eckelmann 		 */
85630d3c511SSven Eckelmann 		neigh_curr = batadv_find_router(bat_priv, curr_gw->orig_node,
85730d3c511SSven Eckelmann 						NULL);
858be7af5cfSMarek Lindner 		if (!neigh_curr)
859be7af5cfSMarek Lindner 			goto out;
860be7af5cfSMarek Lindner 
86189652331SSimon Wunderlich 		curr_ifinfo = batadv_neigh_ifinfo_get(neigh_curr,
86289652331SSimon Wunderlich 						      BATADV_IF_DEFAULT);
86389652331SSimon Wunderlich 		if (!curr_ifinfo)
86489652331SSimon Wunderlich 			goto out;
86589652331SSimon Wunderlich 
86689652331SSimon Wunderlich 		curr_tq_avg = curr_ifinfo->bat_iv.tq_avg;
86789652331SSimon Wunderlich 		batadv_neigh_ifinfo_free_ref(curr_ifinfo);
86889652331SSimon Wunderlich 
869be7af5cfSMarek Lindner 		break;
870cd646ab1SSven Eckelmann 	case BATADV_GW_MODE_OFF:
871be7af5cfSMarek Lindner 	default:
872be7af5cfSMarek Lindner 		goto out;
87343676ab5SAntonio Quartulli 	}
874be7af5cfSMarek Lindner 
87530d3c511SSven Eckelmann 	neigh_old = batadv_find_router(bat_priv, orig_dst_node, NULL);
8762ef04f47SDan Carpenter 	if (!neigh_old)
877be7af5cfSMarek Lindner 		goto out;
878be7af5cfSMarek Lindner 
87989652331SSimon Wunderlich 	old_ifinfo = batadv_neigh_ifinfo_get(neigh_old, BATADV_IF_DEFAULT);
88089652331SSimon Wunderlich 	if (!old_ifinfo)
88189652331SSimon Wunderlich 		goto out;
88289652331SSimon Wunderlich 
88389652331SSimon Wunderlich 	if ((curr_tq_avg - old_ifinfo->bat_iv.tq_avg) > BATADV_GW_THRESHOLD)
884be7af5cfSMarek Lindner 		out_of_range = true;
88589652331SSimon Wunderlich 	batadv_neigh_ifinfo_free_ref(old_ifinfo);
886be7af5cfSMarek Lindner 
887be7af5cfSMarek Lindner out:
888be7af5cfSMarek Lindner 	if (orig_dst_node)
8897d211efcSSven Eckelmann 		batadv_orig_node_free_ref(orig_dst_node);
890be7af5cfSMarek Lindner 	if (curr_gw)
8911409a834SSven Eckelmann 		batadv_gw_node_free_ref(curr_gw);
892414254e3SMarek Lindner 	if (gw_node)
893414254e3SMarek Lindner 		batadv_gw_node_free_ref(gw_node);
89443676ab5SAntonio Quartulli 	if (neigh_old)
8957d211efcSSven Eckelmann 		batadv_neigh_node_free_ref(neigh_old);
89643676ab5SAntonio Quartulli 	if (neigh_curr)
8977d211efcSSven Eckelmann 		batadv_neigh_node_free_ref(neigh_curr);
898be7af5cfSMarek Lindner 	return out_of_range;
899c6c8fea2SSven Eckelmann }
900