blob: c2e46b551624db10c261575788b3463d8feff63d [file] [log] [blame]
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001/*
Sven Eckelmann567db7b2012-01-01 00:41:38 +01002 * Copyright (C) 2009-2012 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
Sven Eckelmannb8e2dd12011-06-15 15:08:59 +020040/* returns 1 if they are the same originator */
41static int compare_orig(const struct hlist_node *node, const void *data2)
42{
43 const void *data1 = container_of(node, struct orig_node, hash_entry);
44
45 return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0);
46}
47
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000048int originator_init(struct bat_priv *bat_priv)
49{
50 if (bat_priv->orig_hash)
51 return 1;
52
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000053 bat_priv->orig_hash = hash_new(1024);
54
55 if (!bat_priv->orig_hash)
56 goto err;
57
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000058 start_purge_timer(bat_priv);
59 return 1;
60
61err:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000062 return 0;
63}
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))
Paul E. McKenneyae179ae2011-05-01 23:27:50 -070068 kfree_rcu(neigh_node, 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,
Sven Eckelmann747e4222011-05-14 23:14:50 +020088 const 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
Sven Eckelmann704509b2011-05-14 23:14:54 +020097 neigh_node = kzalloc(sizeof(*neigh_node), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000098 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
Antonio Quartullia73105b2011-04-27 14:27:44 +0200148 kfree(orig_node->tt_buff);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000149 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;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200167 uint32_t i;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000168
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 */
Sven Eckelmann747e4222011-05-14 23:14:50 +0200195struct orig_node *get_orig_node(struct bat_priv *bat_priv, const uint8_t *addr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000196{
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
Sven Eckelmann704509b2011-05-14 23:14:54 +0200208 orig_node = kzalloc(sizeof(*orig_node), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000209 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);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200217 spin_lock_init(&orig_node->tt_buff_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
Antonio Quartulli17071572011-11-07 16:36:40 +0100222 orig_node->tt_initialised = false;
Antonio Quartullicc47f662011-04-27 14:27:57 +0200223 orig_node->tt_poss_change = false;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000224 orig_node->bat_priv = bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000225 memcpy(orig_node->orig, addr, ETH_ALEN);
226 orig_node->router = NULL;
Antonio Quartullic8c991b2011-07-07 01:40:57 +0200227 orig_node->tt_crc = 0;
228 atomic_set(&orig_node->last_ttvn, 0);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200229 orig_node->tt_buff = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200230 orig_node->tt_buff_len = 0;
231 atomic_set(&orig_node->tt_size, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000232 orig_node->bcast_seqno_reset = jiffies - 1
233 - msecs_to_jiffies(RESET_PROTECTION_MS);
234 orig_node->batman_seqno_reset = jiffies - 1
235 - msecs_to_jiffies(RESET_PROTECTION_MS);
236
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000237 atomic_set(&orig_node->bond_candidates, 0);
238
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000239 size = bat_priv->num_ifaces * sizeof(unsigned long) * NUM_WORDS;
240
241 orig_node->bcast_own = kzalloc(size, GFP_ATOMIC);
242 if (!orig_node->bcast_own)
243 goto free_orig_node;
244
245 size = bat_priv->num_ifaces * sizeof(uint8_t);
246 orig_node->bcast_own_sum = kzalloc(size, GFP_ATOMIC);
247
248 INIT_LIST_HEAD(&orig_node->frag_list);
249 orig_node->last_frag_packet = 0;
250
251 if (!orig_node->bcast_own_sum)
252 goto free_bcast_own;
253
Marek Lindner7aadf882011-02-18 12:28:09 +0000254 hash_added = hash_add(bat_priv->orig_hash, compare_orig,
255 choose_orig, orig_node, &orig_node->hash_entry);
Antonio Quartulli1a1f37d2011-07-10 00:36:36 +0200256 if (hash_added != 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000257 goto free_bcast_own_sum;
258
259 return orig_node;
260free_bcast_own_sum:
261 kfree(orig_node->bcast_own_sum);
262free_bcast_own:
263 kfree(orig_node->bcast_own);
264free_orig_node:
265 kfree(orig_node);
266 return NULL;
267}
268
269static bool purge_orig_neighbors(struct bat_priv *bat_priv,
270 struct orig_node *orig_node,
271 struct neigh_node **best_neigh_node)
272{
Marek Lindner9591a792010-12-12 21:57:11 +0000273 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000274 struct neigh_node *neigh_node;
275 bool neigh_purged = false;
276
277 *best_neigh_node = NULL;
278
Marek Lindnerf987ed62010-12-12 21:57:12 +0000279 spin_lock_bh(&orig_node->neigh_list_lock);
280
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000281 /* for all neighbors towards this originator ... */
Marek Lindner9591a792010-12-12 21:57:11 +0000282 hlist_for_each_entry_safe(neigh_node, node, node_tmp,
283 &orig_node->neigh_list, list) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000284
Marek Lindner032b7962011-12-20 19:30:40 +0800285 if ((has_timed_out(neigh_node->last_valid, PURGE_TIMEOUT)) ||
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000286 (neigh_node->if_incoming->if_status == IF_INACTIVE) ||
Marek Lindner1a241a52011-01-19 19:16:10 +0000287 (neigh_node->if_incoming->if_status == IF_NOT_IN_USE) ||
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000288 (neigh_node->if_incoming->if_status == IF_TO_BE_REMOVED)) {
289
Marek Lindner1a241a52011-01-19 19:16:10 +0000290 if ((neigh_node->if_incoming->if_status ==
291 IF_INACTIVE) ||
292 (neigh_node->if_incoming->if_status ==
293 IF_NOT_IN_USE) ||
294 (neigh_node->if_incoming->if_status ==
295 IF_TO_BE_REMOVED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000296 bat_dbg(DBG_BATMAN, bat_priv,
297 "neighbor purge: originator %pM, "
298 "neighbor: %pM, iface: %s\n",
299 orig_node->orig, neigh_node->addr,
300 neigh_node->if_incoming->net_dev->name);
301 else
302 bat_dbg(DBG_BATMAN, bat_priv,
303 "neighbor timeout: originator %pM, "
304 "neighbor: %pM, last_valid: %lu\n",
305 orig_node->orig, neigh_node->addr,
306 (neigh_node->last_valid / HZ));
307
308 neigh_purged = true;
Marek Lindner9591a792010-12-12 21:57:11 +0000309
Marek Lindnerf987ed62010-12-12 21:57:12 +0000310 hlist_del_rcu(&neigh_node->list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000311 bonding_candidate_del(orig_node, neigh_node);
Marek Lindner44524fc2011-02-10 14:33:53 +0000312 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000313 } else {
314 if ((!*best_neigh_node) ||
315 (neigh_node->tq_avg > (*best_neigh_node)->tq_avg))
316 *best_neigh_node = neigh_node;
317 }
318 }
Marek Lindnerf987ed62010-12-12 21:57:12 +0000319
320 spin_unlock_bh(&orig_node->neigh_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000321 return neigh_purged;
322}
323
324static bool purge_orig_node(struct bat_priv *bat_priv,
325 struct orig_node *orig_node)
326{
327 struct neigh_node *best_neigh_node;
328
Marek Lindner032b7962011-12-20 19:30:40 +0800329 if (has_timed_out(orig_node->last_valid, 2 * PURGE_TIMEOUT)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000330 bat_dbg(DBG_BATMAN, bat_priv,
331 "Originator timeout: originator %pM, last_valid %lu\n",
332 orig_node->orig, (orig_node->last_valid / HZ));
333 return true;
334 } else {
335 if (purge_orig_neighbors(bat_priv, orig_node,
336 &best_neigh_node)) {
Marek Lindnerfc957272011-07-30 12:04:12 +0200337 update_route(bat_priv, orig_node, best_neigh_node);
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;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200351 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000352
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
Marek Lindner032b7962011-12-20 19:30:40 +0800372 if (has_timed_out(orig_node->last_frag_packet,
373 FRAG_TIMEOUT))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000374 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;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200408 struct hard_iface *primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000409 struct orig_node *orig_node;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000410 struct neigh_node *neigh_node, *neigh_node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000411 int batman_count = 0;
412 int last_seen_secs;
413 int last_seen_msecs;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200414 uint32_t i;
415 int ret = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000416
Marek Lindner32ae9b22011-04-20 15:40:58 +0200417 primary_if = primary_if_get_selected(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000418
Marek Lindner32ae9b22011-04-20 15:40:58 +0200419 if (!primary_if) {
420 ret = seq_printf(seq, "BATMAN mesh %s disabled - "
421 "please specify interfaces to enable it\n",
422 net_dev->name);
423 goto out;
424 }
425
426 if (primary_if->if_status != IF_ACTIVE) {
427 ret = seq_printf(seq, "BATMAN mesh %s "
428 "disabled - primary interface not active\n",
429 net_dev->name);
430 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000431 }
432
Sven Eckelmann44c43492011-07-05 10:42:51 +0200433 seq_printf(seq, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s)]\n",
434 SOURCE_VERSION, primary_if->net_dev->name,
Marek Lindner32ae9b22011-04-20 15:40:58 +0200435 primary_if->net_dev->dev_addr, net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000436 seq_printf(seq, " %-15s %s (%s/%i) %17s [%10s]: %20s ...\n",
437 "Originator", "last-seen", "#", TQ_MAX_VALUE, "Nexthop",
438 "outgoingIF", "Potential nexthops");
439
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000440 for (i = 0; i < hash->size; i++) {
441 head = &hash->table[i];
442
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000443 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000444 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000445 neigh_node = orig_node_get_router(orig_node);
446 if (!neigh_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000447 continue;
448
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000449 if (neigh_node->tq_avg == 0)
450 goto next;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000451
452 last_seen_secs = jiffies_to_msecs(jiffies -
453 orig_node->last_valid) / 1000;
454 last_seen_msecs = jiffies_to_msecs(jiffies -
455 orig_node->last_valid) % 1000;
456
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000457 seq_printf(seq, "%pM %4i.%03is (%3i) %pM [%10s]:",
458 orig_node->orig, last_seen_secs,
459 last_seen_msecs, neigh_node->tq_avg,
460 neigh_node->addr,
461 neigh_node->if_incoming->net_dev->name);
462
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000463 hlist_for_each_entry_rcu(neigh_node_tmp, node_tmp,
Marek Lindnerf987ed62010-12-12 21:57:12 +0000464 &orig_node->neigh_list, list) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000465 seq_printf(seq, " %pM (%3i)",
466 neigh_node_tmp->addr,
467 neigh_node_tmp->tq_avg);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000468 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000469
470 seq_printf(seq, "\n");
471 batman_count++;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000472
473next:
474 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000475 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000476 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000477 }
478
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000479 if (batman_count == 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000480 seq_printf(seq, "No batman nodes in range ...\n");
481
Marek Lindner32ae9b22011-04-20 15:40:58 +0200482out:
483 if (primary_if)
484 hardif_free_ref(primary_if);
485 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000486}
487
488static int orig_node_add_if(struct orig_node *orig_node, int max_if_num)
489{
490 void *data_ptr;
491
492 data_ptr = kmalloc(max_if_num * sizeof(unsigned long) * NUM_WORDS,
493 GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700494 if (!data_ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000495 return -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000496
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);
Joe Perches320f4222011-08-29 14:17:24 -0700503 if (!data_ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000504 return -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000505
506 memcpy(data_ptr, orig_node->bcast_own_sum,
507 (max_if_num - 1) * sizeof(uint8_t));
508 kfree(orig_node->bcast_own_sum);
509 orig_node->bcast_own_sum = data_ptr;
510
511 return 0;
512}
513
Marek Lindnere6c10f42011-02-18 12:33:20 +0000514int orig_hash_add_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000515{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000516 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000517 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000518 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000519 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000520 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200521 uint32_t i;
522 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000523
524 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
525 * if_num */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000526 for (i = 0; i < hash->size; i++) {
527 head = &hash->table[i];
528
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000529 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000530 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000531 spin_lock_bh(&orig_node->ogm_cnt_lock);
532 ret = orig_node_add_if(orig_node, max_if_num);
533 spin_unlock_bh(&orig_node->ogm_cnt_lock);
534
535 if (ret == -1)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000536 goto err;
537 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000538 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000539 }
540
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000541 return 0;
542
543err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000544 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000545 return -ENOMEM;
546}
547
548static int orig_node_del_if(struct orig_node *orig_node,
549 int max_if_num, int del_if_num)
550{
551 void *data_ptr = NULL;
552 int chunk_size;
553
554 /* last interface was removed */
555 if (max_if_num == 0)
556 goto free_bcast_own;
557
558 chunk_size = sizeof(unsigned long) * NUM_WORDS;
559 data_ptr = kmalloc(max_if_num * chunk_size, GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700560 if (!data_ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000561 return -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000562
563 /* copy first part */
564 memcpy(data_ptr, orig_node->bcast_own, del_if_num * chunk_size);
565
566 /* copy second part */
Sven Eckelmann38e3c5f2011-05-14 23:14:49 +0200567 memcpy((char *)data_ptr + del_if_num * chunk_size,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000568 orig_node->bcast_own + ((del_if_num + 1) * chunk_size),
569 (max_if_num - del_if_num) * chunk_size);
570
571free_bcast_own:
572 kfree(orig_node->bcast_own);
573 orig_node->bcast_own = data_ptr;
574
575 if (max_if_num == 0)
576 goto free_own_sum;
577
578 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700579 if (!data_ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000580 return -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000581
582 memcpy(data_ptr, orig_node->bcast_own_sum,
583 del_if_num * sizeof(uint8_t));
584
Sven Eckelmann38e3c5f2011-05-14 23:14:49 +0200585 memcpy((char *)data_ptr + del_if_num * sizeof(uint8_t),
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000586 orig_node->bcast_own_sum + ((del_if_num + 1) * sizeof(uint8_t)),
587 (max_if_num - del_if_num) * sizeof(uint8_t));
588
589free_own_sum:
590 kfree(orig_node->bcast_own_sum);
591 orig_node->bcast_own_sum = data_ptr;
592
593 return 0;
594}
595
Marek Lindnere6c10f42011-02-18 12:33:20 +0000596int orig_hash_del_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000597{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000598 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000599 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000600 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000601 struct hlist_head *head;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000602 struct hard_iface *hard_iface_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000603 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200604 uint32_t i;
605 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000606
607 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
608 * if_num */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000609 for (i = 0; i < hash->size; i++) {
610 head = &hash->table[i];
611
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000612 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000613 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000614 spin_lock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000615 ret = orig_node_del_if(orig_node, max_if_num,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000616 hard_iface->if_num);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000617 spin_unlock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000618
619 if (ret == -1)
620 goto err;
621 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000622 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000623 }
624
625 /* renumber remaining batman interfaces _inside_ of orig_hash_lock */
626 rcu_read_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000627 list_for_each_entry_rcu(hard_iface_tmp, &hardif_list, list) {
628 if (hard_iface_tmp->if_status == IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000629 continue;
630
Marek Lindnere6c10f42011-02-18 12:33:20 +0000631 if (hard_iface == hard_iface_tmp)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000632 continue;
633
Marek Lindnere6c10f42011-02-18 12:33:20 +0000634 if (hard_iface->soft_iface != hard_iface_tmp->soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000635 continue;
636
Marek Lindnere6c10f42011-02-18 12:33:20 +0000637 if (hard_iface_tmp->if_num > hard_iface->if_num)
638 hard_iface_tmp->if_num--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000639 }
640 rcu_read_unlock();
641
Marek Lindnere6c10f42011-02-18 12:33:20 +0000642 hard_iface->if_num = -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000643 return 0;
644
645err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000646 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000647 return -ENOMEM;
648}