blob: 030666c12daf117e6cfb98f425be6d972cdba393 [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 Eckelmann7d211ef2012-05-12 02:09:34 +020050int batadv_originator_init(struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000051{
52 if (bat_priv->orig_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +020053 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000054
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +020055 bat_priv->orig_hash = batadv_hash_new(1024);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000056
57 if (!bat_priv->orig_hash)
58 goto err;
59
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000060 start_purge_timer(bat_priv);
Sven Eckelmann5346c352012-05-05 13:27:28 +020061 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000062
63err:
Sven Eckelmann5346c352012-05-05 13:27:28 +020064 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000065}
66
Sven Eckelmann7d211ef2012-05-12 02:09:34 +020067void batadv_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 */
Sven Eckelmann7d211ef2012-05-12 02:09:34 +020074struct neigh_node *batadv_orig_node_get_router(struct orig_node *orig_node)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000075{
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 Lindnere3b0d0d2012-03-17 15:28:32 +0800102 spin_lock_init(&neigh_node->lq_update_lock);
Marek Lindner1605d0d2011-02-18 12:28:11 +0000103
104 /* extra reference for return */
105 atomic_set(&neigh_node->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000106
Marek Lindner7ae8b282012-03-01 15:35:21 +0800107 bat_dbg(DBG_BATMAN, bat_priv,
108 "Creating new neighbor %pM, initial seqno %d\n",
109 neigh_addr, seqno);
110
111out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000112 return neigh_node;
113}
114
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000115static void orig_node_free_rcu(struct rcu_head *rcu)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000116{
Marek Lindner9591a792010-12-12 21:57:11 +0000117 struct hlist_node *node, *node_tmp;
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000118 struct neigh_node *neigh_node, *tmp_neigh_node;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000119 struct orig_node *orig_node;
120
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000121 orig_node = container_of(rcu, struct orig_node, rcu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000122
Marek Lindnerf987ed62010-12-12 21:57:12 +0000123 spin_lock_bh(&orig_node->neigh_list_lock);
124
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000125 /* for all bonding members ... */
126 list_for_each_entry_safe(neigh_node, tmp_neigh_node,
127 &orig_node->bond_list, bonding_list) {
128 list_del_rcu(&neigh_node->bonding_list);
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200129 batadv_neigh_node_free_ref(neigh_node);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000130 }
131
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000132 /* for all neighbors towards this originator ... */
Marek Lindner9591a792010-12-12 21:57:11 +0000133 hlist_for_each_entry_safe(neigh_node, node, node_tmp,
134 &orig_node->neigh_list, list) {
Marek Lindnerf987ed62010-12-12 21:57:12 +0000135 hlist_del_rcu(&neigh_node->list);
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200136 batadv_neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000137 }
138
Marek Lindnerf987ed62010-12-12 21:57:12 +0000139 spin_unlock_bh(&orig_node->neigh_list_lock);
140
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000141 frag_list_free(&orig_node->frag_list);
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200142 batadv_tt_global_del_orig(orig_node->bat_priv, orig_node,
143 "originator timed out");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000144
Antonio Quartullia73105b2011-04-27 14:27:44 +0200145 kfree(orig_node->tt_buff);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000146 kfree(orig_node->bcast_own);
147 kfree(orig_node->bcast_own_sum);
148 kfree(orig_node);
149}
150
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200151void batadv_orig_node_free_ref(struct orig_node *orig_node)
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000152{
153 if (atomic_dec_and_test(&orig_node->refcount))
154 call_rcu(&orig_node->rcu, orig_node_free_rcu);
155}
156
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200157void batadv_originator_free(struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000158{
Marek Lindner16b1aba2011-01-19 20:01:42 +0000159 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000160 struct hlist_node *node, *node_tmp;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000161 struct hlist_head *head;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000162 spinlock_t *list_lock; /* spinlock to protect write access */
163 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200164 uint32_t i;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000165
166 if (!hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000167 return;
168
169 cancel_delayed_work_sync(&bat_priv->orig_work);
170
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000171 bat_priv->orig_hash = NULL;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000172
173 for (i = 0; i < hash->size; i++) {
174 head = &hash->table[i];
175 list_lock = &hash->list_locks[i];
176
177 spin_lock_bh(list_lock);
Marek Lindner7aadf882011-02-18 12:28:09 +0000178 hlist_for_each_entry_safe(orig_node, node, node_tmp,
179 head, hash_entry) {
Marek Lindner16b1aba2011-01-19 20:01:42 +0000180
Marek Lindner7aadf882011-02-18 12:28:09 +0000181 hlist_del_rcu(node);
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200182 batadv_orig_node_free_ref(orig_node);
Marek Lindner16b1aba2011-01-19 20:01:42 +0000183 }
184 spin_unlock_bh(list_lock);
185 }
186
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +0200187 batadv_hash_destroy(hash);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000188}
189
190/* this function finds or creates an originator entry for the given
191 * address if it does not exits */
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200192struct orig_node *batadv_get_orig_node(struct bat_priv *bat_priv,
193 const uint8_t *addr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000194{
195 struct orig_node *orig_node;
196 int size;
197 int hash_added;
198
Marek Lindner7aadf882011-02-18 12:28:09 +0000199 orig_node = orig_hash_find(bat_priv, addr);
200 if (orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000201 return orig_node;
202
203 bat_dbg(DBG_BATMAN, bat_priv,
204 "Creating new originator: %pM\n", addr);
205
Sven Eckelmann704509b2011-05-14 23:14:54 +0200206 orig_node = kzalloc(sizeof(*orig_node), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000207 if (!orig_node)
208 return NULL;
209
Marek Lindner9591a792010-12-12 21:57:11 +0000210 INIT_HLIST_HEAD(&orig_node->neigh_list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000211 INIT_LIST_HEAD(&orig_node->bond_list);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000212 spin_lock_init(&orig_node->ogm_cnt_lock);
Marek Lindnerf3e00082011-01-25 21:52:11 +0000213 spin_lock_init(&orig_node->bcast_seqno_lock);
Marek Lindnerf987ed62010-12-12 21:57:12 +0000214 spin_lock_init(&orig_node->neigh_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200215 spin_lock_init(&orig_node->tt_buff_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
Antonio Quartulli17071572011-11-07 16:36:40 +0100220 orig_node->tt_initialised = false;
Antonio Quartullicc47f662011-04-27 14:27:57 +0200221 orig_node->tt_poss_change = false;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000222 orig_node->bat_priv = bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000223 memcpy(orig_node->orig, addr, ETH_ALEN);
224 orig_node->router = NULL;
Antonio Quartullic8c991b2011-07-07 01:40:57 +0200225 orig_node->tt_crc = 0;
226 atomic_set(&orig_node->last_ttvn, 0);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200227 orig_node->tt_buff = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200228 orig_node->tt_buff_len = 0;
229 atomic_set(&orig_node->tt_size, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000230 orig_node->bcast_seqno_reset = jiffies - 1
231 - msecs_to_jiffies(RESET_PROTECTION_MS);
232 orig_node->batman_seqno_reset = jiffies - 1
233 - msecs_to_jiffies(RESET_PROTECTION_MS);
234
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000235 atomic_set(&orig_node->bond_candidates, 0);
236
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000237 size = bat_priv->num_ifaces * sizeof(unsigned long) * NUM_WORDS;
238
239 orig_node->bcast_own = kzalloc(size, GFP_ATOMIC);
240 if (!orig_node->bcast_own)
241 goto free_orig_node;
242
243 size = bat_priv->num_ifaces * sizeof(uint8_t);
244 orig_node->bcast_own_sum = kzalloc(size, GFP_ATOMIC);
245
246 INIT_LIST_HEAD(&orig_node->frag_list);
247 orig_node->last_frag_packet = 0;
248
249 if (!orig_node->bcast_own_sum)
250 goto free_bcast_own;
251
Marek Lindner7aadf882011-02-18 12:28:09 +0000252 hash_added = hash_add(bat_priv->orig_hash, compare_orig,
253 choose_orig, orig_node, &orig_node->hash_entry);
Antonio Quartulli1a1f37d2011-07-10 00:36:36 +0200254 if (hash_added != 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000255 goto free_bcast_own_sum;
256
257 return orig_node;
258free_bcast_own_sum:
259 kfree(orig_node->bcast_own_sum);
260free_bcast_own:
261 kfree(orig_node->bcast_own);
262free_orig_node:
263 kfree(orig_node);
264 return NULL;
265}
266
267static bool purge_orig_neighbors(struct bat_priv *bat_priv,
268 struct orig_node *orig_node,
269 struct neigh_node **best_neigh_node)
270{
Marek Lindner9591a792010-12-12 21:57:11 +0000271 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000272 struct neigh_node *neigh_node;
273 bool neigh_purged = false;
Marek Lindner0b0094e2012-03-01 15:35:20 +0800274 unsigned long last_seen;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000275
276 *best_neigh_node = NULL;
277
Marek Lindnerf987ed62010-12-12 21:57:12 +0000278 spin_lock_bh(&orig_node->neigh_list_lock);
279
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000280 /* for all neighbors towards this originator ... */
Marek Lindner9591a792010-12-12 21:57:11 +0000281 hlist_for_each_entry_safe(neigh_node, node, node_tmp,
282 &orig_node->neigh_list, list) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000283
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800284 if ((has_timed_out(neigh_node->last_seen, PURGE_TIMEOUT)) ||
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000285 (neigh_node->if_incoming->if_status == IF_INACTIVE) ||
Marek Lindner1a241a52011-01-19 19:16:10 +0000286 (neigh_node->if_incoming->if_status == IF_NOT_IN_USE) ||
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000287 (neigh_node->if_incoming->if_status == IF_TO_BE_REMOVED)) {
288
Marek Lindner0b0094e2012-03-01 15:35:20 +0800289 last_seen = neigh_node->last_seen;
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,
Marek Lindner0b0094e2012-03-01 15:35:20 +0800303 "neighbor timeout: originator %pM, neighbor: %pM, last_seen: %u\n",
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000304 orig_node->orig, neigh_node->addr,
Marek Lindner0b0094e2012-03-01 15:35:20 +0800305 jiffies_to_msecs(last_seen));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000306
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);
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200310 batadv_bonding_candidate_del(orig_node, neigh_node);
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200311 batadv_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 Lindnerd7b2a972012-03-01 15:35:19 +0800328 if (has_timed_out(orig_node->last_seen, 2 * PURGE_TIMEOUT)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000329 bat_dbg(DBG_BATMAN, bat_priv,
Marek Lindner0b0094e2012-03-01 15:35:20 +0800330 "Originator timeout: originator %pM, last_seen %u\n",
331 orig_node->orig,
332 jiffies_to_msecs(orig_node->last_seen));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000333 return true;
334 } else {
335 if (purge_orig_neighbors(bat_priv, orig_node,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100336 &best_neigh_node))
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200337 batadv_update_route(bat_priv, orig_node,
338 best_neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000339 }
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)
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200366 batadv_gw_node_delete(bat_priv,
367 orig_node);
Marek Lindner7aadf882011-02-18 12:28:09 +0000368 hlist_del_rcu(node);
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200369 batadv_orig_node_free_ref(orig_node);
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000370 continue;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000371 }
372
Marek Lindner032b7962011-12-20 19:30:40 +0800373 if (has_timed_out(orig_node->last_frag_packet,
374 FRAG_TIMEOUT))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000375 frag_list_free(&orig_node->frag_list);
376 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000377 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000378 }
379
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200380 batadv_gw_node_purge(bat_priv);
381 batadv_gw_election(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000382}
383
384static void purge_orig(struct work_struct *work)
385{
386 struct delayed_work *delayed_work =
387 container_of(work, struct delayed_work, work);
388 struct bat_priv *bat_priv =
389 container_of(delayed_work, struct bat_priv, orig_work);
390
391 _purge_orig(bat_priv);
392 start_purge_timer(bat_priv);
393}
394
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200395void batadv_purge_orig_ref(struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000396{
397 _purge_orig(bat_priv);
398}
399
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200400int batadv_orig_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000401{
402 struct net_device *net_dev = (struct net_device *)seq->private;
403 struct bat_priv *bat_priv = netdev_priv(net_dev);
404 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000405 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000406 struct hlist_head *head;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200407 struct hard_iface *primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000408 struct orig_node *orig_node;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000409 struct neigh_node *neigh_node, *neigh_node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000410 int batman_count = 0;
411 int last_seen_secs;
412 int last_seen_msecs;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200413 uint32_t i;
414 int ret = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000415
Marek Lindner32ae9b22011-04-20 15:40:58 +0200416 primary_if = primary_if_get_selected(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000417
Marek Lindner32ae9b22011-04-20 15:40:58 +0200418 if (!primary_if) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100419 ret = seq_printf(seq,
420 "BATMAN mesh %s disabled - please specify interfaces to enable it\n",
Marek Lindner32ae9b22011-04-20 15:40:58 +0200421 net_dev->name);
422 goto out;
423 }
424
425 if (primary_if->if_status != IF_ACTIVE) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100426 ret = seq_printf(seq,
427 "BATMAN mesh %s disabled - primary interface not active\n",
Marek Lindner32ae9b22011-04-20 15:40:58 +0200428 net_dev->name);
429 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000430 }
431
Sven Eckelmann44c43492011-07-05 10:42:51 +0200432 seq_printf(seq, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s)]\n",
433 SOURCE_VERSION, primary_if->net_dev->name,
Marek Lindner32ae9b22011-04-20 15:40:58 +0200434 primary_if->net_dev->dev_addr, net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000435 seq_printf(seq, " %-15s %s (%s/%i) %17s [%10s]: %20s ...\n",
436 "Originator", "last-seen", "#", TQ_MAX_VALUE, "Nexthop",
437 "outgoingIF", "Potential nexthops");
438
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000439 for (i = 0; i < hash->size; i++) {
440 head = &hash->table[i];
441
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000442 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000443 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200444 neigh_node = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000445 if (!neigh_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000446 continue;
447
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000448 if (neigh_node->tq_avg == 0)
449 goto next;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000450
451 last_seen_secs = jiffies_to_msecs(jiffies -
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800452 orig_node->last_seen) / 1000;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000453 last_seen_msecs = jiffies_to_msecs(jiffies -
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800454 orig_node->last_seen) % 1000;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000455
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000456 seq_printf(seq, "%pM %4i.%03is (%3i) %pM [%10s]:",
457 orig_node->orig, last_seen_secs,
458 last_seen_msecs, neigh_node->tq_avg,
459 neigh_node->addr,
460 neigh_node->if_incoming->net_dev->name);
461
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000462 hlist_for_each_entry_rcu(neigh_node_tmp, node_tmp,
Marek Lindnerf987ed62010-12-12 21:57:12 +0000463 &orig_node->neigh_list, list) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000464 seq_printf(seq, " %pM (%3i)",
465 neigh_node_tmp->addr,
466 neigh_node_tmp->tq_avg);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000467 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000468
469 seq_printf(seq, "\n");
470 batman_count++;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000471
472next:
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200473 batadv_neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000474 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000475 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000476 }
477
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000478 if (batman_count == 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000479 seq_printf(seq, "No batman nodes in range ...\n");
480
Marek Lindner32ae9b22011-04-20 15:40:58 +0200481out:
482 if (primary_if)
483 hardif_free_ref(primary_if);
484 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000485}
486
487static int orig_node_add_if(struct orig_node *orig_node, int max_if_num)
488{
489 void *data_ptr;
490
491 data_ptr = kmalloc(max_if_num * sizeof(unsigned long) * NUM_WORDS,
492 GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700493 if (!data_ptr)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200494 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000495
496 memcpy(data_ptr, orig_node->bcast_own,
497 (max_if_num - 1) * sizeof(unsigned long) * NUM_WORDS);
498 kfree(orig_node->bcast_own);
499 orig_node->bcast_own = data_ptr;
500
501 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700502 if (!data_ptr)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200503 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000504
505 memcpy(data_ptr, orig_node->bcast_own_sum,
506 (max_if_num - 1) * sizeof(uint8_t));
507 kfree(orig_node->bcast_own_sum);
508 orig_node->bcast_own_sum = data_ptr;
509
510 return 0;
511}
512
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200513int batadv_orig_hash_add_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000514{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000515 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000516 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000517 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000518 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000519 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200520 uint32_t i;
521 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000522
523 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
524 * if_num */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000525 for (i = 0; i < hash->size; i++) {
526 head = &hash->table[i];
527
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000528 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000529 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000530 spin_lock_bh(&orig_node->ogm_cnt_lock);
531 ret = orig_node_add_if(orig_node, max_if_num);
532 spin_unlock_bh(&orig_node->ogm_cnt_lock);
533
Sven Eckelmann5346c352012-05-05 13:27:28 +0200534 if (ret == -ENOMEM)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000535 goto err;
536 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000537 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000538 }
539
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000540 return 0;
541
542err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000543 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000544 return -ENOMEM;
545}
546
547static int orig_node_del_if(struct orig_node *orig_node,
548 int max_if_num, int del_if_num)
549{
550 void *data_ptr = NULL;
551 int chunk_size;
552
553 /* last interface was removed */
554 if (max_if_num == 0)
555 goto free_bcast_own;
556
557 chunk_size = sizeof(unsigned long) * NUM_WORDS;
558 data_ptr = kmalloc(max_if_num * chunk_size, GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700559 if (!data_ptr)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200560 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000561
562 /* copy first part */
563 memcpy(data_ptr, orig_node->bcast_own, del_if_num * chunk_size);
564
565 /* copy second part */
Sven Eckelmann38e3c5f2011-05-14 23:14:49 +0200566 memcpy((char *)data_ptr + del_if_num * chunk_size,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000567 orig_node->bcast_own + ((del_if_num + 1) * chunk_size),
568 (max_if_num - del_if_num) * chunk_size);
569
570free_bcast_own:
571 kfree(orig_node->bcast_own);
572 orig_node->bcast_own = data_ptr;
573
574 if (max_if_num == 0)
575 goto free_own_sum;
576
577 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700578 if (!data_ptr)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200579 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000580
581 memcpy(data_ptr, orig_node->bcast_own_sum,
582 del_if_num * sizeof(uint8_t));
583
Sven Eckelmann38e3c5f2011-05-14 23:14:49 +0200584 memcpy((char *)data_ptr + del_if_num * sizeof(uint8_t),
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000585 orig_node->bcast_own_sum + ((del_if_num + 1) * sizeof(uint8_t)),
586 (max_if_num - del_if_num) * sizeof(uint8_t));
587
588free_own_sum:
589 kfree(orig_node->bcast_own_sum);
590 orig_node->bcast_own_sum = data_ptr;
591
592 return 0;
593}
594
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200595int batadv_orig_hash_del_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000596{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000597 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000598 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000599 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000600 struct hlist_head *head;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000601 struct hard_iface *hard_iface_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000602 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200603 uint32_t i;
604 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000605
606 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
607 * if_num */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000608 for (i = 0; i < hash->size; i++) {
609 head = &hash->table[i];
610
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000611 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000612 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000613 spin_lock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000614 ret = orig_node_del_if(orig_node, max_if_num,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000615 hard_iface->if_num);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000616 spin_unlock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000617
Sven Eckelmann5346c352012-05-05 13:27:28 +0200618 if (ret == -ENOMEM)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000619 goto err;
620 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000621 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000622 }
623
624 /* renumber remaining batman interfaces _inside_ of orig_hash_lock */
625 rcu_read_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000626 list_for_each_entry_rcu(hard_iface_tmp, &hardif_list, list) {
627 if (hard_iface_tmp->if_status == IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000628 continue;
629
Marek Lindnere6c10f42011-02-18 12:33:20 +0000630 if (hard_iface == hard_iface_tmp)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000631 continue;
632
Marek Lindnere6c10f42011-02-18 12:33:20 +0000633 if (hard_iface->soft_iface != hard_iface_tmp->soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000634 continue;
635
Marek Lindnere6c10f42011-02-18 12:33:20 +0000636 if (hard_iface_tmp->if_num > hard_iface->if_num)
637 hard_iface_tmp->if_num--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000638 }
639 rcu_read_unlock();
640
Marek Lindnere6c10f42011-02-18 12:33:20 +0000641 hard_iface->if_num = -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000642 return 0;
643
644err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000645 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000646 return -ENOMEM;
647}