blob: 3ea997deb112d45ed7c522854beba82dd473482a [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
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000022#include "main.h"
23#include "originator.h"
24#include "hash.h"
25#include "translation-table.h"
26#include "routing.h"
27#include "gateway_client.h"
28#include "hard-interface.h"
29#include "unicast.h"
30#include "soft-interface.h"
31
32static void purge_orig(struct work_struct *work);
33
34static void start_purge_timer(struct bat_priv *bat_priv)
35{
36 INIT_DELAYED_WORK(&bat_priv->orig_work, purge_orig);
37 queue_delayed_work(bat_event_workqueue, &bat_priv->orig_work, 1 * HZ);
38}
39
40int originator_init(struct bat_priv *bat_priv)
41{
42 if (bat_priv->orig_hash)
43 return 1;
44
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000045 bat_priv->orig_hash = hash_new(1024);
46
47 if (!bat_priv->orig_hash)
48 goto err;
49
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000050 start_purge_timer(bat_priv);
51 return 1;
52
53err:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000054 return 0;
55}
56
Marek Lindner44524fc2011-02-10 14:33:53 +000057void neigh_node_free_ref(struct neigh_node *neigh_node)
Simon Wunderlicha4c135c2011-01-19 20:01:43 +000058{
Marek Lindner44524fc2011-02-10 14:33:53 +000059 if (atomic_dec_and_test(&neigh_node->refcount))
Paul E. McKenneyae179ae2011-05-01 23:27:50 -070060 kfree_rcu(neigh_node, rcu);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +000061}
62
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000063/* increases the refcounter of a found router */
64struct neigh_node *orig_node_get_router(struct orig_node *orig_node)
65{
66 struct neigh_node *router;
67
68 rcu_read_lock();
69 router = rcu_dereference(orig_node->router);
70
71 if (router && !atomic_inc_not_zero(&router->refcount))
72 router = NULL;
73
74 rcu_read_unlock();
75 return router;
76}
77
Marek Lindnera8e7f4b2010-12-12 21:57:10 +000078struct neigh_node *create_neighbor(struct orig_node *orig_node,
79 struct orig_node *orig_neigh_node,
Sven Eckelmann747e4222011-05-14 23:14:50 +020080 const uint8_t *neigh,
Marek Lindnere6c10f42011-02-18 12:33:20 +000081 struct hard_iface *if_incoming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000082{
83 struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
84 struct neigh_node *neigh_node;
85
86 bat_dbg(DBG_BATMAN, bat_priv,
87 "Creating new last-hop neighbor of originator\n");
88
89 neigh_node = kzalloc(sizeof(struct neigh_node), GFP_ATOMIC);
90 if (!neigh_node)
91 return NULL;
92
Marek Lindner9591a792010-12-12 21:57:11 +000093 INIT_HLIST_NODE(&neigh_node->list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +000094 INIT_LIST_HEAD(&neigh_node->bonding_list);
Linus Lüssing68003902011-03-14 22:43:40 +000095 spin_lock_init(&neigh_node->tq_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000096
97 memcpy(neigh_node->addr, neigh, ETH_ALEN);
98 neigh_node->orig_node = orig_neigh_node;
99 neigh_node->if_incoming = if_incoming;
Marek Lindner1605d0d2011-02-18 12:28:11 +0000100
101 /* extra reference for return */
102 atomic_set(&neigh_node->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000103
Marek Lindnerf987ed62010-12-12 21:57:12 +0000104 spin_lock_bh(&orig_node->neigh_list_lock);
105 hlist_add_head_rcu(&neigh_node->list, &orig_node->neigh_list);
106 spin_unlock_bh(&orig_node->neigh_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000107 return neigh_node;
108}
109
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000110static void orig_node_free_rcu(struct rcu_head *rcu)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000111{
Marek Lindner9591a792010-12-12 21:57:11 +0000112 struct hlist_node *node, *node_tmp;
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000113 struct neigh_node *neigh_node, *tmp_neigh_node;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000114 struct orig_node *orig_node;
115
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000116 orig_node = container_of(rcu, struct orig_node, rcu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000117
Marek Lindnerf987ed62010-12-12 21:57:12 +0000118 spin_lock_bh(&orig_node->neigh_list_lock);
119
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000120 /* for all bonding members ... */
121 list_for_each_entry_safe(neigh_node, tmp_neigh_node,
122 &orig_node->bond_list, bonding_list) {
123 list_del_rcu(&neigh_node->bonding_list);
Marek Lindner44524fc2011-02-10 14:33:53 +0000124 neigh_node_free_ref(neigh_node);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000125 }
126
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000127 /* for all neighbors towards this originator ... */
Marek Lindner9591a792010-12-12 21:57:11 +0000128 hlist_for_each_entry_safe(neigh_node, node, node_tmp,
129 &orig_node->neigh_list, list) {
Marek Lindnerf987ed62010-12-12 21:57:12 +0000130 hlist_del_rcu(&neigh_node->list);
Marek Lindner44524fc2011-02-10 14:33:53 +0000131 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000132 }
133
Marek Lindnerf987ed62010-12-12 21:57:12 +0000134 spin_unlock_bh(&orig_node->neigh_list_lock);
135
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000136 frag_list_free(&orig_node->frag_list);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200137 tt_global_del_orig(orig_node->bat_priv, orig_node,
Marek Lindner16b1aba2011-01-19 20:01:42 +0000138 "originator timed out");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000139
140 kfree(orig_node->bcast_own);
141 kfree(orig_node->bcast_own_sum);
142 kfree(orig_node);
143}
144
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000145void orig_node_free_ref(struct orig_node *orig_node)
146{
147 if (atomic_dec_and_test(&orig_node->refcount))
148 call_rcu(&orig_node->rcu, orig_node_free_rcu);
149}
150
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000151void originator_free(struct bat_priv *bat_priv)
152{
Marek Lindner16b1aba2011-01-19 20:01:42 +0000153 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000154 struct hlist_node *node, *node_tmp;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000155 struct hlist_head *head;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000156 spinlock_t *list_lock; /* spinlock to protect write access */
157 struct orig_node *orig_node;
158 int i;
159
160 if (!hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000161 return;
162
163 cancel_delayed_work_sync(&bat_priv->orig_work);
164
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000165 bat_priv->orig_hash = NULL;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000166
167 for (i = 0; i < hash->size; i++) {
168 head = &hash->table[i];
169 list_lock = &hash->list_locks[i];
170
171 spin_lock_bh(list_lock);
Marek Lindner7aadf882011-02-18 12:28:09 +0000172 hlist_for_each_entry_safe(orig_node, node, node_tmp,
173 head, hash_entry) {
Marek Lindner16b1aba2011-01-19 20:01:42 +0000174
Marek Lindner7aadf882011-02-18 12:28:09 +0000175 hlist_del_rcu(node);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000176 orig_node_free_ref(orig_node);
Marek Lindner16b1aba2011-01-19 20:01:42 +0000177 }
178 spin_unlock_bh(list_lock);
179 }
180
181 hash_destroy(hash);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000182}
183
184/* this function finds or creates an originator entry for the given
185 * address if it does not exits */
Sven Eckelmann747e4222011-05-14 23:14:50 +0200186struct orig_node *get_orig_node(struct bat_priv *bat_priv, const uint8_t *addr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000187{
188 struct orig_node *orig_node;
189 int size;
190 int hash_added;
191
Marek Lindner7aadf882011-02-18 12:28:09 +0000192 orig_node = orig_hash_find(bat_priv, addr);
193 if (orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000194 return orig_node;
195
196 bat_dbg(DBG_BATMAN, bat_priv,
197 "Creating new originator: %pM\n", addr);
198
199 orig_node = kzalloc(sizeof(struct orig_node), GFP_ATOMIC);
200 if (!orig_node)
201 return NULL;
202
Marek Lindner9591a792010-12-12 21:57:11 +0000203 INIT_HLIST_HEAD(&orig_node->neigh_list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000204 INIT_LIST_HEAD(&orig_node->bond_list);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000205 spin_lock_init(&orig_node->ogm_cnt_lock);
Marek Lindnerf3e00082011-01-25 21:52:11 +0000206 spin_lock_init(&orig_node->bcast_seqno_lock);
Marek Lindnerf987ed62010-12-12 21:57:12 +0000207 spin_lock_init(&orig_node->neigh_list_lock);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000208
209 /* extra reference for return */
210 atomic_set(&orig_node->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000211
Marek Lindner16b1aba2011-01-19 20:01:42 +0000212 orig_node->bat_priv = bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000213 memcpy(orig_node->orig, addr, ETH_ALEN);
214 orig_node->router = NULL;
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200215 orig_node->tt_buff = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000216 orig_node->bcast_seqno_reset = jiffies - 1
217 - msecs_to_jiffies(RESET_PROTECTION_MS);
218 orig_node->batman_seqno_reset = jiffies - 1
219 - msecs_to_jiffies(RESET_PROTECTION_MS);
220
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000221 atomic_set(&orig_node->bond_candidates, 0);
222
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000223 size = bat_priv->num_ifaces * sizeof(unsigned long) * NUM_WORDS;
224
225 orig_node->bcast_own = kzalloc(size, GFP_ATOMIC);
226 if (!orig_node->bcast_own)
227 goto free_orig_node;
228
229 size = bat_priv->num_ifaces * sizeof(uint8_t);
230 orig_node->bcast_own_sum = kzalloc(size, GFP_ATOMIC);
231
232 INIT_LIST_HEAD(&orig_node->frag_list);
233 orig_node->last_frag_packet = 0;
234
235 if (!orig_node->bcast_own_sum)
236 goto free_bcast_own;
237
Marek Lindner7aadf882011-02-18 12:28:09 +0000238 hash_added = hash_add(bat_priv->orig_hash, compare_orig,
239 choose_orig, orig_node, &orig_node->hash_entry);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000240 if (hash_added < 0)
241 goto free_bcast_own_sum;
242
243 return orig_node;
244free_bcast_own_sum:
245 kfree(orig_node->bcast_own_sum);
246free_bcast_own:
247 kfree(orig_node->bcast_own);
248free_orig_node:
249 kfree(orig_node);
250 return NULL;
251}
252
253static bool purge_orig_neighbors(struct bat_priv *bat_priv,
254 struct orig_node *orig_node,
255 struct neigh_node **best_neigh_node)
256{
Marek Lindner9591a792010-12-12 21:57:11 +0000257 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000258 struct neigh_node *neigh_node;
259 bool neigh_purged = false;
260
261 *best_neigh_node = NULL;
262
Marek Lindnerf987ed62010-12-12 21:57:12 +0000263 spin_lock_bh(&orig_node->neigh_list_lock);
264
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000265 /* for all neighbors towards this originator ... */
Marek Lindner9591a792010-12-12 21:57:11 +0000266 hlist_for_each_entry_safe(neigh_node, node, node_tmp,
267 &orig_node->neigh_list, list) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000268
269 if ((time_after(jiffies,
270 neigh_node->last_valid + PURGE_TIMEOUT * HZ)) ||
271 (neigh_node->if_incoming->if_status == IF_INACTIVE) ||
Marek Lindner1a241a52011-01-19 19:16:10 +0000272 (neigh_node->if_incoming->if_status == IF_NOT_IN_USE) ||
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000273 (neigh_node->if_incoming->if_status == IF_TO_BE_REMOVED)) {
274
Marek Lindner1a241a52011-01-19 19:16:10 +0000275 if ((neigh_node->if_incoming->if_status ==
276 IF_INACTIVE) ||
277 (neigh_node->if_incoming->if_status ==
278 IF_NOT_IN_USE) ||
279 (neigh_node->if_incoming->if_status ==
280 IF_TO_BE_REMOVED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000281 bat_dbg(DBG_BATMAN, bat_priv,
282 "neighbor purge: originator %pM, "
283 "neighbor: %pM, iface: %s\n",
284 orig_node->orig, neigh_node->addr,
285 neigh_node->if_incoming->net_dev->name);
286 else
287 bat_dbg(DBG_BATMAN, bat_priv,
288 "neighbor timeout: originator %pM, "
289 "neighbor: %pM, last_valid: %lu\n",
290 orig_node->orig, neigh_node->addr,
291 (neigh_node->last_valid / HZ));
292
293 neigh_purged = true;
Marek Lindner9591a792010-12-12 21:57:11 +0000294
Marek Lindnerf987ed62010-12-12 21:57:12 +0000295 hlist_del_rcu(&neigh_node->list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000296 bonding_candidate_del(orig_node, neigh_node);
Marek Lindner44524fc2011-02-10 14:33:53 +0000297 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000298 } else {
299 if ((!*best_neigh_node) ||
300 (neigh_node->tq_avg > (*best_neigh_node)->tq_avg))
301 *best_neigh_node = neigh_node;
302 }
303 }
Marek Lindnerf987ed62010-12-12 21:57:12 +0000304
305 spin_unlock_bh(&orig_node->neigh_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000306 return neigh_purged;
307}
308
309static bool purge_orig_node(struct bat_priv *bat_priv,
310 struct orig_node *orig_node)
311{
312 struct neigh_node *best_neigh_node;
313
314 if (time_after(jiffies,
315 orig_node->last_valid + 2 * PURGE_TIMEOUT * HZ)) {
316
317 bat_dbg(DBG_BATMAN, bat_priv,
318 "Originator timeout: originator %pM, last_valid %lu\n",
319 orig_node->orig, (orig_node->last_valid / HZ));
320 return true;
321 } else {
322 if (purge_orig_neighbors(bat_priv, orig_node,
323 &best_neigh_node)) {
324 update_routes(bat_priv, orig_node,
325 best_neigh_node,
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200326 orig_node->tt_buff,
327 orig_node->tt_buff_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000328 }
329 }
330
331 return false;
332}
333
334static void _purge_orig(struct bat_priv *bat_priv)
335{
336 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000337 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000338 struct hlist_head *head;
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000339 spinlock_t *list_lock; /* spinlock to protect write access */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000340 struct orig_node *orig_node;
341 int i;
342
343 if (!hash)
344 return;
345
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000346 /* for all origins... */
347 for (i = 0; i < hash->size; i++) {
348 head = &hash->table[i];
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000349 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000350
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000351 spin_lock_bh(list_lock);
Marek Lindner7aadf882011-02-18 12:28:09 +0000352 hlist_for_each_entry_safe(orig_node, node, node_tmp,
353 head, hash_entry) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000354 if (purge_orig_node(bat_priv, orig_node)) {
355 if (orig_node->gw_flags)
356 gw_node_delete(bat_priv, orig_node);
Marek Lindner7aadf882011-02-18 12:28:09 +0000357 hlist_del_rcu(node);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000358 orig_node_free_ref(orig_node);
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000359 continue;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000360 }
361
362 if (time_after(jiffies, orig_node->last_frag_packet +
363 msecs_to_jiffies(FRAG_TIMEOUT)))
364 frag_list_free(&orig_node->frag_list);
365 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000366 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000367 }
368
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000369 gw_node_purge(bat_priv);
370 gw_election(bat_priv);
371
372 softif_neigh_purge(bat_priv);
373}
374
375static void purge_orig(struct work_struct *work)
376{
377 struct delayed_work *delayed_work =
378 container_of(work, struct delayed_work, work);
379 struct bat_priv *bat_priv =
380 container_of(delayed_work, struct bat_priv, orig_work);
381
382 _purge_orig(bat_priv);
383 start_purge_timer(bat_priv);
384}
385
386void purge_orig_ref(struct bat_priv *bat_priv)
387{
388 _purge_orig(bat_priv);
389}
390
391int orig_seq_print_text(struct seq_file *seq, void *offset)
392{
393 struct net_device *net_dev = (struct net_device *)seq->private;
394 struct bat_priv *bat_priv = netdev_priv(net_dev);
395 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000396 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000397 struct hlist_head *head;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200398 struct hard_iface *primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000399 struct orig_node *orig_node;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000400 struct neigh_node *neigh_node, *neigh_node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000401 int batman_count = 0;
402 int last_seen_secs;
403 int last_seen_msecs;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200404 int i, ret = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000405
Marek Lindner32ae9b22011-04-20 15:40:58 +0200406 primary_if = primary_if_get_selected(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000407
Marek Lindner32ae9b22011-04-20 15:40:58 +0200408 if (!primary_if) {
409 ret = seq_printf(seq, "BATMAN mesh %s disabled - "
410 "please specify interfaces to enable it\n",
411 net_dev->name);
412 goto out;
413 }
414
415 if (primary_if->if_status != IF_ACTIVE) {
416 ret = seq_printf(seq, "BATMAN mesh %s "
417 "disabled - primary interface not active\n",
418 net_dev->name);
419 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000420 }
421
422 seq_printf(seq, "[B.A.T.M.A.N. adv %s%s, MainIF/MAC: %s/%pM (%s)]\n",
423 SOURCE_VERSION, REVISION_VERSION_STR,
Marek Lindner32ae9b22011-04-20 15:40:58 +0200424 primary_if->net_dev->name,
425 primary_if->net_dev->dev_addr, net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000426 seq_printf(seq, " %-15s %s (%s/%i) %17s [%10s]: %20s ...\n",
427 "Originator", "last-seen", "#", TQ_MAX_VALUE, "Nexthop",
428 "outgoingIF", "Potential nexthops");
429
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000430 for (i = 0; i < hash->size; i++) {
431 head = &hash->table[i];
432
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000433 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000434 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000435 neigh_node = orig_node_get_router(orig_node);
436 if (!neigh_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000437 continue;
438
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000439 if (neigh_node->tq_avg == 0)
440 goto next;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000441
442 last_seen_secs = jiffies_to_msecs(jiffies -
443 orig_node->last_valid) / 1000;
444 last_seen_msecs = jiffies_to_msecs(jiffies -
445 orig_node->last_valid) % 1000;
446
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000447 seq_printf(seq, "%pM %4i.%03is (%3i) %pM [%10s]:",
448 orig_node->orig, last_seen_secs,
449 last_seen_msecs, neigh_node->tq_avg,
450 neigh_node->addr,
451 neigh_node->if_incoming->net_dev->name);
452
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000453 hlist_for_each_entry_rcu(neigh_node_tmp, node_tmp,
Marek Lindnerf987ed62010-12-12 21:57:12 +0000454 &orig_node->neigh_list, list) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000455 seq_printf(seq, " %pM (%3i)",
456 neigh_node_tmp->addr,
457 neigh_node_tmp->tq_avg);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000458 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000459
460 seq_printf(seq, "\n");
461 batman_count++;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000462
463next:
464 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000465 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000466 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000467 }
468
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000469 if (batman_count == 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000470 seq_printf(seq, "No batman nodes in range ...\n");
471
Marek Lindner32ae9b22011-04-20 15:40:58 +0200472out:
473 if (primary_if)
474 hardif_free_ref(primary_if);
475 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000476}
477
478static int orig_node_add_if(struct orig_node *orig_node, int max_if_num)
479{
480 void *data_ptr;
481
482 data_ptr = kmalloc(max_if_num * sizeof(unsigned long) * NUM_WORDS,
483 GFP_ATOMIC);
484 if (!data_ptr) {
485 pr_err("Can't resize orig: out of memory\n");
486 return -1;
487 }
488
489 memcpy(data_ptr, orig_node->bcast_own,
490 (max_if_num - 1) * sizeof(unsigned long) * NUM_WORDS);
491 kfree(orig_node->bcast_own);
492 orig_node->bcast_own = data_ptr;
493
494 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
495 if (!data_ptr) {
496 pr_err("Can't resize orig: out of memory\n");
497 return -1;
498 }
499
500 memcpy(data_ptr, orig_node->bcast_own_sum,
501 (max_if_num - 1) * sizeof(uint8_t));
502 kfree(orig_node->bcast_own_sum);
503 orig_node->bcast_own_sum = data_ptr;
504
505 return 0;
506}
507
Marek Lindnere6c10f42011-02-18 12:33:20 +0000508int orig_hash_add_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000509{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000510 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000511 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000512 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000513 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000514 struct orig_node *orig_node;
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000515 int i, ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000516
517 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
518 * if_num */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000519 for (i = 0; i < hash->size; i++) {
520 head = &hash->table[i];
521
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000522 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000523 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000524 spin_lock_bh(&orig_node->ogm_cnt_lock);
525 ret = orig_node_add_if(orig_node, max_if_num);
526 spin_unlock_bh(&orig_node->ogm_cnt_lock);
527
528 if (ret == -1)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000529 goto err;
530 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000531 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000532 }
533
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000534 return 0;
535
536err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000537 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000538 return -ENOMEM;
539}
540
541static int orig_node_del_if(struct orig_node *orig_node,
542 int max_if_num, int del_if_num)
543{
544 void *data_ptr = NULL;
545 int chunk_size;
546
547 /* last interface was removed */
548 if (max_if_num == 0)
549 goto free_bcast_own;
550
551 chunk_size = sizeof(unsigned long) * NUM_WORDS;
552 data_ptr = kmalloc(max_if_num * chunk_size, GFP_ATOMIC);
553 if (!data_ptr) {
554 pr_err("Can't resize orig: out of memory\n");
555 return -1;
556 }
557
558 /* copy first part */
559 memcpy(data_ptr, orig_node->bcast_own, del_if_num * chunk_size);
560
561 /* copy second part */
Sven Eckelmann38e3c5f2011-05-14 23:14:49 +0200562 memcpy((char *)data_ptr + del_if_num * chunk_size,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000563 orig_node->bcast_own + ((del_if_num + 1) * chunk_size),
564 (max_if_num - del_if_num) * chunk_size);
565
566free_bcast_own:
567 kfree(orig_node->bcast_own);
568 orig_node->bcast_own = data_ptr;
569
570 if (max_if_num == 0)
571 goto free_own_sum;
572
573 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
574 if (!data_ptr) {
575 pr_err("Can't resize orig: out of memory\n");
576 return -1;
577 }
578
579 memcpy(data_ptr, orig_node->bcast_own_sum,
580 del_if_num * sizeof(uint8_t));
581
Sven Eckelmann38e3c5f2011-05-14 23:14:49 +0200582 memcpy((char *)data_ptr + del_if_num * sizeof(uint8_t),
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000583 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
Marek Lindnere6c10f42011-02-18 12:33:20 +0000593int orig_hash_del_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000594{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000595 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000596 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000597 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000598 struct hlist_head *head;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000599 struct hard_iface *hard_iface_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000600 struct orig_node *orig_node;
601 int i, ret;
602
603 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
604 * if_num */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000605 for (i = 0; i < hash->size; i++) {
606 head = &hash->table[i];
607
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000608 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000609 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000610 spin_lock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000611 ret = orig_node_del_if(orig_node, max_if_num,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000612 hard_iface->if_num);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000613 spin_unlock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000614
615 if (ret == -1)
616 goto err;
617 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000618 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000619 }
620
621 /* renumber remaining batman interfaces _inside_ of orig_hash_lock */
622 rcu_read_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000623 list_for_each_entry_rcu(hard_iface_tmp, &hardif_list, list) {
624 if (hard_iface_tmp->if_status == IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000625 continue;
626
Marek Lindnere6c10f42011-02-18 12:33:20 +0000627 if (hard_iface == hard_iface_tmp)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000628 continue;
629
Marek Lindnere6c10f42011-02-18 12:33:20 +0000630 if (hard_iface->soft_iface != hard_iface_tmp->soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000631 continue;
632
Marek Lindnere6c10f42011-02-18 12:33:20 +0000633 if (hard_iface_tmp->if_num > hard_iface->if_num)
634 hard_iface_tmp->if_num--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000635 }
636 rcu_read_unlock();
637
Marek Lindnere6c10f42011-02-18 12:33:20 +0000638 hard_iface->if_num = -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000639 return 0;
640
641err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000642 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000643 return -ENOMEM;
644}