blob: fe578f75c39137c451fcc307e729046bd1d1c3c0 [file] [log] [blame]
Sven Eckelmann9f6446c2015-04-23 13:16:35 +02001/* Copyright (C) 2009-2015 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002 *
3 * Marek Lindner, Simon Wunderlich
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
Antonio Quartulliebf38fb2013-11-03 20:40:48 +010015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000016 */
17
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018#include "originator.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020019#include "main.h"
20
21#include <linux/errno.h>
22#include <linux/etherdevice.h>
23#include <linux/fs.h>
24#include <linux/jiffies.h>
25#include <linux/kernel.h>
26#include <linux/list.h>
27#include <linux/lockdep.h>
28#include <linux/netdevice.h>
Marek Lindnerd0fa4f32015-06-22 00:30:22 +080029#include <linux/rculist.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020030#include <linux/seq_file.h>
31#include <linux/slab.h>
32#include <linux/spinlock.h>
33#include <linux/workqueue.h>
34
35#include "distributed-arp-table.h"
36#include "fragmentation.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000037#include "gateway_client.h"
38#include "hard-interface.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020039#include "hash.h"
Linus Lüssing60432d72014-02-15 17:47:51 +010040#include "multicast.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020041#include "network-coding.h"
42#include "routing.h"
43#include "translation-table.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000044
Antonio Quartullidec05072012-11-10 11:00:32 +010045/* hash class keys */
46static struct lock_class_key batadv_orig_hash_lock_class_key;
47
Sven Eckelmann03fc7f82012-05-12 18:34:00 +020048static void batadv_purge_orig(struct work_struct *work);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000049
Sven Eckelmannb8e2dd12011-06-15 15:08:59 +020050/* returns 1 if they are the same originator */
Antonio Quartullibbad0a52013-09-02 12:15:02 +020051int batadv_compare_orig(const struct hlist_node *node, const void *data2)
Sven Eckelmannb8e2dd12011-06-15 15:08:59 +020052{
Sven Eckelmann56303d32012-06-05 22:31:31 +020053 const void *data1 = container_of(node, struct batadv_orig_node,
54 hash_entry);
Sven Eckelmannb8e2dd12011-06-15 15:08:59 +020055
dingtianhong323813e2013-12-26 19:40:39 +080056 return batadv_compare_eth(data1, data2);
Sven Eckelmannb8e2dd12011-06-15 15:08:59 +020057}
58
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +020059/**
60 * batadv_orig_node_vlan_get - get an orig_node_vlan object
61 * @orig_node: the originator serving the VLAN
62 * @vid: the VLAN identifier
63 *
64 * Returns the vlan object identified by vid and belonging to orig_node or NULL
65 * if it does not exist.
66 */
67struct batadv_orig_node_vlan *
68batadv_orig_node_vlan_get(struct batadv_orig_node *orig_node,
69 unsigned short vid)
70{
71 struct batadv_orig_node_vlan *vlan = NULL, *tmp;
72
73 rcu_read_lock();
Marek Lindnerd0fa4f32015-06-22 00:30:22 +080074 hlist_for_each_entry_rcu(tmp, &orig_node->vlan_list, list) {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +020075 if (tmp->vid != vid)
76 continue;
77
78 if (!atomic_inc_not_zero(&tmp->refcount))
79 continue;
80
81 vlan = tmp;
82
83 break;
84 }
85 rcu_read_unlock();
86
87 return vlan;
88}
89
90/**
91 * batadv_orig_node_vlan_new - search and possibly create an orig_node_vlan
92 * object
93 * @orig_node: the originator serving the VLAN
94 * @vid: the VLAN identifier
95 *
96 * Returns NULL in case of failure or the vlan object identified by vid and
97 * belonging to orig_node otherwise. The object is created and added to the list
98 * if it does not exist.
99 *
100 * The object is returned with refcounter increased by 1.
101 */
102struct batadv_orig_node_vlan *
103batadv_orig_node_vlan_new(struct batadv_orig_node *orig_node,
104 unsigned short vid)
105{
106 struct batadv_orig_node_vlan *vlan;
107
108 spin_lock_bh(&orig_node->vlan_list_lock);
109
110 /* first look if an object for this vid already exists */
111 vlan = batadv_orig_node_vlan_get(orig_node, vid);
112 if (vlan)
113 goto out;
114
115 vlan = kzalloc(sizeof(*vlan), GFP_ATOMIC);
116 if (!vlan)
117 goto out;
118
119 atomic_set(&vlan->refcount, 2);
120 vlan->vid = vid;
121
Marek Lindnerd0fa4f32015-06-22 00:30:22 +0800122 hlist_add_head_rcu(&vlan->list, &orig_node->vlan_list);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200123
124out:
125 spin_unlock_bh(&orig_node->vlan_list_lock);
126
127 return vlan;
128}
129
130/**
131 * batadv_orig_node_vlan_free_ref - decrement the refcounter and possibly free
132 * the originator-vlan object
133 * @orig_vlan: the originator-vlan object to release
134 */
135void batadv_orig_node_vlan_free_ref(struct batadv_orig_node_vlan *orig_vlan)
136{
137 if (atomic_dec_and_test(&orig_vlan->refcount))
138 kfree_rcu(orig_vlan, rcu);
139}
140
Sven Eckelmann56303d32012-06-05 22:31:31 +0200141int batadv_originator_init(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000142{
143 if (bat_priv->orig_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200144 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000145
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +0200146 bat_priv->orig_hash = batadv_hash_new(1024);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000147
148 if (!bat_priv->orig_hash)
149 goto err;
150
Antonio Quartullidec05072012-11-10 11:00:32 +0100151 batadv_hash_set_lock_class(bat_priv->orig_hash,
152 &batadv_orig_hash_lock_class_key);
153
Antonio Quartulli72414442012-12-25 13:14:37 +0100154 INIT_DELAYED_WORK(&bat_priv->orig_work, batadv_purge_orig);
155 queue_delayed_work(batadv_event_workqueue,
156 &bat_priv->orig_work,
157 msecs_to_jiffies(BATADV_ORIG_WORK_PERIOD));
158
Sven Eckelmann5346c352012-05-05 13:27:28 +0200159 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000160
161err:
Sven Eckelmann5346c352012-05-05 13:27:28 +0200162 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000163}
164
Simon Wunderlich89652332013-11-13 19:14:46 +0100165/**
Sven Eckelmannae3e1e32016-01-05 12:06:24 +0100166 * batadv_neigh_ifinfo_release - release neigh_ifinfo from lists and queue for
167 * free after rcu grace period
Simon Wunderlich89652332013-11-13 19:14:46 +0100168 * @neigh_ifinfo: the neigh_ifinfo object to release
169 */
170static void
Sven Eckelmannae3e1e32016-01-05 12:06:24 +0100171batadv_neigh_ifinfo_release(struct batadv_neigh_ifinfo *neigh_ifinfo)
Simon Wunderlich89652332013-11-13 19:14:46 +0100172{
Sven Eckelmannae3e1e32016-01-05 12:06:24 +0100173 if (neigh_ifinfo->if_outgoing != BATADV_IF_DEFAULT)
174 batadv_hardif_free_ref(neigh_ifinfo->if_outgoing);
175
176 kfree_rcu(neigh_ifinfo, rcu);
Simon Wunderlich89652332013-11-13 19:14:46 +0100177}
178
179/**
Sven Eckelmannae3e1e32016-01-05 12:06:24 +0100180 * batadv_neigh_ifinfo_free_ref - decrement the refcounter and possibly release
Simon Wunderlich89652332013-11-13 19:14:46 +0100181 * the neigh_ifinfo
182 * @neigh_ifinfo: the neigh_ifinfo object to release
183 */
184void batadv_neigh_ifinfo_free_ref(struct batadv_neigh_ifinfo *neigh_ifinfo)
185{
186 if (atomic_dec_and_test(&neigh_ifinfo->refcount))
Sven Eckelmannae3e1e32016-01-05 12:06:24 +0100187 batadv_neigh_ifinfo_release(neigh_ifinfo);
Simon Wunderlich89652332013-11-13 19:14:46 +0100188}
189
190/**
Sven Eckelmannf6389692016-01-05 12:06:23 +0100191 * batadv_hardif_neigh_release - release hardif neigh node from lists and
192 * queue for free after rcu grace period
Marek Lindnercef63412015-08-04 21:09:55 +0800193 * @hardif_neigh: hardif neigh neighbor to free
194 */
195static void
Sven Eckelmannf6389692016-01-05 12:06:23 +0100196batadv_hardif_neigh_release(struct batadv_hardif_neigh_node *hardif_neigh)
Marek Lindnercef63412015-08-04 21:09:55 +0800197{
Sven Eckelmannf6389692016-01-05 12:06:23 +0100198 spin_lock_bh(&hardif_neigh->if_incoming->neigh_list_lock);
199 hlist_del_init_rcu(&hardif_neigh->list);
200 spin_unlock_bh(&hardif_neigh->if_incoming->neigh_list_lock);
Sven Eckelmannbab7c6c2016-01-05 12:06:17 +0100201
Sven Eckelmannf6389692016-01-05 12:06:23 +0100202 batadv_hardif_free_ref(hardif_neigh->if_incoming);
203 kfree_rcu(hardif_neigh, rcu);
Marek Lindnercef63412015-08-04 21:09:55 +0800204}
205
206/**
207 * batadv_hardif_neigh_free_ref - decrement the hardif neighbors refcounter
Sven Eckelmannf6389692016-01-05 12:06:23 +0100208 * and possibly release it
Marek Lindnercef63412015-08-04 21:09:55 +0800209 * @hardif_neigh: hardif neigh neighbor to free
210 */
211void batadv_hardif_neigh_free_ref(struct batadv_hardif_neigh_node *hardif_neigh)
212{
Sven Eckelmannf6389692016-01-05 12:06:23 +0100213 if (atomic_dec_and_test(&hardif_neigh->refcount))
214 batadv_hardif_neigh_release(hardif_neigh);
Marek Lindnercef63412015-08-04 21:09:55 +0800215}
216
217/**
Sven Eckelmannb4d922c2016-01-05 12:06:25 +0100218 * batadv_neigh_node_release - release neigh_node from lists and queue for
219 * free after rcu grace period
220 * @neigh_node: neigh neighbor to free
Simon Wunderlich89652332013-11-13 19:14:46 +0100221 */
Sven Eckelmannb4d922c2016-01-05 12:06:25 +0100222static void batadv_neigh_node_release(struct batadv_neigh_node *neigh_node)
Simon Wunderlich89652332013-11-13 19:14:46 +0100223{
224 struct hlist_node *node_tmp;
Marek Lindnercef63412015-08-04 21:09:55 +0800225 struct batadv_hardif_neigh_node *hardif_neigh;
Simon Wunderlich89652332013-11-13 19:14:46 +0100226 struct batadv_neigh_ifinfo *neigh_ifinfo;
Antonio Quartullibcef1f32015-03-01 00:50:17 +0800227 struct batadv_algo_ops *bao;
Simon Wunderlich89652332013-11-13 19:14:46 +0100228
Antonio Quartullibcef1f32015-03-01 00:50:17 +0800229 bao = neigh_node->orig_node->bat_priv->bat_algo_ops;
Simon Wunderlich89652332013-11-13 19:14:46 +0100230
231 hlist_for_each_entry_safe(neigh_ifinfo, node_tmp,
232 &neigh_node->ifinfo_list, list) {
Sven Eckelmannae3e1e32016-01-05 12:06:24 +0100233 batadv_neigh_ifinfo_free_ref(neigh_ifinfo);
Simon Wunderlich89652332013-11-13 19:14:46 +0100234 }
Antonio Quartullibcef1f32015-03-01 00:50:17 +0800235
Marek Lindnercef63412015-08-04 21:09:55 +0800236 hardif_neigh = batadv_hardif_neigh_get(neigh_node->if_incoming,
237 neigh_node->addr);
238 if (hardif_neigh) {
239 /* batadv_hardif_neigh_get() increases refcount too */
Sven Eckelmannf6389692016-01-05 12:06:23 +0100240 batadv_hardif_neigh_free_ref(hardif_neigh);
241 batadv_hardif_neigh_free_ref(hardif_neigh);
Marek Lindnercef63412015-08-04 21:09:55 +0800242 }
243
Antonio Quartullibcef1f32015-03-01 00:50:17 +0800244 if (bao->bat_neigh_free)
245 bao->bat_neigh_free(neigh_node);
246
Sven Eckelmannb4d922c2016-01-05 12:06:25 +0100247 batadv_hardif_free_ref(neigh_node->if_incoming);
Simon Wunderlich89652332013-11-13 19:14:46 +0100248
Sven Eckelmannb4d922c2016-01-05 12:06:25 +0100249 kfree_rcu(neigh_node, rcu);
Simon Wunderlich89652332013-11-13 19:14:46 +0100250}
251
252/**
Simon Wunderlich89652332013-11-13 19:14:46 +0100253 * batadv_neigh_node_free_ref - decrement the neighbors refcounter
Sven Eckelmann2baa7532016-01-05 12:06:22 +0100254 * and possibly release it
Simon Wunderlich89652332013-11-13 19:14:46 +0100255 * @neigh_node: neigh neighbor to free
256 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200257void batadv_neigh_node_free_ref(struct batadv_neigh_node *neigh_node)
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000258{
Marek Lindner44524fc2011-02-10 14:33:53 +0000259 if (atomic_dec_and_test(&neigh_node->refcount))
Sven Eckelmannb4d922c2016-01-05 12:06:25 +0100260 batadv_neigh_node_release(neigh_node);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000261}
262
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100263/**
264 * batadv_orig_node_get_router - router to the originator depending on iface
265 * @orig_node: the orig node for the router
266 * @if_outgoing: the interface where the payload packet has been received or
267 * the OGM should be sent to
268 *
269 * Returns the neighbor which should be router for this orig_node/iface.
270 *
271 * The object is returned with refcounter increased by 1.
272 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200273struct batadv_neigh_node *
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100274batadv_orig_router_get(struct batadv_orig_node *orig_node,
275 const struct batadv_hard_iface *if_outgoing)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000276{
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100277 struct batadv_orig_ifinfo *orig_ifinfo;
278 struct batadv_neigh_node *router = NULL;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000279
280 rcu_read_lock();
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100281 hlist_for_each_entry_rcu(orig_ifinfo, &orig_node->ifinfo_list, list) {
282 if (orig_ifinfo->if_outgoing != if_outgoing)
283 continue;
284
285 router = rcu_dereference(orig_ifinfo->router);
286 break;
287 }
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000288
289 if (router && !atomic_inc_not_zero(&router->refcount))
290 router = NULL;
291
292 rcu_read_unlock();
293 return router;
294}
295
Antonio Quartulli0538f752013-09-02 12:15:01 +0200296/**
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100297 * batadv_orig_ifinfo_get - find the ifinfo from an orig_node
298 * @orig_node: the orig node to be queried
299 * @if_outgoing: the interface for which the ifinfo should be acquired
300 *
301 * Returns the requested orig_ifinfo or NULL if not found.
302 *
303 * The object is returned with refcounter increased by 1.
304 */
305struct batadv_orig_ifinfo *
306batadv_orig_ifinfo_get(struct batadv_orig_node *orig_node,
307 struct batadv_hard_iface *if_outgoing)
308{
309 struct batadv_orig_ifinfo *tmp, *orig_ifinfo = NULL;
310
311 rcu_read_lock();
312 hlist_for_each_entry_rcu(tmp, &orig_node->ifinfo_list,
313 list) {
314 if (tmp->if_outgoing != if_outgoing)
315 continue;
316
317 if (!atomic_inc_not_zero(&tmp->refcount))
318 continue;
319
320 orig_ifinfo = tmp;
321 break;
322 }
323 rcu_read_unlock();
324
325 return orig_ifinfo;
326}
327
328/**
329 * batadv_orig_ifinfo_new - search and possibly create an orig_ifinfo object
330 * @orig_node: the orig node to be queried
331 * @if_outgoing: the interface for which the ifinfo should be acquired
332 *
333 * Returns NULL in case of failure or the orig_ifinfo object for the if_outgoing
334 * interface otherwise. The object is created and added to the list
335 * if it does not exist.
336 *
337 * The object is returned with refcounter increased by 1.
338 */
339struct batadv_orig_ifinfo *
340batadv_orig_ifinfo_new(struct batadv_orig_node *orig_node,
341 struct batadv_hard_iface *if_outgoing)
342{
343 struct batadv_orig_ifinfo *orig_ifinfo = NULL;
344 unsigned long reset_time;
345
346 spin_lock_bh(&orig_node->neigh_list_lock);
347
348 orig_ifinfo = batadv_orig_ifinfo_get(orig_node, if_outgoing);
349 if (orig_ifinfo)
350 goto out;
351
352 orig_ifinfo = kzalloc(sizeof(*orig_ifinfo), GFP_ATOMIC);
353 if (!orig_ifinfo)
354 goto out;
355
356 if (if_outgoing != BATADV_IF_DEFAULT &&
357 !atomic_inc_not_zero(&if_outgoing->refcount)) {
358 kfree(orig_ifinfo);
359 orig_ifinfo = NULL;
360 goto out;
361 }
362
363 reset_time = jiffies - 1;
364 reset_time -= msecs_to_jiffies(BATADV_RESET_PROTECTION_MS);
365 orig_ifinfo->batman_seqno_reset = reset_time;
366 orig_ifinfo->if_outgoing = if_outgoing;
367 INIT_HLIST_NODE(&orig_ifinfo->list);
368 atomic_set(&orig_ifinfo->refcount, 2);
369 hlist_add_head_rcu(&orig_ifinfo->list,
370 &orig_node->ifinfo_list);
371out:
372 spin_unlock_bh(&orig_node->neigh_list_lock);
373 return orig_ifinfo;
374}
375
376/**
Simon Wunderlich89652332013-11-13 19:14:46 +0100377 * batadv_neigh_ifinfo_get - find the ifinfo from an neigh_node
378 * @neigh_node: the neigh node to be queried
379 * @if_outgoing: the interface for which the ifinfo should be acquired
380 *
381 * The object is returned with refcounter increased by 1.
382 *
383 * Returns the requested neigh_ifinfo or NULL if not found
384 */
385struct batadv_neigh_ifinfo *
386batadv_neigh_ifinfo_get(struct batadv_neigh_node *neigh,
387 struct batadv_hard_iface *if_outgoing)
388{
389 struct batadv_neigh_ifinfo *neigh_ifinfo = NULL,
390 *tmp_neigh_ifinfo;
391
392 rcu_read_lock();
393 hlist_for_each_entry_rcu(tmp_neigh_ifinfo, &neigh->ifinfo_list,
394 list) {
395 if (tmp_neigh_ifinfo->if_outgoing != if_outgoing)
396 continue;
397
398 if (!atomic_inc_not_zero(&tmp_neigh_ifinfo->refcount))
399 continue;
400
401 neigh_ifinfo = tmp_neigh_ifinfo;
402 break;
403 }
404 rcu_read_unlock();
405
406 return neigh_ifinfo;
407}
408
409/**
410 * batadv_neigh_ifinfo_new - search and possibly create an neigh_ifinfo object
411 * @neigh_node: the neigh node to be queried
412 * @if_outgoing: the interface for which the ifinfo should be acquired
413 *
414 * Returns NULL in case of failure or the neigh_ifinfo object for the
415 * if_outgoing interface otherwise. The object is created and added to the list
416 * if it does not exist.
417 *
418 * The object is returned with refcounter increased by 1.
419 */
420struct batadv_neigh_ifinfo *
421batadv_neigh_ifinfo_new(struct batadv_neigh_node *neigh,
422 struct batadv_hard_iface *if_outgoing)
423{
424 struct batadv_neigh_ifinfo *neigh_ifinfo;
425
426 spin_lock_bh(&neigh->ifinfo_lock);
427
428 neigh_ifinfo = batadv_neigh_ifinfo_get(neigh, if_outgoing);
429 if (neigh_ifinfo)
430 goto out;
431
432 neigh_ifinfo = kzalloc(sizeof(*neigh_ifinfo), GFP_ATOMIC);
433 if (!neigh_ifinfo)
434 goto out;
435
436 if (if_outgoing && !atomic_inc_not_zero(&if_outgoing->refcount)) {
437 kfree(neigh_ifinfo);
438 neigh_ifinfo = NULL;
439 goto out;
440 }
441
442 INIT_HLIST_NODE(&neigh_ifinfo->list);
443 atomic_set(&neigh_ifinfo->refcount, 2);
444 neigh_ifinfo->if_outgoing = if_outgoing;
445
446 hlist_add_head_rcu(&neigh_ifinfo->list, &neigh->ifinfo_list);
447
448out:
449 spin_unlock_bh(&neigh->ifinfo_lock);
450
451 return neigh_ifinfo;
452}
453
454/**
Marek Lindnered292662015-08-04 23:31:44 +0800455 * batadv_neigh_node_get - retrieve a neighbour from the list
456 * @orig_node: originator which the neighbour belongs to
457 * @hard_iface: the interface where this neighbour is connected to
458 * @addr: the address of the neighbour
459 *
460 * Looks for and possibly returns a neighbour belonging to this originator list
461 * which is connected through the provided hard interface.
462 * Returns NULL if the neighbour is not found.
463 */
464static struct batadv_neigh_node *
465batadv_neigh_node_get(const struct batadv_orig_node *orig_node,
466 const struct batadv_hard_iface *hard_iface,
467 const u8 *addr)
468{
469 struct batadv_neigh_node *tmp_neigh_node, *res = NULL;
470
471 rcu_read_lock();
472 hlist_for_each_entry_rcu(tmp_neigh_node, &orig_node->neigh_list, list) {
473 if (!batadv_compare_eth(tmp_neigh_node->addr, addr))
474 continue;
475
476 if (tmp_neigh_node->if_incoming != hard_iface)
477 continue;
478
479 if (!atomic_inc_not_zero(&tmp_neigh_node->refcount))
480 continue;
481
482 res = tmp_neigh_node;
483 break;
484 }
485 rcu_read_unlock();
486
487 return res;
488}
489
490/**
Marek Lindnercef63412015-08-04 21:09:55 +0800491 * batadv_hardif_neigh_create - create a hardif neighbour node
492 * @hard_iface: the interface this neighbour is connected to
493 * @neigh_addr: the interface address of the neighbour to retrieve
494 *
495 * Returns the hardif neighbour node if found or created or NULL otherwise.
496 */
497static struct batadv_hardif_neigh_node *
498batadv_hardif_neigh_create(struct batadv_hard_iface *hard_iface,
499 const u8 *neigh_addr)
500{
Marek Lindner8248a4c2015-08-04 21:09:56 +0800501 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindnercef63412015-08-04 21:09:55 +0800502 struct batadv_hardif_neigh_node *hardif_neigh = NULL;
503
504 spin_lock_bh(&hard_iface->neigh_list_lock);
505
506 /* check if neighbor hasn't been added in the meantime */
507 hardif_neigh = batadv_hardif_neigh_get(hard_iface, neigh_addr);
508 if (hardif_neigh)
509 goto out;
510
511 if (!atomic_inc_not_zero(&hard_iface->refcount))
512 goto out;
513
514 hardif_neigh = kzalloc(sizeof(*hardif_neigh), GFP_ATOMIC);
515 if (!hardif_neigh) {
516 batadv_hardif_free_ref(hard_iface);
517 goto out;
518 }
519
520 INIT_HLIST_NODE(&hardif_neigh->list);
521 ether_addr_copy(hardif_neigh->addr, neigh_addr);
522 hardif_neigh->if_incoming = hard_iface;
523 hardif_neigh->last_seen = jiffies;
524
525 atomic_set(&hardif_neigh->refcount, 1);
526
Marek Lindner8248a4c2015-08-04 21:09:56 +0800527 if (bat_priv->bat_algo_ops->bat_hardif_neigh_init)
528 bat_priv->bat_algo_ops->bat_hardif_neigh_init(hardif_neigh);
529
Marek Lindnercef63412015-08-04 21:09:55 +0800530 hlist_add_head(&hardif_neigh->list, &hard_iface->neigh_list);
531
532out:
533 spin_unlock_bh(&hard_iface->neigh_list_lock);
534 return hardif_neigh;
535}
536
537/**
538 * batadv_hardif_neigh_get_or_create - retrieve or create a hardif neighbour
539 * node
540 * @hard_iface: the interface this neighbour is connected to
541 * @neigh_addr: the interface address of the neighbour to retrieve
542 *
543 * Returns the hardif neighbour node if found or created or NULL otherwise.
544 */
545static struct batadv_hardif_neigh_node *
546batadv_hardif_neigh_get_or_create(struct batadv_hard_iface *hard_iface,
547 const u8 *neigh_addr)
548{
549 struct batadv_hardif_neigh_node *hardif_neigh = NULL;
550
551 /* first check without locking to avoid the overhead */
552 hardif_neigh = batadv_hardif_neigh_get(hard_iface, neigh_addr);
553 if (hardif_neigh)
554 return hardif_neigh;
555
556 return batadv_hardif_neigh_create(hard_iface, neigh_addr);
557}
558
559/**
560 * batadv_hardif_neigh_get - retrieve a hardif neighbour from the list
561 * @hard_iface: the interface where this neighbour is connected to
562 * @neigh_addr: the address of the neighbour
563 *
564 * Looks for and possibly returns a neighbour belonging to this hard interface.
565 * Returns NULL if the neighbour is not found.
566 */
567struct batadv_hardif_neigh_node *
568batadv_hardif_neigh_get(const struct batadv_hard_iface *hard_iface,
569 const u8 *neigh_addr)
570{
571 struct batadv_hardif_neigh_node *tmp_hardif_neigh, *hardif_neigh = NULL;
572
573 rcu_read_lock();
574 hlist_for_each_entry_rcu(tmp_hardif_neigh,
575 &hard_iface->neigh_list, list) {
576 if (!batadv_compare_eth(tmp_hardif_neigh->addr, neigh_addr))
577 continue;
578
579 if (!atomic_inc_not_zero(&tmp_hardif_neigh->refcount))
580 continue;
581
582 hardif_neigh = tmp_hardif_neigh;
583 break;
584 }
585 rcu_read_unlock();
586
587 return hardif_neigh;
588}
589
590/**
Antonio Quartulli0538f752013-09-02 12:15:01 +0200591 * batadv_neigh_node_new - create and init a new neigh_node object
Marek Lindner3f32f8a2015-07-26 04:59:15 +0800592 * @orig_node: originator object representing the neighbour
Antonio Quartulli0538f752013-09-02 12:15:01 +0200593 * @hard_iface: the interface where the neighbour is connected to
594 * @neigh_addr: the mac address of the neighbour interface
Antonio Quartulli0538f752013-09-02 12:15:01 +0200595 *
596 * Allocates a new neigh_node object and initialises all the generic fields.
597 * Returns the new object or NULL on failure.
598 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200599struct batadv_neigh_node *
Marek Lindner3f32f8a2015-07-26 04:59:15 +0800600batadv_neigh_node_new(struct batadv_orig_node *orig_node,
601 struct batadv_hard_iface *hard_iface,
602 const u8 *neigh_addr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000603{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200604 struct batadv_neigh_node *neigh_node;
Marek Lindnercef63412015-08-04 21:09:55 +0800605 struct batadv_hardif_neigh_node *hardif_neigh = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000606
Marek Lindner741aa062015-07-26 04:57:43 +0800607 neigh_node = batadv_neigh_node_get(orig_node, hard_iface, neigh_addr);
608 if (neigh_node)
609 goto out;
610
Marek Lindnercef63412015-08-04 21:09:55 +0800611 hardif_neigh = batadv_hardif_neigh_get_or_create(hard_iface,
612 neigh_addr);
613 if (!hardif_neigh)
614 goto out;
615
Sven Eckelmann704509b2011-05-14 23:14:54 +0200616 neigh_node = kzalloc(sizeof(*neigh_node), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000617 if (!neigh_node)
Marek Lindner7ae8b282012-03-01 15:35:21 +0800618 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000619
Marek Lindnerf729dc702015-07-26 04:37:15 +0800620 if (!atomic_inc_not_zero(&hard_iface->refcount)) {
621 kfree(neigh_node);
622 neigh_node = NULL;
623 goto out;
624 }
625
Marek Lindner9591a792010-12-12 21:57:11 +0000626 INIT_HLIST_NODE(&neigh_node->list);
Simon Wunderlich89652332013-11-13 19:14:46 +0100627 INIT_HLIST_HEAD(&neigh_node->ifinfo_list);
628 spin_lock_init(&neigh_node->ifinfo_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000629
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100630 ether_addr_copy(neigh_node->addr, neigh_addr);
Antonio Quartulli0538f752013-09-02 12:15:01 +0200631 neigh_node->if_incoming = hard_iface;
632 neigh_node->orig_node = orig_node;
633
Marek Lindner1605d0d2011-02-18 12:28:11 +0000634 /* extra reference for return */
635 atomic_set(&neigh_node->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000636
Marek Lindner741aa062015-07-26 04:57:43 +0800637 spin_lock_bh(&orig_node->neigh_list_lock);
638 hlist_add_head_rcu(&neigh_node->list, &orig_node->neigh_list);
639 spin_unlock_bh(&orig_node->neigh_list_lock);
640
Marek Lindnercef63412015-08-04 21:09:55 +0800641 /* increment unique neighbor refcount */
642 atomic_inc(&hardif_neigh->refcount);
643
Marek Lindner741aa062015-07-26 04:57:43 +0800644 batadv_dbg(BATADV_DBG_BATMAN, orig_node->bat_priv,
645 "Creating new neighbor %pM for orig_node %pM on interface %s\n",
646 neigh_addr, orig_node->orig, hard_iface->net_dev->name);
647
Marek Lindner7ae8b282012-03-01 15:35:21 +0800648out:
Marek Lindnercef63412015-08-04 21:09:55 +0800649 if (hardif_neigh)
650 batadv_hardif_neigh_free_ref(hardif_neigh);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000651 return neigh_node;
652}
653
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100654/**
Marek Lindner75874052015-08-04 21:09:57 +0800655 * batadv_hardif_neigh_seq_print_text - print the single hop neighbour list
656 * @seq: neighbour table seq_file struct
657 * @offset: not used
658 *
659 * Always returns 0.
660 */
661int batadv_hardif_neigh_seq_print_text(struct seq_file *seq, void *offset)
662{
663 struct net_device *net_dev = (struct net_device *)seq->private;
664 struct batadv_priv *bat_priv = netdev_priv(net_dev);
665 struct batadv_hard_iface *primary_if;
666
667 primary_if = batadv_seq_print_text_primary_if_get(seq);
668 if (!primary_if)
669 return 0;
670
671 seq_printf(seq, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s %s)]\n",
672 BATADV_SOURCE_VERSION, primary_if->net_dev->name,
673 primary_if->net_dev->dev_addr, net_dev->name,
674 bat_priv->bat_algo_ops->name);
675
676 batadv_hardif_free_ref(primary_if);
677
678 if (!bat_priv->bat_algo_ops->bat_neigh_print) {
679 seq_puts(seq,
680 "No printing function for this routing protocol\n");
681 return 0;
682 }
683
684 bat_priv->bat_algo_ops->bat_neigh_print(bat_priv, seq);
685 return 0;
686}
687
688/**
Sven Eckelmann2baa7532016-01-05 12:06:22 +0100689 * batadv_orig_ifinfo_release - release orig_ifinfo from lists and queue for
690 * free after rcu grace period
691 * @orig_ifinfo: the orig_ifinfo object to release
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100692 */
Sven Eckelmann2baa7532016-01-05 12:06:22 +0100693static void batadv_orig_ifinfo_release(struct batadv_orig_ifinfo *orig_ifinfo)
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100694{
Simon Wunderlich000c8df2014-03-26 15:46:22 +0100695 struct batadv_neigh_node *router;
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100696
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100697 if (orig_ifinfo->if_outgoing != BATADV_IF_DEFAULT)
Sven Eckelmann2baa7532016-01-05 12:06:22 +0100698 batadv_hardif_free_ref(orig_ifinfo->if_outgoing);
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100699
Simon Wunderlich000c8df2014-03-26 15:46:22 +0100700 /* this is the last reference to this object */
701 router = rcu_dereference_protected(orig_ifinfo->router, true);
702 if (router)
Sven Eckelmann2baa7532016-01-05 12:06:22 +0100703 batadv_neigh_node_free_ref(router);
704
705 kfree_rcu(orig_ifinfo, rcu);
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100706}
707
708/**
Sven Eckelmanndeed9662016-01-05 12:06:21 +0100709 * batadv_orig_ifinfo_free_ref - decrement the refcounter and possibly release
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100710 * the orig_ifinfo
711 * @orig_ifinfo: the orig_ifinfo object to release
712 */
713void batadv_orig_ifinfo_free_ref(struct batadv_orig_ifinfo *orig_ifinfo)
714{
715 if (atomic_dec_and_test(&orig_ifinfo->refcount))
Sven Eckelmann2baa7532016-01-05 12:06:22 +0100716 batadv_orig_ifinfo_release(orig_ifinfo);
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100717}
718
Sven Eckelmanndeed9662016-01-05 12:06:21 +0100719/**
720 * batadv_orig_node_free_rcu - free the orig_node
721 * @rcu: rcu pointer of the orig_node
722 */
Sven Eckelmann03fc7f82012-05-12 18:34:00 +0200723static void batadv_orig_node_free_rcu(struct rcu_head *rcu)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000724{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200725 struct batadv_orig_node *orig_node;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000726
Sven Eckelmann56303d32012-06-05 22:31:31 +0200727 orig_node = container_of(rcu, struct batadv_orig_node, rcu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000728
Linus Lüssing60432d72014-02-15 17:47:51 +0100729 batadv_mcast_purge_orig(orig_node);
730
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200731 batadv_frag_purge_orig(orig_node, NULL);
732
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200733 if (orig_node->bat_priv->bat_algo_ops->bat_orig_free)
734 orig_node->bat_priv->bat_algo_ops->bat_orig_free(orig_node);
735
Antonio Quartullia73105b2011-04-27 14:27:44 +0200736 kfree(orig_node->tt_buff);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000737 kfree(orig_node);
738}
739
Linus Lüssing72822222013-04-15 21:43:29 +0800740/**
Sven Eckelmanndeed9662016-01-05 12:06:21 +0100741 * batadv_orig_node_release - release orig_node from lists and queue for
742 * free after rcu grace period
743 * @orig_node: the orig node to free
744 */
745static void batadv_orig_node_release(struct batadv_orig_node *orig_node)
746{
747 struct hlist_node *node_tmp;
748 struct batadv_neigh_node *neigh_node;
749 struct batadv_orig_ifinfo *orig_ifinfo;
750
751 spin_lock_bh(&orig_node->neigh_list_lock);
752
753 /* for all neighbors towards this originator ... */
754 hlist_for_each_entry_safe(neigh_node, node_tmp,
755 &orig_node->neigh_list, list) {
756 hlist_del_rcu(&neigh_node->list);
757 batadv_neigh_node_free_ref(neigh_node);
758 }
759
760 hlist_for_each_entry_safe(orig_ifinfo, node_tmp,
761 &orig_node->ifinfo_list, list) {
762 hlist_del_rcu(&orig_ifinfo->list);
763 batadv_orig_ifinfo_free_ref(orig_ifinfo);
764 }
765 spin_unlock_bh(&orig_node->neigh_list_lock);
766
767 /* Free nc_nodes */
768 batadv_nc_purge_orig(orig_node->bat_priv, orig_node, NULL);
769
770 call_rcu(&orig_node->rcu, batadv_orig_node_free_rcu);
771}
772
773/**
Linus Lüssing72822222013-04-15 21:43:29 +0800774 * batadv_orig_node_free_ref - decrement the orig node refcounter and possibly
Sven Eckelmanndeed9662016-01-05 12:06:21 +0100775 * release it
Linus Lüssing72822222013-04-15 21:43:29 +0800776 * @orig_node: the orig node to free
777 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200778void batadv_orig_node_free_ref(struct batadv_orig_node *orig_node)
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000779{
780 if (atomic_dec_and_test(&orig_node->refcount))
Sven Eckelmanndeed9662016-01-05 12:06:21 +0100781 batadv_orig_node_release(orig_node);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000782}
783
Sven Eckelmann56303d32012-06-05 22:31:31 +0200784void batadv_originator_free(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000785{
Sven Eckelmann5bf74e92012-06-05 22:31:28 +0200786 struct batadv_hashtable *hash = bat_priv->orig_hash;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800787 struct hlist_node *node_tmp;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000788 struct hlist_head *head;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000789 spinlock_t *list_lock; /* spinlock to protect write access */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200790 struct batadv_orig_node *orig_node;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200791 u32 i;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000792
793 if (!hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000794 return;
795
796 cancel_delayed_work_sync(&bat_priv->orig_work);
797
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000798 bat_priv->orig_hash = NULL;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000799
800 for (i = 0; i < hash->size; i++) {
801 head = &hash->table[i];
802 list_lock = &hash->list_locks[i];
803
804 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800805 hlist_for_each_entry_safe(orig_node, node_tmp,
Marek Lindner7aadf882011-02-18 12:28:09 +0000806 head, hash_entry) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800807 hlist_del_rcu(&orig_node->hash_entry);
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200808 batadv_orig_node_free_ref(orig_node);
Marek Lindner16b1aba2011-01-19 20:01:42 +0000809 }
810 spin_unlock_bh(list_lock);
811 }
812
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +0200813 batadv_hash_destroy(hash);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000814}
815
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200816/**
817 * batadv_orig_node_new - creates a new orig_node
818 * @bat_priv: the bat priv with all the soft interface information
819 * @addr: the mac address of the originator
820 *
821 * Creates a new originator object and initialise all the generic fields.
822 * The new object is not added to the originator list.
823 * Returns the newly created object or NULL on failure.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200824 */
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200825struct batadv_orig_node *batadv_orig_node_new(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200826 const u8 *addr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000827{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200828 struct batadv_orig_node *orig_node;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200829 struct batadv_orig_node_vlan *vlan;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200830 unsigned long reset_time;
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200831 int i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000832
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200833 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
834 "Creating new originator: %pM\n", addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000835
Sven Eckelmann704509b2011-05-14 23:14:54 +0200836 orig_node = kzalloc(sizeof(*orig_node), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000837 if (!orig_node)
838 return NULL;
839
Marek Lindner9591a792010-12-12 21:57:11 +0000840 INIT_HLIST_HEAD(&orig_node->neigh_list);
Marek Lindnerd0fa4f32015-06-22 00:30:22 +0800841 INIT_HLIST_HEAD(&orig_node->vlan_list);
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100842 INIT_HLIST_HEAD(&orig_node->ifinfo_list);
Marek Lindnerf3e00082011-01-25 21:52:11 +0000843 spin_lock_init(&orig_node->bcast_seqno_lock);
Marek Lindnerf987ed62010-12-12 21:57:12 +0000844 spin_lock_init(&orig_node->neigh_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200845 spin_lock_init(&orig_node->tt_buff_lock);
Antonio Quartullia70a9aa2013-07-30 22:16:24 +0200846 spin_lock_init(&orig_node->tt_lock);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200847 spin_lock_init(&orig_node->vlan_list_lock);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000848
Martin Hundebølld56b1702013-01-25 11:12:39 +0100849 batadv_nc_init_orig(orig_node);
850
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000851 /* extra reference for return */
852 atomic_set(&orig_node->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000853
Marek Lindner16b1aba2011-01-19 20:01:42 +0000854 orig_node->bat_priv = bat_priv;
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100855 ether_addr_copy(orig_node->orig, addr);
Antonio Quartulli785ea112011-11-23 11:35:44 +0100856 batadv_dat_init_orig_node_addr(orig_node);
Antonio Quartullic8c991b2011-07-07 01:40:57 +0200857 atomic_set(&orig_node->last_ttvn, 0);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200858 orig_node->tt_buff = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200859 orig_node->tt_buff_len = 0;
Linus Lüssing2c667a32014-10-30 06:23:40 +0100860 orig_node->last_seen = jiffies;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200861 reset_time = jiffies - 1 - msecs_to_jiffies(BATADV_RESET_PROTECTION_MS);
862 orig_node->bcast_seqno_reset = reset_time;
Linus Lüssing8a4023c2015-06-16 17:10:26 +0200863
Linus Lüssing60432d72014-02-15 17:47:51 +0100864#ifdef CONFIG_BATMAN_ADV_MCAST
865 orig_node->mcast_flags = BATADV_NO_FLAGS;
Linus Lüssing8a4023c2015-06-16 17:10:26 +0200866 INIT_HLIST_NODE(&orig_node->mcast_want_all_unsnoopables_node);
867 INIT_HLIST_NODE(&orig_node->mcast_want_all_ipv4_node);
868 INIT_HLIST_NODE(&orig_node->mcast_want_all_ipv6_node);
869 spin_lock_init(&orig_node->mcast_handler_lock);
Linus Lüssing60432d72014-02-15 17:47:51 +0100870#endif
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000871
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200872 /* create a vlan object for the "untagged" LAN */
873 vlan = batadv_orig_node_vlan_new(orig_node, BATADV_NO_FLAGS);
874 if (!vlan)
875 goto free_orig_node;
876 /* batadv_orig_node_vlan_new() increases the refcounter.
877 * Immediately release vlan since it is not needed anymore in this
878 * context
879 */
880 batadv_orig_node_vlan_free_ref(vlan);
881
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200882 for (i = 0; i < BATADV_FRAG_BUFFER_COUNT; i++) {
883 INIT_HLIST_HEAD(&orig_node->fragments[i].head);
884 spin_lock_init(&orig_node->fragments[i].lock);
885 orig_node->fragments[i].size = 0;
886 }
887
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000888 return orig_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000889free_orig_node:
890 kfree(orig_node);
891 return NULL;
892}
893
Simon Wunderlich89652332013-11-13 19:14:46 +0100894/**
Simon Wunderlich709de132014-03-26 15:46:24 +0100895 * batadv_purge_neigh_ifinfo - purge obsolete ifinfo entries from neighbor
896 * @bat_priv: the bat priv with all the soft interface information
897 * @neigh: orig node which is to be checked
898 */
899static void
900batadv_purge_neigh_ifinfo(struct batadv_priv *bat_priv,
901 struct batadv_neigh_node *neigh)
902{
903 struct batadv_neigh_ifinfo *neigh_ifinfo;
904 struct batadv_hard_iface *if_outgoing;
905 struct hlist_node *node_tmp;
906
907 spin_lock_bh(&neigh->ifinfo_lock);
908
909 /* for all ifinfo objects for this neighinator */
910 hlist_for_each_entry_safe(neigh_ifinfo, node_tmp,
911 &neigh->ifinfo_list, list) {
912 if_outgoing = neigh_ifinfo->if_outgoing;
913
914 /* always keep the default interface */
915 if (if_outgoing == BATADV_IF_DEFAULT)
916 continue;
917
918 /* don't purge if the interface is not (going) down */
919 if ((if_outgoing->if_status != BATADV_IF_INACTIVE) &&
920 (if_outgoing->if_status != BATADV_IF_NOT_IN_USE) &&
921 (if_outgoing->if_status != BATADV_IF_TO_BE_REMOVED))
922 continue;
923
924 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
925 "neighbor/ifinfo purge: neighbor %pM, iface: %s\n",
926 neigh->addr, if_outgoing->net_dev->name);
927
928 hlist_del_rcu(&neigh_ifinfo->list);
929 batadv_neigh_ifinfo_free_ref(neigh_ifinfo);
930 }
931
932 spin_unlock_bh(&neigh->ifinfo_lock);
933}
934
935/**
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100936 * batadv_purge_orig_ifinfo - purge obsolete ifinfo entries from originator
937 * @bat_priv: the bat priv with all the soft interface information
938 * @orig_node: orig node which is to be checked
939 *
940 * Returns true if any ifinfo entry was purged, false otherwise.
941 */
942static bool
943batadv_purge_orig_ifinfo(struct batadv_priv *bat_priv,
944 struct batadv_orig_node *orig_node)
945{
946 struct batadv_orig_ifinfo *orig_ifinfo;
947 struct batadv_hard_iface *if_outgoing;
948 struct hlist_node *node_tmp;
949 bool ifinfo_purged = false;
950
951 spin_lock_bh(&orig_node->neigh_list_lock);
952
953 /* for all ifinfo objects for this originator */
954 hlist_for_each_entry_safe(orig_ifinfo, node_tmp,
955 &orig_node->ifinfo_list, list) {
956 if_outgoing = orig_ifinfo->if_outgoing;
957
958 /* always keep the default interface */
959 if (if_outgoing == BATADV_IF_DEFAULT)
960 continue;
961
962 /* don't purge if the interface is not (going) down */
963 if ((if_outgoing->if_status != BATADV_IF_INACTIVE) &&
964 (if_outgoing->if_status != BATADV_IF_NOT_IN_USE) &&
965 (if_outgoing->if_status != BATADV_IF_TO_BE_REMOVED))
966 continue;
967
968 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
969 "router/ifinfo purge: originator %pM, iface: %s\n",
970 orig_node->orig, if_outgoing->net_dev->name);
971
972 ifinfo_purged = true;
973
974 hlist_del_rcu(&orig_ifinfo->list);
975 batadv_orig_ifinfo_free_ref(orig_ifinfo);
Simon Wunderlichf3b3d902013-11-13 19:14:50 +0100976 if (orig_node->last_bonding_candidate == orig_ifinfo) {
977 orig_node->last_bonding_candidate = NULL;
978 batadv_orig_ifinfo_free_ref(orig_ifinfo);
979 }
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100980 }
981
982 spin_unlock_bh(&orig_node->neigh_list_lock);
983
984 return ifinfo_purged;
985}
986
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100987/**
Simon Wunderlich89652332013-11-13 19:14:46 +0100988 * batadv_purge_orig_neighbors - purges neighbors from originator
989 * @bat_priv: the bat priv with all the soft interface information
990 * @orig_node: orig node which is to be checked
991 *
992 * Returns true if any neighbor was purged, false otherwise
993 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200994static bool
995batadv_purge_orig_neighbors(struct batadv_priv *bat_priv,
Simon Wunderlich89652332013-11-13 19:14:46 +0100996 struct batadv_orig_node *orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000997{
Sasha Levinb67bfe02013-02-27 17:06:00 -0800998 struct hlist_node *node_tmp;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200999 struct batadv_neigh_node *neigh_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001000 bool neigh_purged = false;
Marek Lindner0b0094e2012-03-01 15:35:20 +08001001 unsigned long last_seen;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001002 struct batadv_hard_iface *if_incoming;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001003
Marek Lindnerf987ed62010-12-12 21:57:12 +00001004 spin_lock_bh(&orig_node->neigh_list_lock);
1005
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001006 /* for all neighbors towards this originator ... */
Sasha Levinb67bfe02013-02-27 17:06:00 -08001007 hlist_for_each_entry_safe(neigh_node, node_tmp,
Marek Lindner9591a792010-12-12 21:57:11 +00001008 &orig_node->neigh_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001009 last_seen = neigh_node->last_seen;
1010 if_incoming = neigh_node->if_incoming;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001011
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001012 if ((batadv_has_timed_out(last_seen, BATADV_PURGE_TIMEOUT)) ||
Sven Eckelmanne9a4f292012-06-03 22:19:19 +02001013 (if_incoming->if_status == BATADV_IF_INACTIVE) ||
1014 (if_incoming->if_status == BATADV_IF_NOT_IN_USE) ||
1015 (if_incoming->if_status == BATADV_IF_TO_BE_REMOVED)) {
Sven Eckelmanne9a4f292012-06-03 22:19:19 +02001016 if ((if_incoming->if_status == BATADV_IF_INACTIVE) ||
1017 (if_incoming->if_status == BATADV_IF_NOT_IN_USE) ||
1018 (if_incoming->if_status == BATADV_IF_TO_BE_REMOVED))
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001019 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001020 "neighbor purge: originator %pM, neighbor: %pM, iface: %s\n",
1021 orig_node->orig, neigh_node->addr,
1022 if_incoming->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001023 else
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001024 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001025 "neighbor timeout: originator %pM, neighbor: %pM, last_seen: %u\n",
1026 orig_node->orig, neigh_node->addr,
1027 jiffies_to_msecs(last_seen));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001028
1029 neigh_purged = true;
Marek Lindner9591a792010-12-12 21:57:11 +00001030
Marek Lindnerf987ed62010-12-12 21:57:12 +00001031 hlist_del_rcu(&neigh_node->list);
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001032 batadv_neigh_node_free_ref(neigh_node);
Simon Wunderlich709de132014-03-26 15:46:24 +01001033 } else {
1034 /* only necessary if not the whole neighbor is to be
1035 * deleted, but some interface has been removed.
1036 */
1037 batadv_purge_neigh_ifinfo(bat_priv, neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001038 }
1039 }
Marek Lindnerf987ed62010-12-12 21:57:12 +00001040
1041 spin_unlock_bh(&orig_node->neigh_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001042 return neigh_purged;
1043}
1044
Simon Wunderlich89652332013-11-13 19:14:46 +01001045/**
1046 * batadv_find_best_neighbor - finds the best neighbor after purging
1047 * @bat_priv: the bat priv with all the soft interface information
1048 * @orig_node: orig node which is to be checked
1049 * @if_outgoing: the interface for which the metric should be compared
1050 *
1051 * Returns the current best neighbor, with refcount increased.
1052 */
1053static struct batadv_neigh_node *
1054batadv_find_best_neighbor(struct batadv_priv *bat_priv,
1055 struct batadv_orig_node *orig_node,
1056 struct batadv_hard_iface *if_outgoing)
1057{
1058 struct batadv_neigh_node *best = NULL, *neigh;
1059 struct batadv_algo_ops *bao = bat_priv->bat_algo_ops;
1060
1061 rcu_read_lock();
1062 hlist_for_each_entry_rcu(neigh, &orig_node->neigh_list, list) {
1063 if (best && (bao->bat_neigh_cmp(neigh, if_outgoing,
1064 best, if_outgoing) <= 0))
1065 continue;
1066
1067 if (!atomic_inc_not_zero(&neigh->refcount))
1068 continue;
1069
1070 if (best)
1071 batadv_neigh_node_free_ref(best);
1072
1073 best = neigh;
1074 }
1075 rcu_read_unlock();
1076
1077 return best;
1078}
1079
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001080/**
1081 * batadv_purge_orig_node - purges obsolete information from an orig_node
1082 * @bat_priv: the bat priv with all the soft interface information
1083 * @orig_node: orig node which is to be checked
1084 *
1085 * This function checks if the orig_node or substructures of it have become
1086 * obsolete, and purges this information if that's the case.
1087 *
1088 * Returns true if the orig_node is to be removed, false otherwise.
1089 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001090static bool batadv_purge_orig_node(struct batadv_priv *bat_priv,
1091 struct batadv_orig_node *orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001092{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001093 struct batadv_neigh_node *best_neigh_node;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001094 struct batadv_hard_iface *hard_iface;
Simon Wunderlich7b955a92014-03-26 15:46:23 +01001095 bool changed_ifinfo, changed_neigh;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001096
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001097 if (batadv_has_timed_out(orig_node->last_seen,
1098 2 * BATADV_PURGE_TIMEOUT)) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001099 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001100 "Originator timeout: originator %pM, last_seen %u\n",
1101 orig_node->orig,
1102 jiffies_to_msecs(orig_node->last_seen));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001103 return true;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001104 }
Simon Wunderlich7b955a92014-03-26 15:46:23 +01001105 changed_ifinfo = batadv_purge_orig_ifinfo(bat_priv, orig_node);
1106 changed_neigh = batadv_purge_orig_neighbors(bat_priv, orig_node);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001107
Simon Wunderlich7b955a92014-03-26 15:46:23 +01001108 if (!changed_ifinfo && !changed_neigh)
Simon Wunderlich89652332013-11-13 19:14:46 +01001109 return false;
1110
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001111 /* first for NULL ... */
Simon Wunderlich89652332013-11-13 19:14:46 +01001112 best_neigh_node = batadv_find_best_neighbor(bat_priv, orig_node,
1113 BATADV_IF_DEFAULT);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001114 batadv_update_route(bat_priv, orig_node, BATADV_IF_DEFAULT,
1115 best_neigh_node);
Simon Wunderlich89652332013-11-13 19:14:46 +01001116 if (best_neigh_node)
1117 batadv_neigh_node_free_ref(best_neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001118
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001119 /* ... then for all other interfaces. */
1120 rcu_read_lock();
1121 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
1122 if (hard_iface->if_status != BATADV_IF_ACTIVE)
1123 continue;
1124
1125 if (hard_iface->soft_iface != bat_priv->soft_iface)
1126 continue;
1127
1128 best_neigh_node = batadv_find_best_neighbor(bat_priv,
1129 orig_node,
1130 hard_iface);
1131 batadv_update_route(bat_priv, orig_node, hard_iface,
1132 best_neigh_node);
1133 if (best_neigh_node)
1134 batadv_neigh_node_free_ref(best_neigh_node);
1135 }
1136 rcu_read_unlock();
1137
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001138 return false;
1139}
1140
Sven Eckelmann56303d32012-06-05 22:31:31 +02001141static void _batadv_purge_orig(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001142{
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02001143 struct batadv_hashtable *hash = bat_priv->orig_hash;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001144 struct hlist_node *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001145 struct hlist_head *head;
Marek Lindnerfb778ea2011-01-19 20:01:40 +00001146 spinlock_t *list_lock; /* spinlock to protect write access */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001147 struct batadv_orig_node *orig_node;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001148 u32 i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001149
1150 if (!hash)
1151 return;
1152
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001153 /* for all origins... */
1154 for (i = 0; i < hash->size; i++) {
1155 head = &hash->table[i];
Marek Lindnerfb778ea2011-01-19 20:01:40 +00001156 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001157
Marek Lindnerfb778ea2011-01-19 20:01:40 +00001158 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001159 hlist_for_each_entry_safe(orig_node, node_tmp,
Marek Lindner7aadf882011-02-18 12:28:09 +00001160 head, hash_entry) {
Sven Eckelmann03fc7f82012-05-12 18:34:00 +02001161 if (batadv_purge_orig_node(bat_priv, orig_node)) {
Marek Lindner414254e2013-04-23 21:39:58 +08001162 batadv_gw_node_delete(bat_priv, orig_node);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001163 hlist_del_rcu(&orig_node->hash_entry);
Linus Lüssing9d31b3c2014-12-13 23:32:15 +01001164 batadv_tt_global_del_orig(orig_node->bat_priv,
1165 orig_node, -1,
1166 "originator timed out");
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001167 batadv_orig_node_free_ref(orig_node);
Marek Lindnerfb778ea2011-01-19 20:01:40 +00001168 continue;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001169 }
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +02001170
1171 batadv_frag_purge_orig(orig_node,
1172 batadv_frag_check_entry);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001173 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +00001174 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001175 }
1176
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +02001177 batadv_gw_election(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001178}
1179
Sven Eckelmann03fc7f82012-05-12 18:34:00 +02001180static void batadv_purge_orig(struct work_struct *work)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001181{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001182 struct delayed_work *delayed_work;
1183 struct batadv_priv *bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001184
Sven Eckelmann56303d32012-06-05 22:31:31 +02001185 delayed_work = container_of(work, struct delayed_work, work);
1186 bat_priv = container_of(delayed_work, struct batadv_priv, orig_work);
Sven Eckelmann03fc7f82012-05-12 18:34:00 +02001187 _batadv_purge_orig(bat_priv);
Antonio Quartulli72414442012-12-25 13:14:37 +01001188 queue_delayed_work(batadv_event_workqueue,
1189 &bat_priv->orig_work,
1190 msecs_to_jiffies(BATADV_ORIG_WORK_PERIOD));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001191}
1192
Sven Eckelmann56303d32012-06-05 22:31:31 +02001193void batadv_purge_orig_ref(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001194{
Sven Eckelmann03fc7f82012-05-12 18:34:00 +02001195 _batadv_purge_orig(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001196}
1197
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001198int batadv_orig_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001199{
1200 struct net_device *net_dev = (struct net_device *)seq->private;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001201 struct batadv_priv *bat_priv = netdev_priv(net_dev);
Sven Eckelmann56303d32012-06-05 22:31:31 +02001202 struct batadv_hard_iface *primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001203
Marek Lindner30da63a2012-08-03 17:15:46 +02001204 primary_if = batadv_seq_print_text_primary_if_get(seq);
1205 if (!primary_if)
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001206 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001207
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001208 seq_printf(seq, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s %s)]\n",
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001209 BATADV_SOURCE_VERSION, primary_if->net_dev->name,
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001210 primary_if->net_dev->dev_addr, net_dev->name,
1211 bat_priv->bat_algo_ops->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001212
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001213 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001214
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001215 if (!bat_priv->bat_algo_ops->bat_orig_print) {
1216 seq_puts(seq,
1217 "No printing function for this routing protocol\n");
1218 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001219 }
1220
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +01001221 bat_priv->bat_algo_ops->bat_orig_print(bat_priv, seq,
1222 BATADV_IF_DEFAULT);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001223
Marek Lindner30da63a2012-08-03 17:15:46 +02001224 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001225}
1226
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +01001227/**
1228 * batadv_orig_hardif_seq_print_text - writes originator infos for a specific
1229 * outgoing interface
1230 * @seq: debugfs table seq_file struct
1231 * @offset: not used
1232 *
1233 * Returns 0
1234 */
1235int batadv_orig_hardif_seq_print_text(struct seq_file *seq, void *offset)
1236{
1237 struct net_device *net_dev = (struct net_device *)seq->private;
1238 struct batadv_hard_iface *hard_iface;
1239 struct batadv_priv *bat_priv;
1240
1241 hard_iface = batadv_hardif_get_by_netdev(net_dev);
1242
1243 if (!hard_iface || !hard_iface->soft_iface) {
1244 seq_puts(seq, "Interface not known to B.A.T.M.A.N.\n");
1245 goto out;
1246 }
1247
1248 bat_priv = netdev_priv(hard_iface->soft_iface);
1249 if (!bat_priv->bat_algo_ops->bat_orig_print) {
1250 seq_puts(seq,
1251 "No printing function for this routing protocol\n");
1252 goto out;
1253 }
1254
1255 if (hard_iface->if_status != BATADV_IF_ACTIVE) {
1256 seq_puts(seq, "Interface not active\n");
1257 goto out;
1258 }
1259
1260 seq_printf(seq, "[B.A.T.M.A.N. adv %s, IF/MAC: %s/%pM (%s %s)]\n",
1261 BATADV_SOURCE_VERSION, hard_iface->net_dev->name,
1262 hard_iface->net_dev->dev_addr,
1263 hard_iface->soft_iface->name, bat_priv->bat_algo_ops->name);
1264
1265 bat_priv->bat_algo_ops->bat_orig_print(bat_priv, seq, hard_iface);
1266
1267out:
Marek Lindner16a41422014-04-24 03:44:25 +08001268 if (hard_iface)
1269 batadv_hardif_free_ref(hard_iface);
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +01001270 return 0;
1271}
1272
Sven Eckelmann56303d32012-06-05 22:31:31 +02001273int batadv_orig_hash_add_if(struct batadv_hard_iface *hard_iface,
1274 int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001275{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001276 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Antonio Quartullid0015fd2013-09-03 11:10:23 +02001277 struct batadv_algo_ops *bao = bat_priv->bat_algo_ops;
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02001278 struct batadv_hashtable *hash = bat_priv->orig_hash;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001279 struct hlist_head *head;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001280 struct batadv_orig_node *orig_node;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001281 u32 i;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001282 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001283
1284 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001285 * if_num
1286 */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001287 for (i = 0; i < hash->size; i++) {
1288 head = &hash->table[i];
1289
Marek Lindnerfb778ea2011-01-19 20:01:40 +00001290 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001291 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
Antonio Quartullid0015fd2013-09-03 11:10:23 +02001292 ret = 0;
1293 if (bao->bat_orig_add_if)
1294 ret = bao->bat_orig_add_if(orig_node,
1295 max_if_num);
Sven Eckelmann5346c352012-05-05 13:27:28 +02001296 if (ret == -ENOMEM)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001297 goto err;
1298 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +00001299 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001300 }
1301
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001302 return 0;
1303
1304err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +00001305 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001306 return -ENOMEM;
1307}
1308
Sven Eckelmann56303d32012-06-05 22:31:31 +02001309int batadv_orig_hash_del_if(struct batadv_hard_iface *hard_iface,
1310 int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001311{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001312 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02001313 struct batadv_hashtable *hash = bat_priv->orig_hash;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001314 struct hlist_head *head;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001315 struct batadv_hard_iface *hard_iface_tmp;
1316 struct batadv_orig_node *orig_node;
Antonio Quartullid0015fd2013-09-03 11:10:23 +02001317 struct batadv_algo_ops *bao = bat_priv->bat_algo_ops;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001318 u32 i;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001319 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001320
1321 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001322 * if_num
1323 */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001324 for (i = 0; i < hash->size; i++) {
1325 head = &hash->table[i];
1326
Marek Lindnerfb778ea2011-01-19 20:01:40 +00001327 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001328 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
Antonio Quartullid0015fd2013-09-03 11:10:23 +02001329 ret = 0;
1330 if (bao->bat_orig_del_if)
1331 ret = bao->bat_orig_del_if(orig_node,
1332 max_if_num,
1333 hard_iface->if_num);
Sven Eckelmann5346c352012-05-05 13:27:28 +02001334 if (ret == -ENOMEM)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001335 goto err;
1336 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +00001337 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001338 }
1339
1340 /* renumber remaining batman interfaces _inside_ of orig_hash_lock */
1341 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +02001342 list_for_each_entry_rcu(hard_iface_tmp, &batadv_hardif_list, list) {
Sven Eckelmanne9a4f292012-06-03 22:19:19 +02001343 if (hard_iface_tmp->if_status == BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001344 continue;
1345
Marek Lindnere6c10f42011-02-18 12:33:20 +00001346 if (hard_iface == hard_iface_tmp)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001347 continue;
1348
Marek Lindnere6c10f42011-02-18 12:33:20 +00001349 if (hard_iface->soft_iface != hard_iface_tmp->soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001350 continue;
1351
Marek Lindnere6c10f42011-02-18 12:33:20 +00001352 if (hard_iface_tmp->if_num > hard_iface->if_num)
1353 hard_iface_tmp->if_num--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001354 }
1355 rcu_read_unlock();
1356
Marek Lindnere6c10f42011-02-18 12:33:20 +00001357 hard_iface->if_num = -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001358 return 0;
1359
1360err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +00001361 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001362 return -ENOMEM;
1363}