blob: ce496988589498743a3ef2380b9da8418a32f94f [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"
Simon Wunderlich23721382012-01-22 20:00:19 +010031#include "bridge_loop_avoidance.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000032
33static void purge_orig(struct work_struct *work);
34
35static void start_purge_timer(struct bat_priv *bat_priv)
36{
37 INIT_DELAYED_WORK(&bat_priv->orig_work, purge_orig);
38 queue_delayed_work(bat_event_workqueue, &bat_priv->orig_work, 1 * HZ);
39}
40
Sven Eckelmannb8e2dd12011-06-15 15:08:59 +020041/* returns 1 if they are the same originator */
42static int compare_orig(const struct hlist_node *node, const void *data2)
43{
44 const void *data1 = container_of(node, struct orig_node, hash_entry);
45
46 return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0);
47}
48
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000049int originator_init(struct bat_priv *bat_priv)
50{
51 if (bat_priv->orig_hash)
52 return 1;
53
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000054 bat_priv->orig_hash = hash_new(1024);
55
56 if (!bat_priv->orig_hash)
57 goto err;
58
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000059 start_purge_timer(bat_priv);
60 return 1;
61
62err:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000063 return 0;
64}
65
Marek Lindner44524fc2011-02-10 14:33:53 +000066void neigh_node_free_ref(struct neigh_node *neigh_node)
Simon Wunderlicha4c135c2011-01-19 20:01:43 +000067{
Marek Lindner44524fc2011-02-10 14:33:53 +000068 if (atomic_dec_and_test(&neigh_node->refcount))
Paul E. McKenneyae179ae2011-05-01 23:27:50 -070069 kfree_rcu(neigh_node, rcu);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +000070}
71
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000072/* increases the refcounter of a found router */
73struct neigh_node *orig_node_get_router(struct orig_node *orig_node)
74{
75 struct neigh_node *router;
76
77 rcu_read_lock();
78 router = rcu_dereference(orig_node->router);
79
80 if (router && !atomic_inc_not_zero(&router->refcount))
81 router = NULL;
82
83 rcu_read_unlock();
84 return router;
85}
86
Marek Lindnera8e7f4b2010-12-12 21:57:10 +000087struct neigh_node *create_neighbor(struct orig_node *orig_node,
88 struct orig_node *orig_neigh_node,
Sven Eckelmann747e4222011-05-14 23:14:50 +020089 const uint8_t *neigh,
Marek Lindnere6c10f42011-02-18 12:33:20 +000090 struct hard_iface *if_incoming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000091{
92 struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
93 struct neigh_node *neigh_node;
94
95 bat_dbg(DBG_BATMAN, bat_priv,
96 "Creating new last-hop neighbor of originator\n");
97
Sven Eckelmann704509b2011-05-14 23:14:54 +020098 neigh_node = kzalloc(sizeof(*neigh_node), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000099 if (!neigh_node)
100 return NULL;
101
Marek Lindner9591a792010-12-12 21:57:11 +0000102 INIT_HLIST_NODE(&neigh_node->list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000103 INIT_LIST_HEAD(&neigh_node->bonding_list);
Linus Lüssing68003902011-03-14 22:43:40 +0000104 spin_lock_init(&neigh_node->tq_lock);
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);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200146 tt_global_del_orig(orig_node->bat_priv, orig_node,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100147 "originator timed out");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000148
Antonio Quartullia73105b2011-04-27 14:27:44 +0200149 kfree(orig_node->tt_buff);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000150 kfree(orig_node->bcast_own);
151 kfree(orig_node->bcast_own_sum);
152 kfree(orig_node);
153}
154
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000155void orig_node_free_ref(struct orig_node *orig_node)
156{
157 if (atomic_dec_and_test(&orig_node->refcount))
158 call_rcu(&orig_node->rcu, orig_node_free_rcu);
159}
160
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000161void originator_free(struct bat_priv *bat_priv)
162{
Marek Lindner16b1aba2011-01-19 20:01:42 +0000163 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000164 struct hlist_node *node, *node_tmp;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000165 struct hlist_head *head;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000166 spinlock_t *list_lock; /* spinlock to protect write access */
167 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200168 uint32_t i;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000169
170 if (!hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000171 return;
172
173 cancel_delayed_work_sync(&bat_priv->orig_work);
174
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000175 bat_priv->orig_hash = NULL;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000176
177 for (i = 0; i < hash->size; i++) {
178 head = &hash->table[i];
179 list_lock = &hash->list_locks[i];
180
181 spin_lock_bh(list_lock);
Marek Lindner7aadf882011-02-18 12:28:09 +0000182 hlist_for_each_entry_safe(orig_node, node, node_tmp,
183 head, hash_entry) {
Marek Lindner16b1aba2011-01-19 20:01:42 +0000184
Marek Lindner7aadf882011-02-18 12:28:09 +0000185 hlist_del_rcu(node);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000186 orig_node_free_ref(orig_node);
Marek Lindner16b1aba2011-01-19 20:01:42 +0000187 }
188 spin_unlock_bh(list_lock);
189 }
190
191 hash_destroy(hash);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000192}
193
194/* this function finds or creates an originator entry for the given
195 * address if it does not exits */
Sven Eckelmann747e4222011-05-14 23:14:50 +0200196struct orig_node *get_orig_node(struct bat_priv *bat_priv, const uint8_t *addr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000197{
198 struct orig_node *orig_node;
199 int size;
200 int hash_added;
201
Marek Lindner7aadf882011-02-18 12:28:09 +0000202 orig_node = orig_hash_find(bat_priv, addr);
203 if (orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000204 return orig_node;
205
206 bat_dbg(DBG_BATMAN, bat_priv,
207 "Creating new originator: %pM\n", addr);
208
Sven Eckelmann704509b2011-05-14 23:14:54 +0200209 orig_node = kzalloc(sizeof(*orig_node), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000210 if (!orig_node)
211 return NULL;
212
Marek Lindner9591a792010-12-12 21:57:11 +0000213 INIT_HLIST_HEAD(&orig_node->neigh_list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000214 INIT_LIST_HEAD(&orig_node->bond_list);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000215 spin_lock_init(&orig_node->ogm_cnt_lock);
Marek Lindnerf3e00082011-01-25 21:52:11 +0000216 spin_lock_init(&orig_node->bcast_seqno_lock);
Marek Lindnerf987ed62010-12-12 21:57:12 +0000217 spin_lock_init(&orig_node->neigh_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200218 spin_lock_init(&orig_node->tt_buff_lock);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000219
220 /* extra reference for return */
221 atomic_set(&orig_node->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000222
Antonio Quartulli17071572011-11-07 16:36:40 +0100223 orig_node->tt_initialised = false;
Antonio Quartullicc47f662011-04-27 14:27:57 +0200224 orig_node->tt_poss_change = false;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000225 orig_node->bat_priv = bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000226 memcpy(orig_node->orig, addr, ETH_ALEN);
227 orig_node->router = NULL;
Antonio Quartullic8c991b2011-07-07 01:40:57 +0200228 orig_node->tt_crc = 0;
229 atomic_set(&orig_node->last_ttvn, 0);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200230 orig_node->tt_buff = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200231 orig_node->tt_buff_len = 0;
232 atomic_set(&orig_node->tt_size, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000233 orig_node->bcast_seqno_reset = jiffies - 1
234 - msecs_to_jiffies(RESET_PROTECTION_MS);
235 orig_node->batman_seqno_reset = jiffies - 1
236 - msecs_to_jiffies(RESET_PROTECTION_MS);
237
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000238 atomic_set(&orig_node->bond_candidates, 0);
239
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000240 size = bat_priv->num_ifaces * sizeof(unsigned long) * NUM_WORDS;
241
242 orig_node->bcast_own = kzalloc(size, GFP_ATOMIC);
243 if (!orig_node->bcast_own)
244 goto free_orig_node;
245
246 size = bat_priv->num_ifaces * sizeof(uint8_t);
247 orig_node->bcast_own_sum = kzalloc(size, GFP_ATOMIC);
248
249 INIT_LIST_HEAD(&orig_node->frag_list);
250 orig_node->last_frag_packet = 0;
251
252 if (!orig_node->bcast_own_sum)
253 goto free_bcast_own;
254
Marek Lindner7aadf882011-02-18 12:28:09 +0000255 hash_added = hash_add(bat_priv->orig_hash, compare_orig,
256 choose_orig, orig_node, &orig_node->hash_entry);
Antonio Quartulli1a1f37d2011-07-10 00:36:36 +0200257 if (hash_added != 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000258 goto free_bcast_own_sum;
259
260 return orig_node;
261free_bcast_own_sum:
262 kfree(orig_node->bcast_own_sum);
263free_bcast_own:
264 kfree(orig_node->bcast_own);
265free_orig_node:
266 kfree(orig_node);
267 return NULL;
268}
269
270static bool purge_orig_neighbors(struct bat_priv *bat_priv,
271 struct orig_node *orig_node,
272 struct neigh_node **best_neigh_node)
273{
Marek Lindner9591a792010-12-12 21:57:11 +0000274 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000275 struct neigh_node *neigh_node;
276 bool neigh_purged = false;
277
278 *best_neigh_node = NULL;
279
Marek Lindnerf987ed62010-12-12 21:57:12 +0000280 spin_lock_bh(&orig_node->neigh_list_lock);
281
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000282 /* for all neighbors towards this originator ... */
Marek Lindner9591a792010-12-12 21:57:11 +0000283 hlist_for_each_entry_safe(neigh_node, node, node_tmp,
284 &orig_node->neigh_list, list) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000285
Marek Lindner032b7962011-12-20 19:30:40 +0800286 if ((has_timed_out(neigh_node->last_valid, PURGE_TIMEOUT)) ||
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000287 (neigh_node->if_incoming->if_status == IF_INACTIVE) ||
Marek Lindner1a241a52011-01-19 19:16:10 +0000288 (neigh_node->if_incoming->if_status == IF_NOT_IN_USE) ||
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000289 (neigh_node->if_incoming->if_status == IF_TO_BE_REMOVED)) {
290
Marek Lindner1a241a52011-01-19 19:16:10 +0000291 if ((neigh_node->if_incoming->if_status ==
292 IF_INACTIVE) ||
293 (neigh_node->if_incoming->if_status ==
294 IF_NOT_IN_USE) ||
295 (neigh_node->if_incoming->if_status ==
296 IF_TO_BE_REMOVED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000297 bat_dbg(DBG_BATMAN, bat_priv,
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100298 "neighbor purge: originator %pM, neighbor: %pM, iface: %s\n",
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000299 orig_node->orig, neigh_node->addr,
300 neigh_node->if_incoming->net_dev->name);
301 else
302 bat_dbg(DBG_BATMAN, bat_priv,
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100303 "neighbor timeout: originator %pM, neighbor: %pM, last_valid: %lu\n",
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000304 orig_node->orig, neigh_node->addr,
305 (neigh_node->last_valid / HZ));
306
307 neigh_purged = true;
Marek Lindner9591a792010-12-12 21:57:11 +0000308
Marek Lindnerf987ed62010-12-12 21:57:12 +0000309 hlist_del_rcu(&neigh_node->list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000310 bonding_candidate_del(orig_node, neigh_node);
Marek Lindner44524fc2011-02-10 14:33:53 +0000311 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000312 } else {
313 if ((!*best_neigh_node) ||
314 (neigh_node->tq_avg > (*best_neigh_node)->tq_avg))
315 *best_neigh_node = neigh_node;
316 }
317 }
Marek Lindnerf987ed62010-12-12 21:57:12 +0000318
319 spin_unlock_bh(&orig_node->neigh_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000320 return neigh_purged;
321}
322
323static bool purge_orig_node(struct bat_priv *bat_priv,
324 struct orig_node *orig_node)
325{
326 struct neigh_node *best_neigh_node;
327
Marek Lindner032b7962011-12-20 19:30:40 +0800328 if (has_timed_out(orig_node->last_valid, 2 * PURGE_TIMEOUT)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000329 bat_dbg(DBG_BATMAN, bat_priv,
330 "Originator timeout: originator %pM, last_valid %lu\n",
331 orig_node->orig, (orig_node->last_valid / HZ));
332 return true;
333 } else {
334 if (purge_orig_neighbors(bat_priv, orig_node,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100335 &best_neigh_node))
Marek Lindnerfc957272011-07-30 12:04:12 +0200336 update_route(bat_priv, orig_node, best_neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000337 }
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;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200349 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000350
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
Marek Lindner032b7962011-12-20 19:30:40 +0800370 if (has_timed_out(orig_node->last_frag_packet,
371 FRAG_TIMEOUT))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000372 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);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000379}
380
381static void purge_orig(struct work_struct *work)
382{
383 struct delayed_work *delayed_work =
384 container_of(work, struct delayed_work, work);
385 struct bat_priv *bat_priv =
386 container_of(delayed_work, struct bat_priv, orig_work);
387
388 _purge_orig(bat_priv);
389 start_purge_timer(bat_priv);
390}
391
392void purge_orig_ref(struct bat_priv *bat_priv)
393{
394 _purge_orig(bat_priv);
395}
396
397int orig_seq_print_text(struct seq_file *seq, void *offset)
398{
399 struct net_device *net_dev = (struct net_device *)seq->private;
400 struct bat_priv *bat_priv = netdev_priv(net_dev);
401 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000402 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000403 struct hlist_head *head;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200404 struct hard_iface *primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000405 struct orig_node *orig_node;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000406 struct neigh_node *neigh_node, *neigh_node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000407 int batman_count = 0;
408 int last_seen_secs;
409 int last_seen_msecs;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200410 uint32_t i;
411 int ret = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000412
Marek Lindner32ae9b22011-04-20 15:40:58 +0200413 primary_if = primary_if_get_selected(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000414
Marek Lindner32ae9b22011-04-20 15:40:58 +0200415 if (!primary_if) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100416 ret = seq_printf(seq,
417 "BATMAN mesh %s disabled - please specify interfaces to enable it\n",
Marek Lindner32ae9b22011-04-20 15:40:58 +0200418 net_dev->name);
419 goto out;
420 }
421
422 if (primary_if->if_status != IF_ACTIVE) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100423 ret = seq_printf(seq,
424 "BATMAN mesh %s disabled - primary interface not active\n",
Marek Lindner32ae9b22011-04-20 15:40:58 +0200425 net_dev->name);
426 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000427 }
428
Sven Eckelmann44c43492011-07-05 10:42:51 +0200429 seq_printf(seq, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s)]\n",
430 SOURCE_VERSION, primary_if->net_dev->name,
Marek Lindner32ae9b22011-04-20 15:40:58 +0200431 primary_if->net_dev->dev_addr, net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000432 seq_printf(seq, " %-15s %s (%s/%i) %17s [%10s]: %20s ...\n",
433 "Originator", "last-seen", "#", TQ_MAX_VALUE, "Nexthop",
434 "outgoingIF", "Potential nexthops");
435
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000436 for (i = 0; i < hash->size; i++) {
437 head = &hash->table[i];
438
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000439 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000440 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000441 neigh_node = orig_node_get_router(orig_node);
442 if (!neigh_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000443 continue;
444
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000445 if (neigh_node->tq_avg == 0)
446 goto next;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000447
448 last_seen_secs = jiffies_to_msecs(jiffies -
449 orig_node->last_valid) / 1000;
450 last_seen_msecs = jiffies_to_msecs(jiffies -
451 orig_node->last_valid) % 1000;
452
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000453 seq_printf(seq, "%pM %4i.%03is (%3i) %pM [%10s]:",
454 orig_node->orig, last_seen_secs,
455 last_seen_msecs, neigh_node->tq_avg,
456 neigh_node->addr,
457 neigh_node->if_incoming->net_dev->name);
458
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000459 hlist_for_each_entry_rcu(neigh_node_tmp, node_tmp,
Marek Lindnerf987ed62010-12-12 21:57:12 +0000460 &orig_node->neigh_list, list) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000461 seq_printf(seq, " %pM (%3i)",
462 neigh_node_tmp->addr,
463 neigh_node_tmp->tq_avg);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000464 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000465
466 seq_printf(seq, "\n");
467 batman_count++;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000468
469next:
470 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000471 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000472 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000473 }
474
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000475 if (batman_count == 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000476 seq_printf(seq, "No batman nodes in range ...\n");
477
Marek Lindner32ae9b22011-04-20 15:40:58 +0200478out:
479 if (primary_if)
480 hardif_free_ref(primary_if);
481 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000482}
483
484static int orig_node_add_if(struct orig_node *orig_node, int max_if_num)
485{
486 void *data_ptr;
487
488 data_ptr = kmalloc(max_if_num * sizeof(unsigned long) * NUM_WORDS,
489 GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700490 if (!data_ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000491 return -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000492
493 memcpy(data_ptr, orig_node->bcast_own,
494 (max_if_num - 1) * sizeof(unsigned long) * NUM_WORDS);
495 kfree(orig_node->bcast_own);
496 orig_node->bcast_own = data_ptr;
497
498 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700499 if (!data_ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000500 return -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000501
502 memcpy(data_ptr, orig_node->bcast_own_sum,
503 (max_if_num - 1) * sizeof(uint8_t));
504 kfree(orig_node->bcast_own_sum);
505 orig_node->bcast_own_sum = data_ptr;
506
507 return 0;
508}
509
Marek Lindnere6c10f42011-02-18 12:33:20 +0000510int orig_hash_add_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000511{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000512 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000513 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000514 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000515 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000516 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200517 uint32_t i;
518 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000519
520 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
521 * if_num */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000522 for (i = 0; i < hash->size; i++) {
523 head = &hash->table[i];
524
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000525 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000526 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000527 spin_lock_bh(&orig_node->ogm_cnt_lock);
528 ret = orig_node_add_if(orig_node, max_if_num);
529 spin_unlock_bh(&orig_node->ogm_cnt_lock);
530
531 if (ret == -1)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000532 goto err;
533 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000534 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000535 }
536
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000537 return 0;
538
539err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000540 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000541 return -ENOMEM;
542}
543
544static int orig_node_del_if(struct orig_node *orig_node,
545 int max_if_num, int del_if_num)
546{
547 void *data_ptr = NULL;
548 int chunk_size;
549
550 /* last interface was removed */
551 if (max_if_num == 0)
552 goto free_bcast_own;
553
554 chunk_size = sizeof(unsigned long) * NUM_WORDS;
555 data_ptr = kmalloc(max_if_num * chunk_size, GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700556 if (!data_ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000557 return -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000558
559 /* copy first part */
560 memcpy(data_ptr, orig_node->bcast_own, del_if_num * chunk_size);
561
562 /* copy second part */
Sven Eckelmann38e3c5f2011-05-14 23:14:49 +0200563 memcpy((char *)data_ptr + del_if_num * chunk_size,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000564 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);
Joe Perches320f4222011-08-29 14:17:24 -0700575 if (!data_ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000576 return -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000577
578 memcpy(data_ptr, orig_node->bcast_own_sum,
579 del_if_num * sizeof(uint8_t));
580
Sven Eckelmann38e3c5f2011-05-14 23:14:49 +0200581 memcpy((char *)data_ptr + del_if_num * sizeof(uint8_t),
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000582 orig_node->bcast_own_sum + ((del_if_num + 1) * sizeof(uint8_t)),
583 (max_if_num - del_if_num) * sizeof(uint8_t));
584
585free_own_sum:
586 kfree(orig_node->bcast_own_sum);
587 orig_node->bcast_own_sum = data_ptr;
588
589 return 0;
590}
591
Marek Lindnere6c10f42011-02-18 12:33:20 +0000592int orig_hash_del_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000593{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000594 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000595 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000596 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000597 struct hlist_head *head;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000598 struct hard_iface *hard_iface_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000599 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200600 uint32_t i;
601 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000602
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}