blob: 63a805d3f96e5286c9301fe900b48c2e21241f6a [file] [log] [blame]
Sven Eckelmann0046b042016-01-01 00:01:03 +01001/* Copyright (C) 2009-2016 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002 *
3 * Marek Lindner
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
Antonio Quartulliebf38fb2013-11-03 20:40:48 +010015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000016 */
17
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018#include "gateway_client.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020019#include "main.h"
20
21#include <linux/atomic.h>
22#include <linux/byteorder/generic.h>
23#include <linux/etherdevice.h>
24#include <linux/fs.h>
25#include <linux/if_ether.h>
26#include <linux/if_vlan.h>
27#include <linux/in.h>
28#include <linux/ip.h>
29#include <linux/ipv6.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020030#include <linux/kernel.h>
Sven Eckelmanne7aed322016-01-16 10:29:41 +010031#include <linux/kref.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020032#include <linux/list.h>
33#include <linux/netdevice.h>
34#include <linux/rculist.h>
35#include <linux/rcupdate.h>
36#include <linux/seq_file.h>
37#include <linux/skbuff.h>
38#include <linux/slab.h>
39#include <linux/spinlock.h>
40#include <linux/stddef.h>
41#include <linux/udp.h>
42
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000043#include "gateway_common.h"
44#include "hard-interface.h"
Sven Eckelmannba412082016-05-15 23:48:31 +020045#include "log.h"
Linus Lüssing57f0c072011-03-14 22:43:33 +000046#include "originator.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020047#include "packet.h"
Antonio Quartulli43676ab52011-04-26 21:31:45 +020048#include "routing.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020049#include "sysfs.h"
50#include "translation-table.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000051
Antonio Quartulli6c413b12013-11-05 19:31:08 +010052/* These are the offsets of the "hw type" and "hw address length" in the dhcp
53 * packet starting at the beginning of the dhcp header
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020054 */
Antonio Quartulli6c413b12013-11-05 19:31:08 +010055#define BATADV_DHCP_HTYPE_OFFSET 1
56#define BATADV_DHCP_HLEN_OFFSET 2
57/* Value of htype representing Ethernet */
58#define BATADV_DHCP_HTYPE_ETHERNET 0x01
59/* This is the offset of the "chaddr" field in the dhcp packet starting at the
60 * beginning of the dhcp header
61 */
62#define BATADV_DHCP_CHADDR_OFFSET 28
Antonio Quartulli43676ab52011-04-26 21:31:45 +020063
Sven Eckelmanne7aed322016-01-16 10:29:41 +010064/**
65 * batadv_gw_node_release - release gw_node from lists and queue for free after
66 * rcu grace period
67 * @ref: kref pointer of the gw_node
68 */
69static void batadv_gw_node_release(struct kref *ref)
70{
71 struct batadv_gw_node *gw_node;
72
73 gw_node = container_of(ref, struct batadv_gw_node, refcount);
74
Sven Eckelmann5d967312016-01-17 11:01:09 +010075 batadv_orig_node_put(gw_node->orig_node);
Sven Eckelmanne7aed322016-01-16 10:29:41 +010076 kfree_rcu(gw_node, rcu);
77}
78
79/**
Sven Eckelmann3a017432016-01-17 11:01:18 +010080 * batadv_gw_node_put - decrement the gw_node refcounter and possibly release it
Sven Eckelmanne7aed322016-01-16 10:29:41 +010081 * @gw_node: gateway node to free
82 */
Sven Eckelmann3a017432016-01-17 11:01:18 +010083static void batadv_gw_node_put(struct batadv_gw_node *gw_node)
Marek Lindner25b6d3c2011-02-10 14:33:49 +000084{
Sven Eckelmanne7aed322016-01-16 10:29:41 +010085 kref_put(&gw_node->refcount, batadv_gw_node_release);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000086}
87
Sven Eckelmann56303d32012-06-05 22:31:31 +020088static struct batadv_gw_node *
89batadv_gw_get_selected_gw_node(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000090{
Sven Eckelmann56303d32012-06-05 22:31:31 +020091 struct batadv_gw_node *gw_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000092
Linus Lüssing5d02b3c2011-02-13 21:13:02 +000093 rcu_read_lock();
Sven Eckelmann807736f2012-07-15 22:26:51 +020094 gw_node = rcu_dereference(bat_priv->gw.curr_gw);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010095 if (!gw_node)
Linus Lüssing5d02b3c2011-02-13 21:13:02 +000096 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000097
Sven Eckelmanne7aed322016-01-16 10:29:41 +010098 if (!kref_get_unless_zero(&gw_node->refcount))
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010099 gw_node = NULL;
100
101out:
102 rcu_read_unlock();
103 return gw_node;
104}
105
Sven Eckelmann56303d32012-06-05 22:31:31 +0200106struct batadv_orig_node *
107batadv_gw_get_selected_orig(struct batadv_priv *bat_priv)
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100108{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200109 struct batadv_gw_node *gw_node;
110 struct batadv_orig_node *orig_node = NULL;
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100111
Sven Eckelmann1409a832012-05-12 18:33:55 +0200112 gw_node = batadv_gw_get_selected_gw_node(bat_priv);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100113 if (!gw_node)
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000114 goto out;
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000115
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100116 rcu_read_lock();
117 orig_node = gw_node->orig_node;
118 if (!orig_node)
119 goto unlock;
120
Sven Eckelmann7c124392016-01-16 10:29:56 +0100121 if (!kref_get_unless_zero(&orig_node->refcount))
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000122 orig_node = NULL;
Linus Lüssing43c70ad2011-02-13 21:13:04 +0000123
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100124unlock:
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000125 rcu_read_unlock();
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100126out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000127 if (gw_node)
Sven Eckelmann3a017432016-01-17 11:01:18 +0100128 batadv_gw_node_put(gw_node);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100129 return orig_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000130}
131
Sven Eckelmann56303d32012-06-05 22:31:31 +0200132static void batadv_gw_select(struct batadv_priv *bat_priv,
133 struct batadv_gw_node *new_gw_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000134{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200135 struct batadv_gw_node *curr_gw_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000136
Sven Eckelmann807736f2012-07-15 22:26:51 +0200137 spin_lock_bh(&bat_priv->gw.list_lock);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100138
Sven Eckelmanna08d4972016-03-05 16:09:22 +0100139 if (new_gw_node)
140 kref_get(&new_gw_node->refcount);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000141
Sven Eckelmann807736f2012-07-15 22:26:51 +0200142 curr_gw_node = rcu_dereference_protected(bat_priv->gw.curr_gw, 1);
143 rcu_assign_pointer(bat_priv->gw.curr_gw, new_gw_node);
Marek Lindner25b6d3c2011-02-10 14:33:49 +0000144
145 if (curr_gw_node)
Sven Eckelmann3a017432016-01-17 11:01:18 +0100146 batadv_gw_node_put(curr_gw_node);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100147
Sven Eckelmann807736f2012-07-15 22:26:51 +0200148 spin_unlock_bh(&bat_priv->gw.list_lock);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100149}
150
Antonio Quartulli4e820e72013-11-04 20:59:41 +0100151/**
152 * batadv_gw_reselect - force a gateway reselection
153 * @bat_priv: the bat priv with all the soft interface information
154 *
155 * Set a flag to remind the GW component to perform a new gateway reselection.
156 * However this function does not ensure that the current gateway is going to be
157 * deselected. The reselection mechanism may elect the same gateway once again.
158 *
159 * This means that invoking batadv_gw_reselect() does not guarantee a gateway
160 * change and therefore a uevent is not necessarily expected.
161 */
162void batadv_gw_reselect(struct batadv_priv *bat_priv)
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100163{
Sven Eckelmann807736f2012-07-15 22:26:51 +0200164 atomic_set(&bat_priv->gw.reselect, 1);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000165}
166
Sven Eckelmann56303d32012-06-05 22:31:31 +0200167static struct batadv_gw_node *
168batadv_gw_get_best_gw_node(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000169{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200170 struct batadv_neigh_node *router;
Simon Wunderlich89652332013-11-13 19:14:46 +0100171 struct batadv_neigh_ifinfo *router_ifinfo;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200172 struct batadv_gw_node *gw_node, *curr_gw = NULL;
Sven Eckelmann4f248cf2015-06-09 20:50:49 +0200173 u64 max_gw_factor = 0;
174 u64 tmp_gw_factor = 0;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200175 u8 max_tq = 0;
176 u8 tq_avg;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200177 struct batadv_orig_node *orig_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000178
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000179 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800180 hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) {
Sven Eckelmann84d5e5e2012-05-12 02:09:30 +0200181 orig_node = gw_node->orig_node;
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100182 router = batadv_orig_router_get(orig_node, BATADV_IF_DEFAULT);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000183 if (!router)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000184 continue;
185
Simon Wunderlich89652332013-11-13 19:14:46 +0100186 router_ifinfo = batadv_neigh_ifinfo_get(router,
187 BATADV_IF_DEFAULT);
188 if (!router_ifinfo)
189 goto next;
190
Sven Eckelmanne7aed322016-01-16 10:29:41 +0100191 if (!kref_get_unless_zero(&gw_node->refcount))
Antonio Quartulli2265c142011-04-27 00:22:00 +0200192 goto next;
193
Simon Wunderlich89652332013-11-13 19:14:46 +0100194 tq_avg = router_ifinfo->bat_iv.tq_avg;
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200195
Antonio Quartulli3a24a632016-05-06 02:46:38 +0800196 switch (atomic_read(&bat_priv->gw.sel_class)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000197 case 1: /* fast connection */
Marek Lindner414254e2013-04-23 21:39:58 +0800198 tmp_gw_factor = tq_avg * tq_avg;
199 tmp_gw_factor *= gw_node->bandwidth_down;
200 tmp_gw_factor *= 100 * 100;
Sven Eckelmanne071d932015-06-22 09:13:23 +0200201 tmp_gw_factor >>= 18;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000202
203 if ((tmp_gw_factor > max_gw_factor) ||
204 ((tmp_gw_factor == max_gw_factor) &&
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200205 (tq_avg > max_tq))) {
Antonio Quartulli2265c142011-04-27 00:22:00 +0200206 if (curr_gw)
Sven Eckelmann3a017432016-01-17 11:01:18 +0100207 batadv_gw_node_put(curr_gw);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200208 curr_gw = gw_node;
Sven Eckelmanne7aed322016-01-16 10:29:41 +0100209 kref_get(&curr_gw->refcount);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200210 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000211 break;
212
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200213 default: /* 2: stable connection (use best statistic)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000214 * 3: fast-switch (use best statistic but change as
215 * soon as a better gateway appears)
216 * XX: late-switch (use best statistic but change as
217 * soon as a better gateway appears which has
218 * $routing_class more tq points)
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200219 */
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200220 if (tq_avg > max_tq) {
Antonio Quartulli2265c142011-04-27 00:22:00 +0200221 if (curr_gw)
Sven Eckelmann3a017432016-01-17 11:01:18 +0100222 batadv_gw_node_put(curr_gw);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200223 curr_gw = gw_node;
Sven Eckelmanne7aed322016-01-16 10:29:41 +0100224 kref_get(&curr_gw->refcount);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200225 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000226 break;
227 }
228
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200229 if (tq_avg > max_tq)
230 max_tq = tq_avg;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000231
232 if (tmp_gw_factor > max_gw_factor)
233 max_gw_factor = tmp_gw_factor;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000234
Sven Eckelmann3a017432016-01-17 11:01:18 +0100235 batadv_gw_node_put(gw_node);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200236
237next:
Sven Eckelmann25bb2502016-01-17 11:01:11 +0100238 batadv_neigh_node_put(router);
Simon Wunderlich89652332013-11-13 19:14:46 +0100239 if (router_ifinfo)
Sven Eckelmann044fa3a2016-01-17 11:01:12 +0100240 batadv_neigh_ifinfo_put(router_ifinfo);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000241 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000242 rcu_read_unlock();
Antonio Quartulli2265c142011-04-27 00:22:00 +0200243
244 return curr_gw;
245}
246
Antonio Quartullic6eaa3f2013-07-13 00:06:00 +0200247/**
248 * batadv_gw_check_client_stop - check if client mode has been switched off
249 * @bat_priv: the bat priv with all the soft interface information
250 *
251 * This function assumes the caller has checked that the gw state *is actually
252 * changing*. This function is not supposed to be called when there is no state
253 * change.
254 */
255void batadv_gw_check_client_stop(struct batadv_priv *bat_priv)
256{
257 struct batadv_gw_node *curr_gw;
258
Antonio Quartulli3a24a632016-05-06 02:46:38 +0800259 if (atomic_read(&bat_priv->gw.mode) != BATADV_GW_MODE_CLIENT)
Antonio Quartullic6eaa3f2013-07-13 00:06:00 +0200260 return;
261
262 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
263 if (!curr_gw)
264 return;
265
Antonio Quartullif3163182013-11-04 20:59:40 +0100266 /* deselect the current gateway so that next time that client mode is
267 * enabled a proper GW_ADD event can be sent
268 */
269 batadv_gw_select(bat_priv, NULL);
270
Antonio Quartullic6eaa3f2013-07-13 00:06:00 +0200271 /* if batman-adv is switching the gw client mode off and a gateway was
272 * already selected, send a DEL uevent
273 */
274 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_DEL, NULL);
275
Sven Eckelmann3a017432016-01-17 11:01:18 +0100276 batadv_gw_node_put(curr_gw);
Antonio Quartullic6eaa3f2013-07-13 00:06:00 +0200277}
278
Sven Eckelmann56303d32012-06-05 22:31:31 +0200279void batadv_gw_election(struct batadv_priv *bat_priv)
Antonio Quartulli2265c142011-04-27 00:22:00 +0200280{
Sven Eckelmann4f248cf2015-06-09 20:50:49 +0200281 struct batadv_gw_node *curr_gw = NULL;
282 struct batadv_gw_node *next_gw = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200283 struct batadv_neigh_node *router = NULL;
Simon Wunderlich89652332013-11-13 19:14:46 +0100284 struct batadv_neigh_ifinfo *router_ifinfo = NULL;
Antonio Quartulli19595e02011-06-12 11:58:58 +0200285 char gw_addr[18] = { '\0' };
Antonio Quartulli2265c142011-04-27 00:22:00 +0200286
Antonio Quartulli3a24a632016-05-06 02:46:38 +0800287 if (atomic_read(&bat_priv->gw.mode) != BATADV_GW_MODE_CLIENT)
Antonio Quartulli2265c142011-04-27 00:22:00 +0200288 goto out;
289
Sven Eckelmann1409a832012-05-12 18:33:55 +0200290 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200291
Sven Eckelmann807736f2012-07-15 22:26:51 +0200292 if (!batadv_atomic_dec_not_zero(&bat_priv->gw.reselect) && curr_gw)
Marek Lindnercaa0bf62012-08-04 04:13:26 +0000293 goto out;
294
Sven Eckelmann1409a832012-05-12 18:33:55 +0200295 next_gw = batadv_gw_get_best_gw_node(bat_priv);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200296
297 if (curr_gw == next_gw)
298 goto out;
299
300 if (next_gw) {
Antonio Quartulli19595e02011-06-12 11:58:58 +0200301 sprintf(gw_addr, "%pM", next_gw->orig_node->orig);
302
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100303 router = batadv_orig_router_get(next_gw->orig_node,
304 BATADV_IF_DEFAULT);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200305 if (!router) {
Antonio Quartulli4e820e72013-11-04 20:59:41 +0100306 batadv_gw_reselect(bat_priv);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200307 goto out;
308 }
Simon Wunderlich89652332013-11-13 19:14:46 +0100309
310 router_ifinfo = batadv_neigh_ifinfo_get(router,
311 BATADV_IF_DEFAULT);
312 if (!router_ifinfo) {
313 batadv_gw_reselect(bat_priv);
314 goto out;
315 }
Antonio Quartulli2265c142011-04-27 00:22:00 +0200316 }
317
318 if ((curr_gw) && (!next_gw)) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200319 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200320 "Removing selected gateway - no gateway in range\n");
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200321 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_DEL,
322 NULL);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200323 } else if ((!curr_gw) && (next_gw)) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200324 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Marek Lindner414254e2013-04-23 21:39:58 +0800325 "Adding route to gateway %pM (bandwidth: %u.%u/%u.%u MBit, tq: %i)\n",
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200326 next_gw->orig_node->orig,
Marek Lindner414254e2013-04-23 21:39:58 +0800327 next_gw->bandwidth_down / 10,
328 next_gw->bandwidth_down % 10,
329 next_gw->bandwidth_up / 10,
Simon Wunderlich89652332013-11-13 19:14:46 +0100330 next_gw->bandwidth_up % 10,
331 router_ifinfo->bat_iv.tq_avg);
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200332 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_ADD,
333 gw_addr);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200334 } else {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200335 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Marek Lindner414254e2013-04-23 21:39:58 +0800336 "Changing route to gateway %pM (bandwidth: %u.%u/%u.%u MBit, tq: %i)\n",
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200337 next_gw->orig_node->orig,
Marek Lindner414254e2013-04-23 21:39:58 +0800338 next_gw->bandwidth_down / 10,
339 next_gw->bandwidth_down % 10,
340 next_gw->bandwidth_up / 10,
Simon Wunderlich89652332013-11-13 19:14:46 +0100341 next_gw->bandwidth_up % 10,
342 router_ifinfo->bat_iv.tq_avg);
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200343 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_CHANGE,
344 gw_addr);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200345 }
346
Sven Eckelmann1409a832012-05-12 18:33:55 +0200347 batadv_gw_select(bat_priv, next_gw);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200348
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100349out:
350 if (curr_gw)
Sven Eckelmann3a017432016-01-17 11:01:18 +0100351 batadv_gw_node_put(curr_gw);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200352 if (next_gw)
Sven Eckelmann3a017432016-01-17 11:01:18 +0100353 batadv_gw_node_put(next_gw);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200354 if (router)
Sven Eckelmann25bb2502016-01-17 11:01:11 +0100355 batadv_neigh_node_put(router);
Simon Wunderlich89652332013-11-13 19:14:46 +0100356 if (router_ifinfo)
Sven Eckelmann044fa3a2016-01-17 11:01:12 +0100357 batadv_neigh_ifinfo_put(router_ifinfo);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000358}
359
Sven Eckelmann56303d32012-06-05 22:31:31 +0200360void batadv_gw_check_election(struct batadv_priv *bat_priv,
361 struct batadv_orig_node *orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000362{
Simon Wunderlich89652332013-11-13 19:14:46 +0100363 struct batadv_neigh_ifinfo *router_orig_tq = NULL;
364 struct batadv_neigh_ifinfo *router_gw_tq = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200365 struct batadv_orig_node *curr_gw_orig;
Sven Eckelmann4f248cf2015-06-09 20:50:49 +0200366 struct batadv_neigh_node *router_gw = NULL;
367 struct batadv_neigh_node *router_orig = NULL;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200368 u8 gw_tq_avg, orig_tq_avg;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000369
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200370 curr_gw_orig = batadv_gw_get_selected_orig(bat_priv);
Linus Lüssing57f0c072011-03-14 22:43:33 +0000371 if (!curr_gw_orig)
Antonio Quartulli4e820e72013-11-04 20:59:41 +0100372 goto reselect;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000373
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100374 router_gw = batadv_orig_router_get(curr_gw_orig, BATADV_IF_DEFAULT);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000375 if (!router_gw)
Antonio Quartulli4e820e72013-11-04 20:59:41 +0100376 goto reselect;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000377
Simon Wunderlich89652332013-11-13 19:14:46 +0100378 router_gw_tq = batadv_neigh_ifinfo_get(router_gw,
379 BATADV_IF_DEFAULT);
380 if (!router_gw_tq)
381 goto reselect;
382
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000383 /* this node already is the gateway */
Linus Lüssing57f0c072011-03-14 22:43:33 +0000384 if (curr_gw_orig == orig_node)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000385 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000386
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100387 router_orig = batadv_orig_router_get(orig_node, BATADV_IF_DEFAULT);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000388 if (!router_orig)
389 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000390
Simon Wunderlich89652332013-11-13 19:14:46 +0100391 router_orig_tq = batadv_neigh_ifinfo_get(router_orig,
392 BATADV_IF_DEFAULT);
393 if (!router_orig_tq)
394 goto out;
395
396 gw_tq_avg = router_gw_tq->bat_iv.tq_avg;
397 orig_tq_avg = router_orig_tq->bat_iv.tq_avg;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000398
399 /* the TQ value has to be better */
400 if (orig_tq_avg < gw_tq_avg)
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000401 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000402
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200403 /* if the routing class is greater than 3 the value tells us how much
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000404 * greater the TQ value of the new gateway must be
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200405 */
Antonio Quartulli3a24a632016-05-06 02:46:38 +0800406 if ((atomic_read(&bat_priv->gw.sel_class) > 3) &&
407 (orig_tq_avg - gw_tq_avg < atomic_read(&bat_priv->gw.sel_class)))
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000408 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000409
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200410 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200411 "Restarting gateway selection: better gateway found (tq curr: %i, tq new: %i)\n",
412 gw_tq_avg, orig_tq_avg);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000413
Antonio Quartulli4e820e72013-11-04 20:59:41 +0100414reselect:
415 batadv_gw_reselect(bat_priv);
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000416out:
Linus Lüssing57f0c072011-03-14 22:43:33 +0000417 if (curr_gw_orig)
Sven Eckelmann5d967312016-01-17 11:01:09 +0100418 batadv_orig_node_put(curr_gw_orig);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000419 if (router_gw)
Sven Eckelmann25bb2502016-01-17 11:01:11 +0100420 batadv_neigh_node_put(router_gw);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000421 if (router_orig)
Sven Eckelmann25bb2502016-01-17 11:01:11 +0100422 batadv_neigh_node_put(router_orig);
Simon Wunderlich89652332013-11-13 19:14:46 +0100423 if (router_gw_tq)
Sven Eckelmann044fa3a2016-01-17 11:01:12 +0100424 batadv_neigh_ifinfo_put(router_gw_tq);
Simon Wunderlich89652332013-11-13 19:14:46 +0100425 if (router_orig_tq)
Sven Eckelmann044fa3a2016-01-17 11:01:12 +0100426 batadv_neigh_ifinfo_put(router_orig_tq);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000427}
428
Marek Lindner414254e2013-04-23 21:39:58 +0800429/**
430 * batadv_gw_node_add - add gateway node to list of available gateways
431 * @bat_priv: the bat priv with all the soft interface information
432 * @orig_node: originator announcing gateway capabilities
433 * @gateway: announced bandwidth information
434 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200435static void batadv_gw_node_add(struct batadv_priv *bat_priv,
436 struct batadv_orig_node *orig_node,
Marek Lindner414254e2013-04-23 21:39:58 +0800437 struct batadv_tvlv_gateway_data *gateway)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000438{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200439 struct batadv_gw_node *gw_node;
Marek Lindner414254e2013-04-23 21:39:58 +0800440
441 if (gateway->bandwidth_down == 0)
442 return;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000443
Antonio Quartulli377fe0f2014-05-02 01:35:13 +0200444 gw_node = kzalloc(sizeof(*gw_node), GFP_ATOMIC);
Sven Eckelmannc3ba37a72016-03-05 16:09:23 +0100445 if (!gw_node)
Antonio Quartulli377fe0f2014-05-02 01:35:13 +0200446 return;
Antonio Quartulli377fe0f2014-05-02 01:35:13 +0200447
Sven Eckelmannc3ba37a72016-03-05 16:09:23 +0100448 kref_get(&orig_node->refcount);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000449 INIT_HLIST_NODE(&gw_node->list);
450 gw_node->orig_node = orig_node;
Simon Wunderlich27a4d5e2015-06-24 14:50:19 +0200451 gw_node->bandwidth_down = ntohl(gateway->bandwidth_down);
452 gw_node->bandwidth_up = ntohl(gateway->bandwidth_up);
Sven Eckelmanne7aed322016-01-16 10:29:41 +0100453 kref_init(&gw_node->refcount);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000454
Sven Eckelmann807736f2012-07-15 22:26:51 +0200455 spin_lock_bh(&bat_priv->gw.list_lock);
456 hlist_add_head_rcu(&gw_node->list, &bat_priv->gw.list);
457 spin_unlock_bh(&bat_priv->gw.list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000458
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200459 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Marek Lindner414254e2013-04-23 21:39:58 +0800460 "Found new gateway %pM -> gw bandwidth: %u.%u/%u.%u MBit\n",
461 orig_node->orig,
462 ntohl(gateway->bandwidth_down) / 10,
463 ntohl(gateway->bandwidth_down) % 10,
464 ntohl(gateway->bandwidth_up) / 10,
465 ntohl(gateway->bandwidth_up) % 10);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000466}
467
Marek Lindner414254e2013-04-23 21:39:58 +0800468/**
469 * batadv_gw_node_get - retrieve gateway node from list of available gateways
470 * @bat_priv: the bat priv with all the soft interface information
471 * @orig_node: originator announcing gateway capabilities
472 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200473 * Return: gateway node if found or NULL otherwise.
Marek Lindner414254e2013-04-23 21:39:58 +0800474 */
475static struct batadv_gw_node *
476batadv_gw_node_get(struct batadv_priv *bat_priv,
477 struct batadv_orig_node *orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000478{
Marek Lindner414254e2013-04-23 21:39:58 +0800479 struct batadv_gw_node *gw_node_tmp, *gw_node = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000480
481 rcu_read_lock();
Marek Lindner414254e2013-04-23 21:39:58 +0800482 hlist_for_each_entry_rcu(gw_node_tmp, &bat_priv->gw.list, list) {
483 if (gw_node_tmp->orig_node != orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000484 continue;
485
Sven Eckelmanne7aed322016-01-16 10:29:41 +0100486 if (!kref_get_unless_zero(&gw_node_tmp->refcount))
Marek Lindner414254e2013-04-23 21:39:58 +0800487 continue;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000488
Marek Lindner414254e2013-04-23 21:39:58 +0800489 gw_node = gw_node_tmp;
490 break;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000491 }
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100492 rcu_read_unlock();
Antonio Quartulli71e4aa92011-04-25 22:44:32 +0200493
Marek Lindner414254e2013-04-23 21:39:58 +0800494 return gw_node;
495}
496
497/**
498 * batadv_gw_node_update - update list of available gateways with changed
499 * bandwidth information
500 * @bat_priv: the bat priv with all the soft interface information
501 * @orig_node: originator announcing gateway capabilities
502 * @gateway: announced bandwidth information
503 */
504void batadv_gw_node_update(struct batadv_priv *bat_priv,
505 struct batadv_orig_node *orig_node,
506 struct batadv_tvlv_gateway_data *gateway)
507{
508 struct batadv_gw_node *gw_node, *curr_gw = NULL;
509
510 gw_node = batadv_gw_node_get(bat_priv, orig_node);
511 if (!gw_node) {
512 batadv_gw_node_add(bat_priv, orig_node, gateway);
513 goto out;
514 }
515
516 if ((gw_node->bandwidth_down == ntohl(gateway->bandwidth_down)) &&
517 (gw_node->bandwidth_up == ntohl(gateway->bandwidth_up)))
518 goto out;
519
520 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
521 "Gateway bandwidth of originator %pM changed from %u.%u/%u.%u MBit to %u.%u/%u.%u MBit\n",
522 orig_node->orig,
523 gw_node->bandwidth_down / 10,
524 gw_node->bandwidth_down % 10,
525 gw_node->bandwidth_up / 10,
526 gw_node->bandwidth_up % 10,
527 ntohl(gateway->bandwidth_down) / 10,
528 ntohl(gateway->bandwidth_down) % 10,
529 ntohl(gateway->bandwidth_up) / 10,
530 ntohl(gateway->bandwidth_up) % 10);
531
532 gw_node->bandwidth_down = ntohl(gateway->bandwidth_down);
533 gw_node->bandwidth_up = ntohl(gateway->bandwidth_up);
534
Marek Lindner414254e2013-04-23 21:39:58 +0800535 if (ntohl(gateway->bandwidth_down) == 0) {
Marek Lindner414254e2013-04-23 21:39:58 +0800536 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
537 "Gateway %pM removed from gateway list\n",
538 orig_node->orig);
539
540 /* Note: We don't need a NULL check here, since curr_gw never
541 * gets dereferenced.
542 */
Simon Wunderlichbd3524c2015-08-03 19:13:58 +0200543 spin_lock_bh(&bat_priv->gw.list_lock);
Sven Eckelmannc18bdd02016-01-31 13:27:59 +0100544 if (!hlist_unhashed(&gw_node->list)) {
545 hlist_del_init_rcu(&gw_node->list);
Sven Eckelmann3a017432016-01-17 11:01:18 +0100546 batadv_gw_node_put(gw_node);
Sven Eckelmannc18bdd02016-01-31 13:27:59 +0100547 }
Simon Wunderlichbd3524c2015-08-03 19:13:58 +0200548 spin_unlock_bh(&bat_priv->gw.list_lock);
549
Marek Lindner414254e2013-04-23 21:39:58 +0800550 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
551 if (gw_node == curr_gw)
Antonio Quartulli4e820e72013-11-04 20:59:41 +0100552 batadv_gw_reselect(bat_priv);
Simon Wunderlichbd3524c2015-08-03 19:13:58 +0200553
554 if (curr_gw)
Sven Eckelmann3a017432016-01-17 11:01:18 +0100555 batadv_gw_node_put(curr_gw);
Marek Lindner414254e2013-04-23 21:39:58 +0800556 }
557
558out:
Marek Lindner414254e2013-04-23 21:39:58 +0800559 if (gw_node)
Sven Eckelmann3a017432016-01-17 11:01:18 +0100560 batadv_gw_node_put(gw_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000561}
562
Sven Eckelmann56303d32012-06-05 22:31:31 +0200563void batadv_gw_node_delete(struct batadv_priv *bat_priv,
564 struct batadv_orig_node *orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000565{
Marek Lindner414254e2013-04-23 21:39:58 +0800566 struct batadv_tvlv_gateway_data gateway;
567
568 gateway.bandwidth_down = 0;
569 gateway.bandwidth_up = 0;
570
571 batadv_gw_node_update(bat_priv, orig_node, &gateway);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000572}
573
Simon Wunderlichbd3524c2015-08-03 19:13:58 +0200574void batadv_gw_node_free(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000575{
Simon Wunderlichbd3524c2015-08-03 19:13:58 +0200576 struct batadv_gw_node *gw_node;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800577 struct hlist_node *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000578
Sven Eckelmann807736f2012-07-15 22:26:51 +0200579 spin_lock_bh(&bat_priv->gw.list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800580 hlist_for_each_entry_safe(gw_node, node_tmp,
Sven Eckelmann807736f2012-07-15 22:26:51 +0200581 &bat_priv->gw.list, list) {
Simon Wunderlichbd3524c2015-08-03 19:13:58 +0200582 hlist_del_init_rcu(&gw_node->list);
Sven Eckelmann3a017432016-01-17 11:01:18 +0100583 batadv_gw_node_put(gw_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000584 }
Sven Eckelmann807736f2012-07-15 22:26:51 +0200585 spin_unlock_bh(&bat_priv->gw.list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000586}
587
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200588/* fails if orig_node has no router */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200589static int batadv_write_buffer_text(struct batadv_priv *bat_priv,
590 struct seq_file *seq,
591 const struct batadv_gw_node *gw_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000592{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200593 struct batadv_gw_node *curr_gw;
594 struct batadv_neigh_node *router;
Simon Wunderlich89652332013-11-13 19:14:46 +0100595 struct batadv_neigh_ifinfo *router_ifinfo = NULL;
Marek Lindner414254e2013-04-23 21:39:58 +0800596 int ret = -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000597
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100598 router = batadv_orig_router_get(gw_node->orig_node, BATADV_IF_DEFAULT);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000599 if (!router)
600 goto out;
601
Simon Wunderlich89652332013-11-13 19:14:46 +0100602 router_ifinfo = batadv_neigh_ifinfo_get(router, BATADV_IF_DEFAULT);
603 if (!router_ifinfo)
604 goto out;
605
Sven Eckelmann1409a832012-05-12 18:33:55 +0200606 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000607
Joe Perches6d911472015-02-16 17:31:39 -0800608 seq_printf(seq, "%s %pM (%3i) %pM [%10s]: %u.%u/%u.%u MBit\n",
609 (curr_gw == gw_node ? "=>" : " "),
610 gw_node->orig_node->orig,
611 router_ifinfo->bat_iv.tq_avg, router->addr,
612 router->if_incoming->net_dev->name,
613 gw_node->bandwidth_down / 10,
614 gw_node->bandwidth_down % 10,
615 gw_node->bandwidth_up / 10,
616 gw_node->bandwidth_up % 10);
Joe Perches92b83912015-02-22 13:47:56 -0800617 ret = seq_has_overflowed(seq) ? -1 : 0;
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000618
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100619 if (curr_gw)
Sven Eckelmann3a017432016-01-17 11:01:18 +0100620 batadv_gw_node_put(curr_gw);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000621out:
Simon Wunderlich89652332013-11-13 19:14:46 +0100622 if (router_ifinfo)
Sven Eckelmann044fa3a2016-01-17 11:01:12 +0100623 batadv_neigh_ifinfo_put(router_ifinfo);
Simon Wunderlich89652332013-11-13 19:14:46 +0100624 if (router)
Sven Eckelmann25bb2502016-01-17 11:01:11 +0100625 batadv_neigh_node_put(router);
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000626 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000627}
628
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200629int batadv_gw_client_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000630{
631 struct net_device *net_dev = (struct net_device *)seq->private;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200632 struct batadv_priv *bat_priv = netdev_priv(net_dev);
633 struct batadv_hard_iface *primary_if;
634 struct batadv_gw_node *gw_node;
Marek Lindner30da63a2012-08-03 17:15:46 +0200635 int gw_count = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000636
Marek Lindner30da63a2012-08-03 17:15:46 +0200637 primary_if = batadv_seq_print_text_primary_if_get(seq);
638 if (!primary_if)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200639 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000640
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100641 seq_printf(seq,
Antonio Quartulli92d2b1a2016-05-25 23:27:33 +0800642 " Gateway (#/255) Nexthop [outgoingIF]: advertised uplink bandwidth ... [B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s)]\n",
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200643 BATADV_SOURCE_VERSION, primary_if->net_dev->name,
Marek Lindner32ae9b22011-04-20 15:40:58 +0200644 primary_if->net_dev->dev_addr, net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000645
646 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800647 hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000648 /* fails if orig_node has no router */
Sven Eckelmann1409a832012-05-12 18:33:55 +0200649 if (batadv_write_buffer_text(bat_priv, seq, gw_node) < 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000650 continue;
651
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000652 gw_count++;
653 }
654 rcu_read_unlock();
655
656 if (gw_count == 0)
Antonio Quartulli0c814652013-03-21 09:23:29 +0100657 seq_puts(seq, "No gateways in range ...\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000658
Marek Lindner32ae9b22011-04-20 15:40:58 +0200659out:
660 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100661 batadv_hardif_put(primary_if);
Marek Lindner30da63a2012-08-03 17:15:46 +0200662 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000663}
664
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100665/**
666 * batadv_gw_dhcp_recipient_get - check if a packet is a DHCP message
667 * @skb: the packet to check
668 * @header_len: a pointer to the batman-adv header size
669 * @chaddr: buffer where the client address will be stored. Valid
670 * only if the function returns BATADV_DHCP_TO_CLIENT
671 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200672 * This function may re-allocate the data buffer of the skb passed as argument.
673 *
674 * Return:
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100675 * - BATADV_DHCP_NO if the packet is not a dhcp message or if there was an error
676 * while parsing it
677 * - BATADV_DHCP_TO_SERVER if this is a message going to the DHCP server
678 * - BATADV_DHCP_TO_CLIENT if this is a message going to a DHCP client
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100679 */
680enum batadv_dhcp_recipient
681batadv_gw_dhcp_recipient_get(struct sk_buff *skb, unsigned int *header_len,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200682 u8 *chaddr)
Antonio Quartulli43676ab52011-04-26 21:31:45 +0200683{
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100684 enum batadv_dhcp_recipient ret = BATADV_DHCP_NO;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000685 struct ethhdr *ethhdr;
686 struct iphdr *iphdr;
687 struct ipv6hdr *ipv6hdr;
688 struct udphdr *udphdr;
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200689 struct vlan_ethhdr *vhdr;
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100690 int chaddr_offset;
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200691 __be16 proto;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200692 u8 *p;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000693
694 /* check for ethernet header */
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200695 if (!pskb_may_pull(skb, *header_len + ETH_HLEN))
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100696 return BATADV_DHCP_NO;
697
Linus Lüssing927c2ed2014-01-19 22:22:45 +0100698 ethhdr = eth_hdr(skb);
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200699 proto = ethhdr->h_proto;
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200700 *header_len += ETH_HLEN;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000701
702 /* check for initial vlan header */
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200703 if (proto == htons(ETH_P_8021Q)) {
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200704 if (!pskb_may_pull(skb, *header_len + VLAN_HLEN))
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100705 return BATADV_DHCP_NO;
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200706
Linus Lüssing927c2ed2014-01-19 22:22:45 +0100707 vhdr = vlan_eth_hdr(skb);
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200708 proto = vhdr->h_vlan_encapsulated_proto;
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200709 *header_len += VLAN_HLEN;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000710 }
711
712 /* check for ip header */
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200713 switch (proto) {
714 case htons(ETH_P_IP):
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200715 if (!pskb_may_pull(skb, *header_len + sizeof(*iphdr)))
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100716 return BATADV_DHCP_NO;
717
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200718 iphdr = (struct iphdr *)(skb->data + *header_len);
719 *header_len += iphdr->ihl * 4;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000720
721 /* check for udp header */
722 if (iphdr->protocol != IPPROTO_UDP)
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100723 return BATADV_DHCP_NO;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000724
725 break;
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200726 case htons(ETH_P_IPV6):
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200727 if (!pskb_may_pull(skb, *header_len + sizeof(*ipv6hdr)))
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100728 return BATADV_DHCP_NO;
729
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200730 ipv6hdr = (struct ipv6hdr *)(skb->data + *header_len);
731 *header_len += sizeof(*ipv6hdr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000732
733 /* check for udp header */
734 if (ipv6hdr->nexthdr != IPPROTO_UDP)
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100735 return BATADV_DHCP_NO;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000736
737 break;
738 default:
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100739 return BATADV_DHCP_NO;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000740 }
741
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200742 if (!pskb_may_pull(skb, *header_len + sizeof(*udphdr)))
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100743 return BATADV_DHCP_NO;
Linus Lüssing9d2c9482013-08-06 20:21:15 +0200744
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200745 udphdr = (struct udphdr *)(skb->data + *header_len);
746 *header_len += sizeof(*udphdr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000747
748 /* check for bootp port */
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100749 switch (proto) {
750 case htons(ETH_P_IP):
751 if (udphdr->dest == htons(67))
752 ret = BATADV_DHCP_TO_SERVER;
753 else if (udphdr->source == htons(67))
754 ret = BATADV_DHCP_TO_CLIENT;
755 break;
756 case htons(ETH_P_IPV6):
757 if (udphdr->dest == htons(547))
758 ret = BATADV_DHCP_TO_SERVER;
759 else if (udphdr->source == htons(547))
760 ret = BATADV_DHCP_TO_CLIENT;
761 break;
762 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000763
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100764 chaddr_offset = *header_len + BATADV_DHCP_CHADDR_OFFSET;
765 /* store the client address if the message is going to a client */
766 if (ret == BATADV_DHCP_TO_CLIENT &&
767 pskb_may_pull(skb, chaddr_offset + ETH_ALEN)) {
768 /* check if the DHCP packet carries an Ethernet DHCP */
769 p = skb->data + *header_len + BATADV_DHCP_HTYPE_OFFSET;
770 if (*p != BATADV_DHCP_HTYPE_ETHERNET)
771 return BATADV_DHCP_NO;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000772
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100773 /* check if the DHCP packet carries a valid Ethernet address */
774 p = skb->data + *header_len + BATADV_DHCP_HLEN_OFFSET;
775 if (*p != ETH_ALEN)
776 return BATADV_DHCP_NO;
777
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100778 ether_addr_copy(chaddr, skb->data + chaddr_offset);
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100779 }
780
781 return ret;
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200782}
Antonio Quartulliaa143d22014-09-01 14:37:27 +0200783
Antonio Quartullibbb877e2013-06-04 12:11:42 +0200784/**
785 * batadv_gw_out_of_range - check if the dhcp request destination is the best gw
786 * @bat_priv: the bat priv with all the soft interface information
787 * @skb: the outgoing packet
788 *
789 * Check if the skb is a DHCP request and if it is sent to the current best GW
790 * server. Due to topology changes it may be the case that the GW server
791 * previously selected is not the best one anymore.
792 *
Antonio Quartullibbb877e2013-06-04 12:11:42 +0200793 * This call might reallocate skb data.
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100794 * Must be invoked only when the DHCP packet is going TO a DHCP SERVER.
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200795 *
796 * Return: true if the packet destination is unicast and it is not the best gw,
797 * false otherwise.
Antonio Quartullibbb877e2013-06-04 12:11:42 +0200798 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200799bool batadv_gw_out_of_range(struct batadv_priv *bat_priv,
Linus Lüssing9d2c9482013-08-06 20:21:15 +0200800 struct sk_buff *skb)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200801{
Sven Eckelmann4f248cf2015-06-09 20:50:49 +0200802 struct batadv_neigh_node *neigh_curr = NULL;
803 struct batadv_neigh_node *neigh_old = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200804 struct batadv_orig_node *orig_dst_node = NULL;
Sven Eckelmann4f248cf2015-06-09 20:50:49 +0200805 struct batadv_gw_node *gw_node = NULL;
806 struct batadv_gw_node *curr_gw = NULL;
Simon Wunderlich89652332013-11-13 19:14:46 +0100807 struct batadv_neigh_ifinfo *curr_ifinfo, *old_ifinfo;
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100808 struct ethhdr *ethhdr = (struct ethhdr *)skb->data;
809 bool out_of_range = false;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200810 u8 curr_tq_avg;
Antonio Quartullibbb877e2013-06-04 12:11:42 +0200811 unsigned short vid;
812
813 vid = batadv_get_vid(skb, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000814
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200815 orig_dst_node = batadv_transtable_search(bat_priv, ethhdr->h_source,
Antonio Quartullibbb877e2013-06-04 12:11:42 +0200816 ethhdr->h_dest, vid);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200817 if (!orig_dst_node)
818 goto out;
819
Marek Lindner414254e2013-04-23 21:39:58 +0800820 gw_node = batadv_gw_node_get(bat_priv, orig_dst_node);
Antonio Quartulli0d164492014-12-20 13:48:57 +0100821 if (!gw_node)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200822 goto out;
823
Antonio Quartulli3a24a632016-05-06 02:46:38 +0800824 switch (atomic_read(&bat_priv->gw.mode)) {
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200825 case BATADV_GW_MODE_SERVER:
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200826 /* If we are a GW then we are our best GW. We can artificially
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200827 * set the tq towards ourself as the maximum value
828 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200829 curr_tq_avg = BATADV_TQ_MAX_VALUE;
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200830 break;
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200831 case BATADV_GW_MODE_CLIENT:
Sven Eckelmann1409a832012-05-12 18:33:55 +0200832 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200833 if (!curr_gw)
834 goto out;
835
836 /* packet is going to our gateway */
837 if (curr_gw->orig_node == orig_dst_node)
838 goto out;
839
840 /* If the dhcp packet has been sent to a different gw,
841 * we have to evaluate whether the old gw is still
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200842 * reliable enough
843 */
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200844 neigh_curr = batadv_find_router(bat_priv, curr_gw->orig_node,
845 NULL);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200846 if (!neigh_curr)
847 goto out;
848
Simon Wunderlich89652332013-11-13 19:14:46 +0100849 curr_ifinfo = batadv_neigh_ifinfo_get(neigh_curr,
850 BATADV_IF_DEFAULT);
851 if (!curr_ifinfo)
852 goto out;
853
854 curr_tq_avg = curr_ifinfo->bat_iv.tq_avg;
Sven Eckelmann044fa3a2016-01-17 11:01:12 +0100855 batadv_neigh_ifinfo_put(curr_ifinfo);
Simon Wunderlich89652332013-11-13 19:14:46 +0100856
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200857 break;
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200858 case BATADV_GW_MODE_OFF:
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200859 default:
860 goto out;
Antonio Quartulli43676ab52011-04-26 21:31:45 +0200861 }
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200862
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200863 neigh_old = batadv_find_router(bat_priv, orig_dst_node, NULL);
Dan Carpenter2ef04f42011-11-29 09:09:09 +0300864 if (!neigh_old)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200865 goto out;
866
Simon Wunderlich89652332013-11-13 19:14:46 +0100867 old_ifinfo = batadv_neigh_ifinfo_get(neigh_old, BATADV_IF_DEFAULT);
868 if (!old_ifinfo)
869 goto out;
870
871 if ((curr_tq_avg - old_ifinfo->bat_iv.tq_avg) > BATADV_GW_THRESHOLD)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200872 out_of_range = true;
Sven Eckelmann044fa3a2016-01-17 11:01:12 +0100873 batadv_neigh_ifinfo_put(old_ifinfo);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200874
875out:
876 if (orig_dst_node)
Sven Eckelmann5d967312016-01-17 11:01:09 +0100877 batadv_orig_node_put(orig_dst_node);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200878 if (curr_gw)
Sven Eckelmann3a017432016-01-17 11:01:18 +0100879 batadv_gw_node_put(curr_gw);
Marek Lindner414254e2013-04-23 21:39:58 +0800880 if (gw_node)
Sven Eckelmann3a017432016-01-17 11:01:18 +0100881 batadv_gw_node_put(gw_node);
Antonio Quartulli43676ab52011-04-26 21:31:45 +0200882 if (neigh_old)
Sven Eckelmann25bb2502016-01-17 11:01:11 +0100883 batadv_neigh_node_put(neigh_old);
Antonio Quartulli43676ab52011-04-26 21:31:45 +0200884 if (neigh_curr)
Sven Eckelmann25bb2502016-01-17 11:01:11 +0100885 batadv_neigh_node_put(neigh_curr);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200886 return out_of_range;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000887}