batman-adv: make struct batadv_orig_node algorithm agnostic
[linux-2.6-block.git] / net / batman-adv / originator.c
CommitLineData
0b873931 1/* Copyright (C) 2009-2013 B.A.T.M.A.N. contributors:
c6c8fea2
SE
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
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
c6c8fea2
SE
18 */
19
c6c8fea2 20#include "main.h"
785ea114 21#include "distributed-arp-table.h"
c6c8fea2
SE
22#include "originator.h"
23#include "hash.h"
24#include "translation-table.h"
25#include "routing.h"
26#include "gateway_client.h"
27#include "hard-interface.h"
c6c8fea2 28#include "soft-interface.h"
23721387 29#include "bridge_loop_avoidance.h"
d56b1705 30#include "network-coding.h"
610bfc6b 31#include "fragmentation.h"
c6c8fea2 32
dec05074
AQ
33/* hash class keys */
34static struct lock_class_key batadv_orig_hash_lock_class_key;
35
03fc7f86 36static void batadv_purge_orig(struct work_struct *work);
c6c8fea2 37
b8e2dd13 38/* returns 1 if they are the same originator */
bbad0a5e 39int batadv_compare_orig(const struct hlist_node *node, const void *data2)
b8e2dd13 40{
56303d34
SE
41 const void *data1 = container_of(node, struct batadv_orig_node,
42 hash_entry);
b8e2dd13
SE
43
44 return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0);
45}
46
7ea7b4a1
AQ
47/**
48 * batadv_orig_node_vlan_get - get an orig_node_vlan object
49 * @orig_node: the originator serving the VLAN
50 * @vid: the VLAN identifier
51 *
52 * Returns the vlan object identified by vid and belonging to orig_node or NULL
53 * if it does not exist.
54 */
55struct batadv_orig_node_vlan *
56batadv_orig_node_vlan_get(struct batadv_orig_node *orig_node,
57 unsigned short vid)
58{
59 struct batadv_orig_node_vlan *vlan = NULL, *tmp;
60
61 rcu_read_lock();
62 list_for_each_entry_rcu(tmp, &orig_node->vlan_list, list) {
63 if (tmp->vid != vid)
64 continue;
65
66 if (!atomic_inc_not_zero(&tmp->refcount))
67 continue;
68
69 vlan = tmp;
70
71 break;
72 }
73 rcu_read_unlock();
74
75 return vlan;
76}
77
78/**
79 * batadv_orig_node_vlan_new - search and possibly create an orig_node_vlan
80 * object
81 * @orig_node: the originator serving the VLAN
82 * @vid: the VLAN identifier
83 *
84 * Returns NULL in case of failure or the vlan object identified by vid and
85 * belonging to orig_node otherwise. The object is created and added to the list
86 * if it does not exist.
87 *
88 * The object is returned with refcounter increased by 1.
89 */
90struct batadv_orig_node_vlan *
91batadv_orig_node_vlan_new(struct batadv_orig_node *orig_node,
92 unsigned short vid)
93{
94 struct batadv_orig_node_vlan *vlan;
95
96 spin_lock_bh(&orig_node->vlan_list_lock);
97
98 /* first look if an object for this vid already exists */
99 vlan = batadv_orig_node_vlan_get(orig_node, vid);
100 if (vlan)
101 goto out;
102
103 vlan = kzalloc(sizeof(*vlan), GFP_ATOMIC);
104 if (!vlan)
105 goto out;
106
107 atomic_set(&vlan->refcount, 2);
108 vlan->vid = vid;
109
110 list_add_rcu(&vlan->list, &orig_node->vlan_list);
111
112out:
113 spin_unlock_bh(&orig_node->vlan_list_lock);
114
115 return vlan;
116}
117
118/**
119 * batadv_orig_node_vlan_free_ref - decrement the refcounter and possibly free
120 * the originator-vlan object
121 * @orig_vlan: the originator-vlan object to release
122 */
123void batadv_orig_node_vlan_free_ref(struct batadv_orig_node_vlan *orig_vlan)
124{
125 if (atomic_dec_and_test(&orig_vlan->refcount))
126 kfree_rcu(orig_vlan, rcu);
127}
128
56303d34 129int batadv_originator_init(struct batadv_priv *bat_priv)
c6c8fea2
SE
130{
131 if (bat_priv->orig_hash)
5346c35e 132 return 0;
c6c8fea2 133
1a8eaf07 134 bat_priv->orig_hash = batadv_hash_new(1024);
c6c8fea2
SE
135
136 if (!bat_priv->orig_hash)
137 goto err;
138
dec05074
AQ
139 batadv_hash_set_lock_class(bat_priv->orig_hash,
140 &batadv_orig_hash_lock_class_key);
141
72414442
AQ
142 INIT_DELAYED_WORK(&bat_priv->orig_work, batadv_purge_orig);
143 queue_delayed_work(batadv_event_workqueue,
144 &bat_priv->orig_work,
145 msecs_to_jiffies(BATADV_ORIG_WORK_PERIOD));
146
5346c35e 147 return 0;
c6c8fea2
SE
148
149err:
5346c35e 150 return -ENOMEM;
c6c8fea2
SE
151}
152
56303d34 153void batadv_neigh_node_free_ref(struct batadv_neigh_node *neigh_node)
a4c135c5 154{
44524fcd 155 if (atomic_dec_and_test(&neigh_node->refcount))
ae179ae4 156 kfree_rcu(neigh_node, rcu);
a4c135c5
SW
157}
158
e1a5382f 159/* increases the refcounter of a found router */
56303d34
SE
160struct batadv_neigh_node *
161batadv_orig_node_get_router(struct batadv_orig_node *orig_node)
e1a5382f 162{
56303d34 163 struct batadv_neigh_node *router;
e1a5382f
LL
164
165 rcu_read_lock();
166 router = rcu_dereference(orig_node->router);
167
168 if (router && !atomic_inc_not_zero(&router->refcount))
169 router = NULL;
170
171 rcu_read_unlock();
172 return router;
173}
174
0538f759
AQ
175/**
176 * batadv_neigh_node_new - create and init a new neigh_node object
177 * @hard_iface: the interface where the neighbour is connected to
178 * @neigh_addr: the mac address of the neighbour interface
179 * @orig_node: originator object representing the neighbour
180 *
181 * Allocates a new neigh_node object and initialises all the generic fields.
182 * Returns the new object or NULL on failure.
183 */
56303d34
SE
184struct batadv_neigh_node *
185batadv_neigh_node_new(struct batadv_hard_iface *hard_iface,
0538f759
AQ
186 const uint8_t *neigh_addr,
187 struct batadv_orig_node *orig_node)
c6c8fea2 188{
56303d34 189 struct batadv_neigh_node *neigh_node;
c6c8fea2 190
704509b8 191 neigh_node = kzalloc(sizeof(*neigh_node), GFP_ATOMIC);
c6c8fea2 192 if (!neigh_node)
7ae8b285 193 goto out;
c6c8fea2 194
9591a79f 195 INIT_HLIST_NODE(&neigh_node->list);
c6c8fea2 196
7ae8b285 197 memcpy(neigh_node->addr, neigh_addr, ETH_ALEN);
0538f759
AQ
198 neigh_node->if_incoming = hard_iface;
199 neigh_node->orig_node = orig_node;
200
201 INIT_LIST_HEAD(&neigh_node->bonding_list);
1605d0d6
ML
202
203 /* extra reference for return */
204 atomic_set(&neigh_node->refcount, 2);
c6c8fea2 205
7ae8b285 206out:
c6c8fea2
SE
207 return neigh_node;
208}
209
03fc7f86 210static void batadv_orig_node_free_rcu(struct rcu_head *rcu)
c6c8fea2 211{
b67bfe0d 212 struct hlist_node *node_tmp;
56303d34
SE
213 struct batadv_neigh_node *neigh_node, *tmp_neigh_node;
214 struct batadv_orig_node *orig_node;
16b1aba8 215
56303d34 216 orig_node = container_of(rcu, struct batadv_orig_node, rcu);
c6c8fea2 217
f987ed6e
ML
218 spin_lock_bh(&orig_node->neigh_list_lock);
219
a4c135c5
SW
220 /* for all bonding members ... */
221 list_for_each_entry_safe(neigh_node, tmp_neigh_node,
222 &orig_node->bond_list, bonding_list) {
223 list_del_rcu(&neigh_node->bonding_list);
7d211efc 224 batadv_neigh_node_free_ref(neigh_node);
a4c135c5
SW
225 }
226
c6c8fea2 227 /* for all neighbors towards this originator ... */
b67bfe0d 228 hlist_for_each_entry_safe(neigh_node, node_tmp,
9591a79f 229 &orig_node->neigh_list, list) {
f987ed6e 230 hlist_del_rcu(&neigh_node->list);
7d211efc 231 batadv_neigh_node_free_ref(neigh_node);
c6c8fea2
SE
232 }
233
f987ed6e
ML
234 spin_unlock_bh(&orig_node->neigh_list_lock);
235
d56b1705
MH
236 /* Free nc_nodes */
237 batadv_nc_purge_orig(orig_node->bat_priv, orig_node, NULL);
238
610bfc6b
MH
239 batadv_frag_purge_orig(orig_node, NULL);
240
95fb130d 241 batadv_tt_global_del_orig(orig_node->bat_priv, orig_node, -1,
08c36d3e 242 "originator timed out");
c6c8fea2 243
a73105b8 244 kfree(orig_node->tt_buff);
bbad0a5e
AQ
245 kfree(orig_node->bat_iv.bcast_own);
246 kfree(orig_node->bat_iv.bcast_own_sum);
c6c8fea2
SE
247 kfree(orig_node);
248}
249
72822225
LL
250/**
251 * batadv_orig_node_free_ref - decrement the orig node refcounter and possibly
252 * schedule an rcu callback for freeing it
253 * @orig_node: the orig node to free
254 */
56303d34 255void batadv_orig_node_free_ref(struct batadv_orig_node *orig_node)
7b36e8ee
ML
256{
257 if (atomic_dec_and_test(&orig_node->refcount))
03fc7f86 258 call_rcu(&orig_node->rcu, batadv_orig_node_free_rcu);
7b36e8ee
ML
259}
260
72822225
LL
261/**
262 * batadv_orig_node_free_ref_now - decrement the orig node refcounter and
263 * possibly free it (without rcu callback)
264 * @orig_node: the orig node to free
265 */
266void batadv_orig_node_free_ref_now(struct batadv_orig_node *orig_node)
267{
268 if (atomic_dec_and_test(&orig_node->refcount))
269 batadv_orig_node_free_rcu(&orig_node->rcu);
270}
271
56303d34 272void batadv_originator_free(struct batadv_priv *bat_priv)
c6c8fea2 273{
5bf74e9c 274 struct batadv_hashtable *hash = bat_priv->orig_hash;
b67bfe0d 275 struct hlist_node *node_tmp;
16b1aba8 276 struct hlist_head *head;
16b1aba8 277 spinlock_t *list_lock; /* spinlock to protect write access */
56303d34 278 struct batadv_orig_node *orig_node;
c90681b8 279 uint32_t i;
16b1aba8
ML
280
281 if (!hash)
c6c8fea2
SE
282 return;
283
284 cancel_delayed_work_sync(&bat_priv->orig_work);
285
c6c8fea2 286 bat_priv->orig_hash = NULL;
16b1aba8
ML
287
288 for (i = 0; i < hash->size; i++) {
289 head = &hash->table[i];
290 list_lock = &hash->list_locks[i];
291
292 spin_lock_bh(list_lock);
b67bfe0d 293 hlist_for_each_entry_safe(orig_node, node_tmp,
7aadf889 294 head, hash_entry) {
b67bfe0d 295 hlist_del_rcu(&orig_node->hash_entry);
7d211efc 296 batadv_orig_node_free_ref(orig_node);
16b1aba8
ML
297 }
298 spin_unlock_bh(list_lock);
299 }
300
1a8eaf07 301 batadv_hash_destroy(hash);
c6c8fea2
SE
302}
303
bbad0a5e
AQ
304/**
305 * batadv_orig_node_new - creates a new orig_node
306 * @bat_priv: the bat priv with all the soft interface information
307 * @addr: the mac address of the originator
308 *
309 * Creates a new originator object and initialise all the generic fields.
310 * The new object is not added to the originator list.
311 * Returns the newly created object or NULL on failure.
9cfc7bd6 312 */
bbad0a5e 313struct batadv_orig_node *batadv_orig_node_new(struct batadv_priv *bat_priv,
56303d34 314 const uint8_t *addr)
c6c8fea2 315{
56303d34 316 struct batadv_orig_node *orig_node;
7ea7b4a1 317 struct batadv_orig_node_vlan *vlan;
42d0b044 318 unsigned long reset_time;
bbad0a5e 319 int i;
c6c8fea2 320
39c75a51
SE
321 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
322 "Creating new originator: %pM\n", addr);
c6c8fea2 323
704509b8 324 orig_node = kzalloc(sizeof(*orig_node), GFP_ATOMIC);
c6c8fea2
SE
325 if (!orig_node)
326 return NULL;
327
9591a79f 328 INIT_HLIST_HEAD(&orig_node->neigh_list);
a4c135c5 329 INIT_LIST_HEAD(&orig_node->bond_list);
7ea7b4a1 330 INIT_LIST_HEAD(&orig_node->vlan_list);
f3e0008f 331 spin_lock_init(&orig_node->bcast_seqno_lock);
f987ed6e 332 spin_lock_init(&orig_node->neigh_list_lock);
a73105b8 333 spin_lock_init(&orig_node->tt_buff_lock);
a70a9aa9 334 spin_lock_init(&orig_node->tt_lock);
7ea7b4a1 335 spin_lock_init(&orig_node->vlan_list_lock);
7b36e8ee 336
d56b1705
MH
337 batadv_nc_init_orig(orig_node);
338
7b36e8ee
ML
339 /* extra reference for return */
340 atomic_set(&orig_node->refcount, 2);
c6c8fea2 341
17071578 342 orig_node->tt_initialised = false;
16b1aba8 343 orig_node->bat_priv = bat_priv;
c6c8fea2 344 memcpy(orig_node->orig, addr, ETH_ALEN);
785ea114 345 batadv_dat_init_orig_node_addr(orig_node);
c6c8fea2 346 orig_node->router = NULL;
c8c991bf 347 atomic_set(&orig_node->last_ttvn, 0);
2dafb49d 348 orig_node->tt_buff = NULL;
a73105b8 349 orig_node->tt_buff_len = 0;
42d0b044
SE
350 reset_time = jiffies - 1 - msecs_to_jiffies(BATADV_RESET_PROTECTION_MS);
351 orig_node->bcast_seqno_reset = reset_time;
352 orig_node->batman_seqno_reset = reset_time;
c6c8fea2 353
a4c135c5
SW
354 atomic_set(&orig_node->bond_candidates, 0);
355
7ea7b4a1
AQ
356 /* create a vlan object for the "untagged" LAN */
357 vlan = batadv_orig_node_vlan_new(orig_node, BATADV_NO_FLAGS);
358 if (!vlan)
359 goto free_orig_node;
360 /* batadv_orig_node_vlan_new() increases the refcounter.
361 * Immediately release vlan since it is not needed anymore in this
362 * context
363 */
364 batadv_orig_node_vlan_free_ref(vlan);
365
610bfc6b
MH
366 for (i = 0; i < BATADV_FRAG_BUFFER_COUNT; i++) {
367 INIT_HLIST_HEAD(&orig_node->fragments[i].head);
368 spin_lock_init(&orig_node->fragments[i].lock);
369 orig_node->fragments[i].size = 0;
370 }
371
c6c8fea2 372 return orig_node;
c6c8fea2
SE
373free_orig_node:
374 kfree(orig_node);
375 return NULL;
376}
377
56303d34
SE
378static bool
379batadv_purge_orig_neighbors(struct batadv_priv *bat_priv,
380 struct batadv_orig_node *orig_node,
381 struct batadv_neigh_node **best_neigh_node)
c6c8fea2 382{
b67bfe0d 383 struct hlist_node *node_tmp;
56303d34 384 struct batadv_neigh_node *neigh_node;
c6c8fea2 385 bool neigh_purged = false;
0b0094e0 386 unsigned long last_seen;
56303d34 387 struct batadv_hard_iface *if_incoming;
0538f759 388 uint8_t best_metric = 0;
c6c8fea2
SE
389
390 *best_neigh_node = NULL;
391
f987ed6e
ML
392 spin_lock_bh(&orig_node->neigh_list_lock);
393
c6c8fea2 394 /* for all neighbors towards this originator ... */
b67bfe0d 395 hlist_for_each_entry_safe(neigh_node, node_tmp,
9591a79f 396 &orig_node->neigh_list, list) {
1eda58bf
SE
397 last_seen = neigh_node->last_seen;
398 if_incoming = neigh_node->if_incoming;
399
42d0b044 400 if ((batadv_has_timed_out(last_seen, BATADV_PURGE_TIMEOUT)) ||
e9a4f295
SE
401 (if_incoming->if_status == BATADV_IF_INACTIVE) ||
402 (if_incoming->if_status == BATADV_IF_NOT_IN_USE) ||
403 (if_incoming->if_status == BATADV_IF_TO_BE_REMOVED)) {
e9a4f295
SE
404 if ((if_incoming->if_status == BATADV_IF_INACTIVE) ||
405 (if_incoming->if_status == BATADV_IF_NOT_IN_USE) ||
406 (if_incoming->if_status == BATADV_IF_TO_BE_REMOVED))
39c75a51 407 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf
SE
408 "neighbor purge: originator %pM, neighbor: %pM, iface: %s\n",
409 orig_node->orig, neigh_node->addr,
410 if_incoming->net_dev->name);
c6c8fea2 411 else
39c75a51 412 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf
SE
413 "neighbor timeout: originator %pM, neighbor: %pM, last_seen: %u\n",
414 orig_node->orig, neigh_node->addr,
415 jiffies_to_msecs(last_seen));
c6c8fea2
SE
416
417 neigh_purged = true;
9591a79f 418
f987ed6e 419 hlist_del_rcu(&neigh_node->list);
30d3c511 420 batadv_bonding_candidate_del(orig_node, neigh_node);
7d211efc 421 batadv_neigh_node_free_ref(neigh_node);
c6c8fea2
SE
422 } else {
423 if ((!*best_neigh_node) ||
0538f759 424 (neigh_node->bat_iv.tq_avg > best_metric)) {
c6c8fea2 425 *best_neigh_node = neigh_node;
0538f759
AQ
426 best_metric = neigh_node->bat_iv.tq_avg;
427 }
c6c8fea2
SE
428 }
429 }
f987ed6e
ML
430
431 spin_unlock_bh(&orig_node->neigh_list_lock);
c6c8fea2
SE
432 return neigh_purged;
433}
434
56303d34
SE
435static bool batadv_purge_orig_node(struct batadv_priv *bat_priv,
436 struct batadv_orig_node *orig_node)
c6c8fea2 437{
56303d34 438 struct batadv_neigh_node *best_neigh_node;
c6c8fea2 439
42d0b044
SE
440 if (batadv_has_timed_out(orig_node->last_seen,
441 2 * BATADV_PURGE_TIMEOUT)) {
39c75a51 442 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf
SE
443 "Originator timeout: originator %pM, last_seen %u\n",
444 orig_node->orig,
445 jiffies_to_msecs(orig_node->last_seen));
c6c8fea2
SE
446 return true;
447 } else {
03fc7f86
SE
448 if (batadv_purge_orig_neighbors(bat_priv, orig_node,
449 &best_neigh_node))
30d3c511
SE
450 batadv_update_route(bat_priv, orig_node,
451 best_neigh_node);
c6c8fea2
SE
452 }
453
454 return false;
455}
456
56303d34 457static void _batadv_purge_orig(struct batadv_priv *bat_priv)
c6c8fea2 458{
5bf74e9c 459 struct batadv_hashtable *hash = bat_priv->orig_hash;
b67bfe0d 460 struct hlist_node *node_tmp;
c6c8fea2 461 struct hlist_head *head;
fb778ea1 462 spinlock_t *list_lock; /* spinlock to protect write access */
56303d34 463 struct batadv_orig_node *orig_node;
c90681b8 464 uint32_t i;
c6c8fea2
SE
465
466 if (!hash)
467 return;
468
c6c8fea2
SE
469 /* for all origins... */
470 for (i = 0; i < hash->size; i++) {
471 head = &hash->table[i];
fb778ea1 472 list_lock = &hash->list_locks[i];
c6c8fea2 473
fb778ea1 474 spin_lock_bh(list_lock);
b67bfe0d 475 hlist_for_each_entry_safe(orig_node, node_tmp,
7aadf889 476 head, hash_entry) {
03fc7f86 477 if (batadv_purge_orig_node(bat_priv, orig_node)) {
414254e3 478 batadv_gw_node_delete(bat_priv, orig_node);
b67bfe0d 479 hlist_del_rcu(&orig_node->hash_entry);
7d211efc 480 batadv_orig_node_free_ref(orig_node);
fb778ea1 481 continue;
c6c8fea2 482 }
610bfc6b
MH
483
484 batadv_frag_purge_orig(orig_node,
485 batadv_frag_check_entry);
c6c8fea2 486 }
fb778ea1 487 spin_unlock_bh(list_lock);
c6c8fea2
SE
488 }
489
7cf06bc6
SE
490 batadv_gw_node_purge(bat_priv);
491 batadv_gw_election(bat_priv);
c6c8fea2
SE
492}
493
03fc7f86 494static void batadv_purge_orig(struct work_struct *work)
c6c8fea2 495{
56303d34
SE
496 struct delayed_work *delayed_work;
497 struct batadv_priv *bat_priv;
c6c8fea2 498
56303d34
SE
499 delayed_work = container_of(work, struct delayed_work, work);
500 bat_priv = container_of(delayed_work, struct batadv_priv, orig_work);
03fc7f86 501 _batadv_purge_orig(bat_priv);
72414442
AQ
502 queue_delayed_work(batadv_event_workqueue,
503 &bat_priv->orig_work,
504 msecs_to_jiffies(BATADV_ORIG_WORK_PERIOD));
c6c8fea2
SE
505}
506
56303d34 507void batadv_purge_orig_ref(struct batadv_priv *bat_priv)
c6c8fea2 508{
03fc7f86 509 _batadv_purge_orig(bat_priv);
c6c8fea2
SE
510}
511
7d211efc 512int batadv_orig_seq_print_text(struct seq_file *seq, void *offset)
c6c8fea2
SE
513{
514 struct net_device *net_dev = (struct net_device *)seq->private;
56303d34 515 struct batadv_priv *bat_priv = netdev_priv(net_dev);
5bf74e9c 516 struct batadv_hashtable *hash = bat_priv->orig_hash;
c6c8fea2 517 struct hlist_head *head;
56303d34
SE
518 struct batadv_hard_iface *primary_if;
519 struct batadv_orig_node *orig_node;
520 struct batadv_neigh_node *neigh_node, *neigh_node_tmp;
c6c8fea2
SE
521 int batman_count = 0;
522 int last_seen_secs;
523 int last_seen_msecs;
0aca2369 524 unsigned long last_seen_jiffies;
c90681b8 525 uint32_t i;
32ae9b22 526
30da63a6
ML
527 primary_if = batadv_seq_print_text_primary_if_get(seq);
528 if (!primary_if)
32ae9b22 529 goto out;
c6c8fea2 530
44c4349a 531 seq_printf(seq, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s)]\n",
42d0b044 532 BATADV_SOURCE_VERSION, primary_if->net_dev->name,
32ae9b22 533 primary_if->net_dev->dev_addr, net_dev->name);
c6c8fea2 534 seq_printf(seq, " %-15s %s (%s/%i) %17s [%10s]: %20s ...\n",
42d0b044
SE
535 "Originator", "last-seen", "#", BATADV_TQ_MAX_VALUE,
536 "Nexthop", "outgoingIF", "Potential nexthops");
c6c8fea2 537
c6c8fea2
SE
538 for (i = 0; i < hash->size; i++) {
539 head = &hash->table[i];
540
fb778ea1 541 rcu_read_lock();
b67bfe0d 542 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
7d211efc 543 neigh_node = batadv_orig_node_get_router(orig_node);
e1a5382f 544 if (!neigh_node)
c6c8fea2
SE
545 continue;
546
0538f759 547 if (neigh_node->bat_iv.tq_avg == 0)
e1a5382f 548 goto next;
c6c8fea2 549
0aca2369
SE
550 last_seen_jiffies = jiffies - orig_node->last_seen;
551 last_seen_msecs = jiffies_to_msecs(last_seen_jiffies);
552 last_seen_secs = last_seen_msecs / 1000;
553 last_seen_msecs = last_seen_msecs % 1000;
c6c8fea2 554
c6c8fea2
SE
555 seq_printf(seq, "%pM %4i.%03is (%3i) %pM [%10s]:",
556 orig_node->orig, last_seen_secs,
0538f759 557 last_seen_msecs, neigh_node->bat_iv.tq_avg,
c6c8fea2
SE
558 neigh_node->addr,
559 neigh_node->if_incoming->net_dev->name);
560
b67bfe0d 561 hlist_for_each_entry_rcu(neigh_node_tmp,
f987ed6e 562 &orig_node->neigh_list, list) {
e1a5382f
LL
563 seq_printf(seq, " %pM (%3i)",
564 neigh_node_tmp->addr,
0538f759 565 neigh_node_tmp->bat_iv.tq_avg);
c6c8fea2
SE
566 }
567
0c814653 568 seq_puts(seq, "\n");
c6c8fea2 569 batman_count++;
e1a5382f
LL
570
571next:
7d211efc 572 batadv_neigh_node_free_ref(neigh_node);
c6c8fea2 573 }
fb778ea1 574 rcu_read_unlock();
c6c8fea2
SE
575 }
576
e1a5382f 577 if (batman_count == 0)
0c814653 578 seq_puts(seq, "No batman nodes in range ...\n");
c6c8fea2 579
32ae9b22
ML
580out:
581 if (primary_if)
e5d89254 582 batadv_hardif_free_ref(primary_if);
30da63a6 583 return 0;
c6c8fea2
SE
584}
585
56303d34
SE
586static int batadv_orig_node_add_if(struct batadv_orig_node *orig_node,
587 int max_if_num)
c6c8fea2
SE
588{
589 void *data_ptr;
42d0b044 590 size_t data_size, old_size;
c6c8fea2 591
42d0b044
SE
592 data_size = max_if_num * sizeof(unsigned long) * BATADV_NUM_WORDS;
593 old_size = (max_if_num - 1) * sizeof(unsigned long) * BATADV_NUM_WORDS;
594 data_ptr = kmalloc(data_size, GFP_ATOMIC);
320f422f 595 if (!data_ptr)
5346c35e 596 return -ENOMEM;
c6c8fea2 597
bbad0a5e
AQ
598 memcpy(data_ptr, orig_node->bat_iv.bcast_own, old_size);
599 kfree(orig_node->bat_iv.bcast_own);
600 orig_node->bat_iv.bcast_own = data_ptr;
c6c8fea2
SE
601
602 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
320f422f 603 if (!data_ptr)
5346c35e 604 return -ENOMEM;
c6c8fea2 605
bbad0a5e 606 memcpy(data_ptr, orig_node->bat_iv.bcast_own_sum,
c6c8fea2 607 (max_if_num - 1) * sizeof(uint8_t));
bbad0a5e
AQ
608 kfree(orig_node->bat_iv.bcast_own_sum);
609 orig_node->bat_iv.bcast_own_sum = data_ptr;
c6c8fea2
SE
610
611 return 0;
612}
613
56303d34
SE
614int batadv_orig_hash_add_if(struct batadv_hard_iface *hard_iface,
615 int max_if_num)
c6c8fea2 616{
56303d34 617 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
5bf74e9c 618 struct batadv_hashtable *hash = bat_priv->orig_hash;
c6c8fea2 619 struct hlist_head *head;
56303d34 620 struct batadv_orig_node *orig_node;
c90681b8
AQ
621 uint32_t i;
622 int ret;
c6c8fea2
SE
623
624 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
9cfc7bd6
SE
625 * if_num
626 */
c6c8fea2
SE
627 for (i = 0; i < hash->size; i++) {
628 head = &hash->table[i];
629
fb778ea1 630 rcu_read_lock();
b67bfe0d 631 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
bbad0a5e 632 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
03fc7f86 633 ret = batadv_orig_node_add_if(orig_node, max_if_num);
bbad0a5e 634 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
2ae2daf6 635
5346c35e 636 if (ret == -ENOMEM)
c6c8fea2
SE
637 goto err;
638 }
fb778ea1 639 rcu_read_unlock();
c6c8fea2
SE
640 }
641
c6c8fea2
SE
642 return 0;
643
644err:
fb778ea1 645 rcu_read_unlock();
c6c8fea2
SE
646 return -ENOMEM;
647}
648
56303d34 649static int batadv_orig_node_del_if(struct batadv_orig_node *orig_node,
03fc7f86 650 int max_if_num, int del_if_num)
c6c8fea2 651{
bbad0a5e 652 int chunk_size, if_offset;
c6c8fea2 653 void *data_ptr = NULL;
c6c8fea2
SE
654
655 /* last interface was removed */
656 if (max_if_num == 0)
657 goto free_bcast_own;
658
42d0b044 659 chunk_size = sizeof(unsigned long) * BATADV_NUM_WORDS;
c6c8fea2 660 data_ptr = kmalloc(max_if_num * chunk_size, GFP_ATOMIC);
320f422f 661 if (!data_ptr)
5346c35e 662 return -ENOMEM;
c6c8fea2
SE
663
664 /* copy first part */
bbad0a5e 665 memcpy(data_ptr, orig_node->bat_iv.bcast_own, del_if_num * chunk_size);
c6c8fea2
SE
666
667 /* copy second part */
38e3c5f0 668 memcpy((char *)data_ptr + del_if_num * chunk_size,
bbad0a5e 669 orig_node->bat_iv.bcast_own + ((del_if_num + 1) * chunk_size),
c6c8fea2
SE
670 (max_if_num - del_if_num) * chunk_size);
671
672free_bcast_own:
bbad0a5e
AQ
673 kfree(orig_node->bat_iv.bcast_own);
674 orig_node->bat_iv.bcast_own = data_ptr;
c6c8fea2
SE
675
676 if (max_if_num == 0)
677 goto free_own_sum;
678
679 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
320f422f 680 if (!data_ptr)
5346c35e 681 return -ENOMEM;
c6c8fea2 682
bbad0a5e 683 memcpy(data_ptr, orig_node->bat_iv.bcast_own_sum,
c6c8fea2
SE
684 del_if_num * sizeof(uint8_t));
685
bbad0a5e 686 if_offset = (del_if_num + 1) * sizeof(uint8_t);
38e3c5f0 687 memcpy((char *)data_ptr + del_if_num * sizeof(uint8_t),
bbad0a5e 688 orig_node->bat_iv.bcast_own_sum + if_offset,
c6c8fea2
SE
689 (max_if_num - del_if_num) * sizeof(uint8_t));
690
691free_own_sum:
bbad0a5e
AQ
692 kfree(orig_node->bat_iv.bcast_own_sum);
693 orig_node->bat_iv.bcast_own_sum = data_ptr;
c6c8fea2
SE
694
695 return 0;
696}
697
56303d34
SE
698int batadv_orig_hash_del_if(struct batadv_hard_iface *hard_iface,
699 int max_if_num)
c6c8fea2 700{
56303d34 701 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
5bf74e9c 702 struct batadv_hashtable *hash = bat_priv->orig_hash;
c6c8fea2 703 struct hlist_head *head;
56303d34
SE
704 struct batadv_hard_iface *hard_iface_tmp;
705 struct batadv_orig_node *orig_node;
c90681b8
AQ
706 uint32_t i;
707 int ret;
c6c8fea2
SE
708
709 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
9cfc7bd6
SE
710 * if_num
711 */
c6c8fea2
SE
712 for (i = 0; i < hash->size; i++) {
713 head = &hash->table[i];
714
fb778ea1 715 rcu_read_lock();
b67bfe0d 716 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
bbad0a5e 717 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
03fc7f86
SE
718 ret = batadv_orig_node_del_if(orig_node, max_if_num,
719 hard_iface->if_num);
bbad0a5e 720 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
c6c8fea2 721
5346c35e 722 if (ret == -ENOMEM)
c6c8fea2
SE
723 goto err;
724 }
fb778ea1 725 rcu_read_unlock();
c6c8fea2
SE
726 }
727
728 /* renumber remaining batman interfaces _inside_ of orig_hash_lock */
729 rcu_read_lock();
3193e8fd 730 list_for_each_entry_rcu(hard_iface_tmp, &batadv_hardif_list, list) {
e9a4f295 731 if (hard_iface_tmp->if_status == BATADV_IF_NOT_IN_USE)
c6c8fea2
SE
732 continue;
733
e6c10f43 734 if (hard_iface == hard_iface_tmp)
c6c8fea2
SE
735 continue;
736
e6c10f43 737 if (hard_iface->soft_iface != hard_iface_tmp->soft_iface)
c6c8fea2
SE
738 continue;
739
e6c10f43
ML
740 if (hard_iface_tmp->if_num > hard_iface->if_num)
741 hard_iface_tmp->if_num--;
c6c8fea2
SE
742 }
743 rcu_read_unlock();
744
e6c10f43 745 hard_iface->if_num = -1;
c6c8fea2
SE
746 return 0;
747
748err:
fb778ea1 749 rcu_read_unlock();
c6c8fea2
SE
750 return -ENOMEM;
751}