Simon Wunderlich | e19f975 | 2014-01-04 18:04:25 +0100 | [diff] [blame] | 1 | /* Copyright (C) 2009-2014 B.A.T.M.A.N. contributors: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 2 | * |
| 3 | * Marek Lindner, Simon Wunderlich |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of version 2 of the GNU General Public |
| 7 | * License as published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but |
| 10 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 | * General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
Antonio Quartulli | ebf38fb | 2013-11-03 20:40:48 +0100 | [diff] [blame] | 15 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 16 | */ |
| 17 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 18 | #include "main.h" |
Antonio Quartulli | 785ea11 | 2011-11-23 11:35:44 +0100 | [diff] [blame] | 19 | #include "distributed-arp-table.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 20 | #include "originator.h" |
| 21 | #include "hash.h" |
| 22 | #include "translation-table.h" |
| 23 | #include "routing.h" |
| 24 | #include "gateway_client.h" |
| 25 | #include "hard-interface.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 26 | #include "soft-interface.h" |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 27 | #include "bridge_loop_avoidance.h" |
Martin Hundebøll | d56b170 | 2013-01-25 11:12:39 +0100 | [diff] [blame] | 28 | #include "network-coding.h" |
Martin Hundebøll | 610bfc6bc | 2013-05-23 16:53:02 +0200 | [diff] [blame] | 29 | #include "fragmentation.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 30 | |
Antonio Quartulli | dec0507 | 2012-11-10 11:00:32 +0100 | [diff] [blame] | 31 | /* hash class keys */ |
| 32 | static struct lock_class_key batadv_orig_hash_lock_class_key; |
| 33 | |
Sven Eckelmann | 03fc7f8 | 2012-05-12 18:34:00 +0200 | [diff] [blame] | 34 | static void batadv_purge_orig(struct work_struct *work); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 35 | |
Sven Eckelmann | b8e2dd1 | 2011-06-15 15:08:59 +0200 | [diff] [blame] | 36 | /* returns 1 if they are the same originator */ |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 37 | int batadv_compare_orig(const struct hlist_node *node, const void *data2) |
Sven Eckelmann | b8e2dd1 | 2011-06-15 15:08:59 +0200 | [diff] [blame] | 38 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 39 | const void *data1 = container_of(node, struct batadv_orig_node, |
| 40 | hash_entry); |
Sven Eckelmann | b8e2dd1 | 2011-06-15 15:08:59 +0200 | [diff] [blame] | 41 | |
dingtianhong | 323813e | 2013-12-26 19:40:39 +0800 | [diff] [blame] | 42 | return batadv_compare_eth(data1, data2); |
Sven Eckelmann | b8e2dd1 | 2011-06-15 15:08:59 +0200 | [diff] [blame] | 43 | } |
| 44 | |
Antonio Quartulli | 7ea7b4a | 2013-07-30 22:16:25 +0200 | [diff] [blame] | 45 | /** |
| 46 | * batadv_orig_node_vlan_get - get an orig_node_vlan object |
| 47 | * @orig_node: the originator serving the VLAN |
| 48 | * @vid: the VLAN identifier |
| 49 | * |
| 50 | * Returns the vlan object identified by vid and belonging to orig_node or NULL |
| 51 | * if it does not exist. |
| 52 | */ |
| 53 | struct batadv_orig_node_vlan * |
| 54 | batadv_orig_node_vlan_get(struct batadv_orig_node *orig_node, |
| 55 | unsigned short vid) |
| 56 | { |
| 57 | struct batadv_orig_node_vlan *vlan = NULL, *tmp; |
| 58 | |
| 59 | rcu_read_lock(); |
| 60 | list_for_each_entry_rcu(tmp, &orig_node->vlan_list, list) { |
| 61 | if (tmp->vid != vid) |
| 62 | continue; |
| 63 | |
| 64 | if (!atomic_inc_not_zero(&tmp->refcount)) |
| 65 | continue; |
| 66 | |
| 67 | vlan = tmp; |
| 68 | |
| 69 | break; |
| 70 | } |
| 71 | rcu_read_unlock(); |
| 72 | |
| 73 | return vlan; |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * batadv_orig_node_vlan_new - search and possibly create an orig_node_vlan |
| 78 | * object |
| 79 | * @orig_node: the originator serving the VLAN |
| 80 | * @vid: the VLAN identifier |
| 81 | * |
| 82 | * Returns NULL in case of failure or the vlan object identified by vid and |
| 83 | * belonging to orig_node otherwise. The object is created and added to the list |
| 84 | * if it does not exist. |
| 85 | * |
| 86 | * The object is returned with refcounter increased by 1. |
| 87 | */ |
| 88 | struct batadv_orig_node_vlan * |
| 89 | batadv_orig_node_vlan_new(struct batadv_orig_node *orig_node, |
| 90 | unsigned short vid) |
| 91 | { |
| 92 | struct batadv_orig_node_vlan *vlan; |
| 93 | |
| 94 | spin_lock_bh(&orig_node->vlan_list_lock); |
| 95 | |
| 96 | /* first look if an object for this vid already exists */ |
| 97 | vlan = batadv_orig_node_vlan_get(orig_node, vid); |
| 98 | if (vlan) |
| 99 | goto out; |
| 100 | |
| 101 | vlan = kzalloc(sizeof(*vlan), GFP_ATOMIC); |
| 102 | if (!vlan) |
| 103 | goto out; |
| 104 | |
| 105 | atomic_set(&vlan->refcount, 2); |
| 106 | vlan->vid = vid; |
| 107 | |
| 108 | list_add_rcu(&vlan->list, &orig_node->vlan_list); |
| 109 | |
| 110 | out: |
| 111 | spin_unlock_bh(&orig_node->vlan_list_lock); |
| 112 | |
| 113 | return vlan; |
| 114 | } |
| 115 | |
| 116 | /** |
| 117 | * batadv_orig_node_vlan_free_ref - decrement the refcounter and possibly free |
| 118 | * the originator-vlan object |
| 119 | * @orig_vlan: the originator-vlan object to release |
| 120 | */ |
| 121 | void batadv_orig_node_vlan_free_ref(struct batadv_orig_node_vlan *orig_vlan) |
| 122 | { |
| 123 | if (atomic_dec_and_test(&orig_vlan->refcount)) |
| 124 | kfree_rcu(orig_vlan, rcu); |
| 125 | } |
| 126 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 127 | int batadv_originator_init(struct batadv_priv *bat_priv) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 128 | { |
| 129 | if (bat_priv->orig_hash) |
Sven Eckelmann | 5346c35 | 2012-05-05 13:27:28 +0200 | [diff] [blame] | 130 | return 0; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 131 | |
Sven Eckelmann | 1a8eaf0 | 2012-05-12 02:09:32 +0200 | [diff] [blame] | 132 | bat_priv->orig_hash = batadv_hash_new(1024); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 133 | |
| 134 | if (!bat_priv->orig_hash) |
| 135 | goto err; |
| 136 | |
Antonio Quartulli | dec0507 | 2012-11-10 11:00:32 +0100 | [diff] [blame] | 137 | batadv_hash_set_lock_class(bat_priv->orig_hash, |
| 138 | &batadv_orig_hash_lock_class_key); |
| 139 | |
Antonio Quartulli | 7241444 | 2012-12-25 13:14:37 +0100 | [diff] [blame] | 140 | INIT_DELAYED_WORK(&bat_priv->orig_work, batadv_purge_orig); |
| 141 | queue_delayed_work(batadv_event_workqueue, |
| 142 | &bat_priv->orig_work, |
| 143 | msecs_to_jiffies(BATADV_ORIG_WORK_PERIOD)); |
| 144 | |
Sven Eckelmann | 5346c35 | 2012-05-05 13:27:28 +0200 | [diff] [blame] | 145 | return 0; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 146 | |
| 147 | err: |
Sven Eckelmann | 5346c35 | 2012-05-05 13:27:28 +0200 | [diff] [blame] | 148 | return -ENOMEM; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 149 | } |
| 150 | |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 151 | /** |
| 152 | * batadv_neigh_ifinfo_free_rcu - free the neigh_ifinfo object |
| 153 | * @rcu: rcu pointer of the neigh_ifinfo object |
| 154 | */ |
| 155 | static void batadv_neigh_ifinfo_free_rcu(struct rcu_head *rcu) |
| 156 | { |
| 157 | struct batadv_neigh_ifinfo *neigh_ifinfo; |
| 158 | |
| 159 | neigh_ifinfo = container_of(rcu, struct batadv_neigh_ifinfo, rcu); |
| 160 | |
| 161 | if (neigh_ifinfo->if_outgoing != BATADV_IF_DEFAULT) |
| 162 | batadv_hardif_free_ref_now(neigh_ifinfo->if_outgoing); |
| 163 | |
| 164 | kfree(neigh_ifinfo); |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * batadv_neigh_ifinfo_free_now - decrement the refcounter and possibly free |
| 169 | * the neigh_ifinfo (without rcu callback) |
| 170 | * @neigh_ifinfo: the neigh_ifinfo object to release |
| 171 | */ |
| 172 | static void |
| 173 | batadv_neigh_ifinfo_free_ref_now(struct batadv_neigh_ifinfo *neigh_ifinfo) |
| 174 | { |
| 175 | if (atomic_dec_and_test(&neigh_ifinfo->refcount)) |
| 176 | batadv_neigh_ifinfo_free_rcu(&neigh_ifinfo->rcu); |
| 177 | } |
| 178 | |
| 179 | /** |
| 180 | * batadv_neigh_ifinfo_free_ref - decrement the refcounter and possibly free |
| 181 | * the neigh_ifinfo |
| 182 | * @neigh_ifinfo: the neigh_ifinfo object to release |
| 183 | */ |
| 184 | void batadv_neigh_ifinfo_free_ref(struct batadv_neigh_ifinfo *neigh_ifinfo) |
| 185 | { |
| 186 | if (atomic_dec_and_test(&neigh_ifinfo->refcount)) |
| 187 | call_rcu(&neigh_ifinfo->rcu, batadv_neigh_ifinfo_free_rcu); |
| 188 | } |
| 189 | |
| 190 | /** |
| 191 | * batadv_neigh_node_free_rcu - free the neigh_node |
| 192 | * @rcu: rcu pointer of the neigh_node |
| 193 | */ |
| 194 | static void batadv_neigh_node_free_rcu(struct rcu_head *rcu) |
| 195 | { |
| 196 | struct hlist_node *node_tmp; |
| 197 | struct batadv_neigh_node *neigh_node; |
| 198 | struct batadv_neigh_ifinfo *neigh_ifinfo; |
| 199 | |
| 200 | neigh_node = container_of(rcu, struct batadv_neigh_node, rcu); |
| 201 | |
| 202 | hlist_for_each_entry_safe(neigh_ifinfo, node_tmp, |
| 203 | &neigh_node->ifinfo_list, list) { |
| 204 | batadv_neigh_ifinfo_free_ref_now(neigh_ifinfo); |
| 205 | } |
| 206 | batadv_hardif_free_ref_now(neigh_node->if_incoming); |
| 207 | |
| 208 | kfree(neigh_node); |
| 209 | } |
| 210 | |
| 211 | /** |
| 212 | * batadv_neigh_node_free_ref_now - decrement the neighbors refcounter |
| 213 | * and possibly free it (without rcu callback) |
| 214 | * @neigh_node: neigh neighbor to free |
| 215 | */ |
| 216 | static void |
| 217 | batadv_neigh_node_free_ref_now(struct batadv_neigh_node *neigh_node) |
| 218 | { |
| 219 | if (atomic_dec_and_test(&neigh_node->refcount)) |
| 220 | batadv_neigh_node_free_rcu(&neigh_node->rcu); |
| 221 | } |
| 222 | |
| 223 | /** |
| 224 | * batadv_neigh_node_free_ref - decrement the neighbors refcounter |
| 225 | * and possibly free it |
| 226 | * @neigh_node: neigh neighbor to free |
| 227 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 228 | void batadv_neigh_node_free_ref(struct batadv_neigh_node *neigh_node) |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 229 | { |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 230 | if (atomic_dec_and_test(&neigh_node->refcount)) |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 231 | call_rcu(&neigh_node->rcu, batadv_neigh_node_free_rcu); |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 232 | } |
| 233 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 234 | /** |
| 235 | * batadv_orig_node_get_router - router to the originator depending on iface |
| 236 | * @orig_node: the orig node for the router |
| 237 | * @if_outgoing: the interface where the payload packet has been received or |
| 238 | * the OGM should be sent to |
| 239 | * |
| 240 | * Returns the neighbor which should be router for this orig_node/iface. |
| 241 | * |
| 242 | * The object is returned with refcounter increased by 1. |
| 243 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 244 | struct batadv_neigh_node * |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 245 | batadv_orig_router_get(struct batadv_orig_node *orig_node, |
| 246 | const struct batadv_hard_iface *if_outgoing) |
Linus LĂĽssing | e1a5382f | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 247 | { |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 248 | struct batadv_orig_ifinfo *orig_ifinfo; |
| 249 | struct batadv_neigh_node *router = NULL; |
Linus LĂĽssing | e1a5382f | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 250 | |
| 251 | rcu_read_lock(); |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 252 | hlist_for_each_entry_rcu(orig_ifinfo, &orig_node->ifinfo_list, list) { |
| 253 | if (orig_ifinfo->if_outgoing != if_outgoing) |
| 254 | continue; |
| 255 | |
| 256 | router = rcu_dereference(orig_ifinfo->router); |
| 257 | break; |
| 258 | } |
Linus LĂĽssing | e1a5382f | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 259 | |
| 260 | if (router && !atomic_inc_not_zero(&router->refcount)) |
| 261 | router = NULL; |
| 262 | |
| 263 | rcu_read_unlock(); |
| 264 | return router; |
| 265 | } |
| 266 | |
Antonio Quartulli | 0538f75 | 2013-09-02 12:15:01 +0200 | [diff] [blame] | 267 | /** |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 268 | * batadv_orig_ifinfo_get - find the ifinfo from an orig_node |
| 269 | * @orig_node: the orig node to be queried |
| 270 | * @if_outgoing: the interface for which the ifinfo should be acquired |
| 271 | * |
| 272 | * Returns the requested orig_ifinfo or NULL if not found. |
| 273 | * |
| 274 | * The object is returned with refcounter increased by 1. |
| 275 | */ |
| 276 | struct batadv_orig_ifinfo * |
| 277 | batadv_orig_ifinfo_get(struct batadv_orig_node *orig_node, |
| 278 | struct batadv_hard_iface *if_outgoing) |
| 279 | { |
| 280 | struct batadv_orig_ifinfo *tmp, *orig_ifinfo = NULL; |
| 281 | |
| 282 | rcu_read_lock(); |
| 283 | hlist_for_each_entry_rcu(tmp, &orig_node->ifinfo_list, |
| 284 | list) { |
| 285 | if (tmp->if_outgoing != if_outgoing) |
| 286 | continue; |
| 287 | |
| 288 | if (!atomic_inc_not_zero(&tmp->refcount)) |
| 289 | continue; |
| 290 | |
| 291 | orig_ifinfo = tmp; |
| 292 | break; |
| 293 | } |
| 294 | rcu_read_unlock(); |
| 295 | |
| 296 | return orig_ifinfo; |
| 297 | } |
| 298 | |
| 299 | /** |
| 300 | * batadv_orig_ifinfo_new - search and possibly create an orig_ifinfo object |
| 301 | * @orig_node: the orig node to be queried |
| 302 | * @if_outgoing: the interface for which the ifinfo should be acquired |
| 303 | * |
| 304 | * Returns NULL in case of failure or the orig_ifinfo object for the if_outgoing |
| 305 | * interface otherwise. The object is created and added to the list |
| 306 | * if it does not exist. |
| 307 | * |
| 308 | * The object is returned with refcounter increased by 1. |
| 309 | */ |
| 310 | struct batadv_orig_ifinfo * |
| 311 | batadv_orig_ifinfo_new(struct batadv_orig_node *orig_node, |
| 312 | struct batadv_hard_iface *if_outgoing) |
| 313 | { |
| 314 | struct batadv_orig_ifinfo *orig_ifinfo = NULL; |
| 315 | unsigned long reset_time; |
| 316 | |
| 317 | spin_lock_bh(&orig_node->neigh_list_lock); |
| 318 | |
| 319 | orig_ifinfo = batadv_orig_ifinfo_get(orig_node, if_outgoing); |
| 320 | if (orig_ifinfo) |
| 321 | goto out; |
| 322 | |
| 323 | orig_ifinfo = kzalloc(sizeof(*orig_ifinfo), GFP_ATOMIC); |
| 324 | if (!orig_ifinfo) |
| 325 | goto out; |
| 326 | |
| 327 | if (if_outgoing != BATADV_IF_DEFAULT && |
| 328 | !atomic_inc_not_zero(&if_outgoing->refcount)) { |
| 329 | kfree(orig_ifinfo); |
| 330 | orig_ifinfo = NULL; |
| 331 | goto out; |
| 332 | } |
| 333 | |
| 334 | reset_time = jiffies - 1; |
| 335 | reset_time -= msecs_to_jiffies(BATADV_RESET_PROTECTION_MS); |
| 336 | orig_ifinfo->batman_seqno_reset = reset_time; |
| 337 | orig_ifinfo->if_outgoing = if_outgoing; |
| 338 | INIT_HLIST_NODE(&orig_ifinfo->list); |
| 339 | atomic_set(&orig_ifinfo->refcount, 2); |
| 340 | hlist_add_head_rcu(&orig_ifinfo->list, |
| 341 | &orig_node->ifinfo_list); |
| 342 | out: |
| 343 | spin_unlock_bh(&orig_node->neigh_list_lock); |
| 344 | return orig_ifinfo; |
| 345 | } |
| 346 | |
| 347 | /** |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 348 | * batadv_neigh_ifinfo_get - find the ifinfo from an neigh_node |
| 349 | * @neigh_node: the neigh node to be queried |
| 350 | * @if_outgoing: the interface for which the ifinfo should be acquired |
| 351 | * |
| 352 | * The object is returned with refcounter increased by 1. |
| 353 | * |
| 354 | * Returns the requested neigh_ifinfo or NULL if not found |
| 355 | */ |
| 356 | struct batadv_neigh_ifinfo * |
| 357 | batadv_neigh_ifinfo_get(struct batadv_neigh_node *neigh, |
| 358 | struct batadv_hard_iface *if_outgoing) |
| 359 | { |
| 360 | struct batadv_neigh_ifinfo *neigh_ifinfo = NULL, |
| 361 | *tmp_neigh_ifinfo; |
| 362 | |
| 363 | rcu_read_lock(); |
| 364 | hlist_for_each_entry_rcu(tmp_neigh_ifinfo, &neigh->ifinfo_list, |
| 365 | list) { |
| 366 | if (tmp_neigh_ifinfo->if_outgoing != if_outgoing) |
| 367 | continue; |
| 368 | |
| 369 | if (!atomic_inc_not_zero(&tmp_neigh_ifinfo->refcount)) |
| 370 | continue; |
| 371 | |
| 372 | neigh_ifinfo = tmp_neigh_ifinfo; |
| 373 | break; |
| 374 | } |
| 375 | rcu_read_unlock(); |
| 376 | |
| 377 | return neigh_ifinfo; |
| 378 | } |
| 379 | |
| 380 | /** |
| 381 | * batadv_neigh_ifinfo_new - search and possibly create an neigh_ifinfo object |
| 382 | * @neigh_node: the neigh node to be queried |
| 383 | * @if_outgoing: the interface for which the ifinfo should be acquired |
| 384 | * |
| 385 | * Returns NULL in case of failure or the neigh_ifinfo object for the |
| 386 | * if_outgoing interface otherwise. The object is created and added to the list |
| 387 | * if it does not exist. |
| 388 | * |
| 389 | * The object is returned with refcounter increased by 1. |
| 390 | */ |
| 391 | struct batadv_neigh_ifinfo * |
| 392 | batadv_neigh_ifinfo_new(struct batadv_neigh_node *neigh, |
| 393 | struct batadv_hard_iface *if_outgoing) |
| 394 | { |
| 395 | struct batadv_neigh_ifinfo *neigh_ifinfo; |
| 396 | |
| 397 | spin_lock_bh(&neigh->ifinfo_lock); |
| 398 | |
| 399 | neigh_ifinfo = batadv_neigh_ifinfo_get(neigh, if_outgoing); |
| 400 | if (neigh_ifinfo) |
| 401 | goto out; |
| 402 | |
| 403 | neigh_ifinfo = kzalloc(sizeof(*neigh_ifinfo), GFP_ATOMIC); |
| 404 | if (!neigh_ifinfo) |
| 405 | goto out; |
| 406 | |
| 407 | if (if_outgoing && !atomic_inc_not_zero(&if_outgoing->refcount)) { |
| 408 | kfree(neigh_ifinfo); |
| 409 | neigh_ifinfo = NULL; |
| 410 | goto out; |
| 411 | } |
| 412 | |
| 413 | INIT_HLIST_NODE(&neigh_ifinfo->list); |
| 414 | atomic_set(&neigh_ifinfo->refcount, 2); |
| 415 | neigh_ifinfo->if_outgoing = if_outgoing; |
| 416 | |
| 417 | hlist_add_head_rcu(&neigh_ifinfo->list, &neigh->ifinfo_list); |
| 418 | |
| 419 | out: |
| 420 | spin_unlock_bh(&neigh->ifinfo_lock); |
| 421 | |
| 422 | return neigh_ifinfo; |
| 423 | } |
| 424 | |
| 425 | /** |
Antonio Quartulli | 0538f75 | 2013-09-02 12:15:01 +0200 | [diff] [blame] | 426 | * batadv_neigh_node_new - create and init a new neigh_node object |
| 427 | * @hard_iface: the interface where the neighbour is connected to |
| 428 | * @neigh_addr: the mac address of the neighbour interface |
| 429 | * @orig_node: originator object representing the neighbour |
| 430 | * |
| 431 | * Allocates a new neigh_node object and initialises all the generic fields. |
| 432 | * Returns the new object or NULL on failure. |
| 433 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 434 | struct batadv_neigh_node * |
| 435 | batadv_neigh_node_new(struct batadv_hard_iface *hard_iface, |
Antonio Quartulli | 0538f75 | 2013-09-02 12:15:01 +0200 | [diff] [blame] | 436 | const uint8_t *neigh_addr, |
| 437 | struct batadv_orig_node *orig_node) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 438 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 439 | struct batadv_neigh_node *neigh_node; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 440 | |
Sven Eckelmann | 704509b | 2011-05-14 23:14:54 +0200 | [diff] [blame] | 441 | neigh_node = kzalloc(sizeof(*neigh_node), GFP_ATOMIC); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 442 | if (!neigh_node) |
Marek Lindner | 7ae8b28 | 2012-03-01 15:35:21 +0800 | [diff] [blame] | 443 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 444 | |
Marek Lindner | 9591a79 | 2010-12-12 21:57:11 +0000 | [diff] [blame] | 445 | INIT_HLIST_NODE(&neigh_node->list); |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 446 | INIT_HLIST_HEAD(&neigh_node->ifinfo_list); |
| 447 | spin_lock_init(&neigh_node->ifinfo_lock); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 448 | |
Marek Lindner | 7ae8b28 | 2012-03-01 15:35:21 +0800 | [diff] [blame] | 449 | memcpy(neigh_node->addr, neigh_addr, ETH_ALEN); |
Antonio Quartulli | 0538f75 | 2013-09-02 12:15:01 +0200 | [diff] [blame] | 450 | neigh_node->if_incoming = hard_iface; |
| 451 | neigh_node->orig_node = orig_node; |
| 452 | |
Marek Lindner | 1605d0d | 2011-02-18 12:28:11 +0000 | [diff] [blame] | 453 | /* extra reference for return */ |
| 454 | atomic_set(&neigh_node->refcount, 2); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 455 | |
Marek Lindner | 7ae8b28 | 2012-03-01 15:35:21 +0800 | [diff] [blame] | 456 | out: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 457 | return neigh_node; |
| 458 | } |
| 459 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 460 | /** |
| 461 | * batadv_orig_ifinfo_free_rcu - free the orig_ifinfo object |
| 462 | * @rcu: rcu pointer of the orig_ifinfo object |
| 463 | */ |
| 464 | static void batadv_orig_ifinfo_free_rcu(struct rcu_head *rcu) |
| 465 | { |
| 466 | struct batadv_orig_ifinfo *orig_ifinfo; |
| 467 | |
| 468 | orig_ifinfo = container_of(rcu, struct batadv_orig_ifinfo, rcu); |
| 469 | |
| 470 | if (orig_ifinfo->if_outgoing != BATADV_IF_DEFAULT) |
| 471 | batadv_hardif_free_ref_now(orig_ifinfo->if_outgoing); |
| 472 | |
| 473 | kfree(orig_ifinfo); |
| 474 | } |
| 475 | |
| 476 | /** |
| 477 | * batadv_orig_ifinfo_free_ref - decrement the refcounter and possibly free |
| 478 | * the orig_ifinfo (without rcu callback) |
| 479 | * @orig_ifinfo: the orig_ifinfo object to release |
| 480 | */ |
| 481 | static void |
| 482 | batadv_orig_ifinfo_free_ref_now(struct batadv_orig_ifinfo *orig_ifinfo) |
| 483 | { |
| 484 | if (atomic_dec_and_test(&orig_ifinfo->refcount)) |
| 485 | batadv_orig_ifinfo_free_rcu(&orig_ifinfo->rcu); |
| 486 | } |
| 487 | |
| 488 | /** |
| 489 | * batadv_orig_ifinfo_free_ref - decrement the refcounter and possibly free |
| 490 | * the orig_ifinfo |
| 491 | * @orig_ifinfo: the orig_ifinfo object to release |
| 492 | */ |
| 493 | void batadv_orig_ifinfo_free_ref(struct batadv_orig_ifinfo *orig_ifinfo) |
| 494 | { |
| 495 | if (atomic_dec_and_test(&orig_ifinfo->refcount)) |
| 496 | call_rcu(&orig_ifinfo->rcu, batadv_orig_ifinfo_free_rcu); |
| 497 | } |
| 498 | |
Sven Eckelmann | 03fc7f8 | 2012-05-12 18:34:00 +0200 | [diff] [blame] | 499 | static void batadv_orig_node_free_rcu(struct rcu_head *rcu) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 500 | { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 501 | struct hlist_node *node_tmp; |
Simon Wunderlich | f6c8b71 | 2013-11-13 19:14:45 +0100 | [diff] [blame] | 502 | struct batadv_neigh_node *neigh_node; |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 503 | struct batadv_orig_node *orig_node; |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 504 | struct batadv_orig_ifinfo *orig_ifinfo; |
Marek Lindner | 16b1aba | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 505 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 506 | orig_node = container_of(rcu, struct batadv_orig_node, rcu); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 507 | |
Marek Lindner | f987ed6 | 2010-12-12 21:57:12 +0000 | [diff] [blame] | 508 | spin_lock_bh(&orig_node->neigh_list_lock); |
| 509 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 510 | /* for all neighbors towards this originator ... */ |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 511 | hlist_for_each_entry_safe(neigh_node, node_tmp, |
Marek Lindner | 9591a79 | 2010-12-12 21:57:11 +0000 | [diff] [blame] | 512 | &orig_node->neigh_list, list) { |
Marek Lindner | f987ed6 | 2010-12-12 21:57:12 +0000 | [diff] [blame] | 513 | hlist_del_rcu(&neigh_node->list); |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 514 | batadv_neigh_node_free_ref_now(neigh_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 515 | } |
| 516 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 517 | hlist_for_each_entry_safe(orig_ifinfo, node_tmp, |
| 518 | &orig_node->ifinfo_list, list) { |
| 519 | hlist_del_rcu(&orig_ifinfo->list); |
| 520 | batadv_orig_ifinfo_free_ref_now(orig_ifinfo); |
| 521 | } |
Marek Lindner | f987ed6 | 2010-12-12 21:57:12 +0000 | [diff] [blame] | 522 | spin_unlock_bh(&orig_node->neigh_list_lock); |
| 523 | |
Martin Hundebøll | d56b170 | 2013-01-25 11:12:39 +0100 | [diff] [blame] | 524 | /* Free nc_nodes */ |
| 525 | batadv_nc_purge_orig(orig_node->bat_priv, orig_node, NULL); |
| 526 | |
Martin Hundebøll | 610bfc6bc | 2013-05-23 16:53:02 +0200 | [diff] [blame] | 527 | batadv_frag_purge_orig(orig_node, NULL); |
| 528 | |
Antonio Quartulli | 95fb130 | 2013-08-07 18:28:55 +0200 | [diff] [blame] | 529 | batadv_tt_global_del_orig(orig_node->bat_priv, orig_node, -1, |
Sven Eckelmann | 08c36d3 | 2012-05-12 02:09:39 +0200 | [diff] [blame] | 530 | "originator timed out"); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 531 | |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 532 | if (orig_node->bat_priv->bat_algo_ops->bat_orig_free) |
| 533 | orig_node->bat_priv->bat_algo_ops->bat_orig_free(orig_node); |
| 534 | |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 535 | kfree(orig_node->tt_buff); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 536 | kfree(orig_node); |
| 537 | } |
| 538 | |
Linus LĂĽssing | 7282222 | 2013-04-15 21:43:29 +0800 | [diff] [blame] | 539 | /** |
| 540 | * batadv_orig_node_free_ref - decrement the orig node refcounter and possibly |
| 541 | * schedule an rcu callback for freeing it |
| 542 | * @orig_node: the orig node to free |
| 543 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 544 | void batadv_orig_node_free_ref(struct batadv_orig_node *orig_node) |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 545 | { |
| 546 | if (atomic_dec_and_test(&orig_node->refcount)) |
Sven Eckelmann | 03fc7f8 | 2012-05-12 18:34:00 +0200 | [diff] [blame] | 547 | call_rcu(&orig_node->rcu, batadv_orig_node_free_rcu); |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 548 | } |
| 549 | |
Linus LĂĽssing | 7282222 | 2013-04-15 21:43:29 +0800 | [diff] [blame] | 550 | /** |
| 551 | * batadv_orig_node_free_ref_now - decrement the orig node refcounter and |
| 552 | * possibly free it (without rcu callback) |
| 553 | * @orig_node: the orig node to free |
| 554 | */ |
| 555 | void batadv_orig_node_free_ref_now(struct batadv_orig_node *orig_node) |
| 556 | { |
| 557 | if (atomic_dec_and_test(&orig_node->refcount)) |
| 558 | batadv_orig_node_free_rcu(&orig_node->rcu); |
| 559 | } |
| 560 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 561 | void batadv_originator_free(struct batadv_priv *bat_priv) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 562 | { |
Sven Eckelmann | 5bf74e9 | 2012-06-05 22:31:28 +0200 | [diff] [blame] | 563 | struct batadv_hashtable *hash = bat_priv->orig_hash; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 564 | struct hlist_node *node_tmp; |
Marek Lindner | 16b1aba | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 565 | struct hlist_head *head; |
Marek Lindner | 16b1aba | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 566 | spinlock_t *list_lock; /* spinlock to protect write access */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 567 | struct batadv_orig_node *orig_node; |
Antonio Quartulli | c90681b | 2011-10-05 17:05:25 +0200 | [diff] [blame] | 568 | uint32_t i; |
Marek Lindner | 16b1aba | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 569 | |
| 570 | if (!hash) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 571 | return; |
| 572 | |
| 573 | cancel_delayed_work_sync(&bat_priv->orig_work); |
| 574 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 575 | bat_priv->orig_hash = NULL; |
Marek Lindner | 16b1aba | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 576 | |
| 577 | for (i = 0; i < hash->size; i++) { |
| 578 | head = &hash->table[i]; |
| 579 | list_lock = &hash->list_locks[i]; |
| 580 | |
| 581 | spin_lock_bh(list_lock); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 582 | hlist_for_each_entry_safe(orig_node, node_tmp, |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 583 | head, hash_entry) { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 584 | hlist_del_rcu(&orig_node->hash_entry); |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 585 | batadv_orig_node_free_ref(orig_node); |
Marek Lindner | 16b1aba | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 586 | } |
| 587 | spin_unlock_bh(list_lock); |
| 588 | } |
| 589 | |
Sven Eckelmann | 1a8eaf0 | 2012-05-12 02:09:32 +0200 | [diff] [blame] | 590 | batadv_hash_destroy(hash); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 591 | } |
| 592 | |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 593 | /** |
| 594 | * batadv_orig_node_new - creates a new orig_node |
| 595 | * @bat_priv: the bat priv with all the soft interface information |
| 596 | * @addr: the mac address of the originator |
| 597 | * |
| 598 | * Creates a new originator object and initialise all the generic fields. |
| 599 | * The new object is not added to the originator list. |
| 600 | * Returns the newly created object or NULL on failure. |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 601 | */ |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 602 | struct batadv_orig_node *batadv_orig_node_new(struct batadv_priv *bat_priv, |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 603 | const uint8_t *addr) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 604 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 605 | struct batadv_orig_node *orig_node; |
Antonio Quartulli | 7ea7b4a | 2013-07-30 22:16:25 +0200 | [diff] [blame] | 606 | struct batadv_orig_node_vlan *vlan; |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 607 | unsigned long reset_time; |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 608 | int i; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 609 | |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 610 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 611 | "Creating new originator: %pM\n", addr); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 612 | |
Sven Eckelmann | 704509b | 2011-05-14 23:14:54 +0200 | [diff] [blame] | 613 | orig_node = kzalloc(sizeof(*orig_node), GFP_ATOMIC); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 614 | if (!orig_node) |
| 615 | return NULL; |
| 616 | |
Marek Lindner | 9591a79 | 2010-12-12 21:57:11 +0000 | [diff] [blame] | 617 | INIT_HLIST_HEAD(&orig_node->neigh_list); |
Antonio Quartulli | 7ea7b4a | 2013-07-30 22:16:25 +0200 | [diff] [blame] | 618 | INIT_LIST_HEAD(&orig_node->vlan_list); |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 619 | INIT_HLIST_HEAD(&orig_node->ifinfo_list); |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 620 | spin_lock_init(&orig_node->bcast_seqno_lock); |
Marek Lindner | f987ed6 | 2010-12-12 21:57:12 +0000 | [diff] [blame] | 621 | spin_lock_init(&orig_node->neigh_list_lock); |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 622 | spin_lock_init(&orig_node->tt_buff_lock); |
Antonio Quartulli | a70a9aa | 2013-07-30 22:16:24 +0200 | [diff] [blame] | 623 | spin_lock_init(&orig_node->tt_lock); |
Antonio Quartulli | 7ea7b4a | 2013-07-30 22:16:25 +0200 | [diff] [blame] | 624 | spin_lock_init(&orig_node->vlan_list_lock); |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 625 | |
Martin Hundebøll | d56b170 | 2013-01-25 11:12:39 +0100 | [diff] [blame] | 626 | batadv_nc_init_orig(orig_node); |
| 627 | |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 628 | /* extra reference for return */ |
| 629 | atomic_set(&orig_node->refcount, 2); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 630 | |
Antonio Quartulli | 1707157 | 2011-11-07 16:36:40 +0100 | [diff] [blame] | 631 | orig_node->tt_initialised = false; |
Marek Lindner | 16b1aba | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 632 | orig_node->bat_priv = bat_priv; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 633 | memcpy(orig_node->orig, addr, ETH_ALEN); |
Antonio Quartulli | 785ea11 | 2011-11-23 11:35:44 +0100 | [diff] [blame] | 634 | batadv_dat_init_orig_node_addr(orig_node); |
Antonio Quartulli | c8c991b | 2011-07-07 01:40:57 +0200 | [diff] [blame] | 635 | atomic_set(&orig_node->last_ttvn, 0); |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 636 | orig_node->tt_buff = NULL; |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 637 | orig_node->tt_buff_len = 0; |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 638 | reset_time = jiffies - 1 - msecs_to_jiffies(BATADV_RESET_PROTECTION_MS); |
| 639 | orig_node->bcast_seqno_reset = reset_time; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 640 | |
Antonio Quartulli | 7ea7b4a | 2013-07-30 22:16:25 +0200 | [diff] [blame] | 641 | /* create a vlan object for the "untagged" LAN */ |
| 642 | vlan = batadv_orig_node_vlan_new(orig_node, BATADV_NO_FLAGS); |
| 643 | if (!vlan) |
| 644 | goto free_orig_node; |
| 645 | /* batadv_orig_node_vlan_new() increases the refcounter. |
| 646 | * Immediately release vlan since it is not needed anymore in this |
| 647 | * context |
| 648 | */ |
| 649 | batadv_orig_node_vlan_free_ref(vlan); |
| 650 | |
Martin Hundebøll | 610bfc6bc | 2013-05-23 16:53:02 +0200 | [diff] [blame] | 651 | for (i = 0; i < BATADV_FRAG_BUFFER_COUNT; i++) { |
| 652 | INIT_HLIST_HEAD(&orig_node->fragments[i].head); |
| 653 | spin_lock_init(&orig_node->fragments[i].lock); |
| 654 | orig_node->fragments[i].size = 0; |
| 655 | } |
| 656 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 657 | return orig_node; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 658 | free_orig_node: |
| 659 | kfree(orig_node); |
| 660 | return NULL; |
| 661 | } |
| 662 | |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 663 | /** |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 664 | * batadv_purge_orig_ifinfo - purge obsolete ifinfo entries from originator |
| 665 | * @bat_priv: the bat priv with all the soft interface information |
| 666 | * @orig_node: orig node which is to be checked |
| 667 | * |
| 668 | * Returns true if any ifinfo entry was purged, false otherwise. |
| 669 | */ |
| 670 | static bool |
| 671 | batadv_purge_orig_ifinfo(struct batadv_priv *bat_priv, |
| 672 | struct batadv_orig_node *orig_node) |
| 673 | { |
| 674 | struct batadv_orig_ifinfo *orig_ifinfo; |
| 675 | struct batadv_hard_iface *if_outgoing; |
| 676 | struct hlist_node *node_tmp; |
| 677 | bool ifinfo_purged = false; |
| 678 | |
| 679 | spin_lock_bh(&orig_node->neigh_list_lock); |
| 680 | |
| 681 | /* for all ifinfo objects for this originator */ |
| 682 | hlist_for_each_entry_safe(orig_ifinfo, node_tmp, |
| 683 | &orig_node->ifinfo_list, list) { |
| 684 | if_outgoing = orig_ifinfo->if_outgoing; |
| 685 | |
| 686 | /* always keep the default interface */ |
| 687 | if (if_outgoing == BATADV_IF_DEFAULT) |
| 688 | continue; |
| 689 | |
| 690 | /* don't purge if the interface is not (going) down */ |
| 691 | if ((if_outgoing->if_status != BATADV_IF_INACTIVE) && |
| 692 | (if_outgoing->if_status != BATADV_IF_NOT_IN_USE) && |
| 693 | (if_outgoing->if_status != BATADV_IF_TO_BE_REMOVED)) |
| 694 | continue; |
| 695 | |
| 696 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 697 | "router/ifinfo purge: originator %pM, iface: %s\n", |
| 698 | orig_node->orig, if_outgoing->net_dev->name); |
| 699 | |
| 700 | ifinfo_purged = true; |
| 701 | |
| 702 | hlist_del_rcu(&orig_ifinfo->list); |
| 703 | batadv_orig_ifinfo_free_ref(orig_ifinfo); |
Simon Wunderlich | f3b3d90 | 2013-11-13 19:14:50 +0100 | [diff] [blame] | 704 | if (orig_node->last_bonding_candidate == orig_ifinfo) { |
| 705 | orig_node->last_bonding_candidate = NULL; |
| 706 | batadv_orig_ifinfo_free_ref(orig_ifinfo); |
| 707 | } |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 708 | } |
| 709 | |
| 710 | spin_unlock_bh(&orig_node->neigh_list_lock); |
| 711 | |
| 712 | return ifinfo_purged; |
| 713 | } |
| 714 | |
| 715 | |
| 716 | /** |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 717 | * batadv_purge_orig_neighbors - purges neighbors from originator |
| 718 | * @bat_priv: the bat priv with all the soft interface information |
| 719 | * @orig_node: orig node which is to be checked |
| 720 | * |
| 721 | * Returns true if any neighbor was purged, false otherwise |
| 722 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 723 | static bool |
| 724 | batadv_purge_orig_neighbors(struct batadv_priv *bat_priv, |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 725 | struct batadv_orig_node *orig_node) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 726 | { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 727 | struct hlist_node *node_tmp; |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 728 | struct batadv_neigh_node *neigh_node; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 729 | bool neigh_purged = false; |
Marek Lindner | 0b0094e | 2012-03-01 15:35:20 +0800 | [diff] [blame] | 730 | unsigned long last_seen; |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 731 | struct batadv_hard_iface *if_incoming; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 732 | |
Marek Lindner | f987ed6 | 2010-12-12 21:57:12 +0000 | [diff] [blame] | 733 | spin_lock_bh(&orig_node->neigh_list_lock); |
| 734 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 735 | /* for all neighbors towards this originator ... */ |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 736 | hlist_for_each_entry_safe(neigh_node, node_tmp, |
Marek Lindner | 9591a79 | 2010-12-12 21:57:11 +0000 | [diff] [blame] | 737 | &orig_node->neigh_list, list) { |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 738 | last_seen = neigh_node->last_seen; |
| 739 | if_incoming = neigh_node->if_incoming; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 740 | |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 741 | if ((batadv_has_timed_out(last_seen, BATADV_PURGE_TIMEOUT)) || |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 742 | (if_incoming->if_status == BATADV_IF_INACTIVE) || |
| 743 | (if_incoming->if_status == BATADV_IF_NOT_IN_USE) || |
| 744 | (if_incoming->if_status == BATADV_IF_TO_BE_REMOVED)) { |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 745 | if ((if_incoming->if_status == BATADV_IF_INACTIVE) || |
| 746 | (if_incoming->if_status == BATADV_IF_NOT_IN_USE) || |
| 747 | (if_incoming->if_status == BATADV_IF_TO_BE_REMOVED)) |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 748 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 749 | "neighbor purge: originator %pM, neighbor: %pM, iface: %s\n", |
| 750 | orig_node->orig, neigh_node->addr, |
| 751 | if_incoming->net_dev->name); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 752 | else |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 753 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 754 | "neighbor timeout: originator %pM, neighbor: %pM, last_seen: %u\n", |
| 755 | orig_node->orig, neigh_node->addr, |
| 756 | jiffies_to_msecs(last_seen)); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 757 | |
| 758 | neigh_purged = true; |
Marek Lindner | 9591a79 | 2010-12-12 21:57:11 +0000 | [diff] [blame] | 759 | |
Marek Lindner | f987ed6 | 2010-12-12 21:57:12 +0000 | [diff] [blame] | 760 | hlist_del_rcu(&neigh_node->list); |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 761 | batadv_neigh_node_free_ref(neigh_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 762 | } |
| 763 | } |
Marek Lindner | f987ed6 | 2010-12-12 21:57:12 +0000 | [diff] [blame] | 764 | |
| 765 | spin_unlock_bh(&orig_node->neigh_list_lock); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 766 | return neigh_purged; |
| 767 | } |
| 768 | |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 769 | /** |
| 770 | * batadv_find_best_neighbor - finds the best neighbor after purging |
| 771 | * @bat_priv: the bat priv with all the soft interface information |
| 772 | * @orig_node: orig node which is to be checked |
| 773 | * @if_outgoing: the interface for which the metric should be compared |
| 774 | * |
| 775 | * Returns the current best neighbor, with refcount increased. |
| 776 | */ |
| 777 | static struct batadv_neigh_node * |
| 778 | batadv_find_best_neighbor(struct batadv_priv *bat_priv, |
| 779 | struct batadv_orig_node *orig_node, |
| 780 | struct batadv_hard_iface *if_outgoing) |
| 781 | { |
| 782 | struct batadv_neigh_node *best = NULL, *neigh; |
| 783 | struct batadv_algo_ops *bao = bat_priv->bat_algo_ops; |
| 784 | |
| 785 | rcu_read_lock(); |
| 786 | hlist_for_each_entry_rcu(neigh, &orig_node->neigh_list, list) { |
| 787 | if (best && (bao->bat_neigh_cmp(neigh, if_outgoing, |
| 788 | best, if_outgoing) <= 0)) |
| 789 | continue; |
| 790 | |
| 791 | if (!atomic_inc_not_zero(&neigh->refcount)) |
| 792 | continue; |
| 793 | |
| 794 | if (best) |
| 795 | batadv_neigh_node_free_ref(best); |
| 796 | |
| 797 | best = neigh; |
| 798 | } |
| 799 | rcu_read_unlock(); |
| 800 | |
| 801 | return best; |
| 802 | } |
| 803 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 804 | /** |
| 805 | * batadv_purge_orig_node - purges obsolete information from an orig_node |
| 806 | * @bat_priv: the bat priv with all the soft interface information |
| 807 | * @orig_node: orig node which is to be checked |
| 808 | * |
| 809 | * This function checks if the orig_node or substructures of it have become |
| 810 | * obsolete, and purges this information if that's the case. |
| 811 | * |
| 812 | * Returns true if the orig_node is to be removed, false otherwise. |
| 813 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 814 | static bool batadv_purge_orig_node(struct batadv_priv *bat_priv, |
| 815 | struct batadv_orig_node *orig_node) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 816 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 817 | struct batadv_neigh_node *best_neigh_node; |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 818 | struct batadv_hard_iface *hard_iface; |
| 819 | bool changed; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 820 | |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 821 | if (batadv_has_timed_out(orig_node->last_seen, |
| 822 | 2 * BATADV_PURGE_TIMEOUT)) { |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 823 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 824 | "Originator timeout: originator %pM, last_seen %u\n", |
| 825 | orig_node->orig, |
| 826 | jiffies_to_msecs(orig_node->last_seen)); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 827 | return true; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 828 | } |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 829 | changed = batadv_purge_orig_ifinfo(bat_priv, orig_node); |
| 830 | changed = changed || batadv_purge_orig_neighbors(bat_priv, orig_node); |
| 831 | |
| 832 | if (!changed) |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 833 | return false; |
| 834 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 835 | /* first for NULL ... */ |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 836 | best_neigh_node = batadv_find_best_neighbor(bat_priv, orig_node, |
| 837 | BATADV_IF_DEFAULT); |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 838 | batadv_update_route(bat_priv, orig_node, BATADV_IF_DEFAULT, |
| 839 | best_neigh_node); |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 840 | if (best_neigh_node) |
| 841 | batadv_neigh_node_free_ref(best_neigh_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 842 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 843 | /* ... then for all other interfaces. */ |
| 844 | rcu_read_lock(); |
| 845 | list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) { |
| 846 | if (hard_iface->if_status != BATADV_IF_ACTIVE) |
| 847 | continue; |
| 848 | |
| 849 | if (hard_iface->soft_iface != bat_priv->soft_iface) |
| 850 | continue; |
| 851 | |
| 852 | best_neigh_node = batadv_find_best_neighbor(bat_priv, |
| 853 | orig_node, |
| 854 | hard_iface); |
| 855 | batadv_update_route(bat_priv, orig_node, hard_iface, |
| 856 | best_neigh_node); |
| 857 | if (best_neigh_node) |
| 858 | batadv_neigh_node_free_ref(best_neigh_node); |
| 859 | } |
| 860 | rcu_read_unlock(); |
| 861 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 862 | return false; |
| 863 | } |
| 864 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 865 | static void _batadv_purge_orig(struct batadv_priv *bat_priv) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 866 | { |
Sven Eckelmann | 5bf74e9 | 2012-06-05 22:31:28 +0200 | [diff] [blame] | 867 | struct batadv_hashtable *hash = bat_priv->orig_hash; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 868 | struct hlist_node *node_tmp; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 869 | struct hlist_head *head; |
Marek Lindner | fb778ea | 2011-01-19 20:01:40 +0000 | [diff] [blame] | 870 | spinlock_t *list_lock; /* spinlock to protect write access */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 871 | struct batadv_orig_node *orig_node; |
Antonio Quartulli | c90681b | 2011-10-05 17:05:25 +0200 | [diff] [blame] | 872 | uint32_t i; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 873 | |
| 874 | if (!hash) |
| 875 | return; |
| 876 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 877 | /* for all origins... */ |
| 878 | for (i = 0; i < hash->size; i++) { |
| 879 | head = &hash->table[i]; |
Marek Lindner | fb778ea | 2011-01-19 20:01:40 +0000 | [diff] [blame] | 880 | list_lock = &hash->list_locks[i]; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 881 | |
Marek Lindner | fb778ea | 2011-01-19 20:01:40 +0000 | [diff] [blame] | 882 | spin_lock_bh(list_lock); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 883 | hlist_for_each_entry_safe(orig_node, node_tmp, |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 884 | head, hash_entry) { |
Sven Eckelmann | 03fc7f8 | 2012-05-12 18:34:00 +0200 | [diff] [blame] | 885 | if (batadv_purge_orig_node(bat_priv, orig_node)) { |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 886 | batadv_gw_node_delete(bat_priv, orig_node); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 887 | hlist_del_rcu(&orig_node->hash_entry); |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 888 | batadv_orig_node_free_ref(orig_node); |
Marek Lindner | fb778ea | 2011-01-19 20:01:40 +0000 | [diff] [blame] | 889 | continue; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 890 | } |
Martin Hundebøll | 610bfc6bc | 2013-05-23 16:53:02 +0200 | [diff] [blame] | 891 | |
| 892 | batadv_frag_purge_orig(orig_node, |
| 893 | batadv_frag_check_entry); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 894 | } |
Marek Lindner | fb778ea | 2011-01-19 20:01:40 +0000 | [diff] [blame] | 895 | spin_unlock_bh(list_lock); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 896 | } |
| 897 | |
Sven Eckelmann | 7cf06bc | 2012-05-12 02:09:29 +0200 | [diff] [blame] | 898 | batadv_gw_node_purge(bat_priv); |
| 899 | batadv_gw_election(bat_priv); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 900 | } |
| 901 | |
Sven Eckelmann | 03fc7f8 | 2012-05-12 18:34:00 +0200 | [diff] [blame] | 902 | static void batadv_purge_orig(struct work_struct *work) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 903 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 904 | struct delayed_work *delayed_work; |
| 905 | struct batadv_priv *bat_priv; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 906 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 907 | delayed_work = container_of(work, struct delayed_work, work); |
| 908 | bat_priv = container_of(delayed_work, struct batadv_priv, orig_work); |
Sven Eckelmann | 03fc7f8 | 2012-05-12 18:34:00 +0200 | [diff] [blame] | 909 | _batadv_purge_orig(bat_priv); |
Antonio Quartulli | 7241444 | 2012-12-25 13:14:37 +0100 | [diff] [blame] | 910 | queue_delayed_work(batadv_event_workqueue, |
| 911 | &bat_priv->orig_work, |
| 912 | msecs_to_jiffies(BATADV_ORIG_WORK_PERIOD)); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 913 | } |
| 914 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 915 | void batadv_purge_orig_ref(struct batadv_priv *bat_priv) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 916 | { |
Sven Eckelmann | 03fc7f8 | 2012-05-12 18:34:00 +0200 | [diff] [blame] | 917 | _batadv_purge_orig(bat_priv); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 918 | } |
| 919 | |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 920 | int batadv_orig_seq_print_text(struct seq_file *seq, void *offset) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 921 | { |
| 922 | struct net_device *net_dev = (struct net_device *)seq->private; |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 923 | struct batadv_priv *bat_priv = netdev_priv(net_dev); |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 924 | struct batadv_hard_iface *primary_if; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 925 | |
Marek Lindner | 30da63a | 2012-08-03 17:15:46 +0200 | [diff] [blame] | 926 | primary_if = batadv_seq_print_text_primary_if_get(seq); |
| 927 | if (!primary_if) |
Antonio Quartulli | 737a2a22 | 2013-09-02 12:15:03 +0200 | [diff] [blame] | 928 | return 0; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 929 | |
Antonio Quartulli | 737a2a22 | 2013-09-02 12:15:03 +0200 | [diff] [blame] | 930 | seq_printf(seq, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s %s)]\n", |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 931 | BATADV_SOURCE_VERSION, primary_if->net_dev->name, |
Antonio Quartulli | 737a2a22 | 2013-09-02 12:15:03 +0200 | [diff] [blame] | 932 | primary_if->net_dev->dev_addr, net_dev->name, |
| 933 | bat_priv->bat_algo_ops->name); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 934 | |
Antonio Quartulli | 737a2a22 | 2013-09-02 12:15:03 +0200 | [diff] [blame] | 935 | batadv_hardif_free_ref(primary_if); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 936 | |
Antonio Quartulli | 737a2a22 | 2013-09-02 12:15:03 +0200 | [diff] [blame] | 937 | if (!bat_priv->bat_algo_ops->bat_orig_print) { |
| 938 | seq_puts(seq, |
| 939 | "No printing function for this routing protocol\n"); |
| 940 | return 0; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 941 | } |
| 942 | |
Simon Wunderlich | cb1c92e | 2013-11-21 11:52:16 +0100 | [diff] [blame] | 943 | bat_priv->bat_algo_ops->bat_orig_print(bat_priv, seq, |
| 944 | BATADV_IF_DEFAULT); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 945 | |
Marek Lindner | 30da63a | 2012-08-03 17:15:46 +0200 | [diff] [blame] | 946 | return 0; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 947 | } |
| 948 | |
Simon Wunderlich | cb1c92e | 2013-11-21 11:52:16 +0100 | [diff] [blame] | 949 | /** |
| 950 | * batadv_orig_hardif_seq_print_text - writes originator infos for a specific |
| 951 | * outgoing interface |
| 952 | * @seq: debugfs table seq_file struct |
| 953 | * @offset: not used |
| 954 | * |
| 955 | * Returns 0 |
| 956 | */ |
| 957 | int batadv_orig_hardif_seq_print_text(struct seq_file *seq, void *offset) |
| 958 | { |
| 959 | struct net_device *net_dev = (struct net_device *)seq->private; |
| 960 | struct batadv_hard_iface *hard_iface; |
| 961 | struct batadv_priv *bat_priv; |
| 962 | |
| 963 | hard_iface = batadv_hardif_get_by_netdev(net_dev); |
| 964 | |
| 965 | if (!hard_iface || !hard_iface->soft_iface) { |
| 966 | seq_puts(seq, "Interface not known to B.A.T.M.A.N.\n"); |
| 967 | goto out; |
| 968 | } |
| 969 | |
| 970 | bat_priv = netdev_priv(hard_iface->soft_iface); |
| 971 | if (!bat_priv->bat_algo_ops->bat_orig_print) { |
| 972 | seq_puts(seq, |
| 973 | "No printing function for this routing protocol\n"); |
| 974 | goto out; |
| 975 | } |
| 976 | |
| 977 | if (hard_iface->if_status != BATADV_IF_ACTIVE) { |
| 978 | seq_puts(seq, "Interface not active\n"); |
| 979 | goto out; |
| 980 | } |
| 981 | |
| 982 | seq_printf(seq, "[B.A.T.M.A.N. adv %s, IF/MAC: %s/%pM (%s %s)]\n", |
| 983 | BATADV_SOURCE_VERSION, hard_iface->net_dev->name, |
| 984 | hard_iface->net_dev->dev_addr, |
| 985 | hard_iface->soft_iface->name, bat_priv->bat_algo_ops->name); |
| 986 | |
| 987 | bat_priv->bat_algo_ops->bat_orig_print(bat_priv, seq, hard_iface); |
| 988 | |
| 989 | out: |
| 990 | batadv_hardif_free_ref(hard_iface); |
| 991 | return 0; |
| 992 | } |
| 993 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 994 | int batadv_orig_hash_add_if(struct batadv_hard_iface *hard_iface, |
| 995 | int max_if_num) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 996 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 997 | struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface); |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 998 | struct batadv_algo_ops *bao = bat_priv->bat_algo_ops; |
Sven Eckelmann | 5bf74e9 | 2012-06-05 22:31:28 +0200 | [diff] [blame] | 999 | struct batadv_hashtable *hash = bat_priv->orig_hash; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1000 | struct hlist_head *head; |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 1001 | struct batadv_orig_node *orig_node; |
Antonio Quartulli | c90681b | 2011-10-05 17:05:25 +0200 | [diff] [blame] | 1002 | uint32_t i; |
| 1003 | int ret; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1004 | |
| 1005 | /* resize all orig nodes because orig_node->bcast_own(_sum) depend on |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 1006 | * if_num |
| 1007 | */ |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1008 | for (i = 0; i < hash->size; i++) { |
| 1009 | head = &hash->table[i]; |
| 1010 | |
Marek Lindner | fb778ea | 2011-01-19 20:01:40 +0000 | [diff] [blame] | 1011 | rcu_read_lock(); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1012 | hlist_for_each_entry_rcu(orig_node, head, hash_entry) { |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 1013 | ret = 0; |
| 1014 | if (bao->bat_orig_add_if) |
| 1015 | ret = bao->bat_orig_add_if(orig_node, |
| 1016 | max_if_num); |
Sven Eckelmann | 5346c35 | 2012-05-05 13:27:28 +0200 | [diff] [blame] | 1017 | if (ret == -ENOMEM) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1018 | goto err; |
| 1019 | } |
Marek Lindner | fb778ea | 2011-01-19 20:01:40 +0000 | [diff] [blame] | 1020 | rcu_read_unlock(); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1021 | } |
| 1022 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1023 | return 0; |
| 1024 | |
| 1025 | err: |
Marek Lindner | fb778ea | 2011-01-19 20:01:40 +0000 | [diff] [blame] | 1026 | rcu_read_unlock(); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1027 | return -ENOMEM; |
| 1028 | } |
| 1029 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 1030 | int batadv_orig_hash_del_if(struct batadv_hard_iface *hard_iface, |
| 1031 | int max_if_num) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1032 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 1033 | struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface); |
Sven Eckelmann | 5bf74e9 | 2012-06-05 22:31:28 +0200 | [diff] [blame] | 1034 | struct batadv_hashtable *hash = bat_priv->orig_hash; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1035 | struct hlist_head *head; |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 1036 | struct batadv_hard_iface *hard_iface_tmp; |
| 1037 | struct batadv_orig_node *orig_node; |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 1038 | struct batadv_algo_ops *bao = bat_priv->bat_algo_ops; |
Antonio Quartulli | c90681b | 2011-10-05 17:05:25 +0200 | [diff] [blame] | 1039 | uint32_t i; |
| 1040 | int ret; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1041 | |
| 1042 | /* resize all orig nodes because orig_node->bcast_own(_sum) depend on |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 1043 | * if_num |
| 1044 | */ |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1045 | for (i = 0; i < hash->size; i++) { |
| 1046 | head = &hash->table[i]; |
| 1047 | |
Marek Lindner | fb778ea | 2011-01-19 20:01:40 +0000 | [diff] [blame] | 1048 | rcu_read_lock(); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1049 | hlist_for_each_entry_rcu(orig_node, head, hash_entry) { |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 1050 | ret = 0; |
| 1051 | if (bao->bat_orig_del_if) |
| 1052 | ret = bao->bat_orig_del_if(orig_node, |
| 1053 | max_if_num, |
| 1054 | hard_iface->if_num); |
Sven Eckelmann | 5346c35 | 2012-05-05 13:27:28 +0200 | [diff] [blame] | 1055 | if (ret == -ENOMEM) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1056 | goto err; |
| 1057 | } |
Marek Lindner | fb778ea | 2011-01-19 20:01:40 +0000 | [diff] [blame] | 1058 | rcu_read_unlock(); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1059 | } |
| 1060 | |
| 1061 | /* renumber remaining batman interfaces _inside_ of orig_hash_lock */ |
| 1062 | rcu_read_lock(); |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 1063 | list_for_each_entry_rcu(hard_iface_tmp, &batadv_hardif_list, list) { |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 1064 | if (hard_iface_tmp->if_status == BATADV_IF_NOT_IN_USE) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1065 | continue; |
| 1066 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 1067 | if (hard_iface == hard_iface_tmp) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1068 | continue; |
| 1069 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 1070 | if (hard_iface->soft_iface != hard_iface_tmp->soft_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1071 | continue; |
| 1072 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 1073 | if (hard_iface_tmp->if_num > hard_iface->if_num) |
| 1074 | hard_iface_tmp->if_num--; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1075 | } |
| 1076 | rcu_read_unlock(); |
| 1077 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 1078 | hard_iface->if_num = -1; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1079 | return 0; |
| 1080 | |
| 1081 | err: |
Marek Lindner | fb778ea | 2011-01-19 20:01:40 +0000 | [diff] [blame] | 1082 | rcu_read_unlock(); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1083 | return -ENOMEM; |
| 1084 | } |