blob: 5b8fe32043dad807f8a17a12b0fa38a0a6fe94da [file] [log] [blame]
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001/*
Sven Eckelmann64afe352011-01-27 10:38:15 +01002 * Copyright (C) 2009-2011 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00003 *
4 * Marek Lindner, Simon Wunderlich
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301, USA
19 *
20 */
21
22/* increase the reference counter for this originator */
23
24#include "main.h"
25#include "originator.h"
26#include "hash.h"
27#include "translation-table.h"
28#include "routing.h"
29#include "gateway_client.h"
30#include "hard-interface.h"
31#include "unicast.h"
32#include "soft-interface.h"
33
34static void purge_orig(struct work_struct *work);
35
36static void start_purge_timer(struct bat_priv *bat_priv)
37{
38 INIT_DELAYED_WORK(&bat_priv->orig_work, purge_orig);
39 queue_delayed_work(bat_event_workqueue, &bat_priv->orig_work, 1 * HZ);
40}
41
42int originator_init(struct bat_priv *bat_priv)
43{
44 if (bat_priv->orig_hash)
45 return 1;
46
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000047 bat_priv->orig_hash = hash_new(1024);
48
49 if (!bat_priv->orig_hash)
50 goto err;
51
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000052 start_purge_timer(bat_priv);
53 return 1;
54
55err:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000056 return 0;
57}
58
Marek Lindnerf987ed62010-12-12 21:57:12 +000059static void neigh_node_free_rcu(struct rcu_head *rcu)
60{
61 struct neigh_node *neigh_node;
62
63 neigh_node = container_of(rcu, struct neigh_node, rcu);
Marek Lindner44524fc2011-02-10 14:33:53 +000064 kfree(neigh_node);
Marek Lindnerf987ed62010-12-12 21:57:12 +000065}
66
Marek Lindner44524fc2011-02-10 14:33:53 +000067void neigh_node_free_ref(struct neigh_node *neigh_node)
Simon Wunderlicha4c135c2011-01-19 20:01:43 +000068{
Marek Lindner44524fc2011-02-10 14:33:53 +000069 if (atomic_dec_and_test(&neigh_node->refcount))
70 call_rcu(&neigh_node->rcu, neigh_node_free_rcu);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +000071}
72
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000073/* increases the refcounter of a found router */
74struct neigh_node *orig_node_get_router(struct orig_node *orig_node)
75{
76 struct neigh_node *router;
77
78 rcu_read_lock();
79 router = rcu_dereference(orig_node->router);
80
81 if (router && !atomic_inc_not_zero(&router->refcount))
82 router = NULL;
83
84 rcu_read_unlock();
85 return router;
86}
87
Marek Lindnera8e7f4b2010-12-12 21:57:10 +000088struct neigh_node *create_neighbor(struct orig_node *orig_node,
89 struct orig_node *orig_neigh_node,
90 uint8_t *neigh,
Marek Lindnere6c10f42011-02-18 12:33:20 +000091 struct hard_iface *if_incoming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000092{
93 struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
94 struct neigh_node *neigh_node;
95
96 bat_dbg(DBG_BATMAN, bat_priv,
97 "Creating new last-hop neighbor of originator\n");
98
99 neigh_node = kzalloc(sizeof(struct neigh_node), GFP_ATOMIC);
100 if (!neigh_node)
101 return NULL;
102
Marek Lindner9591a792010-12-12 21:57:11 +0000103 INIT_HLIST_NODE(&neigh_node->list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000104 INIT_LIST_HEAD(&neigh_node->bonding_list);
Linus Lüssing68003902011-03-14 22:43:40 +0000105 spin_lock_init(&neigh_node->tq_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000106
107 memcpy(neigh_node->addr, neigh, ETH_ALEN);
108 neigh_node->orig_node = orig_neigh_node;
109 neigh_node->if_incoming = if_incoming;
Marek Lindner1605d0d2011-02-18 12:28:11 +0000110
111 /* extra reference for return */
112 atomic_set(&neigh_node->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000113
Marek Lindnerf987ed62010-12-12 21:57:12 +0000114 spin_lock_bh(&orig_node->neigh_list_lock);
115 hlist_add_head_rcu(&neigh_node->list, &orig_node->neigh_list);
116 spin_unlock_bh(&orig_node->neigh_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000117 return neigh_node;
118}
119
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000120static void orig_node_free_rcu(struct rcu_head *rcu)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000121{
Marek Lindner9591a792010-12-12 21:57:11 +0000122 struct hlist_node *node, *node_tmp;
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000123 struct neigh_node *neigh_node, *tmp_neigh_node;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000124 struct orig_node *orig_node;
125
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000126 orig_node = container_of(rcu, struct orig_node, rcu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000127
Marek Lindnerf987ed62010-12-12 21:57:12 +0000128 spin_lock_bh(&orig_node->neigh_list_lock);
129
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000130 /* 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);
Marek Lindner44524fc2011-02-10 14:33:53 +0000134 neigh_node_free_ref(neigh_node);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000135 }
136
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000137 /* for all neighbors towards this originator ... */
Marek Lindner9591a792010-12-12 21:57:11 +0000138 hlist_for_each_entry_safe(neigh_node, node, node_tmp,
139 &orig_node->neigh_list, list) {
Marek Lindnerf987ed62010-12-12 21:57:12 +0000140 hlist_del_rcu(&neigh_node->list);
Marek Lindner44524fc2011-02-10 14:33:53 +0000141 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000142 }
143
Marek Lindnerf987ed62010-12-12 21:57:12 +0000144 spin_unlock_bh(&orig_node->neigh_list_lock);
145
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000146 frag_list_free(&orig_node->frag_list);
Marek Lindner16b1aba2011-01-19 20:01:42 +0000147 hna_global_del_orig(orig_node->bat_priv, orig_node,
148 "originator timed out");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000149
150 kfree(orig_node->bcast_own);
151 kfree(orig_node->bcast_own_sum);
152 kfree(orig_node);
153}
154
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000155void orig_node_free_ref(struct orig_node *orig_node)
156{
157 if (atomic_dec_and_test(&orig_node->refcount))
158 call_rcu(&orig_node->rcu, orig_node_free_rcu);
159}
160
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000161void originator_free(struct bat_priv *bat_priv)
162{
Marek Lindner16b1aba2011-01-19 20:01:42 +0000163 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000164 struct hlist_node *node, *node_tmp;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000165 struct hlist_head *head;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000166 spinlock_t *list_lock; /* spinlock to protect write access */
167 struct orig_node *orig_node;
168 int i;
169
170 if (!hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000171 return;
172
173 cancel_delayed_work_sync(&bat_priv->orig_work);
174
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000175 bat_priv->orig_hash = NULL;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000176
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);
Marek Lindner7aadf882011-02-18 12:28:09 +0000182 hlist_for_each_entry_safe(orig_node, node, node_tmp,
183 head, hash_entry) {
Marek Lindner16b1aba2011-01-19 20:01:42 +0000184
Marek Lindner7aadf882011-02-18 12:28:09 +0000185 hlist_del_rcu(node);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000186 orig_node_free_ref(orig_node);
Marek Lindner16b1aba2011-01-19 20:01:42 +0000187 }
188 spin_unlock_bh(list_lock);
189 }
190
191 hash_destroy(hash);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000192}
193
194/* this function finds or creates an originator entry for the given
195 * address if it does not exits */
196struct orig_node *get_orig_node(struct bat_priv *bat_priv, uint8_t *addr)
197{
198 struct orig_node *orig_node;
199 int size;
200 int hash_added;
201
Marek Lindner7aadf882011-02-18 12:28:09 +0000202 orig_node = orig_hash_find(bat_priv, addr);
203 if (orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000204 return orig_node;
205
206 bat_dbg(DBG_BATMAN, bat_priv,
207 "Creating new originator: %pM\n", addr);
208
209 orig_node = kzalloc(sizeof(struct orig_node), GFP_ATOMIC);
210 if (!orig_node)
211 return NULL;
212
Marek Lindner9591a792010-12-12 21:57:11 +0000213 INIT_HLIST_HEAD(&orig_node->neigh_list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000214 INIT_LIST_HEAD(&orig_node->bond_list);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000215 spin_lock_init(&orig_node->ogm_cnt_lock);
Marek Lindnerf3e00082011-01-25 21:52:11 +0000216 spin_lock_init(&orig_node->bcast_seqno_lock);
Marek Lindnerf987ed62010-12-12 21:57:12 +0000217 spin_lock_init(&orig_node->neigh_list_lock);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000218
219 /* extra reference for return */
220 atomic_set(&orig_node->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000221
Marek Lindner16b1aba2011-01-19 20:01:42 +0000222 orig_node->bat_priv = bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000223 memcpy(orig_node->orig, addr, ETH_ALEN);
224 orig_node->router = NULL;
225 orig_node->hna_buff = NULL;
226 orig_node->bcast_seqno_reset = jiffies - 1
227 - msecs_to_jiffies(RESET_PROTECTION_MS);
228 orig_node->batman_seqno_reset = jiffies - 1
229 - msecs_to_jiffies(RESET_PROTECTION_MS);
230
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000231 atomic_set(&orig_node->bond_candidates, 0);
232
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000233 size = bat_priv->num_ifaces * sizeof(unsigned long) * NUM_WORDS;
234
235 orig_node->bcast_own = kzalloc(size, GFP_ATOMIC);
236 if (!orig_node->bcast_own)
237 goto free_orig_node;
238
239 size = bat_priv->num_ifaces * sizeof(uint8_t);
240 orig_node->bcast_own_sum = kzalloc(size, GFP_ATOMIC);
241
242 INIT_LIST_HEAD(&orig_node->frag_list);
243 orig_node->last_frag_packet = 0;
244
245 if (!orig_node->bcast_own_sum)
246 goto free_bcast_own;
247
Marek Lindner7aadf882011-02-18 12:28:09 +0000248 hash_added = hash_add(bat_priv->orig_hash, compare_orig,
249 choose_orig, orig_node, &orig_node->hash_entry);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000250 if (hash_added < 0)
251 goto free_bcast_own_sum;
252
253 return orig_node;
254free_bcast_own_sum:
255 kfree(orig_node->bcast_own_sum);
256free_bcast_own:
257 kfree(orig_node->bcast_own);
258free_orig_node:
259 kfree(orig_node);
260 return NULL;
261}
262
263static bool purge_orig_neighbors(struct bat_priv *bat_priv,
264 struct orig_node *orig_node,
265 struct neigh_node **best_neigh_node)
266{
Marek Lindner9591a792010-12-12 21:57:11 +0000267 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000268 struct neigh_node *neigh_node;
269 bool neigh_purged = false;
270
271 *best_neigh_node = NULL;
272
Marek Lindnerf987ed62010-12-12 21:57:12 +0000273 spin_lock_bh(&orig_node->neigh_list_lock);
274
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000275 /* for all neighbors towards this originator ... */
Marek Lindner9591a792010-12-12 21:57:11 +0000276 hlist_for_each_entry_safe(neigh_node, node, node_tmp,
277 &orig_node->neigh_list, list) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000278
279 if ((time_after(jiffies,
280 neigh_node->last_valid + PURGE_TIMEOUT * HZ)) ||
281 (neigh_node->if_incoming->if_status == IF_INACTIVE) ||
Marek Lindner1a241a52011-01-19 19:16:10 +0000282 (neigh_node->if_incoming->if_status == IF_NOT_IN_USE) ||
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000283 (neigh_node->if_incoming->if_status == IF_TO_BE_REMOVED)) {
284
Marek Lindner1a241a52011-01-19 19:16:10 +0000285 if ((neigh_node->if_incoming->if_status ==
286 IF_INACTIVE) ||
287 (neigh_node->if_incoming->if_status ==
288 IF_NOT_IN_USE) ||
289 (neigh_node->if_incoming->if_status ==
290 IF_TO_BE_REMOVED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000291 bat_dbg(DBG_BATMAN, bat_priv,
292 "neighbor purge: originator %pM, "
293 "neighbor: %pM, iface: %s\n",
294 orig_node->orig, neigh_node->addr,
295 neigh_node->if_incoming->net_dev->name);
296 else
297 bat_dbg(DBG_BATMAN, bat_priv,
298 "neighbor timeout: originator %pM, "
299 "neighbor: %pM, last_valid: %lu\n",
300 orig_node->orig, neigh_node->addr,
301 (neigh_node->last_valid / HZ));
302
303 neigh_purged = true;
Marek Lindner9591a792010-12-12 21:57:11 +0000304
Marek Lindnerf987ed62010-12-12 21:57:12 +0000305 hlist_del_rcu(&neigh_node->list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000306 bonding_candidate_del(orig_node, neigh_node);
Marek Lindner44524fc2011-02-10 14:33:53 +0000307 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000308 } else {
309 if ((!*best_neigh_node) ||
310 (neigh_node->tq_avg > (*best_neigh_node)->tq_avg))
311 *best_neigh_node = neigh_node;
312 }
313 }
Marek Lindnerf987ed62010-12-12 21:57:12 +0000314
315 spin_unlock_bh(&orig_node->neigh_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000316 return neigh_purged;
317}
318
319static bool purge_orig_node(struct bat_priv *bat_priv,
320 struct orig_node *orig_node)
321{
322 struct neigh_node *best_neigh_node;
323
324 if (time_after(jiffies,
325 orig_node->last_valid + 2 * PURGE_TIMEOUT * HZ)) {
326
327 bat_dbg(DBG_BATMAN, bat_priv,
328 "Originator timeout: originator %pM, last_valid %lu\n",
329 orig_node->orig, (orig_node->last_valid / HZ));
330 return true;
331 } else {
332 if (purge_orig_neighbors(bat_priv, orig_node,
333 &best_neigh_node)) {
334 update_routes(bat_priv, orig_node,
335 best_neigh_node,
336 orig_node->hna_buff,
337 orig_node->hna_buff_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000338 }
339 }
340
341 return false;
342}
343
344static void _purge_orig(struct bat_priv *bat_priv)
345{
346 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000347 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000348 struct hlist_head *head;
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000349 spinlock_t *list_lock; /* spinlock to protect write access */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000350 struct orig_node *orig_node;
351 int i;
352
353 if (!hash)
354 return;
355
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000356 /* for all origins... */
357 for (i = 0; i < hash->size; i++) {
358 head = &hash->table[i];
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000359 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000360
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000361 spin_lock_bh(list_lock);
Marek Lindner7aadf882011-02-18 12:28:09 +0000362 hlist_for_each_entry_safe(orig_node, node, node_tmp,
363 head, hash_entry) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000364 if (purge_orig_node(bat_priv, orig_node)) {
365 if (orig_node->gw_flags)
366 gw_node_delete(bat_priv, orig_node);
Marek Lindner7aadf882011-02-18 12:28:09 +0000367 hlist_del_rcu(node);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000368 orig_node_free_ref(orig_node);
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000369 continue;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000370 }
371
372 if (time_after(jiffies, orig_node->last_frag_packet +
373 msecs_to_jiffies(FRAG_TIMEOUT)))
374 frag_list_free(&orig_node->frag_list);
375 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000376 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000377 }
378
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000379 gw_node_purge(bat_priv);
380 gw_election(bat_priv);
381
382 softif_neigh_purge(bat_priv);
383}
384
385static void purge_orig(struct work_struct *work)
386{
387 struct delayed_work *delayed_work =
388 container_of(work, struct delayed_work, work);
389 struct bat_priv *bat_priv =
390 container_of(delayed_work, struct bat_priv, orig_work);
391
392 _purge_orig(bat_priv);
393 start_purge_timer(bat_priv);
394}
395
396void purge_orig_ref(struct bat_priv *bat_priv)
397{
398 _purge_orig(bat_priv);
399}
400
401int orig_seq_print_text(struct seq_file *seq, void *offset)
402{
403 struct net_device *net_dev = (struct net_device *)seq->private;
404 struct bat_priv *bat_priv = netdev_priv(net_dev);
405 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000406 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000407 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000408 struct orig_node *orig_node;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000409 struct neigh_node *neigh_node, *neigh_node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000410 int batman_count = 0;
411 int last_seen_secs;
412 int last_seen_msecs;
413 int i;
414
415 if ((!bat_priv->primary_if) ||
416 (bat_priv->primary_if->if_status != IF_ACTIVE)) {
417 if (!bat_priv->primary_if)
418 return seq_printf(seq, "BATMAN mesh %s disabled - "
419 "please specify interfaces to enable it\n",
420 net_dev->name);
421
422 return seq_printf(seq, "BATMAN mesh %s "
423 "disabled - primary interface not active\n",
424 net_dev->name);
425 }
426
427 seq_printf(seq, "[B.A.T.M.A.N. adv %s%s, MainIF/MAC: %s/%pM (%s)]\n",
428 SOURCE_VERSION, REVISION_VERSION_STR,
429 bat_priv->primary_if->net_dev->name,
430 bat_priv->primary_if->net_dev->dev_addr, net_dev->name);
431 seq_printf(seq, " %-15s %s (%s/%i) %17s [%10s]: %20s ...\n",
432 "Originator", "last-seen", "#", TQ_MAX_VALUE, "Nexthop",
433 "outgoingIF", "Potential nexthops");
434
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000435 for (i = 0; i < hash->size; i++) {
436 head = &hash->table[i];
437
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000438 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000439 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000440 neigh_node = orig_node_get_router(orig_node);
441 if (!neigh_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000442 continue;
443
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000444 if (neigh_node->tq_avg == 0)
445 goto next;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000446
447 last_seen_secs = jiffies_to_msecs(jiffies -
448 orig_node->last_valid) / 1000;
449 last_seen_msecs = jiffies_to_msecs(jiffies -
450 orig_node->last_valid) % 1000;
451
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000452 seq_printf(seq, "%pM %4i.%03is (%3i) %pM [%10s]:",
453 orig_node->orig, last_seen_secs,
454 last_seen_msecs, neigh_node->tq_avg,
455 neigh_node->addr,
456 neigh_node->if_incoming->net_dev->name);
457
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000458 hlist_for_each_entry_rcu(neigh_node_tmp, node_tmp,
Marek Lindnerf987ed62010-12-12 21:57:12 +0000459 &orig_node->neigh_list, list) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000460 seq_printf(seq, " %pM (%3i)",
461 neigh_node_tmp->addr,
462 neigh_node_tmp->tq_avg);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000463 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000464
465 seq_printf(seq, "\n");
466 batman_count++;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000467
468next:
469 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000470 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000471 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000472 }
473
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000474 if (batman_count == 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000475 seq_printf(seq, "No batman nodes in range ...\n");
476
477 return 0;
478}
479
480static int orig_node_add_if(struct orig_node *orig_node, int max_if_num)
481{
482 void *data_ptr;
483
484 data_ptr = kmalloc(max_if_num * sizeof(unsigned long) * NUM_WORDS,
485 GFP_ATOMIC);
486 if (!data_ptr) {
487 pr_err("Can't resize orig: out of memory\n");
488 return -1;
489 }
490
491 memcpy(data_ptr, orig_node->bcast_own,
492 (max_if_num - 1) * sizeof(unsigned long) * NUM_WORDS);
493 kfree(orig_node->bcast_own);
494 orig_node->bcast_own = data_ptr;
495
496 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
497 if (!data_ptr) {
498 pr_err("Can't resize orig: out of memory\n");
499 return -1;
500 }
501
502 memcpy(data_ptr, orig_node->bcast_own_sum,
503 (max_if_num - 1) * sizeof(uint8_t));
504 kfree(orig_node->bcast_own_sum);
505 orig_node->bcast_own_sum = data_ptr;
506
507 return 0;
508}
509
Marek Lindnere6c10f42011-02-18 12:33:20 +0000510int orig_hash_add_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000511{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000512 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000513 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000514 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000515 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000516 struct orig_node *orig_node;
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000517 int i, ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000518
519 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
520 * if_num */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000521 for (i = 0; i < hash->size; i++) {
522 head = &hash->table[i];
523
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000524 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000525 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000526 spin_lock_bh(&orig_node->ogm_cnt_lock);
527 ret = orig_node_add_if(orig_node, max_if_num);
528 spin_unlock_bh(&orig_node->ogm_cnt_lock);
529
530 if (ret == -1)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000531 goto err;
532 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000533 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000534 }
535
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000536 return 0;
537
538err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000539 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000540 return -ENOMEM;
541}
542
543static int orig_node_del_if(struct orig_node *orig_node,
544 int max_if_num, int del_if_num)
545{
546 void *data_ptr = NULL;
547 int chunk_size;
548
549 /* last interface was removed */
550 if (max_if_num == 0)
551 goto free_bcast_own;
552
553 chunk_size = sizeof(unsigned long) * NUM_WORDS;
554 data_ptr = kmalloc(max_if_num * chunk_size, GFP_ATOMIC);
555 if (!data_ptr) {
556 pr_err("Can't resize orig: out of memory\n");
557 return -1;
558 }
559
560 /* copy first part */
561 memcpy(data_ptr, orig_node->bcast_own, del_if_num * chunk_size);
562
563 /* copy second part */
564 memcpy(data_ptr + del_if_num * chunk_size,
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);
576 if (!data_ptr) {
577 pr_err("Can't resize orig: out of memory\n");
578 return -1;
579 }
580
581 memcpy(data_ptr, orig_node->bcast_own_sum,
582 del_if_num * sizeof(uint8_t));
583
584 memcpy(data_ptr + del_if_num * sizeof(uint8_t),
585 orig_node->bcast_own_sum + ((del_if_num + 1) * sizeof(uint8_t)),
586 (max_if_num - del_if_num) * sizeof(uint8_t));
587
588free_own_sum:
589 kfree(orig_node->bcast_own_sum);
590 orig_node->bcast_own_sum = data_ptr;
591
592 return 0;
593}
594
Marek Lindnere6c10f42011-02-18 12:33:20 +0000595int orig_hash_del_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000596{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000597 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000598 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000599 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000600 struct hlist_head *head;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000601 struct hard_iface *hard_iface_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000602 struct orig_node *orig_node;
603 int i, ret;
604
605 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
606 * if_num */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000607 for (i = 0; i < hash->size; i++) {
608 head = &hash->table[i];
609
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000610 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000611 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000612 spin_lock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000613 ret = orig_node_del_if(orig_node, max_if_num,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000614 hard_iface->if_num);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000615 spin_unlock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000616
617 if (ret == -1)
618 goto err;
619 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000620 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000621 }
622
623 /* renumber remaining batman interfaces _inside_ of orig_hash_lock */
624 rcu_read_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000625 list_for_each_entry_rcu(hard_iface_tmp, &hardif_list, list) {
626 if (hard_iface_tmp->if_status == IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000627 continue;
628
Marek Lindnere6c10f42011-02-18 12:33:20 +0000629 if (hard_iface == hard_iface_tmp)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000630 continue;
631
Marek Lindnere6c10f42011-02-18 12:33:20 +0000632 if (hard_iface->soft_iface != hard_iface_tmp->soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000633 continue;
634
Marek Lindnere6c10f42011-02-18 12:33:20 +0000635 if (hard_iface_tmp->if_num > hard_iface->if_num)
636 hard_iface_tmp->if_num--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000637 }
638 rcu_read_unlock();
639
Marek Lindnere6c10f42011-02-18 12:33:20 +0000640 hard_iface->if_num = -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000641 return 0;
642
643err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000644 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000645 return -ENOMEM;
646}