1 /* Copyright (C) 2009-2016 B.A.T.M.A.N. contributors:
3 * Marek Lindner, Simon Wunderlich
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.
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.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 #include "originator.h"
21 #include <linux/atomic.h>
22 #include <linux/errno.h>
23 #include <linux/etherdevice.h>
25 #include <linux/jiffies.h>
26 #include <linux/kernel.h>
27 #include <linux/kref.h>
28 #include <linux/list.h>
29 #include <linux/lockdep.h>
30 #include <linux/netdevice.h>
31 #include <linux/rculist.h>
32 #include <linux/seq_file.h>
33 #include <linux/slab.h>
34 #include <linux/spinlock.h>
35 #include <linux/workqueue.h>
37 #include "distributed-arp-table.h"
38 #include "fragmentation.h"
39 #include "gateway_client.h"
40 #include "hard-interface.h"
42 #include "multicast.h"
43 #include "network-coding.h"
45 #include "translation-table.h"
48 static struct lock_class_key batadv_orig_hash_lock_class_key
;
50 static void batadv_purge_orig(struct work_struct
*work
);
53 * batadv_compare_orig - comparing function used in the originator hash table
54 * @node: node in the local table
55 * @data2: second object to compare the node to
57 * Return: 1 if they are the same originator
59 int batadv_compare_orig(const struct hlist_node
*node
, const void *data2
)
61 const void *data1
= container_of(node
, struct batadv_orig_node
,
64 return batadv_compare_eth(data1
, data2
);
68 * batadv_orig_node_vlan_get - get an orig_node_vlan object
69 * @orig_node: the originator serving the VLAN
70 * @vid: the VLAN identifier
72 * Return: the vlan object identified by vid and belonging to orig_node or NULL
73 * if it does not exist.
75 struct batadv_orig_node_vlan
*
76 batadv_orig_node_vlan_get(struct batadv_orig_node
*orig_node
,
79 struct batadv_orig_node_vlan
*vlan
= NULL
, *tmp
;
82 hlist_for_each_entry_rcu(tmp
, &orig_node
->vlan_list
, list
) {
86 if (!kref_get_unless_zero(&tmp
->refcount
))
99 * batadv_orig_node_vlan_new - search and possibly create an orig_node_vlan
101 * @orig_node: the originator serving the VLAN
102 * @vid: the VLAN identifier
104 * Return: NULL in case of failure or the vlan object identified by vid and
105 * belonging to orig_node otherwise. The object is created and added to the list
106 * if it does not exist.
108 * The object is returned with refcounter increased by 1.
110 struct batadv_orig_node_vlan
*
111 batadv_orig_node_vlan_new(struct batadv_orig_node
*orig_node
,
114 struct batadv_orig_node_vlan
*vlan
;
116 spin_lock_bh(&orig_node
->vlan_list_lock
);
118 /* first look if an object for this vid already exists */
119 vlan
= batadv_orig_node_vlan_get(orig_node
, vid
);
123 vlan
= kzalloc(sizeof(*vlan
), GFP_ATOMIC
);
127 kref_init(&vlan
->refcount
);
128 kref_get(&vlan
->refcount
);
131 hlist_add_head_rcu(&vlan
->list
, &orig_node
->vlan_list
);
134 spin_unlock_bh(&orig_node
->vlan_list_lock
);
140 * batadv_orig_node_vlan_release - release originator-vlan object from lists
141 * and queue for free after rcu grace period
142 * @ref: kref pointer of the originator-vlan object
144 static void batadv_orig_node_vlan_release(struct kref
*ref
)
146 struct batadv_orig_node_vlan
*orig_vlan
;
148 orig_vlan
= container_of(ref
, struct batadv_orig_node_vlan
, refcount
);
150 kfree_rcu(orig_vlan
, rcu
);
154 * batadv_orig_node_vlan_put - decrement the refcounter and possibly release
155 * the originator-vlan object
156 * @orig_vlan: the originator-vlan object to release
158 void batadv_orig_node_vlan_put(struct batadv_orig_node_vlan
*orig_vlan
)
160 kref_put(&orig_vlan
->refcount
, batadv_orig_node_vlan_release
);
163 int batadv_originator_init(struct batadv_priv
*bat_priv
)
165 if (bat_priv
->orig_hash
)
168 bat_priv
->orig_hash
= batadv_hash_new(1024);
170 if (!bat_priv
->orig_hash
)
173 batadv_hash_set_lock_class(bat_priv
->orig_hash
,
174 &batadv_orig_hash_lock_class_key
);
176 INIT_DELAYED_WORK(&bat_priv
->orig_work
, batadv_purge_orig
);
177 queue_delayed_work(batadv_event_workqueue
,
178 &bat_priv
->orig_work
,
179 msecs_to_jiffies(BATADV_ORIG_WORK_PERIOD
));
188 * batadv_neigh_ifinfo_release - release neigh_ifinfo from lists and queue for
189 * free after rcu grace period
190 * @ref: kref pointer of the neigh_ifinfo
192 static void batadv_neigh_ifinfo_release(struct kref
*ref
)
194 struct batadv_neigh_ifinfo
*neigh_ifinfo
;
196 neigh_ifinfo
= container_of(ref
, struct batadv_neigh_ifinfo
, refcount
);
198 if (neigh_ifinfo
->if_outgoing
!= BATADV_IF_DEFAULT
)
199 batadv_hardif_put(neigh_ifinfo
->if_outgoing
);
201 kfree_rcu(neigh_ifinfo
, rcu
);
205 * batadv_neigh_ifinfo_put - decrement the refcounter and possibly release
207 * @neigh_ifinfo: the neigh_ifinfo object to release
209 void batadv_neigh_ifinfo_put(struct batadv_neigh_ifinfo
*neigh_ifinfo
)
211 kref_put(&neigh_ifinfo
->refcount
, batadv_neigh_ifinfo_release
);
215 * batadv_hardif_neigh_release - release hardif neigh node from lists and
216 * queue for free after rcu grace period
217 * @ref: kref pointer of the neigh_node
219 static void batadv_hardif_neigh_release(struct kref
*ref
)
221 struct batadv_hardif_neigh_node
*hardif_neigh
;
223 hardif_neigh
= container_of(ref
, struct batadv_hardif_neigh_node
,
226 spin_lock_bh(&hardif_neigh
->if_incoming
->neigh_list_lock
);
227 hlist_del_init_rcu(&hardif_neigh
->list
);
228 spin_unlock_bh(&hardif_neigh
->if_incoming
->neigh_list_lock
);
230 batadv_hardif_put(hardif_neigh
->if_incoming
);
231 kfree_rcu(hardif_neigh
, rcu
);
235 * batadv_hardif_neigh_put - decrement the hardif neighbors refcounter
236 * and possibly release it
237 * @hardif_neigh: hardif neigh neighbor to free
239 void batadv_hardif_neigh_put(struct batadv_hardif_neigh_node
*hardif_neigh
)
241 kref_put(&hardif_neigh
->refcount
, batadv_hardif_neigh_release
);
245 * batadv_neigh_node_release - release neigh_node from lists and queue for
246 * free after rcu grace period
247 * @ref: kref pointer of the neigh_node
249 static void batadv_neigh_node_release(struct kref
*ref
)
251 struct hlist_node
*node_tmp
;
252 struct batadv_neigh_node
*neigh_node
;
253 struct batadv_neigh_ifinfo
*neigh_ifinfo
;
254 struct batadv_algo_ops
*bao
;
256 neigh_node
= container_of(ref
, struct batadv_neigh_node
, refcount
);
257 bao
= neigh_node
->orig_node
->bat_priv
->bat_algo_ops
;
259 hlist_for_each_entry_safe(neigh_ifinfo
, node_tmp
,
260 &neigh_node
->ifinfo_list
, list
) {
261 batadv_neigh_ifinfo_put(neigh_ifinfo
);
264 batadv_hardif_neigh_put(neigh_node
->hardif_neigh
);
266 if (bao
->bat_neigh_free
)
267 bao
->bat_neigh_free(neigh_node
);
269 batadv_hardif_put(neigh_node
->if_incoming
);
271 kfree_rcu(neigh_node
, rcu
);
275 * batadv_neigh_node_put - decrement the neighbors refcounter and possibly
277 * @neigh_node: neigh neighbor to free
279 void batadv_neigh_node_put(struct batadv_neigh_node
*neigh_node
)
281 kref_put(&neigh_node
->refcount
, batadv_neigh_node_release
);
285 * batadv_orig_node_get_router - router to the originator depending on iface
286 * @orig_node: the orig node for the router
287 * @if_outgoing: the interface where the payload packet has been received or
288 * the OGM should be sent to
290 * Return: the neighbor which should be router for this orig_node/iface.
292 * The object is returned with refcounter increased by 1.
294 struct batadv_neigh_node
*
295 batadv_orig_router_get(struct batadv_orig_node
*orig_node
,
296 const struct batadv_hard_iface
*if_outgoing
)
298 struct batadv_orig_ifinfo
*orig_ifinfo
;
299 struct batadv_neigh_node
*router
= NULL
;
302 hlist_for_each_entry_rcu(orig_ifinfo
, &orig_node
->ifinfo_list
, list
) {
303 if (orig_ifinfo
->if_outgoing
!= if_outgoing
)
306 router
= rcu_dereference(orig_ifinfo
->router
);
310 if (router
&& !kref_get_unless_zero(&router
->refcount
))
318 * batadv_orig_ifinfo_get - find the ifinfo from an orig_node
319 * @orig_node: the orig node to be queried
320 * @if_outgoing: the interface for which the ifinfo should be acquired
322 * Return: the requested orig_ifinfo or NULL if not found.
324 * The object is returned with refcounter increased by 1.
326 struct batadv_orig_ifinfo
*
327 batadv_orig_ifinfo_get(struct batadv_orig_node
*orig_node
,
328 struct batadv_hard_iface
*if_outgoing
)
330 struct batadv_orig_ifinfo
*tmp
, *orig_ifinfo
= NULL
;
333 hlist_for_each_entry_rcu(tmp
, &orig_node
->ifinfo_list
,
335 if (tmp
->if_outgoing
!= if_outgoing
)
338 if (!kref_get_unless_zero(&tmp
->refcount
))
350 * batadv_orig_ifinfo_new - search and possibly create an orig_ifinfo object
351 * @orig_node: the orig node to be queried
352 * @if_outgoing: the interface for which the ifinfo should be acquired
354 * Return: NULL in case of failure or the orig_ifinfo object for the if_outgoing
355 * interface otherwise. The object is created and added to the list
356 * if it does not exist.
358 * The object is returned with refcounter increased by 1.
360 struct batadv_orig_ifinfo
*
361 batadv_orig_ifinfo_new(struct batadv_orig_node
*orig_node
,
362 struct batadv_hard_iface
*if_outgoing
)
364 struct batadv_orig_ifinfo
*orig_ifinfo
= NULL
;
365 unsigned long reset_time
;
367 spin_lock_bh(&orig_node
->neigh_list_lock
);
369 orig_ifinfo
= batadv_orig_ifinfo_get(orig_node
, if_outgoing
);
373 orig_ifinfo
= kzalloc(sizeof(*orig_ifinfo
), GFP_ATOMIC
);
377 if (if_outgoing
!= BATADV_IF_DEFAULT
&&
378 !kref_get_unless_zero(&if_outgoing
->refcount
)) {
384 reset_time
= jiffies
- 1;
385 reset_time
-= msecs_to_jiffies(BATADV_RESET_PROTECTION_MS
);
386 orig_ifinfo
->batman_seqno_reset
= reset_time
;
387 orig_ifinfo
->if_outgoing
= if_outgoing
;
388 INIT_HLIST_NODE(&orig_ifinfo
->list
);
389 kref_init(&orig_ifinfo
->refcount
);
390 kref_get(&orig_ifinfo
->refcount
);
391 hlist_add_head_rcu(&orig_ifinfo
->list
,
392 &orig_node
->ifinfo_list
);
394 spin_unlock_bh(&orig_node
->neigh_list_lock
);
399 * batadv_neigh_ifinfo_get - find the ifinfo from an neigh_node
400 * @neigh: the neigh node to be queried
401 * @if_outgoing: the interface for which the ifinfo should be acquired
403 * The object is returned with refcounter increased by 1.
405 * Return: the requested neigh_ifinfo or NULL if not found
407 struct batadv_neigh_ifinfo
*
408 batadv_neigh_ifinfo_get(struct batadv_neigh_node
*neigh
,
409 struct batadv_hard_iface
*if_outgoing
)
411 struct batadv_neigh_ifinfo
*neigh_ifinfo
= NULL
,
415 hlist_for_each_entry_rcu(tmp_neigh_ifinfo
, &neigh
->ifinfo_list
,
417 if (tmp_neigh_ifinfo
->if_outgoing
!= if_outgoing
)
420 if (!kref_get_unless_zero(&tmp_neigh_ifinfo
->refcount
))
423 neigh_ifinfo
= tmp_neigh_ifinfo
;
432 * batadv_neigh_ifinfo_new - search and possibly create an neigh_ifinfo object
433 * @neigh: the neigh node to be queried
434 * @if_outgoing: the interface for which the ifinfo should be acquired
436 * Return: NULL in case of failure or the neigh_ifinfo object for the
437 * if_outgoing interface otherwise. The object is created and added to the list
438 * if it does not exist.
440 * The object is returned with refcounter increased by 1.
442 struct batadv_neigh_ifinfo
*
443 batadv_neigh_ifinfo_new(struct batadv_neigh_node
*neigh
,
444 struct batadv_hard_iface
*if_outgoing
)
446 struct batadv_neigh_ifinfo
*neigh_ifinfo
;
448 spin_lock_bh(&neigh
->ifinfo_lock
);
450 neigh_ifinfo
= batadv_neigh_ifinfo_get(neigh
, if_outgoing
);
454 neigh_ifinfo
= kzalloc(sizeof(*neigh_ifinfo
), GFP_ATOMIC
);
458 if (if_outgoing
&& !kref_get_unless_zero(&if_outgoing
->refcount
)) {
464 INIT_HLIST_NODE(&neigh_ifinfo
->list
);
465 kref_init(&neigh_ifinfo
->refcount
);
466 kref_get(&neigh_ifinfo
->refcount
);
467 neigh_ifinfo
->if_outgoing
= if_outgoing
;
469 hlist_add_head_rcu(&neigh_ifinfo
->list
, &neigh
->ifinfo_list
);
472 spin_unlock_bh(&neigh
->ifinfo_lock
);
478 * batadv_neigh_node_get - retrieve a neighbour from the list
479 * @orig_node: originator which the neighbour belongs to
480 * @hard_iface: the interface where this neighbour is connected to
481 * @addr: the address of the neighbour
483 * Looks for and possibly returns a neighbour belonging to this originator list
484 * which is connected through the provided hard interface.
486 * Return: neighbor when found. Othwerwise NULL
488 static struct batadv_neigh_node
*
489 batadv_neigh_node_get(const struct batadv_orig_node
*orig_node
,
490 const struct batadv_hard_iface
*hard_iface
,
493 struct batadv_neigh_node
*tmp_neigh_node
, *res
= NULL
;
496 hlist_for_each_entry_rcu(tmp_neigh_node
, &orig_node
->neigh_list
, list
) {
497 if (!batadv_compare_eth(tmp_neigh_node
->addr
, addr
))
500 if (tmp_neigh_node
->if_incoming
!= hard_iface
)
503 if (!kref_get_unless_zero(&tmp_neigh_node
->refcount
))
506 res
= tmp_neigh_node
;
515 * batadv_hardif_neigh_create - create a hardif neighbour node
516 * @hard_iface: the interface this neighbour is connected to
517 * @neigh_addr: the interface address of the neighbour to retrieve
519 * Return: the hardif neighbour node if found or created or NULL otherwise.
521 static struct batadv_hardif_neigh_node
*
522 batadv_hardif_neigh_create(struct batadv_hard_iface
*hard_iface
,
523 const u8
*neigh_addr
)
525 struct batadv_priv
*bat_priv
= netdev_priv(hard_iface
->soft_iface
);
526 struct batadv_hardif_neigh_node
*hardif_neigh
= NULL
;
528 spin_lock_bh(&hard_iface
->neigh_list_lock
);
530 /* check if neighbor hasn't been added in the meantime */
531 hardif_neigh
= batadv_hardif_neigh_get(hard_iface
, neigh_addr
);
535 if (!kref_get_unless_zero(&hard_iface
->refcount
))
538 hardif_neigh
= kzalloc(sizeof(*hardif_neigh
), GFP_ATOMIC
);
540 batadv_hardif_put(hard_iface
);
544 INIT_HLIST_NODE(&hardif_neigh
->list
);
545 ether_addr_copy(hardif_neigh
->addr
, neigh_addr
);
546 hardif_neigh
->if_incoming
= hard_iface
;
547 hardif_neigh
->last_seen
= jiffies
;
549 kref_init(&hardif_neigh
->refcount
);
551 if (bat_priv
->bat_algo_ops
->bat_hardif_neigh_init
)
552 bat_priv
->bat_algo_ops
->bat_hardif_neigh_init(hardif_neigh
);
554 hlist_add_head(&hardif_neigh
->list
, &hard_iface
->neigh_list
);
557 spin_unlock_bh(&hard_iface
->neigh_list_lock
);
562 * batadv_hardif_neigh_get_or_create - retrieve or create a hardif neighbour
564 * @hard_iface: the interface this neighbour is connected to
565 * @neigh_addr: the interface address of the neighbour to retrieve
567 * Return: the hardif neighbour node if found or created or NULL otherwise.
569 static struct batadv_hardif_neigh_node
*
570 batadv_hardif_neigh_get_or_create(struct batadv_hard_iface
*hard_iface
,
571 const u8
*neigh_addr
)
573 struct batadv_hardif_neigh_node
*hardif_neigh
= NULL
;
575 /* first check without locking to avoid the overhead */
576 hardif_neigh
= batadv_hardif_neigh_get(hard_iface
, neigh_addr
);
580 return batadv_hardif_neigh_create(hard_iface
, neigh_addr
);
584 * batadv_hardif_neigh_get - retrieve a hardif neighbour from the list
585 * @hard_iface: the interface where this neighbour is connected to
586 * @neigh_addr: the address of the neighbour
588 * Looks for and possibly returns a neighbour belonging to this hard interface.
590 * Return: neighbor when found. Othwerwise NULL
592 struct batadv_hardif_neigh_node
*
593 batadv_hardif_neigh_get(const struct batadv_hard_iface
*hard_iface
,
594 const u8
*neigh_addr
)
596 struct batadv_hardif_neigh_node
*tmp_hardif_neigh
, *hardif_neigh
= NULL
;
599 hlist_for_each_entry_rcu(tmp_hardif_neigh
,
600 &hard_iface
->neigh_list
, list
) {
601 if (!batadv_compare_eth(tmp_hardif_neigh
->addr
, neigh_addr
))
604 if (!kref_get_unless_zero(&tmp_hardif_neigh
->refcount
))
607 hardif_neigh
= tmp_hardif_neigh
;
616 * batadv_neigh_node_new - create and init a new neigh_node object
617 * @orig_node: originator object representing the neighbour
618 * @hard_iface: the interface where the neighbour is connected to
619 * @neigh_addr: the mac address of the neighbour interface
621 * Allocates a new neigh_node object and initialises all the generic fields.
623 * Return: neighbor when found. Othwerwise NULL
625 struct batadv_neigh_node
*
626 batadv_neigh_node_new(struct batadv_orig_node
*orig_node
,
627 struct batadv_hard_iface
*hard_iface
,
628 const u8
*neigh_addr
)
630 struct batadv_neigh_node
*neigh_node
;
631 struct batadv_hardif_neigh_node
*hardif_neigh
= NULL
;
633 neigh_node
= batadv_neigh_node_get(orig_node
, hard_iface
, neigh_addr
);
637 hardif_neigh
= batadv_hardif_neigh_get_or_create(hard_iface
,
642 neigh_node
= kzalloc(sizeof(*neigh_node
), GFP_ATOMIC
);
646 if (!kref_get_unless_zero(&hard_iface
->refcount
)) {
652 INIT_HLIST_NODE(&neigh_node
->list
);
653 INIT_HLIST_HEAD(&neigh_node
->ifinfo_list
);
654 spin_lock_init(&neigh_node
->ifinfo_lock
);
656 ether_addr_copy(neigh_node
->addr
, neigh_addr
);
657 neigh_node
->if_incoming
= hard_iface
;
658 neigh_node
->orig_node
= orig_node
;
659 neigh_node
->last_seen
= jiffies
;
661 /* increment unique neighbor refcount */
662 kref_get(&hardif_neigh
->refcount
);
663 neigh_node
->hardif_neigh
= hardif_neigh
;
665 /* extra reference for return */
666 kref_init(&neigh_node
->refcount
);
667 kref_get(&neigh_node
->refcount
);
669 spin_lock_bh(&orig_node
->neigh_list_lock
);
670 hlist_add_head_rcu(&neigh_node
->list
, &orig_node
->neigh_list
);
671 spin_unlock_bh(&orig_node
->neigh_list_lock
);
673 batadv_dbg(BATADV_DBG_BATMAN
, orig_node
->bat_priv
,
674 "Creating new neighbor %pM for orig_node %pM on interface %s\n",
675 neigh_addr
, orig_node
->orig
, hard_iface
->net_dev
->name
);
679 batadv_hardif_neigh_put(hardif_neigh
);
684 * batadv_hardif_neigh_seq_print_text - print the single hop neighbour list
685 * @seq: neighbour table seq_file struct
690 int batadv_hardif_neigh_seq_print_text(struct seq_file
*seq
, void *offset
)
692 struct net_device
*net_dev
= (struct net_device
*)seq
->private;
693 struct batadv_priv
*bat_priv
= netdev_priv(net_dev
);
694 struct batadv_hard_iface
*primary_if
;
696 primary_if
= batadv_seq_print_text_primary_if_get(seq
);
700 seq_printf(seq
, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s %s)]\n",
701 BATADV_SOURCE_VERSION
, primary_if
->net_dev
->name
,
702 primary_if
->net_dev
->dev_addr
, net_dev
->name
,
703 bat_priv
->bat_algo_ops
->name
);
705 batadv_hardif_put(primary_if
);
707 if (!bat_priv
->bat_algo_ops
->bat_neigh_print
) {
709 "No printing function for this routing protocol\n");
713 bat_priv
->bat_algo_ops
->bat_neigh_print(bat_priv
, seq
);
718 * batadv_orig_ifinfo_release - release orig_ifinfo from lists and queue for
719 * free after rcu grace period
720 * @ref: kref pointer of the orig_ifinfo
722 static void batadv_orig_ifinfo_release(struct kref
*ref
)
724 struct batadv_orig_ifinfo
*orig_ifinfo
;
725 struct batadv_neigh_node
*router
;
727 orig_ifinfo
= container_of(ref
, struct batadv_orig_ifinfo
, refcount
);
729 if (orig_ifinfo
->if_outgoing
!= BATADV_IF_DEFAULT
)
730 batadv_hardif_put(orig_ifinfo
->if_outgoing
);
732 /* this is the last reference to this object */
733 router
= rcu_dereference_protected(orig_ifinfo
->router
, true);
735 batadv_neigh_node_put(router
);
737 kfree_rcu(orig_ifinfo
, rcu
);
741 * batadv_orig_ifinfo_put - decrement the refcounter and possibly release
743 * @orig_ifinfo: the orig_ifinfo object to release
745 void batadv_orig_ifinfo_put(struct batadv_orig_ifinfo
*orig_ifinfo
)
747 kref_put(&orig_ifinfo
->refcount
, batadv_orig_ifinfo_release
);
751 * batadv_orig_node_free_rcu - free the orig_node
752 * @rcu: rcu pointer of the orig_node
754 static void batadv_orig_node_free_rcu(struct rcu_head
*rcu
)
756 struct batadv_orig_node
*orig_node
;
758 orig_node
= container_of(rcu
, struct batadv_orig_node
, rcu
);
760 batadv_mcast_purge_orig(orig_node
);
762 batadv_frag_purge_orig(orig_node
, NULL
);
764 if (orig_node
->bat_priv
->bat_algo_ops
->bat_orig_free
)
765 orig_node
->bat_priv
->bat_algo_ops
->bat_orig_free(orig_node
);
767 kfree(orig_node
->tt_buff
);
772 * batadv_orig_node_release - release orig_node from lists and queue for
773 * free after rcu grace period
774 * @ref: kref pointer of the orig_node
776 static void batadv_orig_node_release(struct kref
*ref
)
778 struct hlist_node
*node_tmp
;
779 struct batadv_neigh_node
*neigh_node
;
780 struct batadv_orig_node
*orig_node
;
781 struct batadv_orig_ifinfo
*orig_ifinfo
;
783 orig_node
= container_of(ref
, struct batadv_orig_node
, refcount
);
785 spin_lock_bh(&orig_node
->neigh_list_lock
);
787 /* for all neighbors towards this originator ... */
788 hlist_for_each_entry_safe(neigh_node
, node_tmp
,
789 &orig_node
->neigh_list
, list
) {
790 hlist_del_rcu(&neigh_node
->list
);
791 batadv_neigh_node_put(neigh_node
);
794 hlist_for_each_entry_safe(orig_ifinfo
, node_tmp
,
795 &orig_node
->ifinfo_list
, list
) {
796 hlist_del_rcu(&orig_ifinfo
->list
);
797 batadv_orig_ifinfo_put(orig_ifinfo
);
799 spin_unlock_bh(&orig_node
->neigh_list_lock
);
802 batadv_nc_purge_orig(orig_node
->bat_priv
, orig_node
, NULL
);
804 call_rcu(&orig_node
->rcu
, batadv_orig_node_free_rcu
);
808 * batadv_orig_node_put - decrement the orig node refcounter and possibly
810 * @orig_node: the orig node to free
812 void batadv_orig_node_put(struct batadv_orig_node
*orig_node
)
814 kref_put(&orig_node
->refcount
, batadv_orig_node_release
);
817 void batadv_originator_free(struct batadv_priv
*bat_priv
)
819 struct batadv_hashtable
*hash
= bat_priv
->orig_hash
;
820 struct hlist_node
*node_tmp
;
821 struct hlist_head
*head
;
822 spinlock_t
*list_lock
; /* spinlock to protect write access */
823 struct batadv_orig_node
*orig_node
;
829 cancel_delayed_work_sync(&bat_priv
->orig_work
);
831 bat_priv
->orig_hash
= NULL
;
833 for (i
= 0; i
< hash
->size
; i
++) {
834 head
= &hash
->table
[i
];
835 list_lock
= &hash
->list_locks
[i
];
837 spin_lock_bh(list_lock
);
838 hlist_for_each_entry_safe(orig_node
, node_tmp
,
840 hlist_del_rcu(&orig_node
->hash_entry
);
841 batadv_orig_node_put(orig_node
);
843 spin_unlock_bh(list_lock
);
846 batadv_hash_destroy(hash
);
850 * batadv_orig_node_new - creates a new orig_node
851 * @bat_priv: the bat priv with all the soft interface information
852 * @addr: the mac address of the originator
854 * Creates a new originator object and initialise all the generic fields.
855 * The new object is not added to the originator list.
857 * Return: the newly created object or NULL on failure.
859 struct batadv_orig_node
*batadv_orig_node_new(struct batadv_priv
*bat_priv
,
862 struct batadv_orig_node
*orig_node
;
863 struct batadv_orig_node_vlan
*vlan
;
864 unsigned long reset_time
;
867 batadv_dbg(BATADV_DBG_BATMAN
, bat_priv
,
868 "Creating new originator: %pM\n", addr
);
870 orig_node
= kzalloc(sizeof(*orig_node
), GFP_ATOMIC
);
874 INIT_HLIST_HEAD(&orig_node
->neigh_list
);
875 INIT_HLIST_HEAD(&orig_node
->vlan_list
);
876 INIT_HLIST_HEAD(&orig_node
->ifinfo_list
);
877 spin_lock_init(&orig_node
->bcast_seqno_lock
);
878 spin_lock_init(&orig_node
->neigh_list_lock
);
879 spin_lock_init(&orig_node
->tt_buff_lock
);
880 spin_lock_init(&orig_node
->tt_lock
);
881 spin_lock_init(&orig_node
->vlan_list_lock
);
883 batadv_nc_init_orig(orig_node
);
885 /* extra reference for return */
886 kref_init(&orig_node
->refcount
);
887 kref_get(&orig_node
->refcount
);
889 orig_node
->bat_priv
= bat_priv
;
890 ether_addr_copy(orig_node
->orig
, addr
);
891 batadv_dat_init_orig_node_addr(orig_node
);
892 atomic_set(&orig_node
->last_ttvn
, 0);
893 orig_node
->tt_buff
= NULL
;
894 orig_node
->tt_buff_len
= 0;
895 orig_node
->last_seen
= jiffies
;
896 reset_time
= jiffies
- 1 - msecs_to_jiffies(BATADV_RESET_PROTECTION_MS
);
897 orig_node
->bcast_seqno_reset
= reset_time
;
899 #ifdef CONFIG_BATMAN_ADV_MCAST
900 orig_node
->mcast_flags
= BATADV_NO_FLAGS
;
901 INIT_HLIST_NODE(&orig_node
->mcast_want_all_unsnoopables_node
);
902 INIT_HLIST_NODE(&orig_node
->mcast_want_all_ipv4_node
);
903 INIT_HLIST_NODE(&orig_node
->mcast_want_all_ipv6_node
);
904 spin_lock_init(&orig_node
->mcast_handler_lock
);
907 /* create a vlan object for the "untagged" LAN */
908 vlan
= batadv_orig_node_vlan_new(orig_node
, BATADV_NO_FLAGS
);
911 /* batadv_orig_node_vlan_new() increases the refcounter.
912 * Immediately release vlan since it is not needed anymore in this
915 batadv_orig_node_vlan_put(vlan
);
917 for (i
= 0; i
< BATADV_FRAG_BUFFER_COUNT
; i
++) {
918 INIT_HLIST_HEAD(&orig_node
->fragments
[i
].head
);
919 spin_lock_init(&orig_node
->fragments
[i
].lock
);
920 orig_node
->fragments
[i
].size
= 0;
930 * batadv_purge_neigh_ifinfo - purge obsolete ifinfo entries from neighbor
931 * @bat_priv: the bat priv with all the soft interface information
932 * @neigh: orig node which is to be checked
935 batadv_purge_neigh_ifinfo(struct batadv_priv
*bat_priv
,
936 struct batadv_neigh_node
*neigh
)
938 struct batadv_neigh_ifinfo
*neigh_ifinfo
;
939 struct batadv_hard_iface
*if_outgoing
;
940 struct hlist_node
*node_tmp
;
942 spin_lock_bh(&neigh
->ifinfo_lock
);
944 /* for all ifinfo objects for this neighinator */
945 hlist_for_each_entry_safe(neigh_ifinfo
, node_tmp
,
946 &neigh
->ifinfo_list
, list
) {
947 if_outgoing
= neigh_ifinfo
->if_outgoing
;
949 /* always keep the default interface */
950 if (if_outgoing
== BATADV_IF_DEFAULT
)
953 /* don't purge if the interface is not (going) down */
954 if ((if_outgoing
->if_status
!= BATADV_IF_INACTIVE
) &&
955 (if_outgoing
->if_status
!= BATADV_IF_NOT_IN_USE
) &&
956 (if_outgoing
->if_status
!= BATADV_IF_TO_BE_REMOVED
))
959 batadv_dbg(BATADV_DBG_BATMAN
, bat_priv
,
960 "neighbor/ifinfo purge: neighbor %pM, iface: %s\n",
961 neigh
->addr
, if_outgoing
->net_dev
->name
);
963 hlist_del_rcu(&neigh_ifinfo
->list
);
964 batadv_neigh_ifinfo_put(neigh_ifinfo
);
967 spin_unlock_bh(&neigh
->ifinfo_lock
);
971 * batadv_purge_orig_ifinfo - purge obsolete ifinfo entries from originator
972 * @bat_priv: the bat priv with all the soft interface information
973 * @orig_node: orig node which is to be checked
975 * Return: true if any ifinfo entry was purged, false otherwise.
978 batadv_purge_orig_ifinfo(struct batadv_priv
*bat_priv
,
979 struct batadv_orig_node
*orig_node
)
981 struct batadv_orig_ifinfo
*orig_ifinfo
;
982 struct batadv_hard_iface
*if_outgoing
;
983 struct hlist_node
*node_tmp
;
984 bool ifinfo_purged
= false;
986 spin_lock_bh(&orig_node
->neigh_list_lock
);
988 /* for all ifinfo objects for this originator */
989 hlist_for_each_entry_safe(orig_ifinfo
, node_tmp
,
990 &orig_node
->ifinfo_list
, list
) {
991 if_outgoing
= orig_ifinfo
->if_outgoing
;
993 /* always keep the default interface */
994 if (if_outgoing
== BATADV_IF_DEFAULT
)
997 /* don't purge if the interface is not (going) down */
998 if ((if_outgoing
->if_status
!= BATADV_IF_INACTIVE
) &&
999 (if_outgoing
->if_status
!= BATADV_IF_NOT_IN_USE
) &&
1000 (if_outgoing
->if_status
!= BATADV_IF_TO_BE_REMOVED
))
1003 batadv_dbg(BATADV_DBG_BATMAN
, bat_priv
,
1004 "router/ifinfo purge: originator %pM, iface: %s\n",
1005 orig_node
->orig
, if_outgoing
->net_dev
->name
);
1007 ifinfo_purged
= true;
1009 hlist_del_rcu(&orig_ifinfo
->list
);
1010 batadv_orig_ifinfo_put(orig_ifinfo
);
1011 if (orig_node
->last_bonding_candidate
== orig_ifinfo
) {
1012 orig_node
->last_bonding_candidate
= NULL
;
1013 batadv_orig_ifinfo_put(orig_ifinfo
);
1017 spin_unlock_bh(&orig_node
->neigh_list_lock
);
1019 return ifinfo_purged
;
1023 * batadv_purge_orig_neighbors - purges neighbors from originator
1024 * @bat_priv: the bat priv with all the soft interface information
1025 * @orig_node: orig node which is to be checked
1027 * Return: true if any neighbor was purged, false otherwise
1030 batadv_purge_orig_neighbors(struct batadv_priv
*bat_priv
,
1031 struct batadv_orig_node
*orig_node
)
1033 struct hlist_node
*node_tmp
;
1034 struct batadv_neigh_node
*neigh_node
;
1035 bool neigh_purged
= false;
1036 unsigned long last_seen
;
1037 struct batadv_hard_iface
*if_incoming
;
1039 spin_lock_bh(&orig_node
->neigh_list_lock
);
1041 /* for all neighbors towards this originator ... */
1042 hlist_for_each_entry_safe(neigh_node
, node_tmp
,
1043 &orig_node
->neigh_list
, list
) {
1044 last_seen
= neigh_node
->last_seen
;
1045 if_incoming
= neigh_node
->if_incoming
;
1047 if ((batadv_has_timed_out(last_seen
, BATADV_PURGE_TIMEOUT
)) ||
1048 (if_incoming
->if_status
== BATADV_IF_INACTIVE
) ||
1049 (if_incoming
->if_status
== BATADV_IF_NOT_IN_USE
) ||
1050 (if_incoming
->if_status
== BATADV_IF_TO_BE_REMOVED
)) {
1051 if ((if_incoming
->if_status
== BATADV_IF_INACTIVE
) ||
1052 (if_incoming
->if_status
== BATADV_IF_NOT_IN_USE
) ||
1053 (if_incoming
->if_status
== BATADV_IF_TO_BE_REMOVED
))
1054 batadv_dbg(BATADV_DBG_BATMAN
, bat_priv
,
1055 "neighbor purge: originator %pM, neighbor: %pM, iface: %s\n",
1056 orig_node
->orig
, neigh_node
->addr
,
1057 if_incoming
->net_dev
->name
);
1059 batadv_dbg(BATADV_DBG_BATMAN
, bat_priv
,
1060 "neighbor timeout: originator %pM, neighbor: %pM, last_seen: %u\n",
1061 orig_node
->orig
, neigh_node
->addr
,
1062 jiffies_to_msecs(last_seen
));
1064 neigh_purged
= true;
1066 hlist_del_rcu(&neigh_node
->list
);
1067 batadv_neigh_node_put(neigh_node
);
1069 /* only necessary if not the whole neighbor is to be
1070 * deleted, but some interface has been removed.
1072 batadv_purge_neigh_ifinfo(bat_priv
, neigh_node
);
1076 spin_unlock_bh(&orig_node
->neigh_list_lock
);
1077 return neigh_purged
;
1081 * batadv_find_best_neighbor - finds the best neighbor after purging
1082 * @bat_priv: the bat priv with all the soft interface information
1083 * @orig_node: orig node which is to be checked
1084 * @if_outgoing: the interface for which the metric should be compared
1086 * Return: the current best neighbor, with refcount increased.
1088 static struct batadv_neigh_node
*
1089 batadv_find_best_neighbor(struct batadv_priv
*bat_priv
,
1090 struct batadv_orig_node
*orig_node
,
1091 struct batadv_hard_iface
*if_outgoing
)
1093 struct batadv_neigh_node
*best
= NULL
, *neigh
;
1094 struct batadv_algo_ops
*bao
= bat_priv
->bat_algo_ops
;
1097 hlist_for_each_entry_rcu(neigh
, &orig_node
->neigh_list
, list
) {
1098 if (best
&& (bao
->bat_neigh_cmp(neigh
, if_outgoing
,
1099 best
, if_outgoing
) <= 0))
1102 if (!kref_get_unless_zero(&neigh
->refcount
))
1106 batadv_neigh_node_put(best
);
1116 * batadv_purge_orig_node - purges obsolete information from an orig_node
1117 * @bat_priv: the bat priv with all the soft interface information
1118 * @orig_node: orig node which is to be checked
1120 * This function checks if the orig_node or substructures of it have become
1121 * obsolete, and purges this information if that's the case.
1123 * Return: true if the orig_node is to be removed, false otherwise.
1125 static bool batadv_purge_orig_node(struct batadv_priv
*bat_priv
,
1126 struct batadv_orig_node
*orig_node
)
1128 struct batadv_neigh_node
*best_neigh_node
;
1129 struct batadv_hard_iface
*hard_iface
;
1130 bool changed_ifinfo
, changed_neigh
;
1132 if (batadv_has_timed_out(orig_node
->last_seen
,
1133 2 * BATADV_PURGE_TIMEOUT
)) {
1134 batadv_dbg(BATADV_DBG_BATMAN
, bat_priv
,
1135 "Originator timeout: originator %pM, last_seen %u\n",
1137 jiffies_to_msecs(orig_node
->last_seen
));
1140 changed_ifinfo
= batadv_purge_orig_ifinfo(bat_priv
, orig_node
);
1141 changed_neigh
= batadv_purge_orig_neighbors(bat_priv
, orig_node
);
1143 if (!changed_ifinfo
&& !changed_neigh
)
1146 /* first for NULL ... */
1147 best_neigh_node
= batadv_find_best_neighbor(bat_priv
, orig_node
,
1149 batadv_update_route(bat_priv
, orig_node
, BATADV_IF_DEFAULT
,
1151 if (best_neigh_node
)
1152 batadv_neigh_node_put(best_neigh_node
);
1154 /* ... then for all other interfaces. */
1156 list_for_each_entry_rcu(hard_iface
, &batadv_hardif_list
, list
) {
1157 if (hard_iface
->if_status
!= BATADV_IF_ACTIVE
)
1160 if (hard_iface
->soft_iface
!= bat_priv
->soft_iface
)
1163 best_neigh_node
= batadv_find_best_neighbor(bat_priv
,
1166 batadv_update_route(bat_priv
, orig_node
, hard_iface
,
1168 if (best_neigh_node
)
1169 batadv_neigh_node_put(best_neigh_node
);
1176 static void _batadv_purge_orig(struct batadv_priv
*bat_priv
)
1178 struct batadv_hashtable
*hash
= bat_priv
->orig_hash
;
1179 struct hlist_node
*node_tmp
;
1180 struct hlist_head
*head
;
1181 spinlock_t
*list_lock
; /* spinlock to protect write access */
1182 struct batadv_orig_node
*orig_node
;
1188 /* for all origins... */
1189 for (i
= 0; i
< hash
->size
; i
++) {
1190 head
= &hash
->table
[i
];
1191 list_lock
= &hash
->list_locks
[i
];
1193 spin_lock_bh(list_lock
);
1194 hlist_for_each_entry_safe(orig_node
, node_tmp
,
1196 if (batadv_purge_orig_node(bat_priv
, orig_node
)) {
1197 batadv_gw_node_delete(bat_priv
, orig_node
);
1198 hlist_del_rcu(&orig_node
->hash_entry
);
1199 batadv_tt_global_del_orig(orig_node
->bat_priv
,
1201 "originator timed out");
1202 batadv_orig_node_put(orig_node
);
1206 batadv_frag_purge_orig(orig_node
,
1207 batadv_frag_check_entry
);
1209 spin_unlock_bh(list_lock
);
1212 batadv_gw_election(bat_priv
);
1215 static void batadv_purge_orig(struct work_struct
*work
)
1217 struct delayed_work
*delayed_work
;
1218 struct batadv_priv
*bat_priv
;
1220 delayed_work
= container_of(work
, struct delayed_work
, work
);
1221 bat_priv
= container_of(delayed_work
, struct batadv_priv
, orig_work
);
1222 _batadv_purge_orig(bat_priv
);
1223 queue_delayed_work(batadv_event_workqueue
,
1224 &bat_priv
->orig_work
,
1225 msecs_to_jiffies(BATADV_ORIG_WORK_PERIOD
));
1228 void batadv_purge_orig_ref(struct batadv_priv
*bat_priv
)
1230 _batadv_purge_orig(bat_priv
);
1233 int batadv_orig_seq_print_text(struct seq_file
*seq
, void *offset
)
1235 struct net_device
*net_dev
= (struct net_device
*)seq
->private;
1236 struct batadv_priv
*bat_priv
= netdev_priv(net_dev
);
1237 struct batadv_hard_iface
*primary_if
;
1239 primary_if
= batadv_seq_print_text_primary_if_get(seq
);
1243 seq_printf(seq
, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s %s)]\n",
1244 BATADV_SOURCE_VERSION
, primary_if
->net_dev
->name
,
1245 primary_if
->net_dev
->dev_addr
, net_dev
->name
,
1246 bat_priv
->bat_algo_ops
->name
);
1248 batadv_hardif_put(primary_if
);
1250 if (!bat_priv
->bat_algo_ops
->bat_orig_print
) {
1252 "No printing function for this routing protocol\n");
1256 bat_priv
->bat_algo_ops
->bat_orig_print(bat_priv
, seq
,
1263 * batadv_orig_hardif_seq_print_text - writes originator infos for a specific
1264 * outgoing interface
1265 * @seq: debugfs table seq_file struct
1270 int batadv_orig_hardif_seq_print_text(struct seq_file
*seq
, void *offset
)
1272 struct net_device
*net_dev
= (struct net_device
*)seq
->private;
1273 struct batadv_hard_iface
*hard_iface
;
1274 struct batadv_priv
*bat_priv
;
1276 hard_iface
= batadv_hardif_get_by_netdev(net_dev
);
1278 if (!hard_iface
|| !hard_iface
->soft_iface
) {
1279 seq_puts(seq
, "Interface not known to B.A.T.M.A.N.\n");
1283 bat_priv
= netdev_priv(hard_iface
->soft_iface
);
1284 if (!bat_priv
->bat_algo_ops
->bat_orig_print
) {
1286 "No printing function for this routing protocol\n");
1290 if (hard_iface
->if_status
!= BATADV_IF_ACTIVE
) {
1291 seq_puts(seq
, "Interface not active\n");
1295 seq_printf(seq
, "[B.A.T.M.A.N. adv %s, IF/MAC: %s/%pM (%s %s)]\n",
1296 BATADV_SOURCE_VERSION
, hard_iface
->net_dev
->name
,
1297 hard_iface
->net_dev
->dev_addr
,
1298 hard_iface
->soft_iface
->name
, bat_priv
->bat_algo_ops
->name
);
1300 bat_priv
->bat_algo_ops
->bat_orig_print(bat_priv
, seq
, hard_iface
);
1304 batadv_hardif_put(hard_iface
);
1308 int batadv_orig_hash_add_if(struct batadv_hard_iface
*hard_iface
,
1311 struct batadv_priv
*bat_priv
= netdev_priv(hard_iface
->soft_iface
);
1312 struct batadv_algo_ops
*bao
= bat_priv
->bat_algo_ops
;
1313 struct batadv_hashtable
*hash
= bat_priv
->orig_hash
;
1314 struct hlist_head
*head
;
1315 struct batadv_orig_node
*orig_node
;
1319 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
1322 for (i
= 0; i
< hash
->size
; i
++) {
1323 head
= &hash
->table
[i
];
1326 hlist_for_each_entry_rcu(orig_node
, head
, hash_entry
) {
1328 if (bao
->bat_orig_add_if
)
1329 ret
= bao
->bat_orig_add_if(orig_node
,
1344 int batadv_orig_hash_del_if(struct batadv_hard_iface
*hard_iface
,
1347 struct batadv_priv
*bat_priv
= netdev_priv(hard_iface
->soft_iface
);
1348 struct batadv_hashtable
*hash
= bat_priv
->orig_hash
;
1349 struct hlist_head
*head
;
1350 struct batadv_hard_iface
*hard_iface_tmp
;
1351 struct batadv_orig_node
*orig_node
;
1352 struct batadv_algo_ops
*bao
= bat_priv
->bat_algo_ops
;
1356 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
1359 for (i
= 0; i
< hash
->size
; i
++) {
1360 head
= &hash
->table
[i
];
1363 hlist_for_each_entry_rcu(orig_node
, head
, hash_entry
) {
1365 if (bao
->bat_orig_del_if
)
1366 ret
= bao
->bat_orig_del_if(orig_node
,
1368 hard_iface
->if_num
);
1375 /* renumber remaining batman interfaces _inside_ of orig_hash_lock */
1377 list_for_each_entry_rcu(hard_iface_tmp
, &batadv_hardif_list
, list
) {
1378 if (hard_iface_tmp
->if_status
== BATADV_IF_NOT_IN_USE
)
1381 if (hard_iface
== hard_iface_tmp
)
1384 if (hard_iface
->soft_iface
!= hard_iface_tmp
->soft_iface
)
1387 if (hard_iface_tmp
->if_num
> hard_iface
->if_num
)
1388 hard_iface_tmp
->if_num
--;
1392 hard_iface
->if_num
= -1;