Merge tag 'tpmdd-next-6.10-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / net / batman-adv / originator.c
CommitLineData
7db7d9f3 1// SPDX-License-Identifier: GPL-2.0
cfa55c6d 2/* Copyright (C) B.A.T.M.A.N. contributors:
c6c8fea2
SE
3 *
4 * Marek Lindner, Simon Wunderlich
c6c8fea2
SE
5 */
6
1e2c2a4f 7#include "originator.h"
c6c8fea2 8#include "main.h"
1e2c2a4f 9
7c124391 10#include <linux/atomic.h>
eb7da4f1 11#include <linux/container_of.h>
1e2c2a4f
SE
12#include <linux/errno.h>
13#include <linux/etherdevice.h>
b92b94ac 14#include <linux/gfp.h>
1e2c2a4f 15#include <linux/jiffies.h>
90f564df 16#include <linux/kref.h>
1e2c2a4f
SE
17#include <linux/list.h>
18#include <linux/lockdep.h>
19#include <linux/netdevice.h>
85cf8c85 20#include <linux/netlink.h>
d0fa4f3f 21#include <linux/rculist.h>
3326afe6 22#include <linux/rcupdate.h>
85cf8c85 23#include <linux/skbuff.h>
1e2c2a4f
SE
24#include <linux/slab.h>
25#include <linux/spinlock.h>
3326afe6 26#include <linux/stddef.h>
1e2c2a4f 27#include <linux/workqueue.h>
85cf8c85 28#include <net/sock.h>
61caf3d1 29#include <uapi/linux/batadv_packet.h>
85cf8c85 30#include <uapi/linux/batman_adv.h>
1e2c2a4f 31
01d350d1 32#include "bat_algo.h"
785ea114 33#include "distributed-arp-table.h"
1e2c2a4f 34#include "fragmentation.h"
c6c8fea2
SE
35#include "gateway_client.h"
36#include "hard-interface.h"
1e2c2a4f 37#include "hash.h"
ba412080 38#include "log.h"
60432d75 39#include "multicast.h"
85cf8c85 40#include "netlink.h"
1e2c2a4f
SE
41#include "network-coding.h"
42#include "routing.h"
85cf8c85 43#include "soft-interface.h"
1e2c2a4f 44#include "translation-table.h"
c6c8fea2 45
dec05074
AQ
46/* hash class keys */
47static struct lock_class_key batadv_orig_hash_lock_class_key;
48
ff15c27c
SE
49/**
50 * batadv_orig_hash_find() - Find and return originator from orig_hash
51 * @bat_priv: the bat priv with all the soft interface information
52 * @data: mac address of the originator
53 *
54 * Return: orig_node (with increased refcnt), NULL on errors
55 */
3326afe6
DV
56struct batadv_orig_node *
57batadv_orig_hash_find(struct batadv_priv *bat_priv, const void *data)
58{
59 struct batadv_hashtable *hash = bat_priv->orig_hash;
60 struct hlist_head *head;
61 struct batadv_orig_node *orig_node, *orig_node_tmp = NULL;
62 int index;
63
64 if (!hash)
65 return NULL;
66
67 index = batadv_choose_orig(data, hash->size);
68 head = &hash->table[index];
69
70 rcu_read_lock();
71 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
72 if (!batadv_compare_eth(orig_node, data))
73 continue;
74
75 if (!kref_get_unless_zero(&orig_node->refcount))
76 continue;
77
78 orig_node_tmp = orig_node;
79 break;
80 }
81 rcu_read_unlock();
82
83 return orig_node_tmp;
84}
85
03fc7f86 86static void batadv_purge_orig(struct work_struct *work);
c6c8fea2 87
62fe710f 88/**
7e9a8c2c 89 * batadv_compare_orig() - comparing function used in the originator hash table
7afcbbef
SE
90 * @node: node in the local table
91 * @data2: second object to compare the node to
62fe710f 92 *
4b426b10 93 * Return: true if they are the same originator
62fe710f 94 */
4b426b10 95bool batadv_compare_orig(const struct hlist_node *node, const void *data2)
b8e2dd13 96{
56303d34
SE
97 const void *data1 = container_of(node, struct batadv_orig_node,
98 hash_entry);
b8e2dd13 99
323813ed 100 return batadv_compare_eth(data1, data2);
b8e2dd13
SE
101}
102
7ea7b4a1 103/**
7e9a8c2c 104 * batadv_orig_node_vlan_get() - get an orig_node_vlan object
7ea7b4a1
AQ
105 * @orig_node: the originator serving the VLAN
106 * @vid: the VLAN identifier
107 *
62fe710f 108 * Return: the vlan object identified by vid and belonging to orig_node or NULL
7ea7b4a1
AQ
109 * if it does not exist.
110 */
111struct batadv_orig_node_vlan *
112batadv_orig_node_vlan_get(struct batadv_orig_node *orig_node,
113 unsigned short vid)
114{
115 struct batadv_orig_node_vlan *vlan = NULL, *tmp;
116
117 rcu_read_lock();
d0fa4f3f 118 hlist_for_each_entry_rcu(tmp, &orig_node->vlan_list, list) {
7ea7b4a1
AQ
119 if (tmp->vid != vid)
120 continue;
121
161a3be9 122 if (!kref_get_unless_zero(&tmp->refcount))
7ea7b4a1
AQ
123 continue;
124
125 vlan = tmp;
126
127 break;
128 }
129 rcu_read_unlock();
130
131 return vlan;
132}
133
134/**
7e9a8c2c 135 * batadv_orig_node_vlan_new() - search and possibly create an orig_node_vlan
7ea7b4a1
AQ
136 * object
137 * @orig_node: the originator serving the VLAN
138 * @vid: the VLAN identifier
139 *
62fe710f 140 * Return: NULL in case of failure or the vlan object identified by vid and
7ea7b4a1
AQ
141 * belonging to orig_node otherwise. The object is created and added to the list
142 * if it does not exist.
143 *
144 * The object is returned with refcounter increased by 1.
145 */
146struct batadv_orig_node_vlan *
147batadv_orig_node_vlan_new(struct batadv_orig_node *orig_node,
148 unsigned short vid)
149{
150 struct batadv_orig_node_vlan *vlan;
151
152 spin_lock_bh(&orig_node->vlan_list_lock);
153
154 /* first look if an object for this vid already exists */
155 vlan = batadv_orig_node_vlan_get(orig_node, vid);
156 if (vlan)
157 goto out;
158
159 vlan = kzalloc(sizeof(*vlan), GFP_ATOMIC);
160 if (!vlan)
161 goto out;
162
161a3be9 163 kref_init(&vlan->refcount);
7ea7b4a1
AQ
164 vlan->vid = vid;
165
09537d18 166 kref_get(&vlan->refcount);
d0fa4f3f 167 hlist_add_head_rcu(&vlan->list, &orig_node->vlan_list);
7ea7b4a1
AQ
168
169out:
170 spin_unlock_bh(&orig_node->vlan_list_lock);
171
172 return vlan;
173}
174
175/**
7e9a8c2c 176 * batadv_orig_node_vlan_release() - release originator-vlan object from lists
161a3be9
SE
177 * and queue for free after rcu grace period
178 * @ref: kref pointer of the originator-vlan object
179 */
6340dcbd 180void batadv_orig_node_vlan_release(struct kref *ref)
161a3be9
SE
181{
182 struct batadv_orig_node_vlan *orig_vlan;
183
184 orig_vlan = container_of(ref, struct batadv_orig_node_vlan, refcount);
185
186 kfree_rcu(orig_vlan, rcu);
187}
188
ff15c27c
SE
189/**
190 * batadv_originator_init() - Initialize all originator structures
191 * @bat_priv: the bat priv with all the soft interface information
192 *
193 * Return: 0 on success or negative error number in case of failure
194 */
56303d34 195int batadv_originator_init(struct batadv_priv *bat_priv)
c6c8fea2
SE
196{
197 if (bat_priv->orig_hash)
5346c35e 198 return 0;
c6c8fea2 199
1a8eaf07 200 bat_priv->orig_hash = batadv_hash_new(1024);
c6c8fea2
SE
201
202 if (!bat_priv->orig_hash)
203 goto err;
204
dec05074
AQ
205 batadv_hash_set_lock_class(bat_priv->orig_hash,
206 &batadv_orig_hash_lock_class_key);
207
72414442
AQ
208 INIT_DELAYED_WORK(&bat_priv->orig_work, batadv_purge_orig);
209 queue_delayed_work(batadv_event_workqueue,
210 &bat_priv->orig_work,
211 msecs_to_jiffies(BATADV_ORIG_WORK_PERIOD));
212
5346c35e 213 return 0;
c6c8fea2
SE
214
215err:
5346c35e 216 return -ENOMEM;
c6c8fea2
SE
217}
218
89652331 219/**
7e9a8c2c 220 * batadv_neigh_ifinfo_release() - release neigh_ifinfo from lists and queue for
ae3e1e36 221 * free after rcu grace period
962c6832 222 * @ref: kref pointer of the neigh_ifinfo
89652331 223 */
6340dcbd 224void batadv_neigh_ifinfo_release(struct kref *ref)
89652331 225{
962c6832
SE
226 struct batadv_neigh_ifinfo *neigh_ifinfo;
227
228 neigh_ifinfo = container_of(ref, struct batadv_neigh_ifinfo, refcount);
229
ae3e1e36 230 if (neigh_ifinfo->if_outgoing != BATADV_IF_DEFAULT)
82047ad7 231 batadv_hardif_put(neigh_ifinfo->if_outgoing);
ae3e1e36
SE
232
233 kfree_rcu(neigh_ifinfo, rcu);
89652331
SW
234}
235
cef63419 236/**
7e9a8c2c 237 * batadv_hardif_neigh_release() - release hardif neigh node from lists and
f6389692 238 * queue for free after rcu grace period
90f564df 239 * @ref: kref pointer of the neigh_node
cef63419 240 */
6340dcbd 241void batadv_hardif_neigh_release(struct kref *ref)
cef63419 242{
90f564df
SE
243 struct batadv_hardif_neigh_node *hardif_neigh;
244
245 hardif_neigh = container_of(ref, struct batadv_hardif_neigh_node,
246 refcount);
247
f6389692
SE
248 spin_lock_bh(&hardif_neigh->if_incoming->neigh_list_lock);
249 hlist_del_init_rcu(&hardif_neigh->list);
250 spin_unlock_bh(&hardif_neigh->if_incoming->neigh_list_lock);
bab7c6c3 251
82047ad7 252 batadv_hardif_put(hardif_neigh->if_incoming);
f6389692 253 kfree_rcu(hardif_neigh, rcu);
cef63419
ML
254}
255
89652331 256/**
7e9a8c2c 257 * batadv_neigh_node_release() - release neigh_node from lists and queue for
b4d922cf 258 * free after rcu grace period
77ae32e8 259 * @ref: kref pointer of the neigh_node
89652331 260 */
6340dcbd 261void batadv_neigh_node_release(struct kref *ref)
89652331
SW
262{
263 struct hlist_node *node_tmp;
77ae32e8 264 struct batadv_neigh_node *neigh_node;
89652331
SW
265 struct batadv_neigh_ifinfo *neigh_ifinfo;
266
77ae32e8 267 neigh_node = container_of(ref, struct batadv_neigh_node, refcount);
89652331
SW
268
269 hlist_for_each_entry_safe(neigh_ifinfo, node_tmp,
270 &neigh_node->ifinfo_list, list) {
044fa3ae 271 batadv_neigh_ifinfo_put(neigh_ifinfo);
89652331 272 }
bcef1f3c 273
abe59c65 274 batadv_hardif_neigh_put(neigh_node->hardif_neigh);
cef63419 275
82047ad7 276 batadv_hardif_put(neigh_node->if_incoming);
89652331 277
b4d922cf 278 kfree_rcu(neigh_node, rcu);
89652331
SW
279}
280
7351a482 281/**
7e9a8c2c 282 * batadv_orig_router_get() - router to the originator depending on iface
7351a482
SW
283 * @orig_node: the orig node for the router
284 * @if_outgoing: the interface where the payload packet has been received or
285 * the OGM should be sent to
286 *
bccb48c8 287 * Return: the neighbor which should be the router for this orig_node/iface.
7351a482
SW
288 *
289 * The object is returned with refcounter increased by 1.
290 */
56303d34 291struct batadv_neigh_node *
7351a482
SW
292batadv_orig_router_get(struct batadv_orig_node *orig_node,
293 const struct batadv_hard_iface *if_outgoing)
e1a5382f 294{
7351a482
SW
295 struct batadv_orig_ifinfo *orig_ifinfo;
296 struct batadv_neigh_node *router = NULL;
e1a5382f
LL
297
298 rcu_read_lock();
7351a482
SW
299 hlist_for_each_entry_rcu(orig_ifinfo, &orig_node->ifinfo_list, list) {
300 if (orig_ifinfo->if_outgoing != if_outgoing)
301 continue;
302
303 router = rcu_dereference(orig_ifinfo->router);
304 break;
305 }
e1a5382f 306
77ae32e8 307 if (router && !kref_get_unless_zero(&router->refcount))
e1a5382f
LL
308 router = NULL;
309
310 rcu_read_unlock();
311 return router;
312}
313
07afe1ba
LL
314/**
315 * batadv_orig_to_router() - get next hop neighbor to an orig address
316 * @bat_priv: the bat priv with all the soft interface information
317 * @orig_addr: the originator MAC address to search the best next hop router for
318 * @if_outgoing: the interface where the payload packet has been received or
319 * the OGM should be sent to
320 *
321 * Return: A neighbor node which is the best router towards the given originator
322 * address.
323 */
324struct batadv_neigh_node *
325batadv_orig_to_router(struct batadv_priv *bat_priv, u8 *orig_addr,
326 struct batadv_hard_iface *if_outgoing)
327{
328 struct batadv_neigh_node *neigh_node;
329 struct batadv_orig_node *orig_node;
330
331 orig_node = batadv_orig_hash_find(bat_priv, orig_addr);
332 if (!orig_node)
333 return NULL;
334
335 neigh_node = batadv_find_router(bat_priv, orig_node, if_outgoing);
336 batadv_orig_node_put(orig_node);
337
338 return neigh_node;
339}
340
7351a482 341/**
7e9a8c2c 342 * batadv_orig_ifinfo_get() - find the ifinfo from an orig_node
7351a482
SW
343 * @orig_node: the orig node to be queried
344 * @if_outgoing: the interface for which the ifinfo should be acquired
345 *
62fe710f 346 * Return: the requested orig_ifinfo or NULL if not found.
7351a482
SW
347 *
348 * The object is returned with refcounter increased by 1.
349 */
350struct batadv_orig_ifinfo *
351batadv_orig_ifinfo_get(struct batadv_orig_node *orig_node,
352 struct batadv_hard_iface *if_outgoing)
353{
354 struct batadv_orig_ifinfo *tmp, *orig_ifinfo = NULL;
355
356 rcu_read_lock();
357 hlist_for_each_entry_rcu(tmp, &orig_node->ifinfo_list,
358 list) {
359 if (tmp->if_outgoing != if_outgoing)
360 continue;
361
a6ba0d34 362 if (!kref_get_unless_zero(&tmp->refcount))
7351a482
SW
363 continue;
364
365 orig_ifinfo = tmp;
366 break;
367 }
368 rcu_read_unlock();
369
370 return orig_ifinfo;
371}
372
373/**
7e9a8c2c 374 * batadv_orig_ifinfo_new() - search and possibly create an orig_ifinfo object
7351a482
SW
375 * @orig_node: the orig node to be queried
376 * @if_outgoing: the interface for which the ifinfo should be acquired
377 *
62fe710f 378 * Return: NULL in case of failure or the orig_ifinfo object for the if_outgoing
7351a482
SW
379 * interface otherwise. The object is created and added to the list
380 * if it does not exist.
381 *
382 * The object is returned with refcounter increased by 1.
383 */
384struct batadv_orig_ifinfo *
385batadv_orig_ifinfo_new(struct batadv_orig_node *orig_node,
386 struct batadv_hard_iface *if_outgoing)
387{
422d2f77 388 struct batadv_orig_ifinfo *orig_ifinfo;
7351a482
SW
389 unsigned long reset_time;
390
391 spin_lock_bh(&orig_node->neigh_list_lock);
392
393 orig_ifinfo = batadv_orig_ifinfo_get(orig_node, if_outgoing);
394 if (orig_ifinfo)
395 goto out;
396
397 orig_ifinfo = kzalloc(sizeof(*orig_ifinfo), GFP_ATOMIC);
398 if (!orig_ifinfo)
399 goto out;
400
17a86915
SE
401 if (if_outgoing != BATADV_IF_DEFAULT)
402 kref_get(&if_outgoing->refcount);
7351a482
SW
403
404 reset_time = jiffies - 1;
405 reset_time -= msecs_to_jiffies(BATADV_RESET_PROTECTION_MS);
406 orig_ifinfo->batman_seqno_reset = reset_time;
407 orig_ifinfo->if_outgoing = if_outgoing;
408 INIT_HLIST_NODE(&orig_ifinfo->list);
a6ba0d34 409 kref_init(&orig_ifinfo->refcount);
f257b99b 410
a6ba0d34 411 kref_get(&orig_ifinfo->refcount);
7351a482
SW
412 hlist_add_head_rcu(&orig_ifinfo->list,
413 &orig_node->ifinfo_list);
414out:
415 spin_unlock_bh(&orig_node->neigh_list_lock);
416 return orig_ifinfo;
417}
418
89652331 419/**
7e9a8c2c 420 * batadv_neigh_ifinfo_get() - find the ifinfo from an neigh_node
e51f0397 421 * @neigh: the neigh node to be queried
89652331
SW
422 * @if_outgoing: the interface for which the ifinfo should be acquired
423 *
424 * The object is returned with refcounter increased by 1.
425 *
62fe710f 426 * Return: the requested neigh_ifinfo or NULL if not found
89652331
SW
427 */
428struct batadv_neigh_ifinfo *
429batadv_neigh_ifinfo_get(struct batadv_neigh_node *neigh,
430 struct batadv_hard_iface *if_outgoing)
431{
432 struct batadv_neigh_ifinfo *neigh_ifinfo = NULL,
433 *tmp_neigh_ifinfo;
434
435 rcu_read_lock();
436 hlist_for_each_entry_rcu(tmp_neigh_ifinfo, &neigh->ifinfo_list,
437 list) {
438 if (tmp_neigh_ifinfo->if_outgoing != if_outgoing)
439 continue;
440
962c6832 441 if (!kref_get_unless_zero(&tmp_neigh_ifinfo->refcount))
89652331
SW
442 continue;
443
444 neigh_ifinfo = tmp_neigh_ifinfo;
445 break;
446 }
447 rcu_read_unlock();
448
449 return neigh_ifinfo;
450}
451
452/**
7e9a8c2c 453 * batadv_neigh_ifinfo_new() - search and possibly create an neigh_ifinfo object
e51f0397 454 * @neigh: the neigh node to be queried
89652331
SW
455 * @if_outgoing: the interface for which the ifinfo should be acquired
456 *
62fe710f 457 * Return: NULL in case of failure or the neigh_ifinfo object for the
89652331
SW
458 * if_outgoing interface otherwise. The object is created and added to the list
459 * if it does not exist.
460 *
461 * The object is returned with refcounter increased by 1.
462 */
463struct batadv_neigh_ifinfo *
464batadv_neigh_ifinfo_new(struct batadv_neigh_node *neigh,
465 struct batadv_hard_iface *if_outgoing)
466{
467 struct batadv_neigh_ifinfo *neigh_ifinfo;
468
469 spin_lock_bh(&neigh->ifinfo_lock);
470
471 neigh_ifinfo = batadv_neigh_ifinfo_get(neigh, if_outgoing);
472 if (neigh_ifinfo)
473 goto out;
474
475 neigh_ifinfo = kzalloc(sizeof(*neigh_ifinfo), GFP_ATOMIC);
476 if (!neigh_ifinfo)
477 goto out;
478
17a86915
SE
479 if (if_outgoing)
480 kref_get(&if_outgoing->refcount);
89652331
SW
481
482 INIT_HLIST_NODE(&neigh_ifinfo->list);
962c6832 483 kref_init(&neigh_ifinfo->refcount);
89652331
SW
484 neigh_ifinfo->if_outgoing = if_outgoing;
485
2e774ac2 486 kref_get(&neigh_ifinfo->refcount);
89652331
SW
487 hlist_add_head_rcu(&neigh_ifinfo->list, &neigh->ifinfo_list);
488
489out:
490 spin_unlock_bh(&neigh->ifinfo_lock);
491
492 return neigh_ifinfo;
493}
494
ed292663 495/**
7e9a8c2c 496 * batadv_neigh_node_get() - retrieve a neighbour from the list
ed292663
ML
497 * @orig_node: originator which the neighbour belongs to
498 * @hard_iface: the interface where this neighbour is connected to
499 * @addr: the address of the neighbour
500 *
501 * Looks for and possibly returns a neighbour belonging to this originator list
502 * which is connected through the provided hard interface.
62fe710f 503 *
bccb48c8 504 * Return: neighbor when found. Otherwise NULL
ed292663
ML
505 */
506static struct batadv_neigh_node *
507batadv_neigh_node_get(const struct batadv_orig_node *orig_node,
508 const struct batadv_hard_iface *hard_iface,
509 const u8 *addr)
510{
511 struct batadv_neigh_node *tmp_neigh_node, *res = NULL;
512
513 rcu_read_lock();
514 hlist_for_each_entry_rcu(tmp_neigh_node, &orig_node->neigh_list, list) {
515 if (!batadv_compare_eth(tmp_neigh_node->addr, addr))
516 continue;
517
518 if (tmp_neigh_node->if_incoming != hard_iface)
519 continue;
520
77ae32e8 521 if (!kref_get_unless_zero(&tmp_neigh_node->refcount))
ed292663
ML
522 continue;
523
524 res = tmp_neigh_node;
525 break;
526 }
527 rcu_read_unlock();
528
529 return res;
530}
531
cef63419 532/**
7e9a8c2c 533 * batadv_hardif_neigh_create() - create a hardif neighbour node
cef63419
ML
534 * @hard_iface: the interface this neighbour is connected to
535 * @neigh_addr: the interface address of the neighbour to retrieve
3111beed 536 * @orig_node: originator object representing the neighbour
cef63419 537 *
62fe710f 538 * Return: the hardif neighbour node if found or created or NULL otherwise.
cef63419
ML
539 */
540static struct batadv_hardif_neigh_node *
541batadv_hardif_neigh_create(struct batadv_hard_iface *hard_iface,
3111beed
LL
542 const u8 *neigh_addr,
543 struct batadv_orig_node *orig_node)
cef63419 544{
8248a4c7 545 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
422d2f77 546 struct batadv_hardif_neigh_node *hardif_neigh;
cef63419
ML
547
548 spin_lock_bh(&hard_iface->neigh_list_lock);
549
550 /* check if neighbor hasn't been added in the meantime */
551 hardif_neigh = batadv_hardif_neigh_get(hard_iface, neigh_addr);
552 if (hardif_neigh)
553 goto out;
554
cef63419 555 hardif_neigh = kzalloc(sizeof(*hardif_neigh), GFP_ATOMIC);
17a86915 556 if (!hardif_neigh)
cef63419 557 goto out;
cef63419 558
17a86915 559 kref_get(&hard_iface->refcount);
cef63419
ML
560 INIT_HLIST_NODE(&hardif_neigh->list);
561 ether_addr_copy(hardif_neigh->addr, neigh_addr);
3111beed 562 ether_addr_copy(hardif_neigh->orig, orig_node->orig);
cef63419
ML
563 hardif_neigh->if_incoming = hard_iface;
564 hardif_neigh->last_seen = jiffies;
565
90f564df 566 kref_init(&hardif_neigh->refcount);
cef63419 567
29824a55
AQ
568 if (bat_priv->algo_ops->neigh.hardif_init)
569 bat_priv->algo_ops->neigh.hardif_init(hardif_neigh);
8248a4c7 570
9ca488dd 571 hlist_add_head_rcu(&hardif_neigh->list, &hard_iface->neigh_list);
cef63419
ML
572
573out:
574 spin_unlock_bh(&hard_iface->neigh_list_lock);
575 return hardif_neigh;
576}
577
578/**
7e9a8c2c 579 * batadv_hardif_neigh_get_or_create() - retrieve or create a hardif neighbour
cef63419
ML
580 * node
581 * @hard_iface: the interface this neighbour is connected to
582 * @neigh_addr: the interface address of the neighbour to retrieve
3111beed 583 * @orig_node: originator object representing the neighbour
cef63419 584 *
62fe710f 585 * Return: the hardif neighbour node if found or created or NULL otherwise.
cef63419
ML
586 */
587static struct batadv_hardif_neigh_node *
588batadv_hardif_neigh_get_or_create(struct batadv_hard_iface *hard_iface,
3111beed
LL
589 const u8 *neigh_addr,
590 struct batadv_orig_node *orig_node)
cef63419 591{
422d2f77 592 struct batadv_hardif_neigh_node *hardif_neigh;
cef63419
ML
593
594 /* first check without locking to avoid the overhead */
595 hardif_neigh = batadv_hardif_neigh_get(hard_iface, neigh_addr);
596 if (hardif_neigh)
597 return hardif_neigh;
598
3111beed 599 return batadv_hardif_neigh_create(hard_iface, neigh_addr, orig_node);
cef63419
ML
600}
601
602/**
7e9a8c2c 603 * batadv_hardif_neigh_get() - retrieve a hardif neighbour from the list
cef63419
ML
604 * @hard_iface: the interface where this neighbour is connected to
605 * @neigh_addr: the address of the neighbour
606 *
607 * Looks for and possibly returns a neighbour belonging to this hard interface.
62fe710f 608 *
bccb48c8 609 * Return: neighbor when found. Otherwise NULL
cef63419
ML
610 */
611struct batadv_hardif_neigh_node *
612batadv_hardif_neigh_get(const struct batadv_hard_iface *hard_iface,
613 const u8 *neigh_addr)
614{
615 struct batadv_hardif_neigh_node *tmp_hardif_neigh, *hardif_neigh = NULL;
616
617 rcu_read_lock();
618 hlist_for_each_entry_rcu(tmp_hardif_neigh,
619 &hard_iface->neigh_list, list) {
620 if (!batadv_compare_eth(tmp_hardif_neigh->addr, neigh_addr))
621 continue;
622
90f564df 623 if (!kref_get_unless_zero(&tmp_hardif_neigh->refcount))
cef63419
ML
624 continue;
625
626 hardif_neigh = tmp_hardif_neigh;
627 break;
628 }
629 rcu_read_unlock();
630
631 return hardif_neigh;
632}
633
0538f759 634/**
7e9a8c2c 635 * batadv_neigh_node_create() - create a neigh node object
3f32f8a6 636 * @orig_node: originator object representing the neighbour
0538f759
AQ
637 * @hard_iface: the interface where the neighbour is connected to
638 * @neigh_addr: the mac address of the neighbour interface
0538f759
AQ
639 *
640 * Allocates a new neigh_node object and initialises all the generic fields.
62fe710f 641 *
6f0a6b5e 642 * Return: the neighbour node if found or created or NULL otherwise.
0538f759 643 */
6f0a6b5e
ML
644static struct batadv_neigh_node *
645batadv_neigh_node_create(struct batadv_orig_node *orig_node,
646 struct batadv_hard_iface *hard_iface,
647 const u8 *neigh_addr)
c6c8fea2 648{
56303d34 649 struct batadv_neigh_node *neigh_node;
cef63419 650 struct batadv_hardif_neigh_node *hardif_neigh = NULL;
c6c8fea2 651
e123705e
LL
652 spin_lock_bh(&orig_node->neigh_list_lock);
653
741aa06b
ML
654 neigh_node = batadv_neigh_node_get(orig_node, hard_iface, neigh_addr);
655 if (neigh_node)
656 goto out;
657
cef63419 658 hardif_neigh = batadv_hardif_neigh_get_or_create(hard_iface,
3111beed 659 neigh_addr, orig_node);
cef63419
ML
660 if (!hardif_neigh)
661 goto out;
662
704509b8 663 neigh_node = kzalloc(sizeof(*neigh_node), GFP_ATOMIC);
c6c8fea2 664 if (!neigh_node)
7ae8b285 665 goto out;
c6c8fea2 666
9591a79f 667 INIT_HLIST_NODE(&neigh_node->list);
89652331
SW
668 INIT_HLIST_HEAD(&neigh_node->ifinfo_list);
669 spin_lock_init(&neigh_node->ifinfo_lock);
c6c8fea2 670
17a86915 671 kref_get(&hard_iface->refcount);
8fdd0153 672 ether_addr_copy(neigh_node->addr, neigh_addr);
0538f759
AQ
673 neigh_node->if_incoming = hard_iface;
674 neigh_node->orig_node = orig_node;
e48474ed 675 neigh_node->last_seen = jiffies;
0538f759 676
abe59c65
SE
677 /* increment unique neighbor refcount */
678 kref_get(&hardif_neigh->refcount);
679 neigh_node->hardif_neigh = hardif_neigh;
680
1605d0d6 681 /* extra reference for return */
77ae32e8 682 kref_init(&neigh_node->refcount);
c6c8fea2 683
84274458 684 kref_get(&neigh_node->refcount);
741aa06b 685 hlist_add_head_rcu(&neigh_node->list, &orig_node->neigh_list);
741aa06b
ML
686
687 batadv_dbg(BATADV_DBG_BATMAN, orig_node->bat_priv,
688 "Creating new neighbor %pM for orig_node %pM on interface %s\n",
689 neigh_addr, orig_node->orig, hard_iface->net_dev->name);
690
7ae8b285 691out:
e123705e
LL
692 spin_unlock_bh(&orig_node->neigh_list_lock);
693
79a0bffb 694 batadv_hardif_neigh_put(hardif_neigh);
c6c8fea2
SE
695 return neigh_node;
696}
697
6f0a6b5e 698/**
7e9a8c2c 699 * batadv_neigh_node_get_or_create() - retrieve or create a neigh node object
6f0a6b5e
ML
700 * @orig_node: originator object representing the neighbour
701 * @hard_iface: the interface where the neighbour is connected to
702 * @neigh_addr: the mac address of the neighbour interface
703 *
704 * Return: the neighbour node if found or created or NULL otherwise.
705 */
706struct batadv_neigh_node *
707batadv_neigh_node_get_or_create(struct batadv_orig_node *orig_node,
708 struct batadv_hard_iface *hard_iface,
709 const u8 *neigh_addr)
710{
422d2f77 711 struct batadv_neigh_node *neigh_node;
6f0a6b5e
ML
712
713 /* first check without locking to avoid the overhead */
714 neigh_node = batadv_neigh_node_get(orig_node, hard_iface, neigh_addr);
715 if (neigh_node)
716 return neigh_node;
717
718 return batadv_neigh_node_create(orig_node, hard_iface, neigh_addr);
719}
720
85cf8c85 721/**
7e9a8c2c
SE
722 * batadv_hardif_neigh_dump() - Dump to netlink the neighbor infos for a
723 * specific outgoing interface
85cf8c85
MS
724 * @msg: message to dump into
725 * @cb: parameters for the dump
726 *
727 * Return: 0 or error value
728 */
729int batadv_hardif_neigh_dump(struct sk_buff *msg, struct netlink_callback *cb)
730{
731 struct net *net = sock_net(cb->skb->sk);
732 struct net_device *soft_iface;
733 struct net_device *hard_iface = NULL;
734 struct batadv_hard_iface *hardif = BATADV_IF_DEFAULT;
735 struct batadv_priv *bat_priv;
736 struct batadv_hard_iface *primary_if = NULL;
737 int ret;
738 int ifindex, hard_ifindex;
739
740 ifindex = batadv_netlink_get_ifindex(cb->nlh, BATADV_ATTR_MESH_IFINDEX);
741 if (!ifindex)
742 return -EINVAL;
743
744 soft_iface = dev_get_by_index(net, ifindex);
745 if (!soft_iface || !batadv_softif_is_valid(soft_iface)) {
746 ret = -ENODEV;
747 goto out;
748 }
749
750 bat_priv = netdev_priv(soft_iface);
751
752 primary_if = batadv_primary_if_get_selected(bat_priv);
753 if (!primary_if || primary_if->if_status != BATADV_IF_ACTIVE) {
754 ret = -ENOENT;
755 goto out;
756 }
757
758 hard_ifindex = batadv_netlink_get_ifindex(cb->nlh,
759 BATADV_ATTR_HARD_IFINDEX);
760 if (hard_ifindex) {
761 hard_iface = dev_get_by_index(net, hard_ifindex);
762 if (hard_iface)
763 hardif = batadv_hardif_get_by_netdev(hard_iface);
764
765 if (!hardif) {
766 ret = -ENODEV;
767 goto out;
768 }
769
770 if (hardif->soft_iface != soft_iface) {
771 ret = -ENOENT;
772 goto out;
773 }
774 }
775
776 if (!bat_priv->algo_ops->neigh.dump) {
777 ret = -EOPNOTSUPP;
778 goto out;
779 }
780
781 bat_priv->algo_ops->neigh.dump(msg, cb, bat_priv, hardif);
782
783 ret = msg->len;
784
785 out:
79a0bffb 786 batadv_hardif_put(hardif);
1160dfa1 787 dev_put(hard_iface);
79a0bffb 788 batadv_hardif_put(primary_if);
1160dfa1 789 dev_put(soft_iface);
85cf8c85
MS
790
791 return ret;
792}
793
7351a482 794/**
7e9a8c2c 795 * batadv_orig_ifinfo_release() - release orig_ifinfo from lists and queue for
2baa753c 796 * free after rcu grace period
a6ba0d34 797 * @ref: kref pointer of the orig_ifinfo
7351a482 798 */
6340dcbd 799void batadv_orig_ifinfo_release(struct kref *ref)
7351a482 800{
a6ba0d34 801 struct batadv_orig_ifinfo *orig_ifinfo;
000c8dff 802 struct batadv_neigh_node *router;
7351a482 803
a6ba0d34
SE
804 orig_ifinfo = container_of(ref, struct batadv_orig_ifinfo, refcount);
805
7351a482 806 if (orig_ifinfo->if_outgoing != BATADV_IF_DEFAULT)
82047ad7 807 batadv_hardif_put(orig_ifinfo->if_outgoing);
7351a482 808
000c8dff
SW
809 /* this is the last reference to this object */
810 router = rcu_dereference_protected(orig_ifinfo->router, true);
79a0bffb 811 batadv_neigh_node_put(router);
2baa753c
SE
812
813 kfree_rcu(orig_ifinfo, rcu);
7351a482
SW
814}
815
7351a482 816/**
7e9a8c2c 817 * batadv_orig_node_free_rcu() - free the orig_node
deed9660 818 * @rcu: rcu pointer of the orig_node
7351a482 819 */
deed9660 820static void batadv_orig_node_free_rcu(struct rcu_head *rcu)
7351a482 821{
deed9660
SE
822 struct batadv_orig_node *orig_node;
823
824 orig_node = container_of(rcu, struct batadv_orig_node, rcu);
825
826 batadv_mcast_purge_orig(orig_node);
827
828 batadv_frag_purge_orig(orig_node, NULL);
829
deed9660
SE
830 kfree(orig_node->tt_buff);
831 kfree(orig_node);
7351a482
SW
832}
833
deed9660 834/**
7e9a8c2c 835 * batadv_orig_node_release() - release orig_node from lists and queue for
deed9660 836 * free after rcu grace period
7c124391 837 * @ref: kref pointer of the orig_node
deed9660 838 */
6340dcbd 839void batadv_orig_node_release(struct kref *ref)
c6c8fea2 840{
b67bfe0d 841 struct hlist_node *node_tmp;
f6c8b711 842 struct batadv_neigh_node *neigh_node;
7c124391 843 struct batadv_orig_node *orig_node;
7351a482 844 struct batadv_orig_ifinfo *orig_ifinfo;
33fbb1f3 845 struct batadv_orig_node_vlan *vlan;
cbef1e10 846 struct batadv_orig_ifinfo *last_candidate;
16b1aba8 847
7c124391
SE
848 orig_node = container_of(ref, struct batadv_orig_node, refcount);
849
f987ed6e
ML
850 spin_lock_bh(&orig_node->neigh_list_lock);
851
c6c8fea2 852 /* for all neighbors towards this originator ... */
b67bfe0d 853 hlist_for_each_entry_safe(neigh_node, node_tmp,
9591a79f 854 &orig_node->neigh_list, list) {
f987ed6e 855 hlist_del_rcu(&neigh_node->list);
25bb2509 856 batadv_neigh_node_put(neigh_node);
c6c8fea2
SE
857 }
858
7351a482
SW
859 hlist_for_each_entry_safe(orig_ifinfo, node_tmp,
860 &orig_node->ifinfo_list, list) {
861 hlist_del_rcu(&orig_ifinfo->list);
35f94779 862 batadv_orig_ifinfo_put(orig_ifinfo);
7351a482 863 }
cbef1e10
SE
864
865 last_candidate = orig_node->last_bonding_candidate;
866 orig_node->last_bonding_candidate = NULL;
f987ed6e
ML
867 spin_unlock_bh(&orig_node->neigh_list_lock);
868
79a0bffb 869 batadv_orig_ifinfo_put(last_candidate);
cbef1e10 870
33fbb1f3
SE
871 spin_lock_bh(&orig_node->vlan_list_lock);
872 hlist_for_each_entry_safe(vlan, node_tmp, &orig_node->vlan_list, list) {
873 hlist_del_rcu(&vlan->list);
874 batadv_orig_node_vlan_put(vlan);
875 }
876 spin_unlock_bh(&orig_node->vlan_list_lock);
877
d56b1705
MH
878 /* Free nc_nodes */
879 batadv_nc_purge_orig(orig_node->bat_priv, orig_node, NULL);
880
deed9660 881 call_rcu(&orig_node->rcu, batadv_orig_node_free_rcu);
c6c8fea2
SE
882}
883
ff15c27c
SE
884/**
885 * batadv_originator_free() - Free all originator structures
886 * @bat_priv: the bat priv with all the soft interface information
887 */
56303d34 888void batadv_originator_free(struct batadv_priv *bat_priv)
c6c8fea2 889{
5bf74e9c 890 struct batadv_hashtable *hash = bat_priv->orig_hash;
b67bfe0d 891 struct hlist_node *node_tmp;
16b1aba8 892 struct hlist_head *head;
16b1aba8 893 spinlock_t *list_lock; /* spinlock to protect write access */
56303d34 894 struct batadv_orig_node *orig_node;
6b5e971a 895 u32 i;
16b1aba8
ML
896
897 if (!hash)
c6c8fea2
SE
898 return;
899
900 cancel_delayed_work_sync(&bat_priv->orig_work);
901
c6c8fea2 902 bat_priv->orig_hash = NULL;
16b1aba8
ML
903
904 for (i = 0; i < hash->size; i++) {
905 head = &hash->table[i];
906 list_lock = &hash->list_locks[i];
907
908 spin_lock_bh(list_lock);
b67bfe0d 909 hlist_for_each_entry_safe(orig_node, node_tmp,
7aadf889 910 head, hash_entry) {
b67bfe0d 911 hlist_del_rcu(&orig_node->hash_entry);
5d967310 912 batadv_orig_node_put(orig_node);
16b1aba8
ML
913 }
914 spin_unlock_bh(list_lock);
915 }
916
1a8eaf07 917 batadv_hash_destroy(hash);
c6c8fea2
SE
918}
919
bbad0a5e 920/**
7e9a8c2c 921 * batadv_orig_node_new() - creates a new orig_node
bbad0a5e
AQ
922 * @bat_priv: the bat priv with all the soft interface information
923 * @addr: the mac address of the originator
924 *
bccb48c8 925 * Creates a new originator object and initialises all the generic fields.
bbad0a5e 926 * The new object is not added to the originator list.
62fe710f
SE
927 *
928 * Return: the newly created object or NULL on failure.
9cfc7bd6 929 */
bbad0a5e 930struct batadv_orig_node *batadv_orig_node_new(struct batadv_priv *bat_priv,
6b5e971a 931 const u8 *addr)
c6c8fea2 932{
56303d34 933 struct batadv_orig_node *orig_node;
7ea7b4a1 934 struct batadv_orig_node_vlan *vlan;
42d0b044 935 unsigned long reset_time;
bbad0a5e 936 int i;
c6c8fea2 937
39c75a51
SE
938 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
939 "Creating new originator: %pM\n", addr);
c6c8fea2 940
704509b8 941 orig_node = kzalloc(sizeof(*orig_node), GFP_ATOMIC);
c6c8fea2
SE
942 if (!orig_node)
943 return NULL;
944
9591a79f 945 INIT_HLIST_HEAD(&orig_node->neigh_list);
d0fa4f3f 946 INIT_HLIST_HEAD(&orig_node->vlan_list);
7351a482 947 INIT_HLIST_HEAD(&orig_node->ifinfo_list);
f3e0008f 948 spin_lock_init(&orig_node->bcast_seqno_lock);
f987ed6e 949 spin_lock_init(&orig_node->neigh_list_lock);
a73105b8 950 spin_lock_init(&orig_node->tt_buff_lock);
a70a9aa9 951 spin_lock_init(&orig_node->tt_lock);
7ea7b4a1 952 spin_lock_init(&orig_node->vlan_list_lock);
7b36e8ee 953
d56b1705
MH
954 batadv_nc_init_orig(orig_node);
955
7b36e8ee 956 /* extra reference for return */
7c124391 957 kref_init(&orig_node->refcount);
c6c8fea2 958
16b1aba8 959 orig_node->bat_priv = bat_priv;
8fdd0153 960 ether_addr_copy(orig_node->orig, addr);
785ea114 961 batadv_dat_init_orig_node_addr(orig_node);
c8c991bf 962 atomic_set(&orig_node->last_ttvn, 0);
2dafb49d 963 orig_node->tt_buff = NULL;
a73105b8 964 orig_node->tt_buff_len = 0;
2c667a33 965 orig_node->last_seen = jiffies;
42d0b044
SE
966 reset_time = jiffies - 1 - msecs_to_jiffies(BATADV_RESET_PROTECTION_MS);
967 orig_node->bcast_seqno_reset = reset_time;
8a4023c5 968
60432d75 969#ifdef CONFIG_BATMAN_ADV_MCAST
61caf3d1
LL
970 orig_node->mcast_flags = BATADV_MCAST_WANT_NO_RTR4;
971 orig_node->mcast_flags |= BATADV_MCAST_WANT_NO_RTR6;
07afe1ba 972 orig_node->mcast_flags |= BATADV_MCAST_HAVE_MC_PTYPE_CAPA;
8a4023c5
LL
973 INIT_HLIST_NODE(&orig_node->mcast_want_all_unsnoopables_node);
974 INIT_HLIST_NODE(&orig_node->mcast_want_all_ipv4_node);
975 INIT_HLIST_NODE(&orig_node->mcast_want_all_ipv6_node);
976 spin_lock_init(&orig_node->mcast_handler_lock);
60432d75 977#endif
c6c8fea2 978
7ea7b4a1
AQ
979 /* create a vlan object for the "untagged" LAN */
980 vlan = batadv_orig_node_vlan_new(orig_node, BATADV_NO_FLAGS);
981 if (!vlan)
982 goto free_orig_node;
983 /* batadv_orig_node_vlan_new() increases the refcounter.
984 * Immediately release vlan since it is not needed anymore in this
985 * context
986 */
21754e25 987 batadv_orig_node_vlan_put(vlan);
7ea7b4a1 988
610bfc6b 989 for (i = 0; i < BATADV_FRAG_BUFFER_COUNT; i++) {
176e5b77 990 INIT_HLIST_HEAD(&orig_node->fragments[i].fragment_list);
610bfc6b
MH
991 spin_lock_init(&orig_node->fragments[i].lock);
992 orig_node->fragments[i].size = 0;
993 }
994
c6c8fea2 995 return orig_node;
c6c8fea2
SE
996free_orig_node:
997 kfree(orig_node);
998 return NULL;
999}
1000
709de13f 1001/**
7e9a8c2c 1002 * batadv_purge_neigh_ifinfo() - purge obsolete ifinfo entries from neighbor
709de13f
SW
1003 * @bat_priv: the bat priv with all the soft interface information
1004 * @neigh: orig node which is to be checked
1005 */
1006static void
1007batadv_purge_neigh_ifinfo(struct batadv_priv *bat_priv,
1008 struct batadv_neigh_node *neigh)
1009{
1010 struct batadv_neigh_ifinfo *neigh_ifinfo;
1011 struct batadv_hard_iface *if_outgoing;
1012 struct hlist_node *node_tmp;
1013
1014 spin_lock_bh(&neigh->ifinfo_lock);
1015
1016 /* for all ifinfo objects for this neighinator */
1017 hlist_for_each_entry_safe(neigh_ifinfo, node_tmp,
1018 &neigh->ifinfo_list, list) {
1019 if_outgoing = neigh_ifinfo->if_outgoing;
1020
1021 /* always keep the default interface */
1022 if (if_outgoing == BATADV_IF_DEFAULT)
1023 continue;
1024
1025 /* don't purge if the interface is not (going) down */
825ffe1f
SE
1026 if (if_outgoing->if_status != BATADV_IF_INACTIVE &&
1027 if_outgoing->if_status != BATADV_IF_NOT_IN_USE &&
1028 if_outgoing->if_status != BATADV_IF_TO_BE_REMOVED)
709de13f
SW
1029 continue;
1030
1031 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1032 "neighbor/ifinfo purge: neighbor %pM, iface: %s\n",
1033 neigh->addr, if_outgoing->net_dev->name);
1034
1035 hlist_del_rcu(&neigh_ifinfo->list);
044fa3ae 1036 batadv_neigh_ifinfo_put(neigh_ifinfo);
709de13f
SW
1037 }
1038
1039 spin_unlock_bh(&neigh->ifinfo_lock);
1040}
1041
7351a482 1042/**
7e9a8c2c 1043 * batadv_purge_orig_ifinfo() - purge obsolete ifinfo entries from originator
7351a482
SW
1044 * @bat_priv: the bat priv with all the soft interface information
1045 * @orig_node: orig node which is to be checked
1046 *
62fe710f 1047 * Return: true if any ifinfo entry was purged, false otherwise.
7351a482
SW
1048 */
1049static bool
1050batadv_purge_orig_ifinfo(struct batadv_priv *bat_priv,
1051 struct batadv_orig_node *orig_node)
1052{
1053 struct batadv_orig_ifinfo *orig_ifinfo;
1054 struct batadv_hard_iface *if_outgoing;
1055 struct hlist_node *node_tmp;
1056 bool ifinfo_purged = false;
1057
1058 spin_lock_bh(&orig_node->neigh_list_lock);
1059
1060 /* for all ifinfo objects for this originator */
1061 hlist_for_each_entry_safe(orig_ifinfo, node_tmp,
1062 &orig_node->ifinfo_list, list) {
1063 if_outgoing = orig_ifinfo->if_outgoing;
1064
1065 /* always keep the default interface */
1066 if (if_outgoing == BATADV_IF_DEFAULT)
1067 continue;
1068
1069 /* don't purge if the interface is not (going) down */
825ffe1f
SE
1070 if (if_outgoing->if_status != BATADV_IF_INACTIVE &&
1071 if_outgoing->if_status != BATADV_IF_NOT_IN_USE &&
1072 if_outgoing->if_status != BATADV_IF_TO_BE_REMOVED)
7351a482
SW
1073 continue;
1074
1075 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1076 "router/ifinfo purge: originator %pM, iface: %s\n",
1077 orig_node->orig, if_outgoing->net_dev->name);
1078
1079 ifinfo_purged = true;
1080
1081 hlist_del_rcu(&orig_ifinfo->list);
35f94779 1082 batadv_orig_ifinfo_put(orig_ifinfo);
f3b3d901
SW
1083 if (orig_node->last_bonding_candidate == orig_ifinfo) {
1084 orig_node->last_bonding_candidate = NULL;
35f94779 1085 batadv_orig_ifinfo_put(orig_ifinfo);
f3b3d901 1086 }
7351a482
SW
1087 }
1088
1089 spin_unlock_bh(&orig_node->neigh_list_lock);
1090
1091 return ifinfo_purged;
1092}
1093
89652331 1094/**
7e9a8c2c 1095 * batadv_purge_orig_neighbors() - purges neighbors from originator
89652331
SW
1096 * @bat_priv: the bat priv with all the soft interface information
1097 * @orig_node: orig node which is to be checked
1098 *
62fe710f 1099 * Return: true if any neighbor was purged, false otherwise
89652331 1100 */
56303d34
SE
1101static bool
1102batadv_purge_orig_neighbors(struct batadv_priv *bat_priv,
89652331 1103 struct batadv_orig_node *orig_node)
c6c8fea2 1104{
b67bfe0d 1105 struct hlist_node *node_tmp;
56303d34 1106 struct batadv_neigh_node *neigh_node;
c6c8fea2 1107 bool neigh_purged = false;
0b0094e0 1108 unsigned long last_seen;
56303d34 1109 struct batadv_hard_iface *if_incoming;
c6c8fea2 1110
f987ed6e
ML
1111 spin_lock_bh(&orig_node->neigh_list_lock);
1112
c6c8fea2 1113 /* for all neighbors towards this originator ... */
b67bfe0d 1114 hlist_for_each_entry_safe(neigh_node, node_tmp,
9591a79f 1115 &orig_node->neigh_list, list) {
1eda58bf
SE
1116 last_seen = neigh_node->last_seen;
1117 if_incoming = neigh_node->if_incoming;
1118
825ffe1f
SE
1119 if (batadv_has_timed_out(last_seen, BATADV_PURGE_TIMEOUT) ||
1120 if_incoming->if_status == BATADV_IF_INACTIVE ||
1121 if_incoming->if_status == BATADV_IF_NOT_IN_USE ||
1122 if_incoming->if_status == BATADV_IF_TO_BE_REMOVED) {
1123 if (if_incoming->if_status == BATADV_IF_INACTIVE ||
1124 if_incoming->if_status == BATADV_IF_NOT_IN_USE ||
1125 if_incoming->if_status == BATADV_IF_TO_BE_REMOVED)
39c75a51 1126 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf
SE
1127 "neighbor purge: originator %pM, neighbor: %pM, iface: %s\n",
1128 orig_node->orig, neigh_node->addr,
1129 if_incoming->net_dev->name);
c6c8fea2 1130 else
39c75a51 1131 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf
SE
1132 "neighbor timeout: originator %pM, neighbor: %pM, last_seen: %u\n",
1133 orig_node->orig, neigh_node->addr,
1134 jiffies_to_msecs(last_seen));
c6c8fea2
SE
1135
1136 neigh_purged = true;
9591a79f 1137
f987ed6e 1138 hlist_del_rcu(&neigh_node->list);
25bb2509 1139 batadv_neigh_node_put(neigh_node);
709de13f
SW
1140 } else {
1141 /* only necessary if not the whole neighbor is to be
1142 * deleted, but some interface has been removed.
1143 */
1144 batadv_purge_neigh_ifinfo(bat_priv, neigh_node);
c6c8fea2
SE
1145 }
1146 }
f987ed6e
ML
1147
1148 spin_unlock_bh(&orig_node->neigh_list_lock);
c6c8fea2
SE
1149 return neigh_purged;
1150}
1151
89652331 1152/**
7e9a8c2c 1153 * batadv_find_best_neighbor() - finds the best neighbor after purging
89652331
SW
1154 * @bat_priv: the bat priv with all the soft interface information
1155 * @orig_node: orig node which is to be checked
1156 * @if_outgoing: the interface for which the metric should be compared
1157 *
62fe710f 1158 * Return: the current best neighbor, with refcount increased.
89652331
SW
1159 */
1160static struct batadv_neigh_node *
1161batadv_find_best_neighbor(struct batadv_priv *bat_priv,
1162 struct batadv_orig_node *orig_node,
1163 struct batadv_hard_iface *if_outgoing)
1164{
1165 struct batadv_neigh_node *best = NULL, *neigh;
29824a55 1166 struct batadv_algo_ops *bao = bat_priv->algo_ops;
89652331
SW
1167
1168 rcu_read_lock();
1169 hlist_for_each_entry_rcu(neigh, &orig_node->neigh_list, list) {
29824a55
AQ
1170 if (best && (bao->neigh.cmp(neigh, if_outgoing, best,
1171 if_outgoing) <= 0))
89652331
SW
1172 continue;
1173
77ae32e8 1174 if (!kref_get_unless_zero(&neigh->refcount))
89652331
SW
1175 continue;
1176
79a0bffb 1177 batadv_neigh_node_put(best);
89652331
SW
1178
1179 best = neigh;
1180 }
1181 rcu_read_unlock();
1182
1183 return best;
1184}
1185
7351a482 1186/**
7e9a8c2c 1187 * batadv_purge_orig_node() - purges obsolete information from an orig_node
7351a482
SW
1188 * @bat_priv: the bat priv with all the soft interface information
1189 * @orig_node: orig node which is to be checked
1190 *
1191 * This function checks if the orig_node or substructures of it have become
1192 * obsolete, and purges this information if that's the case.
1193 *
62fe710f 1194 * Return: true if the orig_node is to be removed, false otherwise.
7351a482 1195 */
56303d34
SE
1196static bool batadv_purge_orig_node(struct batadv_priv *bat_priv,
1197 struct batadv_orig_node *orig_node)
c6c8fea2 1198{
56303d34 1199 struct batadv_neigh_node *best_neigh_node;
7351a482 1200 struct batadv_hard_iface *hard_iface;
7b955a9f 1201 bool changed_ifinfo, changed_neigh;
c6c8fea2 1202
42d0b044
SE
1203 if (batadv_has_timed_out(orig_node->last_seen,
1204 2 * BATADV_PURGE_TIMEOUT)) {
39c75a51 1205 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf
SE
1206 "Originator timeout: originator %pM, last_seen %u\n",
1207 orig_node->orig,
1208 jiffies_to_msecs(orig_node->last_seen));
c6c8fea2 1209 return true;
c6c8fea2 1210 }
7b955a9f
SW
1211 changed_ifinfo = batadv_purge_orig_ifinfo(bat_priv, orig_node);
1212 changed_neigh = batadv_purge_orig_neighbors(bat_priv, orig_node);
7351a482 1213
7b955a9f 1214 if (!changed_ifinfo && !changed_neigh)
89652331
SW
1215 return false;
1216
7351a482 1217 /* first for NULL ... */
89652331
SW
1218 best_neigh_node = batadv_find_best_neighbor(bat_priv, orig_node,
1219 BATADV_IF_DEFAULT);
7351a482
SW
1220 batadv_update_route(bat_priv, orig_node, BATADV_IF_DEFAULT,
1221 best_neigh_node);
79a0bffb 1222 batadv_neigh_node_put(best_neigh_node);
c6c8fea2 1223
7351a482
SW
1224 /* ... then for all other interfaces. */
1225 rcu_read_lock();
1226 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
1227 if (hard_iface->if_status != BATADV_IF_ACTIVE)
1228 continue;
1229
1230 if (hard_iface->soft_iface != bat_priv->soft_iface)
1231 continue;
1232
27353446
SE
1233 if (!kref_get_unless_zero(&hard_iface->refcount))
1234 continue;
1235
7351a482
SW
1236 best_neigh_node = batadv_find_best_neighbor(bat_priv,
1237 orig_node,
1238 hard_iface);
1239 batadv_update_route(bat_priv, orig_node, hard_iface,
1240 best_neigh_node);
79a0bffb 1241 batadv_neigh_node_put(best_neigh_node);
27353446
SE
1242
1243 batadv_hardif_put(hard_iface);
7351a482
SW
1244 }
1245 rcu_read_unlock();
1246
c6c8fea2
SE
1247 return false;
1248}
1249
3b1709de
SE
1250/**
1251 * batadv_purge_orig_ref() - Purge all outdated originators
1252 * @bat_priv: the bat priv with all the soft interface information
1253 */
1254void batadv_purge_orig_ref(struct batadv_priv *bat_priv)
c6c8fea2 1255{
5bf74e9c 1256 struct batadv_hashtable *hash = bat_priv->orig_hash;
b67bfe0d 1257 struct hlist_node *node_tmp;
c6c8fea2 1258 struct hlist_head *head;
fb778ea1 1259 spinlock_t *list_lock; /* spinlock to protect write access */
56303d34 1260 struct batadv_orig_node *orig_node;
6b5e971a 1261 u32 i;
c6c8fea2
SE
1262
1263 if (!hash)
1264 return;
1265
c6c8fea2
SE
1266 /* for all origins... */
1267 for (i = 0; i < hash->size; i++) {
1268 head = &hash->table[i];
40dc8ab6
ED
1269 if (hlist_empty(head))
1270 continue;
fb778ea1 1271 list_lock = &hash->list_locks[i];
c6c8fea2 1272
fb778ea1 1273 spin_lock_bh(list_lock);
b67bfe0d 1274 hlist_for_each_entry_safe(orig_node, node_tmp,
7aadf889 1275 head, hash_entry) {
03fc7f86 1276 if (batadv_purge_orig_node(bat_priv, orig_node)) {
414254e3 1277 batadv_gw_node_delete(bat_priv, orig_node);
b67bfe0d 1278 hlist_del_rcu(&orig_node->hash_entry);
9d31b3ce
LL
1279 batadv_tt_global_del_orig(orig_node->bat_priv,
1280 orig_node, -1,
1281 "originator timed out");
5d967310 1282 batadv_orig_node_put(orig_node);
fb778ea1 1283 continue;
c6c8fea2 1284 }
610bfc6b
MH
1285
1286 batadv_frag_purge_orig(orig_node,
1287 batadv_frag_check_entry);
c6c8fea2 1288 }
fb778ea1 1289 spin_unlock_bh(list_lock);
c6c8fea2
SE
1290 }
1291
7cf06bc6 1292 batadv_gw_election(bat_priv);
c6c8fea2
SE
1293}
1294
03fc7f86 1295static void batadv_purge_orig(struct work_struct *work)
c6c8fea2 1296{
56303d34
SE
1297 struct delayed_work *delayed_work;
1298 struct batadv_priv *bat_priv;
c6c8fea2 1299
4ba4bc0f 1300 delayed_work = to_delayed_work(work);
56303d34 1301 bat_priv = container_of(delayed_work, struct batadv_priv, orig_work);
3b1709de 1302 batadv_purge_orig_ref(bat_priv);
72414442
AQ
1303 queue_delayed_work(batadv_event_workqueue,
1304 &bat_priv->orig_work,
1305 msecs_to_jiffies(BATADV_ORIG_WORK_PERIOD));
c6c8fea2
SE
1306}
1307
85cf8c85 1308/**
7e9a8c2c 1309 * batadv_orig_dump() - Dump to netlink the originator infos for a specific
85cf8c85
MS
1310 * outgoing interface
1311 * @msg: message to dump into
1312 * @cb: parameters for the dump
1313 *
1314 * Return: 0 or error value
1315 */
1316int batadv_orig_dump(struct sk_buff *msg, struct netlink_callback *cb)
1317{
1318 struct net *net = sock_net(cb->skb->sk);
1319 struct net_device *soft_iface;
1320 struct net_device *hard_iface = NULL;
1321 struct batadv_hard_iface *hardif = BATADV_IF_DEFAULT;
1322 struct batadv_priv *bat_priv;
1323 struct batadv_hard_iface *primary_if = NULL;
1324 int ret;
1325 int ifindex, hard_ifindex;
1326
1327 ifindex = batadv_netlink_get_ifindex(cb->nlh, BATADV_ATTR_MESH_IFINDEX);
1328 if (!ifindex)
1329 return -EINVAL;
1330
1331 soft_iface = dev_get_by_index(net, ifindex);
1332 if (!soft_iface || !batadv_softif_is_valid(soft_iface)) {
1333 ret = -ENODEV;
1334 goto out;
1335 }
1336
1337 bat_priv = netdev_priv(soft_iface);
1338
1339 primary_if = batadv_primary_if_get_selected(bat_priv);
1340 if (!primary_if || primary_if->if_status != BATADV_IF_ACTIVE) {
1341 ret = -ENOENT;
1342 goto out;
1343 }
1344
1345 hard_ifindex = batadv_netlink_get_ifindex(cb->nlh,
1346 BATADV_ATTR_HARD_IFINDEX);
1347 if (hard_ifindex) {
1348 hard_iface = dev_get_by_index(net, hard_ifindex);
1349 if (hard_iface)
1350 hardif = batadv_hardif_get_by_netdev(hard_iface);
1351
1352 if (!hardif) {
1353 ret = -ENODEV;
1354 goto out;
1355 }
1356
1357 if (hardif->soft_iface != soft_iface) {
1358 ret = -ENOENT;
1359 goto out;
1360 }
1361 }
1362
1363 if (!bat_priv->algo_ops->orig.dump) {
1364 ret = -EOPNOTSUPP;
1365 goto out;
1366 }
1367
1368 bat_priv->algo_ops->orig.dump(msg, cb, bat_priv, hardif);
1369
1370 ret = msg->len;
1371
1372 out:
79a0bffb 1373 batadv_hardif_put(hardif);
1160dfa1 1374 dev_put(hard_iface);
79a0bffb 1375 batadv_hardif_put(primary_if);
1160dfa1 1376 dev_put(soft_iface);
85cf8c85
MS
1377
1378 return ret;
1379}