blob: 20fa053b7f577c26e639a974c033c6fd5dd1ca92 [file] [log] [blame]
Antonio Quartulli0b873932013-01-04 03:05:31 +01001/* Copyright (C) 2009-2013 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
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018 */
19
20#include "main.h"
Sven Eckelmannb706b132012-06-10 23:58:51 +020021#include "sysfs.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000022#include "gateway_client.h"
23#include "gateway_common.h"
24#include "hard-interface.h"
Linus Lüssing57f0c072011-03-14 22:43:33 +000025#include "originator.h"
Marek Lindnerbe7af5c2011-09-08 13:12:53 +020026#include "translation-table.h"
Antonio Quartulli43676ab52011-04-26 21:31:45 +020027#include "routing.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000028#include <linux/ip.h>
29#include <linux/ipv6.h>
30#include <linux/udp.h>
31#include <linux/if_vlan.h>
32
Antonio Quartulli43676ab52011-04-26 21:31:45 +020033/* This is the offset of the options field in a dhcp packet starting at
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020034 * the beginning of the dhcp header
35 */
Sven Eckelmann347c80f2012-06-03 22:19:07 +020036#define BATADV_DHCP_OPTIONS_OFFSET 240
37#define BATADV_DHCP_REQUEST 3
Antonio Quartulli43676ab52011-04-26 21:31:45 +020038
Sven Eckelmann56303d32012-06-05 22:31:31 +020039static void batadv_gw_node_free_ref(struct batadv_gw_node *gw_node)
Marek Lindner25b6d3c2011-02-10 14:33:49 +000040{
41 if (atomic_dec_and_test(&gw_node->refcount))
Paul E. McKenneyeb340b22011-05-01 23:25:02 -070042 kfree_rcu(gw_node, rcu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000043}
44
Sven Eckelmann56303d32012-06-05 22:31:31 +020045static struct batadv_gw_node *
46batadv_gw_get_selected_gw_node(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000047{
Sven Eckelmann56303d32012-06-05 22:31:31 +020048 struct batadv_gw_node *gw_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000049
Linus Lüssing5d02b3c2011-02-13 21:13:02 +000050 rcu_read_lock();
Sven Eckelmann807736f2012-07-15 22:26:51 +020051 gw_node = rcu_dereference(bat_priv->gw.curr_gw);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010052 if (!gw_node)
Linus Lüssing5d02b3c2011-02-13 21:13:02 +000053 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000054
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010055 if (!atomic_inc_not_zero(&gw_node->refcount))
56 gw_node = NULL;
57
58out:
59 rcu_read_unlock();
60 return gw_node;
61}
62
Sven Eckelmann56303d32012-06-05 22:31:31 +020063struct batadv_orig_node *
64batadv_gw_get_selected_orig(struct batadv_priv *bat_priv)
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010065{
Sven Eckelmann56303d32012-06-05 22:31:31 +020066 struct batadv_gw_node *gw_node;
67 struct batadv_orig_node *orig_node = NULL;
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010068
Sven Eckelmann1409a832012-05-12 18:33:55 +020069 gw_node = batadv_gw_get_selected_gw_node(bat_priv);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010070 if (!gw_node)
Marek Lindner7b36e8e2011-02-18 12:28:10 +000071 goto out;
Linus Lüssing5d02b3c2011-02-13 21:13:02 +000072
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010073 rcu_read_lock();
74 orig_node = gw_node->orig_node;
75 if (!orig_node)
76 goto unlock;
77
Marek Lindner7b36e8e2011-02-18 12:28:10 +000078 if (!atomic_inc_not_zero(&orig_node->refcount))
79 orig_node = NULL;
Linus Lüssing43c70ad2011-02-13 21:13:04 +000080
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010081unlock:
Linus Lüssing5d02b3c2011-02-13 21:13:02 +000082 rcu_read_unlock();
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010083out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000084 if (gw_node)
Sven Eckelmann1409a832012-05-12 18:33:55 +020085 batadv_gw_node_free_ref(gw_node);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010086 return orig_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000087}
88
Sven Eckelmann56303d32012-06-05 22:31:31 +020089static void batadv_gw_select(struct batadv_priv *bat_priv,
90 struct batadv_gw_node *new_gw_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000091{
Sven Eckelmann56303d32012-06-05 22:31:31 +020092 struct batadv_gw_node *curr_gw_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000093
Sven Eckelmann807736f2012-07-15 22:26:51 +020094 spin_lock_bh(&bat_priv->gw.list_lock);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010095
Marek Lindner25b6d3c2011-02-10 14:33:49 +000096 if (new_gw_node && !atomic_inc_not_zero(&new_gw_node->refcount))
97 new_gw_node = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000098
Sven Eckelmann807736f2012-07-15 22:26:51 +020099 curr_gw_node = rcu_dereference_protected(bat_priv->gw.curr_gw, 1);
100 rcu_assign_pointer(bat_priv->gw.curr_gw, new_gw_node);
Marek Lindner25b6d3c2011-02-10 14:33:49 +0000101
102 if (curr_gw_node)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200103 batadv_gw_node_free_ref(curr_gw_node);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100104
Sven Eckelmann807736f2012-07-15 22:26:51 +0200105 spin_unlock_bh(&bat_priv->gw.list_lock);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100106}
107
Sven Eckelmann56303d32012-06-05 22:31:31 +0200108void batadv_gw_deselect(struct batadv_priv *bat_priv)
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100109{
Sven Eckelmann807736f2012-07-15 22:26:51 +0200110 atomic_set(&bat_priv->gw.reselect, 1);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000111}
112
Sven Eckelmann56303d32012-06-05 22:31:31 +0200113static struct batadv_gw_node *
114batadv_gw_get_best_gw_node(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000115{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200116 struct batadv_neigh_node *router;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200117 struct batadv_gw_node *gw_node, *curr_gw = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000118 uint32_t max_gw_factor = 0, tmp_gw_factor = 0;
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200119 uint32_t gw_divisor;
Antonio Quartulli2265c142011-04-27 00:22:00 +0200120 uint8_t max_tq = 0;
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200121 uint8_t tq_avg;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200122 struct batadv_orig_node *orig_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000123
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200124 gw_divisor = BATADV_TQ_LOCAL_WINDOW_SIZE * BATADV_TQ_LOCAL_WINDOW_SIZE;
125 gw_divisor *= 64;
126
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000127 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800128 hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000129 if (gw_node->deleted)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000130 continue;
131
Sven Eckelmann84d5e5e2012-05-12 02:09:30 +0200132 orig_node = gw_node->orig_node;
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200133 router = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000134 if (!router)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000135 continue;
136
Antonio Quartulli2265c142011-04-27 00:22:00 +0200137 if (!atomic_inc_not_zero(&gw_node->refcount))
138 goto next;
139
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200140 tq_avg = router->tq_avg;
141
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000142 switch (atomic_read(&bat_priv->gw_sel_class)) {
143 case 1: /* fast connection */
Marek Lindner414254e2013-04-23 21:39:58 +0800144 tmp_gw_factor = tq_avg * tq_avg;
145 tmp_gw_factor *= gw_node->bandwidth_down;
146 tmp_gw_factor *= 100 * 100;
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200147 tmp_gw_factor /= gw_divisor;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000148
149 if ((tmp_gw_factor > max_gw_factor) ||
150 ((tmp_gw_factor == max_gw_factor) &&
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200151 (tq_avg > max_tq))) {
Antonio Quartulli2265c142011-04-27 00:22:00 +0200152 if (curr_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200153 batadv_gw_node_free_ref(curr_gw);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200154 curr_gw = gw_node;
155 atomic_inc(&curr_gw->refcount);
156 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000157 break;
158
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200159 default: /* 2: stable connection (use best statistic)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000160 * 3: fast-switch (use best statistic but change as
161 * soon as a better gateway appears)
162 * XX: late-switch (use best statistic but change as
163 * soon as a better gateway appears which has
164 * $routing_class more tq points)
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200165 */
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200166 if (tq_avg > max_tq) {
Antonio Quartulli2265c142011-04-27 00:22:00 +0200167 if (curr_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200168 batadv_gw_node_free_ref(curr_gw);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200169 curr_gw = gw_node;
170 atomic_inc(&curr_gw->refcount);
171 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000172 break;
173 }
174
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200175 if (tq_avg > max_tq)
176 max_tq = tq_avg;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000177
178 if (tmp_gw_factor > max_gw_factor)
179 max_gw_factor = tmp_gw_factor;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000180
Sven Eckelmann1409a832012-05-12 18:33:55 +0200181 batadv_gw_node_free_ref(gw_node);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200182
183next:
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200184 batadv_neigh_node_free_ref(router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000185 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000186 rcu_read_unlock();
Antonio Quartulli2265c142011-04-27 00:22:00 +0200187
188 return curr_gw;
189}
190
Antonio Quartullic6eaa3f2013-07-13 00:06:00 +0200191/**
192 * batadv_gw_check_client_stop - check if client mode has been switched off
193 * @bat_priv: the bat priv with all the soft interface information
194 *
195 * This function assumes the caller has checked that the gw state *is actually
196 * changing*. This function is not supposed to be called when there is no state
197 * change.
198 */
199void batadv_gw_check_client_stop(struct batadv_priv *bat_priv)
200{
201 struct batadv_gw_node *curr_gw;
202
203 if (atomic_read(&bat_priv->gw_mode) != BATADV_GW_MODE_CLIENT)
204 return;
205
206 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
207 if (!curr_gw)
208 return;
209
210 /* if batman-adv is switching the gw client mode off and a gateway was
211 * already selected, send a DEL uevent
212 */
213 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_DEL, NULL);
214
215 batadv_gw_node_free_ref(curr_gw);
216}
217
Sven Eckelmann56303d32012-06-05 22:31:31 +0200218void batadv_gw_election(struct batadv_priv *bat_priv)
Antonio Quartulli2265c142011-04-27 00:22:00 +0200219{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200220 struct batadv_gw_node *curr_gw = NULL, *next_gw = NULL;
221 struct batadv_neigh_node *router = NULL;
Antonio Quartulli19595e02011-06-12 11:58:58 +0200222 char gw_addr[18] = { '\0' };
Antonio Quartulli2265c142011-04-27 00:22:00 +0200223
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200224 if (atomic_read(&bat_priv->gw_mode) != BATADV_GW_MODE_CLIENT)
Antonio Quartulli2265c142011-04-27 00:22:00 +0200225 goto out;
226
Sven Eckelmann1409a832012-05-12 18:33:55 +0200227 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200228
Sven Eckelmann807736f2012-07-15 22:26:51 +0200229 if (!batadv_atomic_dec_not_zero(&bat_priv->gw.reselect) && curr_gw)
Marek Lindnercaa0bf62012-08-04 04:13:26 +0000230 goto out;
231
Sven Eckelmann1409a832012-05-12 18:33:55 +0200232 next_gw = batadv_gw_get_best_gw_node(bat_priv);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200233
234 if (curr_gw == next_gw)
235 goto out;
236
237 if (next_gw) {
Antonio Quartulli19595e02011-06-12 11:58:58 +0200238 sprintf(gw_addr, "%pM", next_gw->orig_node->orig);
239
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200240 router = batadv_orig_node_get_router(next_gw->orig_node);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200241 if (!router) {
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200242 batadv_gw_deselect(bat_priv);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200243 goto out;
244 }
245 }
246
247 if ((curr_gw) && (!next_gw)) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200248 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200249 "Removing selected gateway - no gateway in range\n");
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200250 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_DEL,
251 NULL);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200252 } else if ((!curr_gw) && (next_gw)) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200253 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Marek Lindner414254e2013-04-23 21:39:58 +0800254 "Adding route to gateway %pM (bandwidth: %u.%u/%u.%u MBit, tq: %i)\n",
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200255 next_gw->orig_node->orig,
Marek Lindner414254e2013-04-23 21:39:58 +0800256 next_gw->bandwidth_down / 10,
257 next_gw->bandwidth_down % 10,
258 next_gw->bandwidth_up / 10,
259 next_gw->bandwidth_up % 10, router->tq_avg);
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200260 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_ADD,
261 gw_addr);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200262 } else {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200263 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Marek Lindner414254e2013-04-23 21:39:58 +0800264 "Changing route to gateway %pM (bandwidth: %u.%u/%u.%u MBit, tq: %i)\n",
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200265 next_gw->orig_node->orig,
Marek Lindner414254e2013-04-23 21:39:58 +0800266 next_gw->bandwidth_down / 10,
267 next_gw->bandwidth_down % 10,
268 next_gw->bandwidth_up / 10,
269 next_gw->bandwidth_up % 10, router->tq_avg);
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200270 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_CHANGE,
271 gw_addr);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200272 }
273
Sven Eckelmann1409a832012-05-12 18:33:55 +0200274 batadv_gw_select(bat_priv, next_gw);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200275
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100276out:
277 if (curr_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200278 batadv_gw_node_free_ref(curr_gw);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200279 if (next_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200280 batadv_gw_node_free_ref(next_gw);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200281 if (router)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200282 batadv_neigh_node_free_ref(router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000283}
284
Sven Eckelmann56303d32012-06-05 22:31:31 +0200285void batadv_gw_check_election(struct batadv_priv *bat_priv,
286 struct batadv_orig_node *orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000287{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200288 struct batadv_orig_node *curr_gw_orig;
289 struct batadv_neigh_node *router_gw = NULL, *router_orig = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000290 uint8_t gw_tq_avg, orig_tq_avg;
291
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200292 curr_gw_orig = batadv_gw_get_selected_orig(bat_priv);
Linus Lüssing57f0c072011-03-14 22:43:33 +0000293 if (!curr_gw_orig)
294 goto deselect;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000295
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200296 router_gw = batadv_orig_node_get_router(curr_gw_orig);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000297 if (!router_gw)
298 goto deselect;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000299
300 /* this node already is the gateway */
Linus Lüssing57f0c072011-03-14 22:43:33 +0000301 if (curr_gw_orig == orig_node)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000302 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000303
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200304 router_orig = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000305 if (!router_orig)
306 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000307
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000308 gw_tq_avg = router_gw->tq_avg;
309 orig_tq_avg = router_orig->tq_avg;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000310
311 /* the TQ value has to be better */
312 if (orig_tq_avg < gw_tq_avg)
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000313 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000314
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200315 /* if the routing class is greater than 3 the value tells us how much
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000316 * greater the TQ value of the new gateway must be
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200317 */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000318 if ((atomic_read(&bat_priv->gw_sel_class) > 3) &&
319 (orig_tq_avg - gw_tq_avg < atomic_read(&bat_priv->gw_sel_class)))
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000320 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000321
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200322 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200323 "Restarting gateway selection: better gateway found (tq curr: %i, tq new: %i)\n",
324 gw_tq_avg, orig_tq_avg);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000325
326deselect:
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200327 batadv_gw_deselect(bat_priv);
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000328out:
Linus Lüssing57f0c072011-03-14 22:43:33 +0000329 if (curr_gw_orig)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200330 batadv_orig_node_free_ref(curr_gw_orig);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000331 if (router_gw)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200332 batadv_neigh_node_free_ref(router_gw);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000333 if (router_orig)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200334 batadv_neigh_node_free_ref(router_orig);
Linus Lüssing57f0c072011-03-14 22:43:33 +0000335
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000336 return;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000337}
338
Marek Lindner414254e2013-04-23 21:39:58 +0800339/**
340 * batadv_gw_node_add - add gateway node to list of available gateways
341 * @bat_priv: the bat priv with all the soft interface information
342 * @orig_node: originator announcing gateway capabilities
343 * @gateway: announced bandwidth information
344 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200345static void batadv_gw_node_add(struct batadv_priv *bat_priv,
346 struct batadv_orig_node *orig_node,
Marek Lindner414254e2013-04-23 21:39:58 +0800347 struct batadv_tvlv_gateway_data *gateway)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000348{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200349 struct batadv_gw_node *gw_node;
Marek Lindner414254e2013-04-23 21:39:58 +0800350
351 if (gateway->bandwidth_down == 0)
352 return;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000353
Sven Eckelmann704509b2011-05-14 23:14:54 +0200354 gw_node = kzalloc(sizeof(*gw_node), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000355 if (!gw_node)
356 return;
357
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000358 INIT_HLIST_NODE(&gw_node->list);
359 gw_node->orig_node = orig_node;
Marek Lindner25b6d3c2011-02-10 14:33:49 +0000360 atomic_set(&gw_node->refcount, 1);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000361
Sven Eckelmann807736f2012-07-15 22:26:51 +0200362 spin_lock_bh(&bat_priv->gw.list_lock);
363 hlist_add_head_rcu(&gw_node->list, &bat_priv->gw.list);
364 spin_unlock_bh(&bat_priv->gw.list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000365
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200366 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Marek Lindner414254e2013-04-23 21:39:58 +0800367 "Found new gateway %pM -> gw bandwidth: %u.%u/%u.%u MBit\n",
368 orig_node->orig,
369 ntohl(gateway->bandwidth_down) / 10,
370 ntohl(gateway->bandwidth_down) % 10,
371 ntohl(gateway->bandwidth_up) / 10,
372 ntohl(gateway->bandwidth_up) % 10);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000373}
374
Marek Lindner414254e2013-04-23 21:39:58 +0800375/**
376 * batadv_gw_node_get - retrieve gateway node from list of available gateways
377 * @bat_priv: the bat priv with all the soft interface information
378 * @orig_node: originator announcing gateway capabilities
379 *
380 * Returns gateway node if found or NULL otherwise.
381 */
382static struct batadv_gw_node *
383batadv_gw_node_get(struct batadv_priv *bat_priv,
384 struct batadv_orig_node *orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000385{
Marek Lindner414254e2013-04-23 21:39:58 +0800386 struct batadv_gw_node *gw_node_tmp, *gw_node = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000387
388 rcu_read_lock();
Marek Lindner414254e2013-04-23 21:39:58 +0800389 hlist_for_each_entry_rcu(gw_node_tmp, &bat_priv->gw.list, list) {
390 if (gw_node_tmp->orig_node != orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000391 continue;
392
Marek Lindner414254e2013-04-23 21:39:58 +0800393 if (gw_node_tmp->deleted)
394 continue;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000395
Marek Lindner414254e2013-04-23 21:39:58 +0800396 if (!atomic_inc_not_zero(&gw_node_tmp->refcount))
397 continue;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000398
Marek Lindner414254e2013-04-23 21:39:58 +0800399 gw_node = gw_node_tmp;
400 break;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000401 }
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100402 rcu_read_unlock();
Antonio Quartulli71e4aa92011-04-25 22:44:32 +0200403
Marek Lindner414254e2013-04-23 21:39:58 +0800404 return gw_node;
405}
406
407/**
408 * batadv_gw_node_update - update list of available gateways with changed
409 * bandwidth information
410 * @bat_priv: the bat priv with all the soft interface information
411 * @orig_node: originator announcing gateway capabilities
412 * @gateway: announced bandwidth information
413 */
414void batadv_gw_node_update(struct batadv_priv *bat_priv,
415 struct batadv_orig_node *orig_node,
416 struct batadv_tvlv_gateway_data *gateway)
417{
418 struct batadv_gw_node *gw_node, *curr_gw = NULL;
419
420 gw_node = batadv_gw_node_get(bat_priv, orig_node);
421 if (!gw_node) {
422 batadv_gw_node_add(bat_priv, orig_node, gateway);
423 goto out;
424 }
425
426 if ((gw_node->bandwidth_down == ntohl(gateway->bandwidth_down)) &&
427 (gw_node->bandwidth_up == ntohl(gateway->bandwidth_up)))
428 goto out;
429
430 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
431 "Gateway bandwidth of originator %pM changed from %u.%u/%u.%u MBit to %u.%u/%u.%u MBit\n",
432 orig_node->orig,
433 gw_node->bandwidth_down / 10,
434 gw_node->bandwidth_down % 10,
435 gw_node->bandwidth_up / 10,
436 gw_node->bandwidth_up % 10,
437 ntohl(gateway->bandwidth_down) / 10,
438 ntohl(gateway->bandwidth_down) % 10,
439 ntohl(gateway->bandwidth_up) / 10,
440 ntohl(gateway->bandwidth_up) % 10);
441
442 gw_node->bandwidth_down = ntohl(gateway->bandwidth_down);
443 gw_node->bandwidth_up = ntohl(gateway->bandwidth_up);
444
445 gw_node->deleted = 0;
446 if (ntohl(gateway->bandwidth_down) == 0) {
447 gw_node->deleted = jiffies;
448 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
449 "Gateway %pM removed from gateway list\n",
450 orig_node->orig);
451
452 /* Note: We don't need a NULL check here, since curr_gw never
453 * gets dereferenced.
454 */
455 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
456 if (gw_node == curr_gw)
457 batadv_gw_deselect(bat_priv);
458 }
459
460out:
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100461 if (curr_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200462 batadv_gw_node_free_ref(curr_gw);
Marek Lindner414254e2013-04-23 21:39:58 +0800463 if (gw_node)
464 batadv_gw_node_free_ref(gw_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000465}
466
Sven Eckelmann56303d32012-06-05 22:31:31 +0200467void batadv_gw_node_delete(struct batadv_priv *bat_priv,
468 struct batadv_orig_node *orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000469{
Marek Lindner414254e2013-04-23 21:39:58 +0800470 struct batadv_tvlv_gateway_data gateway;
471
472 gateway.bandwidth_down = 0;
473 gateway.bandwidth_up = 0;
474
475 batadv_gw_node_update(bat_priv, orig_node, &gateway);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000476}
477
Sven Eckelmann56303d32012-06-05 22:31:31 +0200478void batadv_gw_node_purge(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000479{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200480 struct batadv_gw_node *gw_node, *curr_gw;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800481 struct hlist_node *node_tmp;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200482 unsigned long timeout = msecs_to_jiffies(2 * BATADV_PURGE_TIMEOUT);
Sven Eckelmannb4e17052011-06-15 09:41:37 +0200483 int do_deselect = 0;
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100484
Sven Eckelmann1409a832012-05-12 18:33:55 +0200485 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000486
Sven Eckelmann807736f2012-07-15 22:26:51 +0200487 spin_lock_bh(&bat_priv->gw.list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000488
Sasha Levinb67bfe02013-02-27 17:06:00 -0800489 hlist_for_each_entry_safe(gw_node, node_tmp,
Sven Eckelmann807736f2012-07-15 22:26:51 +0200490 &bat_priv->gw.list, list) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000491 if (((!gw_node->deleted) ||
492 (time_before(jiffies, gw_node->deleted + timeout))) &&
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200493 atomic_read(&bat_priv->mesh_state) == BATADV_MESH_ACTIVE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000494 continue;
495
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100496 if (curr_gw == gw_node)
497 do_deselect = 1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000498
499 hlist_del_rcu(&gw_node->list);
Sven Eckelmann1409a832012-05-12 18:33:55 +0200500 batadv_gw_node_free_ref(gw_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000501 }
502
Sven Eckelmann807736f2012-07-15 22:26:51 +0200503 spin_unlock_bh(&bat_priv->gw.list_lock);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100504
505 /* gw_deselect() needs to acquire the gw_list_lock */
506 if (do_deselect)
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200507 batadv_gw_deselect(bat_priv);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100508
509 if (curr_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200510 batadv_gw_node_free_ref(curr_gw);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000511}
512
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200513/* fails if orig_node has no router */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200514static int batadv_write_buffer_text(struct batadv_priv *bat_priv,
515 struct seq_file *seq,
516 const struct batadv_gw_node *gw_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000517{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200518 struct batadv_gw_node *curr_gw;
519 struct batadv_neigh_node *router;
Marek Lindner414254e2013-04-23 21:39:58 +0800520 int ret = -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000521
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200522 router = batadv_orig_node_get_router(gw_node->orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000523 if (!router)
524 goto out;
525
Sven Eckelmann1409a832012-05-12 18:33:55 +0200526 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000527
Marek Lindner414254e2013-04-23 21:39:58 +0800528 ret = seq_printf(seq, "%s %pM (%3i) %pM [%10s]: %u.%u/%u.%u MBit\n",
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100529 (curr_gw == gw_node ? "=>" : " "),
530 gw_node->orig_node->orig,
531 router->tq_avg, router->addr,
532 router->if_incoming->net_dev->name,
Marek Lindner414254e2013-04-23 21:39:58 +0800533 gw_node->bandwidth_down / 10,
534 gw_node->bandwidth_down % 10,
535 gw_node->bandwidth_up / 10,
536 gw_node->bandwidth_up % 10);
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000537
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200538 batadv_neigh_node_free_ref(router);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100539 if (curr_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200540 batadv_gw_node_free_ref(curr_gw);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000541out:
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000542 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000543}
544
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200545int batadv_gw_client_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000546{
547 struct net_device *net_dev = (struct net_device *)seq->private;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200548 struct batadv_priv *bat_priv = netdev_priv(net_dev);
549 struct batadv_hard_iface *primary_if;
550 struct batadv_gw_node *gw_node;
Marek Lindner30da63a2012-08-03 17:15:46 +0200551 int gw_count = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000552
Marek Lindner30da63a2012-08-03 17:15:46 +0200553 primary_if = batadv_seq_print_text_primary_if_get(seq);
554 if (!primary_if)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200555 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000556
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100557 seq_printf(seq,
Marek Lindner414254e2013-04-23 21:39:58 +0800558 " %-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 +0200559 "Gateway", "#", BATADV_TQ_MAX_VALUE, "Nexthop", "outgoingIF",
560 BATADV_SOURCE_VERSION, primary_if->net_dev->name,
Marek Lindner32ae9b22011-04-20 15:40:58 +0200561 primary_if->net_dev->dev_addr, net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000562
563 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800564 hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000565 if (gw_node->deleted)
566 continue;
567
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000568 /* fails if orig_node has no router */
Sven Eckelmann1409a832012-05-12 18:33:55 +0200569 if (batadv_write_buffer_text(bat_priv, seq, gw_node) < 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000570 continue;
571
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000572 gw_count++;
573 }
574 rcu_read_unlock();
575
576 if (gw_count == 0)
Antonio Quartulli0c814652013-03-21 09:23:29 +0100577 seq_puts(seq, "No gateways in range ...\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000578
Marek Lindner32ae9b22011-04-20 15:40:58 +0200579out:
580 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200581 batadv_hardif_free_ref(primary_if);
Marek Lindner30da63a2012-08-03 17:15:46 +0200582 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000583}
584
Linus Lüssing9d2c9482013-08-06 20:21:15 +0200585/* this call might reallocate skb data */
Sven Eckelmann1409a832012-05-12 18:33:55 +0200586static bool batadv_is_type_dhcprequest(struct sk_buff *skb, int header_len)
Antonio Quartulli43676ab52011-04-26 21:31:45 +0200587{
588 int ret = false;
589 unsigned char *p;
590 int pkt_len;
591
592 if (skb_linearize(skb) < 0)
593 goto out;
594
595 pkt_len = skb_headlen(skb);
596
Sven Eckelmann347c80f2012-06-03 22:19:07 +0200597 if (pkt_len < header_len + BATADV_DHCP_OPTIONS_OFFSET + 1)
Antonio Quartulli43676ab52011-04-26 21:31:45 +0200598 goto out;
599
Sven Eckelmann347c80f2012-06-03 22:19:07 +0200600 p = skb->data + header_len + BATADV_DHCP_OPTIONS_OFFSET;
601 pkt_len -= header_len + BATADV_DHCP_OPTIONS_OFFSET + 1;
Antonio Quartulli43676ab52011-04-26 21:31:45 +0200602
603 /* Access the dhcp option lists. Each entry is made up by:
Antonio Quartulli015758d2011-07-09 17:52:13 +0200604 * - octet 1: option type
605 * - octet 2: option data len (only if type != 255 and 0)
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200606 * - octet 3: option data
607 */
Antonio Quartulli43676ab52011-04-26 21:31:45 +0200608 while (*p != 255 && !ret) {
Antonio Quartulli015758d2011-07-09 17:52:13 +0200609 /* p now points to the first octet: option type */
Antonio Quartulli43676ab52011-04-26 21:31:45 +0200610 if (*p == 53) {
611 /* type 53 is the message type option.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200612 * Jump the len octet and go to the data octet
613 */
Antonio Quartulli43676ab52011-04-26 21:31:45 +0200614 if (pkt_len < 2)
615 goto out;
616 p += 2;
617
618 /* check if the message type is what we need */
Sven Eckelmann347c80f2012-06-03 22:19:07 +0200619 if (*p == BATADV_DHCP_REQUEST)
Antonio Quartulli43676ab52011-04-26 21:31:45 +0200620 ret = true;
621 break;
622 } else if (*p == 0) {
623 /* option type 0 (padding), just go forward */
624 if (pkt_len < 1)
625 goto out;
626 pkt_len--;
627 p++;
628 } else {
629 /* This is any other option. So we get the length... */
630 if (pkt_len < 1)
631 goto out;
632 pkt_len--;
633 p++;
634
635 /* ...and then we jump over the data */
Antonio Quartulli9205cc52012-02-27 11:29:53 +0100636 if (pkt_len < 1 + (*p))
Antonio Quartulli43676ab52011-04-26 21:31:45 +0200637 goto out;
Antonio Quartulli9205cc52012-02-27 11:29:53 +0100638 pkt_len -= 1 + (*p);
639 p += 1 + (*p);
Antonio Quartulli43676ab52011-04-26 21:31:45 +0200640 }
641 }
642out:
643 return ret;
644}
645
Linus Lüssing9d2c9482013-08-06 20:21:15 +0200646/* this call might reallocate skb data */
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200647bool batadv_gw_is_dhcp_target(struct sk_buff *skb, unsigned int *header_len)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000648{
649 struct ethhdr *ethhdr;
650 struct iphdr *iphdr;
651 struct ipv6hdr *ipv6hdr;
652 struct udphdr *udphdr;
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200653 struct vlan_ethhdr *vhdr;
654 __be16 proto;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000655
656 /* check for ethernet header */
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200657 if (!pskb_may_pull(skb, *header_len + ETH_HLEN))
658 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000659 ethhdr = (struct ethhdr *)skb->data;
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200660 proto = ethhdr->h_proto;
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200661 *header_len += ETH_HLEN;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000662
663 /* check for initial vlan header */
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200664 if (proto == htons(ETH_P_8021Q)) {
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200665 if (!pskb_may_pull(skb, *header_len + VLAN_HLEN))
666 return false;
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200667
668 vhdr = (struct vlan_ethhdr *)skb->data;
669 proto = vhdr->h_vlan_encapsulated_proto;
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200670 *header_len += VLAN_HLEN;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000671 }
672
673 /* check for ip header */
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200674 switch (proto) {
675 case htons(ETH_P_IP):
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200676 if (!pskb_may_pull(skb, *header_len + sizeof(*iphdr)))
677 return false;
678 iphdr = (struct iphdr *)(skb->data + *header_len);
679 *header_len += iphdr->ihl * 4;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000680
681 /* check for udp header */
682 if (iphdr->protocol != IPPROTO_UDP)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200683 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000684
685 break;
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200686 case htons(ETH_P_IPV6):
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200687 if (!pskb_may_pull(skb, *header_len + sizeof(*ipv6hdr)))
688 return false;
689 ipv6hdr = (struct ipv6hdr *)(skb->data + *header_len);
690 *header_len += sizeof(*ipv6hdr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000691
692 /* check for udp header */
693 if (ipv6hdr->nexthdr != IPPROTO_UDP)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200694 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000695
696 break;
697 default:
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200698 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000699 }
700
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200701 if (!pskb_may_pull(skb, *header_len + sizeof(*udphdr)))
702 return false;
Linus Lüssing9d2c9482013-08-06 20:21:15 +0200703
704 /* skb->data might have been reallocated by pskb_may_pull() */
705 ethhdr = (struct ethhdr *)skb->data;
706 if (ntohs(ethhdr->h_proto) == ETH_P_8021Q)
707 ethhdr = (struct ethhdr *)(skb->data + VLAN_HLEN);
708
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200709 udphdr = (struct udphdr *)(skb->data + *header_len);
710 *header_len += sizeof(*udphdr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000711
712 /* check for bootp port */
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200713 if ((proto == htons(ETH_P_IP)) &&
Antonio Quartulli293e9332013-05-19 12:55:16 +0200714 (udphdr->dest != htons(67)))
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200715 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000716
Antonio Quartullif7f8ed52013-05-12 21:51:15 +0200717 if ((proto == htons(ETH_P_IPV6)) &&
Antonio Quartulli293e9332013-05-19 12:55:16 +0200718 (udphdr->dest != htons(547)))
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200719 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000720
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200721 return true;
722}
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000723
Antonio Quartullibbb877e2013-06-04 12:11:42 +0200724/**
725 * batadv_gw_out_of_range - check if the dhcp request destination is the best gw
726 * @bat_priv: the bat priv with all the soft interface information
727 * @skb: the outgoing packet
728 *
729 * Check if the skb is a DHCP request and if it is sent to the current best GW
730 * server. Due to topology changes it may be the case that the GW server
731 * previously selected is not the best one anymore.
732 *
733 * Returns true if the packet destination is unicast and it is not the best gw,
734 * false otherwise.
735 *
736 * This call might reallocate skb data.
737 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200738bool batadv_gw_out_of_range(struct batadv_priv *bat_priv,
Linus Lüssing9d2c9482013-08-06 20:21:15 +0200739 struct sk_buff *skb)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200740{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200741 struct batadv_neigh_node *neigh_curr = NULL, *neigh_old = NULL;
742 struct batadv_orig_node *orig_dst_node = NULL;
Marek Lindner414254e2013-04-23 21:39:58 +0800743 struct batadv_gw_node *gw_node = NULL, *curr_gw = NULL;
Linus Lüssing9d2c9482013-08-06 20:21:15 +0200744 struct ethhdr *ethhdr;
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200745 bool ret, out_of_range = false;
746 unsigned int header_len = 0;
747 uint8_t curr_tq_avg;
Antonio Quartullibbb877e2013-06-04 12:11:42 +0200748 unsigned short vid;
749
750 vid = batadv_get_vid(skb, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000751
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200752 ret = batadv_gw_is_dhcp_target(skb, &header_len);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200753 if (!ret)
754 goto out;
755
Linus Lüssing9d2c9482013-08-06 20:21:15 +0200756 ethhdr = (struct ethhdr *)skb->data;
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200757 orig_dst_node = batadv_transtable_search(bat_priv, ethhdr->h_source,
Antonio Quartullibbb877e2013-06-04 12:11:42 +0200758 ethhdr->h_dest, vid);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200759 if (!orig_dst_node)
760 goto out;
761
Marek Lindner414254e2013-04-23 21:39:58 +0800762 gw_node = batadv_gw_node_get(bat_priv, orig_dst_node);
763 if (!gw_node->bandwidth_down == 0)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200764 goto out;
765
Sven Eckelmann1409a832012-05-12 18:33:55 +0200766 ret = batadv_is_type_dhcprequest(skb, header_len);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200767 if (!ret)
768 goto out;
769
770 switch (atomic_read(&bat_priv->gw_mode)) {
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200771 case BATADV_GW_MODE_SERVER:
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200772 /* If we are a GW then we are our best GW. We can artificially
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200773 * set the tq towards ourself as the maximum value
774 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200775 curr_tq_avg = BATADV_TQ_MAX_VALUE;
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200776 break;
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200777 case BATADV_GW_MODE_CLIENT:
Sven Eckelmann1409a832012-05-12 18:33:55 +0200778 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200779 if (!curr_gw)
780 goto out;
781
782 /* packet is going to our gateway */
783 if (curr_gw->orig_node == orig_dst_node)
784 goto out;
785
786 /* If the dhcp packet has been sent to a different gw,
787 * we have to evaluate whether the old gw is still
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200788 * reliable enough
789 */
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200790 neigh_curr = batadv_find_router(bat_priv, curr_gw->orig_node,
791 NULL);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200792 if (!neigh_curr)
793 goto out;
794
795 curr_tq_avg = neigh_curr->tq_avg;
796 break;
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200797 case BATADV_GW_MODE_OFF:
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200798 default:
799 goto out;
Antonio Quartulli43676ab52011-04-26 21:31:45 +0200800 }
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200801
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200802 neigh_old = batadv_find_router(bat_priv, orig_dst_node, NULL);
Dan Carpenter2ef04f42011-11-29 09:09:09 +0300803 if (!neigh_old)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200804 goto out;
805
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200806 if (curr_tq_avg - neigh_old->tq_avg > BATADV_GW_THRESHOLD)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200807 out_of_range = true;
808
809out:
810 if (orig_dst_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200811 batadv_orig_node_free_ref(orig_dst_node);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200812 if (curr_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200813 batadv_gw_node_free_ref(curr_gw);
Marek Lindner414254e2013-04-23 21:39:58 +0800814 if (gw_node)
815 batadv_gw_node_free_ref(gw_node);
Antonio Quartulli43676ab52011-04-26 21:31:45 +0200816 if (neigh_old)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200817 batadv_neigh_node_free_ref(neigh_old);
Antonio Quartulli43676ab52011-04-26 21:31:45 +0200818 if (neigh_curr)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200819 batadv_neigh_node_free_ref(neigh_curr);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200820 return out_of_range;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000821}