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