blob: ff625fedbc5eeb08a7569c01973f5eb1ddc71eb1 [file] [log] [blame]
Antonio Quartulli0b873932013-01-04 03:05:31 +01001/* Copyright (C) 2007-2013 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002 *
Antonio Quartulli35c133a2012-03-14 13:03:01 +01003 * Marek Lindner, Simon Wunderlich, Antonio Quartulli
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00004 *
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
20#include "main.h"
21#include "translation-table.h"
22#include "soft-interface.h"
Marek Lindner32ae9b22011-04-20 15:40:58 +020023#include "hard-interface.h"
Antonio Quartullia73105b2011-04-27 14:27:44 +020024#include "send.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000025#include "hash.h"
26#include "originator.h"
Antonio Quartullia73105b2011-04-27 14:27:44 +020027#include "routing.h"
Simon Wunderlich20ff9d52012-01-22 20:00:23 +010028#include "bridge_loop_avoidance.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000029
Antonio Quartulliced72932013-04-24 16:37:51 +020030#include <linux/crc32c.h>
Antonio Quartullia73105b2011-04-27 14:27:44 +020031
Antonio Quartullidec05072012-11-10 11:00:32 +010032/* hash class keys */
33static struct lock_class_key batadv_tt_local_hash_lock_class_key;
34static struct lock_class_key batadv_tt_global_hash_lock_class_key;
35
Sven Eckelmann56303d32012-06-05 22:31:31 +020036static void batadv_send_roam_adv(struct batadv_priv *bat_priv, uint8_t *client,
Antonio Quartullic018ad32013-06-04 12:11:39 +020037 unsigned short vid,
Sven Eckelmann56303d32012-06-05 22:31:31 +020038 struct batadv_orig_node *orig_node);
Sven Eckelmanna5130882012-05-16 20:23:16 +020039static void batadv_tt_purge(struct work_struct *work);
40static void
Sven Eckelmann56303d32012-06-05 22:31:31 +020041batadv_tt_global_del_orig_list(struct batadv_tt_global_entry *tt_global_entry);
Antonio Quartulli30cfd022012-07-05 23:38:29 +020042static void batadv_tt_global_del(struct batadv_priv *bat_priv,
43 struct batadv_orig_node *orig_node,
44 const unsigned char *addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +020045 unsigned short vid, const char *message,
46 bool roaming);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000047
Marek Lindner7aadf882011-02-18 12:28:09 +000048/* returns 1 if they are the same mac addr */
Sven Eckelmanna5130882012-05-16 20:23:16 +020049static int batadv_compare_tt(const struct hlist_node *node, const void *data2)
Marek Lindner7aadf882011-02-18 12:28:09 +000050{
Sven Eckelmann56303d32012-06-05 22:31:31 +020051 const void *data1 = container_of(node, struct batadv_tt_common_entry,
Sven Eckelmann747e4222011-05-14 23:14:50 +020052 hash_entry);
Marek Lindner7aadf882011-02-18 12:28:09 +000053
54 return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0);
55}
56
Antonio Quartullic018ad32013-06-04 12:11:39 +020057/**
58 * batadv_choose_tt - return the index of the tt entry in the hash table
59 * @data: pointer to the tt_common_entry object to map
60 * @size: the size of the hash table
61 *
62 * Returns the hash index where the object represented by 'data' should be
63 * stored at.
64 */
65static inline uint32_t batadv_choose_tt(const void *data, uint32_t size)
66{
67 struct batadv_tt_common_entry *tt;
68 uint32_t hash = 0;
69
70 tt = (struct batadv_tt_common_entry *)data;
71 hash = batadv_hash_bytes(hash, &tt->addr, ETH_ALEN);
72 hash = batadv_hash_bytes(hash, &tt->vid, sizeof(tt->vid));
73
74 hash += (hash << 3);
75 hash ^= (hash >> 11);
76 hash += (hash << 15);
77
78 return hash % size;
79}
80
81/**
82 * batadv_tt_hash_find - look for a client in the given hash table
83 * @hash: the hash table to search
84 * @addr: the mac address of the client to look for
85 * @vid: VLAN identifier
86 *
87 * Returns a pointer to the tt_common struct belonging to the searched client if
88 * found, NULL otherwise.
89 */
Sven Eckelmann56303d32012-06-05 22:31:31 +020090static struct batadv_tt_common_entry *
Antonio Quartullic018ad32013-06-04 12:11:39 +020091batadv_tt_hash_find(struct batadv_hashtable *hash, const uint8_t *addr,
92 unsigned short vid)
Marek Lindner7aadf882011-02-18 12:28:09 +000093{
Marek Lindner7aadf882011-02-18 12:28:09 +000094 struct hlist_head *head;
Antonio Quartullic018ad32013-06-04 12:11:39 +020095 struct batadv_tt_common_entry to_search, *tt, *tt_tmp = NULL;
Antonio Quartullic90681b2011-10-05 17:05:25 +020096 uint32_t index;
Marek Lindner7aadf882011-02-18 12:28:09 +000097
98 if (!hash)
99 return NULL;
100
Antonio Quartullic018ad32013-06-04 12:11:39 +0200101 memcpy(to_search.addr, addr, ETH_ALEN);
102 to_search.vid = vid;
103
104 index = batadv_choose_tt(&to_search, hash->size);
Marek Lindner7aadf882011-02-18 12:28:09 +0000105 head = &hash->table[index];
106
107 rcu_read_lock();
Antonio Quartullic018ad32013-06-04 12:11:39 +0200108 hlist_for_each_entry_rcu(tt, head, hash_entry) {
109 if (!batadv_compare_eth(tt, addr))
Marek Lindner7aadf882011-02-18 12:28:09 +0000110 continue;
111
Antonio Quartullic018ad32013-06-04 12:11:39 +0200112 if (tt->vid != vid)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200113 continue;
114
Antonio Quartullic018ad32013-06-04 12:11:39 +0200115 if (!atomic_inc_not_zero(&tt->refcount))
116 continue;
117
118 tt_tmp = tt;
Marek Lindner7aadf882011-02-18 12:28:09 +0000119 break;
120 }
121 rcu_read_unlock();
122
Antonio Quartullic018ad32013-06-04 12:11:39 +0200123 return tt_tmp;
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100124}
125
Antonio Quartullic018ad32013-06-04 12:11:39 +0200126/**
127 * batadv_tt_local_hash_find - search the local table for a given client
128 * @bat_priv: the bat priv with all the soft interface information
129 * @addr: the mac address of the client to look for
130 * @vid: VLAN identifier
131 *
132 * Returns a pointer to the corresponding tt_local_entry struct if the client is
133 * found, NULL otherwise.
134 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200135static struct batadv_tt_local_entry *
Antonio Quartullic018ad32013-06-04 12:11:39 +0200136batadv_tt_local_hash_find(struct batadv_priv *bat_priv, const uint8_t *addr,
137 unsigned short vid)
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100138{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200139 struct batadv_tt_common_entry *tt_common_entry;
140 struct batadv_tt_local_entry *tt_local_entry = NULL;
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100141
Antonio Quartullic018ad32013-06-04 12:11:39 +0200142 tt_common_entry = batadv_tt_hash_find(bat_priv->tt.local_hash, addr,
143 vid);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100144 if (tt_common_entry)
145 tt_local_entry = container_of(tt_common_entry,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200146 struct batadv_tt_local_entry,
147 common);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100148 return tt_local_entry;
Marek Lindner7aadf882011-02-18 12:28:09 +0000149}
150
Antonio Quartullic018ad32013-06-04 12:11:39 +0200151/**
152 * batadv_tt_global_hash_find - search the global table for a given client
153 * @bat_priv: the bat priv with all the soft interface information
154 * @addr: the mac address of the client to look for
155 * @vid: VLAN identifier
156 *
157 * Returns a pointer to the corresponding tt_global_entry struct if the client
158 * is found, NULL otherwise.
159 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200160static struct batadv_tt_global_entry *
Antonio Quartullic018ad32013-06-04 12:11:39 +0200161batadv_tt_global_hash_find(struct batadv_priv *bat_priv, const uint8_t *addr,
162 unsigned short vid)
Marek Lindner7aadf882011-02-18 12:28:09 +0000163{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200164 struct batadv_tt_common_entry *tt_common_entry;
165 struct batadv_tt_global_entry *tt_global_entry = NULL;
Marek Lindner7aadf882011-02-18 12:28:09 +0000166
Antonio Quartullic018ad32013-06-04 12:11:39 +0200167 tt_common_entry = batadv_tt_hash_find(bat_priv->tt.global_hash, addr,
168 vid);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100169 if (tt_common_entry)
170 tt_global_entry = container_of(tt_common_entry,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200171 struct batadv_tt_global_entry,
172 common);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100173 return tt_global_entry;
Marek Lindner7aadf882011-02-18 12:28:09 +0000174}
175
Sven Eckelmanna5130882012-05-16 20:23:16 +0200176static void
Sven Eckelmann56303d32012-06-05 22:31:31 +0200177batadv_tt_local_entry_free_ref(struct batadv_tt_local_entry *tt_local_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200178{
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100179 if (atomic_dec_and_test(&tt_local_entry->common.refcount))
180 kfree_rcu(tt_local_entry, common.rcu);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200181}
182
Antonio Quartulli21026052013-05-07 00:29:22 +0200183/**
184 * batadv_tt_global_entry_free_ref - decrement the refcounter for a
185 * tt_global_entry and possibly free it
186 * @tt_global_entry: the object to free
187 */
Sven Eckelmanna5130882012-05-16 20:23:16 +0200188static void
Sven Eckelmann56303d32012-06-05 22:31:31 +0200189batadv_tt_global_entry_free_ref(struct batadv_tt_global_entry *tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200190{
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200191 if (atomic_dec_and_test(&tt_global_entry->common.refcount)) {
Sven Eckelmanna5130882012-05-16 20:23:16 +0200192 batadv_tt_global_del_orig_list(tt_global_entry);
Antonio Quartulli21026052013-05-07 00:29:22 +0200193 kfree_rcu(tt_global_entry, common.rcu);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200194 }
195}
196
Sven Eckelmanna5130882012-05-16 20:23:16 +0200197static void batadv_tt_orig_list_entry_free_rcu(struct rcu_head *rcu)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200198{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200199 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200200
Sven Eckelmann56303d32012-06-05 22:31:31 +0200201 orig_entry = container_of(rcu, struct batadv_tt_orig_list_entry, rcu);
Linus Lüssing72822222013-04-15 21:43:29 +0800202
203 /* We are in an rcu callback here, therefore we cannot use
204 * batadv_orig_node_free_ref() and its call_rcu():
205 * An rcu_barrier() wouldn't wait for that to finish
206 */
207 batadv_orig_node_free_ref_now(orig_entry->orig_node);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200208 kfree(orig_entry);
209}
210
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200211/**
212 * batadv_tt_local_size_mod - change the size by v of the local table identified
213 * by vid
214 * @bat_priv: the bat priv with all the soft interface information
215 * @vid: the VLAN identifier of the sub-table to change
216 * @v: the amount to sum to the local table size
217 */
218static void batadv_tt_local_size_mod(struct batadv_priv *bat_priv,
219 unsigned short vid, int v)
220{
221 struct batadv_softif_vlan *vlan;
222
223 vlan = batadv_softif_vlan_get(bat_priv, vid);
224 if (!vlan)
225 return;
226
227 atomic_add(v, &vlan->tt.num_entries);
228
229 batadv_softif_vlan_free_ref(vlan);
230}
231
232/**
233 * batadv_tt_local_size_inc - increase by one the local table size for the given
234 * vid
235 * @bat_priv: the bat priv with all the soft interface information
236 * @vid: the VLAN identifier
237 */
238static void batadv_tt_local_size_inc(struct batadv_priv *bat_priv,
239 unsigned short vid)
240{
241 batadv_tt_local_size_mod(bat_priv, vid, 1);
242}
243
244/**
245 * batadv_tt_local_size_dec - decrease by one the local table size for the given
246 * vid
247 * @bat_priv: the bat priv with all the soft interface information
248 * @vid: the VLAN identifier
249 */
250static void batadv_tt_local_size_dec(struct batadv_priv *bat_priv,
251 unsigned short vid)
252{
253 batadv_tt_local_size_mod(bat_priv, vid, -1);
254}
255
256/**
257 * batadv_tt_global_size_mod - change the size by v of the local table
258 * identified by vid
259 * @bat_priv: the bat priv with all the soft interface information
260 * @vid: the VLAN identifier
261 * @v: the amount to sum to the global table size
262 */
263static void batadv_tt_global_size_mod(struct batadv_orig_node *orig_node,
264 unsigned short vid, int v)
265{
266 struct batadv_orig_node_vlan *vlan;
267
268 vlan = batadv_orig_node_vlan_new(orig_node, vid);
269 if (!vlan)
270 return;
271
272 if (atomic_add_return(v, &vlan->tt.num_entries) == 0) {
273 spin_lock_bh(&orig_node->vlan_list_lock);
274 list_del_rcu(&vlan->list);
275 spin_unlock_bh(&orig_node->vlan_list_lock);
276 batadv_orig_node_vlan_free_ref(vlan);
277 }
278
279 batadv_orig_node_vlan_free_ref(vlan);
280}
281
282/**
283 * batadv_tt_global_size_inc - increase by one the global table size for the
284 * given vid
285 * @orig_node: the originator which global table size has to be decreased
286 * @vid: the vlan identifier
287 */
288static void batadv_tt_global_size_inc(struct batadv_orig_node *orig_node,
289 unsigned short vid)
290{
291 batadv_tt_global_size_mod(orig_node, vid, 1);
292}
293
294/**
295 * batadv_tt_global_size_dec - decrease by one the global table size for the
296 * given vid
297 * @orig_node: the originator which global table size has to be decreased
298 * @vid: the vlan identifier
299 */
300static void batadv_tt_global_size_dec(struct batadv_orig_node *orig_node,
301 unsigned short vid)
302{
303 batadv_tt_global_size_mod(orig_node, vid, -1);
304}
305
Sven Eckelmanna5130882012-05-16 20:23:16 +0200306static void
Sven Eckelmann56303d32012-06-05 22:31:31 +0200307batadv_tt_orig_list_entry_free_ref(struct batadv_tt_orig_list_entry *orig_entry)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200308{
Antonio Quartullid657e622012-07-01 14:09:12 +0200309 if (!atomic_dec_and_test(&orig_entry->refcount))
310 return;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200311
Sven Eckelmanna5130882012-05-16 20:23:16 +0200312 call_rcu(&orig_entry->rcu, batadv_tt_orig_list_entry_free_rcu);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200313}
314
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200315/**
316 * batadv_tt_local_event - store a local TT event (ADD/DEL)
317 * @bat_priv: the bat priv with all the soft interface information
318 * @tt_local_entry: the TT entry involved in the event
319 * @event_flags: flags to store in the event structure
320 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200321static void batadv_tt_local_event(struct batadv_priv *bat_priv,
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200322 struct batadv_tt_local_entry *tt_local_entry,
323 uint8_t event_flags)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200324{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200325 struct batadv_tt_change_node *tt_change_node, *entry, *safe;
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200326 struct batadv_tt_common_entry *common = &tt_local_entry->common;
327 uint8_t flags = common->flags | event_flags;
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200328 bool event_removed = false;
329 bool del_op_requested, del_op_entry;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200330
331 tt_change_node = kmalloc(sizeof(*tt_change_node), GFP_ATOMIC);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200332 if (!tt_change_node)
333 return;
334
Antonio Quartulliff66c972011-06-30 01:14:00 +0200335 tt_change_node->change.flags = flags;
Antonio Quartullica663042013-12-15 13:26:55 +0100336 memset(tt_change_node->change.reserved, 0,
337 sizeof(tt_change_node->change.reserved));
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200338 memcpy(tt_change_node->change.addr, common->addr, ETH_ALEN);
Antonio Quartullic018ad32013-06-04 12:11:39 +0200339 tt_change_node->change.vid = htons(common->vid);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200340
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200341 del_op_requested = flags & BATADV_TT_CLIENT_DEL;
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200342
343 /* check for ADD+DEL or DEL+ADD events */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200344 spin_lock_bh(&bat_priv->tt.changes_list_lock);
345 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200346 list) {
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200347 if (!batadv_compare_eth(entry->change.addr, common->addr))
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200348 continue;
349
350 /* DEL+ADD in the same orig interval have no effect and can be
351 * removed to avoid silly behaviour on the receiver side. The
352 * other way around (ADD+DEL) can happen in case of roaming of
353 * a client still in the NEW state. Roaming of NEW clients is
354 * now possible due to automatically recognition of "temporary"
355 * clients
356 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200357 del_op_entry = entry->change.flags & BATADV_TT_CLIENT_DEL;
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200358 if (!del_op_requested && del_op_entry)
359 goto del;
360 if (del_op_requested && !del_op_entry)
361 goto del;
Antonio Quartulli3c4f7ab2013-10-13 02:50:19 +0200362
363 /* this is a second add in the same originator interval. It
364 * means that flags have been changed: update them!
365 */
366 if (!del_op_requested && !del_op_entry)
367 entry->change.flags = flags;
368
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200369 continue;
370del:
371 list_del(&entry->list);
372 kfree(entry);
Jesper Juhl155e4e12012-08-07 08:32:34 +0000373 kfree(tt_change_node);
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200374 event_removed = true;
375 goto unlock;
376 }
377
Antonio Quartullia73105b2011-04-27 14:27:44 +0200378 /* track the change in the OGMinterval list */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200379 list_add_tail(&tt_change_node->list, &bat_priv->tt.changes_list);
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200380
381unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +0200382 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200383
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200384 if (event_removed)
Sven Eckelmann807736f2012-07-15 22:26:51 +0200385 atomic_dec(&bat_priv->tt.local_changes);
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200386 else
Sven Eckelmann807736f2012-07-15 22:26:51 +0200387 atomic_inc(&bat_priv->tt.local_changes);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200388}
389
Marek Lindner335fbe02013-04-23 21:40:02 +0800390/**
391 * batadv_tt_len - compute length in bytes of given number of tt changes
392 * @changes_num: number of tt changes
393 *
394 * Returns computed length in bytes.
395 */
396static int batadv_tt_len(int changes_num)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200397{
Marek Lindner335fbe02013-04-23 21:40:02 +0800398 return changes_num * sizeof(struct batadv_tvlv_tt_change);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200399}
400
Antonio Quartulli298e6e62013-05-28 13:14:27 +0200401/**
402 * batadv_tt_entries - compute the number of entries fitting in tt_len bytes
403 * @tt_len: available space
404 *
405 * Returns the number of entries.
406 */
407static uint16_t batadv_tt_entries(uint16_t tt_len)
408{
409 return tt_len / batadv_tt_len(1);
410}
411
Marek Lindnera19d3d82013-05-27 15:33:25 +0800412/**
413 * batadv_tt_local_table_transmit_size - calculates the local translation table
414 * size when transmitted over the air
415 * @bat_priv: the bat priv with all the soft interface information
416 *
417 * Returns local translation table size in bytes.
418 */
419static int batadv_tt_local_table_transmit_size(struct batadv_priv *bat_priv)
420{
421 uint16_t num_vlan = 0, tt_local_entries = 0;
422 struct batadv_softif_vlan *vlan;
423 int hdr_size;
424
425 rcu_read_lock();
426 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
427 num_vlan++;
428 tt_local_entries += atomic_read(&vlan->tt.num_entries);
429 }
430 rcu_read_unlock();
431
432 /* header size of tvlv encapsulated tt response payload */
433 hdr_size = sizeof(struct batadv_unicast_tvlv_packet);
434 hdr_size += sizeof(struct batadv_tvlv_hdr);
435 hdr_size += sizeof(struct batadv_tvlv_tt_data);
436 hdr_size += num_vlan * sizeof(struct batadv_tvlv_tt_vlan_data);
437
438 return hdr_size + batadv_tt_len(tt_local_entries);
439}
440
Sven Eckelmann56303d32012-06-05 22:31:31 +0200441static int batadv_tt_local_init(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000442{
Sven Eckelmann807736f2012-07-15 22:26:51 +0200443 if (bat_priv->tt.local_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200444 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000445
Sven Eckelmann807736f2012-07-15 22:26:51 +0200446 bat_priv->tt.local_hash = batadv_hash_new(1024);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000447
Sven Eckelmann807736f2012-07-15 22:26:51 +0200448 if (!bat_priv->tt.local_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200449 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000450
Antonio Quartullidec05072012-11-10 11:00:32 +0100451 batadv_hash_set_lock_class(bat_priv->tt.local_hash,
452 &batadv_tt_local_hash_lock_class_key);
453
Sven Eckelmann5346c352012-05-05 13:27:28 +0200454 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000455}
456
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200457static void batadv_tt_global_free(struct batadv_priv *bat_priv,
458 struct batadv_tt_global_entry *tt_global,
459 const char *message)
460{
461 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +0200462 "Deleting global tt entry %pM (vid: %d): %s\n",
463 tt_global->common.addr,
464 BATADV_PRINT_VID(tt_global->common.vid), message);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200465
466 batadv_hash_remove(bat_priv->tt.global_hash, batadv_compare_tt,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200467 batadv_choose_tt, &tt_global->common);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200468 batadv_tt_global_entry_free_ref(tt_global);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200469}
470
Antonio Quartullic018ad32013-06-04 12:11:39 +0200471/**
472 * batadv_tt_local_add - add a new client to the local table or update an
473 * existing client
474 * @soft_iface: netdev struct of the mesh interface
475 * @addr: the mac address of the client to add
476 * @vid: VLAN identifier
477 * @ifindex: index of the interface where the client is connected to (useful to
478 * identify wireless clients)
Marek Lindnera19d3d82013-05-27 15:33:25 +0800479 *
480 * Returns true if the client was successfully added, false otherwise.
Antonio Quartullic018ad32013-06-04 12:11:39 +0200481 */
Marek Lindnera19d3d82013-05-27 15:33:25 +0800482bool batadv_tt_local_add(struct net_device *soft_iface, const uint8_t *addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200483 unsigned short vid, int ifindex)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000484{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200485 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmann170173b2012-10-07 12:02:22 +0200486 struct batadv_tt_local_entry *tt_local;
487 struct batadv_tt_global_entry *tt_global;
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200488 struct net_device *in_dev = NULL;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200489 struct hlist_head *head;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200490 struct batadv_tt_orig_list_entry *orig_entry;
Marek Lindnera19d3d82013-05-27 15:33:25 +0800491 int hash_added, table_size, packet_size_max;
492 bool ret = false, roamed_back = false;
Antonio Quartulli3c4f7ab2013-10-13 02:50:19 +0200493 uint8_t remote_flags;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000494
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200495 if (ifindex != BATADV_NULL_IFINDEX)
496 in_dev = dev_get_by_index(&init_net, ifindex);
497
Antonio Quartullic018ad32013-06-04 12:11:39 +0200498 tt_local = batadv_tt_local_hash_find(bat_priv, addr, vid);
499 tt_global = batadv_tt_global_hash_find(bat_priv, addr, vid);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000500
Antonio Quartulli47c94652012-09-23 22:38:35 +0200501 if (tt_local) {
502 tt_local->last_seen = jiffies;
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200503 if (tt_local->common.flags & BATADV_TT_CLIENT_PENDING) {
504 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +0200505 "Re-adding pending client %pM (vid: %d)\n",
506 addr, BATADV_PRINT_VID(vid));
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200507 /* whatever the reason why the PENDING flag was set,
508 * this is a client which was enqueued to be removed in
509 * this orig_interval. Since it popped up again, the
510 * flag can be reset like it was never enqueued
511 */
512 tt_local->common.flags &= ~BATADV_TT_CLIENT_PENDING;
513 goto add_event;
514 }
515
516 if (tt_local->common.flags & BATADV_TT_CLIENT_ROAM) {
517 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +0200518 "Roaming client %pM (vid: %d) came back to its original location\n",
519 addr, BATADV_PRINT_VID(vid));
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200520 /* the ROAM flag is set because this client roamed away
521 * and the node got a roaming_advertisement message. Now
522 * that the client popped up again at its original
523 * location such flag can be unset
524 */
525 tt_local->common.flags &= ~BATADV_TT_CLIENT_ROAM;
526 roamed_back = true;
527 }
528 goto check_roaming;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000529 }
530
Marek Lindnera19d3d82013-05-27 15:33:25 +0800531 /* Ignore the client if we cannot send it in a full table response. */
532 table_size = batadv_tt_local_table_transmit_size(bat_priv);
533 table_size += batadv_tt_len(1);
534 packet_size_max = atomic_read(&bat_priv->packet_size_max);
535 if (table_size > packet_size_max) {
536 net_ratelimited_function(batadv_info, soft_iface,
537 "Local translation table size (%i) exceeds maximum packet size (%i); Ignoring new local tt entry: %pM\n",
538 table_size, packet_size_max, addr);
539 goto out;
540 }
541
Antonio Quartulli47c94652012-09-23 22:38:35 +0200542 tt_local = kmalloc(sizeof(*tt_local), GFP_ATOMIC);
543 if (!tt_local)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200544 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200545
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200546 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +0200547 "Creating new local tt entry: %pM (vid: %d, ttvn: %d)\n",
548 addr, BATADV_PRINT_VID(vid),
Sven Eckelmann807736f2012-07-15 22:26:51 +0200549 (uint8_t)atomic_read(&bat_priv->tt.vn));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000550
Antonio Quartulli47c94652012-09-23 22:38:35 +0200551 memcpy(tt_local->common.addr, addr, ETH_ALEN);
Antonio Quartulli8425ec62012-11-19 09:01:44 +0100552 /* The local entry has to be marked as NEW to avoid to send it in
553 * a full table response going out before the next ttvn increment
554 * (consistency check)
555 */
556 tt_local->common.flags = BATADV_TT_CLIENT_NEW;
Antonio Quartullic018ad32013-06-04 12:11:39 +0200557 tt_local->common.vid = vid;
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200558 if (batadv_is_wifi_netdev(in_dev))
Antonio Quartulli47c94652012-09-23 22:38:35 +0200559 tt_local->common.flags |= BATADV_TT_CLIENT_WIFI;
560 atomic_set(&tt_local->common.refcount, 2);
561 tt_local->last_seen = jiffies;
562 tt_local->common.added_at = tt_local->last_seen;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000563
564 /* the batman interface mac address should never be purged */
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200565 if (batadv_compare_eth(addr, soft_iface->dev_addr))
Antonio Quartulli47c94652012-09-23 22:38:35 +0200566 tt_local->common.flags |= BATADV_TT_CLIENT_NOPURGE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000567
Sven Eckelmann807736f2012-07-15 22:26:51 +0200568 hash_added = batadv_hash_add(bat_priv->tt.local_hash, batadv_compare_tt,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200569 batadv_choose_tt, &tt_local->common,
Antonio Quartulli47c94652012-09-23 22:38:35 +0200570 &tt_local->common.hash_entry);
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100571
572 if (unlikely(hash_added != 0)) {
573 /* remove the reference for the hash */
Antonio Quartulli47c94652012-09-23 22:38:35 +0200574 batadv_tt_local_entry_free_ref(tt_local);
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100575 goto out;
576 }
577
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200578add_event:
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200579 batadv_tt_local_event(bat_priv, tt_local, BATADV_NO_FLAGS);
Antonio Quartulliff66c972011-06-30 01:14:00 +0200580
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200581check_roaming:
582 /* Check whether it is a roaming, but don't do anything if the roaming
583 * process has already been handled
584 */
585 if (tt_global && !(tt_global->common.flags & BATADV_TT_CLIENT_ROAM)) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200586 /* These node are probably going to update their tt table */
Antonio Quartulli47c94652012-09-23 22:38:35 +0200587 head = &tt_global->orig_list;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200588 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800589 hlist_for_each_entry_rcu(orig_entry, head, list) {
Antonio Quartulli47c94652012-09-23 22:38:35 +0200590 batadv_send_roam_adv(bat_priv, tt_global->common.addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200591 tt_global->common.vid,
Sven Eckelmanna5130882012-05-16 20:23:16 +0200592 orig_entry->orig_node);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200593 }
594 rcu_read_unlock();
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200595 if (roamed_back) {
596 batadv_tt_global_free(bat_priv, tt_global,
597 "Roaming canceled");
598 tt_global = NULL;
599 } else {
600 /* The global entry has to be marked as ROAMING and
601 * has to be kept for consistency purpose
602 */
603 tt_global->common.flags |= BATADV_TT_CLIENT_ROAM;
604 tt_global->roam_at = jiffies;
605 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200606 }
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200607
Antonio Quartulli3c4f7ab2013-10-13 02:50:19 +0200608 /* store the current remote flags before altering them. This helps
609 * understanding is flags are changing or not
610 */
611 remote_flags = tt_local->common.flags & BATADV_TT_REMOTE_MASK;
Marek Lindnera19d3d82013-05-27 15:33:25 +0800612
Antonio Quartulli3c4f7ab2013-10-13 02:50:19 +0200613 if (batadv_is_wifi_netdev(in_dev))
614 tt_local->common.flags |= BATADV_TT_CLIENT_WIFI;
615 else
616 tt_local->common.flags &= ~BATADV_TT_CLIENT_WIFI;
617
618 /* if any "dynamic" flag has been modified, resend an ADD event for this
619 * entry so that all the nodes can get the new flags
620 */
621 if (remote_flags ^ (tt_local->common.flags & BATADV_TT_REMOTE_MASK))
622 batadv_tt_local_event(bat_priv, tt_local, BATADV_NO_FLAGS);
623
624 ret = true;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200625out:
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200626 if (in_dev)
627 dev_put(in_dev);
Antonio Quartulli47c94652012-09-23 22:38:35 +0200628 if (tt_local)
629 batadv_tt_local_entry_free_ref(tt_local);
630 if (tt_global)
631 batadv_tt_global_entry_free_ref(tt_global);
Marek Lindnera19d3d82013-05-27 15:33:25 +0800632 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000633}
634
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800635/**
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200636 * batadv_tt_prepare_tvlv_global_data - prepare the TVLV TT header to send
637 * within a TT Response directed to another node
638 * @orig_node: originator for which the TT data has to be prepared
639 * @tt_data: uninitialised pointer to the address of the TVLV buffer
640 * @tt_change: uninitialised pointer to the address of the area where the TT
641 * changed can be stored
642 * @tt_len: pointer to the length to reserve to the tt_change. if -1 this
643 * function reserves the amount of space needed to send the entire global TT
644 * table. In case of success the value is updated with the real amount of
645 * reserved bytes
646
647 * Allocate the needed amount of memory for the entire TT TVLV and write its
648 * header made up by one tvlv_tt_data object and a series of tvlv_tt_vlan_data
649 * objects, one per active VLAN served by the originator node.
650 *
651 * Return the size of the allocated buffer or 0 in case of failure.
652 */
653static uint16_t
654batadv_tt_prepare_tvlv_global_data(struct batadv_orig_node *orig_node,
655 struct batadv_tvlv_tt_data **tt_data,
656 struct batadv_tvlv_tt_change **tt_change,
657 int32_t *tt_len)
658{
659 uint16_t num_vlan = 0, num_entries = 0, change_offset, tvlv_len;
660 struct batadv_tvlv_tt_vlan_data *tt_vlan;
661 struct batadv_orig_node_vlan *vlan;
662 uint8_t *tt_change_ptr;
663
664 rcu_read_lock();
665 list_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) {
666 num_vlan++;
667 num_entries += atomic_read(&vlan->tt.num_entries);
668 }
669
670 change_offset = sizeof(**tt_data);
671 change_offset += num_vlan * sizeof(*tt_vlan);
672
673 /* if tt_len is negative, allocate the space needed by the full table */
674 if (*tt_len < 0)
675 *tt_len = batadv_tt_len(num_entries);
676
677 tvlv_len = *tt_len;
678 tvlv_len += change_offset;
679
680 *tt_data = kmalloc(tvlv_len, GFP_ATOMIC);
681 if (!*tt_data) {
682 *tt_len = 0;
683 goto out;
684 }
685
686 (*tt_data)->flags = BATADV_NO_FLAGS;
687 (*tt_data)->ttvn = atomic_read(&orig_node->last_ttvn);
688 (*tt_data)->num_vlan = htons(num_vlan);
689
690 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(*tt_data + 1);
691 list_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) {
692 tt_vlan->vid = htons(vlan->vid);
693 tt_vlan->crc = htonl(vlan->tt.crc);
694
695 tt_vlan++;
696 }
697
698 tt_change_ptr = (uint8_t *)*tt_data + change_offset;
699 *tt_change = (struct batadv_tvlv_tt_change *)tt_change_ptr;
700
701out:
702 rcu_read_unlock();
703 return tvlv_len;
704}
705
706/**
707 * batadv_tt_prepare_tvlv_local_data - allocate and prepare the TT TVLV for this
708 * node
709 * @bat_priv: the bat priv with all the soft interface information
710 * @tt_data: uninitialised pointer to the address of the TVLV buffer
711 * @tt_change: uninitialised pointer to the address of the area where the TT
712 * changes can be stored
713 * @tt_len: pointer to the length to reserve to the tt_change. if -1 this
714 * function reserves the amount of space needed to send the entire local TT
715 * table. In case of success the value is updated with the real amount of
716 * reserved bytes
717 *
718 * Allocate the needed amount of memory for the entire TT TVLV and write its
719 * header made up by one tvlv_tt_data object and a series of tvlv_tt_vlan_data
720 * objects, one per active VLAN.
721 *
722 * Return the size of the allocated buffer or 0 in case of failure.
723 */
724static uint16_t
725batadv_tt_prepare_tvlv_local_data(struct batadv_priv *bat_priv,
726 struct batadv_tvlv_tt_data **tt_data,
727 struct batadv_tvlv_tt_change **tt_change,
728 int32_t *tt_len)
729{
730 struct batadv_tvlv_tt_vlan_data *tt_vlan;
731 struct batadv_softif_vlan *vlan;
732 uint16_t num_vlan = 0, num_entries = 0, tvlv_len;
733 uint8_t *tt_change_ptr;
734 int change_offset;
735
736 rcu_read_lock();
737 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
738 num_vlan++;
739 num_entries += atomic_read(&vlan->tt.num_entries);
740 }
741
742 change_offset = sizeof(**tt_data);
743 change_offset += num_vlan * sizeof(*tt_vlan);
744
745 /* if tt_len is negative, allocate the space needed by the full table */
746 if (*tt_len < 0)
747 *tt_len = batadv_tt_len(num_entries);
748
749 tvlv_len = *tt_len;
750 tvlv_len += change_offset;
751
752 *tt_data = kmalloc(tvlv_len, GFP_ATOMIC);
753 if (!*tt_data) {
754 tvlv_len = 0;
755 goto out;
756 }
757
758 (*tt_data)->flags = BATADV_NO_FLAGS;
759 (*tt_data)->ttvn = atomic_read(&bat_priv->tt.vn);
760 (*tt_data)->num_vlan = htons(num_vlan);
761
762 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(*tt_data + 1);
763 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
764 tt_vlan->vid = htons(vlan->vid);
765 tt_vlan->crc = htonl(vlan->tt.crc);
766
767 tt_vlan++;
768 }
769
770 tt_change_ptr = (uint8_t *)*tt_data + change_offset;
771 *tt_change = (struct batadv_tvlv_tt_change *)tt_change_ptr;
772
773out:
774 rcu_read_unlock();
775 return tvlv_len;
776}
777
778/**
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800779 * batadv_tt_tvlv_container_update - update the translation table tvlv container
780 * after local tt changes have been committed
781 * @bat_priv: the bat priv with all the soft interface information
782 */
783static void batadv_tt_tvlv_container_update(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000784{
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800785 struct batadv_tt_change_node *entry, *safe;
786 struct batadv_tvlv_tt_data *tt_data;
787 struct batadv_tvlv_tt_change *tt_change;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200788 int tt_diff_len, tt_change_len = 0;
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800789 int tt_diff_entries_num = 0, tt_diff_entries_count = 0;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200790 uint16_t tvlv_len;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000791
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200792 tt_diff_entries_num = atomic_read(&bat_priv->tt.local_changes);
793 tt_diff_len = batadv_tt_len(tt_diff_entries_num);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800794
795 /* if we have too many changes for one packet don't send any
796 * and wait for the tt table request which will be fragmented
797 */
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800798 if (tt_diff_len > bat_priv->soft_iface->mtu)
799 tt_diff_len = 0;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800800
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200801 tvlv_len = batadv_tt_prepare_tvlv_local_data(bat_priv, &tt_data,
802 &tt_change, &tt_diff_len);
803 if (!tvlv_len)
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800804 return;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800805
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800806 tt_data->flags = BATADV_TT_OGM_DIFF;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800807
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800808 if (tt_diff_len == 0)
809 goto container_register;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800810
Sven Eckelmann807736f2012-07-15 22:26:51 +0200811 spin_lock_bh(&bat_priv->tt.changes_list_lock);
812 atomic_set(&bat_priv->tt.local_changes, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000813
Sven Eckelmann807736f2012-07-15 22:26:51 +0200814 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100815 list) {
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800816 if (tt_diff_entries_count < tt_diff_entries_num) {
817 memcpy(tt_change + tt_diff_entries_count,
818 &entry->change,
819 sizeof(struct batadv_tvlv_tt_change));
820 tt_diff_entries_count++;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000821 }
Antonio Quartullia73105b2011-04-27 14:27:44 +0200822 list_del(&entry->list);
823 kfree(entry);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000824 }
Sven Eckelmann807736f2012-07-15 22:26:51 +0200825 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000826
Antonio Quartullia73105b2011-04-27 14:27:44 +0200827 /* Keep the buffer for possible tt_request */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200828 spin_lock_bh(&bat_priv->tt.last_changeset_lock);
829 kfree(bat_priv->tt.last_changeset);
830 bat_priv->tt.last_changeset_len = 0;
831 bat_priv->tt.last_changeset = NULL;
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800832 tt_change_len = batadv_tt_len(tt_diff_entries_count);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800833 /* check whether this new OGM has no changes due to size problems */
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800834 if (tt_diff_entries_count > 0) {
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800835 /* if kmalloc() fails we will reply with the full table
Antonio Quartullia73105b2011-04-27 14:27:44 +0200836 * instead of providing the diff
837 */
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800838 bat_priv->tt.last_changeset = kzalloc(tt_diff_len, GFP_ATOMIC);
Sven Eckelmann807736f2012-07-15 22:26:51 +0200839 if (bat_priv->tt.last_changeset) {
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800840 memcpy(bat_priv->tt.last_changeset,
841 tt_change, tt_change_len);
842 bat_priv->tt.last_changeset_len = tt_diff_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200843 }
844 }
Sven Eckelmann807736f2012-07-15 22:26:51 +0200845 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000846
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800847container_register:
848 batadv_tvlv_container_register(bat_priv, BATADV_TVLV_TT, 1, tt_data,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200849 tvlv_len);
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800850 kfree(tt_data);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000851}
852
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200853int batadv_tt_local_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000854{
855 struct net_device *net_dev = (struct net_device *)seq->private;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200856 struct batadv_priv *bat_priv = netdev_priv(net_dev);
Sven Eckelmann807736f2012-07-15 22:26:51 +0200857 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200858 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartulli85766a82012-11-08 22:16:16 +0100859 struct batadv_tt_local_entry *tt_local;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200860 struct batadv_hard_iface *primary_if;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200861 struct batadv_softif_vlan *vlan;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000862 struct hlist_head *head;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200863 unsigned short vid;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200864 uint32_t i;
Antonio Quartulli85766a82012-11-08 22:16:16 +0100865 int last_seen_secs;
866 int last_seen_msecs;
867 unsigned long last_seen_jiffies;
868 bool no_purge;
869 uint16_t np_flag = BATADV_TT_CLIENT_NOPURGE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000870
Marek Lindner30da63a2012-08-03 17:15:46 +0200871 primary_if = batadv_seq_print_text_primary_if_get(seq);
872 if (!primary_if)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200873 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000874
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100875 seq_printf(seq,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200876 "Locally retrieved addresses (from %s) announced via TT (TTVN: %u):\n",
877 net_dev->name, (uint8_t)atomic_read(&bat_priv->tt.vn));
878 seq_printf(seq, " %-13s %s %-7s %-9s (%-10s)\n", "Client", "VID",
879 "Flags", "Last seen", "CRC");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000880
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000881 for (i = 0; i < hash->size; i++) {
882 head = &hash->table[i];
883
Marek Lindner7aadf882011-02-18 12:28:09 +0000884 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800885 hlist_for_each_entry_rcu(tt_common_entry,
Marek Lindner7aadf882011-02-18 12:28:09 +0000886 head, hash_entry) {
Antonio Quartulli85766a82012-11-08 22:16:16 +0100887 tt_local = container_of(tt_common_entry,
888 struct batadv_tt_local_entry,
889 common);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200890 vid = tt_common_entry->vid;
Antonio Quartulli85766a82012-11-08 22:16:16 +0100891 last_seen_jiffies = jiffies - tt_local->last_seen;
892 last_seen_msecs = jiffies_to_msecs(last_seen_jiffies);
893 last_seen_secs = last_seen_msecs / 1000;
894 last_seen_msecs = last_seen_msecs % 1000;
895
896 no_purge = tt_common_entry->flags & np_flag;
897
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200898 vlan = batadv_softif_vlan_get(bat_priv, vid);
899 if (!vlan) {
900 seq_printf(seq, "Cannot retrieve VLAN %d\n",
901 BATADV_PRINT_VID(vid));
902 continue;
903 }
904
905 seq_printf(seq,
906 " * %pM %4i [%c%c%c%c%c] %3u.%03u (%#.8x)\n",
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100907 tt_common_entry->addr,
Antonio Quartulli16052782013-06-04 12:11:41 +0200908 BATADV_PRINT_VID(tt_common_entry->vid),
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100909 (tt_common_entry->flags &
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200910 BATADV_TT_CLIENT_ROAM ? 'R' : '.'),
Antonio Quartulli85766a82012-11-08 22:16:16 +0100911 no_purge ? 'P' : '.',
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100912 (tt_common_entry->flags &
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200913 BATADV_TT_CLIENT_NEW ? 'N' : '.'),
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100914 (tt_common_entry->flags &
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200915 BATADV_TT_CLIENT_PENDING ? 'X' : '.'),
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100916 (tt_common_entry->flags &
Antonio Quartulli85766a82012-11-08 22:16:16 +0100917 BATADV_TT_CLIENT_WIFI ? 'W' : '.'),
Antonio Quartullia7966d92013-01-24 11:41:39 +0100918 no_purge ? 0 : last_seen_secs,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200919 no_purge ? 0 : last_seen_msecs,
920 vlan->tt.crc);
921
922 batadv_softif_vlan_free_ref(vlan);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000923 }
Marek Lindner7aadf882011-02-18 12:28:09 +0000924 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000925 }
Marek Lindner32ae9b22011-04-20 15:40:58 +0200926out:
927 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200928 batadv_hardif_free_ref(primary_if);
Marek Lindner30da63a2012-08-03 17:15:46 +0200929 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000930}
931
Sven Eckelmann56303d32012-06-05 22:31:31 +0200932static void
933batadv_tt_local_set_pending(struct batadv_priv *bat_priv,
934 struct batadv_tt_local_entry *tt_local_entry,
935 uint16_t flags, const char *message)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000936{
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200937 batadv_tt_local_event(bat_priv, tt_local_entry, flags);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000938
Antonio Quartulli015758d2011-07-09 17:52:13 +0200939 /* The local client has to be marked as "pending to be removed" but has
940 * to be kept in the table in order to send it in a full table
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200941 * response issued before the net ttvn increment (consistency check)
942 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200943 tt_local_entry->common.flags |= BATADV_TT_CLIENT_PENDING;
Antonio Quartullic566dbb2012-01-06 21:31:34 +0100944
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200945 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +0200946 "Local tt entry (%pM, vid: %d) pending to be removed: %s\n",
947 tt_local_entry->common.addr,
948 BATADV_PRINT_VID(tt_local_entry->common.vid), message);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000949}
950
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200951/**
952 * batadv_tt_local_remove - logically remove an entry from the local table
953 * @bat_priv: the bat priv with all the soft interface information
954 * @addr: the MAC address of the client to remove
Antonio Quartullic018ad32013-06-04 12:11:39 +0200955 * @vid: VLAN identifier
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200956 * @message: message to append to the log on deletion
957 * @roaming: true if the deletion is due to a roaming event
958 *
959 * Returns the flags assigned to the local entry before being deleted
960 */
961uint16_t batadv_tt_local_remove(struct batadv_priv *bat_priv,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200962 const uint8_t *addr, unsigned short vid,
963 const char *message, bool roaming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000964{
Sven Eckelmann170173b2012-10-07 12:02:22 +0200965 struct batadv_tt_local_entry *tt_local_entry;
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200966 uint16_t flags, curr_flags = BATADV_NO_FLAGS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000967
Antonio Quartullic018ad32013-06-04 12:11:39 +0200968 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr, vid);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200969 if (!tt_local_entry)
970 goto out;
971
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200972 curr_flags = tt_local_entry->common.flags;
973
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200974 flags = BATADV_TT_CLIENT_DEL;
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200975 /* if this global entry addition is due to a roaming, the node has to
976 * mark the local entry as "roamed" in order to correctly reroute
977 * packets later
978 */
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200979 if (roaming) {
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200980 flags |= BATADV_TT_CLIENT_ROAM;
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200981 /* mark the local client as ROAMed */
982 tt_local_entry->common.flags |= BATADV_TT_CLIENT_ROAM;
983 }
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200984
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200985 if (!(tt_local_entry->common.flags & BATADV_TT_CLIENT_NEW)) {
986 batadv_tt_local_set_pending(bat_priv, tt_local_entry, flags,
987 message);
988 goto out;
989 }
990 /* if this client has been added right now, it is possible to
991 * immediately purge it
992 */
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200993 batadv_tt_local_event(bat_priv, tt_local_entry, BATADV_TT_CLIENT_DEL);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200994 hlist_del_rcu(&tt_local_entry->common.hash_entry);
995 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200996
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200997out:
998 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +0200999 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001000
1001 return curr_flags;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001002}
1003
Marek Lindnera19d3d82013-05-27 15:33:25 +08001004/**
1005 * batadv_tt_local_purge_list - purge inactive tt local entries
1006 * @bat_priv: the bat priv with all the soft interface information
1007 * @head: pointer to the list containing the local tt entries
1008 * @timeout: parameter deciding whether a given tt local entry is considered
1009 * inactive or not
1010 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001011static void batadv_tt_local_purge_list(struct batadv_priv *bat_priv,
Marek Lindnera19d3d82013-05-27 15:33:25 +08001012 struct hlist_head *head,
1013 int timeout)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001014{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001015 struct batadv_tt_local_entry *tt_local_entry;
1016 struct batadv_tt_common_entry *tt_common_entry;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001017 struct hlist_node *node_tmp;
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001018
Sasha Levinb67bfe02013-02-27 17:06:00 -08001019 hlist_for_each_entry_safe(tt_common_entry, node_tmp, head,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001020 hash_entry) {
1021 tt_local_entry = container_of(tt_common_entry,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001022 struct batadv_tt_local_entry,
1023 common);
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001024 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_NOPURGE)
1025 continue;
1026
1027 /* entry already marked for deletion */
1028 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING)
1029 continue;
1030
Marek Lindnera19d3d82013-05-27 15:33:25 +08001031 if (!batadv_has_timed_out(tt_local_entry->last_seen, timeout))
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001032 continue;
1033
1034 batadv_tt_local_set_pending(bat_priv, tt_local_entry,
1035 BATADV_TT_CLIENT_DEL, "timed out");
1036 }
1037}
1038
Marek Lindnera19d3d82013-05-27 15:33:25 +08001039/**
1040 * batadv_tt_local_purge - purge inactive tt local entries
1041 * @bat_priv: the bat priv with all the soft interface information
1042 * @timeout: parameter deciding whether a given tt local entry is considered
1043 * inactive or not
1044 */
1045static void batadv_tt_local_purge(struct batadv_priv *bat_priv,
1046 int timeout)
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001047{
Sven Eckelmann807736f2012-07-15 22:26:51 +02001048 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001049 struct hlist_head *head;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001050 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullic90681b2011-10-05 17:05:25 +02001051 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001052
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001053 for (i = 0; i < hash->size; i++) {
1054 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001055 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001056
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001057 spin_lock_bh(list_lock);
Marek Lindnera19d3d82013-05-27 15:33:25 +08001058 batadv_tt_local_purge_list(bat_priv, head, timeout);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001059 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001060 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001061}
1062
Sven Eckelmann56303d32012-06-05 22:31:31 +02001063static void batadv_tt_local_table_free(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001064{
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02001065 struct batadv_hashtable *hash;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001066 spinlock_t *list_lock; /* protects write access to the hash lists */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001067 struct batadv_tt_common_entry *tt_common_entry;
1068 struct batadv_tt_local_entry *tt_local;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001069 struct hlist_node *node_tmp;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001070 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001071 uint32_t i;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001072
Sven Eckelmann807736f2012-07-15 22:26:51 +02001073 if (!bat_priv->tt.local_hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001074 return;
1075
Sven Eckelmann807736f2012-07-15 22:26:51 +02001076 hash = bat_priv->tt.local_hash;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001077
1078 for (i = 0; i < hash->size; i++) {
1079 head = &hash->table[i];
1080 list_lock = &hash->list_locks[i];
1081
1082 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001083 hlist_for_each_entry_safe(tt_common_entry, node_tmp,
Antonio Quartullia73105b2011-04-27 14:27:44 +02001084 head, hash_entry) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001085 hlist_del_rcu(&tt_common_entry->hash_entry);
Sven Eckelmann56303d32012-06-05 22:31:31 +02001086 tt_local = container_of(tt_common_entry,
1087 struct batadv_tt_local_entry,
1088 common);
1089 batadv_tt_local_entry_free_ref(tt_local);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001090 }
1091 spin_unlock_bh(list_lock);
1092 }
1093
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +02001094 batadv_hash_destroy(hash);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001095
Sven Eckelmann807736f2012-07-15 22:26:51 +02001096 bat_priv->tt.local_hash = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001097}
1098
Sven Eckelmann56303d32012-06-05 22:31:31 +02001099static int batadv_tt_global_init(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001100{
Sven Eckelmann807736f2012-07-15 22:26:51 +02001101 if (bat_priv->tt.global_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +02001102 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001103
Sven Eckelmann807736f2012-07-15 22:26:51 +02001104 bat_priv->tt.global_hash = batadv_hash_new(1024);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001105
Sven Eckelmann807736f2012-07-15 22:26:51 +02001106 if (!bat_priv->tt.global_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +02001107 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001108
Antonio Quartullidec05072012-11-10 11:00:32 +01001109 batadv_hash_set_lock_class(bat_priv->tt.global_hash,
1110 &batadv_tt_global_hash_lock_class_key);
1111
Sven Eckelmann5346c352012-05-05 13:27:28 +02001112 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001113}
1114
Sven Eckelmann56303d32012-06-05 22:31:31 +02001115static void batadv_tt_changes_list_free(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001116{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001117 struct batadv_tt_change_node *entry, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001118
Sven Eckelmann807736f2012-07-15 22:26:51 +02001119 spin_lock_bh(&bat_priv->tt.changes_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001120
Sven Eckelmann807736f2012-07-15 22:26:51 +02001121 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
Antonio Quartullia73105b2011-04-27 14:27:44 +02001122 list) {
1123 list_del(&entry->list);
1124 kfree(entry);
1125 }
1126
Sven Eckelmann807736f2012-07-15 22:26:51 +02001127 atomic_set(&bat_priv->tt.local_changes, 0);
1128 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001129}
1130
Antonio Quartullid657e622012-07-01 14:09:12 +02001131/* retrieves the orig_tt_list_entry belonging to orig_node from the
1132 * batadv_tt_global_entry list
1133 *
1134 * returns it with an increased refcounter, NULL if not found
1135 */
1136static struct batadv_tt_orig_list_entry *
1137batadv_tt_global_orig_entry_find(const struct batadv_tt_global_entry *entry,
1138 const struct batadv_orig_node *orig_node)
1139{
1140 struct batadv_tt_orig_list_entry *tmp_orig_entry, *orig_entry = NULL;
1141 const struct hlist_head *head;
Antonio Quartullid657e622012-07-01 14:09:12 +02001142
1143 rcu_read_lock();
1144 head = &entry->orig_list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001145 hlist_for_each_entry_rcu(tmp_orig_entry, head, list) {
Antonio Quartullid657e622012-07-01 14:09:12 +02001146 if (tmp_orig_entry->orig_node != orig_node)
1147 continue;
1148 if (!atomic_inc_not_zero(&tmp_orig_entry->refcount))
1149 continue;
1150
1151 orig_entry = tmp_orig_entry;
1152 break;
1153 }
1154 rcu_read_unlock();
1155
1156 return orig_entry;
1157}
1158
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001159/* find out if an orig_node is already in the list of a tt_global_entry.
Antonio Quartullid657e622012-07-01 14:09:12 +02001160 * returns true if found, false otherwise
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001161 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001162static bool
1163batadv_tt_global_entry_has_orig(const struct batadv_tt_global_entry *entry,
1164 const struct batadv_orig_node *orig_node)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001165{
Antonio Quartullid657e622012-07-01 14:09:12 +02001166 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001167 bool found = false;
1168
Antonio Quartullid657e622012-07-01 14:09:12 +02001169 orig_entry = batadv_tt_global_orig_entry_find(entry, orig_node);
1170 if (orig_entry) {
1171 found = true;
1172 batadv_tt_orig_list_entry_free_ref(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001173 }
Antonio Quartullid657e622012-07-01 14:09:12 +02001174
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001175 return found;
1176}
1177
Sven Eckelmanna5130882012-05-16 20:23:16 +02001178static void
Antonio Quartullid657e622012-07-01 14:09:12 +02001179batadv_tt_global_orig_entry_add(struct batadv_tt_global_entry *tt_global,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001180 struct batadv_orig_node *orig_node, int ttvn)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001181{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001182 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001183
Antonio Quartullid657e622012-07-01 14:09:12 +02001184 orig_entry = batadv_tt_global_orig_entry_find(tt_global, orig_node);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001185 if (orig_entry) {
1186 /* refresh the ttvn: the current value could be a bogus one that
1187 * was added during a "temporary client detection"
1188 */
1189 orig_entry->ttvn = ttvn;
Antonio Quartullid657e622012-07-01 14:09:12 +02001190 goto out;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001191 }
Antonio Quartullid657e622012-07-01 14:09:12 +02001192
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001193 orig_entry = kzalloc(sizeof(*orig_entry), GFP_ATOMIC);
1194 if (!orig_entry)
Antonio Quartullid657e622012-07-01 14:09:12 +02001195 goto out;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001196
1197 INIT_HLIST_NODE(&orig_entry->list);
1198 atomic_inc(&orig_node->refcount);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001199 batadv_tt_global_size_inc(orig_node, tt_global->common.vid);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001200 orig_entry->orig_node = orig_node;
1201 orig_entry->ttvn = ttvn;
Antonio Quartullid657e622012-07-01 14:09:12 +02001202 atomic_set(&orig_entry->refcount, 2);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001203
Antonio Quartullid657e622012-07-01 14:09:12 +02001204 spin_lock_bh(&tt_global->list_lock);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001205 hlist_add_head_rcu(&orig_entry->list,
Antonio Quartullid657e622012-07-01 14:09:12 +02001206 &tt_global->orig_list);
1207 spin_unlock_bh(&tt_global->list_lock);
1208out:
1209 if (orig_entry)
1210 batadv_tt_orig_list_entry_free_ref(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001211}
1212
Antonio Quartullid4ff40f2013-04-18 15:13:01 +02001213/**
1214 * batadv_tt_global_add - add a new TT global entry or update an existing one
1215 * @bat_priv: the bat priv with all the soft interface information
1216 * @orig_node: the originator announcing the client
1217 * @tt_addr: the mac address of the non-mesh client
Antonio Quartullic018ad32013-06-04 12:11:39 +02001218 * @vid: VLAN identifier
Antonio Quartullid4ff40f2013-04-18 15:13:01 +02001219 * @flags: TT flags that have to be set for this non-mesh client
1220 * @ttvn: the tt version number ever announcing this non-mesh client
1221 *
1222 * Add a new TT global entry for the given originator. If the entry already
1223 * exists add a new reference to the given originator (a global entry can have
1224 * references to multiple originators) and adjust the flags attribute to reflect
1225 * the function argument.
1226 * If a TT local entry exists for this non-mesh client remove it.
1227 *
1228 * The caller must hold orig_node refcount.
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001229 *
1230 * Return true if the new entry has been added, false otherwise
Antonio Quartullid4ff40f2013-04-18 15:13:01 +02001231 */
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001232static bool batadv_tt_global_add(struct batadv_priv *bat_priv,
1233 struct batadv_orig_node *orig_node,
Antonio Quartullic018ad32013-06-04 12:11:39 +02001234 const unsigned char *tt_addr,
1235 unsigned short vid, uint16_t flags,
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001236 uint8_t ttvn)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001237{
Sven Eckelmann170173b2012-10-07 12:02:22 +02001238 struct batadv_tt_global_entry *tt_global_entry;
1239 struct batadv_tt_local_entry *tt_local_entry;
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001240 bool ret = false;
Simon Wunderlich80b3f582011-11-02 20:26:45 +01001241 int hash_added;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001242 struct batadv_tt_common_entry *common;
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001243 uint16_t local_flags;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001244
Antonio Quartullicfd4f752013-08-07 18:28:56 +02001245 /* ignore global entries from backbone nodes */
1246 if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig, vid))
1247 return true;
1248
Antonio Quartullic018ad32013-06-04 12:11:39 +02001249 tt_global_entry = batadv_tt_global_hash_find(bat_priv, tt_addr, vid);
1250 tt_local_entry = batadv_tt_local_hash_find(bat_priv, tt_addr, vid);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001251
1252 /* if the node already has a local client for this entry, it has to wait
1253 * for a roaming advertisement instead of manually messing up the global
1254 * table
1255 */
1256 if ((flags & BATADV_TT_CLIENT_TEMP) && tt_local_entry &&
1257 !(tt_local_entry->common.flags & BATADV_TT_CLIENT_NEW))
1258 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001259
Antonio Quartullia73105b2011-04-27 14:27:44 +02001260 if (!tt_global_entry) {
Antonio Quartullid4f44692012-05-25 00:00:54 +02001261 tt_global_entry = kzalloc(sizeof(*tt_global_entry), GFP_ATOMIC);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001262 if (!tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001263 goto out;
1264
Sven Eckelmannc0a55922012-05-12 13:48:55 +02001265 common = &tt_global_entry->common;
1266 memcpy(common->addr, tt_addr, ETH_ALEN);
Antonio Quartullic018ad32013-06-04 12:11:39 +02001267 common->vid = vid;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001268
Antonio Quartullid4f44692012-05-25 00:00:54 +02001269 common->flags = flags;
Antonio Quartullicc47f662011-04-27 14:27:57 +02001270 tt_global_entry->roam_at = 0;
Antonio Quartullifdf79322012-08-24 17:54:07 +02001271 /* node must store current time in case of roaming. This is
1272 * needed to purge this entry out on timeout (if nobody claims
1273 * it)
1274 */
1275 if (flags & BATADV_TT_CLIENT_ROAM)
1276 tt_global_entry->roam_at = jiffies;
Sven Eckelmannc0a55922012-05-12 13:48:55 +02001277 atomic_set(&common->refcount, 2);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001278 common->added_at = jiffies;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001279
1280 INIT_HLIST_HEAD(&tt_global_entry->orig_list);
1281 spin_lock_init(&tt_global_entry->list_lock);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001282
Sven Eckelmann807736f2012-07-15 22:26:51 +02001283 hash_added = batadv_hash_add(bat_priv->tt.global_hash,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001284 batadv_compare_tt,
Antonio Quartullic018ad32013-06-04 12:11:39 +02001285 batadv_choose_tt, common,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001286 &common->hash_entry);
Simon Wunderlich80b3f582011-11-02 20:26:45 +01001287
1288 if (unlikely(hash_added != 0)) {
1289 /* remove the reference for the hash */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001290 batadv_tt_global_entry_free_ref(tt_global_entry);
Simon Wunderlich80b3f582011-11-02 20:26:45 +01001291 goto out_remove;
1292 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02001293 } else {
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001294 common = &tt_global_entry->common;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001295 /* If there is already a global entry, we can use this one for
1296 * our processing.
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001297 * But if we are trying to add a temporary client then here are
1298 * two options at this point:
1299 * 1) the global client is not a temporary client: the global
1300 * client has to be left as it is, temporary information
1301 * should never override any already known client state
1302 * 2) the global client is a temporary client: purge the
1303 * originator list and add the new one orig_entry
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001304 */
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001305 if (flags & BATADV_TT_CLIENT_TEMP) {
1306 if (!(common->flags & BATADV_TT_CLIENT_TEMP))
1307 goto out;
1308 if (batadv_tt_global_entry_has_orig(tt_global_entry,
1309 orig_node))
1310 goto out_remove;
1311 batadv_tt_global_del_orig_list(tt_global_entry);
1312 goto add_orig_entry;
1313 }
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001314
1315 /* if the client was temporary added before receiving the first
1316 * OGM announcing it, we have to clear the TEMP flag
1317 */
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001318 common->flags &= ~BATADV_TT_CLIENT_TEMP;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001319
Antonio Quartullie9c001362012-11-07 15:05:33 +01001320 /* the change can carry possible "attribute" flags like the
1321 * TT_CLIENT_WIFI, therefore they have to be copied in the
1322 * client entry
1323 */
1324 tt_global_entry->common.flags |= flags;
1325
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001326 /* If there is the BATADV_TT_CLIENT_ROAM flag set, there is only
1327 * one originator left in the list and we previously received a
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001328 * delete + roaming change for this originator.
1329 *
1330 * We should first delete the old originator before adding the
1331 * new one.
1332 */
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001333 if (common->flags & BATADV_TT_CLIENT_ROAM) {
Sven Eckelmanna5130882012-05-16 20:23:16 +02001334 batadv_tt_global_del_orig_list(tt_global_entry);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001335 common->flags &= ~BATADV_TT_CLIENT_ROAM;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001336 tt_global_entry->roam_at = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001337 }
1338 }
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001339add_orig_entry:
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001340 /* add the new orig_entry (if needed) or update it */
Antonio Quartullid657e622012-07-01 14:09:12 +02001341 batadv_tt_global_orig_entry_add(tt_global_entry, orig_node, ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001342
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001343 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02001344 "Creating new global tt entry: %pM (vid: %d, via %pM)\n",
1345 common->addr, BATADV_PRINT_VID(common->vid),
1346 orig_node->orig);
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001347 ret = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001348
Simon Wunderlich80b3f582011-11-02 20:26:45 +01001349out_remove:
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001350
Antonio Quartullia73105b2011-04-27 14:27:44 +02001351 /* remove address from local hash if present */
Antonio Quartullic018ad32013-06-04 12:11:39 +02001352 local_flags = batadv_tt_local_remove(bat_priv, tt_addr, vid,
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001353 "global tt received",
Antonio Quartullic1d07432013-01-15 22:17:19 +10001354 flags & BATADV_TT_CLIENT_ROAM);
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001355 tt_global_entry->common.flags |= local_flags & BATADV_TT_CLIENT_WIFI;
1356
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001357 if (!(flags & BATADV_TT_CLIENT_ROAM))
1358 /* this is a normal global add. Therefore the client is not in a
1359 * roaming state anymore.
1360 */
1361 tt_global_entry->common.flags &= ~BATADV_TT_CLIENT_ROAM;
1362
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001363out:
1364 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02001365 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001366 if (tt_local_entry)
1367 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001368 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001369}
1370
Sven Eckelmann981d8902012-10-07 13:34:15 +02001371/* batadv_transtable_best_orig - Get best originator list entry from tt entry
Antonio Quartulli46274562013-09-03 11:10:24 +02001372 * @bat_priv: the bat priv with all the soft interface information
Sven Eckelmann981d8902012-10-07 13:34:15 +02001373 * @tt_global_entry: global translation table entry to be analyzed
1374 *
1375 * This functon assumes the caller holds rcu_read_lock().
1376 * Returns best originator list entry or NULL on errors.
1377 */
1378static struct batadv_tt_orig_list_entry *
Antonio Quartulli46274562013-09-03 11:10:24 +02001379batadv_transtable_best_orig(struct batadv_priv *bat_priv,
1380 struct batadv_tt_global_entry *tt_global_entry)
Sven Eckelmann981d8902012-10-07 13:34:15 +02001381{
Antonio Quartulli46274562013-09-03 11:10:24 +02001382 struct batadv_neigh_node *router, *best_router = NULL;
1383 struct batadv_algo_ops *bao = bat_priv->bat_algo_ops;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001384 struct hlist_head *head;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001385 struct batadv_tt_orig_list_entry *orig_entry, *best_entry = NULL;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001386
1387 head = &tt_global_entry->orig_list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001388 hlist_for_each_entry_rcu(orig_entry, head, list) {
Sven Eckelmann981d8902012-10-07 13:34:15 +02001389 router = batadv_orig_node_get_router(orig_entry->orig_node);
1390 if (!router)
1391 continue;
1392
Antonio Quartulli46274562013-09-03 11:10:24 +02001393 if (best_router &&
1394 bao->bat_neigh_cmp(router, best_router) <= 0) {
1395 batadv_neigh_node_free_ref(router);
1396 continue;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001397 }
1398
Antonio Quartulli46274562013-09-03 11:10:24 +02001399 /* release the refcount for the "old" best */
1400 if (best_router)
1401 batadv_neigh_node_free_ref(best_router);
1402
1403 best_entry = orig_entry;
1404 best_router = router;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001405 }
1406
Antonio Quartulli46274562013-09-03 11:10:24 +02001407 if (best_router)
1408 batadv_neigh_node_free_ref(best_router);
1409
Sven Eckelmann981d8902012-10-07 13:34:15 +02001410 return best_entry;
1411}
1412
1413/* batadv_tt_global_print_entry - print all orig nodes who announce the address
1414 * for this global entry
Antonio Quartulli46274562013-09-03 11:10:24 +02001415 * @bat_priv: the bat priv with all the soft interface information
Sven Eckelmann981d8902012-10-07 13:34:15 +02001416 * @tt_global_entry: global translation table entry to be printed
1417 * @seq: debugfs table seq_file struct
1418 *
1419 * This functon assumes the caller holds rcu_read_lock().
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001420 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001421static void
Antonio Quartulli46274562013-09-03 11:10:24 +02001422batadv_tt_global_print_entry(struct batadv_priv *bat_priv,
1423 struct batadv_tt_global_entry *tt_global_entry,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001424 struct seq_file *seq)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001425{
Sven Eckelmann981d8902012-10-07 13:34:15 +02001426 struct batadv_tt_orig_list_entry *orig_entry, *best_entry;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001427 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001428 struct batadv_orig_node_vlan *vlan;
1429 struct hlist_head *head;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001430 uint8_t last_ttvn;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001431 uint16_t flags;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001432
1433 tt_common_entry = &tt_global_entry->common;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001434 flags = tt_common_entry->flags;
1435
Antonio Quartulli46274562013-09-03 11:10:24 +02001436 best_entry = batadv_transtable_best_orig(bat_priv, tt_global_entry);
Sven Eckelmann981d8902012-10-07 13:34:15 +02001437 if (best_entry) {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001438 vlan = batadv_orig_node_vlan_get(best_entry->orig_node,
1439 tt_common_entry->vid);
1440 if (!vlan) {
1441 seq_printf(seq,
1442 " * Cannot retrieve VLAN %d for originator %pM\n",
1443 BATADV_PRINT_VID(tt_common_entry->vid),
1444 best_entry->orig_node->orig);
1445 goto print_list;
1446 }
1447
Sven Eckelmann981d8902012-10-07 13:34:15 +02001448 last_ttvn = atomic_read(&best_entry->orig_node->last_ttvn);
Antonio Quartullif9d8a532012-11-19 09:01:42 +01001449 seq_printf(seq,
Antonio Quartulli16052782013-06-04 12:11:41 +02001450 " %c %pM %4i (%3u) via %pM (%3u) (%#.8x) [%c%c%c]\n",
Sven Eckelmann981d8902012-10-07 13:34:15 +02001451 '*', tt_global_entry->common.addr,
Antonio Quartulli16052782013-06-04 12:11:41 +02001452 BATADV_PRINT_VID(tt_global_entry->common.vid),
Sven Eckelmann981d8902012-10-07 13:34:15 +02001453 best_entry->ttvn, best_entry->orig_node->orig,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001454 last_ttvn, vlan->tt.crc,
Sven Eckelmann981d8902012-10-07 13:34:15 +02001455 (flags & BATADV_TT_CLIENT_ROAM ? 'R' : '.'),
1456 (flags & BATADV_TT_CLIENT_WIFI ? 'W' : '.'),
1457 (flags & BATADV_TT_CLIENT_TEMP ? 'T' : '.'));
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001458
1459 batadv_orig_node_vlan_free_ref(vlan);
Sven Eckelmann981d8902012-10-07 13:34:15 +02001460 }
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001461
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001462print_list:
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001463 head = &tt_global_entry->orig_list;
1464
Sasha Levinb67bfe02013-02-27 17:06:00 -08001465 hlist_for_each_entry_rcu(orig_entry, head, list) {
Sven Eckelmann981d8902012-10-07 13:34:15 +02001466 if (best_entry == orig_entry)
1467 continue;
1468
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001469 vlan = batadv_orig_node_vlan_get(orig_entry->orig_node,
1470 tt_common_entry->vid);
1471 if (!vlan) {
1472 seq_printf(seq,
1473 " + Cannot retrieve VLAN %d for originator %pM\n",
1474 BATADV_PRINT_VID(tt_common_entry->vid),
1475 orig_entry->orig_node->orig);
1476 continue;
1477 }
1478
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001479 last_ttvn = atomic_read(&orig_entry->orig_node->last_ttvn);
Antonio Quartulli16052782013-06-04 12:11:41 +02001480 seq_printf(seq,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001481 " %c %pM %4d (%3u) via %pM (%3u) (%#.8x) [%c%c%c]\n",
Sven Eckelmann981d8902012-10-07 13:34:15 +02001482 '+', tt_global_entry->common.addr,
Antonio Quartulli16052782013-06-04 12:11:41 +02001483 BATADV_PRINT_VID(tt_global_entry->common.vid),
Sven Eckelmann981d8902012-10-07 13:34:15 +02001484 orig_entry->ttvn, orig_entry->orig_node->orig,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001485 last_ttvn, vlan->tt.crc,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001486 (flags & BATADV_TT_CLIENT_ROAM ? 'R' : '.'),
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001487 (flags & BATADV_TT_CLIENT_WIFI ? 'W' : '.'),
1488 (flags & BATADV_TT_CLIENT_TEMP ? 'T' : '.'));
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001489
1490 batadv_orig_node_vlan_free_ref(vlan);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001491 }
1492}
1493
Sven Eckelmann08c36d32012-05-12 02:09:39 +02001494int batadv_tt_global_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001495{
1496 struct net_device *net_dev = (struct net_device *)seq->private;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001497 struct batadv_priv *bat_priv = netdev_priv(net_dev);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001498 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001499 struct batadv_tt_common_entry *tt_common_entry;
1500 struct batadv_tt_global_entry *tt_global;
1501 struct batadv_hard_iface *primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001502 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001503 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001504
Marek Lindner30da63a2012-08-03 17:15:46 +02001505 primary_if = batadv_seq_print_text_primary_if_get(seq);
1506 if (!primary_if)
Marek Lindner32ae9b22011-04-20 15:40:58 +02001507 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001508
Antonio Quartulli2dafb492011-05-05 08:42:45 +02001509 seq_printf(seq,
1510 "Globally announced TT entries received via the mesh %s\n",
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001511 net_dev->name);
Antonio Quartulli16052782013-06-04 12:11:41 +02001512 seq_printf(seq, " %-13s %s %s %-15s %s (%-10s) %s\n",
1513 "Client", "VID", "(TTVN)", "Originator", "(Curr TTVN)",
1514 "CRC", "Flags");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001515
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001516 for (i = 0; i < hash->size; i++) {
1517 head = &hash->table[i];
1518
Marek Lindner7aadf882011-02-18 12:28:09 +00001519 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001520 hlist_for_each_entry_rcu(tt_common_entry,
Marek Lindner7aadf882011-02-18 12:28:09 +00001521 head, hash_entry) {
Sven Eckelmann56303d32012-06-05 22:31:31 +02001522 tt_global = container_of(tt_common_entry,
1523 struct batadv_tt_global_entry,
1524 common);
Antonio Quartulli46274562013-09-03 11:10:24 +02001525 batadv_tt_global_print_entry(bat_priv, tt_global, seq);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001526 }
Marek Lindner7aadf882011-02-18 12:28:09 +00001527 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001528 }
Marek Lindner32ae9b22011-04-20 15:40:58 +02001529out:
1530 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001531 batadv_hardif_free_ref(primary_if);
Marek Lindner30da63a2012-08-03 17:15:46 +02001532 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001533}
1534
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001535/* deletes the orig list of a tt_global_entry */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001536static void
Sven Eckelmann56303d32012-06-05 22:31:31 +02001537batadv_tt_global_del_orig_list(struct batadv_tt_global_entry *tt_global_entry)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001538{
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001539 struct hlist_head *head;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001540 struct hlist_node *safe;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001541 struct batadv_tt_orig_list_entry *orig_entry;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001542
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001543 spin_lock_bh(&tt_global_entry->list_lock);
1544 head = &tt_global_entry->orig_list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001545 hlist_for_each_entry_safe(orig_entry, safe, head, list) {
1546 hlist_del_rcu(&orig_entry->list);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001547 batadv_tt_global_size_dec(orig_entry->orig_node,
1548 tt_global_entry->common.vid);
Sven Eckelmanna5130882012-05-16 20:23:16 +02001549 batadv_tt_orig_list_entry_free_ref(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001550 }
1551 spin_unlock_bh(&tt_global_entry->list_lock);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001552}
1553
Sven Eckelmanna5130882012-05-16 20:23:16 +02001554static void
Sven Eckelmann56303d32012-06-05 22:31:31 +02001555batadv_tt_global_del_orig_entry(struct batadv_priv *bat_priv,
1556 struct batadv_tt_global_entry *tt_global_entry,
1557 struct batadv_orig_node *orig_node,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001558 const char *message)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001559{
1560 struct hlist_head *head;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001561 struct hlist_node *safe;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001562 struct batadv_tt_orig_list_entry *orig_entry;
Antonio Quartulli16052782013-06-04 12:11:41 +02001563 unsigned short vid;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001564
1565 spin_lock_bh(&tt_global_entry->list_lock);
1566 head = &tt_global_entry->orig_list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001567 hlist_for_each_entry_safe(orig_entry, safe, head, list) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001568 if (orig_entry->orig_node == orig_node) {
Antonio Quartulli16052782013-06-04 12:11:41 +02001569 vid = tt_global_entry->common.vid;
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001570 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02001571 "Deleting %pM from global tt entry %pM (vid: %d): %s\n",
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001572 orig_node->orig,
Antonio Quartulli16052782013-06-04 12:11:41 +02001573 tt_global_entry->common.addr,
1574 BATADV_PRINT_VID(vid), message);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001575 hlist_del_rcu(&orig_entry->list);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001576 batadv_tt_global_size_dec(orig_node,
1577 tt_global_entry->common.vid);
Sven Eckelmanna5130882012-05-16 20:23:16 +02001578 batadv_tt_orig_list_entry_free_ref(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001579 }
1580 }
1581 spin_unlock_bh(&tt_global_entry->list_lock);
1582}
1583
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001584/* If the client is to be deleted, we check if it is the last origantor entry
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001585 * within tt_global entry. If yes, we set the BATADV_TT_CLIENT_ROAM flag and the
1586 * timer, otherwise we simply remove the originator scheduled for deletion.
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001587 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001588static void
Sven Eckelmann56303d32012-06-05 22:31:31 +02001589batadv_tt_global_del_roaming(struct batadv_priv *bat_priv,
1590 struct batadv_tt_global_entry *tt_global_entry,
1591 struct batadv_orig_node *orig_node,
1592 const char *message)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001593{
1594 bool last_entry = true;
1595 struct hlist_head *head;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001596 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001597
1598 /* no local entry exists, case 1:
1599 * Check if this is the last one or if other entries exist.
1600 */
1601
1602 rcu_read_lock();
1603 head = &tt_global_entry->orig_list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001604 hlist_for_each_entry_rcu(orig_entry, head, list) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001605 if (orig_entry->orig_node != orig_node) {
1606 last_entry = false;
1607 break;
1608 }
1609 }
1610 rcu_read_unlock();
1611
1612 if (last_entry) {
1613 /* its the last one, mark for roaming. */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001614 tt_global_entry->common.flags |= BATADV_TT_CLIENT_ROAM;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001615 tt_global_entry->roam_at = jiffies;
1616 } else
1617 /* there is another entry, we can simply delete this
1618 * one and can still use the other one.
1619 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001620 batadv_tt_global_del_orig_entry(bat_priv, tt_global_entry,
1621 orig_node, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001622}
1623
Antonio Quartullic018ad32013-06-04 12:11:39 +02001624/**
1625 * batadv_tt_global_del - remove a client from the global table
1626 * @bat_priv: the bat priv with all the soft interface information
1627 * @orig_node: an originator serving this client
1628 * @addr: the mac address of the client
1629 * @vid: VLAN identifier
1630 * @message: a message explaining the reason for deleting the client to print
1631 * for debugging purpose
1632 * @roaming: true if the deletion has been triggered by a roaming event
1633 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001634static void batadv_tt_global_del(struct batadv_priv *bat_priv,
1635 struct batadv_orig_node *orig_node,
Antonio Quartullic018ad32013-06-04 12:11:39 +02001636 const unsigned char *addr, unsigned short vid,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001637 const char *message, bool roaming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001638{
Sven Eckelmann170173b2012-10-07 12:02:22 +02001639 struct batadv_tt_global_entry *tt_global_entry;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001640 struct batadv_tt_local_entry *local_entry = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001641
Antonio Quartullic018ad32013-06-04 12:11:39 +02001642 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001643 if (!tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001644 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001645
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001646 if (!roaming) {
Sven Eckelmanna5130882012-05-16 20:23:16 +02001647 batadv_tt_global_del_orig_entry(bat_priv, tt_global_entry,
1648 orig_node, message);
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001649
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001650 if (hlist_empty(&tt_global_entry->orig_list))
Antonio Quartullibe73b482012-09-23 22:38:36 +02001651 batadv_tt_global_free(bat_priv, tt_global_entry,
1652 message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001653
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001654 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001655 }
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001656
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001657 /* if we are deleting a global entry due to a roam
1658 * event, there are two possibilities:
1659 * 1) the client roamed from node A to node B => if there
1660 * is only one originator left for this client, we mark
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001661 * it with BATADV_TT_CLIENT_ROAM, we start a timer and we
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001662 * wait for node B to claim it. In case of timeout
1663 * the entry is purged.
1664 *
1665 * If there are other originators left, we directly delete
1666 * the originator.
1667 * 2) the client roamed to us => we can directly delete
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001668 * the global entry, since it is useless now.
1669 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001670 local_entry = batadv_tt_local_hash_find(bat_priv,
Antonio Quartullic018ad32013-06-04 12:11:39 +02001671 tt_global_entry->common.addr,
1672 vid);
Sven Eckelmanna5130882012-05-16 20:23:16 +02001673 if (local_entry) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001674 /* local entry exists, case 2: client roamed to us. */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001675 batadv_tt_global_del_orig_list(tt_global_entry);
Antonio Quartullibe73b482012-09-23 22:38:36 +02001676 batadv_tt_global_free(bat_priv, tt_global_entry, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001677 } else
1678 /* no local entry exists, case 1: check for roaming */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001679 batadv_tt_global_del_roaming(bat_priv, tt_global_entry,
1680 orig_node, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001681
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001682
Antonio Quartullicc47f662011-04-27 14:27:57 +02001683out:
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001684 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02001685 batadv_tt_global_entry_free_ref(tt_global_entry);
1686 if (local_entry)
1687 batadv_tt_local_entry_free_ref(local_entry);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001688}
1689
Antonio Quartulli95fb1302013-08-07 18:28:55 +02001690/**
1691 * batadv_tt_global_del_orig - remove all the TT global entries belonging to the
1692 * given originator matching the provided vid
1693 * @bat_priv: the bat priv with all the soft interface information
1694 * @orig_node: the originator owning the entries to remove
1695 * @match_vid: the VLAN identifier to match. If negative all the entries will be
1696 * removed
1697 * @message: debug message to print as "reason"
1698 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001699void batadv_tt_global_del_orig(struct batadv_priv *bat_priv,
1700 struct batadv_orig_node *orig_node,
Antonio Quartulli95fb1302013-08-07 18:28:55 +02001701 int32_t match_vid,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001702 const char *message)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001703{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001704 struct batadv_tt_global_entry *tt_global;
1705 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001706 uint32_t i;
Sven Eckelmann807736f2012-07-15 22:26:51 +02001707 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001708 struct hlist_node *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001709 struct hlist_head *head;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001710 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartulli16052782013-06-04 12:11:41 +02001711 unsigned short vid;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001712
Simon Wunderlich6e801492011-10-19 10:28:26 +02001713 if (!hash)
1714 return;
1715
Antonio Quartullia73105b2011-04-27 14:27:44 +02001716 for (i = 0; i < hash->size; i++) {
1717 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001718 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001719
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001720 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001721 hlist_for_each_entry_safe(tt_common_entry, safe,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +01001722 head, hash_entry) {
Antonio Quartulli95fb1302013-08-07 18:28:55 +02001723 /* remove only matching entries */
1724 if (match_vid >= 0 && tt_common_entry->vid != match_vid)
1725 continue;
1726
Sven Eckelmann56303d32012-06-05 22:31:31 +02001727 tt_global = container_of(tt_common_entry,
1728 struct batadv_tt_global_entry,
1729 common);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001730
Sven Eckelmann56303d32012-06-05 22:31:31 +02001731 batadv_tt_global_del_orig_entry(bat_priv, tt_global,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001732 orig_node, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001733
Sven Eckelmann56303d32012-06-05 22:31:31 +02001734 if (hlist_empty(&tt_global->orig_list)) {
Antonio Quartulli16052782013-06-04 12:11:41 +02001735 vid = tt_global->common.vid;
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001736 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02001737 "Deleting global tt entry %pM (vid: %d): %s\n",
1738 tt_global->common.addr,
1739 BATADV_PRINT_VID(vid), message);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001740 hlist_del_rcu(&tt_common_entry->hash_entry);
Sven Eckelmann56303d32012-06-05 22:31:31 +02001741 batadv_tt_global_entry_free_ref(tt_global);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001742 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02001743 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001744 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001745 }
Antonio Quartulli17071572011-11-07 16:36:40 +01001746 orig_node->tt_initialised = false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001747}
1748
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001749static bool batadv_tt_global_to_purge(struct batadv_tt_global_entry *tt_global,
1750 char **msg)
Antonio Quartullicc47f662011-04-27 14:27:57 +02001751{
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001752 bool purge = false;
1753 unsigned long roam_timeout = BATADV_TT_CLIENT_ROAM_TIMEOUT;
1754 unsigned long temp_timeout = BATADV_TT_CLIENT_TEMP_TIMEOUT;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001755
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001756 if ((tt_global->common.flags & BATADV_TT_CLIENT_ROAM) &&
1757 batadv_has_timed_out(tt_global->roam_at, roam_timeout)) {
1758 purge = true;
1759 *msg = "Roaming timeout\n";
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001760 }
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001761
1762 if ((tt_global->common.flags & BATADV_TT_CLIENT_TEMP) &&
1763 batadv_has_timed_out(tt_global->common.added_at, temp_timeout)) {
1764 purge = true;
1765 *msg = "Temporary client timeout\n";
1766 }
1767
1768 return purge;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001769}
1770
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001771static void batadv_tt_global_purge(struct batadv_priv *bat_priv)
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001772{
Sven Eckelmann807736f2012-07-15 22:26:51 +02001773 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Antonio Quartullicc47f662011-04-27 14:27:57 +02001774 struct hlist_head *head;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001775 struct hlist_node *node_tmp;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001776 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullic90681b2011-10-05 17:05:25 +02001777 uint32_t i;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001778 char *msg = NULL;
1779 struct batadv_tt_common_entry *tt_common;
1780 struct batadv_tt_global_entry *tt_global;
Antonio Quartullicc47f662011-04-27 14:27:57 +02001781
Antonio Quartullicc47f662011-04-27 14:27:57 +02001782 for (i = 0; i < hash->size; i++) {
1783 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001784 list_lock = &hash->list_locks[i];
Antonio Quartullicc47f662011-04-27 14:27:57 +02001785
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001786 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001787 hlist_for_each_entry_safe(tt_common, node_tmp, head,
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001788 hash_entry) {
1789 tt_global = container_of(tt_common,
1790 struct batadv_tt_global_entry,
1791 common);
1792
1793 if (!batadv_tt_global_to_purge(tt_global, &msg))
1794 continue;
1795
1796 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02001797 "Deleting global tt entry %pM (vid: %d): %s\n",
1798 tt_global->common.addr,
1799 BATADV_PRINT_VID(tt_global->common.vid),
1800 msg);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001801
Sasha Levinb67bfe02013-02-27 17:06:00 -08001802 hlist_del_rcu(&tt_common->hash_entry);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001803
1804 batadv_tt_global_entry_free_ref(tt_global);
1805 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001806 spin_unlock_bh(list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02001807 }
Antonio Quartullicc47f662011-04-27 14:27:57 +02001808}
1809
Sven Eckelmann56303d32012-06-05 22:31:31 +02001810static void batadv_tt_global_table_free(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001811{
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02001812 struct batadv_hashtable *hash;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001813 spinlock_t *list_lock; /* protects write access to the hash lists */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001814 struct batadv_tt_common_entry *tt_common_entry;
1815 struct batadv_tt_global_entry *tt_global;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001816 struct hlist_node *node_tmp;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001817 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001818 uint32_t i;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001819
Sven Eckelmann807736f2012-07-15 22:26:51 +02001820 if (!bat_priv->tt.global_hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001821 return;
1822
Sven Eckelmann807736f2012-07-15 22:26:51 +02001823 hash = bat_priv->tt.global_hash;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001824
1825 for (i = 0; i < hash->size; i++) {
1826 head = &hash->table[i];
1827 list_lock = &hash->list_locks[i];
1828
1829 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001830 hlist_for_each_entry_safe(tt_common_entry, node_tmp,
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001831 head, hash_entry) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001832 hlist_del_rcu(&tt_common_entry->hash_entry);
Sven Eckelmann56303d32012-06-05 22:31:31 +02001833 tt_global = container_of(tt_common_entry,
1834 struct batadv_tt_global_entry,
1835 common);
1836 batadv_tt_global_entry_free_ref(tt_global);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001837 }
1838 spin_unlock_bh(list_lock);
1839 }
1840
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +02001841 batadv_hash_destroy(hash);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001842
Sven Eckelmann807736f2012-07-15 22:26:51 +02001843 bat_priv->tt.global_hash = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001844}
1845
Sven Eckelmann56303d32012-06-05 22:31:31 +02001846static bool
1847_batadv_is_ap_isolated(struct batadv_tt_local_entry *tt_local_entry,
1848 struct batadv_tt_global_entry *tt_global_entry)
Antonio Quartulli59b699c2011-07-07 15:35:36 +02001849{
1850 bool ret = false;
1851
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001852 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_WIFI &&
1853 tt_global_entry->common.flags & BATADV_TT_CLIENT_WIFI)
Antonio Quartulli59b699c2011-07-07 15:35:36 +02001854 ret = true;
1855
1856 return ret;
1857}
1858
Antonio Quartullic018ad32013-06-04 12:11:39 +02001859/**
1860 * batadv_transtable_search - get the mesh destination for a given client
1861 * @bat_priv: the bat priv with all the soft interface information
1862 * @src: mac address of the source client
1863 * @addr: mac address of the destination client
1864 * @vid: VLAN identifier
1865 *
1866 * Returns a pointer to the originator that was selected as destination in the
1867 * mesh for contacting the client 'addr', NULL otherwise.
1868 * In case of multiple originators serving the same client, the function returns
1869 * the best one (best in terms of metric towards the destination node).
1870 *
1871 * If the two clients are AP isolated the function returns NULL.
1872 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001873struct batadv_orig_node *batadv_transtable_search(struct batadv_priv *bat_priv,
1874 const uint8_t *src,
Antonio Quartullic018ad32013-06-04 12:11:39 +02001875 const uint8_t *addr,
1876 unsigned short vid)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001877{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001878 struct batadv_tt_local_entry *tt_local_entry = NULL;
1879 struct batadv_tt_global_entry *tt_global_entry = NULL;
1880 struct batadv_orig_node *orig_node = NULL;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001881 struct batadv_tt_orig_list_entry *best_entry;
Antonio Quartullib8cbd812013-07-02 11:04:36 +02001882 bool ap_isolation_enabled = false;
1883 struct batadv_softif_vlan *vlan;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001884
Antonio Quartullib8cbd812013-07-02 11:04:36 +02001885 /* if the AP isolation is requested on a VLAN, then check for its
1886 * setting in the proper VLAN private data structure
1887 */
1888 vlan = batadv_softif_vlan_get(bat_priv, vid);
1889 if (vlan) {
1890 ap_isolation_enabled = atomic_read(&vlan->ap_isolation);
1891 batadv_softif_vlan_free_ref(vlan);
1892 }
1893
1894 if (src && ap_isolation_enabled) {
Antonio Quartullic018ad32013-06-04 12:11:39 +02001895 tt_local_entry = batadv_tt_local_hash_find(bat_priv, src, vid);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001896 if (!tt_local_entry ||
1897 (tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING))
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001898 goto out;
1899 }
Marek Lindner7aadf882011-02-18 12:28:09 +00001900
Antonio Quartullic018ad32013-06-04 12:11:39 +02001901 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid);
Antonio Quartulli2dafb492011-05-05 08:42:45 +02001902 if (!tt_global_entry)
Marek Lindner7b36e8e2011-02-18 12:28:10 +00001903 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001904
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001905 /* check whether the clients should not communicate due to AP
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001906 * isolation
1907 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001908 if (tt_local_entry &&
1909 _batadv_is_ap_isolated(tt_local_entry, tt_global_entry))
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001910 goto out;
1911
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001912 rcu_read_lock();
Antonio Quartulli46274562013-09-03 11:10:24 +02001913 best_entry = batadv_transtable_best_orig(bat_priv, tt_global_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001914 /* found anything? */
Sven Eckelmann981d8902012-10-07 13:34:15 +02001915 if (best_entry)
1916 orig_node = best_entry->orig_node;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001917 if (orig_node && !atomic_inc_not_zero(&orig_node->refcount))
1918 orig_node = NULL;
1919 rcu_read_unlock();
Sven Eckelmann981d8902012-10-07 13:34:15 +02001920
Marek Lindner7b36e8e2011-02-18 12:28:10 +00001921out:
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001922 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02001923 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001924 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02001925 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001926
Marek Lindner7b36e8e2011-02-18 12:28:10 +00001927 return orig_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001928}
Antonio Quartullia73105b2011-04-27 14:27:44 +02001929
Antonio Quartulliced72932013-04-24 16:37:51 +02001930/**
1931 * batadv_tt_global_crc - calculates the checksum of the local table belonging
1932 * to the given orig_node
1933 * @bat_priv: the bat priv with all the soft interface information
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02001934 * @orig_node: originator for which the CRC should be computed
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001935 * @vid: VLAN identifier for which the CRC32 has to be computed
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02001936 *
1937 * This function computes the checksum for the global table corresponding to a
1938 * specific originator. In particular, the checksum is computed as follows: For
1939 * each client connected to the originator the CRC32C of the MAC address and the
1940 * VID is computed and then all the CRC32Cs of the various clients are xor'ed
1941 * together.
1942 *
1943 * The idea behind is that CRC32C should be used as much as possible in order to
1944 * produce a unique hash of the table, but since the order which is used to feed
1945 * the CRC32C function affects the result and since every node in the network
1946 * probably sorts the clients differently, the hash function cannot be directly
1947 * computed over the entire table. Hence the CRC32C is used only on
1948 * the single client entry, while all the results are then xor'ed together
1949 * because the XOR operation can combine them all while trying to reduce the
1950 * noise as much as possible.
1951 *
1952 * Returns the checksum of the global table of a given originator.
Antonio Quartulliced72932013-04-24 16:37:51 +02001953 */
1954static uint32_t batadv_tt_global_crc(struct batadv_priv *bat_priv,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001955 struct batadv_orig_node *orig_node,
1956 unsigned short vid)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001957{
Sven Eckelmann807736f2012-07-15 22:26:51 +02001958 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001959 struct batadv_tt_common_entry *tt_common;
1960 struct batadv_tt_global_entry *tt_global;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001961 struct hlist_head *head;
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02001962 uint32_t i, crc_tmp, crc = 0;
Antonio Quartulli0eb015682013-10-13 02:50:20 +02001963 uint8_t flags;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001964
1965 for (i = 0; i < hash->size; i++) {
1966 head = &hash->table[i];
1967
1968 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001969 hlist_for_each_entry_rcu(tt_common, head, hash_entry) {
Sven Eckelmann56303d32012-06-05 22:31:31 +02001970 tt_global = container_of(tt_common,
1971 struct batadv_tt_global_entry,
1972 common);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001973 /* compute the CRC only for entries belonging to the
1974 * VLAN identified by the vid passed as parameter
1975 */
1976 if (tt_common->vid != vid)
1977 continue;
1978
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001979 /* Roaming clients are in the global table for
1980 * consistency only. They don't have to be
1981 * taken into account while computing the
1982 * global crc
1983 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001984 if (tt_common->flags & BATADV_TT_CLIENT_ROAM)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001985 continue;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001986 /* Temporary clients have not been announced yet, so
1987 * they have to be skipped while computing the global
1988 * crc
1989 */
1990 if (tt_common->flags & BATADV_TT_CLIENT_TEMP)
1991 continue;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001992
1993 /* find out if this global entry is announced by this
1994 * originator
1995 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001996 if (!batadv_tt_global_entry_has_orig(tt_global,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001997 orig_node))
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001998 continue;
1999
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002000 crc_tmp = crc32c(0, &tt_common->vid,
2001 sizeof(tt_common->vid));
Antonio Quartulli0eb015682013-10-13 02:50:20 +02002002
2003 /* compute the CRC on flags that have to be kept in sync
2004 * among nodes
2005 */
2006 flags = tt_common->flags & BATADV_TT_SYNC_MASK;
2007 crc_tmp = crc32c(crc_tmp, &flags, sizeof(flags));
2008
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002009 crc ^= crc32c(crc_tmp, tt_common->addr, ETH_ALEN);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002010 }
2011 rcu_read_unlock();
2012 }
2013
Antonio Quartulliced72932013-04-24 16:37:51 +02002014 return crc;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002015}
2016
Antonio Quartulliced72932013-04-24 16:37:51 +02002017/**
2018 * batadv_tt_local_crc - calculates the checksum of the local table
2019 * @bat_priv: the bat priv with all the soft interface information
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002020 * @vid: VLAN identifier for which the CRC32 has to be computed
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002021 *
2022 * For details about the computation, please refer to the documentation for
2023 * batadv_tt_global_crc().
2024 *
2025 * Returns the checksum of the local table
Antonio Quartulliced72932013-04-24 16:37:51 +02002026 */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002027static uint32_t batadv_tt_local_crc(struct batadv_priv *bat_priv,
2028 unsigned short vid)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002029{
Sven Eckelmann807736f2012-07-15 22:26:51 +02002030 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002031 struct batadv_tt_common_entry *tt_common;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002032 struct hlist_head *head;
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002033 uint32_t i, crc_tmp, crc = 0;
Antonio Quartulli0eb015682013-10-13 02:50:20 +02002034 uint8_t flags;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002035
2036 for (i = 0; i < hash->size; i++) {
2037 head = &hash->table[i];
2038
2039 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08002040 hlist_for_each_entry_rcu(tt_common, head, hash_entry) {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002041 /* compute the CRC only for entries belonging to the
2042 * VLAN identified by vid
2043 */
2044 if (tt_common->vid != vid)
2045 continue;
2046
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002047 /* not yet committed clients have not to be taken into
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002048 * account while computing the CRC
2049 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002050 if (tt_common->flags & BATADV_TT_CLIENT_NEW)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002051 continue;
Antonio Quartulliced72932013-04-24 16:37:51 +02002052
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002053 crc_tmp = crc32c(0, &tt_common->vid,
2054 sizeof(tt_common->vid));
Antonio Quartulli0eb015682013-10-13 02:50:20 +02002055
2056 /* compute the CRC on flags that have to be kept in sync
2057 * among nodes
2058 */
2059 flags = tt_common->flags & BATADV_TT_SYNC_MASK;
2060 crc_tmp = crc32c(crc_tmp, &flags, sizeof(flags));
2061
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002062 crc ^= crc32c(crc_tmp, tt_common->addr, ETH_ALEN);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002063 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02002064 rcu_read_unlock();
2065 }
2066
Antonio Quartulliced72932013-04-24 16:37:51 +02002067 return crc;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002068}
2069
Sven Eckelmann56303d32012-06-05 22:31:31 +02002070static void batadv_tt_req_list_free(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002071{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002072 struct batadv_tt_req_node *node, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002073
Sven Eckelmann807736f2012-07-15 22:26:51 +02002074 spin_lock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002075
Sven Eckelmann807736f2012-07-15 22:26:51 +02002076 list_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
Antonio Quartullia73105b2011-04-27 14:27:44 +02002077 list_del(&node->list);
2078 kfree(node);
2079 }
2080
Sven Eckelmann807736f2012-07-15 22:26:51 +02002081 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002082}
2083
Sven Eckelmann56303d32012-06-05 22:31:31 +02002084static void batadv_tt_save_orig_buffer(struct batadv_priv *bat_priv,
2085 struct batadv_orig_node *orig_node,
Antonio Quartullie8cf2342013-05-28 13:14:28 +02002086 const void *tt_buff,
2087 uint16_t tt_buff_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002088{
Antonio Quartullia73105b2011-04-27 14:27:44 +02002089 /* Replace the old buffer only if I received something in the
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002090 * last OGM (the OGM could carry no changes)
2091 */
Antonio Quartullia73105b2011-04-27 14:27:44 +02002092 spin_lock_bh(&orig_node->tt_buff_lock);
2093 if (tt_buff_len > 0) {
2094 kfree(orig_node->tt_buff);
2095 orig_node->tt_buff_len = 0;
2096 orig_node->tt_buff = kmalloc(tt_buff_len, GFP_ATOMIC);
2097 if (orig_node->tt_buff) {
2098 memcpy(orig_node->tt_buff, tt_buff, tt_buff_len);
2099 orig_node->tt_buff_len = tt_buff_len;
2100 }
2101 }
2102 spin_unlock_bh(&orig_node->tt_buff_lock);
2103}
2104
Sven Eckelmann56303d32012-06-05 22:31:31 +02002105static void batadv_tt_req_purge(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002106{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002107 struct batadv_tt_req_node *node, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002108
Sven Eckelmann807736f2012-07-15 22:26:51 +02002109 spin_lock_bh(&bat_priv->tt.req_list_lock);
2110 list_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002111 if (batadv_has_timed_out(node->issued_at,
2112 BATADV_TT_REQUEST_TIMEOUT)) {
Antonio Quartullia73105b2011-04-27 14:27:44 +02002113 list_del(&node->list);
2114 kfree(node);
2115 }
2116 }
Sven Eckelmann807736f2012-07-15 22:26:51 +02002117 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002118}
2119
2120/* returns the pointer to the new tt_req_node struct if no request
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002121 * has already been issued for this orig_node, NULL otherwise
2122 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002123static struct batadv_tt_req_node *
2124batadv_new_tt_req_node(struct batadv_priv *bat_priv,
2125 struct batadv_orig_node *orig_node)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002126{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002127 struct batadv_tt_req_node *tt_req_node_tmp, *tt_req_node = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002128
Sven Eckelmann807736f2012-07-15 22:26:51 +02002129 spin_lock_bh(&bat_priv->tt.req_list_lock);
2130 list_for_each_entry(tt_req_node_tmp, &bat_priv->tt.req_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002131 if (batadv_compare_eth(tt_req_node_tmp, orig_node) &&
2132 !batadv_has_timed_out(tt_req_node_tmp->issued_at,
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002133 BATADV_TT_REQUEST_TIMEOUT))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002134 goto unlock;
2135 }
2136
2137 tt_req_node = kmalloc(sizeof(*tt_req_node), GFP_ATOMIC);
2138 if (!tt_req_node)
2139 goto unlock;
2140
2141 memcpy(tt_req_node->addr, orig_node->orig, ETH_ALEN);
2142 tt_req_node->issued_at = jiffies;
2143
Sven Eckelmann807736f2012-07-15 22:26:51 +02002144 list_add(&tt_req_node->list, &bat_priv->tt.req_list);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002145unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +02002146 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002147 return tt_req_node;
2148}
2149
Marek Lindner335fbe02013-04-23 21:40:02 +08002150/**
2151 * batadv_tt_local_valid - verify that given tt entry is a valid one
2152 * @entry_ptr: to be checked local tt entry
2153 * @data_ptr: not used but definition required to satisfy the callback prototype
2154 *
2155 * Returns 1 if the entry is a valid, 0 otherwise.
2156 */
2157static int batadv_tt_local_valid(const void *entry_ptr, const void *data_ptr)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002158{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002159 const struct batadv_tt_common_entry *tt_common_entry = entry_ptr;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002160
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002161 if (tt_common_entry->flags & BATADV_TT_CLIENT_NEW)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002162 return 0;
2163 return 1;
2164}
2165
Sven Eckelmanna5130882012-05-16 20:23:16 +02002166static int batadv_tt_global_valid(const void *entry_ptr,
2167 const void *data_ptr)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002168{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002169 const struct batadv_tt_common_entry *tt_common_entry = entry_ptr;
2170 const struct batadv_tt_global_entry *tt_global_entry;
2171 const struct batadv_orig_node *orig_node = data_ptr;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002172
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002173 if (tt_common_entry->flags & BATADV_TT_CLIENT_ROAM ||
2174 tt_common_entry->flags & BATADV_TT_CLIENT_TEMP)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002175 return 0;
2176
Sven Eckelmann56303d32012-06-05 22:31:31 +02002177 tt_global_entry = container_of(tt_common_entry,
2178 struct batadv_tt_global_entry,
Antonio Quartulli48100ba2011-10-30 12:17:33 +01002179 common);
2180
Sven Eckelmanna5130882012-05-16 20:23:16 +02002181 return batadv_tt_global_entry_has_orig(tt_global_entry, orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002182}
2183
Marek Lindner335fbe02013-04-23 21:40:02 +08002184/**
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002185 * batadv_tt_tvlv_generate - fill the tvlv buff with the tt entries from the
2186 * specified tt hash
Marek Lindner335fbe02013-04-23 21:40:02 +08002187 * @bat_priv: the bat priv with all the soft interface information
2188 * @hash: hash table containing the tt entries
2189 * @tt_len: expected tvlv tt data buffer length in number of bytes
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002190 * @tvlv_buff: pointer to the buffer to fill with the TT data
Marek Lindner335fbe02013-04-23 21:40:02 +08002191 * @valid_cb: function to filter tt change entries
2192 * @cb_data: data passed to the filter function as argument
Marek Lindner335fbe02013-04-23 21:40:02 +08002193 */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002194static void batadv_tt_tvlv_generate(struct batadv_priv *bat_priv,
2195 struct batadv_hashtable *hash,
2196 void *tvlv_buff, uint16_t tt_len,
2197 int (*valid_cb)(const void *, const void *),
2198 void *cb_data)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002199{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002200 struct batadv_tt_common_entry *tt_common_entry;
Marek Lindner335fbe02013-04-23 21:40:02 +08002201 struct batadv_tvlv_tt_change *tt_change;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002202 struct hlist_head *head;
Marek Lindner335fbe02013-04-23 21:40:02 +08002203 uint16_t tt_tot, tt_num_entries = 0;
Antonio Quartullic90681b2011-10-05 17:05:25 +02002204 uint32_t i;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002205
Antonio Quartulli298e6e62013-05-28 13:14:27 +02002206 tt_tot = batadv_tt_entries(tt_len);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002207 tt_change = (struct batadv_tvlv_tt_change *)tvlv_buff;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002208
2209 rcu_read_lock();
2210 for (i = 0; i < hash->size; i++) {
2211 head = &hash->table[i];
2212
Sasha Levinb67bfe02013-02-27 17:06:00 -08002213 hlist_for_each_entry_rcu(tt_common_entry,
Antonio Quartullia73105b2011-04-27 14:27:44 +02002214 head, hash_entry) {
Marek Lindner335fbe02013-04-23 21:40:02 +08002215 if (tt_tot == tt_num_entries)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002216 break;
2217
Antonio Quartulli48100ba2011-10-30 12:17:33 +01002218 if ((valid_cb) && (!valid_cb(tt_common_entry, cb_data)))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002219 continue;
2220
Antonio Quartulli48100ba2011-10-30 12:17:33 +01002221 memcpy(tt_change->addr, tt_common_entry->addr,
2222 ETH_ALEN);
Antonio Quartulli27b37eb2012-11-08 14:21:11 +01002223 tt_change->flags = tt_common_entry->flags;
Antonio Quartullic018ad32013-06-04 12:11:39 +02002224 tt_change->vid = htons(tt_common_entry->vid);
Antonio Quartullica663042013-12-15 13:26:55 +01002225 memset(tt_change->reserved, 0,
2226 sizeof(tt_change->reserved));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002227
Marek Lindner335fbe02013-04-23 21:40:02 +08002228 tt_num_entries++;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002229 tt_change++;
2230 }
2231 }
2232 rcu_read_unlock();
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002233}
Antonio Quartullia73105b2011-04-27 14:27:44 +02002234
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002235/**
2236 * batadv_tt_global_check_crc - check if all the CRCs are correct
2237 * @orig_node: originator for which the CRCs have to be checked
2238 * @tt_vlan: pointer to the first tvlv VLAN entry
2239 * @num_vlan: number of tvlv VLAN entries
2240 * @create: if true, create VLAN objects if not found
2241 *
2242 * Return true if all the received CRCs match the locally stored ones, false
2243 * otherwise
2244 */
2245static bool batadv_tt_global_check_crc(struct batadv_orig_node *orig_node,
2246 struct batadv_tvlv_tt_vlan_data *tt_vlan,
2247 uint16_t num_vlan)
2248{
2249 struct batadv_tvlv_tt_vlan_data *tt_vlan_tmp;
2250 struct batadv_orig_node_vlan *vlan;
2251 int i;
2252
2253 /* check if each received CRC matches the locally stored one */
2254 for (i = 0; i < num_vlan; i++) {
2255 tt_vlan_tmp = tt_vlan + i;
2256
2257 /* if orig_node is a backbone node for this VLAN, don't check
2258 * the CRC as we ignore all the global entries over it
2259 */
2260 if (batadv_bla_is_backbone_gw_orig(orig_node->bat_priv,
Antonio Quartullicfd4f752013-08-07 18:28:56 +02002261 orig_node->orig,
2262 ntohs(tt_vlan_tmp->vid)))
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002263 continue;
2264
2265 vlan = batadv_orig_node_vlan_get(orig_node,
2266 ntohs(tt_vlan_tmp->vid));
2267 if (!vlan)
2268 return false;
2269
2270 if (vlan->tt.crc != ntohl(tt_vlan_tmp->crc))
2271 return false;
2272 }
2273
2274 return true;
2275}
2276
2277/**
2278 * batadv_tt_local_update_crc - update all the local CRCs
2279 * @bat_priv: the bat priv with all the soft interface information
2280 */
2281static void batadv_tt_local_update_crc(struct batadv_priv *bat_priv)
2282{
2283 struct batadv_softif_vlan *vlan;
2284
2285 /* recompute the global CRC for each VLAN */
2286 rcu_read_lock();
2287 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
2288 vlan->tt.crc = batadv_tt_local_crc(bat_priv, vlan->vid);
2289 }
2290 rcu_read_unlock();
2291}
2292
2293/**
2294 * batadv_tt_global_update_crc - update all the global CRCs for this orig_node
2295 * @bat_priv: the bat priv with all the soft interface information
2296 * @orig_node: the orig_node for which the CRCs have to be updated
2297 */
2298static void batadv_tt_global_update_crc(struct batadv_priv *bat_priv,
2299 struct batadv_orig_node *orig_node)
2300{
2301 struct batadv_orig_node_vlan *vlan;
2302 uint32_t crc;
2303
2304 /* recompute the global CRC for each VLAN */
2305 rcu_read_lock();
2306 list_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) {
2307 /* if orig_node is a backbone node for this VLAN, don't compute
2308 * the CRC as we ignore all the global entries over it
2309 */
Antonio Quartullicfd4f752013-08-07 18:28:56 +02002310 if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig,
2311 vlan->vid))
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002312 continue;
2313
2314 crc = batadv_tt_global_crc(bat_priv, orig_node, vlan->vid);
2315 vlan->tt.crc = crc;
2316 }
2317 rcu_read_unlock();
Antonio Quartullia73105b2011-04-27 14:27:44 +02002318}
2319
Antonio Quartulliced72932013-04-24 16:37:51 +02002320/**
2321 * batadv_send_tt_request - send a TT Request message to a given node
2322 * @bat_priv: the bat priv with all the soft interface information
2323 * @dst_orig_node: the destination of the message
2324 * @ttvn: the version number that the source of the message is looking for
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002325 * @tt_vlan: pointer to the first tvlv VLAN object to request
2326 * @num_vlan: number of tvlv VLAN entries
Antonio Quartulliced72932013-04-24 16:37:51 +02002327 * @full_table: ask for the entire translation table if true, while only for the
2328 * last TT diff otherwise
2329 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002330static int batadv_send_tt_request(struct batadv_priv *bat_priv,
2331 struct batadv_orig_node *dst_orig_node,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002332 uint8_t ttvn,
2333 struct batadv_tvlv_tt_vlan_data *tt_vlan,
2334 uint16_t num_vlan, bool full_table)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002335{
Marek Lindner335fbe02013-04-23 21:40:02 +08002336 struct batadv_tvlv_tt_data *tvlv_tt_data = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002337 struct batadv_tt_req_node *tt_req_node = NULL;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002338 struct batadv_tvlv_tt_vlan_data *tt_vlan_req;
2339 struct batadv_hard_iface *primary_if;
Marek Lindner335fbe02013-04-23 21:40:02 +08002340 bool ret = false;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002341 int i, size;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002342
Sven Eckelmanne5d89252012-05-12 13:48:54 +02002343 primary_if = batadv_primary_if_get_selected(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002344 if (!primary_if)
2345 goto out;
2346
2347 /* The new tt_req will be issued only if I'm not waiting for a
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002348 * reply from the same orig_node yet
2349 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002350 tt_req_node = batadv_new_tt_req_node(bat_priv, dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002351 if (!tt_req_node)
2352 goto out;
2353
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002354 size = sizeof(*tvlv_tt_data) + sizeof(*tt_vlan_req) * num_vlan;
2355 tvlv_tt_data = kzalloc(size, GFP_ATOMIC);
Marek Lindner335fbe02013-04-23 21:40:02 +08002356 if (!tvlv_tt_data)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002357 goto out;
2358
Marek Lindner335fbe02013-04-23 21:40:02 +08002359 tvlv_tt_data->flags = BATADV_TT_REQUEST;
2360 tvlv_tt_data->ttvn = ttvn;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002361 tvlv_tt_data->num_vlan = htons(num_vlan);
2362
2363 /* send all the CRCs within the request. This is needed by intermediate
2364 * nodes to ensure they have the correct table before replying
2365 */
2366 tt_vlan_req = (struct batadv_tvlv_tt_vlan_data *)(tvlv_tt_data + 1);
2367 for (i = 0; i < num_vlan; i++) {
2368 tt_vlan_req->vid = tt_vlan->vid;
2369 tt_vlan_req->crc = tt_vlan->crc;
2370
2371 tt_vlan_req++;
2372 tt_vlan++;
2373 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02002374
2375 if (full_table)
Marek Lindner335fbe02013-04-23 21:40:02 +08002376 tvlv_tt_data->flags |= BATADV_TT_FULL_TABLE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002377
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02002378 batadv_dbg(BATADV_DBG_TT, bat_priv, "Sending TT_REQUEST to %pM [%c]\n",
Marek Lindner335fbe02013-04-23 21:40:02 +08002379 dst_orig_node->orig, full_table ? 'F' : '.');
Antonio Quartullia73105b2011-04-27 14:27:44 +02002380
Sven Eckelmannd69909d2012-06-03 22:19:20 +02002381 batadv_inc_counter(bat_priv, BATADV_CNT_TT_REQUEST_TX);
Marek Lindner335fbe02013-04-23 21:40:02 +08002382 batadv_tvlv_unicast_send(bat_priv, primary_if->net_dev->dev_addr,
2383 dst_orig_node->orig, BATADV_TVLV_TT, 1,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002384 tvlv_tt_data, size);
Marek Lindner335fbe02013-04-23 21:40:02 +08002385 ret = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002386
2387out:
Antonio Quartullia73105b2011-04-27 14:27:44 +02002388 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02002389 batadv_hardif_free_ref(primary_if);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002390 if (ret && tt_req_node) {
Sven Eckelmann807736f2012-07-15 22:26:51 +02002391 spin_lock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002392 list_del(&tt_req_node->list);
Sven Eckelmann807736f2012-07-15 22:26:51 +02002393 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002394 kfree(tt_req_node);
2395 }
Marek Lindner335fbe02013-04-23 21:40:02 +08002396 kfree(tvlv_tt_data);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002397 return ret;
2398}
2399
Marek Lindner335fbe02013-04-23 21:40:02 +08002400/**
2401 * batadv_send_other_tt_response - send reply to tt request concerning another
2402 * node's translation table
2403 * @bat_priv: the bat priv with all the soft interface information
2404 * @tt_data: tt data containing the tt request information
2405 * @req_src: mac address of tt request sender
2406 * @req_dst: mac address of tt request recipient
2407 *
2408 * Returns true if tt request reply was sent, false otherwise.
2409 */
2410static bool batadv_send_other_tt_response(struct batadv_priv *bat_priv,
2411 struct batadv_tvlv_tt_data *tt_data,
2412 uint8_t *req_src, uint8_t *req_dst)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002413{
Sven Eckelmann170173b2012-10-07 12:02:22 +02002414 struct batadv_orig_node *req_dst_orig_node;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002415 struct batadv_orig_node *res_dst_orig_node = NULL;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002416 struct batadv_tvlv_tt_change *tt_change;
Marek Lindner335fbe02013-04-23 21:40:02 +08002417 struct batadv_tvlv_tt_data *tvlv_tt_data = NULL;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002418 struct batadv_tvlv_tt_vlan_data *tt_vlan;
Marek Lindner335fbe02013-04-23 21:40:02 +08002419 bool ret = false, full_table;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002420 uint8_t orig_ttvn, req_ttvn;
2421 uint16_t tvlv_len;
2422 int32_t tt_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002423
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002424 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002425 "Received TT_REQUEST from %pM for ttvn: %u (%pM) [%c]\n",
Marek Lindner335fbe02013-04-23 21:40:02 +08002426 req_src, tt_data->ttvn, req_dst,
2427 (tt_data->flags & BATADV_TT_FULL_TABLE ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002428
2429 /* Let's get the orig node of the REAL destination */
Marek Lindner335fbe02013-04-23 21:40:02 +08002430 req_dst_orig_node = batadv_orig_hash_find(bat_priv, req_dst);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002431 if (!req_dst_orig_node)
2432 goto out;
2433
Marek Lindner335fbe02013-04-23 21:40:02 +08002434 res_dst_orig_node = batadv_orig_hash_find(bat_priv, req_src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002435 if (!res_dst_orig_node)
2436 goto out;
2437
Antonio Quartullia73105b2011-04-27 14:27:44 +02002438 orig_ttvn = (uint8_t)atomic_read(&req_dst_orig_node->last_ttvn);
Marek Lindner335fbe02013-04-23 21:40:02 +08002439 req_ttvn = tt_data->ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002440
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002441 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(tt_data + 1);
Marek Lindner335fbe02013-04-23 21:40:02 +08002442 /* this node doesn't have the requested data */
Antonio Quartullia73105b2011-04-27 14:27:44 +02002443 if (orig_ttvn != req_ttvn ||
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002444 !batadv_tt_global_check_crc(req_dst_orig_node, tt_vlan,
2445 ntohs(tt_data->num_vlan)))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002446 goto out;
2447
Antonio Quartulli015758d2011-07-09 17:52:13 +02002448 /* If the full table has been explicitly requested */
Marek Lindner335fbe02013-04-23 21:40:02 +08002449 if (tt_data->flags & BATADV_TT_FULL_TABLE ||
Antonio Quartullia73105b2011-04-27 14:27:44 +02002450 !req_dst_orig_node->tt_buff)
2451 full_table = true;
2452 else
2453 full_table = false;
2454
Marek Lindner335fbe02013-04-23 21:40:02 +08002455 /* TT fragmentation hasn't been implemented yet, so send as many
2456 * TT entries fit a single packet as possible only
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002457 */
Antonio Quartullia73105b2011-04-27 14:27:44 +02002458 if (!full_table) {
2459 spin_lock_bh(&req_dst_orig_node->tt_buff_lock);
2460 tt_len = req_dst_orig_node->tt_buff_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002461
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002462 tvlv_len = batadv_tt_prepare_tvlv_global_data(req_dst_orig_node,
2463 &tvlv_tt_data,
2464 &tt_change,
2465 &tt_len);
2466 if (!tt_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002467 goto unlock;
2468
Antonio Quartullia73105b2011-04-27 14:27:44 +02002469 /* Copy the last orig_node's OGM buffer */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002470 memcpy(tt_change, req_dst_orig_node->tt_buff,
Antonio Quartullia73105b2011-04-27 14:27:44 +02002471 req_dst_orig_node->tt_buff_len);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002472 spin_unlock_bh(&req_dst_orig_node->tt_buff_lock);
2473 } else {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002474 /* allocate the tvlv, put the tt_data and all the tt_vlan_data
2475 * in the initial part
2476 */
2477 tt_len = -1;
2478 tvlv_len = batadv_tt_prepare_tvlv_global_data(req_dst_orig_node,
2479 &tvlv_tt_data,
2480 &tt_change,
2481 &tt_len);
2482 if (!tt_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002483 goto out;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002484
2485 /* fill the rest of the tvlv with the real TT entries */
2486 batadv_tt_tvlv_generate(bat_priv, bat_priv->tt.global_hash,
2487 tt_change, tt_len,
2488 batadv_tt_global_valid,
2489 req_dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002490 }
2491
Marek Lindnera19d3d82013-05-27 15:33:25 +08002492 /* Don't send the response, if larger than fragmented packet. */
2493 tt_len = sizeof(struct batadv_unicast_tvlv_packet) + tvlv_len;
2494 if (tt_len > atomic_read(&bat_priv->packet_size_max)) {
2495 net_ratelimited_function(batadv_info, bat_priv->soft_iface,
2496 "Ignoring TT_REQUEST from %pM; Response size exceeds max packet size.\n",
2497 res_dst_orig_node->orig);
2498 goto out;
2499 }
2500
Marek Lindner335fbe02013-04-23 21:40:02 +08002501 tvlv_tt_data->flags = BATADV_TT_RESPONSE;
2502 tvlv_tt_data->ttvn = req_ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002503
2504 if (full_table)
Marek Lindner335fbe02013-04-23 21:40:02 +08002505 tvlv_tt_data->flags |= BATADV_TT_FULL_TABLE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002506
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002507 batadv_dbg(BATADV_DBG_TT, bat_priv,
Marek Lindner335fbe02013-04-23 21:40:02 +08002508 "Sending TT_RESPONSE %pM for %pM [%c] (ttvn: %u)\n",
2509 res_dst_orig_node->orig, req_dst_orig_node->orig,
2510 full_table ? 'F' : '.', req_ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002511
Sven Eckelmannd69909d2012-06-03 22:19:20 +02002512 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02002513
Marek Lindner335fbe02013-04-23 21:40:02 +08002514 batadv_tvlv_unicast_send(bat_priv, req_dst_orig_node->orig,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002515 req_src, BATADV_TVLV_TT, 1, tvlv_tt_data,
2516 tvlv_len);
Martin Hundebølle91ecfc2013-04-20 13:54:39 +02002517
Marek Lindner335fbe02013-04-23 21:40:02 +08002518 ret = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002519 goto out;
2520
2521unlock:
2522 spin_unlock_bh(&req_dst_orig_node->tt_buff_lock);
2523
2524out:
2525 if (res_dst_orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002526 batadv_orig_node_free_ref(res_dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002527 if (req_dst_orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002528 batadv_orig_node_free_ref(req_dst_orig_node);
Marek Lindner335fbe02013-04-23 21:40:02 +08002529 kfree(tvlv_tt_data);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002530 return ret;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002531}
Sven Eckelmann96412692012-06-05 22:31:30 +02002532
Marek Lindner335fbe02013-04-23 21:40:02 +08002533/**
2534 * batadv_send_my_tt_response - send reply to tt request concerning this node's
2535 * translation table
2536 * @bat_priv: the bat priv with all the soft interface information
2537 * @tt_data: tt data containing the tt request information
2538 * @req_src: mac address of tt request sender
2539 *
2540 * Returns true if tt request reply was sent, false otherwise.
2541 */
2542static bool batadv_send_my_tt_response(struct batadv_priv *bat_priv,
2543 struct batadv_tvlv_tt_data *tt_data,
2544 uint8_t *req_src)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002545{
Marek Lindner335fbe02013-04-23 21:40:02 +08002546 struct batadv_tvlv_tt_data *tvlv_tt_data = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002547 struct batadv_hard_iface *primary_if = NULL;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002548 struct batadv_tvlv_tt_change *tt_change;
2549 struct batadv_orig_node *orig_node;
Marek Lindner335fbe02013-04-23 21:40:02 +08002550 uint8_t my_ttvn, req_ttvn;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002551 uint16_t tvlv_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002552 bool full_table;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002553 int32_t tt_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002554
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002555 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002556 "Received TT_REQUEST from %pM for ttvn: %u (me) [%c]\n",
Marek Lindner335fbe02013-04-23 21:40:02 +08002557 req_src, tt_data->ttvn,
2558 (tt_data->flags & BATADV_TT_FULL_TABLE ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002559
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02002560 spin_lock_bh(&bat_priv->tt.commit_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002561
Sven Eckelmann807736f2012-07-15 22:26:51 +02002562 my_ttvn = (uint8_t)atomic_read(&bat_priv->tt.vn);
Marek Lindner335fbe02013-04-23 21:40:02 +08002563 req_ttvn = tt_data->ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002564
Marek Lindner335fbe02013-04-23 21:40:02 +08002565 orig_node = batadv_orig_hash_find(bat_priv, req_src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002566 if (!orig_node)
2567 goto out;
2568
Sven Eckelmanne5d89252012-05-12 13:48:54 +02002569 primary_if = batadv_primary_if_get_selected(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002570 if (!primary_if)
2571 goto out;
2572
2573 /* If the full table has been explicitly requested or the gap
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002574 * is too big send the whole local translation table
2575 */
Marek Lindner335fbe02013-04-23 21:40:02 +08002576 if (tt_data->flags & BATADV_TT_FULL_TABLE || my_ttvn != req_ttvn ||
Sven Eckelmann807736f2012-07-15 22:26:51 +02002577 !bat_priv->tt.last_changeset)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002578 full_table = true;
2579 else
2580 full_table = false;
2581
Marek Lindner335fbe02013-04-23 21:40:02 +08002582 /* TT fragmentation hasn't been implemented yet, so send as many
2583 * TT entries fit a single packet as possible only
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002584 */
Antonio Quartullia73105b2011-04-27 14:27:44 +02002585 if (!full_table) {
Sven Eckelmann807736f2012-07-15 22:26:51 +02002586 spin_lock_bh(&bat_priv->tt.last_changeset_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002587
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002588 tt_len = bat_priv->tt.last_changeset_len;
2589 tvlv_len = batadv_tt_prepare_tvlv_local_data(bat_priv,
2590 &tvlv_tt_data,
2591 &tt_change,
2592 &tt_len);
2593 if (!tt_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002594 goto unlock;
2595
Marek Lindner335fbe02013-04-23 21:40:02 +08002596 /* Copy the last orig_node's OGM buffer */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002597 memcpy(tt_change, bat_priv->tt.last_changeset,
Sven Eckelmann807736f2012-07-15 22:26:51 +02002598 bat_priv->tt.last_changeset_len);
2599 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002600 } else {
Marek Lindner335fbe02013-04-23 21:40:02 +08002601 req_ttvn = (uint8_t)atomic_read(&bat_priv->tt.vn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002602
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002603 /* allocate the tvlv, put the tt_data and all the tt_vlan_data
2604 * in the initial part
2605 */
2606 tt_len = -1;
2607 tvlv_len = batadv_tt_prepare_tvlv_local_data(bat_priv,
2608 &tvlv_tt_data,
2609 &tt_change,
2610 &tt_len);
2611 if (!tt_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002612 goto out;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002613
2614 /* fill the rest of the tvlv with the real TT entries */
2615 batadv_tt_tvlv_generate(bat_priv, bat_priv->tt.local_hash,
2616 tt_change, tt_len,
2617 batadv_tt_local_valid, NULL);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002618 }
2619
Marek Lindner335fbe02013-04-23 21:40:02 +08002620 tvlv_tt_data->flags = BATADV_TT_RESPONSE;
2621 tvlv_tt_data->ttvn = req_ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002622
2623 if (full_table)
Marek Lindner335fbe02013-04-23 21:40:02 +08002624 tvlv_tt_data->flags |= BATADV_TT_FULL_TABLE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002625
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002626 batadv_dbg(BATADV_DBG_TT, bat_priv,
Marek Lindner335fbe02013-04-23 21:40:02 +08002627 "Sending TT_RESPONSE to %pM [%c] (ttvn: %u)\n",
2628 orig_node->orig, full_table ? 'F' : '.', req_ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002629
Sven Eckelmannd69909d2012-06-03 22:19:20 +02002630 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02002631
Marek Lindner335fbe02013-04-23 21:40:02 +08002632 batadv_tvlv_unicast_send(bat_priv, primary_if->net_dev->dev_addr,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002633 req_src, BATADV_TVLV_TT, 1, tvlv_tt_data,
2634 tvlv_len);
Marek Lindner335fbe02013-04-23 21:40:02 +08002635
Antonio Quartullia73105b2011-04-27 14:27:44 +02002636 goto out;
2637
2638unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +02002639 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002640out:
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02002641 spin_unlock_bh(&bat_priv->tt.commit_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002642 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002643 batadv_orig_node_free_ref(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002644 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02002645 batadv_hardif_free_ref(primary_if);
Marek Lindner335fbe02013-04-23 21:40:02 +08002646 kfree(tvlv_tt_data);
2647 /* The packet was for this host, so it doesn't need to be re-routed */
Antonio Quartullia73105b2011-04-27 14:27:44 +02002648 return true;
2649}
2650
Marek Lindner335fbe02013-04-23 21:40:02 +08002651/**
2652 * batadv_send_tt_response - send reply to tt request
2653 * @bat_priv: the bat priv with all the soft interface information
2654 * @tt_data: tt data containing the tt request information
2655 * @req_src: mac address of tt request sender
2656 * @req_dst: mac address of tt request recipient
2657 *
2658 * Returns true if tt request reply was sent, false otherwise.
2659 */
2660static bool batadv_send_tt_response(struct batadv_priv *bat_priv,
2661 struct batadv_tvlv_tt_data *tt_data,
2662 uint8_t *req_src, uint8_t *req_dst)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002663{
Antonio Quartullicfd4f752013-08-07 18:28:56 +02002664 if (batadv_is_my_mac(bat_priv, req_dst))
Marek Lindner335fbe02013-04-23 21:40:02 +08002665 return batadv_send_my_tt_response(bat_priv, tt_data, req_src);
Antonio Quartullicfd4f752013-08-07 18:28:56 +02002666 else
Marek Lindner335fbe02013-04-23 21:40:02 +08002667 return batadv_send_other_tt_response(bat_priv, tt_data,
2668 req_src, req_dst);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002669}
2670
Sven Eckelmann56303d32012-06-05 22:31:31 +02002671static void _batadv_tt_update_changes(struct batadv_priv *bat_priv,
2672 struct batadv_orig_node *orig_node,
Marek Lindner335fbe02013-04-23 21:40:02 +08002673 struct batadv_tvlv_tt_change *tt_change,
Sven Eckelmanna5130882012-05-16 20:23:16 +02002674 uint16_t tt_num_changes, uint8_t ttvn)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002675{
2676 int i;
Sven Eckelmanna5130882012-05-16 20:23:16 +02002677 int roams;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002678
2679 for (i = 0; i < tt_num_changes; i++) {
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002680 if ((tt_change + i)->flags & BATADV_TT_CLIENT_DEL) {
2681 roams = (tt_change + i)->flags & BATADV_TT_CLIENT_ROAM;
Sven Eckelmanna5130882012-05-16 20:23:16 +02002682 batadv_tt_global_del(bat_priv, orig_node,
2683 (tt_change + i)->addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +02002684 ntohs((tt_change + i)->vid),
Antonio Quartullid4f44692012-05-25 00:00:54 +02002685 "tt removed by changes",
2686 roams);
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002687 } else {
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002688 if (!batadv_tt_global_add(bat_priv, orig_node,
Antonio Quartullid4f44692012-05-25 00:00:54 +02002689 (tt_change + i)->addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +02002690 ntohs((tt_change + i)->vid),
Antonio Quartullid4f44692012-05-25 00:00:54 +02002691 (tt_change + i)->flags, ttvn))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002692 /* In case of problem while storing a
2693 * global_entry, we stop the updating
2694 * procedure without committing the
2695 * ttvn change. This will avoid to send
2696 * corrupted data on tt_request
2697 */
2698 return;
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002699 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02002700 }
Antonio Quartulli17071572011-11-07 16:36:40 +01002701 orig_node->tt_initialised = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002702}
2703
Sven Eckelmann56303d32012-06-05 22:31:31 +02002704static void batadv_tt_fill_gtable(struct batadv_priv *bat_priv,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002705 struct batadv_tvlv_tt_change *tt_change,
2706 uint8_t ttvn, uint8_t *resp_src,
2707 uint16_t num_entries)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002708{
Sven Eckelmann170173b2012-10-07 12:02:22 +02002709 struct batadv_orig_node *orig_node;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002710
Marek Lindner335fbe02013-04-23 21:40:02 +08002711 orig_node = batadv_orig_hash_find(bat_priv, resp_src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002712 if (!orig_node)
2713 goto out;
2714
2715 /* Purge the old table first.. */
Antonio Quartulli95fb1302013-08-07 18:28:55 +02002716 batadv_tt_global_del_orig(bat_priv, orig_node, -1,
2717 "Received full table");
Antonio Quartullia73105b2011-04-27 14:27:44 +02002718
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002719 _batadv_tt_update_changes(bat_priv, orig_node, tt_change, num_entries,
2720 ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002721
2722 spin_lock_bh(&orig_node->tt_buff_lock);
2723 kfree(orig_node->tt_buff);
2724 orig_node->tt_buff_len = 0;
2725 orig_node->tt_buff = NULL;
2726 spin_unlock_bh(&orig_node->tt_buff_lock);
2727
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002728 atomic_set(&orig_node->last_ttvn, ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002729
2730out:
2731 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002732 batadv_orig_node_free_ref(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002733}
2734
Sven Eckelmann56303d32012-06-05 22:31:31 +02002735static void batadv_tt_update_changes(struct batadv_priv *bat_priv,
2736 struct batadv_orig_node *orig_node,
Sven Eckelmanna5130882012-05-16 20:23:16 +02002737 uint16_t tt_num_changes, uint8_t ttvn,
Marek Lindner335fbe02013-04-23 21:40:02 +08002738 struct batadv_tvlv_tt_change *tt_change)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002739{
Sven Eckelmanna5130882012-05-16 20:23:16 +02002740 _batadv_tt_update_changes(bat_priv, orig_node, tt_change,
2741 tt_num_changes, ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002742
Antonio Quartullie8cf2342013-05-28 13:14:28 +02002743 batadv_tt_save_orig_buffer(bat_priv, orig_node, tt_change,
2744 batadv_tt_len(tt_num_changes));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002745 atomic_set(&orig_node->last_ttvn, ttvn);
2746}
2747
Antonio Quartullic018ad32013-06-04 12:11:39 +02002748/**
2749 * batadv_is_my_client - check if a client is served by the local node
2750 * @bat_priv: the bat priv with all the soft interface information
2751 * @addr: the mac adress of the client to check
2752 * @vid: VLAN identifier
2753 *
2754 * Returns true if the client is served by this node, false otherwise.
2755 */
2756bool batadv_is_my_client(struct batadv_priv *bat_priv, const uint8_t *addr,
2757 unsigned short vid)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002758{
Sven Eckelmann170173b2012-10-07 12:02:22 +02002759 struct batadv_tt_local_entry *tt_local_entry;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002760 bool ret = false;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002761
Antonio Quartullic018ad32013-06-04 12:11:39 +02002762 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr, vid);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002763 if (!tt_local_entry)
2764 goto out;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002765 /* Check if the client has been logically deleted (but is kept for
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002766 * consistency purpose)
2767 */
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02002768 if ((tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING) ||
2769 (tt_local_entry->common.flags & BATADV_TT_CLIENT_ROAM))
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002770 goto out;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002771 ret = true;
2772out:
Antonio Quartullia73105b2011-04-27 14:27:44 +02002773 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02002774 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002775 return ret;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002776}
2777
Marek Lindner335fbe02013-04-23 21:40:02 +08002778/**
2779 * batadv_handle_tt_response - process incoming tt reply
2780 * @bat_priv: the bat priv with all the soft interface information
2781 * @tt_data: tt data containing the tt request information
2782 * @resp_src: mac address of tt reply sender
2783 * @num_entries: number of tt change entries appended to the tt data
2784 */
2785static void batadv_handle_tt_response(struct batadv_priv *bat_priv,
2786 struct batadv_tvlv_tt_data *tt_data,
2787 uint8_t *resp_src, uint16_t num_entries)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002788{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002789 struct batadv_tt_req_node *node, *safe;
2790 struct batadv_orig_node *orig_node = NULL;
Marek Lindner335fbe02013-04-23 21:40:02 +08002791 struct batadv_tvlv_tt_change *tt_change;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002792 uint8_t *tvlv_ptr = (uint8_t *)tt_data;
2793 uint16_t change_offset;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002794
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002795 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002796 "Received TT_RESPONSE from %pM for ttvn %d t_size: %d [%c]\n",
Marek Lindner335fbe02013-04-23 21:40:02 +08002797 resp_src, tt_data->ttvn, num_entries,
2798 (tt_data->flags & BATADV_TT_FULL_TABLE ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002799
Marek Lindner335fbe02013-04-23 21:40:02 +08002800 orig_node = batadv_orig_hash_find(bat_priv, resp_src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002801 if (!orig_node)
2802 goto out;
2803
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02002804 spin_lock_bh(&orig_node->tt_lock);
2805
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002806 change_offset = sizeof(struct batadv_tvlv_tt_vlan_data);
2807 change_offset *= ntohs(tt_data->num_vlan);
2808 change_offset += sizeof(*tt_data);
2809 tvlv_ptr += change_offset;
2810
2811 tt_change = (struct batadv_tvlv_tt_change *)tvlv_ptr;
Marek Lindner335fbe02013-04-23 21:40:02 +08002812 if (tt_data->flags & BATADV_TT_FULL_TABLE) {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002813 batadv_tt_fill_gtable(bat_priv, tt_change, tt_data->ttvn,
2814 resp_src, num_entries);
Sven Eckelmann96412692012-06-05 22:31:30 +02002815 } else {
Marek Lindner335fbe02013-04-23 21:40:02 +08002816 batadv_tt_update_changes(bat_priv, orig_node, num_entries,
2817 tt_data->ttvn, tt_change);
Sven Eckelmann96412692012-06-05 22:31:30 +02002818 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02002819
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02002820 /* Recalculate the CRC for this orig_node and store it */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002821 batadv_tt_global_update_crc(bat_priv, orig_node);
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02002822
2823 spin_unlock_bh(&orig_node->tt_lock);
2824
Antonio Quartullia73105b2011-04-27 14:27:44 +02002825 /* Delete the tt_req_node from pending tt_requests list */
Sven Eckelmann807736f2012-07-15 22:26:51 +02002826 spin_lock_bh(&bat_priv->tt.req_list_lock);
2827 list_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
Marek Lindner335fbe02013-04-23 21:40:02 +08002828 if (!batadv_compare_eth(node->addr, resp_src))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002829 continue;
2830 list_del(&node->list);
2831 kfree(node);
2832 }
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002833
Sven Eckelmann807736f2012-07-15 22:26:51 +02002834 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002835out:
2836 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002837 batadv_orig_node_free_ref(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002838}
2839
Sven Eckelmann56303d32012-06-05 22:31:31 +02002840static void batadv_tt_roam_list_free(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002841{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002842 struct batadv_tt_roam_node *node, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002843
Sven Eckelmann807736f2012-07-15 22:26:51 +02002844 spin_lock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002845
Sven Eckelmann807736f2012-07-15 22:26:51 +02002846 list_for_each_entry_safe(node, safe, &bat_priv->tt.roam_list, list) {
Antonio Quartullicc47f662011-04-27 14:27:57 +02002847 list_del(&node->list);
2848 kfree(node);
2849 }
2850
Sven Eckelmann807736f2012-07-15 22:26:51 +02002851 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002852}
2853
Sven Eckelmann56303d32012-06-05 22:31:31 +02002854static void batadv_tt_roam_purge(struct batadv_priv *bat_priv)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002855{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002856 struct batadv_tt_roam_node *node, *safe;
Antonio Quartullicc47f662011-04-27 14:27:57 +02002857
Sven Eckelmann807736f2012-07-15 22:26:51 +02002858 spin_lock_bh(&bat_priv->tt.roam_list_lock);
2859 list_for_each_entry_safe(node, safe, &bat_priv->tt.roam_list, list) {
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002860 if (!batadv_has_timed_out(node->first_time,
2861 BATADV_ROAMING_MAX_TIME))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002862 continue;
2863
2864 list_del(&node->list);
2865 kfree(node);
2866 }
Sven Eckelmann807736f2012-07-15 22:26:51 +02002867 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002868}
2869
2870/* This function checks whether the client already reached the
2871 * maximum number of possible roaming phases. In this case the ROAMING_ADV
2872 * will not be sent.
2873 *
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002874 * returns true if the ROAMING_ADV can be sent, false otherwise
2875 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002876static bool batadv_tt_check_roam_count(struct batadv_priv *bat_priv,
Sven Eckelmanna5130882012-05-16 20:23:16 +02002877 uint8_t *client)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002878{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002879 struct batadv_tt_roam_node *tt_roam_node;
Antonio Quartullicc47f662011-04-27 14:27:57 +02002880 bool ret = false;
2881
Sven Eckelmann807736f2012-07-15 22:26:51 +02002882 spin_lock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002883 /* The new tt_req will be issued only if I'm not waiting for a
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002884 * reply from the same orig_node yet
2885 */
Sven Eckelmann807736f2012-07-15 22:26:51 +02002886 list_for_each_entry(tt_roam_node, &bat_priv->tt.roam_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002887 if (!batadv_compare_eth(tt_roam_node->addr, client))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002888 continue;
2889
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002890 if (batadv_has_timed_out(tt_roam_node->first_time,
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002891 BATADV_ROAMING_MAX_TIME))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002892 continue;
2893
Sven Eckelmann3e348192012-05-16 20:23:22 +02002894 if (!batadv_atomic_dec_not_zero(&tt_roam_node->counter))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002895 /* Sorry, you roamed too many times! */
2896 goto unlock;
2897 ret = true;
2898 break;
2899 }
2900
2901 if (!ret) {
2902 tt_roam_node = kmalloc(sizeof(*tt_roam_node), GFP_ATOMIC);
2903 if (!tt_roam_node)
2904 goto unlock;
2905
2906 tt_roam_node->first_time = jiffies;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002907 atomic_set(&tt_roam_node->counter,
2908 BATADV_ROAMING_MAX_COUNT - 1);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002909 memcpy(tt_roam_node->addr, client, ETH_ALEN);
2910
Sven Eckelmann807736f2012-07-15 22:26:51 +02002911 list_add(&tt_roam_node->list, &bat_priv->tt.roam_list);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002912 ret = true;
2913 }
2914
2915unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +02002916 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002917 return ret;
2918}
2919
Antonio Quartullic018ad32013-06-04 12:11:39 +02002920/**
2921 * batadv_send_roam_adv - send a roaming advertisement message
2922 * @bat_priv: the bat priv with all the soft interface information
2923 * @client: mac address of the roaming client
2924 * @vid: VLAN identifier
2925 * @orig_node: message destination
2926 *
2927 * Send a ROAMING_ADV message to the node which was previously serving this
2928 * client. This is done to inform the node that from now on all traffic destined
2929 * for this particular roamed client has to be forwarded to the sender of the
2930 * roaming message.
2931 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002932static void batadv_send_roam_adv(struct batadv_priv *bat_priv, uint8_t *client,
Antonio Quartullic018ad32013-06-04 12:11:39 +02002933 unsigned short vid,
Sven Eckelmann56303d32012-06-05 22:31:31 +02002934 struct batadv_orig_node *orig_node)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002935{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002936 struct batadv_hard_iface *primary_if;
Marek Lindner122edaa2013-04-23 21:40:03 +08002937 struct batadv_tvlv_roam_adv tvlv_roam;
2938
2939 primary_if = batadv_primary_if_get_selected(bat_priv);
2940 if (!primary_if)
2941 goto out;
Antonio Quartullicc47f662011-04-27 14:27:57 +02002942
2943 /* before going on we have to check whether the client has
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002944 * already roamed to us too many times
2945 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002946 if (!batadv_tt_check_roam_count(bat_priv, client))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002947 goto out;
2948
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002949 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02002950 "Sending ROAMING_ADV to %pM (client %pM, vid: %d)\n",
2951 orig_node->orig, client, BATADV_PRINT_VID(vid));
Antonio Quartullicc47f662011-04-27 14:27:57 +02002952
Sven Eckelmannd69909d2012-06-03 22:19:20 +02002953 batadv_inc_counter(bat_priv, BATADV_CNT_TT_ROAM_ADV_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02002954
Marek Lindner122edaa2013-04-23 21:40:03 +08002955 memcpy(tvlv_roam.client, client, sizeof(tvlv_roam.client));
Antonio Quartullic018ad32013-06-04 12:11:39 +02002956 tvlv_roam.vid = htons(vid);
Marek Lindner122edaa2013-04-23 21:40:03 +08002957
2958 batadv_tvlv_unicast_send(bat_priv, primary_if->net_dev->dev_addr,
2959 orig_node->orig, BATADV_TVLV_ROAM, 1,
2960 &tvlv_roam, sizeof(tvlv_roam));
Antonio Quartullicc47f662011-04-27 14:27:57 +02002961
2962out:
Marek Lindner122edaa2013-04-23 21:40:03 +08002963 if (primary_if)
2964 batadv_hardif_free_ref(primary_if);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002965}
2966
Sven Eckelmanna5130882012-05-16 20:23:16 +02002967static void batadv_tt_purge(struct work_struct *work)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002968{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002969 struct delayed_work *delayed_work;
Sven Eckelmann807736f2012-07-15 22:26:51 +02002970 struct batadv_priv_tt *priv_tt;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002971 struct batadv_priv *bat_priv;
2972
2973 delayed_work = container_of(work, struct delayed_work, work);
Sven Eckelmann807736f2012-07-15 22:26:51 +02002974 priv_tt = container_of(delayed_work, struct batadv_priv_tt, work);
2975 bat_priv = container_of(priv_tt, struct batadv_priv, tt);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002976
Marek Lindnera19d3d82013-05-27 15:33:25 +08002977 batadv_tt_local_purge(bat_priv, BATADV_TT_LOCAL_TIMEOUT);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002978 batadv_tt_global_purge(bat_priv);
Sven Eckelmanna5130882012-05-16 20:23:16 +02002979 batadv_tt_req_purge(bat_priv);
2980 batadv_tt_roam_purge(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002981
Antonio Quartulli72414442012-12-25 13:14:37 +01002982 queue_delayed_work(batadv_event_workqueue, &bat_priv->tt.work,
2983 msecs_to_jiffies(BATADV_TT_WORK_PERIOD));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002984}
Antonio Quartullicc47f662011-04-27 14:27:57 +02002985
Sven Eckelmann56303d32012-06-05 22:31:31 +02002986void batadv_tt_free(struct batadv_priv *bat_priv)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002987{
Marek Lindnere1bf0c12013-04-23 21:40:01 +08002988 batadv_tvlv_container_unregister(bat_priv, BATADV_TVLV_TT, 1);
2989 batadv_tvlv_handler_unregister(bat_priv, BATADV_TVLV_TT, 1);
2990
Sven Eckelmann807736f2012-07-15 22:26:51 +02002991 cancel_delayed_work_sync(&bat_priv->tt.work);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002992
Sven Eckelmanna5130882012-05-16 20:23:16 +02002993 batadv_tt_local_table_free(bat_priv);
2994 batadv_tt_global_table_free(bat_priv);
2995 batadv_tt_req_list_free(bat_priv);
2996 batadv_tt_changes_list_free(bat_priv);
2997 batadv_tt_roam_list_free(bat_priv);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002998
Sven Eckelmann807736f2012-07-15 22:26:51 +02002999 kfree(bat_priv->tt.last_changeset);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003000}
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003001
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003002/**
3003 * batadv_tt_local_set_flags - set or unset the specified flags on the local
3004 * table and possibly count them in the TT size
3005 * @bat_priv: the bat priv with all the soft interface information
3006 * @flags: the flag to switch
3007 * @enable: whether to set or unset the flag
3008 * @count: whether to increase the TT size by the number of changed entries
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003009 */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003010static void batadv_tt_local_set_flags(struct batadv_priv *bat_priv,
3011 uint16_t flags, bool enable, bool count)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003012{
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003013 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
3014 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartulli697f2532011-11-07 16:47:01 +01003015 uint16_t changed_num = 0;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003016 struct hlist_head *head;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003017 uint32_t i;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003018
3019 if (!hash)
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003020 return;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003021
3022 for (i = 0; i < hash->size; i++) {
3023 head = &hash->table[i];
3024
3025 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003026 hlist_for_each_entry_rcu(tt_common_entry,
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003027 head, hash_entry) {
Antonio Quartulli697f2532011-11-07 16:47:01 +01003028 if (enable) {
3029 if ((tt_common_entry->flags & flags) == flags)
3030 continue;
3031 tt_common_entry->flags |= flags;
3032 } else {
3033 if (!(tt_common_entry->flags & flags))
3034 continue;
3035 tt_common_entry->flags &= ~flags;
3036 }
3037 changed_num++;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003038
3039 if (!count)
3040 continue;
3041
3042 batadv_tt_local_size_inc(bat_priv,
3043 tt_common_entry->vid);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003044 }
3045 rcu_read_unlock();
3046 }
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003047}
3048
Sven Eckelmannacd34af2012-06-03 22:19:21 +02003049/* Purge out all the tt local entries marked with BATADV_TT_CLIENT_PENDING */
Sven Eckelmann56303d32012-06-05 22:31:31 +02003050static void batadv_tt_local_purge_pending_clients(struct batadv_priv *bat_priv)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003051{
Sven Eckelmann807736f2012-07-15 22:26:51 +02003052 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02003053 struct batadv_tt_common_entry *tt_common;
3054 struct batadv_tt_local_entry *tt_local;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003055 struct hlist_node *node_tmp;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003056 struct hlist_head *head;
3057 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullic90681b2011-10-05 17:05:25 +02003058 uint32_t i;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003059
3060 if (!hash)
3061 return;
3062
3063 for (i = 0; i < hash->size; i++) {
3064 head = &hash->table[i];
3065 list_lock = &hash->list_locks[i];
3066
3067 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08003068 hlist_for_each_entry_safe(tt_common, node_tmp, head,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02003069 hash_entry) {
3070 if (!(tt_common->flags & BATADV_TT_CLIENT_PENDING))
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003071 continue;
3072
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003073 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02003074 "Deleting local tt entry (%pM, vid: %d): pending\n",
3075 tt_common->addr,
3076 BATADV_PRINT_VID(tt_common->vid));
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003077
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003078 batadv_tt_local_size_dec(bat_priv, tt_common->vid);
Sasha Levinb67bfe02013-02-27 17:06:00 -08003079 hlist_del_rcu(&tt_common->hash_entry);
Sven Eckelmann56303d32012-06-05 22:31:31 +02003080 tt_local = container_of(tt_common,
3081 struct batadv_tt_local_entry,
3082 common);
3083 batadv_tt_local_entry_free_ref(tt_local);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003084 }
3085 spin_unlock_bh(list_lock);
3086 }
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003087}
3088
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003089/**
Marek Lindnera19d3d82013-05-27 15:33:25 +08003090 * batadv_tt_local_commit_changes_nolock - commit all pending local tt changes
3091 * which have been queued in the time since the last commit
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003092 * @bat_priv: the bat priv with all the soft interface information
Marek Lindnera19d3d82013-05-27 15:33:25 +08003093 *
3094 * Caller must hold tt->commit_lock.
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003095 */
Marek Lindnera19d3d82013-05-27 15:33:25 +08003096static void batadv_tt_local_commit_changes_nolock(struct batadv_priv *bat_priv)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003097{
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003098 if (atomic_read(&bat_priv->tt.local_changes) < 1) {
3099 if (!batadv_atomic_dec_not_zero(&bat_priv->tt.ogm_append_cnt))
3100 batadv_tt_tvlv_container_update(bat_priv);
Marek Lindnera19d3d82013-05-27 15:33:25 +08003101 return;
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003102 }
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08003103
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003104 batadv_tt_local_set_flags(bat_priv, BATADV_TT_CLIENT_NEW, false, true);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08003105
Sven Eckelmanna5130882012-05-16 20:23:16 +02003106 batadv_tt_local_purge_pending_clients(bat_priv);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003107 batadv_tt_local_update_crc(bat_priv);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003108
3109 /* Increment the TTVN only once per OGM interval */
Sven Eckelmann807736f2012-07-15 22:26:51 +02003110 atomic_inc(&bat_priv->tt.vn);
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003111 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02003112 "Local changes committed, updating to ttvn %u\n",
Sven Eckelmann807736f2012-07-15 22:26:51 +02003113 (uint8_t)atomic_read(&bat_priv->tt.vn));
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08003114
3115 /* reset the sending counter */
Sven Eckelmann807736f2012-07-15 22:26:51 +02003116 atomic_set(&bat_priv->tt.ogm_append_cnt, BATADV_TT_OGM_APPEND_MAX);
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003117 batadv_tt_tvlv_container_update(bat_priv);
Marek Lindnera19d3d82013-05-27 15:33:25 +08003118}
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003119
Marek Lindnera19d3d82013-05-27 15:33:25 +08003120/**
3121 * batadv_tt_local_commit_changes - commit all pending local tt changes which
3122 * have been queued in the time since the last commit
3123 * @bat_priv: the bat priv with all the soft interface information
3124 */
3125void batadv_tt_local_commit_changes(struct batadv_priv *bat_priv)
3126{
3127 spin_lock_bh(&bat_priv->tt.commit_lock);
3128 batadv_tt_local_commit_changes_nolock(bat_priv);
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003129 spin_unlock_bh(&bat_priv->tt.commit_lock);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003130}
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003131
Sven Eckelmann56303d32012-06-05 22:31:31 +02003132bool batadv_is_ap_isolated(struct batadv_priv *bat_priv, uint8_t *src,
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003133 uint8_t *dst, unsigned short vid)
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003134{
Sven Eckelmann56303d32012-06-05 22:31:31 +02003135 struct batadv_tt_local_entry *tt_local_entry = NULL;
3136 struct batadv_tt_global_entry *tt_global_entry = NULL;
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003137 struct batadv_softif_vlan *vlan;
Marek Lindner5870adc2012-06-20 17:16:05 +02003138 bool ret = false;
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003139
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003140 vlan = batadv_softif_vlan_get(bat_priv, vid);
3141 if (!vlan || !atomic_read(&vlan->ap_isolation))
Marek Lindner5870adc2012-06-20 17:16:05 +02003142 goto out;
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003143
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003144 tt_local_entry = batadv_tt_local_hash_find(bat_priv, dst, vid);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003145 if (!tt_local_entry)
3146 goto out;
3147
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003148 tt_global_entry = batadv_tt_global_hash_find(bat_priv, src, vid);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003149 if (!tt_global_entry)
3150 goto out;
3151
Antonio Quartulli1f129fe2012-06-25 20:49:50 +00003152 if (!_batadv_is_ap_isolated(tt_local_entry, tt_global_entry))
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003153 goto out;
3154
Marek Lindner5870adc2012-06-20 17:16:05 +02003155 ret = true;
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003156
3157out:
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003158 if (vlan)
3159 batadv_softif_vlan_free_ref(vlan);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003160 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02003161 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003162 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02003163 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003164 return ret;
3165}
Marek Lindnera943cac2011-07-30 13:10:18 +02003166
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003167/**
3168 * batadv_tt_update_orig - update global translation table with new tt
3169 * information received via ogms
3170 * @bat_priv: the bat priv with all the soft interface information
3171 * @orig: the orig_node of the ogm
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003172 * @tt_vlan: pointer to the first tvlv VLAN entry
3173 * @tt_num_vlan: number of tvlv VLAN entries
3174 * @tt_change: pointer to the first entry in the TT buffer
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003175 * @tt_num_changes: number of tt changes inside the tt buffer
3176 * @ttvn: translation table version number of this changeset
Antonio Quartulliced72932013-04-24 16:37:51 +02003177 * @tt_crc: crc32 checksum of orig node's translation table
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003178 */
3179static void batadv_tt_update_orig(struct batadv_priv *bat_priv,
3180 struct batadv_orig_node *orig_node,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003181 const void *tt_buff, uint16_t tt_num_vlan,
3182 struct batadv_tvlv_tt_change *tt_change,
3183 uint16_t tt_num_changes, uint8_t ttvn)
Marek Lindnera943cac2011-07-30 13:10:18 +02003184{
3185 uint8_t orig_ttvn = (uint8_t)atomic_read(&orig_node->last_ttvn);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003186 struct batadv_tvlv_tt_vlan_data *tt_vlan;
Marek Lindnera943cac2011-07-30 13:10:18 +02003187 bool full_table = true;
3188
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003189 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)tt_buff;
Antonio Quartulli17071572011-11-07 16:36:40 +01003190 /* orig table not initialised AND first diff is in the OGM OR the ttvn
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003191 * increased by one -> we can apply the attached changes
3192 */
Antonio Quartulli17071572011-11-07 16:36:40 +01003193 if ((!orig_node->tt_initialised && ttvn == 1) ||
3194 ttvn - orig_ttvn == 1) {
Marek Lindnera943cac2011-07-30 13:10:18 +02003195 /* the OGM could not contain the changes due to their size or
Sven Eckelmann42d0b042012-06-03 22:19:17 +02003196 * because they have already been sent BATADV_TT_OGM_APPEND_MAX
3197 * times.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003198 * In this case send a tt request
3199 */
Marek Lindnera943cac2011-07-30 13:10:18 +02003200 if (!tt_num_changes) {
3201 full_table = false;
3202 goto request_table;
3203 }
3204
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003205 spin_lock_bh(&orig_node->tt_lock);
3206
Marek Lindner335fbe02013-04-23 21:40:02 +08003207 tt_change = (struct batadv_tvlv_tt_change *)tt_buff;
Sven Eckelmanna5130882012-05-16 20:23:16 +02003208 batadv_tt_update_changes(bat_priv, orig_node, tt_num_changes,
Sven Eckelmann96412692012-06-05 22:31:30 +02003209 ttvn, tt_change);
Marek Lindnera943cac2011-07-30 13:10:18 +02003210
3211 /* Even if we received the precomputed crc with the OGM, we
3212 * prefer to recompute it to spot any possible inconsistency
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003213 * in the global table
3214 */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003215 batadv_tt_global_update_crc(bat_priv, orig_node);
Marek Lindnera943cac2011-07-30 13:10:18 +02003216
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003217 spin_unlock_bh(&orig_node->tt_lock);
3218
Marek Lindnera943cac2011-07-30 13:10:18 +02003219 /* The ttvn alone is not enough to guarantee consistency
3220 * because a single value could represent different states
3221 * (due to the wrap around). Thus a node has to check whether
3222 * the resulting table (after applying the changes) is still
3223 * consistent or not. E.g. a node could disconnect while its
3224 * ttvn is X and reconnect on ttvn = X + TTVN_MAX: in this case
3225 * checking the CRC value is mandatory to detect the
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003226 * inconsistency
3227 */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003228 if (!batadv_tt_global_check_crc(orig_node, tt_vlan,
3229 tt_num_vlan))
Marek Lindnera943cac2011-07-30 13:10:18 +02003230 goto request_table;
Marek Lindnera943cac2011-07-30 13:10:18 +02003231 } else {
3232 /* if we missed more than one change or our tables are not
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003233 * in sync anymore -> request fresh tt data
3234 */
Antonio Quartulli17071572011-11-07 16:36:40 +01003235 if (!orig_node->tt_initialised || ttvn != orig_ttvn ||
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003236 !batadv_tt_global_check_crc(orig_node, tt_vlan,
3237 tt_num_vlan)) {
Marek Lindnera943cac2011-07-30 13:10:18 +02003238request_table:
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003239 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003240 "TT inconsistency for %pM. Need to retrieve the correct information (ttvn: %u last_ttvn: %u num_changes: %u)\n",
3241 orig_node->orig, ttvn, orig_ttvn,
3242 tt_num_changes);
Sven Eckelmanna5130882012-05-16 20:23:16 +02003243 batadv_send_tt_request(bat_priv, orig_node, ttvn,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003244 tt_vlan, tt_num_vlan,
3245 full_table);
Marek Lindnera943cac2011-07-30 13:10:18 +02003246 return;
3247 }
3248 }
3249}
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003250
Antonio Quartullic018ad32013-06-04 12:11:39 +02003251/**
3252 * batadv_tt_global_client_is_roaming - check if a client is marked as roaming
3253 * @bat_priv: the bat priv with all the soft interface information
3254 * @addr: the mac address of the client to check
3255 * @vid: VLAN identifier
3256 *
3257 * Returns true if we know that the client has moved from its old originator
3258 * to another one. This entry is still kept for consistency purposes and will be
3259 * deleted later by a DEL or because of timeout
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003260 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02003261bool batadv_tt_global_client_is_roaming(struct batadv_priv *bat_priv,
Antonio Quartullic018ad32013-06-04 12:11:39 +02003262 uint8_t *addr, unsigned short vid)
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003263{
Sven Eckelmann56303d32012-06-05 22:31:31 +02003264 struct batadv_tt_global_entry *tt_global_entry;
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003265 bool ret = false;
3266
Antonio Quartullic018ad32013-06-04 12:11:39 +02003267 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid);
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003268 if (!tt_global_entry)
3269 goto out;
3270
Antonio Quartullic1d07432013-01-15 22:17:19 +10003271 ret = tt_global_entry->common.flags & BATADV_TT_CLIENT_ROAM;
Sven Eckelmanna5130882012-05-16 20:23:16 +02003272 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003273out:
3274 return ret;
3275}
Antonio Quartulli30cfd022012-07-05 23:38:29 +02003276
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003277/**
3278 * batadv_tt_local_client_is_roaming - tells whether the client is roaming
3279 * @bat_priv: the bat priv with all the soft interface information
Antonio Quartullic018ad32013-06-04 12:11:39 +02003280 * @addr: the mac address of the local client to query
3281 * @vid: VLAN identifier
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003282 *
3283 * Returns true if the local client is known to be roaming (it is not served by
3284 * this node anymore) or not. If yes, the client is still present in the table
3285 * to keep the latter consistent with the node TTVN
3286 */
3287bool batadv_tt_local_client_is_roaming(struct batadv_priv *bat_priv,
Antonio Quartullic018ad32013-06-04 12:11:39 +02003288 uint8_t *addr, unsigned short vid)
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003289{
3290 struct batadv_tt_local_entry *tt_local_entry;
3291 bool ret = false;
3292
Antonio Quartullic018ad32013-06-04 12:11:39 +02003293 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr, vid);
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003294 if (!tt_local_entry)
3295 goto out;
3296
3297 ret = tt_local_entry->common.flags & BATADV_TT_CLIENT_ROAM;
3298 batadv_tt_local_entry_free_ref(tt_local_entry);
3299out:
3300 return ret;
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003301}
3302
Antonio Quartulli30cfd022012-07-05 23:38:29 +02003303bool batadv_tt_add_temporary_global_entry(struct batadv_priv *bat_priv,
3304 struct batadv_orig_node *orig_node,
Antonio Quartullic018ad32013-06-04 12:11:39 +02003305 const unsigned char *addr,
Antonio Quartulli16052782013-06-04 12:11:41 +02003306 unsigned short vid)
Antonio Quartulli30cfd022012-07-05 23:38:29 +02003307{
3308 bool ret = false;
3309
Antonio Quartulli16052782013-06-04 12:11:41 +02003310 if (!batadv_tt_global_add(bat_priv, orig_node, addr, vid,
Antonio Quartulli30cfd022012-07-05 23:38:29 +02003311 BATADV_TT_CLIENT_TEMP,
3312 atomic_read(&orig_node->last_ttvn)))
3313 goto out;
3314
3315 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02003316 "Added temporary global client (addr: %pM, vid: %d, orig: %pM)\n",
3317 addr, BATADV_PRINT_VID(vid), orig_node->orig);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02003318 ret = true;
3319out:
3320 return ret;
3321}
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003322
3323/**
Marek Lindnera19d3d82013-05-27 15:33:25 +08003324 * batadv_tt_local_resize_to_mtu - resize the local translation table fit the
3325 * maximum packet size that can be transported through the mesh
3326 * @soft_iface: netdev struct of the mesh interface
3327 *
3328 * Remove entries older than 'timeout' and half timeout if more entries need
3329 * to be removed.
3330 */
3331void batadv_tt_local_resize_to_mtu(struct net_device *soft_iface)
3332{
3333 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
3334 int packet_size_max = atomic_read(&bat_priv->packet_size_max);
3335 int table_size, timeout = BATADV_TT_LOCAL_TIMEOUT / 2;
3336 bool reduced = false;
3337
3338 spin_lock_bh(&bat_priv->tt.commit_lock);
3339
3340 while (true) {
3341 table_size = batadv_tt_local_table_transmit_size(bat_priv);
3342 if (packet_size_max >= table_size)
3343 break;
3344
3345 batadv_tt_local_purge(bat_priv, timeout);
3346 batadv_tt_local_purge_pending_clients(bat_priv);
3347
3348 timeout /= 2;
3349 reduced = true;
3350 net_ratelimited_function(batadv_info, soft_iface,
3351 "Forced to purge local tt entries to fit new maximum fragment MTU (%i)\n",
3352 packet_size_max);
3353 }
3354
3355 /* commit these changes immediately, to avoid synchronization problem
3356 * with the TTVN
3357 */
3358 if (reduced)
3359 batadv_tt_local_commit_changes_nolock(bat_priv);
3360
3361 spin_unlock_bh(&bat_priv->tt.commit_lock);
3362}
3363
3364/**
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003365 * batadv_tt_tvlv_ogm_handler_v1 - process incoming tt tvlv container
3366 * @bat_priv: the bat priv with all the soft interface information
3367 * @orig: the orig_node of the ogm
3368 * @flags: flags indicating the tvlv state (see batadv_tvlv_handler_flags)
3369 * @tvlv_value: tvlv buffer containing the gateway data
3370 * @tvlv_value_len: tvlv buffer length
3371 */
3372static void batadv_tt_tvlv_ogm_handler_v1(struct batadv_priv *bat_priv,
3373 struct batadv_orig_node *orig,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003374 uint8_t flags, void *tvlv_value,
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003375 uint16_t tvlv_value_len)
3376{
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003377 struct batadv_tvlv_tt_vlan_data *tt_vlan;
3378 struct batadv_tvlv_tt_change *tt_change;
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003379 struct batadv_tvlv_tt_data *tt_data;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003380 uint16_t num_entries, num_vlan;
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003381
3382 if (tvlv_value_len < sizeof(*tt_data))
3383 return;
3384
3385 tt_data = (struct batadv_tvlv_tt_data *)tvlv_value;
3386 tvlv_value_len -= sizeof(*tt_data);
3387
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003388 num_vlan = ntohs(tt_data->num_vlan);
3389
3390 if (tvlv_value_len < sizeof(*tt_vlan) * num_vlan)
3391 return;
3392
3393 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(tt_data + 1);
3394 tt_change = (struct batadv_tvlv_tt_change *)(tt_vlan + num_vlan);
3395 tvlv_value_len -= sizeof(*tt_vlan) * num_vlan;
3396
Antonio Quartulli298e6e62013-05-28 13:14:27 +02003397 num_entries = batadv_tt_entries(tvlv_value_len);
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003398
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003399 batadv_tt_update_orig(bat_priv, orig, tt_vlan, num_vlan, tt_change,
3400 num_entries, tt_data->ttvn);
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003401}
3402
3403/**
Marek Lindner335fbe02013-04-23 21:40:02 +08003404 * batadv_tt_tvlv_unicast_handler_v1 - process incoming (unicast) tt tvlv
3405 * container
3406 * @bat_priv: the bat priv with all the soft interface information
3407 * @src: mac address of tt tvlv sender
3408 * @dst: mac address of tt tvlv recipient
3409 * @tvlv_value: tvlv buffer containing the tt data
3410 * @tvlv_value_len: tvlv buffer length
3411 *
3412 * Returns NET_RX_DROP if the tt tvlv is to be re-routed, NET_RX_SUCCESS
3413 * otherwise.
3414 */
3415static int batadv_tt_tvlv_unicast_handler_v1(struct batadv_priv *bat_priv,
3416 uint8_t *src, uint8_t *dst,
3417 void *tvlv_value,
3418 uint16_t tvlv_value_len)
3419{
3420 struct batadv_tvlv_tt_data *tt_data;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003421 uint16_t tt_vlan_len, tt_num_entries;
Marek Lindner335fbe02013-04-23 21:40:02 +08003422 char tt_flag;
3423 bool ret;
3424
3425 if (tvlv_value_len < sizeof(*tt_data))
3426 return NET_RX_SUCCESS;
3427
3428 tt_data = (struct batadv_tvlv_tt_data *)tvlv_value;
3429 tvlv_value_len -= sizeof(*tt_data);
3430
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003431 tt_vlan_len = sizeof(struct batadv_tvlv_tt_vlan_data);
3432 tt_vlan_len *= ntohs(tt_data->num_vlan);
3433
3434 if (tvlv_value_len < tt_vlan_len)
3435 return NET_RX_SUCCESS;
3436
3437 tvlv_value_len -= tt_vlan_len;
3438 tt_num_entries = batadv_tt_entries(tvlv_value_len);
Marek Lindner335fbe02013-04-23 21:40:02 +08003439
3440 switch (tt_data->flags & BATADV_TT_DATA_TYPE_MASK) {
3441 case BATADV_TT_REQUEST:
3442 batadv_inc_counter(bat_priv, BATADV_CNT_TT_REQUEST_RX);
3443
3444 /* If this node cannot provide a TT response the tt_request is
3445 * forwarded
3446 */
3447 ret = batadv_send_tt_response(bat_priv, tt_data, src, dst);
3448 if (!ret) {
3449 if (tt_data->flags & BATADV_TT_FULL_TABLE)
3450 tt_flag = 'F';
3451 else
3452 tt_flag = '.';
3453
3454 batadv_dbg(BATADV_DBG_TT, bat_priv,
3455 "Routing TT_REQUEST to %pM [%c]\n",
3456 dst, tt_flag);
3457 /* tvlv API will re-route the packet */
3458 return NET_RX_DROP;
3459 }
3460 break;
3461 case BATADV_TT_RESPONSE:
3462 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_RX);
3463
3464 if (batadv_is_my_mac(bat_priv, dst)) {
3465 batadv_handle_tt_response(bat_priv, tt_data,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003466 src, tt_num_entries);
Marek Lindner335fbe02013-04-23 21:40:02 +08003467 return NET_RX_SUCCESS;
3468 }
3469
3470 if (tt_data->flags & BATADV_TT_FULL_TABLE)
3471 tt_flag = 'F';
3472 else
3473 tt_flag = '.';
3474
3475 batadv_dbg(BATADV_DBG_TT, bat_priv,
3476 "Routing TT_RESPONSE to %pM [%c]\n", dst, tt_flag);
3477
3478 /* tvlv API will re-route the packet */
3479 return NET_RX_DROP;
3480 }
3481
3482 return NET_RX_SUCCESS;
3483}
3484
3485/**
Marek Lindner122edaa2013-04-23 21:40:03 +08003486 * batadv_roam_tvlv_unicast_handler_v1 - process incoming tt roam tvlv container
3487 * @bat_priv: the bat priv with all the soft interface information
3488 * @src: mac address of tt tvlv sender
3489 * @dst: mac address of tt tvlv recipient
3490 * @tvlv_value: tvlv buffer containing the tt data
3491 * @tvlv_value_len: tvlv buffer length
3492 *
3493 * Returns NET_RX_DROP if the tt roam tvlv is to be re-routed, NET_RX_SUCCESS
3494 * otherwise.
3495 */
3496static int batadv_roam_tvlv_unicast_handler_v1(struct batadv_priv *bat_priv,
3497 uint8_t *src, uint8_t *dst,
3498 void *tvlv_value,
3499 uint16_t tvlv_value_len)
3500{
3501 struct batadv_tvlv_roam_adv *roaming_adv;
3502 struct batadv_orig_node *orig_node = NULL;
3503
3504 /* If this node is not the intended recipient of the
3505 * roaming advertisement the packet is forwarded
3506 * (the tvlv API will re-route the packet).
3507 */
3508 if (!batadv_is_my_mac(bat_priv, dst))
3509 return NET_RX_DROP;
3510
Marek Lindner122edaa2013-04-23 21:40:03 +08003511 if (tvlv_value_len < sizeof(*roaming_adv))
3512 goto out;
3513
3514 orig_node = batadv_orig_hash_find(bat_priv, src);
3515 if (!orig_node)
3516 goto out;
3517
3518 batadv_inc_counter(bat_priv, BATADV_CNT_TT_ROAM_ADV_RX);
3519 roaming_adv = (struct batadv_tvlv_roam_adv *)tvlv_value;
3520
3521 batadv_dbg(BATADV_DBG_TT, bat_priv,
3522 "Received ROAMING_ADV from %pM (client %pM)\n",
3523 src, roaming_adv->client);
3524
3525 batadv_tt_global_add(bat_priv, orig_node, roaming_adv->client,
Antonio Quartullic018ad32013-06-04 12:11:39 +02003526 ntohs(roaming_adv->vid), BATADV_TT_CLIENT_ROAM,
Marek Lindner122edaa2013-04-23 21:40:03 +08003527 atomic_read(&orig_node->last_ttvn) + 1);
3528
3529out:
3530 if (orig_node)
3531 batadv_orig_node_free_ref(orig_node);
3532 return NET_RX_SUCCESS;
3533}
3534
3535/**
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003536 * batadv_tt_init - initialise the translation table internals
3537 * @bat_priv: the bat priv with all the soft interface information
3538 *
3539 * Return 0 on success or negative error number in case of failure.
3540 */
3541int batadv_tt_init(struct batadv_priv *bat_priv)
3542{
3543 int ret;
3544
Antonio Quartulli0eb015682013-10-13 02:50:20 +02003545 /* synchronized flags must be remote */
3546 BUILD_BUG_ON(!(BATADV_TT_SYNC_MASK & BATADV_TT_REMOTE_MASK));
3547
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003548 ret = batadv_tt_local_init(bat_priv);
3549 if (ret < 0)
3550 return ret;
3551
3552 ret = batadv_tt_global_init(bat_priv);
3553 if (ret < 0)
3554 return ret;
3555
3556 batadv_tvlv_handler_register(bat_priv, batadv_tt_tvlv_ogm_handler_v1,
Marek Lindner335fbe02013-04-23 21:40:02 +08003557 batadv_tt_tvlv_unicast_handler_v1,
3558 BATADV_TVLV_TT, 1, BATADV_NO_FLAGS);
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003559
Marek Lindner122edaa2013-04-23 21:40:03 +08003560 batadv_tvlv_handler_register(bat_priv, NULL,
3561 batadv_roam_tvlv_unicast_handler_v1,
3562 BATADV_TVLV_ROAM, 1, BATADV_NO_FLAGS);
3563
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003564 INIT_DELAYED_WORK(&bat_priv->tt.work, batadv_tt_purge);
3565 queue_delayed_work(batadv_event_workqueue, &bat_priv->tt.work,
3566 msecs_to_jiffies(BATADV_TT_WORK_PERIOD));
3567
3568 return 1;
3569}