blob: 90fd5ee877d1501d8490726aef902f3e24bdcdd7 [file] [log] [blame]
Linus Luessingd6f94d92016-01-16 16:40:09 +08001/* Copyright (C) 2013-2016 B.A.T.M.A.N. contributors:
2 *
3 * Linus Lüssing, 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, see <http://www.gnu.org/licenses/>.
16 */
17
Sven Eckelmanna2d08162016-05-15 11:07:46 +020018#include "bat_v.h"
Linus Luessingd6f94d92016-01-16 16:40:09 +080019#include "main.h"
20
Antonio Quartulli0b5ecc62016-01-16 16:40:14 +080021#include <linux/atomic.h>
Antonio Quartulli97869062016-01-16 16:40:17 +080022#include <linux/bug.h>
Linus Luessingd6f94d92016-01-16 16:40:09 +080023#include <linux/cache.h>
Antonio Quartulli08686942016-07-03 12:46:32 +020024#include <linux/errno.h>
Linus Luessingd6f94d92016-01-16 16:40:09 +080025#include <linux/init.h>
Antonio Quartulli261e2642016-01-16 16:40:18 +080026#include <linux/jiffies.h>
Antonio Quartulli08686942016-07-03 12:46:32 +020027#include <linux/kernel.h>
Antonio Quartulli261e2642016-01-16 16:40:18 +080028#include <linux/netdevice.h>
29#include <linux/rculist.h>
30#include <linux/rcupdate.h>
31#include <linux/seq_file.h>
Sven Eckelmanna45e9322016-05-06 11:43:38 +020032#include <linux/stddef.h>
Antonio Quartulli97869062016-01-16 16:40:17 +080033#include <linux/types.h>
Antonio Quartullic8334842015-11-10 18:50:51 +010034#include <linux/workqueue.h>
Linus Luessingd6f94d92016-01-16 16:40:09 +080035
Sven Eckelmanna2d08162016-05-15 11:07:46 +020036#include "bat_algo.h"
Linus Luessingd6f94d92016-01-16 16:40:09 +080037#include "bat_v_elp.h"
Antonio Quartulli0da00352016-01-16 16:40:12 +080038#include "bat_v_ogm.h"
Antonio Quartulli08686942016-07-03 12:46:32 +020039#include "gateway_client.h"
40#include "gateway_common.h"
Antonio Quartullib6cf5d42016-04-14 09:37:05 +080041#include "hard-interface.h"
Antonio Quartulli261e2642016-01-16 16:40:18 +080042#include "hash.h"
Antonio Quartulli97869062016-01-16 16:40:17 +080043#include "originator.h"
Linus Luessing162bd642016-01-16 16:40:10 +080044#include "packet.h"
Linus Luessingd6f94d92016-01-16 16:40:09 +080045
Antonio Quartullib6cf5d42016-04-14 09:37:05 +080046static void batadv_v_iface_activate(struct batadv_hard_iface *hard_iface)
47{
Marek Lindnerebe24ce2016-05-07 19:54:17 +080048 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
49 struct batadv_hard_iface *primary_if;
50
51 primary_if = batadv_primary_if_get_selected(bat_priv);
52
53 if (primary_if) {
54 batadv_v_elp_iface_activate(primary_if, hard_iface);
55 batadv_hardif_put(primary_if);
56 }
57
Antonio Quartullib6cf5d42016-04-14 09:37:05 +080058 /* B.A.T.M.A.N. V does not use any queuing mechanism, therefore it can
59 * set the interface as ACTIVE right away, without any risk of race
60 * condition
61 */
62 if (hard_iface->if_status == BATADV_IF_TO_BE_ACTIVATED)
63 hard_iface->if_status = BATADV_IF_ACTIVE;
64}
65
Linus Luessingd6f94d92016-01-16 16:40:09 +080066static int batadv_v_iface_enable(struct batadv_hard_iface *hard_iface)
67{
Antonio Quartulli0da00352016-01-16 16:40:12 +080068 int ret;
69
70 ret = batadv_v_elp_iface_enable(hard_iface);
71 if (ret < 0)
72 return ret;
73
74 ret = batadv_v_ogm_iface_enable(hard_iface);
75 if (ret < 0)
76 batadv_v_elp_iface_disable(hard_iface);
77
78 return ret;
Linus Luessingd6f94d92016-01-16 16:40:09 +080079}
80
81static void batadv_v_iface_disable(struct batadv_hard_iface *hard_iface)
82{
83 batadv_v_elp_iface_disable(hard_iface);
84}
85
Linus Luessingd6f94d92016-01-16 16:40:09 +080086static void batadv_v_primary_iface_set(struct batadv_hard_iface *hard_iface)
87{
88 batadv_v_elp_primary_iface_set(hard_iface);
Antonio Quartulli0da00352016-01-16 16:40:12 +080089 batadv_v_ogm_primary_iface_set(hard_iface);
Linus Luessingd6f94d92016-01-16 16:40:09 +080090}
91
Antonio Quartulli1653f612016-05-02 01:14:40 +080092/**
93 * batadv_v_iface_update_mac - react to hard-interface MAC address change
94 * @hard_iface: the modified interface
95 *
96 * If the modified interface is the primary one, update the originator
97 * address in the ELP and OGM messages to reflect the new MAC address.
98 */
99static void batadv_v_iface_update_mac(struct batadv_hard_iface *hard_iface)
100{
101 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
102 struct batadv_hard_iface *primary_if;
103
104 primary_if = batadv_primary_if_get_selected(bat_priv);
105 if (primary_if != hard_iface)
106 goto out;
107
108 batadv_v_primary_iface_set(hard_iface);
109out:
110 if (primary_if)
111 batadv_hardif_put(primary_if);
112}
113
Linus Luessing162bd642016-01-16 16:40:10 +0800114static void
115batadv_v_hardif_neigh_init(struct batadv_hardif_neigh_node *hardif_neigh)
116{
117 ewma_throughput_init(&hardif_neigh->bat_v.throughput);
Antonio Quartullic8334842015-11-10 18:50:51 +0100118 INIT_WORK(&hardif_neigh->bat_v.metric_work,
119 batadv_v_elp_throughput_metric_update);
Linus Luessing162bd642016-01-16 16:40:10 +0800120}
121
Antonio Quartulli261e2642016-01-16 16:40:18 +0800122/**
123 * batadv_v_orig_print_neigh - print neighbors for the originator table
124 * @orig_node: the orig_node for which the neighbors are printed
125 * @if_outgoing: outgoing interface for these entries
126 * @seq: debugfs table seq_file struct
127 *
128 * Must be called while holding an rcu lock.
129 */
130static void
131batadv_v_orig_print_neigh(struct batadv_orig_node *orig_node,
132 struct batadv_hard_iface *if_outgoing,
133 struct seq_file *seq)
134{
135 struct batadv_neigh_node *neigh_node;
136 struct batadv_neigh_ifinfo *n_ifinfo;
137
138 hlist_for_each_entry_rcu(neigh_node, &orig_node->neigh_list, list) {
139 n_ifinfo = batadv_neigh_ifinfo_get(neigh_node, if_outgoing);
140 if (!n_ifinfo)
141 continue;
142
143 seq_printf(seq, " %pM (%9u.%1u)",
144 neigh_node->addr,
145 n_ifinfo->bat_v.throughput / 10,
146 n_ifinfo->bat_v.throughput % 10);
147
148 batadv_neigh_ifinfo_put(n_ifinfo);
149 }
150}
151
152/**
Linus Luessing626d23e2016-01-16 16:40:19 +0800153 * batadv_v_hardif_neigh_print - print a single ELP neighbour node
154 * @seq: neighbour table seq_file struct
155 * @hardif_neigh: hardif neighbour information
156 */
157static void
158batadv_v_hardif_neigh_print(struct seq_file *seq,
159 struct batadv_hardif_neigh_node *hardif_neigh)
160{
161 int last_secs, last_msecs;
162 u32 throughput;
163
164 last_secs = jiffies_to_msecs(jiffies - hardif_neigh->last_seen) / 1000;
165 last_msecs = jiffies_to_msecs(jiffies - hardif_neigh->last_seen) % 1000;
166 throughput = ewma_throughput_read(&hardif_neigh->bat_v.throughput);
167
168 seq_printf(seq, "%pM %4i.%03is (%9u.%1u) [%10s]\n",
169 hardif_neigh->addr, last_secs, last_msecs, throughput / 10,
170 throughput % 10, hardif_neigh->if_incoming->net_dev->name);
171}
172
173/**
174 * batadv_v_neigh_print - print the single hop neighbour list
175 * @bat_priv: the bat priv with all the soft interface information
176 * @seq: neighbour table seq_file struct
177 */
178static void batadv_v_neigh_print(struct batadv_priv *bat_priv,
179 struct seq_file *seq)
180{
181 struct net_device *net_dev = (struct net_device *)seq->private;
182 struct batadv_hardif_neigh_node *hardif_neigh;
183 struct batadv_hard_iface *hard_iface;
184 int batman_count = 0;
185
Antonio Quartulli925a6f32016-03-12 10:30:18 +0100186 seq_puts(seq,
187 " Neighbor last-seen ( throughput) [ IF]\n");
Linus Luessing626d23e2016-01-16 16:40:19 +0800188
189 rcu_read_lock();
190 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
191 if (hard_iface->soft_iface != net_dev)
192 continue;
193
194 hlist_for_each_entry_rcu(hardif_neigh,
195 &hard_iface->neigh_list, list) {
196 batadv_v_hardif_neigh_print(seq, hardif_neigh);
197 batman_count++;
198 }
199 }
200 rcu_read_unlock();
201
202 if (batman_count == 0)
203 seq_puts(seq, "No batman nodes in range ...\n");
204}
205
206/**
Antonio Quartulli261e2642016-01-16 16:40:18 +0800207 * batadv_v_orig_print - print the originator table
208 * @bat_priv: the bat priv with all the soft interface information
209 * @seq: debugfs table seq_file struct
210 * @if_outgoing: the outgoing interface for which this should be printed
211 */
212static void batadv_v_orig_print(struct batadv_priv *bat_priv,
213 struct seq_file *seq,
214 struct batadv_hard_iface *if_outgoing)
215{
216 struct batadv_neigh_node *neigh_node;
217 struct batadv_hashtable *hash = bat_priv->orig_hash;
218 int last_seen_msecs, last_seen_secs;
219 struct batadv_orig_node *orig_node;
220 struct batadv_neigh_ifinfo *n_ifinfo;
221 unsigned long last_seen_jiffies;
222 struct hlist_head *head;
223 int batman_count = 0;
224 u32 i;
225
Antonio Quartulli925a6f32016-03-12 10:30:18 +0100226 seq_puts(seq,
227 " Originator last-seen ( throughput) Nexthop [outgoingIF]: Potential nexthops ...\n");
Antonio Quartulli261e2642016-01-16 16:40:18 +0800228
229 for (i = 0; i < hash->size; i++) {
230 head = &hash->table[i];
231
232 rcu_read_lock();
233 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
234 neigh_node = batadv_orig_router_get(orig_node,
235 if_outgoing);
236 if (!neigh_node)
237 continue;
238
239 n_ifinfo = batadv_neigh_ifinfo_get(neigh_node,
240 if_outgoing);
241 if (!n_ifinfo)
242 goto next;
243
244 last_seen_jiffies = jiffies - orig_node->last_seen;
245 last_seen_msecs = jiffies_to_msecs(last_seen_jiffies);
246 last_seen_secs = last_seen_msecs / 1000;
247 last_seen_msecs = last_seen_msecs % 1000;
248
249 seq_printf(seq, "%pM %4i.%03is (%9u.%1u) %pM [%10s]:",
250 orig_node->orig, last_seen_secs,
251 last_seen_msecs,
252 n_ifinfo->bat_v.throughput / 10,
253 n_ifinfo->bat_v.throughput % 10,
254 neigh_node->addr,
255 neigh_node->if_incoming->net_dev->name);
256
257 batadv_v_orig_print_neigh(orig_node, if_outgoing, seq);
258 seq_puts(seq, "\n");
259 batman_count++;
260
261next:
262 batadv_neigh_node_put(neigh_node);
263 if (n_ifinfo)
264 batadv_neigh_ifinfo_put(n_ifinfo);
265 }
266 rcu_read_unlock();
267 }
268
269 if (batman_count == 0)
270 seq_puts(seq, "No batman nodes in range ...\n");
271}
272
Antonio Quartulli97869062016-01-16 16:40:17 +0800273static int batadv_v_neigh_cmp(struct batadv_neigh_node *neigh1,
274 struct batadv_hard_iface *if_outgoing1,
275 struct batadv_neigh_node *neigh2,
276 struct batadv_hard_iface *if_outgoing2)
277{
278 struct batadv_neigh_ifinfo *ifinfo1, *ifinfo2;
Sven Eckelmann71f9d272016-05-06 11:43:39 +0200279 int ret = 0;
Antonio Quartulli97869062016-01-16 16:40:17 +0800280
281 ifinfo1 = batadv_neigh_ifinfo_get(neigh1, if_outgoing1);
Sven Eckelmann71f9d272016-05-06 11:43:39 +0200282 if (WARN_ON(!ifinfo1))
283 goto err_ifinfo1;
284
Antonio Quartulli97869062016-01-16 16:40:17 +0800285 ifinfo2 = batadv_neigh_ifinfo_get(neigh2, if_outgoing2);
Sven Eckelmann71f9d272016-05-06 11:43:39 +0200286 if (WARN_ON(!ifinfo2))
287 goto err_ifinfo2;
Antonio Quartulli97869062016-01-16 16:40:17 +0800288
Sven Eckelmann71f9d272016-05-06 11:43:39 +0200289 ret = ifinfo1->bat_v.throughput - ifinfo2->bat_v.throughput;
Antonio Quartulli97869062016-01-16 16:40:17 +0800290
Sven Eckelmann71f9d272016-05-06 11:43:39 +0200291 batadv_neigh_ifinfo_put(ifinfo2);
292err_ifinfo2:
293 batadv_neigh_ifinfo_put(ifinfo1);
294err_ifinfo1:
295 return ret;
Antonio Quartulli97869062016-01-16 16:40:17 +0800296}
297
298static bool batadv_v_neigh_is_sob(struct batadv_neigh_node *neigh1,
299 struct batadv_hard_iface *if_outgoing1,
300 struct batadv_neigh_node *neigh2,
301 struct batadv_hard_iface *if_outgoing2)
302{
303 struct batadv_neigh_ifinfo *ifinfo1, *ifinfo2;
304 u32 threshold;
Sven Eckelmann71f9d272016-05-06 11:43:39 +0200305 bool ret = false;
Antonio Quartulli97869062016-01-16 16:40:17 +0800306
307 ifinfo1 = batadv_neigh_ifinfo_get(neigh1, if_outgoing1);
Sven Eckelmann71f9d272016-05-06 11:43:39 +0200308 if (WARN_ON(!ifinfo1))
309 goto err_ifinfo1;
Antonio Quartulli97869062016-01-16 16:40:17 +0800310
Sven Eckelmann71f9d272016-05-06 11:43:39 +0200311 ifinfo2 = batadv_neigh_ifinfo_get(neigh2, if_outgoing2);
312 if (WARN_ON(!ifinfo2))
313 goto err_ifinfo2;
Sven Eckelmanna45e9322016-05-06 11:43:38 +0200314
Antonio Quartulli97869062016-01-16 16:40:17 +0800315 threshold = ifinfo1->bat_v.throughput / 4;
316 threshold = ifinfo1->bat_v.throughput - threshold;
317
Sven Eckelmann71f9d272016-05-06 11:43:39 +0200318 ret = ifinfo2->bat_v.throughput > threshold;
319
320 batadv_neigh_ifinfo_put(ifinfo2);
321err_ifinfo2:
322 batadv_neigh_ifinfo_put(ifinfo1);
323err_ifinfo1:
324 return ret;
Antonio Quartulli97869062016-01-16 16:40:17 +0800325}
326
Antonio Quartulli08686942016-07-03 12:46:32 +0200327static ssize_t batadv_v_store_sel_class(struct batadv_priv *bat_priv,
328 char *buff, size_t count)
329{
330 u32 old_class, class;
331
332 if (!batadv_parse_throughput(bat_priv->soft_iface, buff,
333 "B.A.T.M.A.N. V GW selection class",
334 &class))
335 return -EINVAL;
336
337 old_class = atomic_read(&bat_priv->gw.sel_class);
338 atomic_set(&bat_priv->gw.sel_class, class);
339
340 if (old_class != class)
341 batadv_gw_reselect(bat_priv);
342
343 return count;
344}
345
346static ssize_t batadv_v_show_sel_class(struct batadv_priv *bat_priv, char *buff)
347{
348 u32 class = atomic_read(&bat_priv->gw.sel_class);
349
350 return sprintf(buff, "%u.%u MBit\n", class / 10, class % 10);
351}
352
Linus Luessingd6f94d92016-01-16 16:40:09 +0800353static struct batadv_algo_ops batadv_batman_v __read_mostly = {
354 .name = "BATMAN_V",
Antonio Quartulli29824a52016-05-25 23:27:31 +0800355 .iface = {
356 .activate = batadv_v_iface_activate,
357 .enable = batadv_v_iface_enable,
358 .disable = batadv_v_iface_disable,
359 .update_mac = batadv_v_iface_update_mac,
360 .primary_set = batadv_v_primary_iface_set,
361 },
362 .neigh = {
363 .hardif_init = batadv_v_hardif_neigh_init,
364 .cmp = batadv_v_neigh_cmp,
365 .is_similar_or_better = batadv_v_neigh_is_sob,
366 .print = batadv_v_neigh_print,
367 },
368 .orig = {
369 .print = batadv_v_orig_print,
370 },
Antonio Quartulli08686942016-07-03 12:46:32 +0200371 .gw = {
372 .store_sel_class = batadv_v_store_sel_class,
373 .show_sel_class = batadv_v_show_sel_class,
374 },
Linus Luessingd6f94d92016-01-16 16:40:09 +0800375};
376
377/**
Marek Lindner7db682d2016-05-10 22:31:59 +0800378 * batadv_v_hardif_init - initialize the algorithm specific fields in the
379 * hard-interface object
380 * @hard_iface: the hard-interface to initialize
381 */
382void batadv_v_hardif_init(struct batadv_hard_iface *hard_iface)
383{
384 /* enable link throughput auto-detection by setting the throughput
385 * override to zero
386 */
387 atomic_set(&hard_iface->bat_v.throughput_override, 0);
388 atomic_set(&hard_iface->bat_v.elp_interval, 500);
389}
390
391/**
Antonio Quartulli0da00352016-01-16 16:40:12 +0800392 * batadv_v_mesh_init - initialize the B.A.T.M.A.N. V private resources for a
393 * mesh
394 * @bat_priv: the object representing the mesh interface to initialise
395 *
396 * Return: 0 on success or a negative error code otherwise
397 */
398int batadv_v_mesh_init(struct batadv_priv *bat_priv)
399{
400 return batadv_v_ogm_init(bat_priv);
401}
402
403/**
404 * batadv_v_mesh_free - free the B.A.T.M.A.N. V private resources for a mesh
405 * @bat_priv: the object representing the mesh interface to free
406 */
407void batadv_v_mesh_free(struct batadv_priv *bat_priv)
408{
409 batadv_v_ogm_free(bat_priv);
410}
411
412/**
Linus Luessingd6f94d92016-01-16 16:40:09 +0800413 * batadv_v_init - B.A.T.M.A.N. V initialization function
414 *
415 * Description: Takes care of initializing all the subcomponents.
416 * It is invoked upon module load only.
417 *
418 * Return: 0 on success or a negative error code otherwise
419 */
420int __init batadv_v_init(void)
421{
Linus Luessing162bd642016-01-16 16:40:10 +0800422 int ret;
423
424 /* B.A.T.M.A.N. V echo location protocol packet */
425 ret = batadv_recv_handler_register(BATADV_ELP,
426 batadv_v_elp_packet_recv);
427 if (ret < 0)
428 return ret;
429
Antonio Quartulli0da00352016-01-16 16:40:12 +0800430 ret = batadv_recv_handler_register(BATADV_OGM2,
431 batadv_v_ogm_packet_recv);
Linus Luessing162bd642016-01-16 16:40:10 +0800432 if (ret < 0)
Antonio Quartulli0da00352016-01-16 16:40:12 +0800433 goto elp_unregister;
434
435 ret = batadv_algo_register(&batadv_batman_v);
436 if (ret < 0)
437 goto ogm_unregister;
438
439 return ret;
440
441ogm_unregister:
442 batadv_recv_handler_unregister(BATADV_OGM2);
443
444elp_unregister:
445 batadv_recv_handler_unregister(BATADV_ELP);
Linus Luessing162bd642016-01-16 16:40:10 +0800446
447 return ret;
Linus Luessingd6f94d92016-01-16 16:40:09 +0800448}