blob: d6305645e08da6314c6ed1ac46b40b696d431aa8 [file] [log] [blame]
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001/*
Sven Eckelmann64afe352011-01-27 10:38:15 +01002 * Copyright (C) 2007-2011 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
22#include "main.h"
23#include "translation-table.h"
24#include "soft-interface.h"
Marek Lindner32ae9b22011-04-20 15:40:58 +020025#include "hard-interface.h"
Antonio Quartullia73105b2011-04-27 14:27:44 +020026#include "send.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000027#include "hash.h"
28#include "originator.h"
Antonio Quartullia73105b2011-04-27 14:27:44 +020029#include "routing.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000030
Antonio Quartullia73105b2011-04-27 14:27:44 +020031#include <linux/crc16.h>
32
33static void _tt_global_del(struct bat_priv *bat_priv,
34 struct tt_global_entry *tt_global_entry,
35 const char *message);
36static void tt_purge(struct work_struct *work);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000037
Marek Lindner7aadf882011-02-18 12:28:09 +000038/* returns 1 if they are the same mac addr */
Sven Eckelmann747e4222011-05-14 23:14:50 +020039static int compare_ltt(const struct hlist_node *node, const void *data2)
Marek Lindner7aadf882011-02-18 12:28:09 +000040{
Sven Eckelmann747e4222011-05-14 23:14:50 +020041 const void *data1 = container_of(node, struct tt_local_entry,
42 hash_entry);
Marek Lindner7aadf882011-02-18 12:28:09 +000043
44 return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0);
45}
46
47/* returns 1 if they are the same mac addr */
Sven Eckelmann747e4222011-05-14 23:14:50 +020048static int compare_gtt(const struct hlist_node *node, const void *data2)
Marek Lindner7aadf882011-02-18 12:28:09 +000049{
Sven Eckelmann747e4222011-05-14 23:14:50 +020050 const void *data1 = container_of(node, struct tt_global_entry,
51 hash_entry);
Marek Lindner7aadf882011-02-18 12:28:09 +000052
53 return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0);
54}
55
Antonio Quartullia73105b2011-04-27 14:27:44 +020056static void tt_start_timer(struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000057{
Antonio Quartullia73105b2011-04-27 14:27:44 +020058 INIT_DELAYED_WORK(&bat_priv->tt_work, tt_purge);
59 queue_delayed_work(bat_event_workqueue, &bat_priv->tt_work,
60 msecs_to_jiffies(5000));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000061}
62
Antonio Quartulli2dafb492011-05-05 08:42:45 +020063static struct tt_local_entry *tt_local_hash_find(struct bat_priv *bat_priv,
Sven Eckelmann747e4222011-05-14 23:14:50 +020064 const void *data)
Marek Lindner7aadf882011-02-18 12:28:09 +000065{
Antonio Quartulli2dafb492011-05-05 08:42:45 +020066 struct hashtable_t *hash = bat_priv->tt_local_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +000067 struct hlist_head *head;
68 struct hlist_node *node;
Antonio Quartulli2dafb492011-05-05 08:42:45 +020069 struct tt_local_entry *tt_local_entry, *tt_local_entry_tmp = NULL;
Marek Lindner7aadf882011-02-18 12:28:09 +000070 int index;
71
72 if (!hash)
73 return NULL;
74
75 index = choose_orig(data, hash->size);
76 head = &hash->table[index];
77
78 rcu_read_lock();
Antonio Quartulli2dafb492011-05-05 08:42:45 +020079 hlist_for_each_entry_rcu(tt_local_entry, node, head, hash_entry) {
80 if (!compare_eth(tt_local_entry, data))
Marek Lindner7aadf882011-02-18 12:28:09 +000081 continue;
82
Antonio Quartulli7683fdc2011-04-27 14:28:07 +020083 if (!atomic_inc_not_zero(&tt_local_entry->refcount))
84 continue;
85
Antonio Quartulli2dafb492011-05-05 08:42:45 +020086 tt_local_entry_tmp = tt_local_entry;
Marek Lindner7aadf882011-02-18 12:28:09 +000087 break;
88 }
89 rcu_read_unlock();
90
Antonio Quartulli2dafb492011-05-05 08:42:45 +020091 return tt_local_entry_tmp;
Marek Lindner7aadf882011-02-18 12:28:09 +000092}
93
Antonio Quartulli2dafb492011-05-05 08:42:45 +020094static struct tt_global_entry *tt_global_hash_find(struct bat_priv *bat_priv,
Sven Eckelmann747e4222011-05-14 23:14:50 +020095 const void *data)
Marek Lindner7aadf882011-02-18 12:28:09 +000096{
Antonio Quartulli2dafb492011-05-05 08:42:45 +020097 struct hashtable_t *hash = bat_priv->tt_global_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +000098 struct hlist_head *head;
99 struct hlist_node *node;
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200100 struct tt_global_entry *tt_global_entry;
101 struct tt_global_entry *tt_global_entry_tmp = NULL;
Marek Lindner7aadf882011-02-18 12:28:09 +0000102 int index;
103
104 if (!hash)
105 return NULL;
106
107 index = choose_orig(data, hash->size);
108 head = &hash->table[index];
109
110 rcu_read_lock();
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200111 hlist_for_each_entry_rcu(tt_global_entry, node, head, hash_entry) {
112 if (!compare_eth(tt_global_entry, data))
Marek Lindner7aadf882011-02-18 12:28:09 +0000113 continue;
114
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200115 if (!atomic_inc_not_zero(&tt_global_entry->refcount))
116 continue;
117
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200118 tt_global_entry_tmp = tt_global_entry;
Marek Lindner7aadf882011-02-18 12:28:09 +0000119 break;
120 }
121 rcu_read_unlock();
122
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200123 return tt_global_entry_tmp;
Marek Lindner7aadf882011-02-18 12:28:09 +0000124}
125
Antonio Quartullia73105b2011-04-27 14:27:44 +0200126static bool is_out_of_time(unsigned long starting_time, unsigned long timeout)
127{
128 unsigned long deadline;
129 deadline = starting_time + msecs_to_jiffies(timeout);
130
131 return time_after(jiffies, deadline);
132}
133
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200134static void tt_local_entry_free_ref(struct tt_local_entry *tt_local_entry)
135{
136 if (atomic_dec_and_test(&tt_local_entry->refcount))
137 kfree_rcu(tt_local_entry, rcu);
138}
139
140static void tt_global_entry_free_ref(struct tt_global_entry *tt_global_entry)
141{
142 if (atomic_dec_and_test(&tt_global_entry->refcount))
143 kfree_rcu(tt_global_entry, rcu);
144}
145
Antonio Quartulliff66c972011-06-30 01:14:00 +0200146static void tt_local_event(struct bat_priv *bat_priv, const uint8_t *addr,
147 uint8_t flags)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200148{
149 struct tt_change_node *tt_change_node;
150
151 tt_change_node = kmalloc(sizeof(*tt_change_node), GFP_ATOMIC);
152
153 if (!tt_change_node)
154 return;
155
Antonio Quartulliff66c972011-06-30 01:14:00 +0200156 tt_change_node->change.flags = flags;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200157 memcpy(tt_change_node->change.addr, addr, ETH_ALEN);
158
159 spin_lock_bh(&bat_priv->tt_changes_list_lock);
160 /* track the change in the OGMinterval list */
161 list_add_tail(&tt_change_node->list, &bat_priv->tt_changes_list);
162 atomic_inc(&bat_priv->tt_local_changes);
163 spin_unlock_bh(&bat_priv->tt_changes_list_lock);
164
165 atomic_set(&bat_priv->tt_ogm_append_cnt, 0);
166}
167
168int tt_len(int changes_num)
169{
170 return changes_num * sizeof(struct tt_change);
171}
172
173static int tt_local_init(struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000174{
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200175 if (bat_priv->tt_local_hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000176 return 1;
177
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200178 bat_priv->tt_local_hash = hash_new(1024);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000179
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200180 if (!bat_priv->tt_local_hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000181 return 0;
182
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000183 return 1;
184}
185
Antonio Quartullibc279082011-07-07 15:35:35 +0200186void tt_local_add(struct net_device *soft_iface, const uint8_t *addr,
187 int ifindex)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000188{
189 struct bat_priv *bat_priv = netdev_priv(soft_iface);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200190 struct tt_local_entry *tt_local_entry = NULL;
191 struct tt_global_entry *tt_global_entry = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000192
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200193 tt_local_entry = tt_local_hash_find(bat_priv, addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000194
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200195 if (tt_local_entry) {
196 tt_local_entry->last_seen = jiffies;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200197 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000198 }
199
Sven Eckelmann704509b2011-05-14 23:14:54 +0200200 tt_local_entry = kmalloc(sizeof(*tt_local_entry), GFP_ATOMIC);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200201 if (!tt_local_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200202 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200203
Antonio Quartullia73105b2011-04-27 14:27:44 +0200204 bat_dbg(DBG_TT, bat_priv,
205 "Creating new local tt entry: %pM (ttvn: %d)\n", addr,
206 (uint8_t)atomic_read(&bat_priv->ttvn));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000207
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200208 memcpy(tt_local_entry->addr, addr, ETH_ALEN);
209 tt_local_entry->last_seen = jiffies;
Antonio Quartulli5fbc1592011-06-17 16:11:27 +0200210 tt_local_entry->flags = NO_FLAGS;
Antonio Quartullibc279082011-07-07 15:35:35 +0200211 if (is_wifi_iface(ifindex))
212 tt_local_entry->flags |= TT_CLIENT_WIFI;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200213 atomic_set(&tt_local_entry->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000214
215 /* the batman interface mac address should never be purged */
Marek Lindner39901e72011-02-18 12:28:08 +0000216 if (compare_eth(addr, soft_iface->dev_addr))
Antonio Quartulli5fbc1592011-06-17 16:11:27 +0200217 tt_local_entry->flags |= TT_CLIENT_NOPURGE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000218
Antonio Quartulliff66c972011-06-30 01:14:00 +0200219 tt_local_event(bat_priv, addr, tt_local_entry->flags);
220
Antonio Quartulli058d0e22011-07-07 01:40:58 +0200221 /* The local entry has to be marked as NEW to avoid to send it in
222 * a full table response going out before the next ttvn increment
223 * (consistency check) */
224 tt_local_entry->flags |= TT_CLIENT_NEW;
225
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200226 hash_add(bat_priv->tt_local_hash, compare_ltt, choose_orig,
227 tt_local_entry, &tt_local_entry->hash_entry);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200228
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000229 /* remove address from global hash if present */
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200230 tt_global_entry = tt_global_hash_find(bat_priv, addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000231
Antonio Quartullicc47f662011-04-27 14:27:57 +0200232 /* Check whether it is a roaming! */
233 if (tt_global_entry) {
Antonio Quartullicc47f662011-04-27 14:27:57 +0200234 /* This node is probably going to update its tt table */
235 tt_global_entry->orig_node->tt_poss_change = true;
Antonio Quartulli980d55b2011-07-07 01:40:59 +0200236 /* The global entry has to be marked as PENDING and has to be
237 * kept for consistency purpose */
238 tt_global_entry->flags |= TT_CLIENT_PENDING;
Antonio Quartullicc47f662011-04-27 14:27:57 +0200239 send_roam_adv(bat_priv, tt_global_entry->addr,
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200240 tt_global_entry->orig_node);
241 }
242out:
243 if (tt_local_entry)
244 tt_local_entry_free_ref(tt_local_entry);
245 if (tt_global_entry)
246 tt_global_entry_free_ref(tt_global_entry);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000247}
248
Antonio Quartullia73105b2011-04-27 14:27:44 +0200249int tt_changes_fill_buffer(struct bat_priv *bat_priv,
250 unsigned char *buff, int buff_len)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000251{
Antonio Quartullia73105b2011-04-27 14:27:44 +0200252 int count = 0, tot_changes = 0;
253 struct tt_change_node *entry, *safe;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000254
Antonio Quartullia73105b2011-04-27 14:27:44 +0200255 if (buff_len > 0)
256 tot_changes = buff_len / tt_len(1);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000257
Antonio Quartullia73105b2011-04-27 14:27:44 +0200258 spin_lock_bh(&bat_priv->tt_changes_list_lock);
259 atomic_set(&bat_priv->tt_local_changes, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000260
Antonio Quartullia73105b2011-04-27 14:27:44 +0200261 list_for_each_entry_safe(entry, safe, &bat_priv->tt_changes_list,
262 list) {
263 if (count < tot_changes) {
264 memcpy(buff + tt_len(count),
265 &entry->change, sizeof(struct tt_change));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000266 count++;
267 }
Antonio Quartullia73105b2011-04-27 14:27:44 +0200268 list_del(&entry->list);
269 kfree(entry);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000270 }
Antonio Quartullia73105b2011-04-27 14:27:44 +0200271 spin_unlock_bh(&bat_priv->tt_changes_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000272
Antonio Quartullia73105b2011-04-27 14:27:44 +0200273 /* Keep the buffer for possible tt_request */
274 spin_lock_bh(&bat_priv->tt_buff_lock);
275 kfree(bat_priv->tt_buff);
276 bat_priv->tt_buff_len = 0;
277 bat_priv->tt_buff = NULL;
278 /* We check whether this new OGM has no changes due to size
279 * problems */
280 if (buff_len > 0) {
281 /**
282 * if kmalloc() fails we will reply with the full table
283 * instead of providing the diff
284 */
285 bat_priv->tt_buff = kmalloc(buff_len, GFP_ATOMIC);
286 if (bat_priv->tt_buff) {
287 memcpy(bat_priv->tt_buff, buff, buff_len);
288 bat_priv->tt_buff_len = buff_len;
289 }
290 }
291 spin_unlock_bh(&bat_priv->tt_buff_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000292
Antonio Quartullia73105b2011-04-27 14:27:44 +0200293 return tot_changes;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000294}
295
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200296int tt_local_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000297{
298 struct net_device *net_dev = (struct net_device *)seq->private;
299 struct bat_priv *bat_priv = netdev_priv(net_dev);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200300 struct hashtable_t *hash = bat_priv->tt_local_hash;
301 struct tt_local_entry *tt_local_entry;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200302 struct hard_iface *primary_if;
Marek Lindner7aadf882011-02-18 12:28:09 +0000303 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000304 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000305 size_t buf_size, pos;
306 char *buff;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200307 int i, ret = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000308
Marek Lindner32ae9b22011-04-20 15:40:58 +0200309 primary_if = primary_if_get_selected(bat_priv);
310 if (!primary_if) {
311 ret = seq_printf(seq, "BATMAN mesh %s disabled - "
312 "please specify interfaces to enable it\n",
313 net_dev->name);
314 goto out;
315 }
316
317 if (primary_if->if_status != IF_ACTIVE) {
318 ret = seq_printf(seq, "BATMAN mesh %s disabled - "
319 "primary interface not active\n",
320 net_dev->name);
321 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000322 }
323
324 seq_printf(seq, "Locally retrieved addresses (from %s) "
Antonio Quartullia73105b2011-04-27 14:27:44 +0200325 "announced via TT (TTVN: %u):\n",
326 net_dev->name, (uint8_t)atomic_read(&bat_priv->ttvn));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000327
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000328 buf_size = 1;
329 /* Estimate length for: " * xx:xx:xx:xx:xx:xx\n" */
330 for (i = 0; i < hash->size; i++) {
331 head = &hash->table[i];
332
Marek Lindner7aadf882011-02-18 12:28:09 +0000333 rcu_read_lock();
334 __hlist_for_each_rcu(node, head)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000335 buf_size += 21;
Marek Lindner7aadf882011-02-18 12:28:09 +0000336 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000337 }
338
339 buff = kmalloc(buf_size, GFP_ATOMIC);
340 if (!buff) {
Marek Lindner32ae9b22011-04-20 15:40:58 +0200341 ret = -ENOMEM;
342 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000343 }
Marek Lindner7aadf882011-02-18 12:28:09 +0000344
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000345 buff[0] = '\0';
346 pos = 0;
347
348 for (i = 0; i < hash->size; i++) {
349 head = &hash->table[i];
350
Marek Lindner7aadf882011-02-18 12:28:09 +0000351 rcu_read_lock();
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200352 hlist_for_each_entry_rcu(tt_local_entry, node,
Marek Lindner7aadf882011-02-18 12:28:09 +0000353 head, hash_entry) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000354 pos += snprintf(buff + pos, 22, " * %pM\n",
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200355 tt_local_entry->addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000356 }
Marek Lindner7aadf882011-02-18 12:28:09 +0000357 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000358 }
359
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000360 seq_printf(seq, "%s", buff);
361 kfree(buff);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200362out:
363 if (primary_if)
364 hardif_free_ref(primary_if);
365 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000366}
367
Antonio Quartulli058d0e22011-07-07 01:40:58 +0200368static void tt_local_set_pending(struct bat_priv *bat_priv,
369 struct tt_local_entry *tt_local_entry,
370 uint16_t flags)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000371{
Antonio Quartulli058d0e22011-07-07 01:40:58 +0200372 tt_local_event(bat_priv, tt_local_entry->addr,
373 tt_local_entry->flags | flags);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000374
Antonio Quartulli015758d2011-07-09 17:52:13 +0200375 /* The local client has to be marked as "pending to be removed" but has
376 * to be kept in the table in order to send it in a full table
Antonio Quartulli058d0e22011-07-07 01:40:58 +0200377 * response issued before the net ttvn increment (consistency check) */
378 tt_local_entry->flags |= TT_CLIENT_PENDING;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000379}
380
Antonio Quartullia73105b2011-04-27 14:27:44 +0200381void tt_local_remove(struct bat_priv *bat_priv, const uint8_t *addr,
Antonio Quartullicc47f662011-04-27 14:27:57 +0200382 const char *message, bool roaming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000383{
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200384 struct tt_local_entry *tt_local_entry = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000385
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200386 tt_local_entry = tt_local_hash_find(bat_priv, addr);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200387 if (!tt_local_entry)
388 goto out;
389
Antonio Quartulli058d0e22011-07-07 01:40:58 +0200390 tt_local_set_pending(bat_priv, tt_local_entry, TT_CLIENT_DEL |
391 (roaming ? TT_CLIENT_ROAM : NO_FLAGS));
392
393 bat_dbg(DBG_TT, bat_priv, "Local tt entry (%pM) pending to be removed: "
394 "%s\n", tt_local_entry->addr, message);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200395out:
396 if (tt_local_entry)
397 tt_local_entry_free_ref(tt_local_entry);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000398}
399
Antonio Quartullia73105b2011-04-27 14:27:44 +0200400static void tt_local_purge(struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000401{
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200402 struct hashtable_t *hash = bat_priv->tt_local_hash;
403 struct tt_local_entry *tt_local_entry;
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;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200406 spinlock_t *list_lock; /* protects write access to the hash lists */
Marek Lindner7aadf882011-02-18 12:28:09 +0000407 int i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000408
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000409 for (i = 0; i < hash->size; i++) {
410 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200411 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000412
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200413 spin_lock_bh(list_lock);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200414 hlist_for_each_entry_safe(tt_local_entry, node, node_tmp,
Marek Lindner7aadf882011-02-18 12:28:09 +0000415 head, hash_entry) {
Antonio Quartulli5fbc1592011-06-17 16:11:27 +0200416 if (tt_local_entry->flags & TT_CLIENT_NOPURGE)
Marek Lindner7aadf882011-02-18 12:28:09 +0000417 continue;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000418
Antonio Quartulli058d0e22011-07-07 01:40:58 +0200419 /* entry already marked for deletion */
420 if (tt_local_entry->flags & TT_CLIENT_PENDING)
421 continue;
422
Antonio Quartullia73105b2011-04-27 14:27:44 +0200423 if (!is_out_of_time(tt_local_entry->last_seen,
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200424 TT_LOCAL_TIMEOUT * 1000))
Marek Lindner7aadf882011-02-18 12:28:09 +0000425 continue;
426
Antonio Quartulli058d0e22011-07-07 01:40:58 +0200427 tt_local_set_pending(bat_priv, tt_local_entry,
428 TT_CLIENT_DEL);
429 bat_dbg(DBG_TT, bat_priv, "Local tt entry (%pM) "
430 "pending to be removed: timed out\n",
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200431 tt_local_entry->addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000432 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200433 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000434 }
435
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000436}
437
Antonio Quartullia73105b2011-04-27 14:27:44 +0200438static void tt_local_table_free(struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000439{
Antonio Quartullia73105b2011-04-27 14:27:44 +0200440 struct hashtable_t *hash;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200441 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullia73105b2011-04-27 14:27:44 +0200442 struct tt_local_entry *tt_local_entry;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200443 struct hlist_node *node, *node_tmp;
444 struct hlist_head *head;
445 int i;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200446
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200447 if (!bat_priv->tt_local_hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000448 return;
449
Antonio Quartullia73105b2011-04-27 14:27:44 +0200450 hash = bat_priv->tt_local_hash;
451
452 for (i = 0; i < hash->size; i++) {
453 head = &hash->table[i];
454 list_lock = &hash->list_locks[i];
455
456 spin_lock_bh(list_lock);
457 hlist_for_each_entry_safe(tt_local_entry, node, node_tmp,
458 head, hash_entry) {
459 hlist_del_rcu(node);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200460 tt_local_entry_free_ref(tt_local_entry);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200461 }
462 spin_unlock_bh(list_lock);
463 }
464
465 hash_destroy(hash);
466
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200467 bat_priv->tt_local_hash = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000468}
469
Antonio Quartullia73105b2011-04-27 14:27:44 +0200470static int tt_global_init(struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000471{
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200472 if (bat_priv->tt_global_hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000473 return 1;
474
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200475 bat_priv->tt_global_hash = hash_new(1024);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000476
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200477 if (!bat_priv->tt_global_hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000478 return 0;
479
480 return 1;
481}
482
Antonio Quartullia73105b2011-04-27 14:27:44 +0200483static void tt_changes_list_free(struct bat_priv *bat_priv)
484{
485 struct tt_change_node *entry, *safe;
486
487 spin_lock_bh(&bat_priv->tt_changes_list_lock);
488
489 list_for_each_entry_safe(entry, safe, &bat_priv->tt_changes_list,
490 list) {
491 list_del(&entry->list);
492 kfree(entry);
493 }
494
495 atomic_set(&bat_priv->tt_local_changes, 0);
496 spin_unlock_bh(&bat_priv->tt_changes_list_lock);
497}
498
499/* caller must hold orig_node refcount */
500int tt_global_add(struct bat_priv *bat_priv, struct orig_node *orig_node,
Antonio Quartullibc279082011-07-07 15:35:35 +0200501 const unsigned char *tt_addr, uint8_t ttvn, bool roaming,
502 bool wifi)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000503{
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200504 struct tt_global_entry *tt_global_entry;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200505 struct orig_node *orig_node_tmp;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200506 int ret = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000507
Antonio Quartullia73105b2011-04-27 14:27:44 +0200508 tt_global_entry = tt_global_hash_find(bat_priv, tt_addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000509
Antonio Quartullia73105b2011-04-27 14:27:44 +0200510 if (!tt_global_entry) {
511 tt_global_entry =
512 kmalloc(sizeof(*tt_global_entry),
513 GFP_ATOMIC);
514 if (!tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200515 goto out;
516
Antonio Quartullia73105b2011-04-27 14:27:44 +0200517 memcpy(tt_global_entry->addr, tt_addr, ETH_ALEN);
518 /* Assign the new orig_node */
519 atomic_inc(&orig_node->refcount);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200520 tt_global_entry->orig_node = orig_node;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200521 tt_global_entry->ttvn = ttvn;
Antonio Quartullicc47f662011-04-27 14:27:57 +0200522 tt_global_entry->flags = NO_FLAGS;
523 tt_global_entry->roam_at = 0;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200524 atomic_set(&tt_global_entry->refcount, 2);
525
Antonio Quartullia73105b2011-04-27 14:27:44 +0200526 hash_add(bat_priv->tt_global_hash, compare_gtt,
527 choose_orig, tt_global_entry,
528 &tt_global_entry->hash_entry);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200529 atomic_inc(&orig_node->tt_size);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200530 } else {
531 if (tt_global_entry->orig_node != orig_node) {
532 atomic_dec(&tt_global_entry->orig_node->tt_size);
533 orig_node_tmp = tt_global_entry->orig_node;
534 atomic_inc(&orig_node->refcount);
535 tt_global_entry->orig_node = orig_node;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200536 orig_node_free_ref(orig_node_tmp);
537 atomic_inc(&orig_node->tt_size);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000538 }
Antonio Quartullicc47f662011-04-27 14:27:57 +0200539 tt_global_entry->ttvn = ttvn;
540 tt_global_entry->flags = NO_FLAGS;
541 tt_global_entry->roam_at = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000542 }
Antonio Quartullia73105b2011-04-27 14:27:44 +0200543
Antonio Quartullibc279082011-07-07 15:35:35 +0200544 if (wifi)
545 tt_global_entry->flags |= TT_CLIENT_WIFI;
546
Antonio Quartullia73105b2011-04-27 14:27:44 +0200547 bat_dbg(DBG_TT, bat_priv,
548 "Creating new global tt entry: %pM (via %pM)\n",
549 tt_global_entry->addr, orig_node->orig);
550
551 /* remove address from local hash if present */
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200552 tt_local_remove(bat_priv, tt_global_entry->addr,
553 "global tt received", roaming);
554 ret = 1;
555out:
556 if (tt_global_entry)
557 tt_global_entry_free_ref(tt_global_entry);
558 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000559}
560
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200561int tt_global_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000562{
563 struct net_device *net_dev = (struct net_device *)seq->private;
564 struct bat_priv *bat_priv = netdev_priv(net_dev);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200565 struct hashtable_t *hash = bat_priv->tt_global_hash;
566 struct tt_global_entry *tt_global_entry;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200567 struct hard_iface *primary_if;
Marek Lindner7aadf882011-02-18 12:28:09 +0000568 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000569 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000570 size_t buf_size, pos;
571 char *buff;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200572 int i, ret = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000573
Marek Lindner32ae9b22011-04-20 15:40:58 +0200574 primary_if = primary_if_get_selected(bat_priv);
575 if (!primary_if) {
576 ret = seq_printf(seq, "BATMAN mesh %s disabled - please "
577 "specify interfaces to enable it\n",
578 net_dev->name);
579 goto out;
580 }
581
582 if (primary_if->if_status != IF_ACTIVE) {
583 ret = seq_printf(seq, "BATMAN mesh %s disabled - "
584 "primary interface not active\n",
585 net_dev->name);
586 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000587 }
588
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200589 seq_printf(seq,
590 "Globally announced TT entries received via the mesh %s\n",
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000591 net_dev->name);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200592 seq_printf(seq, " %-13s %s %-15s %s\n",
593 "Client", "(TTVN)", "Originator", "(Curr TTVN)");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000594
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000595 buf_size = 1;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200596 /* Estimate length for: " * xx:xx:xx:xx:xx:xx (ttvn) via
597 * xx:xx:xx:xx:xx:xx (cur_ttvn)\n"*/
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000598 for (i = 0; i < hash->size; i++) {
599 head = &hash->table[i];
600
Marek Lindner7aadf882011-02-18 12:28:09 +0000601 rcu_read_lock();
602 __hlist_for_each_rcu(node, head)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200603 buf_size += 59;
Marek Lindner7aadf882011-02-18 12:28:09 +0000604 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000605 }
606
607 buff = kmalloc(buf_size, GFP_ATOMIC);
608 if (!buff) {
Marek Lindner32ae9b22011-04-20 15:40:58 +0200609 ret = -ENOMEM;
610 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000611 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200612
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000613 buff[0] = '\0';
614 pos = 0;
615
616 for (i = 0; i < hash->size; i++) {
617 head = &hash->table[i];
618
Marek Lindner7aadf882011-02-18 12:28:09 +0000619 rcu_read_lock();
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200620 hlist_for_each_entry_rcu(tt_global_entry, node,
Marek Lindner7aadf882011-02-18 12:28:09 +0000621 head, hash_entry) {
Antonio Quartullia73105b2011-04-27 14:27:44 +0200622 pos += snprintf(buff + pos, 61,
623 " * %pM (%3u) via %pM (%3u)\n",
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200624 tt_global_entry->addr,
Antonio Quartullia73105b2011-04-27 14:27:44 +0200625 tt_global_entry->ttvn,
626 tt_global_entry->orig_node->orig,
627 (uint8_t) atomic_read(
628 &tt_global_entry->orig_node->
629 last_ttvn));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000630 }
Marek Lindner7aadf882011-02-18 12:28:09 +0000631 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000632 }
633
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000634 seq_printf(seq, "%s", buff);
635 kfree(buff);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200636out:
637 if (primary_if)
638 hardif_free_ref(primary_if);
639 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000640}
641
Antonio Quartullia73105b2011-04-27 14:27:44 +0200642static void _tt_global_del(struct bat_priv *bat_priv,
643 struct tt_global_entry *tt_global_entry,
644 const char *message)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000645{
Antonio Quartullia73105b2011-04-27 14:27:44 +0200646 if (!tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200647 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200648
649 bat_dbg(DBG_TT, bat_priv,
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200650 "Deleting global tt entry %pM (via %pM): %s\n",
651 tt_global_entry->addr, tt_global_entry->orig_node->orig,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000652 message);
653
Antonio Quartullia73105b2011-04-27 14:27:44 +0200654 atomic_dec(&tt_global_entry->orig_node->tt_size);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200655
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200656 hash_remove(bat_priv->tt_global_hash, compare_gtt, choose_orig,
657 tt_global_entry->addr);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200658out:
659 if (tt_global_entry)
660 tt_global_entry_free_ref(tt_global_entry);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000661}
662
Antonio Quartullia73105b2011-04-27 14:27:44 +0200663void tt_global_del(struct bat_priv *bat_priv,
664 struct orig_node *orig_node, const unsigned char *addr,
Antonio Quartullicc47f662011-04-27 14:27:57 +0200665 const char *message, bool roaming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000666{
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200667 struct tt_global_entry *tt_global_entry = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000668
Antonio Quartullia73105b2011-04-27 14:27:44 +0200669 tt_global_entry = tt_global_hash_find(bat_priv, addr);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200670 if (!tt_global_entry)
671 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200672
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200673 if (tt_global_entry->orig_node == orig_node) {
Antonio Quartullicc47f662011-04-27 14:27:57 +0200674 if (roaming) {
675 tt_global_entry->flags |= TT_CLIENT_ROAM;
676 tt_global_entry->roam_at = jiffies;
677 goto out;
678 }
Antonio Quartullia73105b2011-04-27 14:27:44 +0200679 _tt_global_del(bat_priv, tt_global_entry, message);
680 }
Antonio Quartullicc47f662011-04-27 14:27:57 +0200681out:
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200682 if (tt_global_entry)
683 tt_global_entry_free_ref(tt_global_entry);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200684}
685
686void tt_global_del_orig(struct bat_priv *bat_priv,
687 struct orig_node *orig_node, const char *message)
688{
689 struct tt_global_entry *tt_global_entry;
690 int i;
691 struct hashtable_t *hash = bat_priv->tt_global_hash;
692 struct hlist_node *node, *safe;
693 struct hlist_head *head;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200694 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullia73105b2011-04-27 14:27:44 +0200695
Antonio Quartullia73105b2011-04-27 14:27:44 +0200696 for (i = 0; i < hash->size; i++) {
697 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200698 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000699
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200700 spin_lock_bh(list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200701 hlist_for_each_entry_safe(tt_global_entry, node, safe,
702 head, hash_entry) {
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200703 if (tt_global_entry->orig_node == orig_node) {
704 bat_dbg(DBG_TT, bat_priv,
705 "Deleting global tt entry %pM "
706 "(via %pM): originator time out\n",
707 tt_global_entry->addr,
708 tt_global_entry->orig_node->orig);
709 hlist_del_rcu(node);
710 tt_global_entry_free_ref(tt_global_entry);
711 }
Antonio Quartullia73105b2011-04-27 14:27:44 +0200712 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200713 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000714 }
Antonio Quartullia73105b2011-04-27 14:27:44 +0200715 atomic_set(&orig_node->tt_size, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000716}
717
Antonio Quartullicc47f662011-04-27 14:27:57 +0200718static void tt_global_roam_purge(struct bat_priv *bat_priv)
719{
720 struct hashtable_t *hash = bat_priv->tt_global_hash;
721 struct tt_global_entry *tt_global_entry;
722 struct hlist_node *node, *node_tmp;
723 struct hlist_head *head;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200724 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullicc47f662011-04-27 14:27:57 +0200725 int i;
726
Antonio Quartullicc47f662011-04-27 14:27:57 +0200727 for (i = 0; i < hash->size; i++) {
728 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200729 list_lock = &hash->list_locks[i];
Antonio Quartullicc47f662011-04-27 14:27:57 +0200730
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200731 spin_lock_bh(list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +0200732 hlist_for_each_entry_safe(tt_global_entry, node, node_tmp,
733 head, hash_entry) {
734 if (!(tt_global_entry->flags & TT_CLIENT_ROAM))
735 continue;
736 if (!is_out_of_time(tt_global_entry->roam_at,
737 TT_CLIENT_ROAM_TIMEOUT * 1000))
738 continue;
739
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200740 bat_dbg(DBG_TT, bat_priv, "Deleting global "
741 "tt entry (%pM): Roaming timeout\n",
742 tt_global_entry->addr);
743 atomic_dec(&tt_global_entry->orig_node->tt_size);
744 hlist_del_rcu(node);
745 tt_global_entry_free_ref(tt_global_entry);
Antonio Quartullicc47f662011-04-27 14:27:57 +0200746 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200747 spin_unlock_bh(list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +0200748 }
749
Antonio Quartullicc47f662011-04-27 14:27:57 +0200750}
751
Antonio Quartullia73105b2011-04-27 14:27:44 +0200752static void tt_global_table_free(struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000753{
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200754 struct hashtable_t *hash;
755 spinlock_t *list_lock; /* protects write access to the hash lists */
756 struct tt_global_entry *tt_global_entry;
757 struct hlist_node *node, *node_tmp;
758 struct hlist_head *head;
759 int i;
760
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200761 if (!bat_priv->tt_global_hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000762 return;
763
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200764 hash = bat_priv->tt_global_hash;
765
766 for (i = 0; i < hash->size; i++) {
767 head = &hash->table[i];
768 list_lock = &hash->list_locks[i];
769
770 spin_lock_bh(list_lock);
771 hlist_for_each_entry_safe(tt_global_entry, node, node_tmp,
772 head, hash_entry) {
773 hlist_del_rcu(node);
774 tt_global_entry_free_ref(tt_global_entry);
775 }
776 spin_unlock_bh(list_lock);
777 }
778
779 hash_destroy(hash);
780
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200781 bat_priv->tt_global_hash = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000782}
783
Sven Eckelmann747e4222011-05-14 23:14:50 +0200784struct orig_node *transtable_search(struct bat_priv *bat_priv,
785 const uint8_t *addr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000786{
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200787 struct tt_global_entry *tt_global_entry;
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000788 struct orig_node *orig_node = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000789
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200790 tt_global_entry = tt_global_hash_find(bat_priv, addr);
Marek Lindner7aadf882011-02-18 12:28:09 +0000791
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200792 if (!tt_global_entry)
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000793 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000794
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200795 if (!atomic_inc_not_zero(&tt_global_entry->orig_node->refcount))
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200796 goto free_tt;
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000797
Antonio Quartulli980d55b2011-07-07 01:40:59 +0200798 /* A global client marked as PENDING has already moved from that
799 * originator */
800 if (tt_global_entry->flags & TT_CLIENT_PENDING)
801 goto free_tt;
802
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200803 orig_node = tt_global_entry->orig_node;
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000804
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200805free_tt:
806 tt_global_entry_free_ref(tt_global_entry);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000807out:
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000808 return orig_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000809}
Antonio Quartullia73105b2011-04-27 14:27:44 +0200810
811/* Calculates the checksum of the local table of a given orig_node */
812uint16_t tt_global_crc(struct bat_priv *bat_priv, struct orig_node *orig_node)
813{
814 uint16_t total = 0, total_one;
815 struct hashtable_t *hash = bat_priv->tt_global_hash;
816 struct tt_global_entry *tt_global_entry;
817 struct hlist_node *node;
818 struct hlist_head *head;
819 int i, j;
820
821 for (i = 0; i < hash->size; i++) {
822 head = &hash->table[i];
823
824 rcu_read_lock();
825 hlist_for_each_entry_rcu(tt_global_entry, node,
826 head, hash_entry) {
827 if (compare_eth(tt_global_entry->orig_node,
828 orig_node)) {
Antonio Quartullicc47f662011-04-27 14:27:57 +0200829 /* Roaming clients are in the global table for
830 * consistency only. They don't have to be
831 * taken into account while computing the
832 * global crc */
833 if (tt_global_entry->flags & TT_CLIENT_ROAM)
834 continue;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200835 total_one = 0;
836 for (j = 0; j < ETH_ALEN; j++)
837 total_one = crc16_byte(total_one,
838 tt_global_entry->addr[j]);
839 total ^= total_one;
840 }
841 }
842 rcu_read_unlock();
843 }
844
845 return total;
846}
847
848/* Calculates the checksum of the local table */
849uint16_t tt_local_crc(struct bat_priv *bat_priv)
850{
851 uint16_t total = 0, total_one;
852 struct hashtable_t *hash = bat_priv->tt_local_hash;
853 struct tt_local_entry *tt_local_entry;
854 struct hlist_node *node;
855 struct hlist_head *head;
856 int i, j;
857
858 for (i = 0; i < hash->size; i++) {
859 head = &hash->table[i];
860
861 rcu_read_lock();
862 hlist_for_each_entry_rcu(tt_local_entry, node,
863 head, hash_entry) {
Antonio Quartulli058d0e22011-07-07 01:40:58 +0200864 /* not yet committed clients have not to be taken into
865 * account while computing the CRC */
866 if (tt_local_entry->flags & TT_CLIENT_NEW)
867 continue;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200868 total_one = 0;
869 for (j = 0; j < ETH_ALEN; j++)
870 total_one = crc16_byte(total_one,
871 tt_local_entry->addr[j]);
872 total ^= total_one;
873 }
Antonio Quartullia73105b2011-04-27 14:27:44 +0200874 rcu_read_unlock();
875 }
876
877 return total;
878}
879
880static void tt_req_list_free(struct bat_priv *bat_priv)
881{
882 struct tt_req_node *node, *safe;
883
884 spin_lock_bh(&bat_priv->tt_req_list_lock);
885
886 list_for_each_entry_safe(node, safe, &bat_priv->tt_req_list, list) {
887 list_del(&node->list);
888 kfree(node);
889 }
890
891 spin_unlock_bh(&bat_priv->tt_req_list_lock);
892}
893
894void tt_save_orig_buffer(struct bat_priv *bat_priv, struct orig_node *orig_node,
895 const unsigned char *tt_buff, uint8_t tt_num_changes)
896{
897 uint16_t tt_buff_len = tt_len(tt_num_changes);
898
899 /* Replace the old buffer only if I received something in the
900 * last OGM (the OGM could carry no changes) */
901 spin_lock_bh(&orig_node->tt_buff_lock);
902 if (tt_buff_len > 0) {
903 kfree(orig_node->tt_buff);
904 orig_node->tt_buff_len = 0;
905 orig_node->tt_buff = kmalloc(tt_buff_len, GFP_ATOMIC);
906 if (orig_node->tt_buff) {
907 memcpy(orig_node->tt_buff, tt_buff, tt_buff_len);
908 orig_node->tt_buff_len = tt_buff_len;
909 }
910 }
911 spin_unlock_bh(&orig_node->tt_buff_lock);
912}
913
914static void tt_req_purge(struct bat_priv *bat_priv)
915{
916 struct tt_req_node *node, *safe;
917
918 spin_lock_bh(&bat_priv->tt_req_list_lock);
919 list_for_each_entry_safe(node, safe, &bat_priv->tt_req_list, list) {
920 if (is_out_of_time(node->issued_at,
921 TT_REQUEST_TIMEOUT * 1000)) {
922 list_del(&node->list);
923 kfree(node);
924 }
925 }
926 spin_unlock_bh(&bat_priv->tt_req_list_lock);
927}
928
929/* returns the pointer to the new tt_req_node struct if no request
930 * has already been issued for this orig_node, NULL otherwise */
931static struct tt_req_node *new_tt_req_node(struct bat_priv *bat_priv,
932 struct orig_node *orig_node)
933{
934 struct tt_req_node *tt_req_node_tmp, *tt_req_node = NULL;
935
936 spin_lock_bh(&bat_priv->tt_req_list_lock);
937 list_for_each_entry(tt_req_node_tmp, &bat_priv->tt_req_list, list) {
938 if (compare_eth(tt_req_node_tmp, orig_node) &&
939 !is_out_of_time(tt_req_node_tmp->issued_at,
940 TT_REQUEST_TIMEOUT * 1000))
941 goto unlock;
942 }
943
944 tt_req_node = kmalloc(sizeof(*tt_req_node), GFP_ATOMIC);
945 if (!tt_req_node)
946 goto unlock;
947
948 memcpy(tt_req_node->addr, orig_node->orig, ETH_ALEN);
949 tt_req_node->issued_at = jiffies;
950
951 list_add(&tt_req_node->list, &bat_priv->tt_req_list);
952unlock:
953 spin_unlock_bh(&bat_priv->tt_req_list_lock);
954 return tt_req_node;
955}
956
Antonio Quartulli058d0e22011-07-07 01:40:58 +0200957/* data_ptr is useless here, but has to be kept to respect the prototype */
958static int tt_local_valid_entry(const void *entry_ptr, const void *data_ptr)
959{
960 const struct tt_local_entry *tt_local_entry = entry_ptr;
961
962 if (tt_local_entry->flags & TT_CLIENT_NEW)
963 return 0;
964 return 1;
965}
966
Antonio Quartullia73105b2011-04-27 14:27:44 +0200967static int tt_global_valid_entry(const void *entry_ptr, const void *data_ptr)
968{
969 const struct tt_global_entry *tt_global_entry = entry_ptr;
970 const struct orig_node *orig_node = data_ptr;
971
Antonio Quartullicc47f662011-04-27 14:27:57 +0200972 if (tt_global_entry->flags & TT_CLIENT_ROAM)
973 return 0;
974
Antonio Quartullia73105b2011-04-27 14:27:44 +0200975 return (tt_global_entry->orig_node == orig_node);
976}
977
978static struct sk_buff *tt_response_fill_table(uint16_t tt_len, uint8_t ttvn,
979 struct hashtable_t *hash,
980 struct hard_iface *primary_if,
981 int (*valid_cb)(const void *,
982 const void *),
983 void *cb_data)
984{
985 struct tt_local_entry *tt_local_entry;
986 struct tt_query_packet *tt_response;
987 struct tt_change *tt_change;
988 struct hlist_node *node;
989 struct hlist_head *head;
990 struct sk_buff *skb = NULL;
991 uint16_t tt_tot, tt_count;
992 ssize_t tt_query_size = sizeof(struct tt_query_packet);
993 int i;
994
995 if (tt_query_size + tt_len > primary_if->soft_iface->mtu) {
996 tt_len = primary_if->soft_iface->mtu - tt_query_size;
997 tt_len -= tt_len % sizeof(struct tt_change);
998 }
999 tt_tot = tt_len / sizeof(struct tt_change);
1000
1001 skb = dev_alloc_skb(tt_query_size + tt_len + ETH_HLEN);
1002 if (!skb)
1003 goto out;
1004
1005 skb_reserve(skb, ETH_HLEN);
1006 tt_response = (struct tt_query_packet *)skb_put(skb,
1007 tt_query_size + tt_len);
1008 tt_response->ttvn = ttvn;
1009 tt_response->tt_data = htons(tt_tot);
1010
1011 tt_change = (struct tt_change *)(skb->data + tt_query_size);
1012 tt_count = 0;
1013
1014 rcu_read_lock();
1015 for (i = 0; i < hash->size; i++) {
1016 head = &hash->table[i];
1017
1018 hlist_for_each_entry_rcu(tt_local_entry, node,
1019 head, hash_entry) {
1020 if (tt_count == tt_tot)
1021 break;
1022
1023 if ((valid_cb) && (!valid_cb(tt_local_entry, cb_data)))
1024 continue;
1025
1026 memcpy(tt_change->addr, tt_local_entry->addr, ETH_ALEN);
1027 tt_change->flags = NO_FLAGS;
1028
1029 tt_count++;
1030 tt_change++;
1031 }
1032 }
1033 rcu_read_unlock();
1034
1035out:
1036 return skb;
1037}
1038
1039int send_tt_request(struct bat_priv *bat_priv, struct orig_node *dst_orig_node,
1040 uint8_t ttvn, uint16_t tt_crc, bool full_table)
1041{
1042 struct sk_buff *skb = NULL;
1043 struct tt_query_packet *tt_request;
1044 struct neigh_node *neigh_node = NULL;
1045 struct hard_iface *primary_if;
1046 struct tt_req_node *tt_req_node = NULL;
1047 int ret = 1;
1048
1049 primary_if = primary_if_get_selected(bat_priv);
1050 if (!primary_if)
1051 goto out;
1052
1053 /* The new tt_req will be issued only if I'm not waiting for a
1054 * reply from the same orig_node yet */
1055 tt_req_node = new_tt_req_node(bat_priv, dst_orig_node);
1056 if (!tt_req_node)
1057 goto out;
1058
1059 skb = dev_alloc_skb(sizeof(struct tt_query_packet) + ETH_HLEN);
1060 if (!skb)
1061 goto out;
1062
1063 skb_reserve(skb, ETH_HLEN);
1064
1065 tt_request = (struct tt_query_packet *)skb_put(skb,
1066 sizeof(struct tt_query_packet));
1067
1068 tt_request->packet_type = BAT_TT_QUERY;
1069 tt_request->version = COMPAT_VERSION;
1070 memcpy(tt_request->src, primary_if->net_dev->dev_addr, ETH_ALEN);
1071 memcpy(tt_request->dst, dst_orig_node->orig, ETH_ALEN);
1072 tt_request->ttl = TTL;
1073 tt_request->ttvn = ttvn;
1074 tt_request->tt_data = tt_crc;
1075 tt_request->flags = TT_REQUEST;
1076
1077 if (full_table)
1078 tt_request->flags |= TT_FULL_TABLE;
1079
1080 neigh_node = orig_node_get_router(dst_orig_node);
1081 if (!neigh_node)
1082 goto out;
1083
1084 bat_dbg(DBG_TT, bat_priv, "Sending TT_REQUEST to %pM via %pM "
1085 "[%c]\n", dst_orig_node->orig, neigh_node->addr,
1086 (full_table ? 'F' : '.'));
1087
1088 send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr);
1089 ret = 0;
1090
1091out:
1092 if (neigh_node)
1093 neigh_node_free_ref(neigh_node);
1094 if (primary_if)
1095 hardif_free_ref(primary_if);
1096 if (ret)
1097 kfree_skb(skb);
1098 if (ret && tt_req_node) {
1099 spin_lock_bh(&bat_priv->tt_req_list_lock);
1100 list_del(&tt_req_node->list);
1101 spin_unlock_bh(&bat_priv->tt_req_list_lock);
1102 kfree(tt_req_node);
1103 }
1104 return ret;
1105}
1106
1107static bool send_other_tt_response(struct bat_priv *bat_priv,
1108 struct tt_query_packet *tt_request)
1109{
1110 struct orig_node *req_dst_orig_node = NULL, *res_dst_orig_node = NULL;
1111 struct neigh_node *neigh_node = NULL;
1112 struct hard_iface *primary_if = NULL;
1113 uint8_t orig_ttvn, req_ttvn, ttvn;
1114 int ret = false;
1115 unsigned char *tt_buff;
1116 bool full_table;
1117 uint16_t tt_len, tt_tot;
1118 struct sk_buff *skb = NULL;
1119 struct tt_query_packet *tt_response;
1120
1121 bat_dbg(DBG_TT, bat_priv,
1122 "Received TT_REQUEST from %pM for "
1123 "ttvn: %u (%pM) [%c]\n", tt_request->src,
1124 tt_request->ttvn, tt_request->dst,
1125 (tt_request->flags & TT_FULL_TABLE ? 'F' : '.'));
1126
1127 /* Let's get the orig node of the REAL destination */
1128 req_dst_orig_node = get_orig_node(bat_priv, tt_request->dst);
1129 if (!req_dst_orig_node)
1130 goto out;
1131
1132 res_dst_orig_node = get_orig_node(bat_priv, tt_request->src);
1133 if (!res_dst_orig_node)
1134 goto out;
1135
1136 neigh_node = orig_node_get_router(res_dst_orig_node);
1137 if (!neigh_node)
1138 goto out;
1139
1140 primary_if = primary_if_get_selected(bat_priv);
1141 if (!primary_if)
1142 goto out;
1143
1144 orig_ttvn = (uint8_t)atomic_read(&req_dst_orig_node->last_ttvn);
1145 req_ttvn = tt_request->ttvn;
1146
Antonio Quartulli015758d2011-07-09 17:52:13 +02001147 /* I don't have the requested data */
Antonio Quartullia73105b2011-04-27 14:27:44 +02001148 if (orig_ttvn != req_ttvn ||
1149 tt_request->tt_data != req_dst_orig_node->tt_crc)
1150 goto out;
1151
Antonio Quartulli015758d2011-07-09 17:52:13 +02001152 /* If the full table has been explicitly requested */
Antonio Quartullia73105b2011-04-27 14:27:44 +02001153 if (tt_request->flags & TT_FULL_TABLE ||
1154 !req_dst_orig_node->tt_buff)
1155 full_table = true;
1156 else
1157 full_table = false;
1158
1159 /* In this version, fragmentation is not implemented, then
1160 * I'll send only one packet with as much TT entries as I can */
1161 if (!full_table) {
1162 spin_lock_bh(&req_dst_orig_node->tt_buff_lock);
1163 tt_len = req_dst_orig_node->tt_buff_len;
1164 tt_tot = tt_len / sizeof(struct tt_change);
1165
1166 skb = dev_alloc_skb(sizeof(struct tt_query_packet) +
1167 tt_len + ETH_HLEN);
1168 if (!skb)
1169 goto unlock;
1170
1171 skb_reserve(skb, ETH_HLEN);
1172 tt_response = (struct tt_query_packet *)skb_put(skb,
1173 sizeof(struct tt_query_packet) + tt_len);
1174 tt_response->ttvn = req_ttvn;
1175 tt_response->tt_data = htons(tt_tot);
1176
1177 tt_buff = skb->data + sizeof(struct tt_query_packet);
1178 /* Copy the last orig_node's OGM buffer */
1179 memcpy(tt_buff, req_dst_orig_node->tt_buff,
1180 req_dst_orig_node->tt_buff_len);
1181
1182 spin_unlock_bh(&req_dst_orig_node->tt_buff_lock);
1183 } else {
1184 tt_len = (uint16_t)atomic_read(&req_dst_orig_node->tt_size) *
1185 sizeof(struct tt_change);
1186 ttvn = (uint8_t)atomic_read(&req_dst_orig_node->last_ttvn);
1187
1188 skb = tt_response_fill_table(tt_len, ttvn,
1189 bat_priv->tt_global_hash,
1190 primary_if, tt_global_valid_entry,
1191 req_dst_orig_node);
1192 if (!skb)
1193 goto out;
1194
1195 tt_response = (struct tt_query_packet *)skb->data;
1196 }
1197
1198 tt_response->packet_type = BAT_TT_QUERY;
1199 tt_response->version = COMPAT_VERSION;
1200 tt_response->ttl = TTL;
1201 memcpy(tt_response->src, req_dst_orig_node->orig, ETH_ALEN);
1202 memcpy(tt_response->dst, tt_request->src, ETH_ALEN);
1203 tt_response->flags = TT_RESPONSE;
1204
1205 if (full_table)
1206 tt_response->flags |= TT_FULL_TABLE;
1207
1208 bat_dbg(DBG_TT, bat_priv,
1209 "Sending TT_RESPONSE %pM via %pM for %pM (ttvn: %u)\n",
1210 res_dst_orig_node->orig, neigh_node->addr,
1211 req_dst_orig_node->orig, req_ttvn);
1212
1213 send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr);
1214 ret = true;
1215 goto out;
1216
1217unlock:
1218 spin_unlock_bh(&req_dst_orig_node->tt_buff_lock);
1219
1220out:
1221 if (res_dst_orig_node)
1222 orig_node_free_ref(res_dst_orig_node);
1223 if (req_dst_orig_node)
1224 orig_node_free_ref(req_dst_orig_node);
1225 if (neigh_node)
1226 neigh_node_free_ref(neigh_node);
1227 if (primary_if)
1228 hardif_free_ref(primary_if);
1229 if (!ret)
1230 kfree_skb(skb);
1231 return ret;
1232
1233}
1234static bool send_my_tt_response(struct bat_priv *bat_priv,
1235 struct tt_query_packet *tt_request)
1236{
1237 struct orig_node *orig_node = NULL;
1238 struct neigh_node *neigh_node = NULL;
1239 struct hard_iface *primary_if = NULL;
1240 uint8_t my_ttvn, req_ttvn, ttvn;
1241 int ret = false;
1242 unsigned char *tt_buff;
1243 bool full_table;
1244 uint16_t tt_len, tt_tot;
1245 struct sk_buff *skb = NULL;
1246 struct tt_query_packet *tt_response;
1247
1248 bat_dbg(DBG_TT, bat_priv,
1249 "Received TT_REQUEST from %pM for "
1250 "ttvn: %u (me) [%c]\n", tt_request->src,
1251 tt_request->ttvn,
1252 (tt_request->flags & TT_FULL_TABLE ? 'F' : '.'));
1253
1254
1255 my_ttvn = (uint8_t)atomic_read(&bat_priv->ttvn);
1256 req_ttvn = tt_request->ttvn;
1257
1258 orig_node = get_orig_node(bat_priv, tt_request->src);
1259 if (!orig_node)
1260 goto out;
1261
1262 neigh_node = orig_node_get_router(orig_node);
1263 if (!neigh_node)
1264 goto out;
1265
1266 primary_if = primary_if_get_selected(bat_priv);
1267 if (!primary_if)
1268 goto out;
1269
1270 /* If the full table has been explicitly requested or the gap
1271 * is too big send the whole local translation table */
1272 if (tt_request->flags & TT_FULL_TABLE || my_ttvn != req_ttvn ||
1273 !bat_priv->tt_buff)
1274 full_table = true;
1275 else
1276 full_table = false;
1277
1278 /* In this version, fragmentation is not implemented, then
1279 * I'll send only one packet with as much TT entries as I can */
1280 if (!full_table) {
1281 spin_lock_bh(&bat_priv->tt_buff_lock);
1282 tt_len = bat_priv->tt_buff_len;
1283 tt_tot = tt_len / sizeof(struct tt_change);
1284
1285 skb = dev_alloc_skb(sizeof(struct tt_query_packet) +
1286 tt_len + ETH_HLEN);
1287 if (!skb)
1288 goto unlock;
1289
1290 skb_reserve(skb, ETH_HLEN);
1291 tt_response = (struct tt_query_packet *)skb_put(skb,
1292 sizeof(struct tt_query_packet) + tt_len);
1293 tt_response->ttvn = req_ttvn;
1294 tt_response->tt_data = htons(tt_tot);
1295
1296 tt_buff = skb->data + sizeof(struct tt_query_packet);
1297 memcpy(tt_buff, bat_priv->tt_buff,
1298 bat_priv->tt_buff_len);
1299 spin_unlock_bh(&bat_priv->tt_buff_lock);
1300 } else {
1301 tt_len = (uint16_t)atomic_read(&bat_priv->num_local_tt) *
1302 sizeof(struct tt_change);
1303 ttvn = (uint8_t)atomic_read(&bat_priv->ttvn);
1304
1305 skb = tt_response_fill_table(tt_len, ttvn,
1306 bat_priv->tt_local_hash,
Antonio Quartulli058d0e22011-07-07 01:40:58 +02001307 primary_if, tt_local_valid_entry,
1308 NULL);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001309 if (!skb)
1310 goto out;
1311
1312 tt_response = (struct tt_query_packet *)skb->data;
1313 }
1314
1315 tt_response->packet_type = BAT_TT_QUERY;
1316 tt_response->version = COMPAT_VERSION;
1317 tt_response->ttl = TTL;
1318 memcpy(tt_response->src, primary_if->net_dev->dev_addr, ETH_ALEN);
1319 memcpy(tt_response->dst, tt_request->src, ETH_ALEN);
1320 tt_response->flags = TT_RESPONSE;
1321
1322 if (full_table)
1323 tt_response->flags |= TT_FULL_TABLE;
1324
1325 bat_dbg(DBG_TT, bat_priv,
1326 "Sending TT_RESPONSE to %pM via %pM [%c]\n",
1327 orig_node->orig, neigh_node->addr,
1328 (tt_response->flags & TT_FULL_TABLE ? 'F' : '.'));
1329
1330 send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr);
1331 ret = true;
1332 goto out;
1333
1334unlock:
1335 spin_unlock_bh(&bat_priv->tt_buff_lock);
1336out:
1337 if (orig_node)
1338 orig_node_free_ref(orig_node);
1339 if (neigh_node)
1340 neigh_node_free_ref(neigh_node);
1341 if (primary_if)
1342 hardif_free_ref(primary_if);
1343 if (!ret)
1344 kfree_skb(skb);
1345 /* This packet was for me, so it doesn't need to be re-routed */
1346 return true;
1347}
1348
1349bool send_tt_response(struct bat_priv *bat_priv,
1350 struct tt_query_packet *tt_request)
1351{
1352 if (is_my_mac(tt_request->dst))
1353 return send_my_tt_response(bat_priv, tt_request);
1354 else
1355 return send_other_tt_response(bat_priv, tt_request);
1356}
1357
1358static void _tt_update_changes(struct bat_priv *bat_priv,
1359 struct orig_node *orig_node,
1360 struct tt_change *tt_change,
1361 uint16_t tt_num_changes, uint8_t ttvn)
1362{
1363 int i;
1364
1365 for (i = 0; i < tt_num_changes; i++) {
Antonio Quartulli5fbc1592011-06-17 16:11:27 +02001366 if ((tt_change + i)->flags & TT_CLIENT_DEL)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001367 tt_global_del(bat_priv, orig_node,
1368 (tt_change + i)->addr,
Antonio Quartullicc47f662011-04-27 14:27:57 +02001369 "tt removed by changes",
1370 (tt_change + i)->flags & TT_CLIENT_ROAM);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001371 else
1372 if (!tt_global_add(bat_priv, orig_node,
Antonio Quartullibc279082011-07-07 15:35:35 +02001373 (tt_change + i)->addr, ttvn, false,
1374 (tt_change + i)->flags &
1375 TT_CLIENT_WIFI))
Antonio Quartullia73105b2011-04-27 14:27:44 +02001376 /* In case of problem while storing a
1377 * global_entry, we stop the updating
1378 * procedure without committing the
1379 * ttvn change. This will avoid to send
1380 * corrupted data on tt_request
1381 */
1382 return;
1383 }
1384}
1385
1386static void tt_fill_gtable(struct bat_priv *bat_priv,
1387 struct tt_query_packet *tt_response)
1388{
1389 struct orig_node *orig_node = NULL;
1390
1391 orig_node = orig_hash_find(bat_priv, tt_response->src);
1392 if (!orig_node)
1393 goto out;
1394
1395 /* Purge the old table first.. */
1396 tt_global_del_orig(bat_priv, orig_node, "Received full table");
1397
1398 _tt_update_changes(bat_priv, orig_node,
1399 (struct tt_change *)(tt_response + 1),
1400 tt_response->tt_data, tt_response->ttvn);
1401
1402 spin_lock_bh(&orig_node->tt_buff_lock);
1403 kfree(orig_node->tt_buff);
1404 orig_node->tt_buff_len = 0;
1405 orig_node->tt_buff = NULL;
1406 spin_unlock_bh(&orig_node->tt_buff_lock);
1407
1408 atomic_set(&orig_node->last_ttvn, tt_response->ttvn);
1409
1410out:
1411 if (orig_node)
1412 orig_node_free_ref(orig_node);
1413}
1414
1415void tt_update_changes(struct bat_priv *bat_priv, struct orig_node *orig_node,
1416 uint16_t tt_num_changes, uint8_t ttvn,
1417 struct tt_change *tt_change)
1418{
1419 _tt_update_changes(bat_priv, orig_node, tt_change, tt_num_changes,
1420 ttvn);
1421
1422 tt_save_orig_buffer(bat_priv, orig_node, (unsigned char *)tt_change,
1423 tt_num_changes);
1424 atomic_set(&orig_node->last_ttvn, ttvn);
1425}
1426
1427bool is_my_client(struct bat_priv *bat_priv, const uint8_t *addr)
1428{
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001429 struct tt_local_entry *tt_local_entry = NULL;
1430 bool ret = false;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001431
Antonio Quartullia73105b2011-04-27 14:27:44 +02001432 tt_local_entry = tt_local_hash_find(bat_priv, addr);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001433 if (!tt_local_entry)
1434 goto out;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02001435 /* Check if the client has been logically deleted (but is kept for
1436 * consistency purpose) */
1437 if (tt_local_entry->flags & TT_CLIENT_PENDING)
1438 goto out;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001439 ret = true;
1440out:
Antonio Quartullia73105b2011-04-27 14:27:44 +02001441 if (tt_local_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001442 tt_local_entry_free_ref(tt_local_entry);
1443 return ret;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001444}
1445
1446void handle_tt_response(struct bat_priv *bat_priv,
1447 struct tt_query_packet *tt_response)
1448{
1449 struct tt_req_node *node, *safe;
1450 struct orig_node *orig_node = NULL;
1451
1452 bat_dbg(DBG_TT, bat_priv, "Received TT_RESPONSE from %pM for "
1453 "ttvn %d t_size: %d [%c]\n",
1454 tt_response->src, tt_response->ttvn,
1455 tt_response->tt_data,
1456 (tt_response->flags & TT_FULL_TABLE ? 'F' : '.'));
1457
1458 orig_node = orig_hash_find(bat_priv, tt_response->src);
1459 if (!orig_node)
1460 goto out;
1461
1462 if (tt_response->flags & TT_FULL_TABLE)
1463 tt_fill_gtable(bat_priv, tt_response);
1464 else
1465 tt_update_changes(bat_priv, orig_node, tt_response->tt_data,
1466 tt_response->ttvn,
1467 (struct tt_change *)(tt_response + 1));
1468
1469 /* Delete the tt_req_node from pending tt_requests list */
1470 spin_lock_bh(&bat_priv->tt_req_list_lock);
1471 list_for_each_entry_safe(node, safe, &bat_priv->tt_req_list, list) {
1472 if (!compare_eth(node->addr, tt_response->src))
1473 continue;
1474 list_del(&node->list);
1475 kfree(node);
1476 }
1477 spin_unlock_bh(&bat_priv->tt_req_list_lock);
1478
1479 /* Recalculate the CRC for this orig_node and store it */
Antonio Quartullia73105b2011-04-27 14:27:44 +02001480 orig_node->tt_crc = tt_global_crc(bat_priv, orig_node);
Antonio Quartullicc47f662011-04-27 14:27:57 +02001481 /* Roaming phase is over: tables are in sync again. I can
1482 * unset the flag */
1483 orig_node->tt_poss_change = false;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001484out:
1485 if (orig_node)
1486 orig_node_free_ref(orig_node);
1487}
1488
1489int tt_init(struct bat_priv *bat_priv)
1490{
1491 if (!tt_local_init(bat_priv))
1492 return 0;
1493
1494 if (!tt_global_init(bat_priv))
1495 return 0;
1496
1497 tt_start_timer(bat_priv);
1498
1499 return 1;
1500}
1501
Antonio Quartullicc47f662011-04-27 14:27:57 +02001502static void tt_roam_list_free(struct bat_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001503{
Antonio Quartullicc47f662011-04-27 14:27:57 +02001504 struct tt_roam_node *node, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001505
Antonio Quartullicc47f662011-04-27 14:27:57 +02001506 spin_lock_bh(&bat_priv->tt_roam_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001507
Antonio Quartullicc47f662011-04-27 14:27:57 +02001508 list_for_each_entry_safe(node, safe, &bat_priv->tt_roam_list, list) {
1509 list_del(&node->list);
1510 kfree(node);
1511 }
1512
1513 spin_unlock_bh(&bat_priv->tt_roam_list_lock);
1514}
1515
1516static void tt_roam_purge(struct bat_priv *bat_priv)
1517{
1518 struct tt_roam_node *node, *safe;
1519
1520 spin_lock_bh(&bat_priv->tt_roam_list_lock);
1521 list_for_each_entry_safe(node, safe, &bat_priv->tt_roam_list, list) {
1522 if (!is_out_of_time(node->first_time,
1523 ROAMING_MAX_TIME * 1000))
1524 continue;
1525
1526 list_del(&node->list);
1527 kfree(node);
1528 }
1529 spin_unlock_bh(&bat_priv->tt_roam_list_lock);
1530}
1531
1532/* This function checks whether the client already reached the
1533 * maximum number of possible roaming phases. In this case the ROAMING_ADV
1534 * will not be sent.
1535 *
1536 * returns true if the ROAMING_ADV can be sent, false otherwise */
1537static bool tt_check_roam_count(struct bat_priv *bat_priv,
1538 uint8_t *client)
1539{
1540 struct tt_roam_node *tt_roam_node;
1541 bool ret = false;
1542
1543 spin_lock_bh(&bat_priv->tt_roam_list_lock);
1544 /* The new tt_req will be issued only if I'm not waiting for a
1545 * reply from the same orig_node yet */
1546 list_for_each_entry(tt_roam_node, &bat_priv->tt_roam_list, list) {
1547 if (!compare_eth(tt_roam_node->addr, client))
1548 continue;
1549
1550 if (is_out_of_time(tt_roam_node->first_time,
1551 ROAMING_MAX_TIME * 1000))
1552 continue;
1553
1554 if (!atomic_dec_not_zero(&tt_roam_node->counter))
1555 /* Sorry, you roamed too many times! */
1556 goto unlock;
1557 ret = true;
1558 break;
1559 }
1560
1561 if (!ret) {
1562 tt_roam_node = kmalloc(sizeof(*tt_roam_node), GFP_ATOMIC);
1563 if (!tt_roam_node)
1564 goto unlock;
1565
1566 tt_roam_node->first_time = jiffies;
1567 atomic_set(&tt_roam_node->counter, ROAMING_MAX_COUNT - 1);
1568 memcpy(tt_roam_node->addr, client, ETH_ALEN);
1569
1570 list_add(&tt_roam_node->list, &bat_priv->tt_roam_list);
1571 ret = true;
1572 }
1573
1574unlock:
1575 spin_unlock_bh(&bat_priv->tt_roam_list_lock);
1576 return ret;
1577}
1578
1579void send_roam_adv(struct bat_priv *bat_priv, uint8_t *client,
1580 struct orig_node *orig_node)
1581{
1582 struct neigh_node *neigh_node = NULL;
1583 struct sk_buff *skb = NULL;
1584 struct roam_adv_packet *roam_adv_packet;
1585 int ret = 1;
1586 struct hard_iface *primary_if;
1587
1588 /* before going on we have to check whether the client has
1589 * already roamed to us too many times */
1590 if (!tt_check_roam_count(bat_priv, client))
1591 goto out;
1592
1593 skb = dev_alloc_skb(sizeof(struct roam_adv_packet) + ETH_HLEN);
1594 if (!skb)
1595 goto out;
1596
1597 skb_reserve(skb, ETH_HLEN);
1598
1599 roam_adv_packet = (struct roam_adv_packet *)skb_put(skb,
1600 sizeof(struct roam_adv_packet));
1601
1602 roam_adv_packet->packet_type = BAT_ROAM_ADV;
1603 roam_adv_packet->version = COMPAT_VERSION;
1604 roam_adv_packet->ttl = TTL;
1605 primary_if = primary_if_get_selected(bat_priv);
1606 if (!primary_if)
1607 goto out;
1608 memcpy(roam_adv_packet->src, primary_if->net_dev->dev_addr, ETH_ALEN);
1609 hardif_free_ref(primary_if);
1610 memcpy(roam_adv_packet->dst, orig_node->orig, ETH_ALEN);
1611 memcpy(roam_adv_packet->client, client, ETH_ALEN);
1612
1613 neigh_node = orig_node_get_router(orig_node);
1614 if (!neigh_node)
1615 goto out;
1616
1617 bat_dbg(DBG_TT, bat_priv,
1618 "Sending ROAMING_ADV to %pM (client %pM) via %pM\n",
1619 orig_node->orig, client, neigh_node->addr);
1620
1621 send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr);
1622 ret = 0;
1623
1624out:
1625 if (neigh_node)
1626 neigh_node_free_ref(neigh_node);
1627 if (ret)
1628 kfree_skb(skb);
1629 return;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001630}
1631
1632static void tt_purge(struct work_struct *work)
1633{
1634 struct delayed_work *delayed_work =
1635 container_of(work, struct delayed_work, work);
1636 struct bat_priv *bat_priv =
1637 container_of(delayed_work, struct bat_priv, tt_work);
1638
1639 tt_local_purge(bat_priv);
Antonio Quartullicc47f662011-04-27 14:27:57 +02001640 tt_global_roam_purge(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001641 tt_req_purge(bat_priv);
Antonio Quartullicc47f662011-04-27 14:27:57 +02001642 tt_roam_purge(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001643
1644 tt_start_timer(bat_priv);
1645}
Antonio Quartullicc47f662011-04-27 14:27:57 +02001646
1647void tt_free(struct bat_priv *bat_priv)
1648{
1649 cancel_delayed_work_sync(&bat_priv->tt_work);
1650
1651 tt_local_table_free(bat_priv);
1652 tt_global_table_free(bat_priv);
1653 tt_req_list_free(bat_priv);
1654 tt_changes_list_free(bat_priv);
1655 tt_roam_list_free(bat_priv);
1656
1657 kfree(bat_priv->tt_buff);
1658}
Antonio Quartulli058d0e22011-07-07 01:40:58 +02001659
1660/* This function will reset the specified flags from all the entries in
1661 * the given hash table and will increment num_local_tt for each involved
1662 * entry */
1663static void tt_local_reset_flags(struct bat_priv *bat_priv, uint16_t flags)
1664{
1665 int i;
1666 struct hashtable_t *hash = bat_priv->tt_local_hash;
1667 struct hlist_head *head;
1668 struct hlist_node *node;
1669 struct tt_local_entry *tt_local_entry;
1670
1671 if (!hash)
1672 return;
1673
1674 for (i = 0; i < hash->size; i++) {
1675 head = &hash->table[i];
1676
1677 rcu_read_lock();
1678 hlist_for_each_entry_rcu(tt_local_entry, node,
1679 head, hash_entry) {
1680 tt_local_entry->flags &= ~flags;
1681 atomic_inc(&bat_priv->num_local_tt);
1682 }
1683 rcu_read_unlock();
1684 }
1685
1686}
1687
1688/* Purge out all the tt local entries marked with TT_CLIENT_PENDING */
1689static void tt_local_purge_pending_clients(struct bat_priv *bat_priv)
1690{
1691 struct hashtable_t *hash = bat_priv->tt_local_hash;
1692 struct tt_local_entry *tt_local_entry;
1693 struct hlist_node *node, *node_tmp;
1694 struct hlist_head *head;
1695 spinlock_t *list_lock; /* protects write access to the hash lists */
1696 int i;
1697
1698 if (!hash)
1699 return;
1700
1701 for (i = 0; i < hash->size; i++) {
1702 head = &hash->table[i];
1703 list_lock = &hash->list_locks[i];
1704
1705 spin_lock_bh(list_lock);
1706 hlist_for_each_entry_safe(tt_local_entry, node, node_tmp,
1707 head, hash_entry) {
1708 if (!(tt_local_entry->flags & TT_CLIENT_PENDING))
1709 continue;
1710
1711 bat_dbg(DBG_TT, bat_priv, "Deleting local tt entry "
1712 "(%pM): pending\n", tt_local_entry->addr);
1713
1714 atomic_dec(&bat_priv->num_local_tt);
1715 hlist_del_rcu(node);
1716 tt_local_entry_free_ref(tt_local_entry);
1717 }
1718 spin_unlock_bh(list_lock);
1719 }
1720
1721}
1722
1723void tt_commit_changes(struct bat_priv *bat_priv)
1724{
1725 tt_local_reset_flags(bat_priv, TT_CLIENT_NEW);
1726 tt_local_purge_pending_clients(bat_priv);
1727
1728 /* Increment the TTVN only once per OGM interval */
1729 atomic_inc(&bat_priv->ttvn);
1730 bat_priv->tt_poss_change = false;
1731}