blob: 080ec88330a3fce2b3d3ca7b0a2d1d437735f259 [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 Lindnerf987ed62010-12-12 21:57:12 +000057static void neigh_node_free_rcu(struct rcu_head *rcu)
58{
59 struct neigh_node *neigh_node;
60
61 neigh_node = container_of(rcu, struct neigh_node, rcu);
Marek Lindner44524fc2011-02-10 14:33:53 +000062 kfree(neigh_node);
Marek Lindnerf987ed62010-12-12 21:57:12 +000063}
64
Marek Lindner44524fc2011-02-10 14:33:53 +000065void neigh_node_free_ref(struct neigh_node *neigh_node)
Simon Wunderlicha4c135c2011-01-19 20:01:43 +000066{
Marek Lindner44524fc2011-02-10 14:33:53 +000067 if (atomic_dec_and_test(&neigh_node->refcount))
68 call_rcu(&neigh_node->rcu, neigh_node_free_rcu);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +000069}
70
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000071/* increases the refcounter of a found router */
72struct neigh_node *orig_node_get_router(struct orig_node *orig_node)
73{
74 struct neigh_node *router;
75
76 rcu_read_lock();
77 router = rcu_dereference(orig_node->router);
78
79 if (router && !atomic_inc_not_zero(&router->refcount))
80 router = NULL;
81
82 rcu_read_unlock();
83 return router;
84}
85
Marek Lindnera8e7f4b2010-12-12 21:57:10 +000086struct neigh_node *create_neighbor(struct orig_node *orig_node,
87 struct orig_node *orig_neigh_node,
88 uint8_t *neigh,
Marek Lindnere6c10f42011-02-18 12:33:20 +000089 struct hard_iface *if_incoming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000090{
91 struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
92 struct neigh_node *neigh_node;
93
94 bat_dbg(DBG_BATMAN, bat_priv,
95 "Creating new last-hop neighbor of originator\n");
96
97 neigh_node = kzalloc(sizeof(struct neigh_node), GFP_ATOMIC);
98 if (!neigh_node)
99 return NULL;
100
Marek Lindner9591a792010-12-12 21:57:11 +0000101 INIT_HLIST_NODE(&neigh_node->list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000102 INIT_LIST_HEAD(&neigh_node->bonding_list);
Linus Lüssing68003902011-03-14 22:43:40 +0000103 spin_lock_init(&neigh_node->tq_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000104
105 memcpy(neigh_node->addr, neigh, ETH_ALEN);
106 neigh_node->orig_node = orig_neigh_node;
107 neigh_node->if_incoming = if_incoming;
Marek Lindner1605d0d2011-02-18 12:28:11 +0000108
109 /* extra reference for return */
110 atomic_set(&neigh_node->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000111
Marek Lindnerf987ed62010-12-12 21:57:12 +0000112 spin_lock_bh(&orig_node->neigh_list_lock);
113 hlist_add_head_rcu(&neigh_node->list, &orig_node->neigh_list);
114 spin_unlock_bh(&orig_node->neigh_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000115 return neigh_node;
116}
117
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000118static void orig_node_free_rcu(struct rcu_head *rcu)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000119{
Marek Lindner9591a792010-12-12 21:57:11 +0000120 struct hlist_node *node, *node_tmp;
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000121 struct neigh_node *neigh_node, *tmp_neigh_node;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000122 struct orig_node *orig_node;
123
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000124 orig_node = container_of(rcu, struct orig_node, rcu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000125
Marek Lindnerf987ed62010-12-12 21:57:12 +0000126 spin_lock_bh(&orig_node->neigh_list_lock);
127
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000128 /* for all bonding members ... */
129 list_for_each_entry_safe(neigh_node, tmp_neigh_node,
130 &orig_node->bond_list, bonding_list) {
131 list_del_rcu(&neigh_node->bonding_list);
Marek Lindner44524fc2011-02-10 14:33:53 +0000132 neigh_node_free_ref(neigh_node);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000133 }
134
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000135 /* for all neighbors towards this originator ... */
Marek Lindner9591a792010-12-12 21:57:11 +0000136 hlist_for_each_entry_safe(neigh_node, node, node_tmp,
137 &orig_node->neigh_list, list) {
Marek Lindnerf987ed62010-12-12 21:57:12 +0000138 hlist_del_rcu(&neigh_node->list);
Marek Lindner44524fc2011-02-10 14:33:53 +0000139 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000140 }
141
Marek Lindnerf987ed62010-12-12 21:57:12 +0000142 spin_unlock_bh(&orig_node->neigh_list_lock);
143
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000144 frag_list_free(&orig_node->frag_list);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200145 tt_global_del_orig(orig_node->bat_priv, orig_node,
Marek Lindner16b1aba2011-01-19 20:01:42 +0000146 "originator timed out");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000147
148 kfree(orig_node->bcast_own);
149 kfree(orig_node->bcast_own_sum);
150 kfree(orig_node);
151}
152
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000153void orig_node_free_ref(struct orig_node *orig_node)
154{
155 if (atomic_dec_and_test(&orig_node->refcount))
156 call_rcu(&orig_node->rcu, orig_node_free_rcu);
157}
158
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000159void originator_free(struct bat_priv *bat_priv)
160{
Marek Lindner16b1aba2011-01-19 20:01:42 +0000161 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000162 struct hlist_node *node, *node_tmp;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000163 struct hlist_head *head;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000164 spinlock_t *list_lock; /* spinlock to protect write access */
165 struct orig_node *orig_node;
166 int i;
167
168 if (!hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000169 return;
170
171 cancel_delayed_work_sync(&bat_priv->orig_work);
172
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000173 bat_priv->orig_hash = NULL;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000174
175 for (i = 0; i < hash->size; i++) {
176 head = &hash->table[i];
177 list_lock = &hash->list_locks[i];
178
179 spin_lock_bh(list_lock);
Marek Lindner7aadf882011-02-18 12:28:09 +0000180 hlist_for_each_entry_safe(orig_node, node, node_tmp,
181 head, hash_entry) {
Marek Lindner16b1aba2011-01-19 20:01:42 +0000182
Marek Lindner7aadf882011-02-18 12:28:09 +0000183 hlist_del_rcu(node);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000184 orig_node_free_ref(orig_node);
Marek Lindner16b1aba2011-01-19 20:01:42 +0000185 }
186 spin_unlock_bh(list_lock);
187 }
188
189 hash_destroy(hash);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000190}
191
192/* this function finds or creates an originator entry for the given
193 * address if it does not exits */
194struct orig_node *get_orig_node(struct bat_priv *bat_priv, uint8_t *addr)
195{
196 struct orig_node *orig_node;
197 int size;
198 int hash_added;
199
Marek Lindner7aadf882011-02-18 12:28:09 +0000200 orig_node = orig_hash_find(bat_priv, addr);
201 if (orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000202 return orig_node;
203
204 bat_dbg(DBG_BATMAN, bat_priv,
205 "Creating new originator: %pM\n", addr);
206
207 orig_node = kzalloc(sizeof(struct orig_node), GFP_ATOMIC);
208 if (!orig_node)
209 return NULL;
210
Marek Lindner9591a792010-12-12 21:57:11 +0000211 INIT_HLIST_HEAD(&orig_node->neigh_list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000212 INIT_LIST_HEAD(&orig_node->bond_list);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000213 spin_lock_init(&orig_node->ogm_cnt_lock);
Marek Lindnerf3e00082011-01-25 21:52:11 +0000214 spin_lock_init(&orig_node->bcast_seqno_lock);
Marek Lindnerf987ed62010-12-12 21:57:12 +0000215 spin_lock_init(&orig_node->neigh_list_lock);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000216
217 /* extra reference for return */
218 atomic_set(&orig_node->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000219
Marek Lindner16b1aba2011-01-19 20:01:42 +0000220 orig_node->bat_priv = bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000221 memcpy(orig_node->orig, addr, ETH_ALEN);
222 orig_node->router = NULL;
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200223 orig_node->tt_buff = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000224 orig_node->bcast_seqno_reset = jiffies - 1
225 - msecs_to_jiffies(RESET_PROTECTION_MS);
226 orig_node->batman_seqno_reset = jiffies - 1
227 - msecs_to_jiffies(RESET_PROTECTION_MS);
228
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000229 atomic_set(&orig_node->bond_candidates, 0);
230
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000231 size = bat_priv->num_ifaces * sizeof(unsigned long) * NUM_WORDS;
232
233 orig_node->bcast_own = kzalloc(size, GFP_ATOMIC);
234 if (!orig_node->bcast_own)
235 goto free_orig_node;
236
237 size = bat_priv->num_ifaces * sizeof(uint8_t);
238 orig_node->bcast_own_sum = kzalloc(size, GFP_ATOMIC);
239
240 INIT_LIST_HEAD(&orig_node->frag_list);
241 orig_node->last_frag_packet = 0;
242
243 if (!orig_node->bcast_own_sum)
244 goto free_bcast_own;
245
Marek Lindner7aadf882011-02-18 12:28:09 +0000246 hash_added = hash_add(bat_priv->orig_hash, compare_orig,
247 choose_orig, orig_node, &orig_node->hash_entry);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000248 if (hash_added < 0)
249 goto free_bcast_own_sum;
250
251 return orig_node;
252free_bcast_own_sum:
253 kfree(orig_node->bcast_own_sum);
254free_bcast_own:
255 kfree(orig_node->bcast_own);
256free_orig_node:
257 kfree(orig_node);
258 return NULL;
259}
260
261static bool purge_orig_neighbors(struct bat_priv *bat_priv,
262 struct orig_node *orig_node,
263 struct neigh_node **best_neigh_node)
264{
Marek Lindner9591a792010-12-12 21:57:11 +0000265 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000266 struct neigh_node *neigh_node;
267 bool neigh_purged = false;
268
269 *best_neigh_node = NULL;
270
Marek Lindnerf987ed62010-12-12 21:57:12 +0000271 spin_lock_bh(&orig_node->neigh_list_lock);
272
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000273 /* for all neighbors towards this originator ... */
Marek Lindner9591a792010-12-12 21:57:11 +0000274 hlist_for_each_entry_safe(neigh_node, node, node_tmp,
275 &orig_node->neigh_list, list) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000276
277 if ((time_after(jiffies,
278 neigh_node->last_valid + PURGE_TIMEOUT * HZ)) ||
279 (neigh_node->if_incoming->if_status == IF_INACTIVE) ||
Marek Lindner1a241a52011-01-19 19:16:10 +0000280 (neigh_node->if_incoming->if_status == IF_NOT_IN_USE) ||
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000281 (neigh_node->if_incoming->if_status == IF_TO_BE_REMOVED)) {
282
Marek Lindner1a241a52011-01-19 19:16:10 +0000283 if ((neigh_node->if_incoming->if_status ==
284 IF_INACTIVE) ||
285 (neigh_node->if_incoming->if_status ==
286 IF_NOT_IN_USE) ||
287 (neigh_node->if_incoming->if_status ==
288 IF_TO_BE_REMOVED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000289 bat_dbg(DBG_BATMAN, bat_priv,
290 "neighbor purge: originator %pM, "
291 "neighbor: %pM, iface: %s\n",
292 orig_node->orig, neigh_node->addr,
293 neigh_node->if_incoming->net_dev->name);
294 else
295 bat_dbg(DBG_BATMAN, bat_priv,
296 "neighbor timeout: originator %pM, "
297 "neighbor: %pM, last_valid: %lu\n",
298 orig_node->orig, neigh_node->addr,
299 (neigh_node->last_valid / HZ));
300
301 neigh_purged = true;
Marek Lindner9591a792010-12-12 21:57:11 +0000302
Marek Lindnerf987ed62010-12-12 21:57:12 +0000303 hlist_del_rcu(&neigh_node->list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000304 bonding_candidate_del(orig_node, neigh_node);
Marek Lindner44524fc2011-02-10 14:33:53 +0000305 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000306 } else {
307 if ((!*best_neigh_node) ||
308 (neigh_node->tq_avg > (*best_neigh_node)->tq_avg))
309 *best_neigh_node = neigh_node;
310 }
311 }
Marek Lindnerf987ed62010-12-12 21:57:12 +0000312
313 spin_unlock_bh(&orig_node->neigh_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000314 return neigh_purged;
315}
316
317static bool purge_orig_node(struct bat_priv *bat_priv,
318 struct orig_node *orig_node)
319{
320 struct neigh_node *best_neigh_node;
321
322 if (time_after(jiffies,
323 orig_node->last_valid + 2 * PURGE_TIMEOUT * HZ)) {
324
325 bat_dbg(DBG_BATMAN, bat_priv,
326 "Originator timeout: originator %pM, last_valid %lu\n",
327 orig_node->orig, (orig_node->last_valid / HZ));
328 return true;
329 } else {
330 if (purge_orig_neighbors(bat_priv, orig_node,
331 &best_neigh_node)) {
332 update_routes(bat_priv, orig_node,
333 best_neigh_node,
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200334 orig_node->tt_buff,
335 orig_node->tt_buff_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000336 }
337 }
338
339 return false;
340}
341
342static void _purge_orig(struct bat_priv *bat_priv)
343{
344 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000345 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000346 struct hlist_head *head;
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000347 spinlock_t *list_lock; /* spinlock to protect write access */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000348 struct orig_node *orig_node;
349 int i;
350
351 if (!hash)
352 return;
353
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000354 /* for all origins... */
355 for (i = 0; i < hash->size; i++) {
356 head = &hash->table[i];
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000357 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000358
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000359 spin_lock_bh(list_lock);
Marek Lindner7aadf882011-02-18 12:28:09 +0000360 hlist_for_each_entry_safe(orig_node, node, node_tmp,
361 head, hash_entry) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000362 if (purge_orig_node(bat_priv, orig_node)) {
363 if (orig_node->gw_flags)
364 gw_node_delete(bat_priv, orig_node);
Marek Lindner7aadf882011-02-18 12:28:09 +0000365 hlist_del_rcu(node);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000366 orig_node_free_ref(orig_node);
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000367 continue;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000368 }
369
370 if (time_after(jiffies, orig_node->last_frag_packet +
371 msecs_to_jiffies(FRAG_TIMEOUT)))
372 frag_list_free(&orig_node->frag_list);
373 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000374 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000375 }
376
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000377 gw_node_purge(bat_priv);
378 gw_election(bat_priv);
379
380 softif_neigh_purge(bat_priv);
381}
382
383static void purge_orig(struct work_struct *work)
384{
385 struct delayed_work *delayed_work =
386 container_of(work, struct delayed_work, work);
387 struct bat_priv *bat_priv =
388 container_of(delayed_work, struct bat_priv, orig_work);
389
390 _purge_orig(bat_priv);
391 start_purge_timer(bat_priv);
392}
393
394void purge_orig_ref(struct bat_priv *bat_priv)
395{
396 _purge_orig(bat_priv);
397}
398
399int orig_seq_print_text(struct seq_file *seq, void *offset)
400{
401 struct net_device *net_dev = (struct net_device *)seq->private;
402 struct bat_priv *bat_priv = netdev_priv(net_dev);
403 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000404 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000405 struct hlist_head *head;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200406 struct hard_iface *primary_if;
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;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200412 int i, ret = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000413
Marek Lindner32ae9b22011-04-20 15:40:58 +0200414 primary_if = primary_if_get_selected(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000415
Marek Lindner32ae9b22011-04-20 15:40:58 +0200416 if (!primary_if) {
417 ret = seq_printf(seq, "BATMAN mesh %s disabled - "
418 "please specify interfaces to enable it\n",
419 net_dev->name);
420 goto out;
421 }
422
423 if (primary_if->if_status != IF_ACTIVE) {
424 ret = seq_printf(seq, "BATMAN mesh %s "
425 "disabled - primary interface not active\n",
426 net_dev->name);
427 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000428 }
429
430 seq_printf(seq, "[B.A.T.M.A.N. adv %s%s, MainIF/MAC: %s/%pM (%s)]\n",
431 SOURCE_VERSION, REVISION_VERSION_STR,
Marek Lindner32ae9b22011-04-20 15:40:58 +0200432 primary_if->net_dev->name,
433 primary_if->net_dev->dev_addr, net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000434 seq_printf(seq, " %-15s %s (%s/%i) %17s [%10s]: %20s ...\n",
435 "Originator", "last-seen", "#", TQ_MAX_VALUE, "Nexthop",
436 "outgoingIF", "Potential nexthops");
437
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000438 for (i = 0; i < hash->size; i++) {
439 head = &hash->table[i];
440
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000441 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000442 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000443 neigh_node = orig_node_get_router(orig_node);
444 if (!neigh_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000445 continue;
446
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000447 if (neigh_node->tq_avg == 0)
448 goto next;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000449
450 last_seen_secs = jiffies_to_msecs(jiffies -
451 orig_node->last_valid) / 1000;
452 last_seen_msecs = jiffies_to_msecs(jiffies -
453 orig_node->last_valid) % 1000;
454
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000455 seq_printf(seq, "%pM %4i.%03is (%3i) %pM [%10s]:",
456 orig_node->orig, last_seen_secs,
457 last_seen_msecs, neigh_node->tq_avg,
458 neigh_node->addr,
459 neigh_node->if_incoming->net_dev->name);
460
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000461 hlist_for_each_entry_rcu(neigh_node_tmp, node_tmp,
Marek Lindnerf987ed62010-12-12 21:57:12 +0000462 &orig_node->neigh_list, list) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000463 seq_printf(seq, " %pM (%3i)",
464 neigh_node_tmp->addr,
465 neigh_node_tmp->tq_avg);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000466 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000467
468 seq_printf(seq, "\n");
469 batman_count++;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000470
471next:
472 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000473 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000474 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000475 }
476
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000477 if (batman_count == 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000478 seq_printf(seq, "No batman nodes in range ...\n");
479
Marek Lindner32ae9b22011-04-20 15:40:58 +0200480out:
481 if (primary_if)
482 hardif_free_ref(primary_if);
483 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000484}
485
486static int orig_node_add_if(struct orig_node *orig_node, int max_if_num)
487{
488 void *data_ptr;
489
490 data_ptr = kmalloc(max_if_num * sizeof(unsigned long) * NUM_WORDS,
491 GFP_ATOMIC);
492 if (!data_ptr) {
493 pr_err("Can't resize orig: out of memory\n");
494 return -1;
495 }
496
497 memcpy(data_ptr, orig_node->bcast_own,
498 (max_if_num - 1) * sizeof(unsigned long) * NUM_WORDS);
499 kfree(orig_node->bcast_own);
500 orig_node->bcast_own = data_ptr;
501
502 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
503 if (!data_ptr) {
504 pr_err("Can't resize orig: out of memory\n");
505 return -1;
506 }
507
508 memcpy(data_ptr, orig_node->bcast_own_sum,
509 (max_if_num - 1) * sizeof(uint8_t));
510 kfree(orig_node->bcast_own_sum);
511 orig_node->bcast_own_sum = data_ptr;
512
513 return 0;
514}
515
Marek Lindnere6c10f42011-02-18 12:33:20 +0000516int orig_hash_add_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000517{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000518 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000519 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000520 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000521 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000522 struct orig_node *orig_node;
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000523 int i, ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000524
525 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
526 * if_num */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000527 for (i = 0; i < hash->size; i++) {
528 head = &hash->table[i];
529
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000530 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000531 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000532 spin_lock_bh(&orig_node->ogm_cnt_lock);
533 ret = orig_node_add_if(orig_node, max_if_num);
534 spin_unlock_bh(&orig_node->ogm_cnt_lock);
535
536 if (ret == -1)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000537 goto err;
538 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000539 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000540 }
541
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000542 return 0;
543
544err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000545 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000546 return -ENOMEM;
547}
548
549static int orig_node_del_if(struct orig_node *orig_node,
550 int max_if_num, int del_if_num)
551{
552 void *data_ptr = NULL;
553 int chunk_size;
554
555 /* last interface was removed */
556 if (max_if_num == 0)
557 goto free_bcast_own;
558
559 chunk_size = sizeof(unsigned long) * NUM_WORDS;
560 data_ptr = kmalloc(max_if_num * chunk_size, GFP_ATOMIC);
561 if (!data_ptr) {
562 pr_err("Can't resize orig: out of memory\n");
563 return -1;
564 }
565
566 /* copy first part */
567 memcpy(data_ptr, orig_node->bcast_own, del_if_num * chunk_size);
568
569 /* copy second part */
570 memcpy(data_ptr + del_if_num * chunk_size,
571 orig_node->bcast_own + ((del_if_num + 1) * chunk_size),
572 (max_if_num - del_if_num) * chunk_size);
573
574free_bcast_own:
575 kfree(orig_node->bcast_own);
576 orig_node->bcast_own = data_ptr;
577
578 if (max_if_num == 0)
579 goto free_own_sum;
580
581 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
582 if (!data_ptr) {
583 pr_err("Can't resize orig: out of memory\n");
584 return -1;
585 }
586
587 memcpy(data_ptr, orig_node->bcast_own_sum,
588 del_if_num * sizeof(uint8_t));
589
590 memcpy(data_ptr + del_if_num * sizeof(uint8_t),
591 orig_node->bcast_own_sum + ((del_if_num + 1) * sizeof(uint8_t)),
592 (max_if_num - del_if_num) * sizeof(uint8_t));
593
594free_own_sum:
595 kfree(orig_node->bcast_own_sum);
596 orig_node->bcast_own_sum = data_ptr;
597
598 return 0;
599}
600
Marek Lindnere6c10f42011-02-18 12:33:20 +0000601int orig_hash_del_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000602{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000603 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000604 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000605 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000606 struct hlist_head *head;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000607 struct hard_iface *hard_iface_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000608 struct orig_node *orig_node;
609 int i, ret;
610
611 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
612 * if_num */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000613 for (i = 0; i < hash->size; i++) {
614 head = &hash->table[i];
615
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000616 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000617 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000618 spin_lock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000619 ret = orig_node_del_if(orig_node, max_if_num,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000620 hard_iface->if_num);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000621 spin_unlock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000622
623 if (ret == -1)
624 goto err;
625 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000626 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000627 }
628
629 /* renumber remaining batman interfaces _inside_ of orig_hash_lock */
630 rcu_read_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000631 list_for_each_entry_rcu(hard_iface_tmp, &hardif_list, list) {
632 if (hard_iface_tmp->if_status == IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000633 continue;
634
Marek Lindnere6c10f42011-02-18 12:33:20 +0000635 if (hard_iface == hard_iface_tmp)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000636 continue;
637
Marek Lindnere6c10f42011-02-18 12:33:20 +0000638 if (hard_iface->soft_iface != hard_iface_tmp->soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000639 continue;
640
Marek Lindnere6c10f42011-02-18 12:33:20 +0000641 if (hard_iface_tmp->if_num > hard_iface->if_num)
642 hard_iface_tmp->if_num--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000643 }
644 rcu_read_unlock();
645
Marek Lindnere6c10f42011-02-18 12:33:20 +0000646 hard_iface->if_num = -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000647 return 0;
648
649err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000650 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000651 return -ENOMEM;
652}