]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/batman-adv/originator.c
batman-adv: network coding - detect coding nodes and remove these after timeout
[mirror_ubuntu-bionic-kernel.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"
28#include "unicast.h"
29#include "soft-interface.h"
23721387 30#include "bridge_loop_avoidance.h"
d56b1705 31#include "network-coding.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 */
03fc7f86 39static int 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
56303d34 47int batadv_originator_init(struct batadv_priv *bat_priv)
c6c8fea2
SE
48{
49 if (bat_priv->orig_hash)
5346c35e 50 return 0;
c6c8fea2 51
1a8eaf07 52 bat_priv->orig_hash = batadv_hash_new(1024);
c6c8fea2
SE
53
54 if (!bat_priv->orig_hash)
55 goto err;
56
dec05074
AQ
57 batadv_hash_set_lock_class(bat_priv->orig_hash,
58 &batadv_orig_hash_lock_class_key);
59
72414442
AQ
60 INIT_DELAYED_WORK(&bat_priv->orig_work, batadv_purge_orig);
61 queue_delayed_work(batadv_event_workqueue,
62 &bat_priv->orig_work,
63 msecs_to_jiffies(BATADV_ORIG_WORK_PERIOD));
64
5346c35e 65 return 0;
c6c8fea2
SE
66
67err:
5346c35e 68 return -ENOMEM;
c6c8fea2
SE
69}
70
56303d34 71void batadv_neigh_node_free_ref(struct batadv_neigh_node *neigh_node)
a4c135c5 72{
44524fcd 73 if (atomic_dec_and_test(&neigh_node->refcount))
ae179ae4 74 kfree_rcu(neigh_node, rcu);
a4c135c5
SW
75}
76
e1a5382f 77/* increases the refcounter of a found router */
56303d34
SE
78struct batadv_neigh_node *
79batadv_orig_node_get_router(struct batadv_orig_node *orig_node)
e1a5382f 80{
56303d34 81 struct batadv_neigh_node *router;
e1a5382f
LL
82
83 rcu_read_lock();
84 router = rcu_dereference(orig_node->router);
85
86 if (router && !atomic_inc_not_zero(&router->refcount))
87 router = NULL;
88
89 rcu_read_unlock();
90 return router;
91}
92
56303d34
SE
93struct batadv_neigh_node *
94batadv_neigh_node_new(struct batadv_hard_iface *hard_iface,
95 const uint8_t *neigh_addr, uint32_t seqno)
c6c8fea2 96{
56303d34
SE
97 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
98 struct batadv_neigh_node *neigh_node;
c6c8fea2 99
704509b8 100 neigh_node = kzalloc(sizeof(*neigh_node), GFP_ATOMIC);
c6c8fea2 101 if (!neigh_node)
7ae8b285 102 goto out;
c6c8fea2 103
9591a79f 104 INIT_HLIST_NODE(&neigh_node->list);
c6c8fea2 105
7ae8b285 106 memcpy(neigh_node->addr, neigh_addr, ETH_ALEN);
e3b0d0de 107 spin_lock_init(&neigh_node->lq_update_lock);
1605d0d6
ML
108
109 /* extra reference for return */
110 atomic_set(&neigh_node->refcount, 2);
c6c8fea2 111
39c75a51 112 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf
SE
113 "Creating new neighbor %pM, initial seqno %d\n",
114 neigh_addr, seqno);
7ae8b285
ML
115
116out:
c6c8fea2
SE
117 return neigh_node;
118}
119
03fc7f86 120static void batadv_orig_node_free_rcu(struct rcu_head *rcu)
c6c8fea2 121{
b67bfe0d 122 struct hlist_node *node_tmp;
56303d34
SE
123 struct batadv_neigh_node *neigh_node, *tmp_neigh_node;
124 struct batadv_orig_node *orig_node;
16b1aba8 125
56303d34 126 orig_node = container_of(rcu, struct batadv_orig_node, rcu);
c6c8fea2 127
f987ed6e
ML
128 spin_lock_bh(&orig_node->neigh_list_lock);
129
a4c135c5
SW
130 /* for all bonding members ... */
131 list_for_each_entry_safe(neigh_node, tmp_neigh_node,
132 &orig_node->bond_list, bonding_list) {
133 list_del_rcu(&neigh_node->bonding_list);
7d211efc 134 batadv_neigh_node_free_ref(neigh_node);
a4c135c5
SW
135 }
136
c6c8fea2 137 /* for all neighbors towards this originator ... */
b67bfe0d 138 hlist_for_each_entry_safe(neigh_node, node_tmp,
9591a79f 139 &orig_node->neigh_list, list) {
f987ed6e 140 hlist_del_rcu(&neigh_node->list);
7d211efc 141 batadv_neigh_node_free_ref(neigh_node);
c6c8fea2
SE
142 }
143
f987ed6e
ML
144 spin_unlock_bh(&orig_node->neigh_list_lock);
145
d56b1705
MH
146 /* Free nc_nodes */
147 batadv_nc_purge_orig(orig_node->bat_priv, orig_node, NULL);
148
88ed1e77 149 batadv_frag_list_free(&orig_node->frag_list);
08c36d3e
SE
150 batadv_tt_global_del_orig(orig_node->bat_priv, orig_node,
151 "originator timed out");
c6c8fea2 152
a73105b8 153 kfree(orig_node->tt_buff);
c6c8fea2
SE
154 kfree(orig_node->bcast_own);
155 kfree(orig_node->bcast_own_sum);
156 kfree(orig_node);
157}
158
56303d34 159void batadv_orig_node_free_ref(struct batadv_orig_node *orig_node)
7b36e8ee
ML
160{
161 if (atomic_dec_and_test(&orig_node->refcount))
03fc7f86 162 call_rcu(&orig_node->rcu, batadv_orig_node_free_rcu);
7b36e8ee
ML
163}
164
56303d34 165void batadv_originator_free(struct batadv_priv *bat_priv)
c6c8fea2 166{
5bf74e9c 167 struct batadv_hashtable *hash = bat_priv->orig_hash;
b67bfe0d 168 struct hlist_node *node_tmp;
16b1aba8 169 struct hlist_head *head;
16b1aba8 170 spinlock_t *list_lock; /* spinlock to protect write access */
56303d34 171 struct batadv_orig_node *orig_node;
c90681b8 172 uint32_t i;
16b1aba8
ML
173
174 if (!hash)
c6c8fea2
SE
175 return;
176
177 cancel_delayed_work_sync(&bat_priv->orig_work);
178
c6c8fea2 179 bat_priv->orig_hash = NULL;
16b1aba8
ML
180
181 for (i = 0; i < hash->size; i++) {
182 head = &hash->table[i];
183 list_lock = &hash->list_locks[i];
184
185 spin_lock_bh(list_lock);
b67bfe0d 186 hlist_for_each_entry_safe(orig_node, node_tmp,
7aadf889 187 head, hash_entry) {
b67bfe0d 188 hlist_del_rcu(&orig_node->hash_entry);
7d211efc 189 batadv_orig_node_free_ref(orig_node);
16b1aba8
ML
190 }
191 spin_unlock_bh(list_lock);
192 }
193
1a8eaf07 194 batadv_hash_destroy(hash);
c6c8fea2
SE
195}
196
197/* this function finds or creates an originator entry for the given
9cfc7bd6
SE
198 * address if it does not exits
199 */
56303d34
SE
200struct batadv_orig_node *batadv_get_orig_node(struct batadv_priv *bat_priv,
201 const uint8_t *addr)
c6c8fea2 202{
56303d34 203 struct batadv_orig_node *orig_node;
c6c8fea2
SE
204 int size;
205 int hash_added;
42d0b044 206 unsigned long reset_time;
c6c8fea2 207
da641193 208 orig_node = batadv_orig_hash_find(bat_priv, addr);
7aadf889 209 if (orig_node)
c6c8fea2
SE
210 return orig_node;
211
39c75a51
SE
212 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
213 "Creating new originator: %pM\n", addr);
c6c8fea2 214
704509b8 215 orig_node = kzalloc(sizeof(*orig_node), GFP_ATOMIC);
c6c8fea2
SE
216 if (!orig_node)
217 return NULL;
218
9591a79f 219 INIT_HLIST_HEAD(&orig_node->neigh_list);
a4c135c5 220 INIT_LIST_HEAD(&orig_node->bond_list);
2ae2daf6 221 spin_lock_init(&orig_node->ogm_cnt_lock);
f3e0008f 222 spin_lock_init(&orig_node->bcast_seqno_lock);
f987ed6e 223 spin_lock_init(&orig_node->neigh_list_lock);
a73105b8 224 spin_lock_init(&orig_node->tt_buff_lock);
7b36e8ee 225
d56b1705
MH
226 batadv_nc_init_orig(orig_node);
227
7b36e8ee
ML
228 /* extra reference for return */
229 atomic_set(&orig_node->refcount, 2);
c6c8fea2 230
17071578 231 orig_node->tt_initialised = false;
16b1aba8 232 orig_node->bat_priv = bat_priv;
c6c8fea2 233 memcpy(orig_node->orig, addr, ETH_ALEN);
785ea114 234 batadv_dat_init_orig_node_addr(orig_node);
c6c8fea2 235 orig_node->router = NULL;
c8c991bf
AQ
236 orig_node->tt_crc = 0;
237 atomic_set(&orig_node->last_ttvn, 0);
2dafb49d 238 orig_node->tt_buff = NULL;
a73105b8
AQ
239 orig_node->tt_buff_len = 0;
240 atomic_set(&orig_node->tt_size, 0);
42d0b044
SE
241 reset_time = jiffies - 1 - msecs_to_jiffies(BATADV_RESET_PROTECTION_MS);
242 orig_node->bcast_seqno_reset = reset_time;
243 orig_node->batman_seqno_reset = reset_time;
c6c8fea2 244
a4c135c5
SW
245 atomic_set(&orig_node->bond_candidates, 0);
246
42d0b044 247 size = bat_priv->num_ifaces * sizeof(unsigned long) * BATADV_NUM_WORDS;
c6c8fea2
SE
248
249 orig_node->bcast_own = kzalloc(size, GFP_ATOMIC);
250 if (!orig_node->bcast_own)
251 goto free_orig_node;
252
253 size = bat_priv->num_ifaces * sizeof(uint8_t);
254 orig_node->bcast_own_sum = kzalloc(size, GFP_ATOMIC);
255
256 INIT_LIST_HEAD(&orig_node->frag_list);
257 orig_node->last_frag_packet = 0;
258
259 if (!orig_node->bcast_own_sum)
260 goto free_bcast_own;
261
03fc7f86 262 hash_added = batadv_hash_add(bat_priv->orig_hash, batadv_compare_orig,
da641193 263 batadv_choose_orig, orig_node,
c0a55929 264 &orig_node->hash_entry);
1a1f37d9 265 if (hash_added != 0)
c6c8fea2
SE
266 goto free_bcast_own_sum;
267
268 return orig_node;
269free_bcast_own_sum:
270 kfree(orig_node->bcast_own_sum);
271free_bcast_own:
272 kfree(orig_node->bcast_own);
273free_orig_node:
274 kfree(orig_node);
275 return NULL;
276}
277
56303d34
SE
278static bool
279batadv_purge_orig_neighbors(struct batadv_priv *bat_priv,
280 struct batadv_orig_node *orig_node,
281 struct batadv_neigh_node **best_neigh_node)
c6c8fea2 282{
b67bfe0d 283 struct hlist_node *node_tmp;
56303d34 284 struct batadv_neigh_node *neigh_node;
c6c8fea2 285 bool neigh_purged = false;
0b0094e0 286 unsigned long last_seen;
56303d34 287 struct batadv_hard_iface *if_incoming;
c6c8fea2
SE
288
289 *best_neigh_node = NULL;
290
f987ed6e
ML
291 spin_lock_bh(&orig_node->neigh_list_lock);
292
c6c8fea2 293 /* for all neighbors towards this originator ... */
b67bfe0d 294 hlist_for_each_entry_safe(neigh_node, node_tmp,
9591a79f 295 &orig_node->neigh_list, list) {
1eda58bf
SE
296 last_seen = neigh_node->last_seen;
297 if_incoming = neigh_node->if_incoming;
298
42d0b044 299 if ((batadv_has_timed_out(last_seen, BATADV_PURGE_TIMEOUT)) ||
e9a4f295
SE
300 (if_incoming->if_status == BATADV_IF_INACTIVE) ||
301 (if_incoming->if_status == BATADV_IF_NOT_IN_USE) ||
302 (if_incoming->if_status == BATADV_IF_TO_BE_REMOVED)) {
e9a4f295
SE
303 if ((if_incoming->if_status == BATADV_IF_INACTIVE) ||
304 (if_incoming->if_status == BATADV_IF_NOT_IN_USE) ||
305 (if_incoming->if_status == BATADV_IF_TO_BE_REMOVED))
39c75a51 306 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf
SE
307 "neighbor purge: originator %pM, neighbor: %pM, iface: %s\n",
308 orig_node->orig, neigh_node->addr,
309 if_incoming->net_dev->name);
c6c8fea2 310 else
39c75a51 311 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf
SE
312 "neighbor timeout: originator %pM, neighbor: %pM, last_seen: %u\n",
313 orig_node->orig, neigh_node->addr,
314 jiffies_to_msecs(last_seen));
c6c8fea2
SE
315
316 neigh_purged = true;
9591a79f 317
f987ed6e 318 hlist_del_rcu(&neigh_node->list);
30d3c511 319 batadv_bonding_candidate_del(orig_node, neigh_node);
7d211efc 320 batadv_neigh_node_free_ref(neigh_node);
c6c8fea2
SE
321 } else {
322 if ((!*best_neigh_node) ||
323 (neigh_node->tq_avg > (*best_neigh_node)->tq_avg))
324 *best_neigh_node = neigh_node;
325 }
326 }
f987ed6e
ML
327
328 spin_unlock_bh(&orig_node->neigh_list_lock);
c6c8fea2
SE
329 return neigh_purged;
330}
331
56303d34
SE
332static bool batadv_purge_orig_node(struct batadv_priv *bat_priv,
333 struct batadv_orig_node *orig_node)
c6c8fea2 334{
56303d34 335 struct batadv_neigh_node *best_neigh_node;
c6c8fea2 336
42d0b044
SE
337 if (batadv_has_timed_out(orig_node->last_seen,
338 2 * BATADV_PURGE_TIMEOUT)) {
39c75a51 339 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf
SE
340 "Originator timeout: originator %pM, last_seen %u\n",
341 orig_node->orig,
342 jiffies_to_msecs(orig_node->last_seen));
c6c8fea2
SE
343 return true;
344 } else {
03fc7f86
SE
345 if (batadv_purge_orig_neighbors(bat_priv, orig_node,
346 &best_neigh_node))
30d3c511
SE
347 batadv_update_route(bat_priv, orig_node,
348 best_neigh_node);
c6c8fea2
SE
349 }
350
351 return false;
352}
353
56303d34 354static void _batadv_purge_orig(struct batadv_priv *bat_priv)
c6c8fea2 355{
5bf74e9c 356 struct batadv_hashtable *hash = bat_priv->orig_hash;
b67bfe0d 357 struct hlist_node *node_tmp;
c6c8fea2 358 struct hlist_head *head;
fb778ea1 359 spinlock_t *list_lock; /* spinlock to protect write access */
56303d34 360 struct batadv_orig_node *orig_node;
c90681b8 361 uint32_t i;
c6c8fea2
SE
362
363 if (!hash)
364 return;
365
c6c8fea2
SE
366 /* for all origins... */
367 for (i = 0; i < hash->size; i++) {
368 head = &hash->table[i];
fb778ea1 369 list_lock = &hash->list_locks[i];
c6c8fea2 370
fb778ea1 371 spin_lock_bh(list_lock);
b67bfe0d 372 hlist_for_each_entry_safe(orig_node, node_tmp,
7aadf889 373 head, hash_entry) {
03fc7f86 374 if (batadv_purge_orig_node(bat_priv, orig_node)) {
c6c8fea2 375 if (orig_node->gw_flags)
7cf06bc6
SE
376 batadv_gw_node_delete(bat_priv,
377 orig_node);
b67bfe0d 378 hlist_del_rcu(&orig_node->hash_entry);
7d211efc 379 batadv_orig_node_free_ref(orig_node);
fb778ea1 380 continue;
c6c8fea2
SE
381 }
382
1eda58bf 383 if (batadv_has_timed_out(orig_node->last_frag_packet,
4d5d2db8 384 BATADV_FRAG_TIMEOUT))
88ed1e77 385 batadv_frag_list_free(&orig_node->frag_list);
c6c8fea2 386 }
fb778ea1 387 spin_unlock_bh(list_lock);
c6c8fea2
SE
388 }
389
7cf06bc6
SE
390 batadv_gw_node_purge(bat_priv);
391 batadv_gw_election(bat_priv);
c6c8fea2
SE
392}
393
03fc7f86 394static void batadv_purge_orig(struct work_struct *work)
c6c8fea2 395{
56303d34
SE
396 struct delayed_work *delayed_work;
397 struct batadv_priv *bat_priv;
c6c8fea2 398
56303d34
SE
399 delayed_work = container_of(work, struct delayed_work, work);
400 bat_priv = container_of(delayed_work, struct batadv_priv, orig_work);
03fc7f86 401 _batadv_purge_orig(bat_priv);
72414442
AQ
402 queue_delayed_work(batadv_event_workqueue,
403 &bat_priv->orig_work,
404 msecs_to_jiffies(BATADV_ORIG_WORK_PERIOD));
c6c8fea2
SE
405}
406
56303d34 407void batadv_purge_orig_ref(struct batadv_priv *bat_priv)
c6c8fea2 408{
03fc7f86 409 _batadv_purge_orig(bat_priv);
c6c8fea2
SE
410}
411
7d211efc 412int batadv_orig_seq_print_text(struct seq_file *seq, void *offset)
c6c8fea2
SE
413{
414 struct net_device *net_dev = (struct net_device *)seq->private;
56303d34 415 struct batadv_priv *bat_priv = netdev_priv(net_dev);
5bf74e9c 416 struct batadv_hashtable *hash = bat_priv->orig_hash;
c6c8fea2 417 struct hlist_head *head;
56303d34
SE
418 struct batadv_hard_iface *primary_if;
419 struct batadv_orig_node *orig_node;
420 struct batadv_neigh_node *neigh_node, *neigh_node_tmp;
c6c8fea2
SE
421 int batman_count = 0;
422 int last_seen_secs;
423 int last_seen_msecs;
0aca2369 424 unsigned long last_seen_jiffies;
c90681b8 425 uint32_t i;
32ae9b22 426
30da63a6
ML
427 primary_if = batadv_seq_print_text_primary_if_get(seq);
428 if (!primary_if)
32ae9b22 429 goto out;
c6c8fea2 430
44c4349a 431 seq_printf(seq, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s)]\n",
42d0b044 432 BATADV_SOURCE_VERSION, primary_if->net_dev->name,
32ae9b22 433 primary_if->net_dev->dev_addr, net_dev->name);
c6c8fea2 434 seq_printf(seq, " %-15s %s (%s/%i) %17s [%10s]: %20s ...\n",
42d0b044
SE
435 "Originator", "last-seen", "#", BATADV_TQ_MAX_VALUE,
436 "Nexthop", "outgoingIF", "Potential nexthops");
c6c8fea2 437
c6c8fea2
SE
438 for (i = 0; i < hash->size; i++) {
439 head = &hash->table[i];
440
fb778ea1 441 rcu_read_lock();
b67bfe0d 442 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
7d211efc 443 neigh_node = batadv_orig_node_get_router(orig_node);
e1a5382f 444 if (!neigh_node)
c6c8fea2
SE
445 continue;
446
e1a5382f
LL
447 if (neigh_node->tq_avg == 0)
448 goto next;
c6c8fea2 449
0aca2369
SE
450 last_seen_jiffies = jiffies - orig_node->last_seen;
451 last_seen_msecs = jiffies_to_msecs(last_seen_jiffies);
452 last_seen_secs = last_seen_msecs / 1000;
453 last_seen_msecs = last_seen_msecs % 1000;
c6c8fea2 454
c6c8fea2
SE
455 seq_printf(seq, "%pM %4i.%03is (%3i) %pM [%10s]:",
456 orig_node->orig, last_seen_secs,
457 last_seen_msecs, neigh_node->tq_avg,
458 neigh_node->addr,
459 neigh_node->if_incoming->net_dev->name);
460
b67bfe0d 461 hlist_for_each_entry_rcu(neigh_node_tmp,
f987ed6e 462 &orig_node->neigh_list, list) {
e1a5382f
LL
463 seq_printf(seq, " %pM (%3i)",
464 neigh_node_tmp->addr,
465 neigh_node_tmp->tq_avg);
c6c8fea2
SE
466 }
467
468 seq_printf(seq, "\n");
469 batman_count++;
e1a5382f
LL
470
471next:
7d211efc 472 batadv_neigh_node_free_ref(neigh_node);
c6c8fea2 473 }
fb778ea1 474 rcu_read_unlock();
c6c8fea2
SE
475 }
476
e1a5382f 477 if (batman_count == 0)
c6c8fea2
SE
478 seq_printf(seq, "No batman nodes in range ...\n");
479
32ae9b22
ML
480out:
481 if (primary_if)
e5d89254 482 batadv_hardif_free_ref(primary_if);
30da63a6 483 return 0;
c6c8fea2
SE
484}
485
56303d34
SE
486static int batadv_orig_node_add_if(struct batadv_orig_node *orig_node,
487 int max_if_num)
c6c8fea2
SE
488{
489 void *data_ptr;
42d0b044 490 size_t data_size, old_size;
c6c8fea2 491
42d0b044
SE
492 data_size = max_if_num * sizeof(unsigned long) * BATADV_NUM_WORDS;
493 old_size = (max_if_num - 1) * sizeof(unsigned long) * BATADV_NUM_WORDS;
494 data_ptr = kmalloc(data_size, GFP_ATOMIC);
320f422f 495 if (!data_ptr)
5346c35e 496 return -ENOMEM;
c6c8fea2 497
42d0b044 498 memcpy(data_ptr, orig_node->bcast_own, old_size);
c6c8fea2
SE
499 kfree(orig_node->bcast_own);
500 orig_node->bcast_own = data_ptr;
501
502 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
320f422f 503 if (!data_ptr)
5346c35e 504 return -ENOMEM;
c6c8fea2
SE
505
506 memcpy(data_ptr, orig_node->bcast_own_sum,
507 (max_if_num - 1) * sizeof(uint8_t));
508 kfree(orig_node->bcast_own_sum);
509 orig_node->bcast_own_sum = data_ptr;
510
511 return 0;
512}
513
56303d34
SE
514int batadv_orig_hash_add_if(struct batadv_hard_iface *hard_iface,
515 int max_if_num)
c6c8fea2 516{
56303d34 517 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
5bf74e9c 518 struct batadv_hashtable *hash = bat_priv->orig_hash;
c6c8fea2 519 struct hlist_head *head;
56303d34 520 struct batadv_orig_node *orig_node;
c90681b8
AQ
521 uint32_t i;
522 int ret;
c6c8fea2
SE
523
524 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
9cfc7bd6
SE
525 * if_num
526 */
c6c8fea2
SE
527 for (i = 0; i < hash->size; i++) {
528 head = &hash->table[i];
529
fb778ea1 530 rcu_read_lock();
b67bfe0d 531 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
2ae2daf6 532 spin_lock_bh(&orig_node->ogm_cnt_lock);
03fc7f86 533 ret = batadv_orig_node_add_if(orig_node, max_if_num);
2ae2daf6
ML
534 spin_unlock_bh(&orig_node->ogm_cnt_lock);
535
5346c35e 536 if (ret == -ENOMEM)
c6c8fea2
SE
537 goto err;
538 }
fb778ea1 539 rcu_read_unlock();
c6c8fea2
SE
540 }
541
c6c8fea2
SE
542 return 0;
543
544err:
fb778ea1 545 rcu_read_unlock();
c6c8fea2
SE
546 return -ENOMEM;
547}
548
56303d34 549static int batadv_orig_node_del_if(struct batadv_orig_node *orig_node,
03fc7f86 550 int max_if_num, int del_if_num)
c6c8fea2
SE
551{
552 void *data_ptr = NULL;
553 int chunk_size;
554
555 /* last interface was removed */
556 if (max_if_num == 0)
557 goto free_bcast_own;
558
42d0b044 559 chunk_size = sizeof(unsigned long) * BATADV_NUM_WORDS;
c6c8fea2 560 data_ptr = kmalloc(max_if_num * chunk_size, GFP_ATOMIC);
320f422f 561 if (!data_ptr)
5346c35e 562 return -ENOMEM;
c6c8fea2
SE
563
564 /* copy first part */
565 memcpy(data_ptr, orig_node->bcast_own, del_if_num * chunk_size);
566
567 /* copy second part */
38e3c5f0 568 memcpy((char *)data_ptr + del_if_num * chunk_size,
c6c8fea2
SE
569 orig_node->bcast_own + ((del_if_num + 1) * chunk_size),
570 (max_if_num - del_if_num) * chunk_size);
571
572free_bcast_own:
573 kfree(orig_node->bcast_own);
574 orig_node->bcast_own = data_ptr;
575
576 if (max_if_num == 0)
577 goto free_own_sum;
578
579 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
320f422f 580 if (!data_ptr)
5346c35e 581 return -ENOMEM;
c6c8fea2
SE
582
583 memcpy(data_ptr, orig_node->bcast_own_sum,
584 del_if_num * sizeof(uint8_t));
585
38e3c5f0 586 memcpy((char *)data_ptr + del_if_num * sizeof(uint8_t),
c6c8fea2
SE
587 orig_node->bcast_own_sum + ((del_if_num + 1) * sizeof(uint8_t)),
588 (max_if_num - del_if_num) * sizeof(uint8_t));
589
590free_own_sum:
591 kfree(orig_node->bcast_own_sum);
592 orig_node->bcast_own_sum = data_ptr;
593
594 return 0;
595}
596
56303d34
SE
597int batadv_orig_hash_del_if(struct batadv_hard_iface *hard_iface,
598 int max_if_num)
c6c8fea2 599{
56303d34 600 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
5bf74e9c 601 struct batadv_hashtable *hash = bat_priv->orig_hash;
c6c8fea2 602 struct hlist_head *head;
56303d34
SE
603 struct batadv_hard_iface *hard_iface_tmp;
604 struct batadv_orig_node *orig_node;
c90681b8
AQ
605 uint32_t i;
606 int ret;
c6c8fea2
SE
607
608 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
9cfc7bd6
SE
609 * if_num
610 */
c6c8fea2
SE
611 for (i = 0; i < hash->size; i++) {
612 head = &hash->table[i];
613
fb778ea1 614 rcu_read_lock();
b67bfe0d 615 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
2ae2daf6 616 spin_lock_bh(&orig_node->ogm_cnt_lock);
03fc7f86
SE
617 ret = batadv_orig_node_del_if(orig_node, max_if_num,
618 hard_iface->if_num);
2ae2daf6 619 spin_unlock_bh(&orig_node->ogm_cnt_lock);
c6c8fea2 620
5346c35e 621 if (ret == -ENOMEM)
c6c8fea2
SE
622 goto err;
623 }
fb778ea1 624 rcu_read_unlock();
c6c8fea2
SE
625 }
626
627 /* renumber remaining batman interfaces _inside_ of orig_hash_lock */
628 rcu_read_lock();
3193e8fd 629 list_for_each_entry_rcu(hard_iface_tmp, &batadv_hardif_list, list) {
e9a4f295 630 if (hard_iface_tmp->if_status == BATADV_IF_NOT_IN_USE)
c6c8fea2
SE
631 continue;
632
e6c10f43 633 if (hard_iface == hard_iface_tmp)
c6c8fea2
SE
634 continue;
635
e6c10f43 636 if (hard_iface->soft_iface != hard_iface_tmp->soft_iface)
c6c8fea2
SE
637 continue;
638
e6c10f43
ML
639 if (hard_iface_tmp->if_num > hard_iface->if_num)
640 hard_iface_tmp->if_num--;
c6c8fea2
SE
641 }
642 rcu_read_unlock();
643
e6c10f43 644 hard_iface->if_num = -1;
c6c8fea2
SE
645 return 0;
646
647err:
fb778ea1 648 rcu_read_unlock();
c6c8fea2
SE
649 return -ENOMEM;
650}