blob: 86e7e082c2bc992a1a5adeecdff833a6865c853d [file] [log] [blame]
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001/* Copyright (C) 2009-2012 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002 *
3 * Marek Lindner, Simon Wunderlich
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018 */
19
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000020#include "main.h"
21#include "originator.h"
22#include "hash.h"
23#include "translation-table.h"
24#include "routing.h"
25#include "gateway_client.h"
26#include "hard-interface.h"
27#include "unicast.h"
28#include "soft-interface.h"
Simon Wunderlich23721382012-01-22 20:00:19 +010029#include "bridge_loop_avoidance.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000030
31static void purge_orig(struct work_struct *work);
32
33static void start_purge_timer(struct bat_priv *bat_priv)
34{
35 INIT_DELAYED_WORK(&bat_priv->orig_work, purge_orig);
Sven Eckelmann3193e8f2012-05-12 02:09:42 +020036 queue_delayed_work(batadv_event_workqueue,
Marek Lindner0b0094e2012-03-01 15:35:20 +080037 &bat_priv->orig_work, msecs_to_jiffies(1000));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000038}
39
Sven Eckelmannb8e2dd12011-06-15 15:08:59 +020040/* returns 1 if they are the same originator */
41static int compare_orig(const struct hlist_node *node, const void *data2)
42{
43 const void *data1 = container_of(node, struct orig_node, hash_entry);
44
45 return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0);
46}
47
Sven Eckelmann7d211ef2012-05-12 02:09:34 +020048int batadv_originator_init(struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000049{
50 if (bat_priv->orig_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +020051 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000052
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +020053 bat_priv->orig_hash = batadv_hash_new(1024);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000054
55 if (!bat_priv->orig_hash)
56 goto err;
57
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000058 start_purge_timer(bat_priv);
Sven Eckelmann5346c352012-05-05 13:27:28 +020059 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000060
61err:
Sven Eckelmann5346c352012-05-05 13:27:28 +020062 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000063}
64
Sven Eckelmann7d211ef2012-05-12 02:09:34 +020065void batadv_neigh_node_free_ref(struct neigh_node *neigh_node)
Simon Wunderlicha4c135c2011-01-19 20:01:43 +000066{
Marek Lindner44524fc2011-02-10 14:33:53 +000067 if (atomic_dec_and_test(&neigh_node->refcount))
Paul E. McKenneyae179ae2011-05-01 23:27:50 -070068 kfree_rcu(neigh_node, rcu);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +000069}
70
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000071/* increases the refcounter of a found router */
Sven Eckelmann7d211ef2012-05-12 02:09:34 +020072struct neigh_node *batadv_orig_node_get_router(struct orig_node *orig_node)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000073{
74 struct neigh_node *router;
75
76 rcu_read_lock();
77 router = rcu_dereference(orig_node->router);
78
79 if (router && !atomic_inc_not_zero(&router->refcount))
80 router = NULL;
81
82 rcu_read_unlock();
83 return router;
84}
85
Marek Lindner7ae8b282012-03-01 15:35:21 +080086struct neigh_node *batadv_neigh_node_new(struct hard_iface *hard_iface,
87 const uint8_t *neigh_addr,
88 uint32_t seqno)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000089{
Marek Lindner7ae8b282012-03-01 15:35:21 +080090 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000091 struct neigh_node *neigh_node;
92
Sven Eckelmann704509b2011-05-14 23:14:54 +020093 neigh_node = kzalloc(sizeof(*neigh_node), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000094 if (!neigh_node)
Marek Lindner7ae8b282012-03-01 15:35:21 +080095 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000096
Marek Lindner9591a792010-12-12 21:57:11 +000097 INIT_HLIST_NODE(&neigh_node->list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000098
Marek Lindner7ae8b282012-03-01 15:35:21 +080099 memcpy(neigh_node->addr, neigh_addr, ETH_ALEN);
Marek Lindnere3b0d0d2012-03-17 15:28:32 +0800100 spin_lock_init(&neigh_node->lq_update_lock);
Marek Lindner1605d0d2011-02-18 12:28:11 +0000101
102 /* extra reference for return */
103 atomic_set(&neigh_node->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000104
Marek Lindner7ae8b282012-03-01 15:35:21 +0800105 bat_dbg(DBG_BATMAN, bat_priv,
106 "Creating new neighbor %pM, initial seqno %d\n",
107 neigh_addr, seqno);
108
109out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000110 return neigh_node;
111}
112
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000113static void orig_node_free_rcu(struct rcu_head *rcu)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000114{
Marek Lindner9591a792010-12-12 21:57:11 +0000115 struct hlist_node *node, *node_tmp;
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000116 struct neigh_node *neigh_node, *tmp_neigh_node;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000117 struct orig_node *orig_node;
118
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000119 orig_node = container_of(rcu, struct orig_node, rcu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000120
Marek Lindnerf987ed62010-12-12 21:57:12 +0000121 spin_lock_bh(&orig_node->neigh_list_lock);
122
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000123 /* for all bonding members ... */
124 list_for_each_entry_safe(neigh_node, tmp_neigh_node,
125 &orig_node->bond_list, bonding_list) {
126 list_del_rcu(&neigh_node->bonding_list);
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200127 batadv_neigh_node_free_ref(neigh_node);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000128 }
129
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000130 /* for all neighbors towards this originator ... */
Marek Lindner9591a792010-12-12 21:57:11 +0000131 hlist_for_each_entry_safe(neigh_node, node, node_tmp,
132 &orig_node->neigh_list, list) {
Marek Lindnerf987ed62010-12-12 21:57:12 +0000133 hlist_del_rcu(&neigh_node->list);
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200134 batadv_neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000135 }
136
Marek Lindnerf987ed62010-12-12 21:57:12 +0000137 spin_unlock_bh(&orig_node->neigh_list_lock);
138
Sven Eckelmann88ed1e772012-05-12 02:09:40 +0200139 batadv_frag_list_free(&orig_node->frag_list);
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200140 batadv_tt_global_del_orig(orig_node->bat_priv, orig_node,
141 "originator timed out");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000142
Antonio Quartullia73105b2011-04-27 14:27:44 +0200143 kfree(orig_node->tt_buff);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000144 kfree(orig_node->bcast_own);
145 kfree(orig_node->bcast_own_sum);
146 kfree(orig_node);
147}
148
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200149void batadv_orig_node_free_ref(struct orig_node *orig_node)
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000150{
151 if (atomic_dec_and_test(&orig_node->refcount))
152 call_rcu(&orig_node->rcu, orig_node_free_rcu);
153}
154
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200155void batadv_originator_free(struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000156{
Marek Lindner16b1aba2011-01-19 20:01:42 +0000157 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000158 struct hlist_node *node, *node_tmp;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000159 struct hlist_head *head;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000160 spinlock_t *list_lock; /* spinlock to protect write access */
161 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200162 uint32_t i;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000163
164 if (!hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000165 return;
166
167 cancel_delayed_work_sync(&bat_priv->orig_work);
168
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000169 bat_priv->orig_hash = NULL;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000170
171 for (i = 0; i < hash->size; i++) {
172 head = &hash->table[i];
173 list_lock = &hash->list_locks[i];
174
175 spin_lock_bh(list_lock);
Marek Lindner7aadf882011-02-18 12:28:09 +0000176 hlist_for_each_entry_safe(orig_node, node, node_tmp,
177 head, hash_entry) {
Marek Lindner16b1aba2011-01-19 20:01:42 +0000178
Marek Lindner7aadf882011-02-18 12:28:09 +0000179 hlist_del_rcu(node);
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200180 batadv_orig_node_free_ref(orig_node);
Marek Lindner16b1aba2011-01-19 20:01:42 +0000181 }
182 spin_unlock_bh(list_lock);
183 }
184
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +0200185 batadv_hash_destroy(hash);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000186}
187
188/* this function finds or creates an originator entry for the given
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200189 * address if it does not exits
190 */
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200191struct orig_node *batadv_get_orig_node(struct bat_priv *bat_priv,
192 const uint8_t *addr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000193{
194 struct orig_node *orig_node;
195 int size;
196 int hash_added;
197
Marek Lindner7aadf882011-02-18 12:28:09 +0000198 orig_node = orig_hash_find(bat_priv, addr);
199 if (orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000200 return orig_node;
201
202 bat_dbg(DBG_BATMAN, bat_priv,
203 "Creating new originator: %pM\n", addr);
204
Sven Eckelmann704509b2011-05-14 23:14:54 +0200205 orig_node = kzalloc(sizeof(*orig_node), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000206 if (!orig_node)
207 return NULL;
208
Marek Lindner9591a792010-12-12 21:57:11 +0000209 INIT_HLIST_HEAD(&orig_node->neigh_list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000210 INIT_LIST_HEAD(&orig_node->bond_list);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000211 spin_lock_init(&orig_node->ogm_cnt_lock);
Marek Lindnerf3e00082011-01-25 21:52:11 +0000212 spin_lock_init(&orig_node->bcast_seqno_lock);
Marek Lindnerf987ed62010-12-12 21:57:12 +0000213 spin_lock_init(&orig_node->neigh_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200214 spin_lock_init(&orig_node->tt_buff_lock);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000215
216 /* extra reference for return */
217 atomic_set(&orig_node->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000218
Antonio Quartulli17071572011-11-07 16:36:40 +0100219 orig_node->tt_initialised = false;
Antonio Quartullicc47f662011-04-27 14:27:57 +0200220 orig_node->tt_poss_change = false;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000221 orig_node->bat_priv = bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000222 memcpy(orig_node->orig, addr, ETH_ALEN);
223 orig_node->router = NULL;
Antonio Quartullic8c991b2011-07-07 01:40:57 +0200224 orig_node->tt_crc = 0;
225 atomic_set(&orig_node->last_ttvn, 0);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200226 orig_node->tt_buff = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200227 orig_node->tt_buff_len = 0;
228 atomic_set(&orig_node->tt_size, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000229 orig_node->bcast_seqno_reset = jiffies - 1
230 - msecs_to_jiffies(RESET_PROTECTION_MS);
231 orig_node->batman_seqno_reset = jiffies - 1
232 - msecs_to_jiffies(RESET_PROTECTION_MS);
233
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000234 atomic_set(&orig_node->bond_candidates, 0);
235
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000236 size = bat_priv->num_ifaces * sizeof(unsigned long) * NUM_WORDS;
237
238 orig_node->bcast_own = kzalloc(size, GFP_ATOMIC);
239 if (!orig_node->bcast_own)
240 goto free_orig_node;
241
242 size = bat_priv->num_ifaces * sizeof(uint8_t);
243 orig_node->bcast_own_sum = kzalloc(size, GFP_ATOMIC);
244
245 INIT_LIST_HEAD(&orig_node->frag_list);
246 orig_node->last_frag_packet = 0;
247
248 if (!orig_node->bcast_own_sum)
249 goto free_bcast_own;
250
Marek Lindner7aadf882011-02-18 12:28:09 +0000251 hash_added = hash_add(bat_priv->orig_hash, compare_orig,
252 choose_orig, orig_node, &orig_node->hash_entry);
Antonio Quartulli1a1f37d2011-07-10 00:36:36 +0200253 if (hash_added != 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000254 goto free_bcast_own_sum;
255
256 return orig_node;
257free_bcast_own_sum:
258 kfree(orig_node->bcast_own_sum);
259free_bcast_own:
260 kfree(orig_node->bcast_own);
261free_orig_node:
262 kfree(orig_node);
263 return NULL;
264}
265
266static bool purge_orig_neighbors(struct bat_priv *bat_priv,
267 struct orig_node *orig_node,
268 struct neigh_node **best_neigh_node)
269{
Marek Lindner9591a792010-12-12 21:57:11 +0000270 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000271 struct neigh_node *neigh_node;
272 bool neigh_purged = false;
Marek Lindner0b0094e2012-03-01 15:35:20 +0800273 unsigned long last_seen;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000274
275 *best_neigh_node = NULL;
276
Marek Lindnerf987ed62010-12-12 21:57:12 +0000277 spin_lock_bh(&orig_node->neigh_list_lock);
278
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000279 /* for all neighbors towards this originator ... */
Marek Lindner9591a792010-12-12 21:57:11 +0000280 hlist_for_each_entry_safe(neigh_node, node, node_tmp,
281 &orig_node->neigh_list, list) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000282
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800283 if ((has_timed_out(neigh_node->last_seen, PURGE_TIMEOUT)) ||
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000284 (neigh_node->if_incoming->if_status == IF_INACTIVE) ||
Marek Lindner1a241a52011-01-19 19:16:10 +0000285 (neigh_node->if_incoming->if_status == IF_NOT_IN_USE) ||
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000286 (neigh_node->if_incoming->if_status == IF_TO_BE_REMOVED)) {
287
Marek Lindner0b0094e2012-03-01 15:35:20 +0800288 last_seen = neigh_node->last_seen;
289
Marek Lindner1a241a52011-01-19 19:16:10 +0000290 if ((neigh_node->if_incoming->if_status ==
291 IF_INACTIVE) ||
292 (neigh_node->if_incoming->if_status ==
293 IF_NOT_IN_USE) ||
294 (neigh_node->if_incoming->if_status ==
295 IF_TO_BE_REMOVED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000296 bat_dbg(DBG_BATMAN, bat_priv,
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100297 "neighbor purge: originator %pM, neighbor: %pM, iface: %s\n",
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000298 orig_node->orig, neigh_node->addr,
299 neigh_node->if_incoming->net_dev->name);
300 else
301 bat_dbg(DBG_BATMAN, bat_priv,
Marek Lindner0b0094e2012-03-01 15:35:20 +0800302 "neighbor timeout: originator %pM, neighbor: %pM, last_seen: %u\n",
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000303 orig_node->orig, neigh_node->addr,
Marek Lindner0b0094e2012-03-01 15:35:20 +0800304 jiffies_to_msecs(last_seen));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000305
306 neigh_purged = true;
Marek Lindner9591a792010-12-12 21:57:11 +0000307
Marek Lindnerf987ed62010-12-12 21:57:12 +0000308 hlist_del_rcu(&neigh_node->list);
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200309 batadv_bonding_candidate_del(orig_node, neigh_node);
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200310 batadv_neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000311 } else {
312 if ((!*best_neigh_node) ||
313 (neigh_node->tq_avg > (*best_neigh_node)->tq_avg))
314 *best_neigh_node = neigh_node;
315 }
316 }
Marek Lindnerf987ed62010-12-12 21:57:12 +0000317
318 spin_unlock_bh(&orig_node->neigh_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000319 return neigh_purged;
320}
321
322static bool purge_orig_node(struct bat_priv *bat_priv,
323 struct orig_node *orig_node)
324{
325 struct neigh_node *best_neigh_node;
326
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800327 if (has_timed_out(orig_node->last_seen, 2 * PURGE_TIMEOUT)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000328 bat_dbg(DBG_BATMAN, bat_priv,
Marek Lindner0b0094e2012-03-01 15:35:20 +0800329 "Originator timeout: originator %pM, last_seen %u\n",
330 orig_node->orig,
331 jiffies_to_msecs(orig_node->last_seen));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000332 return true;
333 } else {
334 if (purge_orig_neighbors(bat_priv, orig_node,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100335 &best_neigh_node))
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200336 batadv_update_route(bat_priv, orig_node,
337 best_neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000338 }
339
340 return false;
341}
342
343static void _purge_orig(struct bat_priv *bat_priv)
344{
345 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000346 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000347 struct hlist_head *head;
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000348 spinlock_t *list_lock; /* spinlock to protect write access */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000349 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200350 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000351
352 if (!hash)
353 return;
354
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000355 /* for all origins... */
356 for (i = 0; i < hash->size; i++) {
357 head = &hash->table[i];
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000358 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000359
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000360 spin_lock_bh(list_lock);
Marek Lindner7aadf882011-02-18 12:28:09 +0000361 hlist_for_each_entry_safe(orig_node, node, node_tmp,
362 head, hash_entry) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000363 if (purge_orig_node(bat_priv, orig_node)) {
364 if (orig_node->gw_flags)
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200365 batadv_gw_node_delete(bat_priv,
366 orig_node);
Marek Lindner7aadf882011-02-18 12:28:09 +0000367 hlist_del_rcu(node);
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200368 batadv_orig_node_free_ref(orig_node);
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000369 continue;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000370 }
371
Marek Lindner032b7962011-12-20 19:30:40 +0800372 if (has_timed_out(orig_node->last_frag_packet,
373 FRAG_TIMEOUT))
Sven Eckelmann88ed1e772012-05-12 02:09:40 +0200374 batadv_frag_list_free(&orig_node->frag_list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000375 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000376 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000377 }
378
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200379 batadv_gw_node_purge(bat_priv);
380 batadv_gw_election(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000381}
382
383static void purge_orig(struct work_struct *work)
384{
385 struct delayed_work *delayed_work =
386 container_of(work, struct delayed_work, work);
387 struct bat_priv *bat_priv =
388 container_of(delayed_work, struct bat_priv, orig_work);
389
390 _purge_orig(bat_priv);
391 start_purge_timer(bat_priv);
392}
393
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200394void batadv_purge_orig_ref(struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000395{
396 _purge_orig(bat_priv);
397}
398
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200399int batadv_orig_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000400{
401 struct net_device *net_dev = (struct net_device *)seq->private;
402 struct bat_priv *bat_priv = netdev_priv(net_dev);
403 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000404 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000405 struct hlist_head *head;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200406 struct hard_iface *primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000407 struct orig_node *orig_node;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000408 struct neigh_node *neigh_node, *neigh_node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000409 int batman_count = 0;
410 int last_seen_secs;
411 int last_seen_msecs;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200412 uint32_t i;
413 int ret = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000414
Marek Lindner32ae9b22011-04-20 15:40:58 +0200415 primary_if = primary_if_get_selected(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000416
Marek Lindner32ae9b22011-04-20 15:40:58 +0200417 if (!primary_if) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100418 ret = seq_printf(seq,
419 "BATMAN mesh %s disabled - please specify interfaces to enable it\n",
Marek Lindner32ae9b22011-04-20 15:40:58 +0200420 net_dev->name);
421 goto out;
422 }
423
424 if (primary_if->if_status != IF_ACTIVE) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100425 ret = seq_printf(seq,
426 "BATMAN mesh %s disabled - primary interface not active\n",
Marek Lindner32ae9b22011-04-20 15:40:58 +0200427 net_dev->name);
428 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000429 }
430
Sven Eckelmann44c43492011-07-05 10:42:51 +0200431 seq_printf(seq, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s)]\n",
432 SOURCE_VERSION, primary_if->net_dev->name,
Marek Lindner32ae9b22011-04-20 15:40:58 +0200433 primary_if->net_dev->dev_addr, net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000434 seq_printf(seq, " %-15s %s (%s/%i) %17s [%10s]: %20s ...\n",
435 "Originator", "last-seen", "#", TQ_MAX_VALUE, "Nexthop",
436 "outgoingIF", "Potential nexthops");
437
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000438 for (i = 0; i < hash->size; i++) {
439 head = &hash->table[i];
440
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000441 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000442 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200443 neigh_node = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000444 if (!neigh_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000445 continue;
446
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000447 if (neigh_node->tq_avg == 0)
448 goto next;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000449
450 last_seen_secs = jiffies_to_msecs(jiffies -
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800451 orig_node->last_seen) / 1000;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000452 last_seen_msecs = jiffies_to_msecs(jiffies -
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800453 orig_node->last_seen) % 1000;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000454
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000455 seq_printf(seq, "%pM %4i.%03is (%3i) %pM [%10s]:",
456 orig_node->orig, last_seen_secs,
457 last_seen_msecs, neigh_node->tq_avg,
458 neigh_node->addr,
459 neigh_node->if_incoming->net_dev->name);
460
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000461 hlist_for_each_entry_rcu(neigh_node_tmp, node_tmp,
Marek Lindnerf987ed62010-12-12 21:57:12 +0000462 &orig_node->neigh_list, list) {
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000463 seq_printf(seq, " %pM (%3i)",
464 neigh_node_tmp->addr,
465 neigh_node_tmp->tq_avg);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000466 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000467
468 seq_printf(seq, "\n");
469 batman_count++;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000470
471next:
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200472 batadv_neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000473 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000474 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000475 }
476
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000477 if (batman_count == 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000478 seq_printf(seq, "No batman nodes in range ...\n");
479
Marek Lindner32ae9b22011-04-20 15:40:58 +0200480out:
481 if (primary_if)
482 hardif_free_ref(primary_if);
483 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000484}
485
486static int orig_node_add_if(struct orig_node *orig_node, int max_if_num)
487{
488 void *data_ptr;
489
490 data_ptr = kmalloc(max_if_num * sizeof(unsigned long) * NUM_WORDS,
491 GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700492 if (!data_ptr)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200493 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000494
495 memcpy(data_ptr, orig_node->bcast_own,
496 (max_if_num - 1) * sizeof(unsigned long) * NUM_WORDS);
497 kfree(orig_node->bcast_own);
498 orig_node->bcast_own = data_ptr;
499
500 data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700501 if (!data_ptr)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200502 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000503
504 memcpy(data_ptr, orig_node->bcast_own_sum,
505 (max_if_num - 1) * sizeof(uint8_t));
506 kfree(orig_node->bcast_own_sum);
507 orig_node->bcast_own_sum = data_ptr;
508
509 return 0;
510}
511
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200512int batadv_orig_hash_add_if(struct hard_iface *hard_iface, int max_if_num)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000513{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000514 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000515 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000516 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000517 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000518 struct orig_node *orig_node;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200519 uint32_t i;
520 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000521
522 /* resize all orig nodes because orig_node->bcast_own(_sum) depend on
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200523 * if_num
524 */
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
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200607 * if_num
608 */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000609 for (i = 0; i < hash->size; i++) {
610 head = &hash->table[i];
611
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000612 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000613 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000614 spin_lock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000615 ret = orig_node_del_if(orig_node, max_if_num,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000616 hard_iface->if_num);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000617 spin_unlock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000618
Sven Eckelmann5346c352012-05-05 13:27:28 +0200619 if (ret == -ENOMEM)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000620 goto err;
621 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000622 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000623 }
624
625 /* renumber remaining batman interfaces _inside_ of orig_hash_lock */
626 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200627 list_for_each_entry_rcu(hard_iface_tmp, &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +0000628 if (hard_iface_tmp->if_status == IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000629 continue;
630
Marek Lindnere6c10f42011-02-18 12:33:20 +0000631 if (hard_iface == hard_iface_tmp)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000632 continue;
633
Marek Lindnere6c10f42011-02-18 12:33:20 +0000634 if (hard_iface->soft_iface != hard_iface_tmp->soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000635 continue;
636
Marek Lindnere6c10f42011-02-18 12:33:20 +0000637 if (hard_iface_tmp->if_num > hard_iface->if_num)
638 hard_iface_tmp->if_num--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000639 }
640 rcu_read_unlock();
641
Marek Lindnere6c10f42011-02-18 12:33:20 +0000642 hard_iface->if_num = -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000643 return 0;
644
645err:
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000646 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000647 return -ENOMEM;
648}