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