blob: 00273b92d76fb41a010ccaa28e304873b3137c49 [file] [log] [blame]
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001/* Copyright (C) 2009-2012 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"
Antonio Quartulli2265c142011-04-27 00:22:00 +020021#include "bat_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 Quartulli43676ab2011-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 Quartulli43676ab2011-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 Quartulli43676ab2011-04-26 21:31:45 +020038
Sven Eckelmann1409a832012-05-12 18:33:55 +020039static void batadv_gw_node_free_ref(struct 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 Eckelmann1409a832012-05-12 18:33:55 +020045static struct gw_node *batadv_gw_get_selected_gw_node(struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000046{
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010047 struct gw_node *gw_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000048
Linus Lüssing5d02b3c2011-02-13 21:13:02 +000049 rcu_read_lock();
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010050 gw_node = rcu_dereference(bat_priv->curr_gw);
51 if (!gw_node)
Linus Lüssing5d02b3c2011-02-13 21:13:02 +000052 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000053
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010054 if (!atomic_inc_not_zero(&gw_node->refcount))
55 gw_node = NULL;
56
57out:
58 rcu_read_unlock();
59 return gw_node;
60}
61
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +020062struct orig_node *batadv_gw_get_selected_orig(struct bat_priv *bat_priv)
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010063{
64 struct gw_node *gw_node;
65 struct orig_node *orig_node = NULL;
66
Sven Eckelmann1409a832012-05-12 18:33:55 +020067 gw_node = batadv_gw_get_selected_gw_node(bat_priv);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010068 if (!gw_node)
Marek Lindner7b36e8e2011-02-18 12:28:10 +000069 goto out;
Linus Lüssing5d02b3c2011-02-13 21:13:02 +000070
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010071 rcu_read_lock();
72 orig_node = gw_node->orig_node;
73 if (!orig_node)
74 goto unlock;
75
Marek Lindner7b36e8e2011-02-18 12:28:10 +000076 if (!atomic_inc_not_zero(&orig_node->refcount))
77 orig_node = NULL;
Linus Lüssing43c70ad2011-02-13 21:13:04 +000078
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010079unlock:
Linus Lüssing5d02b3c2011-02-13 21:13:02 +000080 rcu_read_unlock();
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010081out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000082 if (gw_node)
Sven Eckelmann1409a832012-05-12 18:33:55 +020083 batadv_gw_node_free_ref(gw_node);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010084 return orig_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000085}
86
Sven Eckelmann1409a832012-05-12 18:33:55 +020087static void batadv_gw_select(struct bat_priv *bat_priv,
88 struct gw_node *new_gw_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000089{
Linus Lüssing5d02b3c2011-02-13 21:13:02 +000090 struct gw_node *curr_gw_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000091
Marek Lindnerc4aac1a2011-03-23 11:24:34 +010092 spin_lock_bh(&bat_priv->gw_list_lock);
93
Marek Lindner25b6d3c2011-02-10 14:33:49 +000094 if (new_gw_node && !atomic_inc_not_zero(&new_gw_node->refcount))
95 new_gw_node = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000096
Sven Eckelmann728cbc62011-05-15 00:50:21 +020097 curr_gw_node = rcu_dereference_protected(bat_priv->curr_gw, 1);
Linus Lüssing5d02b3c2011-02-13 21:13:02 +000098 rcu_assign_pointer(bat_priv->curr_gw, new_gw_node);
Marek Lindner25b6d3c2011-02-10 14:33:49 +000099
100 if (curr_gw_node)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200101 batadv_gw_node_free_ref(curr_gw_node);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100102
103 spin_unlock_bh(&bat_priv->gw_list_lock);
104}
105
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200106void batadv_gw_deselect(struct bat_priv *bat_priv)
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100107{
Antonio Quartulli2265c142011-04-27 00:22:00 +0200108 atomic_set(&bat_priv->gw_reselect, 1);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000109}
110
Sven Eckelmann1409a832012-05-12 18:33:55 +0200111static struct gw_node *batadv_gw_get_best_gw_node(struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000112{
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000113 struct neigh_node *router;
Antonio Quartulli2265c142011-04-27 00:22:00 +0200114 struct hlist_node *node;
115 struct gw_node *gw_node, *curr_gw = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000116 uint32_t max_gw_factor = 0, tmp_gw_factor = 0;
Antonio Quartulli2265c142011-04-27 00:22:00 +0200117 uint8_t max_tq = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000118 int down, up;
Sven Eckelmann84d5e5e2012-05-12 02:09:30 +0200119 struct orig_node *orig_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000120
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000121 rcu_read_lock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000122 hlist_for_each_entry_rcu(gw_node, node, &bat_priv->gw_list, list) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000123 if (gw_node->deleted)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000124 continue;
125
Sven Eckelmann84d5e5e2012-05-12 02:09:30 +0200126 orig_node = gw_node->orig_node;
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200127 router = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000128 if (!router)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000129 continue;
130
Antonio Quartulli2265c142011-04-27 00:22:00 +0200131 if (!atomic_inc_not_zero(&gw_node->refcount))
132 goto next;
133
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000134 switch (atomic_read(&bat_priv->gw_sel_class)) {
135 case 1: /* fast connection */
Sven Eckelmann84d5e5e2012-05-12 02:09:30 +0200136 batadv_gw_bandwidth_to_kbit(orig_node->gw_flags,
137 &down, &up);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000138
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000139 tmp_gw_factor = (router->tq_avg * router->tq_avg *
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000140 down * 100 * 100) /
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200141 (BATADV_TQ_LOCAL_WINDOW_SIZE *
142 BATADV_TQ_LOCAL_WINDOW_SIZE * 64);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000143
144 if ((tmp_gw_factor > max_gw_factor) ||
145 ((tmp_gw_factor == max_gw_factor) &&
Antonio Quartulli2265c142011-04-27 00:22:00 +0200146 (router->tq_avg > max_tq))) {
147 if (curr_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200148 batadv_gw_node_free_ref(curr_gw);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200149 curr_gw = gw_node;
150 atomic_inc(&curr_gw->refcount);
151 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000152 break;
153
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200154 default: /* 2: stable connection (use best statistic)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000155 * 3: fast-switch (use best statistic but change as
156 * soon as a better gateway appears)
157 * XX: late-switch (use best statistic but change as
158 * soon as a better gateway appears which has
159 * $routing_class more tq points)
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200160 */
Antonio Quartulli2265c142011-04-27 00:22:00 +0200161 if (router->tq_avg > max_tq) {
162 if (curr_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200163 batadv_gw_node_free_ref(curr_gw);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200164 curr_gw = gw_node;
165 atomic_inc(&curr_gw->refcount);
166 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000167 break;
168 }
169
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000170 if (router->tq_avg > max_tq)
171 max_tq = router->tq_avg;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000172
173 if (tmp_gw_factor > max_gw_factor)
174 max_gw_factor = tmp_gw_factor;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000175
Sven Eckelmann1409a832012-05-12 18:33:55 +0200176 batadv_gw_node_free_ref(gw_node);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200177
178next:
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200179 batadv_neigh_node_free_ref(router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000180 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000181 rcu_read_unlock();
Antonio Quartulli2265c142011-04-27 00:22:00 +0200182
183 return curr_gw;
184}
185
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200186void batadv_gw_election(struct bat_priv *bat_priv)
Antonio Quartulli2265c142011-04-27 00:22:00 +0200187{
188 struct gw_node *curr_gw = NULL, *next_gw = NULL;
189 struct neigh_node *router = NULL;
Antonio Quartulli19595e02011-06-12 11:58:58 +0200190 char gw_addr[18] = { '\0' };
Antonio Quartulli2265c142011-04-27 00:22:00 +0200191
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200192 /* The batman daemon checks here if we already passed a full originator
Antonio Quartulli2265c142011-04-27 00:22:00 +0200193 * cycle in order to make sure we don't choose the first gateway we
194 * hear about. This check is based on the daemon's uptime which we
195 * don't have.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200196 */
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200197 if (atomic_read(&bat_priv->gw_mode) != BATADV_GW_MODE_CLIENT)
Antonio Quartulli2265c142011-04-27 00:22:00 +0200198 goto out;
199
Sven Eckelmann3e348192012-05-16 20:23:22 +0200200 if (!batadv_atomic_dec_not_zero(&bat_priv->gw_reselect))
Antonio Quartulli2265c142011-04-27 00:22:00 +0200201 goto out;
202
Sven Eckelmann1409a832012-05-12 18:33:55 +0200203 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200204
Sven Eckelmann1409a832012-05-12 18:33:55 +0200205 next_gw = batadv_gw_get_best_gw_node(bat_priv);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200206
207 if (curr_gw == next_gw)
208 goto out;
209
210 if (next_gw) {
Antonio Quartulli19595e02011-06-12 11:58:58 +0200211 sprintf(gw_addr, "%pM", next_gw->orig_node->orig);
212
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200213 router = batadv_orig_node_get_router(next_gw->orig_node);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200214 if (!router) {
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200215 batadv_gw_deselect(bat_priv);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200216 goto out;
217 }
218 }
219
220 if ((curr_gw) && (!next_gw)) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200221 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200222 "Removing selected gateway - no gateway in range\n");
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200223 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_DEL,
224 NULL);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200225 } else if ((!curr_gw) && (next_gw)) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200226 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200227 "Adding route to gateway %pM (gw_flags: %i, tq: %i)\n",
228 next_gw->orig_node->orig,
229 next_gw->orig_node->gw_flags, router->tq_avg);
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200230 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_ADD,
231 gw_addr);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200232 } else {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200233 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200234 "Changing route to gateway %pM (gw_flags: %i, tq: %i)\n",
235 next_gw->orig_node->orig,
236 next_gw->orig_node->gw_flags, router->tq_avg);
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200237 batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_CHANGE,
238 gw_addr);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200239 }
240
Sven Eckelmann1409a832012-05-12 18:33:55 +0200241 batadv_gw_select(bat_priv, next_gw);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200242
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100243out:
244 if (curr_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200245 batadv_gw_node_free_ref(curr_gw);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200246 if (next_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200247 batadv_gw_node_free_ref(next_gw);
Antonio Quartulli2265c142011-04-27 00:22:00 +0200248 if (router)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200249 batadv_neigh_node_free_ref(router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000250}
251
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200252void batadv_gw_check_election(struct bat_priv *bat_priv,
253 struct orig_node *orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000254{
Linus Lüssing57f0c072011-03-14 22:43:33 +0000255 struct orig_node *curr_gw_orig;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000256 struct neigh_node *router_gw = NULL, *router_orig = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000257 uint8_t gw_tq_avg, orig_tq_avg;
258
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200259 curr_gw_orig = batadv_gw_get_selected_orig(bat_priv);
Linus Lüssing57f0c072011-03-14 22:43:33 +0000260 if (!curr_gw_orig)
261 goto deselect;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000262
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200263 router_gw = batadv_orig_node_get_router(curr_gw_orig);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000264 if (!router_gw)
265 goto deselect;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000266
267 /* this node already is the gateway */
Linus Lüssing57f0c072011-03-14 22:43:33 +0000268 if (curr_gw_orig == orig_node)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000269 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000270
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200271 router_orig = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000272 if (!router_orig)
273 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000274
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000275 gw_tq_avg = router_gw->tq_avg;
276 orig_tq_avg = router_orig->tq_avg;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000277
278 /* the TQ value has to be better */
279 if (orig_tq_avg < gw_tq_avg)
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000280 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000281
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200282 /* if the routing class is greater than 3 the value tells us how much
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000283 * greater the TQ value of the new gateway must be
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200284 */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000285 if ((atomic_read(&bat_priv->gw_sel_class) > 3) &&
286 (orig_tq_avg - gw_tq_avg < atomic_read(&bat_priv->gw_sel_class)))
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000287 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000288
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200289 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200290 "Restarting gateway selection: better gateway found (tq curr: %i, tq new: %i)\n",
291 gw_tq_avg, orig_tq_avg);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000292
293deselect:
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200294 batadv_gw_deselect(bat_priv);
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000295out:
Linus Lüssing57f0c072011-03-14 22:43:33 +0000296 if (curr_gw_orig)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200297 batadv_orig_node_free_ref(curr_gw_orig);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000298 if (router_gw)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200299 batadv_neigh_node_free_ref(router_gw);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000300 if (router_orig)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200301 batadv_neigh_node_free_ref(router_orig);
Linus Lüssing57f0c072011-03-14 22:43:33 +0000302
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000303 return;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000304}
305
Sven Eckelmann1409a832012-05-12 18:33:55 +0200306static void batadv_gw_node_add(struct bat_priv *bat_priv,
307 struct orig_node *orig_node,
308 uint8_t new_gwflags)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000309{
310 struct gw_node *gw_node;
311 int down, up;
312
Sven Eckelmann704509b2011-05-14 23:14:54 +0200313 gw_node = kzalloc(sizeof(*gw_node), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000314 if (!gw_node)
315 return;
316
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000317 INIT_HLIST_NODE(&gw_node->list);
318 gw_node->orig_node = orig_node;
Marek Lindner25b6d3c2011-02-10 14:33:49 +0000319 atomic_set(&gw_node->refcount, 1);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000320
321 spin_lock_bh(&bat_priv->gw_list_lock);
322 hlist_add_head_rcu(&gw_node->list, &bat_priv->gw_list);
323 spin_unlock_bh(&bat_priv->gw_list_lock);
324
Sven Eckelmann84d5e5e2012-05-12 02:09:30 +0200325 batadv_gw_bandwidth_to_kbit(new_gwflags, &down, &up);
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200326 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200327 "Found new gateway %pM -> gw_class: %i - %i%s/%i%s\n",
328 orig_node->orig, new_gwflags,
329 (down > 2048 ? down / 1024 : down),
330 (down > 2048 ? "MBit" : "KBit"),
331 (up > 2048 ? up / 1024 : up),
332 (up > 2048 ? "MBit" : "KBit"));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000333}
334
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200335void batadv_gw_node_update(struct bat_priv *bat_priv,
336 struct orig_node *orig_node, uint8_t new_gwflags)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000337{
338 struct hlist_node *node;
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100339 struct gw_node *gw_node, *curr_gw;
340
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200341 /* Note: We don't need a NULL check here, since curr_gw never gets
Antonio Quartulli71e4aa92011-04-25 22:44:32 +0200342 * dereferenced. If curr_gw is NULL we also should not exit as we may
343 * have this gateway in our list (duplication check!) even though we
344 * have no currently selected gateway.
345 */
Sven Eckelmann1409a832012-05-12 18:33:55 +0200346 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000347
348 rcu_read_lock();
349 hlist_for_each_entry_rcu(gw_node, node, &bat_priv->gw_list, list) {
350 if (gw_node->orig_node != orig_node)
351 continue;
352
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200353 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200354 "Gateway class of originator %pM changed from %i to %i\n",
355 orig_node->orig, gw_node->orig_node->gw_flags,
356 new_gwflags);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000357
358 gw_node->deleted = 0;
359
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200360 if (new_gwflags == BATADV_NO_FLAGS) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000361 gw_node->deleted = jiffies;
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200362 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200363 "Gateway %pM removed from gateway list\n",
364 orig_node->orig);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000365
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100366 if (gw_node == curr_gw)
367 goto deselect;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000368 }
369
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100370 goto unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000371 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000372
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200373 if (new_gwflags == BATADV_NO_FLAGS)
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100374 goto unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000375
Sven Eckelmann1409a832012-05-12 18:33:55 +0200376 batadv_gw_node_add(bat_priv, orig_node, new_gwflags);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100377 goto unlock;
378
379deselect:
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200380 batadv_gw_deselect(bat_priv);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100381unlock:
382 rcu_read_unlock();
Antonio Quartulli71e4aa92011-04-25 22:44:32 +0200383
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100384 if (curr_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200385 batadv_gw_node_free_ref(curr_gw);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000386}
387
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200388void batadv_gw_node_delete(struct bat_priv *bat_priv,
389 struct orig_node *orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000390{
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200391 batadv_gw_node_update(bat_priv, orig_node, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000392}
393
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200394void batadv_gw_node_purge(struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000395{
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100396 struct gw_node *gw_node, *curr_gw;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000397 struct hlist_node *node, *node_tmp;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200398 unsigned long timeout = msecs_to_jiffies(2 * BATADV_PURGE_TIMEOUT);
Sven Eckelmannb4e17052011-06-15 09:41:37 +0200399 int do_deselect = 0;
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100400
Sven Eckelmann1409a832012-05-12 18:33:55 +0200401 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000402
403 spin_lock_bh(&bat_priv->gw_list_lock);
404
405 hlist_for_each_entry_safe(gw_node, node, node_tmp,
406 &bat_priv->gw_list, list) {
407 if (((!gw_node->deleted) ||
408 (time_before(jiffies, gw_node->deleted + timeout))) &&
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200409 atomic_read(&bat_priv->mesh_state) == BATADV_MESH_ACTIVE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000410 continue;
411
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100412 if (curr_gw == gw_node)
413 do_deselect = 1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000414
415 hlist_del_rcu(&gw_node->list);
Sven Eckelmann1409a832012-05-12 18:33:55 +0200416 batadv_gw_node_free_ref(gw_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000417 }
418
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000419 spin_unlock_bh(&bat_priv->gw_list_lock);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100420
421 /* gw_deselect() needs to acquire the gw_list_lock */
422 if (do_deselect)
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200423 batadv_gw_deselect(bat_priv);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100424
425 if (curr_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200426 batadv_gw_node_free_ref(curr_gw);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000427}
428
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200429/* fails if orig_node has no router */
Sven Eckelmann1409a832012-05-12 18:33:55 +0200430static int batadv_write_buffer_text(struct bat_priv *bat_priv,
431 struct seq_file *seq,
432 const struct gw_node *gw_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000433{
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000434 struct gw_node *curr_gw;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000435 struct neigh_node *router;
436 int down, up, ret = -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000437
Sven Eckelmann84d5e5e2012-05-12 02:09:30 +0200438 batadv_gw_bandwidth_to_kbit(gw_node->orig_node->gw_flags, &down, &up);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000439
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200440 router = batadv_orig_node_get_router(gw_node->orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000441 if (!router)
442 goto out;
443
Sven Eckelmann1409a832012-05-12 18:33:55 +0200444 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000445
446 ret = seq_printf(seq, "%s %pM (%3i) %pM [%10s]: %3i - %i%s/%i%s\n",
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100447 (curr_gw == gw_node ? "=>" : " "),
448 gw_node->orig_node->orig,
449 router->tq_avg, router->addr,
450 router->if_incoming->net_dev->name,
451 gw_node->orig_node->gw_flags,
452 (down > 2048 ? down / 1024 : down),
453 (down > 2048 ? "MBit" : "KBit"),
454 (up > 2048 ? up / 1024 : up),
455 (up > 2048 ? "MBit" : "KBit"));
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000456
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200457 batadv_neigh_node_free_ref(router);
Marek Lindnerc4aac1a2011-03-23 11:24:34 +0100458 if (curr_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200459 batadv_gw_node_free_ref(curr_gw);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000460out:
Linus Lüssing5d02b3c2011-02-13 21:13:02 +0000461 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000462}
463
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200464int batadv_gw_client_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000465{
466 struct net_device *net_dev = (struct net_device *)seq->private;
467 struct bat_priv *bat_priv = netdev_priv(net_dev);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200468 struct hard_iface *primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000469 struct gw_node *gw_node;
470 struct hlist_node *node;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200471 int gw_count = 0, ret = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000472
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200473 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200474 if (!primary_if) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100475 ret = seq_printf(seq,
476 "BATMAN mesh %s disabled - please specify interfaces to enable it\n",
Marek Lindner32ae9b22011-04-20 15:40:58 +0200477 net_dev->name);
478 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000479 }
480
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200481 if (primary_if->if_status != BATADV_IF_ACTIVE) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100482 ret = seq_printf(seq,
483 "BATMAN mesh %s disabled - primary interface not active\n",
Marek Lindner32ae9b22011-04-20 15:40:58 +0200484 net_dev->name);
485 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000486 }
487
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100488 seq_printf(seq,
489 " %-12s (%s/%i) %17s [%10s]: gw_class ... [B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s)]\n",
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200490 "Gateway", "#", BATADV_TQ_MAX_VALUE, "Nexthop", "outgoingIF",
491 BATADV_SOURCE_VERSION, primary_if->net_dev->name,
Marek Lindner32ae9b22011-04-20 15:40:58 +0200492 primary_if->net_dev->dev_addr, net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000493
494 rcu_read_lock();
495 hlist_for_each_entry_rcu(gw_node, node, &bat_priv->gw_list, list) {
496 if (gw_node->deleted)
497 continue;
498
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000499 /* fails if orig_node has no router */
Sven Eckelmann1409a832012-05-12 18:33:55 +0200500 if (batadv_write_buffer_text(bat_priv, seq, gw_node) < 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000501 continue;
502
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000503 gw_count++;
504 }
505 rcu_read_unlock();
506
507 if (gw_count == 0)
508 seq_printf(seq, "No gateways in range ...\n");
509
Marek Lindner32ae9b22011-04-20 15:40:58 +0200510out:
511 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200512 batadv_hardif_free_ref(primary_if);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200513 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000514}
515
Sven Eckelmann1409a832012-05-12 18:33:55 +0200516static bool batadv_is_type_dhcprequest(struct sk_buff *skb, int header_len)
Antonio Quartulli43676ab2011-04-26 21:31:45 +0200517{
518 int ret = false;
519 unsigned char *p;
520 int pkt_len;
521
522 if (skb_linearize(skb) < 0)
523 goto out;
524
525 pkt_len = skb_headlen(skb);
526
Sven Eckelmann347c80f2012-06-03 22:19:07 +0200527 if (pkt_len < header_len + BATADV_DHCP_OPTIONS_OFFSET + 1)
Antonio Quartulli43676ab2011-04-26 21:31:45 +0200528 goto out;
529
Sven Eckelmann347c80f2012-06-03 22:19:07 +0200530 p = skb->data + header_len + BATADV_DHCP_OPTIONS_OFFSET;
531 pkt_len -= header_len + BATADV_DHCP_OPTIONS_OFFSET + 1;
Antonio Quartulli43676ab2011-04-26 21:31:45 +0200532
533 /* Access the dhcp option lists. Each entry is made up by:
Antonio Quartulli015758d2011-07-09 17:52:13 +0200534 * - octet 1: option type
535 * - octet 2: option data len (only if type != 255 and 0)
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200536 * - octet 3: option data
537 */
Antonio Quartulli43676ab2011-04-26 21:31:45 +0200538 while (*p != 255 && !ret) {
Antonio Quartulli015758d2011-07-09 17:52:13 +0200539 /* p now points to the first octet: option type */
Antonio Quartulli43676ab2011-04-26 21:31:45 +0200540 if (*p == 53) {
541 /* type 53 is the message type option.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200542 * Jump the len octet and go to the data octet
543 */
Antonio Quartulli43676ab2011-04-26 21:31:45 +0200544 if (pkt_len < 2)
545 goto out;
546 p += 2;
547
548 /* check if the message type is what we need */
Sven Eckelmann347c80f2012-06-03 22:19:07 +0200549 if (*p == BATADV_DHCP_REQUEST)
Antonio Quartulli43676ab2011-04-26 21:31:45 +0200550 ret = true;
551 break;
552 } else if (*p == 0) {
553 /* option type 0 (padding), just go forward */
554 if (pkt_len < 1)
555 goto out;
556 pkt_len--;
557 p++;
558 } else {
559 /* This is any other option. So we get the length... */
560 if (pkt_len < 1)
561 goto out;
562 pkt_len--;
563 p++;
564
565 /* ...and then we jump over the data */
Antonio Quartulli9205cc52012-02-27 11:29:53 +0100566 if (pkt_len < 1 + (*p))
Antonio Quartulli43676ab2011-04-26 21:31:45 +0200567 goto out;
Antonio Quartulli9205cc52012-02-27 11:29:53 +0100568 pkt_len -= 1 + (*p);
569 p += 1 + (*p);
Antonio Quartulli43676ab2011-04-26 21:31:45 +0200570 }
571 }
572out:
573 return ret;
574}
575
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200576bool batadv_gw_is_dhcp_target(struct sk_buff *skb, unsigned int *header_len)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000577{
578 struct ethhdr *ethhdr;
579 struct iphdr *iphdr;
580 struct ipv6hdr *ipv6hdr;
581 struct udphdr *udphdr;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000582
583 /* check for ethernet header */
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200584 if (!pskb_may_pull(skb, *header_len + ETH_HLEN))
585 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000586 ethhdr = (struct ethhdr *)skb->data;
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200587 *header_len += ETH_HLEN;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000588
589 /* check for initial vlan header */
590 if (ntohs(ethhdr->h_proto) == ETH_P_8021Q) {
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200591 if (!pskb_may_pull(skb, *header_len + VLAN_HLEN))
592 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000593 ethhdr = (struct ethhdr *)(skb->data + VLAN_HLEN);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200594 *header_len += VLAN_HLEN;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000595 }
596
597 /* check for ip header */
598 switch (ntohs(ethhdr->h_proto)) {
599 case ETH_P_IP:
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200600 if (!pskb_may_pull(skb, *header_len + sizeof(*iphdr)))
601 return false;
602 iphdr = (struct iphdr *)(skb->data + *header_len);
603 *header_len += iphdr->ihl * 4;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000604
605 /* check for udp header */
606 if (iphdr->protocol != IPPROTO_UDP)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200607 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000608
609 break;
610 case ETH_P_IPV6:
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200611 if (!pskb_may_pull(skb, *header_len + sizeof(*ipv6hdr)))
612 return false;
613 ipv6hdr = (struct ipv6hdr *)(skb->data + *header_len);
614 *header_len += sizeof(*ipv6hdr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000615
616 /* check for udp header */
617 if (ipv6hdr->nexthdr != IPPROTO_UDP)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200618 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000619
620 break;
621 default:
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200622 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000623 }
624
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200625 if (!pskb_may_pull(skb, *header_len + sizeof(*udphdr)))
626 return false;
627 udphdr = (struct udphdr *)(skb->data + *header_len);
628 *header_len += sizeof(*udphdr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000629
630 /* check for bootp port */
631 if ((ntohs(ethhdr->h_proto) == ETH_P_IP) &&
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100632 (ntohs(udphdr->dest) != 67))
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200633 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000634
635 if ((ntohs(ethhdr->h_proto) == ETH_P_IPV6) &&
636 (ntohs(udphdr->dest) != 547))
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200637 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000638
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200639 return true;
640}
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000641
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200642bool batadv_gw_out_of_range(struct bat_priv *bat_priv,
643 struct sk_buff *skb, struct ethhdr *ethhdr)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200644{
645 struct neigh_node *neigh_curr = NULL, *neigh_old = NULL;
646 struct orig_node *orig_dst_node = NULL;
647 struct gw_node *curr_gw = NULL;
648 bool ret, out_of_range = false;
649 unsigned int header_len = 0;
650 uint8_t curr_tq_avg;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000651
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200652 ret = batadv_gw_is_dhcp_target(skb, &header_len);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200653 if (!ret)
654 goto out;
655
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200656 orig_dst_node = batadv_transtable_search(bat_priv, ethhdr->h_source,
657 ethhdr->h_dest);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200658 if (!orig_dst_node)
659 goto out;
660
661 if (!orig_dst_node->gw_flags)
662 goto out;
663
Sven Eckelmann1409a832012-05-12 18:33:55 +0200664 ret = batadv_is_type_dhcprequest(skb, header_len);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200665 if (!ret)
666 goto out;
667
668 switch (atomic_read(&bat_priv->gw_mode)) {
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200669 case BATADV_GW_MODE_SERVER:
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200670 /* If we are a GW then we are our best GW. We can artificially
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200671 * set the tq towards ourself as the maximum value
672 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200673 curr_tq_avg = BATADV_TQ_MAX_VALUE;
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200674 break;
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200675 case BATADV_GW_MODE_CLIENT:
Sven Eckelmann1409a832012-05-12 18:33:55 +0200676 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200677 if (!curr_gw)
678 goto out;
679
680 /* packet is going to our gateway */
681 if (curr_gw->orig_node == orig_dst_node)
682 goto out;
683
684 /* If the dhcp packet has been sent to a different gw,
685 * we have to evaluate whether the old gw is still
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200686 * reliable enough
687 */
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200688 neigh_curr = batadv_find_router(bat_priv, curr_gw->orig_node,
689 NULL);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200690 if (!neigh_curr)
691 goto out;
692
693 curr_tq_avg = neigh_curr->tq_avg;
694 break;
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200695 case BATADV_GW_MODE_OFF:
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200696 default:
697 goto out;
Antonio Quartulli43676ab2011-04-26 21:31:45 +0200698 }
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200699
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200700 neigh_old = batadv_find_router(bat_priv, orig_dst_node, NULL);
Dan Carpenter2ef04f42011-11-29 09:09:09 +0300701 if (!neigh_old)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200702 goto out;
703
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200704 if (curr_tq_avg - neigh_old->tq_avg > BATADV_GW_THRESHOLD)
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200705 out_of_range = true;
706
707out:
708 if (orig_dst_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200709 batadv_orig_node_free_ref(orig_dst_node);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200710 if (curr_gw)
Sven Eckelmann1409a832012-05-12 18:33:55 +0200711 batadv_gw_node_free_ref(curr_gw);
Antonio Quartulli43676ab2011-04-26 21:31:45 +0200712 if (neigh_old)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200713 batadv_neigh_node_free_ref(neigh_old);
Antonio Quartulli43676ab2011-04-26 21:31:45 +0200714 if (neigh_curr)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200715 batadv_neigh_node_free_ref(neigh_curr);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200716 return out_of_range;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000717}