blob: f4b62011ca3f45b252aafe789b4142d66e61a8ed [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);
Marek Lindner0b0094e2012-03-01 15:35:20 +080038 queue_delayed_work(bat_event_workqueue,
39 &bat_priv->orig_work, msecs_to_jiffies(1000));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000040}
41
Sven Eckelmannb8e2dd12011-06-15 15:08:59 +020042/* returns 1 if they are the same originator */
43static int compare_orig(const struct hlist_node *node, const void *data2)
44{
45 const void *data1 = container_of(node, struct orig_node, hash_entry);
46
47 return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0);
48}
49
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000050int originator_init(struct bat_priv *bat_priv)
51{
52 if (bat_priv->orig_hash)
53 return 1;
54
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000055 bat_priv->orig_hash = hash_new(1024);
56
57 if (!bat_priv->orig_hash)
58 goto err;
59
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000060 start_purge_timer(bat_priv);
61 return 1;
62
63err:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000064 return 0;
65}
66
Marek Lindner44524fc2011-02-10 14:33:53 +000067void neigh_node_free_ref(struct neigh_node *neigh_node)
Simon Wunderlicha4c135c2011-01-19 20:01:43 +000068{
Marek Lindner44524fc2011-02-10 14:33:53 +000069 if (atomic_dec_and_test(&neigh_node->refcount))
Paul E. McKenneyae179ae2011-05-01 23:27:50 -070070 kfree_rcu(neigh_node, rcu);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +000071}
72
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000073/* increases the refcounter of a found router */
74struct neigh_node *orig_node_get_router(struct orig_node *orig_node)
75{
76 struct neigh_node *router;
77
78 rcu_read_lock();
79 router = rcu_dereference(orig_node->router);
80
81 if (router && !atomic_inc_not_zero(&router->refcount))
82 router = NULL;
83
84 rcu_read_unlock();
85 return router;
86}
87
Marek Lindner7ae8b282012-03-01 15:35:21 +080088struct neigh_node *batadv_neigh_node_new(struct hard_iface *hard_iface,
89 const uint8_t *neigh_addr,
90 uint32_t seqno)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000091{
Marek Lindner7ae8b282012-03-01 15:35:21 +080092 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000093 struct neigh_node *neigh_node;
94
Sven Eckelmann704509b2011-05-14 23:14:54 +020095 neigh_node = kzalloc(sizeof(*neigh_node), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000096 if (!neigh_node)
Marek Lindner7ae8b282012-03-01 15:35:21 +080097 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000098
Marek Lindner9591a792010-12-12 21:57:11 +000099 INIT_HLIST_NODE(&neigh_node->list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000100
Marek Lindner7ae8b282012-03-01 15:35:21 +0800101 memcpy(neigh_node->addr, neigh_addr, ETH_ALEN);
Marek Lindner1605d0d2011-02-18 12:28:11 +0000102
103 /* extra reference for return */
104 atomic_set(&neigh_node->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000105
Marek Lindner7ae8b282012-03-01 15:35:21 +0800106 bat_dbg(DBG_BATMAN, bat_priv,
107 "Creating new neighbor %pM, initial seqno %d\n",
108 neigh_addr, seqno);
109
110out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000111 return neigh_node;
112}
113
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000114static void orig_node_free_rcu(struct rcu_head *rcu)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000115{
Marek Lindner9591a792010-12-12 21:57:11 +0000116 struct hlist_node *node, *node_tmp;
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000117 struct neigh_node *neigh_node, *tmp_neigh_node;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000118 struct orig_node *orig_node;
119
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000120 orig_node = container_of(rcu, struct orig_node, rcu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000121
Marek Lindnerf987ed62010-12-12 21:57:12 +0000122 spin_lock_bh(&orig_node->neigh_list_lock);
123
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000124 /* for all bonding members ... */
125 list_for_each_entry_safe(neigh_node, tmp_neigh_node,
126 &orig_node->bond_list, bonding_list) {
127 list_del_rcu(&neigh_node->bonding_list);
Marek Lindner44524fc2011-02-10 14:33:53 +0000128 neigh_node_free_ref(neigh_node);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000129 }
130
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000131 /* for all neighbors towards this originator ... */
Marek Lindner9591a792010-12-12 21:57:11 +0000132 hlist_for_each_entry_safe(neigh_node, node, node_tmp,
133 &orig_node->neigh_list, list) {
Marek Lindnerf987ed62010-12-12 21:57:12 +0000134 hlist_del_rcu(&neigh_node->list);
Marek Lindner44524fc2011-02-10 14:33:53 +0000135 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000136 }
137
Marek Lindnerf987ed62010-12-12 21:57:12 +0000138 spin_unlock_bh(&orig_node->neigh_list_lock);
139
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000140 frag_list_free(&orig_node->frag_list);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200141 tt_global_del_orig(orig_node->bat_priv, orig_node,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100142 "originator timed out");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000143
Antonio Quartullia73105b2011-04-27 14:27:44 +0200144 kfree(orig_node->tt_buff);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000145 kfree(orig_node->bcast_own);
146 kfree(orig_node->bcast_own_sum);
147 kfree(orig_node);
148}
149
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000150void orig_node_free_ref(struct orig_node *orig_node)
151{
152 if (atomic_dec_and_test(&orig_node->refcount))
153 call_rcu(&orig_node->rcu, orig_node_free_rcu);
154}
155
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000156void originator_free(struct bat_priv *bat_priv)
157{
Marek Lindner16b1aba2011-01-19 20:01:42 +0000158 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000159 struct hlist_node *node, *node_tmp;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000160 struct hlist_head *head;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000161 spinlock_t *list_lock; /* spinlock to protect write access */
162 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200163 uint32_t i;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000164
165 if (!hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000166 return;
167
168 cancel_delayed_work_sync(&bat_priv->orig_work);
169
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000170 bat_priv->orig_hash = NULL;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000171
172 for (i = 0; i < hash->size; i++) {
173 head = &hash->table[i];
174 list_lock = &hash->list_locks[i];
175
176 spin_lock_bh(list_lock);
Marek Lindner7aadf882011-02-18 12:28:09 +0000177 hlist_for_each_entry_safe(orig_node, node, node_tmp,
178 head, hash_entry) {
Marek Lindner16b1aba2011-01-19 20:01:42 +0000179
Marek Lindner7aadf882011-02-18 12:28:09 +0000180 hlist_del_rcu(node);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000181 orig_node_free_ref(orig_node);
Marek Lindner16b1aba2011-01-19 20:01:42 +0000182 }
183 spin_unlock_bh(list_lock);
184 }
185
186 hash_destroy(hash);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000187}
188
189/* this function finds or creates an originator entry for the given
190 * address if it does not exits */
Sven Eckelmann747e4222011-05-14 23:14:50 +0200191struct orig_node *get_orig_node(struct bat_priv *bat_priv, const uint8_t *addr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000192{
193 struct orig_node *orig_node;
194 int size;
195 int hash_added;
196
Marek Lindner7aadf882011-02-18 12:28:09 +0000197 orig_node = orig_hash_find(bat_priv, addr);
198 if (orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000199 return orig_node;
200
201 bat_dbg(DBG_BATMAN, bat_priv,
202 "Creating new originator: %pM\n", addr);
203
Sven Eckelmann704509b2011-05-14 23:14:54 +0200204 orig_node = kzalloc(sizeof(*orig_node), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000205 if (!orig_node)
206 return NULL;
207
Marek Lindner9591a792010-12-12 21:57:11 +0000208 INIT_HLIST_HEAD(&orig_node->neigh_list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000209 INIT_LIST_HEAD(&orig_node->bond_list);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000210 spin_lock_init(&orig_node->ogm_cnt_lock);
Marek Lindnerf3e00082011-01-25 21:52:11 +0000211 spin_lock_init(&orig_node->bcast_seqno_lock);
Marek Lindnerf987ed62010-12-12 21:57:12 +0000212 spin_lock_init(&orig_node->neigh_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200213 spin_lock_init(&orig_node->tt_buff_lock);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000214
215 /* extra reference for return */
216 atomic_set(&orig_node->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000217
Antonio Quartulli17071572011-11-07 16:36:40 +0100218 orig_node->tt_initialised = false;
Antonio Quartullicc47f662011-04-27 14:27:57 +0200219 orig_node->tt_poss_change = false;
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 Quartullic8c991b2011-07-07 01:40:57 +0200223 orig_node->tt_crc = 0;
224 atomic_set(&orig_node->last_ttvn, 0);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200225 orig_node->tt_buff = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200226 orig_node->tt_buff_len = 0;
227 atomic_set(&orig_node->tt_size, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000228 orig_node->bcast_seqno_reset = jiffies - 1
229 - msecs_to_jiffies(RESET_PROTECTION_MS);
230 orig_node->batman_seqno_reset = jiffies - 1
231 - msecs_to_jiffies(RESET_PROTECTION_MS);
232
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000233 atomic_set(&orig_node->bond_candidates, 0);
234
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000235 size = bat_priv->num_ifaces * sizeof(unsigned long) * NUM_WORDS;
236
237 orig_node->bcast_own = kzalloc(size, GFP_ATOMIC);
238 if (!orig_node->bcast_own)
239 goto free_orig_node;
240
241 size = bat_priv->num_ifaces * sizeof(uint8_t);
242 orig_node->bcast_own_sum = kzalloc(size, GFP_ATOMIC);
243
244 INIT_LIST_HEAD(&orig_node->frag_list);
245 orig_node->last_frag_packet = 0;
246
247 if (!orig_node->bcast_own_sum)
248 goto free_bcast_own;
249
Marek Lindner7aadf882011-02-18 12:28:09 +0000250 hash_added = hash_add(bat_priv->orig_hash, compare_orig,
251 choose_orig, orig_node, &orig_node->hash_entry);
Antonio Quartulli1a1f37d2011-07-10 00:36:36 +0200252 if (hash_added != 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000253 goto free_bcast_own_sum;
254
255 return orig_node;
256free_bcast_own_sum:
257 kfree(orig_node->bcast_own_sum);
258free_bcast_own:
259 kfree(orig_node->bcast_own);
260free_orig_node:
261 kfree(orig_node);
262 return NULL;
263}
264
265static bool purge_orig_neighbors(struct bat_priv *bat_priv,
266 struct orig_node *orig_node,
267 struct neigh_node **best_neigh_node)
268{
Marek Lindner9591a792010-12-12 21:57:11 +0000269 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000270 struct neigh_node *neigh_node;
271 bool neigh_purged = false;
Marek Lindner0b0094e2012-03-01 15:35:20 +0800272 unsigned long last_seen;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000273
274 *best_neigh_node = NULL;
275
Marek Lindnerf987ed62010-12-12 21:57:12 +0000276 spin_lock_bh(&orig_node->neigh_list_lock);
277
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000278 /* for all neighbors towards this originator ... */
Marek Lindner9591a792010-12-12 21:57:11 +0000279 hlist_for_each_entry_safe(neigh_node, node, node_tmp,
280 &orig_node->neigh_list, list) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000281
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800282 if ((has_timed_out(neigh_node->last_seen, PURGE_TIMEOUT)) ||
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000283 (neigh_node->if_incoming->if_status == IF_INACTIVE) ||
Marek Lindner1a241a52011-01-19 19:16:10 +0000284 (neigh_node->if_incoming->if_status == IF_NOT_IN_USE) ||
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000285 (neigh_node->if_incoming->if_status == IF_TO_BE_REMOVED)) {
286
Marek Lindner0b0094e2012-03-01 15:35:20 +0800287 last_seen = neigh_node->last_seen;
288
Marek Lindner1a241a52011-01-19 19:16:10 +0000289 if ((neigh_node->if_incoming->if_status ==
290 IF_INACTIVE) ||
291 (neigh_node->if_incoming->if_status ==
292 IF_NOT_IN_USE) ||
293 (neigh_node->if_incoming->if_status ==
294 IF_TO_BE_REMOVED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000295 bat_dbg(DBG_BATMAN, bat_priv,
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100296 "neighbor purge: originator %pM, neighbor: %pM, iface: %s\n",
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000297 orig_node->orig, neigh_node->addr,
298 neigh_node->if_incoming->net_dev->name);
299 else
300 bat_dbg(DBG_BATMAN, bat_priv,
Marek Lindner0b0094e2012-03-01 15:35:20 +0800301 "neighbor timeout: originator %pM, neighbor: %pM, last_seen: %u\n",
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000302 orig_node->orig, neigh_node->addr,
Marek Lindner0b0094e2012-03-01 15:35:20 +0800303 jiffies_to_msecs(last_seen));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000304
305 neigh_purged = true;
Marek Lindner9591a792010-12-12 21:57:11 +0000306
Marek Lindnerf987ed62010-12-12 21:57:12 +0000307 hlist_del_rcu(&neigh_node->list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000308 bonding_candidate_del(orig_node, neigh_node);
Marek Lindner44524fc2011-02-10 14:33:53 +0000309 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000310 } else {
311 if ((!*best_neigh_node) ||
312 (neigh_node->tq_avg > (*best_neigh_node)->tq_avg))
313 *best_neigh_node = neigh_node;
314 }
315 }
Marek Lindnerf987ed62010-12-12 21:57:12 +0000316
317 spin_unlock_bh(&orig_node->neigh_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000318 return neigh_purged;
319}
320
321static bool purge_orig_node(struct bat_priv *bat_priv,
322 struct orig_node *orig_node)
323{
324 struct neigh_node *best_neigh_node;
325
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800326 if (has_timed_out(orig_node->last_seen, 2 * PURGE_TIMEOUT)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000327 bat_dbg(DBG_BATMAN, bat_priv,
Marek Lindner0b0094e2012-03-01 15:35:20 +0800328 "Originator timeout: originator %pM, last_seen %u\n",
329 orig_node->orig,
330 jiffies_to_msecs(orig_node->last_seen));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000331 return true;
332 } else {
333 if (purge_orig_neighbors(bat_priv, orig_node,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100334 &best_neigh_node))
Marek Lindnerfc957272011-07-30 12:04:12 +0200335 update_route(bat_priv, orig_node, best_neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000336 }
337
338 return false;
339}
340
341static void _purge_orig(struct bat_priv *bat_priv)
342{
343 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000344 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000345 struct hlist_head *head;
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000346 spinlock_t *list_lock; /* spinlock to protect write access */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000347 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200348 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000349
350 if (!hash)
351 return;
352
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000353 /* for all origins... */
354 for (i = 0; i < hash->size; i++) {
355 head = &hash->table[i];
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000356 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000357
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000358 spin_lock_bh(list_lock);
Marek Lindner7aadf882011-02-18 12:28:09 +0000359 hlist_for_each_entry_safe(orig_node, node, node_tmp,
360 head, hash_entry) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000361 if (purge_orig_node(bat_priv, orig_node)) {
362 if (orig_node->gw_flags)
363 gw_node_delete(bat_priv, orig_node);
Marek Lindner7aadf882011-02-18 12:28:09 +0000364 hlist_del_rcu(node);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000365 orig_node_free_ref(orig_node);
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000366 continue;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000367 }
368
Marek Lindner032b7962011-12-20 19:30:40 +0800369 if (has_timed_out(orig_node->last_frag_packet,
370 FRAG_TIMEOUT))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000371 frag_list_free(&orig_node->frag_list);
372 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000373 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000374 }
375
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000376 gw_node_purge(bat_priv);
377 gw_election(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000378}
379
380static void purge_orig(struct work_struct *work)
381{
382 struct delayed_work *delayed_work =
383 container_of(work, struct delayed_work, work);
384 struct bat_priv *bat_priv =
385 container_of(delayed_work, struct bat_priv, orig_work);
386
387 _purge_orig(bat_priv);
388 start_purge_timer(bat_priv);
389}
390
391void purge_orig_ref(struct bat_priv *bat_priv)
392{
393 _purge_orig(bat_priv);
394}
395
396int orig_seq_print_text(struct seq_file *seq, void *offset)
397{
398 struct net_device *net_dev = (struct net_device *)seq->private;
399 struct bat_priv *bat_priv = netdev_priv(net_dev);
400 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000401 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000402 struct hlist_head *head;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200403 struct hard_iface *primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000404 struct orig_node *orig_node;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000405 struct neigh_node *neigh_node, *neigh_node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000406 int batman_count = 0;
407 int last_seen_secs;
408 int last_seen_msecs;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200409 uint32_t i;
410 int ret = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000411
Marek Lindner32ae9b22011-04-20 15:40:58 +0200412 primary_if = primary_if_get_selected(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000413
Marek Lindner32ae9b22011-04-20 15:40:58 +0200414 if (!primary_if) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100415 ret = seq_printf(seq,
416 "BATMAN mesh %s disabled - please specify interfaces to enable it\n",
Marek Lindner32ae9b22011-04-20 15:40:58 +0200417 net_dev->name);
418 goto out;
419 }
420
421 if (primary_if->if_status != IF_ACTIVE) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100422 ret = seq_printf(seq,
423 "BATMAN mesh %s disabled - primary interface not active\n",
Marek Lindner32ae9b22011-04-20 15:40:58 +0200424 net_dev->name);
425 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000426 }
427
Sven Eckelmann44c43492011-07-05 10:42:51 +0200428 seq_printf(seq, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s)]\n",
429 SOURCE_VERSION, primary_if->net_dev->name,
Marek Lindner32ae9b22011-04-20 15:40:58 +0200430 primary_if->net_dev->dev_addr, net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000431 seq_printf(seq, " %-15s %s (%s/%i) %17s [%10s]: %20s ...\n",
432 "Originator", "last-seen", "#", TQ_MAX_VALUE, "Nexthop",
433 "outgoingIF", "Potential nexthops");
434
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000435 for (i = 0; i < hash->size; i++) {
436 head = &hash->table[i];
437
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000438 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000439 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000440 neigh_node = orig_node_get_router(orig_node);
441 if (!neigh_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000442 continue;
443
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000444 if (neigh_node->tq_avg == 0)
445 goto next;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000446
447 last_seen_secs = jiffies_to_msecs(jiffies -
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800448 orig_node->last_seen) / 1000;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000449 last_seen_msecs = jiffies_to_msecs(jiffies -
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800450 orig_node->last_seen) % 1000;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000451
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000452 seq_printf(seq, "%pM %4i.%03is (%3i) %pM [%10s]:",
453 orig_node->orig, last_seen_secs,
454 last_seen_msecs, neigh_node->tq_avg,
455 neigh_node->addr,
456 neigh_node->if_incoming->net_dev->name);
457
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000458 hlist_for_each_entry_rcu(neigh_node_tmp, node_tmp,
Marek Lindnerf987ed62010-12-12 21:57:12 +0000459 &orig_node->neigh_list, list) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000460 seq_printf(seq, " %pM (%3i)",
461 neigh_node_tmp->addr,
462 neigh_node_tmp->tq_avg);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000463 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000464
465 seq_printf(seq, "\n");
466 batman_count++;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000467
468next:
469 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000470 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000471 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000472 }
473
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000474 if (batman_count == 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000475 seq_printf(seq, "No batman nodes in range ...\n");
476
Marek Lindner32ae9b22011-04-20 15:40:58 +0200477out:
478 if (primary_if)
479 hardif_free_ref(primary_if);
480 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000481}
482
483static int orig_node_add_if(struct orig_node *orig_node, int max_if_num)
484{
485 void *data_ptr;
486
487 data_ptr = kmalloc(max_if_num * sizeof(unsigned long) * NUM_WORDS,
488 GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700489 if (!data_ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000490 return -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000491
492 memcpy(data_ptr, orig_node->bcast_own,
493 (max_if_num - 1) * sizeof(unsigned long) * NUM_WORDS);
494 kfree(orig_node->bcast_own);
495 orig_node->bcast_own = data_ptr;
496
497 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700498 if (!data_ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000499 return -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000500
501 memcpy(data_ptr, orig_node->bcast_own_sum,
502 (max_if_num - 1) * sizeof(uint8_t));
503 kfree(orig_node->bcast_own_sum);
504 orig_node->bcast_own_sum = data_ptr;
505
506 return 0;
507}
508
Marek Lindnere6c10f42011-02-18 12:33:20 +0000509int orig_hash_add_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000510{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000511 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000512 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000513 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000514 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000515 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200516 uint32_t i;
517 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000518
519 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
520 * if_num */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000521 for (i = 0; i < hash->size; i++) {
522 head = &hash->table[i];
523
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000524 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000525 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000526 spin_lock_bh(&orig_node->ogm_cnt_lock);
527 ret = orig_node_add_if(orig_node, max_if_num);
528 spin_unlock_bh(&orig_node->ogm_cnt_lock);
529
530 if (ret == -1)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000531 goto err;
532 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000533 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000534 }
535
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000536 return 0;
537
538err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000539 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000540 return -ENOMEM;
541}
542
543static int orig_node_del_if(struct orig_node *orig_node,
544 int max_if_num, int del_if_num)
545{
546 void *data_ptr = NULL;
547 int chunk_size;
548
549 /* last interface was removed */
550 if (max_if_num == 0)
551 goto free_bcast_own;
552
553 chunk_size = sizeof(unsigned long) * NUM_WORDS;
554 data_ptr = kmalloc(max_if_num * chunk_size, GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700555 if (!data_ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000556 return -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000557
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);
Joe Perches320f4222011-08-29 14:17:24 -0700574 if (!data_ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000575 return -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000576
577 memcpy(data_ptr, orig_node->bcast_own_sum,
578 del_if_num * sizeof(uint8_t));
579
Sven Eckelmann38e3c5f2011-05-14 23:14:49 +0200580 memcpy((char *)data_ptr + del_if_num * sizeof(uint8_t),
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000581 orig_node->bcast_own_sum + ((del_if_num + 1) * sizeof(uint8_t)),
582 (max_if_num - del_if_num) * sizeof(uint8_t));
583
584free_own_sum:
585 kfree(orig_node->bcast_own_sum);
586 orig_node->bcast_own_sum = data_ptr;
587
588 return 0;
589}
590
Marek Lindnere6c10f42011-02-18 12:33:20 +0000591int orig_hash_del_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000592{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000593 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000594 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000595 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000596 struct hlist_head *head;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000597 struct hard_iface *hard_iface_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000598 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200599 uint32_t i;
600 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000601
602 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
603 * if_num */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000604 for (i = 0; i < hash->size; i++) {
605 head = &hash->table[i];
606
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000607 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000608 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000609 spin_lock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000610 ret = orig_node_del_if(orig_node, max_if_num,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000611 hard_iface->if_num);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000612 spin_unlock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000613
614 if (ret == -1)
615 goto err;
616 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000617 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000618 }
619
620 /* renumber remaining batman interfaces _inside_ of orig_hash_lock */
621 rcu_read_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000622 list_for_each_entry_rcu(hard_iface_tmp, &hardif_list, list) {
623 if (hard_iface_tmp->if_status == IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000624 continue;
625
Marek Lindnere6c10f42011-02-18 12:33:20 +0000626 if (hard_iface == hard_iface_tmp)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000627 continue;
628
Marek Lindnere6c10f42011-02-18 12:33:20 +0000629 if (hard_iface->soft_iface != hard_iface_tmp->soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000630 continue;
631
Marek Lindnere6c10f42011-02-18 12:33:20 +0000632 if (hard_iface_tmp->if_num > hard_iface->if_num)
633 hard_iface_tmp->if_num--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000634 }
635 rcu_read_unlock();
636
Marek Lindnere6c10f42011-02-18 12:33:20 +0000637 hard_iface->if_num = -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000638 return 0;
639
640err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000641 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000642 return -ENOMEM;
643}