blob: 962636b039b23061c1ef8e3ef6696d1529b34130 [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 Lindnera8e7f4b2010-12-12 21:57:10 +000088struct neigh_node *create_neighbor(struct orig_node *orig_node,
89 struct orig_node *orig_neigh_node,
Sven Eckelmann747e4222011-05-14 23:14:50 +020090 const uint8_t *neigh,
Marek Lindnere6c10f42011-02-18 12:33:20 +000091 struct hard_iface *if_incoming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000092{
93 struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
94 struct neigh_node *neigh_node;
95
96 bat_dbg(DBG_BATMAN, bat_priv,
97 "Creating new last-hop neighbor of originator\n");
98
Sven Eckelmann704509b2011-05-14 23:14:54 +020099 neigh_node = kzalloc(sizeof(*neigh_node), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000100 if (!neigh_node)
101 return NULL;
102
Marek Lindner9591a792010-12-12 21:57:11 +0000103 INIT_HLIST_NODE(&neigh_node->list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000104 INIT_LIST_HEAD(&neigh_node->bonding_list);
Linus Lüssing68003902011-03-14 22:43:40 +0000105 spin_lock_init(&neigh_node->tq_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000106
107 memcpy(neigh_node->addr, neigh, ETH_ALEN);
108 neigh_node->orig_node = orig_neigh_node;
109 neigh_node->if_incoming = if_incoming;
Marek Lindner1605d0d2011-02-18 12:28:11 +0000110
111 /* extra reference for return */
112 atomic_set(&neigh_node->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000113
Marek Lindnerf987ed62010-12-12 21:57:12 +0000114 spin_lock_bh(&orig_node->neigh_list_lock);
115 hlist_add_head_rcu(&neigh_node->list, &orig_node->neigh_list);
116 spin_unlock_bh(&orig_node->neigh_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000117 return neigh_node;
118}
119
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000120static void orig_node_free_rcu(struct rcu_head *rcu)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000121{
Marek Lindner9591a792010-12-12 21:57:11 +0000122 struct hlist_node *node, *node_tmp;
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000123 struct neigh_node *neigh_node, *tmp_neigh_node;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000124 struct orig_node *orig_node;
125
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000126 orig_node = container_of(rcu, struct orig_node, rcu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000127
Marek Lindnerf987ed62010-12-12 21:57:12 +0000128 spin_lock_bh(&orig_node->neigh_list_lock);
129
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000130 /* for all bonding members ... */
131 list_for_each_entry_safe(neigh_node, tmp_neigh_node,
132 &orig_node->bond_list, bonding_list) {
133 list_del_rcu(&neigh_node->bonding_list);
Marek Lindner44524fc2011-02-10 14:33:53 +0000134 neigh_node_free_ref(neigh_node);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000135 }
136
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000137 /* for all neighbors towards this originator ... */
Marek Lindner9591a792010-12-12 21:57:11 +0000138 hlist_for_each_entry_safe(neigh_node, node, node_tmp,
139 &orig_node->neigh_list, list) {
Marek Lindnerf987ed62010-12-12 21:57:12 +0000140 hlist_del_rcu(&neigh_node->list);
Marek Lindner44524fc2011-02-10 14:33:53 +0000141 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000142 }
143
Marek Lindnerf987ed62010-12-12 21:57:12 +0000144 spin_unlock_bh(&orig_node->neigh_list_lock);
145
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000146 frag_list_free(&orig_node->frag_list);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200147 tt_global_del_orig(orig_node->bat_priv, orig_node,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100148 "originator timed out");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000149
Antonio Quartullia73105b2011-04-27 14:27:44 +0200150 kfree(orig_node->tt_buff);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000151 kfree(orig_node->bcast_own);
152 kfree(orig_node->bcast_own_sum);
153 kfree(orig_node);
154}
155
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000156void orig_node_free_ref(struct orig_node *orig_node)
157{
158 if (atomic_dec_and_test(&orig_node->refcount))
159 call_rcu(&orig_node->rcu, orig_node_free_rcu);
160}
161
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000162void originator_free(struct bat_priv *bat_priv)
163{
Marek Lindner16b1aba2011-01-19 20:01:42 +0000164 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000165 struct hlist_node *node, *node_tmp;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000166 struct hlist_head *head;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000167 spinlock_t *list_lock; /* spinlock to protect write access */
168 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200169 uint32_t i;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000170
171 if (!hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000172 return;
173
174 cancel_delayed_work_sync(&bat_priv->orig_work);
175
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000176 bat_priv->orig_hash = NULL;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000177
178 for (i = 0; i < hash->size; i++) {
179 head = &hash->table[i];
180 list_lock = &hash->list_locks[i];
181
182 spin_lock_bh(list_lock);
Marek Lindner7aadf882011-02-18 12:28:09 +0000183 hlist_for_each_entry_safe(orig_node, node, node_tmp,
184 head, hash_entry) {
Marek Lindner16b1aba2011-01-19 20:01:42 +0000185
Marek Lindner7aadf882011-02-18 12:28:09 +0000186 hlist_del_rcu(node);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000187 orig_node_free_ref(orig_node);
Marek Lindner16b1aba2011-01-19 20:01:42 +0000188 }
189 spin_unlock_bh(list_lock);
190 }
191
192 hash_destroy(hash);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000193}
194
195/* this function finds or creates an originator entry for the given
196 * address if it does not exits */
Sven Eckelmann747e4222011-05-14 23:14:50 +0200197struct orig_node *get_orig_node(struct bat_priv *bat_priv, const uint8_t *addr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000198{
199 struct orig_node *orig_node;
200 int size;
201 int hash_added;
202
Marek Lindner7aadf882011-02-18 12:28:09 +0000203 orig_node = orig_hash_find(bat_priv, addr);
204 if (orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000205 return orig_node;
206
207 bat_dbg(DBG_BATMAN, bat_priv,
208 "Creating new originator: %pM\n", addr);
209
Sven Eckelmann704509b2011-05-14 23:14:54 +0200210 orig_node = kzalloc(sizeof(*orig_node), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000211 if (!orig_node)
212 return NULL;
213
Marek Lindner9591a792010-12-12 21:57:11 +0000214 INIT_HLIST_HEAD(&orig_node->neigh_list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000215 INIT_LIST_HEAD(&orig_node->bond_list);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000216 spin_lock_init(&orig_node->ogm_cnt_lock);
Marek Lindnerf3e00082011-01-25 21:52:11 +0000217 spin_lock_init(&orig_node->bcast_seqno_lock);
Marek Lindnerf987ed62010-12-12 21:57:12 +0000218 spin_lock_init(&orig_node->neigh_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200219 spin_lock_init(&orig_node->tt_buff_lock);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000220
221 /* extra reference for return */
222 atomic_set(&orig_node->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000223
Antonio Quartulli17071572011-11-07 16:36:40 +0100224 orig_node->tt_initialised = false;
Antonio Quartullicc47f662011-04-27 14:27:57 +0200225 orig_node->tt_poss_change = false;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000226 orig_node->bat_priv = bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000227 memcpy(orig_node->orig, addr, ETH_ALEN);
228 orig_node->router = NULL;
Antonio Quartullic8c991b2011-07-07 01:40:57 +0200229 orig_node->tt_crc = 0;
230 atomic_set(&orig_node->last_ttvn, 0);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200231 orig_node->tt_buff = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200232 orig_node->tt_buff_len = 0;
233 atomic_set(&orig_node->tt_size, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000234 orig_node->bcast_seqno_reset = jiffies - 1
235 - msecs_to_jiffies(RESET_PROTECTION_MS);
236 orig_node->batman_seqno_reset = jiffies - 1
237 - msecs_to_jiffies(RESET_PROTECTION_MS);
238
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000239 atomic_set(&orig_node->bond_candidates, 0);
240
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000241 size = bat_priv->num_ifaces * sizeof(unsigned long) * NUM_WORDS;
242
243 orig_node->bcast_own = kzalloc(size, GFP_ATOMIC);
244 if (!orig_node->bcast_own)
245 goto free_orig_node;
246
247 size = bat_priv->num_ifaces * sizeof(uint8_t);
248 orig_node->bcast_own_sum = kzalloc(size, GFP_ATOMIC);
249
250 INIT_LIST_HEAD(&orig_node->frag_list);
251 orig_node->last_frag_packet = 0;
252
253 if (!orig_node->bcast_own_sum)
254 goto free_bcast_own;
255
Marek Lindner7aadf882011-02-18 12:28:09 +0000256 hash_added = hash_add(bat_priv->orig_hash, compare_orig,
257 choose_orig, orig_node, &orig_node->hash_entry);
Antonio Quartulli1a1f37d2011-07-10 00:36:36 +0200258 if (hash_added != 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000259 goto free_bcast_own_sum;
260
261 return orig_node;
262free_bcast_own_sum:
263 kfree(orig_node->bcast_own_sum);
264free_bcast_own:
265 kfree(orig_node->bcast_own);
266free_orig_node:
267 kfree(orig_node);
268 return NULL;
269}
270
271static bool purge_orig_neighbors(struct bat_priv *bat_priv,
272 struct orig_node *orig_node,
273 struct neigh_node **best_neigh_node)
274{
Marek Lindner9591a792010-12-12 21:57:11 +0000275 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000276 struct neigh_node *neigh_node;
277 bool neigh_purged = false;
Marek Lindner0b0094e2012-03-01 15:35:20 +0800278 unsigned long last_seen;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000279
280 *best_neigh_node = NULL;
281
Marek Lindnerf987ed62010-12-12 21:57:12 +0000282 spin_lock_bh(&orig_node->neigh_list_lock);
283
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000284 /* for all neighbors towards this originator ... */
Marek Lindner9591a792010-12-12 21:57:11 +0000285 hlist_for_each_entry_safe(neigh_node, node, node_tmp,
286 &orig_node->neigh_list, list) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000287
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800288 if ((has_timed_out(neigh_node->last_seen, PURGE_TIMEOUT)) ||
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000289 (neigh_node->if_incoming->if_status == IF_INACTIVE) ||
Marek Lindner1a241a52011-01-19 19:16:10 +0000290 (neigh_node->if_incoming->if_status == IF_NOT_IN_USE) ||
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000291 (neigh_node->if_incoming->if_status == IF_TO_BE_REMOVED)) {
292
Marek Lindner0b0094e2012-03-01 15:35:20 +0800293 last_seen = neigh_node->last_seen;
294
Marek Lindner1a241a52011-01-19 19:16:10 +0000295 if ((neigh_node->if_incoming->if_status ==
296 IF_INACTIVE) ||
297 (neigh_node->if_incoming->if_status ==
298 IF_NOT_IN_USE) ||
299 (neigh_node->if_incoming->if_status ==
300 IF_TO_BE_REMOVED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000301 bat_dbg(DBG_BATMAN, bat_priv,
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100302 "neighbor purge: originator %pM, neighbor: %pM, iface: %s\n",
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000303 orig_node->orig, neigh_node->addr,
304 neigh_node->if_incoming->net_dev->name);
305 else
306 bat_dbg(DBG_BATMAN, bat_priv,
Marek Lindner0b0094e2012-03-01 15:35:20 +0800307 "neighbor timeout: originator %pM, neighbor: %pM, last_seen: %u\n",
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000308 orig_node->orig, neigh_node->addr,
Marek Lindner0b0094e2012-03-01 15:35:20 +0800309 jiffies_to_msecs(last_seen));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000310
311 neigh_purged = true;
Marek Lindner9591a792010-12-12 21:57:11 +0000312
Marek Lindnerf987ed62010-12-12 21:57:12 +0000313 hlist_del_rcu(&neigh_node->list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000314 bonding_candidate_del(orig_node, neigh_node);
Marek Lindner44524fc2011-02-10 14:33:53 +0000315 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000316 } else {
317 if ((!*best_neigh_node) ||
318 (neigh_node->tq_avg > (*best_neigh_node)->tq_avg))
319 *best_neigh_node = neigh_node;
320 }
321 }
Marek Lindnerf987ed62010-12-12 21:57:12 +0000322
323 spin_unlock_bh(&orig_node->neigh_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000324 return neigh_purged;
325}
326
327static bool purge_orig_node(struct bat_priv *bat_priv,
328 struct orig_node *orig_node)
329{
330 struct neigh_node *best_neigh_node;
331
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800332 if (has_timed_out(orig_node->last_seen, 2 * PURGE_TIMEOUT)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000333 bat_dbg(DBG_BATMAN, bat_priv,
Marek Lindner0b0094e2012-03-01 15:35:20 +0800334 "Originator timeout: originator %pM, last_seen %u\n",
335 orig_node->orig,
336 jiffies_to_msecs(orig_node->last_seen));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000337 return true;
338 } else {
339 if (purge_orig_neighbors(bat_priv, orig_node,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100340 &best_neigh_node))
Marek Lindnerfc957272011-07-30 12:04:12 +0200341 update_route(bat_priv, orig_node, best_neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000342 }
343
344 return false;
345}
346
347static void _purge_orig(struct bat_priv *bat_priv)
348{
349 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000350 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000351 struct hlist_head *head;
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000352 spinlock_t *list_lock; /* spinlock to protect write access */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000353 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200354 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000355
356 if (!hash)
357 return;
358
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000359 /* for all origins... */
360 for (i = 0; i < hash->size; i++) {
361 head = &hash->table[i];
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000362 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000363
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000364 spin_lock_bh(list_lock);
Marek Lindner7aadf882011-02-18 12:28:09 +0000365 hlist_for_each_entry_safe(orig_node, node, node_tmp,
366 head, hash_entry) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000367 if (purge_orig_node(bat_priv, orig_node)) {
368 if (orig_node->gw_flags)
369 gw_node_delete(bat_priv, orig_node);
Marek Lindner7aadf882011-02-18 12:28:09 +0000370 hlist_del_rcu(node);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000371 orig_node_free_ref(orig_node);
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000372 continue;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000373 }
374
Marek Lindner032b7962011-12-20 19:30:40 +0800375 if (has_timed_out(orig_node->last_frag_packet,
376 FRAG_TIMEOUT))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000377 frag_list_free(&orig_node->frag_list);
378 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000379 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000380 }
381
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000382 gw_node_purge(bat_priv);
383 gw_election(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000384}
385
386static void purge_orig(struct work_struct *work)
387{
388 struct delayed_work *delayed_work =
389 container_of(work, struct delayed_work, work);
390 struct bat_priv *bat_priv =
391 container_of(delayed_work, struct bat_priv, orig_work);
392
393 _purge_orig(bat_priv);
394 start_purge_timer(bat_priv);
395}
396
397void purge_orig_ref(struct bat_priv *bat_priv)
398{
399 _purge_orig(bat_priv);
400}
401
402int orig_seq_print_text(struct seq_file *seq, void *offset)
403{
404 struct net_device *net_dev = (struct net_device *)seq->private;
405 struct bat_priv *bat_priv = netdev_priv(net_dev);
406 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000407 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000408 struct hlist_head *head;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200409 struct hard_iface *primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000410 struct orig_node *orig_node;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000411 struct neigh_node *neigh_node, *neigh_node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000412 int batman_count = 0;
413 int last_seen_secs;
414 int last_seen_msecs;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200415 uint32_t i;
416 int ret = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000417
Marek Lindner32ae9b22011-04-20 15:40:58 +0200418 primary_if = primary_if_get_selected(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000419
Marek Lindner32ae9b22011-04-20 15:40:58 +0200420 if (!primary_if) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100421 ret = seq_printf(seq,
422 "BATMAN mesh %s disabled - please specify interfaces to enable it\n",
Marek Lindner32ae9b22011-04-20 15:40:58 +0200423 net_dev->name);
424 goto out;
425 }
426
427 if (primary_if->if_status != IF_ACTIVE) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100428 ret = seq_printf(seq,
429 "BATMAN mesh %s disabled - primary interface not active\n",
Marek Lindner32ae9b22011-04-20 15:40:58 +0200430 net_dev->name);
431 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000432 }
433
Sven Eckelmann44c43492011-07-05 10:42:51 +0200434 seq_printf(seq, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s)]\n",
435 SOURCE_VERSION, primary_if->net_dev->name,
Marek Lindner32ae9b22011-04-20 15:40:58 +0200436 primary_if->net_dev->dev_addr, net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000437 seq_printf(seq, " %-15s %s (%s/%i) %17s [%10s]: %20s ...\n",
438 "Originator", "last-seen", "#", TQ_MAX_VALUE, "Nexthop",
439 "outgoingIF", "Potential nexthops");
440
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000441 for (i = 0; i < hash->size; i++) {
442 head = &hash->table[i];
443
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000444 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000445 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000446 neigh_node = orig_node_get_router(orig_node);
447 if (!neigh_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000448 continue;
449
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000450 if (neigh_node->tq_avg == 0)
451 goto next;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000452
453 last_seen_secs = 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 last_seen_msecs = jiffies_to_msecs(jiffies -
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800456 orig_node->last_seen) % 1000;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000457
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000458 seq_printf(seq, "%pM %4i.%03is (%3i) %pM [%10s]:",
459 orig_node->orig, last_seen_secs,
460 last_seen_msecs, neigh_node->tq_avg,
461 neigh_node->addr,
462 neigh_node->if_incoming->net_dev->name);
463
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000464 hlist_for_each_entry_rcu(neigh_node_tmp, node_tmp,
Marek Lindnerf987ed62010-12-12 21:57:12 +0000465 &orig_node->neigh_list, list) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000466 seq_printf(seq, " %pM (%3i)",
467 neigh_node_tmp->addr,
468 neigh_node_tmp->tq_avg);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000469 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000470
471 seq_printf(seq, "\n");
472 batman_count++;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000473
474next:
475 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000476 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000477 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000478 }
479
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000480 if (batman_count == 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000481 seq_printf(seq, "No batman nodes in range ...\n");
482
Marek Lindner32ae9b22011-04-20 15:40:58 +0200483out:
484 if (primary_if)
485 hardif_free_ref(primary_if);
486 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000487}
488
489static int orig_node_add_if(struct orig_node *orig_node, int max_if_num)
490{
491 void *data_ptr;
492
493 data_ptr = kmalloc(max_if_num * sizeof(unsigned long) * NUM_WORDS,
494 GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700495 if (!data_ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000496 return -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000497
498 memcpy(data_ptr, orig_node->bcast_own,
499 (max_if_num - 1) * sizeof(unsigned long) * NUM_WORDS);
500 kfree(orig_node->bcast_own);
501 orig_node->bcast_own = data_ptr;
502
503 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700504 if (!data_ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000505 return -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000506
507 memcpy(data_ptr, orig_node->bcast_own_sum,
508 (max_if_num - 1) * sizeof(uint8_t));
509 kfree(orig_node->bcast_own_sum);
510 orig_node->bcast_own_sum = data_ptr;
511
512 return 0;
513}
514
Marek Lindnere6c10f42011-02-18 12:33:20 +0000515int orig_hash_add_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000516{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000517 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000518 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000519 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000520 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000521 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200522 uint32_t i;
523 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000524
525 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
526 * if_num */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000527 for (i = 0; i < hash->size; i++) {
528 head = &hash->table[i];
529
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000530 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000531 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000532 spin_lock_bh(&orig_node->ogm_cnt_lock);
533 ret = orig_node_add_if(orig_node, max_if_num);
534 spin_unlock_bh(&orig_node->ogm_cnt_lock);
535
536 if (ret == -1)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000537 goto err;
538 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000539 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000540 }
541
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000542 return 0;
543
544err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000545 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000546 return -ENOMEM;
547}
548
549static int orig_node_del_if(struct orig_node *orig_node,
550 int max_if_num, int del_if_num)
551{
552 void *data_ptr = NULL;
553 int chunk_size;
554
555 /* last interface was removed */
556 if (max_if_num == 0)
557 goto free_bcast_own;
558
559 chunk_size = sizeof(unsigned long) * NUM_WORDS;
560 data_ptr = kmalloc(max_if_num * chunk_size, GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700561 if (!data_ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000562 return -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000563
564 /* copy first part */
565 memcpy(data_ptr, orig_node->bcast_own, del_if_num * chunk_size);
566
567 /* copy second part */
Sven Eckelmann38e3c5f2011-05-14 23:14:49 +0200568 memcpy((char *)data_ptr + del_if_num * chunk_size,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000569 orig_node->bcast_own + ((del_if_num + 1) * chunk_size),
570 (max_if_num - del_if_num) * chunk_size);
571
572free_bcast_own:
573 kfree(orig_node->bcast_own);
574 orig_node->bcast_own = data_ptr;
575
576 if (max_if_num == 0)
577 goto free_own_sum;
578
579 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700580 if (!data_ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000581 return -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000582
583 memcpy(data_ptr, orig_node->bcast_own_sum,
584 del_if_num * sizeof(uint8_t));
585
Sven Eckelmann38e3c5f2011-05-14 23:14:49 +0200586 memcpy((char *)data_ptr + del_if_num * sizeof(uint8_t),
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000587 orig_node->bcast_own_sum + ((del_if_num + 1) * sizeof(uint8_t)),
588 (max_if_num - del_if_num) * sizeof(uint8_t));
589
590free_own_sum:
591 kfree(orig_node->bcast_own_sum);
592 orig_node->bcast_own_sum = data_ptr;
593
594 return 0;
595}
596
Marek Lindnere6c10f42011-02-18 12:33:20 +0000597int orig_hash_del_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000598{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000599 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000600 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000601 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000602 struct hlist_head *head;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000603 struct hard_iface *hard_iface_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000604 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200605 uint32_t i;
606 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000607
608 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
609 * if_num */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000610 for (i = 0; i < hash->size; i++) {
611 head = &hash->table[i];
612
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000613 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000614 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000615 spin_lock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000616 ret = orig_node_del_if(orig_node, max_if_num,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000617 hard_iface->if_num);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000618 spin_unlock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000619
620 if (ret == -1)
621 goto err;
622 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000623 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000624 }
625
626 /* renumber remaining batman interfaces _inside_ of orig_hash_lock */
627 rcu_read_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000628 list_for_each_entry_rcu(hard_iface_tmp, &hardif_list, list) {
629 if (hard_iface_tmp->if_status == IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000630 continue;
631
Marek Lindnere6c10f42011-02-18 12:33:20 +0000632 if (hard_iface == hard_iface_tmp)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000633 continue;
634
Marek Lindnere6c10f42011-02-18 12:33:20 +0000635 if (hard_iface->soft_iface != hard_iface_tmp->soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000636 continue;
637
Marek Lindnere6c10f42011-02-18 12:33:20 +0000638 if (hard_iface_tmp->if_num > hard_iface->if_num)
639 hard_iface_tmp->if_num--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000640 }
641 rcu_read_unlock();
642
Marek Lindnere6c10f42011-02-18 12:33:20 +0000643 hard_iface->if_num = -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000644 return 0;
645
646err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000647 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000648 return -ENOMEM;
649}