blob: 37972dfda400ebaeafcf787a43971f469abb21aa [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"
Linus Lüssing57f0c072011-03-14 22:43:33 +000045#include "originator.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020046#include "packet.h"
Antonio Quartulli43676ab2011-04-26 21:31:45 +020047#include "routing.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020048#include "sysfs.h"
49#include "translation-table.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000050
Antonio Quartulli6c413b12013-11-05 19:31:08 +010051/* These are the offsets of the "hw type" and "hw address length" in the dhcp
52 * packet starting at the beginning of the dhcp header
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020053 */
Antonio Quartulli6c413b12013-11-05 19:31:08 +010054#define BATADV_DHCP_HTYPE_OFFSET 1
55#define BATADV_DHCP_HLEN_OFFSET 2
56/* Value of htype representing Ethernet */
57#define BATADV_DHCP_HTYPE_ETHERNET 0x01
58/* This is the offset of the "chaddr" field in the dhcp packet starting at the
59 * beginning of the dhcp header
60 */
61#define BATADV_DHCP_CHADDR_OFFSET 28
Antonio Quartulli43676ab2011-04-26 21:31:45 +020062
Sven Eckelmanne7aed322016-01-16 10:29:41 +010063/**
64 * batadv_gw_node_release - release gw_node from lists and queue for free after
65 * rcu grace period
66 * @ref: kref pointer of the gw_node
67 */
68static void batadv_gw_node_release(struct kref *ref)
69{
70 struct batadv_gw_node *gw_node;
71
72 gw_node = container_of(ref, struct batadv_gw_node, refcount);
73
Sven Eckelmann5d967312016-01-17 11:01:09 +010074 batadv_orig_node_put(gw_node->orig_node);
Sven Eckelmanne7aed322016-01-16 10:29:41 +010075 kfree_rcu(gw_node, rcu);
76}
77
78/**
79 * batadv_gw_node_free_ref - decrement the gw_node refcounter and possibly
80 * release it
81 * @gw_node: gateway node to free
82 */
Sven Eckelmann56303d32012-06-05 22:31:31 +020083static void batadv_gw_node_free_ref(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 Eckelmann1409a832012-05-12 18:33:55 +0200128 batadv_gw_node_free_ref(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 Eckelmanne7aed322016-01-16 10:29:41 +0100139 if (new_gw_node && !kref_get_unless_zero(&new_gw_node->refcount))
Marek Lindner25b6d3c2011-02-10 14:33:49 +0000140 new_gw_node = NULL;
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 Eckelmann1409a832012-05-12 18:33:55 +0200146 batadv_gw_node_free_ref(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
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000196 switch (atomic_read(&bat_priv->gw_sel_class)) {
197 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 Eckelmann1409a832012-05-12 18:33:55 +0200207 batadv_gw_node_free_ref(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 Eckelmann1409a832012-05-12 18:33:55 +0200222 batadv_gw_node_free_ref(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 Eckelmann1409a832012-05-12 18:33:55 +0200235 batadv_gw_node_free_ref(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
259 if (atomic_read(&bat_priv->gw_mode) != BATADV_GW_MODE_CLIENT)
260 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
276 batadv_gw_node_free_ref(curr_gw);
277}
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
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200287 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 Eckelmann1409a832012-05-12 18:33:55 +0200351 batadv_gw_node_free_ref(curr_gw);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200352 if (next_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200353 batadv_gw_node_free_ref(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 */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000406 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
Sven Eckelmann7c124392016-01-16 10:29:56 +0100444 if (!kref_get_unless_zero(&orig_node->refcount))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000445 return;
446
Antonio Quartulli377fe0f2014-05-02 01:35:13 +0200447 gw_node = kzalloc(sizeof(*gw_node), GFP_ATOMIC);
448 if (!gw_node) {
Sven Eckelmann5d967312016-01-17 11:01:09 +0100449 batadv_orig_node_put(orig_node);
Antonio Quartulli377fe0f2014-05-02 01:35:13 +0200450 return;
451 }
452
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000453 INIT_HLIST_NODE(&gw_node->list);
454 gw_node->orig_node = orig_node;
Simon Wunderlich27a4d5e2015-06-24 14:50:19 +0200455 gw_node->bandwidth_down = ntohl(gateway->bandwidth_down);
456 gw_node->bandwidth_up = ntohl(gateway->bandwidth_up);
Sven Eckelmanne7aed322016-01-16 10:29:41 +0100457 kref_init(&gw_node->refcount);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000458
Sven Eckelmann807736f2012-07-15 22:26:51 +0200459 spin_lock_bh(&bat_priv->gw.list_lock);
460 hlist_add_head_rcu(&gw_node->list, &bat_priv->gw.list);
461 spin_unlock_bh(&bat_priv->gw.list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000462
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200463 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Marek Lindner414254e2013-04-23 21:39:58 +0800464 "Found new gateway %pM -> gw bandwidth: %u.%u/%u.%u MBit\n",
465 orig_node->orig,
466 ntohl(gateway->bandwidth_down) / 10,
467 ntohl(gateway->bandwidth_down) % 10,
468 ntohl(gateway->bandwidth_up) / 10,
469 ntohl(gateway->bandwidth_up) % 10);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000470}
471
Marek Lindner414254e2013-04-23 21:39:58 +0800472/**
473 * batadv_gw_node_get - retrieve gateway node from list of available gateways
474 * @bat_priv: the bat priv with all the soft interface information
475 * @orig_node: originator announcing gateway capabilities
476 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200477 * Return: gateway node if found or NULL otherwise.
Marek Lindner414254e2013-04-23 21:39:58 +0800478 */
479static struct batadv_gw_node *
480batadv_gw_node_get(struct batadv_priv *bat_priv,
481 struct batadv_orig_node *orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000482{
Marek Lindner414254e2013-04-23 21:39:58 +0800483 struct batadv_gw_node *gw_node_tmp, *gw_node = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000484
485 rcu_read_lock();
Marek Lindner414254e2013-04-23 21:39:58 +0800486 hlist_for_each_entry_rcu(gw_node_tmp, &bat_priv->gw.list, list) {
487 if (gw_node_tmp->orig_node != orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000488 continue;
489
Sven Eckelmanne7aed322016-01-16 10:29:41 +0100490 if (!kref_get_unless_zero(&gw_node_tmp->refcount))
Marek Lindner414254e2013-04-23 21:39:58 +0800491 continue;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000492
Marek Lindner414254e2013-04-23 21:39:58 +0800493 gw_node = gw_node_tmp;
494 break;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000495 }
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100496 rcu_read_unlock();
Antonio Quartulli71e4aa92011-04-25 22:44:32 +0200497
Marek Lindner414254e2013-04-23 21:39:58 +0800498 return gw_node;
499}
500
501/**
502 * batadv_gw_node_update - update list of available gateways with changed
503 * bandwidth information
504 * @bat_priv: the bat priv with all the soft interface information
505 * @orig_node: originator announcing gateway capabilities
506 * @gateway: announced bandwidth information
507 */
508void batadv_gw_node_update(struct batadv_priv *bat_priv,
509 struct batadv_orig_node *orig_node,
510 struct batadv_tvlv_gateway_data *gateway)
511{
512 struct batadv_gw_node *gw_node, *curr_gw = NULL;
513
514 gw_node = batadv_gw_node_get(bat_priv, orig_node);
515 if (!gw_node) {
516 batadv_gw_node_add(bat_priv, orig_node, gateway);
517 goto out;
518 }
519
520 if ((gw_node->bandwidth_down == ntohl(gateway->bandwidth_down)) &&
521 (gw_node->bandwidth_up == ntohl(gateway->bandwidth_up)))
522 goto out;
523
524 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
525 "Gateway bandwidth of originator %pM changed from %u.%u/%u.%u MBit to %u.%u/%u.%u MBit\n",
526 orig_node->orig,
527 gw_node->bandwidth_down / 10,
528 gw_node->bandwidth_down % 10,
529 gw_node->bandwidth_up / 10,
530 gw_node->bandwidth_up % 10,
531 ntohl(gateway->bandwidth_down) / 10,
532 ntohl(gateway->bandwidth_down) % 10,
533 ntohl(gateway->bandwidth_up) / 10,
534 ntohl(gateway->bandwidth_up) % 10);
535
536 gw_node->bandwidth_down = ntohl(gateway->bandwidth_down);
537 gw_node->bandwidth_up = ntohl(gateway->bandwidth_up);
538
Marek Lindner414254e2013-04-23 21:39:58 +0800539 if (ntohl(gateway->bandwidth_down) == 0) {
Marek Lindner414254e2013-04-23 21:39:58 +0800540 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
541 "Gateway %pM removed from gateway list\n",
542 orig_node->orig);
543
544 /* Note: We don't need a NULL check here, since curr_gw never
545 * gets dereferenced.
546 */
Simon Wunderlichbd3524c2015-08-03 19:13:58 +0200547 spin_lock_bh(&bat_priv->gw.list_lock);
Sven Eckelmannc18bdd02016-01-31 13:27:59 +0100548 if (!hlist_unhashed(&gw_node->list)) {
549 hlist_del_init_rcu(&gw_node->list);
550 batadv_gw_node_free_ref(gw_node);
551 }
Simon Wunderlichbd3524c2015-08-03 19:13:58 +0200552 spin_unlock_bh(&bat_priv->gw.list_lock);
553
Marek Lindner414254e2013-04-23 21:39:58 +0800554 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
555 if (gw_node == curr_gw)
Antonio Quartulli4e820e72013-11-04 20:59:41 +0100556 batadv_gw_reselect(bat_priv);
Simon Wunderlichbd3524c2015-08-03 19:13:58 +0200557
558 if (curr_gw)
559 batadv_gw_node_free_ref(curr_gw);
Marek Lindner414254e2013-04-23 21:39:58 +0800560 }
561
562out:
Marek Lindner414254e2013-04-23 21:39:58 +0800563 if (gw_node)
564 batadv_gw_node_free_ref(gw_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000565}
566
Sven Eckelmann56303d32012-06-05 22:31:31 +0200567void batadv_gw_node_delete(struct batadv_priv *bat_priv,
568 struct batadv_orig_node *orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000569{
Marek Lindner414254e2013-04-23 21:39:58 +0800570 struct batadv_tvlv_gateway_data gateway;
571
572 gateway.bandwidth_down = 0;
573 gateway.bandwidth_up = 0;
574
575 batadv_gw_node_update(bat_priv, orig_node, &gateway);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000576}
577
Simon Wunderlichbd3524c2015-08-03 19:13:58 +0200578void batadv_gw_node_free(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000579{
Simon Wunderlichbd3524c2015-08-03 19:13:58 +0200580 struct batadv_gw_node *gw_node;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800581 struct hlist_node *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000582
Sven Eckelmann807736f2012-07-15 22:26:51 +0200583 spin_lock_bh(&bat_priv->gw.list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800584 hlist_for_each_entry_safe(gw_node, node_tmp,
Sven Eckelmann807736f2012-07-15 22:26:51 +0200585 &bat_priv->gw.list, list) {
Simon Wunderlichbd3524c2015-08-03 19:13:58 +0200586 hlist_del_init_rcu(&gw_node->list);
Sven Eckelmann1409a832012-05-12 18:33:55 +0200587 batadv_gw_node_free_ref(gw_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000588 }
Sven Eckelmann807736f2012-07-15 22:26:51 +0200589 spin_unlock_bh(&bat_priv->gw.list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000590}
591
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200592/* fails if orig_node has no router */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200593static int batadv_write_buffer_text(struct batadv_priv *bat_priv,
594 struct seq_file *seq,
595 const struct batadv_gw_node *gw_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000596{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200597 struct batadv_gw_node *curr_gw;
598 struct batadv_neigh_node *router;
Simon Wunderlich89652332013-11-13 19:14:46 +0100599 struct batadv_neigh_ifinfo *router_ifinfo = NULL;
Marek Lindner414254e2013-04-23 21:39:58 +0800600 int ret = -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000601
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100602 router = batadv_orig_router_get(gw_node->orig_node, BATADV_IF_DEFAULT);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000603 if (!router)
604 goto out;
605
Simon Wunderlich89652332013-11-13 19:14:46 +0100606 router_ifinfo = batadv_neigh_ifinfo_get(router, BATADV_IF_DEFAULT);
607 if (!router_ifinfo)
608 goto out;
609
Sven Eckelmann1409a832012-05-12 18:33:55 +0200610 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000611
Joe Perches6d911472015-02-16 17:31:39 -0800612 seq_printf(seq, "%s %pM (%3i) %pM [%10s]: %u.%u/%u.%u MBit\n",
613 (curr_gw == gw_node ? "=>" : " "),
614 gw_node->orig_node->orig,
615 router_ifinfo->bat_iv.tq_avg, router->addr,
616 router->if_incoming->net_dev->name,
617 gw_node->bandwidth_down / 10,
618 gw_node->bandwidth_down % 10,
619 gw_node->bandwidth_up / 10,
620 gw_node->bandwidth_up % 10);
Joe Perches92b83912015-02-22 13:47:56 -0800621 ret = seq_has_overflowed(seq) ? -1 : 0;
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000622
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100623 if (curr_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200624 batadv_gw_node_free_ref(curr_gw);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000625out:
Simon Wunderlich89652332013-11-13 19:14:46 +0100626 if (router_ifinfo)
Sven Eckelmann044fa3a2016-01-17 11:01:12 +0100627 batadv_neigh_ifinfo_put(router_ifinfo);
Simon Wunderlich89652332013-11-13 19:14:46 +0100628 if (router)
Sven Eckelmann25bb2502016-01-17 11:01:11 +0100629 batadv_neigh_node_put(router);
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000630 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000631}
632
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200633int batadv_gw_client_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000634{
635 struct net_device *net_dev = (struct net_device *)seq->private;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200636 struct batadv_priv *bat_priv = netdev_priv(net_dev);
637 struct batadv_hard_iface *primary_if;
638 struct batadv_gw_node *gw_node;
Marek Lindner30da63a2012-08-03 17:15:46 +0200639 int gw_count = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000640
Marek Lindner30da63a2012-08-03 17:15:46 +0200641 primary_if = batadv_seq_print_text_primary_if_get(seq);
642 if (!primary_if)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200643 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000644
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100645 seq_printf(seq,
Marek Lindner414254e2013-04-23 21:39:58 +0800646 " %-12s (%s/%i) %17s [%10s]: advertised uplink bandwidth ... [B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s)]\n",
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200647 "Gateway", "#", BATADV_TQ_MAX_VALUE, "Nexthop", "outgoingIF",
648 BATADV_SOURCE_VERSION, primary_if->net_dev->name,
Marek Lindner32ae9b22011-04-20 15:40:58 +0200649 primary_if->net_dev->dev_addr, net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000650
651 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800652 hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000653 /* fails if orig_node has no router */
Sven Eckelmann1409a832012-05-12 18:33:55 +0200654 if (batadv_write_buffer_text(bat_priv, seq, gw_node) < 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000655 continue;
656
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000657 gw_count++;
658 }
659 rcu_read_unlock();
660
661 if (gw_count == 0)
Antonio Quartulli0c814652013-03-21 09:23:29 +0100662 seq_puts(seq, "No gateways in range ...\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000663
Marek Lindner32ae9b22011-04-20 15:40:58 +0200664out:
665 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100666 batadv_hardif_put(primary_if);
Marek Lindner30da63a2012-08-03 17:15:46 +0200667 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000668}
669
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100670/**
671 * batadv_gw_dhcp_recipient_get - check if a packet is a DHCP message
672 * @skb: the packet to check
673 * @header_len: a pointer to the batman-adv header size
674 * @chaddr: buffer where the client address will be stored. Valid
675 * only if the function returns BATADV_DHCP_TO_CLIENT
676 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200677 * This function may re-allocate the data buffer of the skb passed as argument.
678 *
679 * Return:
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100680 * - BATADV_DHCP_NO if the packet is not a dhcp message or if there was an error
681 * while parsing it
682 * - BATADV_DHCP_TO_SERVER if this is a message going to the DHCP server
683 * - BATADV_DHCP_TO_CLIENT if this is a message going to a DHCP client
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100684 */
685enum batadv_dhcp_recipient
686batadv_gw_dhcp_recipient_get(struct sk_buff *skb, unsigned int *header_len,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200687 u8 *chaddr)
Antonio Quartulli43676ab2011-04-26 21:31:45 +0200688{
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100689 enum batadv_dhcp_recipient ret = BATADV_DHCP_NO;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000690 struct ethhdr *ethhdr;
691 struct iphdr *iphdr;
692 struct ipv6hdr *ipv6hdr;
693 struct udphdr *udphdr;
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200694 struct vlan_ethhdr *vhdr;
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100695 int chaddr_offset;
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200696 __be16 proto;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200697 u8 *p;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000698
699 /* check for ethernet header */
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200700 if (!pskb_may_pull(skb, *header_len + ETH_HLEN))
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100701 return BATADV_DHCP_NO;
702
Linus Lüssing927c2ed2014-01-19 22:22:45 +0100703 ethhdr = eth_hdr(skb);
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200704 proto = ethhdr->h_proto;
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200705 *header_len += ETH_HLEN;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000706
707 /* check for initial vlan header */
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200708 if (proto == htons(ETH_P_8021Q)) {
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200709 if (!pskb_may_pull(skb, *header_len + VLAN_HLEN))
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100710 return BATADV_DHCP_NO;
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200711
Linus Lüssing927c2ed2014-01-19 22:22:45 +0100712 vhdr = vlan_eth_hdr(skb);
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200713 proto = vhdr->h_vlan_encapsulated_proto;
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200714 *header_len += VLAN_HLEN;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000715 }
716
717 /* check for ip header */
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200718 switch (proto) {
719 case htons(ETH_P_IP):
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200720 if (!pskb_may_pull(skb, *header_len + sizeof(*iphdr)))
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100721 return BATADV_DHCP_NO;
722
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200723 iphdr = (struct iphdr *)(skb->data + *header_len);
724 *header_len += iphdr->ihl * 4;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000725
726 /* check for udp header */
727 if (iphdr->protocol != IPPROTO_UDP)
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100728 return BATADV_DHCP_NO;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000729
730 break;
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200731 case htons(ETH_P_IPV6):
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200732 if (!pskb_may_pull(skb, *header_len + sizeof(*ipv6hdr)))
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100733 return BATADV_DHCP_NO;
734
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200735 ipv6hdr = (struct ipv6hdr *)(skb->data + *header_len);
736 *header_len += sizeof(*ipv6hdr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000737
738 /* check for udp header */
739 if (ipv6hdr->nexthdr != IPPROTO_UDP)
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100740 return BATADV_DHCP_NO;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000741
742 break;
743 default:
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100744 return BATADV_DHCP_NO;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000745 }
746
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200747 if (!pskb_may_pull(skb, *header_len + sizeof(*udphdr)))
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100748 return BATADV_DHCP_NO;
Linus Lüssing9d2c9482013-08-06 20:21:15 +0200749
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200750 udphdr = (struct udphdr *)(skb->data + *header_len);
751 *header_len += sizeof(*udphdr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000752
753 /* check for bootp port */
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100754 switch (proto) {
755 case htons(ETH_P_IP):
756 if (udphdr->dest == htons(67))
757 ret = BATADV_DHCP_TO_SERVER;
758 else if (udphdr->source == htons(67))
759 ret = BATADV_DHCP_TO_CLIENT;
760 break;
761 case htons(ETH_P_IPV6):
762 if (udphdr->dest == htons(547))
763 ret = BATADV_DHCP_TO_SERVER;
764 else if (udphdr->source == htons(547))
765 ret = BATADV_DHCP_TO_CLIENT;
766 break;
767 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000768
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100769 chaddr_offset = *header_len + BATADV_DHCP_CHADDR_OFFSET;
770 /* store the client address if the message is going to a client */
771 if (ret == BATADV_DHCP_TO_CLIENT &&
772 pskb_may_pull(skb, chaddr_offset + ETH_ALEN)) {
773 /* check if the DHCP packet carries an Ethernet DHCP */
774 p = skb->data + *header_len + BATADV_DHCP_HTYPE_OFFSET;
775 if (*p != BATADV_DHCP_HTYPE_ETHERNET)
776 return BATADV_DHCP_NO;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000777
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100778 /* check if the DHCP packet carries a valid Ethernet address */
779 p = skb->data + *header_len + BATADV_DHCP_HLEN_OFFSET;
780 if (*p != ETH_ALEN)
781 return BATADV_DHCP_NO;
782
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100783 ether_addr_copy(chaddr, skb->data + chaddr_offset);
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100784 }
785
786 return ret;
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200787}
Antonio Quartulliaa143d22014-09-01 14:37:27 +0200788
Antonio Quartullibbb877e2013-06-04 12:11:42 +0200789/**
790 * batadv_gw_out_of_range - check if the dhcp request destination is the best gw
791 * @bat_priv: the bat priv with all the soft interface information
792 * @skb: the outgoing packet
793 *
794 * Check if the skb is a DHCP request and if it is sent to the current best GW
795 * server. Due to topology changes it may be the case that the GW server
796 * previously selected is not the best one anymore.
797 *
Antonio Quartullibbb877e2013-06-04 12:11:42 +0200798 * This call might reallocate skb data.
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100799 * Must be invoked only when the DHCP packet is going TO a DHCP SERVER.
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200800 *
801 * Return: true if the packet destination is unicast and it is not the best gw,
802 * false otherwise.
Antonio Quartullibbb877e2013-06-04 12:11:42 +0200803 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200804bool batadv_gw_out_of_range(struct batadv_priv *bat_priv,
Linus Lüssing9d2c9482013-08-06 20:21:15 +0200805 struct sk_buff *skb)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200806{
Sven Eckelmann4f248cf2015-06-09 20:50:49 +0200807 struct batadv_neigh_node *neigh_curr = NULL;
808 struct batadv_neigh_node *neigh_old = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200809 struct batadv_orig_node *orig_dst_node = NULL;
Sven Eckelmann4f248cf2015-06-09 20:50:49 +0200810 struct batadv_gw_node *gw_node = NULL;
811 struct batadv_gw_node *curr_gw = NULL;
Simon Wunderlich89652332013-11-13 19:14:46 +0100812 struct batadv_neigh_ifinfo *curr_ifinfo, *old_ifinfo;
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100813 struct ethhdr *ethhdr = (struct ethhdr *)skb->data;
814 bool out_of_range = false;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200815 u8 curr_tq_avg;
Antonio Quartullibbb877e2013-06-04 12:11:42 +0200816 unsigned short vid;
817
818 vid = batadv_get_vid(skb, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000819
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200820 orig_dst_node = batadv_transtable_search(bat_priv, ethhdr->h_source,
Antonio Quartullibbb877e2013-06-04 12:11:42 +0200821 ethhdr->h_dest, vid);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200822 if (!orig_dst_node)
823 goto out;
824
Marek Lindner414254e2013-04-23 21:39:58 +0800825 gw_node = batadv_gw_node_get(bat_priv, orig_dst_node);
Antonio Quartulli0d164492014-12-20 13:48:57 +0100826 if (!gw_node)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200827 goto out;
828
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200829 switch (atomic_read(&bat_priv->gw_mode)) {
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200830 case BATADV_GW_MODE_SERVER:
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200831 /* If we are a GW then we are our best GW. We can artificially
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200832 * set the tq towards ourself as the maximum value
833 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200834 curr_tq_avg = BATADV_TQ_MAX_VALUE;
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200835 break;
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200836 case BATADV_GW_MODE_CLIENT:
Sven Eckelmann1409a832012-05-12 18:33:55 +0200837 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200838 if (!curr_gw)
839 goto out;
840
841 /* packet is going to our gateway */
842 if (curr_gw->orig_node == orig_dst_node)
843 goto out;
844
845 /* If the dhcp packet has been sent to a different gw,
846 * we have to evaluate whether the old gw is still
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200847 * reliable enough
848 */
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200849 neigh_curr = batadv_find_router(bat_priv, curr_gw->orig_node,
850 NULL);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200851 if (!neigh_curr)
852 goto out;
853
Simon Wunderlich89652332013-11-13 19:14:46 +0100854 curr_ifinfo = batadv_neigh_ifinfo_get(neigh_curr,
855 BATADV_IF_DEFAULT);
856 if (!curr_ifinfo)
857 goto out;
858
859 curr_tq_avg = curr_ifinfo->bat_iv.tq_avg;
Sven Eckelmann044fa3a2016-01-17 11:01:12 +0100860 batadv_neigh_ifinfo_put(curr_ifinfo);
Simon Wunderlich89652332013-11-13 19:14:46 +0100861
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200862 break;
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200863 case BATADV_GW_MODE_OFF:
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200864 default:
865 goto out;
Antonio Quartulli43676ab2011-04-26 21:31:45 +0200866 }
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200867
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200868 neigh_old = batadv_find_router(bat_priv, orig_dst_node, NULL);
Dan Carpenter2ef04f42011-11-29 09:09:09 +0300869 if (!neigh_old)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200870 goto out;
871
Simon Wunderlich89652332013-11-13 19:14:46 +0100872 old_ifinfo = batadv_neigh_ifinfo_get(neigh_old, BATADV_IF_DEFAULT);
873 if (!old_ifinfo)
874 goto out;
875
876 if ((curr_tq_avg - old_ifinfo->bat_iv.tq_avg) > BATADV_GW_THRESHOLD)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200877 out_of_range = true;
Sven Eckelmann044fa3a2016-01-17 11:01:12 +0100878 batadv_neigh_ifinfo_put(old_ifinfo);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200879
880out:
881 if (orig_dst_node)
Sven Eckelmann5d967312016-01-17 11:01:09 +0100882 batadv_orig_node_put(orig_dst_node);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200883 if (curr_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200884 batadv_gw_node_free_ref(curr_gw);
Marek Lindner414254e2013-04-23 21:39:58 +0800885 if (gw_node)
886 batadv_gw_node_free_ref(gw_node);
Antonio Quartulli43676ab2011-04-26 21:31:45 +0200887 if (neigh_old)
Sven Eckelmann25bb2502016-01-17 11:01:11 +0100888 batadv_neigh_node_put(neigh_old);
Antonio Quartulli43676ab2011-04-26 21:31:45 +0200889 if (neigh_curr)
Sven Eckelmann25bb2502016-01-17 11:01:11 +0100890 batadv_neigh_node_put(neigh_curr);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200891 return out_of_range;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000892}