blob: b4cfe36861551bdde8439cc6812ba358ed360bed [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);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000105
106 memcpy(neigh_node->addr, neigh, ETH_ALEN);
107 neigh_node->orig_node = orig_neigh_node;
108 neigh_node->if_incoming = if_incoming;
Marek Lindner1605d0d2011-02-18 12:28:11 +0000109
110 /* extra reference for return */
111 atomic_set(&neigh_node->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000112
Marek Lindnerf987ed62010-12-12 21:57:12 +0000113 spin_lock_bh(&orig_node->neigh_list_lock);
114 hlist_add_head_rcu(&neigh_node->list, &orig_node->neigh_list);
115 spin_unlock_bh(&orig_node->neigh_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000116 return neigh_node;
117}
118
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000119static void orig_node_free_rcu(struct rcu_head *rcu)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000120{
Marek Lindner9591a792010-12-12 21:57:11 +0000121 struct hlist_node *node, *node_tmp;
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000122 struct neigh_node *neigh_node, *tmp_neigh_node;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000123 struct orig_node *orig_node;
124
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000125 orig_node = container_of(rcu, struct orig_node, rcu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000126
Marek Lindnerf987ed62010-12-12 21:57:12 +0000127 spin_lock_bh(&orig_node->neigh_list_lock);
128
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000129 /* 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);
Marek Lindner44524fc2011-02-10 14:33:53 +0000133 neigh_node_free_ref(neigh_node);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000134 }
135
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000136 /* for all neighbors towards this originator ... */
Marek Lindner9591a792010-12-12 21:57:11 +0000137 hlist_for_each_entry_safe(neigh_node, node, node_tmp,
138 &orig_node->neigh_list, list) {
Marek Lindnerf987ed62010-12-12 21:57:12 +0000139 hlist_del_rcu(&neigh_node->list);
Marek Lindner44524fc2011-02-10 14:33:53 +0000140 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000141 }
142
Marek Lindnerf987ed62010-12-12 21:57:12 +0000143 spin_unlock_bh(&orig_node->neigh_list_lock);
144
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000145 frag_list_free(&orig_node->frag_list);
Marek Lindner16b1aba2011-01-19 20:01:42 +0000146 hna_global_del_orig(orig_node->bat_priv, orig_node,
147 "originator timed out");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000148
149 kfree(orig_node->bcast_own);
150 kfree(orig_node->bcast_own_sum);
151 kfree(orig_node);
152}
153
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000154void orig_node_free_ref(struct orig_node *orig_node)
155{
156 if (atomic_dec_and_test(&orig_node->refcount))
157 call_rcu(&orig_node->rcu, orig_node_free_rcu);
158}
159
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000160void originator_free(struct bat_priv *bat_priv)
161{
Marek Lindner16b1aba2011-01-19 20:01:42 +0000162 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000163 struct hlist_node *node, *node_tmp;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000164 struct hlist_head *head;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000165 spinlock_t *list_lock; /* spinlock to protect write access */
166 struct orig_node *orig_node;
167 int i;
168
169 if (!hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000170 return;
171
172 cancel_delayed_work_sync(&bat_priv->orig_work);
173
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000174 bat_priv->orig_hash = NULL;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000175
176 for (i = 0; i < hash->size; i++) {
177 head = &hash->table[i];
178 list_lock = &hash->list_locks[i];
179
180 spin_lock_bh(list_lock);
Marek Lindner7aadf882011-02-18 12:28:09 +0000181 hlist_for_each_entry_safe(orig_node, node, node_tmp,
182 head, hash_entry) {
Marek Lindner16b1aba2011-01-19 20:01:42 +0000183
Marek Lindner7aadf882011-02-18 12:28:09 +0000184 hlist_del_rcu(node);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000185 orig_node_free_ref(orig_node);
Marek Lindner16b1aba2011-01-19 20:01:42 +0000186 }
187 spin_unlock_bh(list_lock);
188 }
189
190 hash_destroy(hash);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000191}
192
193/* this function finds or creates an originator entry for the given
194 * address if it does not exits */
195struct orig_node *get_orig_node(struct bat_priv *bat_priv, uint8_t *addr)
196{
197 struct orig_node *orig_node;
198 int size;
199 int hash_added;
200
Marek Lindner7aadf882011-02-18 12:28:09 +0000201 orig_node = orig_hash_find(bat_priv, addr);
202 if (orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000203 return orig_node;
204
205 bat_dbg(DBG_BATMAN, bat_priv,
206 "Creating new originator: %pM\n", addr);
207
208 orig_node = kzalloc(sizeof(struct orig_node), GFP_ATOMIC);
209 if (!orig_node)
210 return NULL;
211
Marek Lindner9591a792010-12-12 21:57:11 +0000212 INIT_HLIST_HEAD(&orig_node->neigh_list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000213 INIT_LIST_HEAD(&orig_node->bond_list);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000214 spin_lock_init(&orig_node->ogm_cnt_lock);
Marek Lindnerf3e00082011-01-25 21:52:11 +0000215 spin_lock_init(&orig_node->bcast_seqno_lock);
Marek Lindnerf987ed62010-12-12 21:57:12 +0000216 spin_lock_init(&orig_node->neigh_list_lock);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000217
218 /* extra reference for return */
219 atomic_set(&orig_node->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000220
Marek Lindner16b1aba2011-01-19 20:01:42 +0000221 orig_node->bat_priv = bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000222 memcpy(orig_node->orig, addr, ETH_ALEN);
223 orig_node->router = NULL;
224 orig_node->hna_buff = NULL;
225 orig_node->bcast_seqno_reset = jiffies - 1
226 - msecs_to_jiffies(RESET_PROTECTION_MS);
227 orig_node->batman_seqno_reset = jiffies - 1
228 - msecs_to_jiffies(RESET_PROTECTION_MS);
229
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000230 atomic_set(&orig_node->bond_candidates, 0);
231
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000232 size = bat_priv->num_ifaces * sizeof(unsigned long) * NUM_WORDS;
233
234 orig_node->bcast_own = kzalloc(size, GFP_ATOMIC);
235 if (!orig_node->bcast_own)
236 goto free_orig_node;
237
238 size = bat_priv->num_ifaces * sizeof(uint8_t);
239 orig_node->bcast_own_sum = kzalloc(size, GFP_ATOMIC);
240
241 INIT_LIST_HEAD(&orig_node->frag_list);
242 orig_node->last_frag_packet = 0;
243
244 if (!orig_node->bcast_own_sum)
245 goto free_bcast_own;
246
Marek Lindner7aadf882011-02-18 12:28:09 +0000247 hash_added = hash_add(bat_priv->orig_hash, compare_orig,
248 choose_orig, orig_node, &orig_node->hash_entry);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000249 if (hash_added < 0)
250 goto free_bcast_own_sum;
251
252 return orig_node;
253free_bcast_own_sum:
254 kfree(orig_node->bcast_own_sum);
255free_bcast_own:
256 kfree(orig_node->bcast_own);
257free_orig_node:
258 kfree(orig_node);
259 return NULL;
260}
261
262static bool purge_orig_neighbors(struct bat_priv *bat_priv,
263 struct orig_node *orig_node,
264 struct neigh_node **best_neigh_node)
265{
Marek Lindner9591a792010-12-12 21:57:11 +0000266 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000267 struct neigh_node *neigh_node;
268 bool neigh_purged = false;
269
270 *best_neigh_node = NULL;
271
Marek Lindnerf987ed62010-12-12 21:57:12 +0000272 spin_lock_bh(&orig_node->neigh_list_lock);
273
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000274 /* for all neighbors towards this originator ... */
Marek Lindner9591a792010-12-12 21:57:11 +0000275 hlist_for_each_entry_safe(neigh_node, node, node_tmp,
276 &orig_node->neigh_list, list) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000277
278 if ((time_after(jiffies,
279 neigh_node->last_valid + PURGE_TIMEOUT * HZ)) ||
280 (neigh_node->if_incoming->if_status == IF_INACTIVE) ||
Marek Lindner1a241a52011-01-19 19:16:10 +0000281 (neigh_node->if_incoming->if_status == IF_NOT_IN_USE) ||
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000282 (neigh_node->if_incoming->if_status == IF_TO_BE_REMOVED)) {
283
Marek Lindner1a241a52011-01-19 19:16:10 +0000284 if ((neigh_node->if_incoming->if_status ==
285 IF_INACTIVE) ||
286 (neigh_node->if_incoming->if_status ==
287 IF_NOT_IN_USE) ||
288 (neigh_node->if_incoming->if_status ==
289 IF_TO_BE_REMOVED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000290 bat_dbg(DBG_BATMAN, bat_priv,
291 "neighbor purge: originator %pM, "
292 "neighbor: %pM, iface: %s\n",
293 orig_node->orig, neigh_node->addr,
294 neigh_node->if_incoming->net_dev->name);
295 else
296 bat_dbg(DBG_BATMAN, bat_priv,
297 "neighbor timeout: originator %pM, "
298 "neighbor: %pM, last_valid: %lu\n",
299 orig_node->orig, neigh_node->addr,
300 (neigh_node->last_valid / HZ));
301
302 neigh_purged = true;
Marek Lindner9591a792010-12-12 21:57:11 +0000303
Marek Lindnerf987ed62010-12-12 21:57:12 +0000304 hlist_del_rcu(&neigh_node->list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000305 bonding_candidate_del(orig_node, neigh_node);
Marek Lindner44524fc2011-02-10 14:33:53 +0000306 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000307 } else {
308 if ((!*best_neigh_node) ||
309 (neigh_node->tq_avg > (*best_neigh_node)->tq_avg))
310 *best_neigh_node = neigh_node;
311 }
312 }
Marek Lindnerf987ed62010-12-12 21:57:12 +0000313
314 spin_unlock_bh(&orig_node->neigh_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000315 return neigh_purged;
316}
317
318static bool purge_orig_node(struct bat_priv *bat_priv,
319 struct orig_node *orig_node)
320{
321 struct neigh_node *best_neigh_node;
322
323 if (time_after(jiffies,
324 orig_node->last_valid + 2 * PURGE_TIMEOUT * HZ)) {
325
326 bat_dbg(DBG_BATMAN, bat_priv,
327 "Originator timeout: originator %pM, last_valid %lu\n",
328 orig_node->orig, (orig_node->last_valid / HZ));
329 return true;
330 } else {
331 if (purge_orig_neighbors(bat_priv, orig_node,
332 &best_neigh_node)) {
333 update_routes(bat_priv, orig_node,
334 best_neigh_node,
335 orig_node->hna_buff,
336 orig_node->hna_buff_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000337 }
338 }
339
340 return false;
341}
342
343static void _purge_orig(struct bat_priv *bat_priv)
344{
345 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000346 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000347 struct hlist_head *head;
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000348 spinlock_t *list_lock; /* spinlock to protect write access */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000349 struct orig_node *orig_node;
350 int i;
351
352 if (!hash)
353 return;
354
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000355 /* for all origins... */
356 for (i = 0; i < hash->size; i++) {
357 head = &hash->table[i];
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000358 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000359
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000360 spin_lock_bh(list_lock);
Marek Lindner7aadf882011-02-18 12:28:09 +0000361 hlist_for_each_entry_safe(orig_node, node, node_tmp,
362 head, hash_entry) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000363 if (purge_orig_node(bat_priv, orig_node)) {
364 if (orig_node->gw_flags)
365 gw_node_delete(bat_priv, orig_node);
Marek Lindner7aadf882011-02-18 12:28:09 +0000366 hlist_del_rcu(node);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000367 orig_node_free_ref(orig_node);
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000368 continue;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000369 }
370
371 if (time_after(jiffies, orig_node->last_frag_packet +
372 msecs_to_jiffies(FRAG_TIMEOUT)))
373 frag_list_free(&orig_node->frag_list);
374 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000375 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000376 }
377
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000378 gw_node_purge(bat_priv);
379 gw_election(bat_priv);
380
381 softif_neigh_purge(bat_priv);
382}
383
384static void purge_orig(struct work_struct *work)
385{
386 struct delayed_work *delayed_work =
387 container_of(work, struct delayed_work, work);
388 struct bat_priv *bat_priv =
389 container_of(delayed_work, struct bat_priv, orig_work);
390
391 _purge_orig(bat_priv);
392 start_purge_timer(bat_priv);
393}
394
395void purge_orig_ref(struct bat_priv *bat_priv)
396{
397 _purge_orig(bat_priv);
398}
399
400int orig_seq_print_text(struct seq_file *seq, void *offset)
401{
402 struct net_device *net_dev = (struct net_device *)seq->private;
403 struct bat_priv *bat_priv = netdev_priv(net_dev);
404 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000405 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000406 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000407 struct orig_node *orig_node;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000408 struct neigh_node *neigh_node, *neigh_node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000409 int batman_count = 0;
410 int last_seen_secs;
411 int last_seen_msecs;
412 int i;
413
414 if ((!bat_priv->primary_if) ||
415 (bat_priv->primary_if->if_status != IF_ACTIVE)) {
416 if (!bat_priv->primary_if)
417 return seq_printf(seq, "BATMAN mesh %s disabled - "
418 "please specify interfaces to enable it\n",
419 net_dev->name);
420
421 return seq_printf(seq, "BATMAN mesh %s "
422 "disabled - primary interface not active\n",
423 net_dev->name);
424 }
425
426 seq_printf(seq, "[B.A.T.M.A.N. adv %s%s, MainIF/MAC: %s/%pM (%s)]\n",
427 SOURCE_VERSION, REVISION_VERSION_STR,
428 bat_priv->primary_if->net_dev->name,
429 bat_priv->primary_if->net_dev->dev_addr, net_dev->name);
430 seq_printf(seq, " %-15s %s (%s/%i) %17s [%10s]: %20s ...\n",
431 "Originator", "last-seen", "#", TQ_MAX_VALUE, "Nexthop",
432 "outgoingIF", "Potential nexthops");
433
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000434 for (i = 0; i < hash->size; i++) {
435 head = &hash->table[i];
436
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000437 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000438 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000439 neigh_node = orig_node_get_router(orig_node);
440 if (!neigh_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000441 continue;
442
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000443 if (neigh_node->tq_avg == 0)
444 goto next;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000445
446 last_seen_secs = jiffies_to_msecs(jiffies -
447 orig_node->last_valid) / 1000;
448 last_seen_msecs = jiffies_to_msecs(jiffies -
449 orig_node->last_valid) % 1000;
450
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000451 seq_printf(seq, "%pM %4i.%03is (%3i) %pM [%10s]:",
452 orig_node->orig, last_seen_secs,
453 last_seen_msecs, neigh_node->tq_avg,
454 neigh_node->addr,
455 neigh_node->if_incoming->net_dev->name);
456
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000457 hlist_for_each_entry_rcu(neigh_node_tmp, node_tmp,
Marek Lindnerf987ed62010-12-12 21:57:12 +0000458 &orig_node->neigh_list, list) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000459 seq_printf(seq, " %pM (%3i)",
460 neigh_node_tmp->addr,
461 neigh_node_tmp->tq_avg);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000462 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000463
464 seq_printf(seq, "\n");
465 batman_count++;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000466
467next:
468 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000469 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000470 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000471 }
472
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000473 if (batman_count == 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000474 seq_printf(seq, "No batman nodes in range ...\n");
475
476 return 0;
477}
478
479static int orig_node_add_if(struct orig_node *orig_node, int max_if_num)
480{
481 void *data_ptr;
482
483 data_ptr = kmalloc(max_if_num * sizeof(unsigned long) * NUM_WORDS,
484 GFP_ATOMIC);
485 if (!data_ptr) {
486 pr_err("Can't resize orig: out of memory\n");
487 return -1;
488 }
489
490 memcpy(data_ptr, orig_node->bcast_own,
491 (max_if_num - 1) * sizeof(unsigned long) * NUM_WORDS);
492 kfree(orig_node->bcast_own);
493 orig_node->bcast_own = data_ptr;
494
495 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
496 if (!data_ptr) {
497 pr_err("Can't resize orig: out of memory\n");
498 return -1;
499 }
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
Marek Lindnere6c10f42011-02-18 12:33:20 +0000509int orig_hash_add_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000510{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000511 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000512 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000513 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000514 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000515 struct orig_node *orig_node;
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000516 int i, ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000517
518 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
519 * if_num */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000520 for (i = 0; i < hash->size; i++) {
521 head = &hash->table[i];
522
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000523 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000524 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000525 spin_lock_bh(&orig_node->ogm_cnt_lock);
526 ret = orig_node_add_if(orig_node, max_if_num);
527 spin_unlock_bh(&orig_node->ogm_cnt_lock);
528
529 if (ret == -1)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000530 goto err;
531 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000532 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000533 }
534
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000535 return 0;
536
537err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000538 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000539 return -ENOMEM;
540}
541
542static int orig_node_del_if(struct orig_node *orig_node,
543 int max_if_num, int del_if_num)
544{
545 void *data_ptr = NULL;
546 int chunk_size;
547
548 /* last interface was removed */
549 if (max_if_num == 0)
550 goto free_bcast_own;
551
552 chunk_size = sizeof(unsigned long) * NUM_WORDS;
553 data_ptr = kmalloc(max_if_num * chunk_size, GFP_ATOMIC);
554 if (!data_ptr) {
555 pr_err("Can't resize orig: out of memory\n");
556 return -1;
557 }
558
559 /* copy first part */
560 memcpy(data_ptr, orig_node->bcast_own, del_if_num * chunk_size);
561
562 /* copy second part */
563 memcpy(data_ptr + del_if_num * chunk_size,
564 orig_node->bcast_own + ((del_if_num + 1) * chunk_size),
565 (max_if_num - del_if_num) * chunk_size);
566
567free_bcast_own:
568 kfree(orig_node->bcast_own);
569 orig_node->bcast_own = data_ptr;
570
571 if (max_if_num == 0)
572 goto free_own_sum;
573
574 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
575 if (!data_ptr) {
576 pr_err("Can't resize orig: out of memory\n");
577 return -1;
578 }
579
580 memcpy(data_ptr, orig_node->bcast_own_sum,
581 del_if_num * sizeof(uint8_t));
582
583 memcpy(data_ptr + del_if_num * sizeof(uint8_t),
584 orig_node->bcast_own_sum + ((del_if_num + 1) * sizeof(uint8_t)),
585 (max_if_num - del_if_num) * sizeof(uint8_t));
586
587free_own_sum:
588 kfree(orig_node->bcast_own_sum);
589 orig_node->bcast_own_sum = data_ptr;
590
591 return 0;
592}
593
Marek Lindnere6c10f42011-02-18 12:33:20 +0000594int orig_hash_del_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000595{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000596 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000597 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000598 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000599 struct hlist_head *head;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000600 struct hard_iface *hard_iface_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000601 struct orig_node *orig_node;
602 int i, ret;
603
604 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
605 * if_num */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000606 for (i = 0; i < hash->size; i++) {
607 head = &hash->table[i];
608
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000609 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000610 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000611 spin_lock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000612 ret = orig_node_del_if(orig_node, max_if_num,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000613 hard_iface->if_num);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000614 spin_unlock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000615
616 if (ret == -1)
617 goto err;
618 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000619 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000620 }
621
622 /* renumber remaining batman interfaces _inside_ of orig_hash_lock */
623 rcu_read_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000624 list_for_each_entry_rcu(hard_iface_tmp, &hardif_list, list) {
625 if (hard_iface_tmp->if_status == IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000626 continue;
627
Marek Lindnere6c10f42011-02-18 12:33:20 +0000628 if (hard_iface == hard_iface_tmp)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000629 continue;
630
Marek Lindnere6c10f42011-02-18 12:33:20 +0000631 if (hard_iface->soft_iface != hard_iface_tmp->soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000632 continue;
633
Marek Lindnere6c10f42011-02-18 12:33:20 +0000634 if (hard_iface_tmp->if_num > hard_iface->if_num)
635 hard_iface_tmp->if_num--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000636 }
637 rcu_read_unlock();
638
Marek Lindnere6c10f42011-02-18 12:33:20 +0000639 hard_iface->if_num = -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000640 return 0;
641
642err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000643 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000644 return -ENOMEM;
645}