blob: b4824951010ba6b42bf7d7c7eb62c529ed340158 [file] [log] [blame]
Sven Eckelmann9f6446c2015-04-23 13:16:35 +02001/* Copyright (C) 2007-2015 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
Antonio Quartulliebf38fb2013-11-03 20:40:48 +010015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000016 */
17
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018#include "translation-table.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020019#include "main.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000020
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020021#include <linux/atomic.h>
22#include <linux/bug.h>
23#include <linux/byteorder/generic.h>
24#include <linux/compiler.h>
Antonio Quartulliced72932013-04-24 16:37:51 +020025#include <linux/crc32c.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020026#include <linux/errno.h>
27#include <linux/etherdevice.h>
28#include <linux/fs.h>
29#include <linux/if_ether.h>
30#include <linux/jhash.h>
31#include <linux/jiffies.h>
32#include <linux/kernel.h>
33#include <linux/list.h>
34#include <linux/lockdep.h>
35#include <linux/netdevice.h>
36#include <linux/rculist.h>
37#include <linux/rcupdate.h>
38#include <linux/seq_file.h>
39#include <linux/slab.h>
40#include <linux/spinlock.h>
41#include <linux/stddef.h>
42#include <linux/string.h>
43#include <linux/workqueue.h>
44#include <net/net_namespace.h>
45
46#include "bridge_loop_avoidance.h"
47#include "hard-interface.h"
48#include "hash.h"
49#include "multicast.h"
50#include "originator.h"
51#include "packet.h"
52#include "soft-interface.h"
Antonio Quartullia73105b2011-04-27 14:27:44 +020053
Antonio Quartullidec05072012-11-10 11:00:32 +010054/* hash class keys */
55static struct lock_class_key batadv_tt_local_hash_lock_class_key;
56static struct lock_class_key batadv_tt_global_hash_lock_class_key;
57
Sven Eckelmann56303d32012-06-05 22:31:31 +020058static void batadv_send_roam_adv(struct batadv_priv *bat_priv, uint8_t *client,
Antonio Quartullic018ad32013-06-04 12:11:39 +020059 unsigned short vid,
Sven Eckelmann56303d32012-06-05 22:31:31 +020060 struct batadv_orig_node *orig_node);
Sven Eckelmanna5130882012-05-16 20:23:16 +020061static void batadv_tt_purge(struct work_struct *work);
62static void
Sven Eckelmann56303d32012-06-05 22:31:31 +020063batadv_tt_global_del_orig_list(struct batadv_tt_global_entry *tt_global_entry);
Antonio Quartulli30cfd022012-07-05 23:38:29 +020064static void batadv_tt_global_del(struct batadv_priv *bat_priv,
65 struct batadv_orig_node *orig_node,
66 const unsigned char *addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +020067 unsigned short vid, const char *message,
68 bool roaming);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000069
Marek Lindner7aadf882011-02-18 12:28:09 +000070/* returns 1 if they are the same mac addr */
Sven Eckelmanna5130882012-05-16 20:23:16 +020071static int batadv_compare_tt(const struct hlist_node *node, const void *data2)
Marek Lindner7aadf882011-02-18 12:28:09 +000072{
Sven Eckelmann56303d32012-06-05 22:31:31 +020073 const void *data1 = container_of(node, struct batadv_tt_common_entry,
Sven Eckelmann747e4222011-05-14 23:14:50 +020074 hash_entry);
Marek Lindner7aadf882011-02-18 12:28:09 +000075
dingtianhong323813e2013-12-26 19:40:39 +080076 return batadv_compare_eth(data1, data2);
Marek Lindner7aadf882011-02-18 12:28:09 +000077}
78
Antonio Quartullic018ad32013-06-04 12:11:39 +020079/**
80 * batadv_choose_tt - return the index of the tt entry in the hash table
81 * @data: pointer to the tt_common_entry object to map
82 * @size: the size of the hash table
83 *
84 * Returns the hash index where the object represented by 'data' should be
85 * stored at.
86 */
87static inline uint32_t batadv_choose_tt(const void *data, uint32_t size)
88{
89 struct batadv_tt_common_entry *tt;
90 uint32_t hash = 0;
91
92 tt = (struct batadv_tt_common_entry *)data;
Sven Eckelmann36fd61c2015-03-01 09:46:18 +010093 hash = jhash(&tt->addr, ETH_ALEN, hash);
94 hash = jhash(&tt->vid, sizeof(tt->vid), hash);
Antonio Quartullic018ad32013-06-04 12:11:39 +020095
96 return hash % size;
97}
98
99/**
100 * batadv_tt_hash_find - look for a client in the given hash table
101 * @hash: the hash table to search
102 * @addr: the mac address of the client to look for
103 * @vid: VLAN identifier
104 *
105 * Returns a pointer to the tt_common struct belonging to the searched client if
106 * found, NULL otherwise.
107 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200108static struct batadv_tt_common_entry *
Antonio Quartullic018ad32013-06-04 12:11:39 +0200109batadv_tt_hash_find(struct batadv_hashtable *hash, const uint8_t *addr,
110 unsigned short vid)
Marek Lindner7aadf882011-02-18 12:28:09 +0000111{
Marek Lindner7aadf882011-02-18 12:28:09 +0000112 struct hlist_head *head;
Antonio Quartullic018ad32013-06-04 12:11:39 +0200113 struct batadv_tt_common_entry to_search, *tt, *tt_tmp = NULL;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200114 uint32_t index;
Marek Lindner7aadf882011-02-18 12:28:09 +0000115
116 if (!hash)
117 return NULL;
118
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100119 ether_addr_copy(to_search.addr, addr);
Antonio Quartullic018ad32013-06-04 12:11:39 +0200120 to_search.vid = vid;
121
122 index = batadv_choose_tt(&to_search, hash->size);
Marek Lindner7aadf882011-02-18 12:28:09 +0000123 head = &hash->table[index];
124
125 rcu_read_lock();
Antonio Quartullic018ad32013-06-04 12:11:39 +0200126 hlist_for_each_entry_rcu(tt, head, hash_entry) {
127 if (!batadv_compare_eth(tt, addr))
Marek Lindner7aadf882011-02-18 12:28:09 +0000128 continue;
129
Antonio Quartullic018ad32013-06-04 12:11:39 +0200130 if (tt->vid != vid)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200131 continue;
132
Antonio Quartullic018ad32013-06-04 12:11:39 +0200133 if (!atomic_inc_not_zero(&tt->refcount))
134 continue;
135
136 tt_tmp = tt;
Marek Lindner7aadf882011-02-18 12:28:09 +0000137 break;
138 }
139 rcu_read_unlock();
140
Antonio Quartullic018ad32013-06-04 12:11:39 +0200141 return tt_tmp;
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100142}
143
Antonio Quartullic018ad32013-06-04 12:11:39 +0200144/**
145 * batadv_tt_local_hash_find - search the local table for a given client
146 * @bat_priv: the bat priv with all the soft interface information
147 * @addr: the mac address of the client to look for
148 * @vid: VLAN identifier
149 *
150 * Returns a pointer to the corresponding tt_local_entry struct if the client is
151 * found, NULL otherwise.
152 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200153static struct batadv_tt_local_entry *
Antonio Quartullic018ad32013-06-04 12:11:39 +0200154batadv_tt_local_hash_find(struct batadv_priv *bat_priv, const uint8_t *addr,
155 unsigned short vid)
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100156{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200157 struct batadv_tt_common_entry *tt_common_entry;
158 struct batadv_tt_local_entry *tt_local_entry = NULL;
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100159
Antonio Quartullic018ad32013-06-04 12:11:39 +0200160 tt_common_entry = batadv_tt_hash_find(bat_priv->tt.local_hash, addr,
161 vid);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100162 if (tt_common_entry)
163 tt_local_entry = container_of(tt_common_entry,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200164 struct batadv_tt_local_entry,
165 common);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100166 return tt_local_entry;
Marek Lindner7aadf882011-02-18 12:28:09 +0000167}
168
Antonio Quartullic018ad32013-06-04 12:11:39 +0200169/**
170 * batadv_tt_global_hash_find - search the global table for a given client
171 * @bat_priv: the bat priv with all the soft interface information
172 * @addr: the mac address of the client to look for
173 * @vid: VLAN identifier
174 *
175 * Returns a pointer to the corresponding tt_global_entry struct if the client
176 * is found, NULL otherwise.
177 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200178static struct batadv_tt_global_entry *
Antonio Quartullic018ad32013-06-04 12:11:39 +0200179batadv_tt_global_hash_find(struct batadv_priv *bat_priv, const uint8_t *addr,
180 unsigned short vid)
Marek Lindner7aadf882011-02-18 12:28:09 +0000181{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200182 struct batadv_tt_common_entry *tt_common_entry;
183 struct batadv_tt_global_entry *tt_global_entry = NULL;
Marek Lindner7aadf882011-02-18 12:28:09 +0000184
Antonio Quartullic018ad32013-06-04 12:11:39 +0200185 tt_common_entry = batadv_tt_hash_find(bat_priv->tt.global_hash, addr,
186 vid);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100187 if (tt_common_entry)
188 tt_global_entry = container_of(tt_common_entry,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200189 struct batadv_tt_global_entry,
190 common);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100191 return tt_global_entry;
Marek Lindner7aadf882011-02-18 12:28:09 +0000192}
193
Sven Eckelmanna5130882012-05-16 20:23:16 +0200194static void
Sven Eckelmann56303d32012-06-05 22:31:31 +0200195batadv_tt_local_entry_free_ref(struct batadv_tt_local_entry *tt_local_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200196{
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100197 if (atomic_dec_and_test(&tt_local_entry->common.refcount))
198 kfree_rcu(tt_local_entry, common.rcu);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200199}
200
Antonio Quartulli21026052013-05-07 00:29:22 +0200201/**
202 * batadv_tt_global_entry_free_ref - decrement the refcounter for a
203 * tt_global_entry and possibly free it
204 * @tt_global_entry: the object to free
205 */
Sven Eckelmanna5130882012-05-16 20:23:16 +0200206static void
Sven Eckelmann56303d32012-06-05 22:31:31 +0200207batadv_tt_global_entry_free_ref(struct batadv_tt_global_entry *tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200208{
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200209 if (atomic_dec_and_test(&tt_global_entry->common.refcount)) {
Sven Eckelmanna5130882012-05-16 20:23:16 +0200210 batadv_tt_global_del_orig_list(tt_global_entry);
Antonio Quartulli21026052013-05-07 00:29:22 +0200211 kfree_rcu(tt_global_entry, common.rcu);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200212 }
213}
214
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +0100215/**
216 * batadv_tt_global_hash_count - count the number of orig entries
217 * @hash: hash table containing the tt entries
218 * @addr: the mac address of the client to count entries for
219 * @vid: VLAN identifier
220 *
221 * Return the number of originators advertising the given address/data
222 * (excluding ourself).
223 */
224int batadv_tt_global_hash_count(struct batadv_priv *bat_priv,
225 const uint8_t *addr, unsigned short vid)
226{
227 struct batadv_tt_global_entry *tt_global_entry;
228 int count;
229
230 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid);
231 if (!tt_global_entry)
232 return 0;
233
234 count = atomic_read(&tt_global_entry->orig_list_count);
235 batadv_tt_global_entry_free_ref(tt_global_entry);
236
237 return count;
238}
239
Sven Eckelmanna5130882012-05-16 20:23:16 +0200240static void batadv_tt_orig_list_entry_free_rcu(struct rcu_head *rcu)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200241{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200242 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200243
Sven Eckelmann56303d32012-06-05 22:31:31 +0200244 orig_entry = container_of(rcu, struct batadv_tt_orig_list_entry, rcu);
Linus Lüssing72822222013-04-15 21:43:29 +0800245
246 /* We are in an rcu callback here, therefore we cannot use
247 * batadv_orig_node_free_ref() and its call_rcu():
248 * An rcu_barrier() wouldn't wait for that to finish
249 */
250 batadv_orig_node_free_ref_now(orig_entry->orig_node);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200251 kfree(orig_entry);
252}
253
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200254/**
255 * batadv_tt_local_size_mod - change the size by v of the local table identified
256 * by vid
257 * @bat_priv: the bat priv with all the soft interface information
258 * @vid: the VLAN identifier of the sub-table to change
259 * @v: the amount to sum to the local table size
260 */
261static void batadv_tt_local_size_mod(struct batadv_priv *bat_priv,
262 unsigned short vid, int v)
263{
264 struct batadv_softif_vlan *vlan;
265
266 vlan = batadv_softif_vlan_get(bat_priv, vid);
267 if (!vlan)
268 return;
269
270 atomic_add(v, &vlan->tt.num_entries);
271
272 batadv_softif_vlan_free_ref(vlan);
273}
274
275/**
276 * batadv_tt_local_size_inc - increase by one the local table size for the given
277 * vid
278 * @bat_priv: the bat priv with all the soft interface information
279 * @vid: the VLAN identifier
280 */
281static void batadv_tt_local_size_inc(struct batadv_priv *bat_priv,
282 unsigned short vid)
283{
284 batadv_tt_local_size_mod(bat_priv, vid, 1);
285}
286
287/**
288 * batadv_tt_local_size_dec - decrease by one the local table size for the given
289 * vid
290 * @bat_priv: the bat priv with all the soft interface information
291 * @vid: the VLAN identifier
292 */
293static void batadv_tt_local_size_dec(struct batadv_priv *bat_priv,
294 unsigned short vid)
295{
296 batadv_tt_local_size_mod(bat_priv, vid, -1);
297}
298
299/**
300 * batadv_tt_global_size_mod - change the size by v of the local table
301 * identified by vid
302 * @bat_priv: the bat priv with all the soft interface information
303 * @vid: the VLAN identifier
304 * @v: the amount to sum to the global table size
305 */
306static void batadv_tt_global_size_mod(struct batadv_orig_node *orig_node,
307 unsigned short vid, int v)
308{
309 struct batadv_orig_node_vlan *vlan;
310
311 vlan = batadv_orig_node_vlan_new(orig_node, vid);
312 if (!vlan)
313 return;
314
315 if (atomic_add_return(v, &vlan->tt.num_entries) == 0) {
316 spin_lock_bh(&orig_node->vlan_list_lock);
317 list_del_rcu(&vlan->list);
318 spin_unlock_bh(&orig_node->vlan_list_lock);
319 batadv_orig_node_vlan_free_ref(vlan);
320 }
321
322 batadv_orig_node_vlan_free_ref(vlan);
323}
324
325/**
326 * batadv_tt_global_size_inc - increase by one the global table size for the
327 * given vid
328 * @orig_node: the originator which global table size has to be decreased
329 * @vid: the vlan identifier
330 */
331static void batadv_tt_global_size_inc(struct batadv_orig_node *orig_node,
332 unsigned short vid)
333{
334 batadv_tt_global_size_mod(orig_node, vid, 1);
335}
336
337/**
338 * batadv_tt_global_size_dec - decrease by one the global table size for the
339 * given vid
340 * @orig_node: the originator which global table size has to be decreased
341 * @vid: the vlan identifier
342 */
343static void batadv_tt_global_size_dec(struct batadv_orig_node *orig_node,
344 unsigned short vid)
345{
346 batadv_tt_global_size_mod(orig_node, vid, -1);
347}
348
Sven Eckelmanna5130882012-05-16 20:23:16 +0200349static void
Sven Eckelmann56303d32012-06-05 22:31:31 +0200350batadv_tt_orig_list_entry_free_ref(struct batadv_tt_orig_list_entry *orig_entry)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200351{
Antonio Quartullid657e622012-07-01 14:09:12 +0200352 if (!atomic_dec_and_test(&orig_entry->refcount))
353 return;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200354
Sven Eckelmanna5130882012-05-16 20:23:16 +0200355 call_rcu(&orig_entry->rcu, batadv_tt_orig_list_entry_free_rcu);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200356}
357
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200358/**
359 * batadv_tt_local_event - store a local TT event (ADD/DEL)
360 * @bat_priv: the bat priv with all the soft interface information
361 * @tt_local_entry: the TT entry involved in the event
362 * @event_flags: flags to store in the event structure
363 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200364static void batadv_tt_local_event(struct batadv_priv *bat_priv,
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200365 struct batadv_tt_local_entry *tt_local_entry,
366 uint8_t event_flags)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200367{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200368 struct batadv_tt_change_node *tt_change_node, *entry, *safe;
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200369 struct batadv_tt_common_entry *common = &tt_local_entry->common;
370 uint8_t flags = common->flags | event_flags;
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200371 bool event_removed = false;
372 bool del_op_requested, del_op_entry;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200373
374 tt_change_node = kmalloc(sizeof(*tt_change_node), GFP_ATOMIC);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200375 if (!tt_change_node)
376 return;
377
Antonio Quartulliff66c972011-06-30 01:14:00 +0200378 tt_change_node->change.flags = flags;
Antonio Quartullica663042013-12-15 13:26:55 +0100379 memset(tt_change_node->change.reserved, 0,
380 sizeof(tt_change_node->change.reserved));
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100381 ether_addr_copy(tt_change_node->change.addr, common->addr);
Antonio Quartullic018ad32013-06-04 12:11:39 +0200382 tt_change_node->change.vid = htons(common->vid);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200383
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200384 del_op_requested = flags & BATADV_TT_CLIENT_DEL;
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200385
386 /* check for ADD+DEL or DEL+ADD events */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200387 spin_lock_bh(&bat_priv->tt.changes_list_lock);
388 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200389 list) {
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200390 if (!batadv_compare_eth(entry->change.addr, common->addr))
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200391 continue;
392
393 /* DEL+ADD in the same orig interval have no effect and can be
394 * removed to avoid silly behaviour on the receiver side. The
395 * other way around (ADD+DEL) can happen in case of roaming of
396 * a client still in the NEW state. Roaming of NEW clients is
397 * now possible due to automatically recognition of "temporary"
398 * clients
399 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200400 del_op_entry = entry->change.flags & BATADV_TT_CLIENT_DEL;
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200401 if (!del_op_requested && del_op_entry)
402 goto del;
403 if (del_op_requested && !del_op_entry)
404 goto del;
Antonio Quartulli3c4f7ab2013-10-13 02:50:19 +0200405
406 /* this is a second add in the same originator interval. It
407 * means that flags have been changed: update them!
408 */
409 if (!del_op_requested && !del_op_entry)
410 entry->change.flags = flags;
411
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200412 continue;
413del:
414 list_del(&entry->list);
415 kfree(entry);
Jesper Juhl155e4e12012-08-07 08:32:34 +0000416 kfree(tt_change_node);
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200417 event_removed = true;
418 goto unlock;
419 }
420
Antonio Quartullia73105b2011-04-27 14:27:44 +0200421 /* track the change in the OGMinterval list */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200422 list_add_tail(&tt_change_node->list, &bat_priv->tt.changes_list);
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200423
424unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +0200425 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200426
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200427 if (event_removed)
Sven Eckelmann807736f2012-07-15 22:26:51 +0200428 atomic_dec(&bat_priv->tt.local_changes);
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200429 else
Sven Eckelmann807736f2012-07-15 22:26:51 +0200430 atomic_inc(&bat_priv->tt.local_changes);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200431}
432
Marek Lindner335fbe02013-04-23 21:40:02 +0800433/**
434 * batadv_tt_len - compute length in bytes of given number of tt changes
435 * @changes_num: number of tt changes
436 *
437 * Returns computed length in bytes.
438 */
439static int batadv_tt_len(int changes_num)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200440{
Marek Lindner335fbe02013-04-23 21:40:02 +0800441 return changes_num * sizeof(struct batadv_tvlv_tt_change);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200442}
443
Antonio Quartulli298e6e62013-05-28 13:14:27 +0200444/**
445 * batadv_tt_entries - compute the number of entries fitting in tt_len bytes
446 * @tt_len: available space
447 *
448 * Returns the number of entries.
449 */
450static uint16_t batadv_tt_entries(uint16_t tt_len)
451{
452 return tt_len / batadv_tt_len(1);
453}
454
Marek Lindnera19d3d82013-05-27 15:33:25 +0800455/**
456 * batadv_tt_local_table_transmit_size - calculates the local translation table
457 * size when transmitted over the air
458 * @bat_priv: the bat priv with all the soft interface information
459 *
460 * Returns local translation table size in bytes.
461 */
462static int batadv_tt_local_table_transmit_size(struct batadv_priv *bat_priv)
463{
464 uint16_t num_vlan = 0, tt_local_entries = 0;
465 struct batadv_softif_vlan *vlan;
466 int hdr_size;
467
468 rcu_read_lock();
469 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
470 num_vlan++;
471 tt_local_entries += atomic_read(&vlan->tt.num_entries);
472 }
473 rcu_read_unlock();
474
475 /* header size of tvlv encapsulated tt response payload */
476 hdr_size = sizeof(struct batadv_unicast_tvlv_packet);
477 hdr_size += sizeof(struct batadv_tvlv_hdr);
478 hdr_size += sizeof(struct batadv_tvlv_tt_data);
479 hdr_size += num_vlan * sizeof(struct batadv_tvlv_tt_vlan_data);
480
481 return hdr_size + batadv_tt_len(tt_local_entries);
482}
483
Sven Eckelmann56303d32012-06-05 22:31:31 +0200484static int batadv_tt_local_init(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000485{
Sven Eckelmann807736f2012-07-15 22:26:51 +0200486 if (bat_priv->tt.local_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200487 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000488
Sven Eckelmann807736f2012-07-15 22:26:51 +0200489 bat_priv->tt.local_hash = batadv_hash_new(1024);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000490
Sven Eckelmann807736f2012-07-15 22:26:51 +0200491 if (!bat_priv->tt.local_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200492 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000493
Antonio Quartullidec05072012-11-10 11:00:32 +0100494 batadv_hash_set_lock_class(bat_priv->tt.local_hash,
495 &batadv_tt_local_hash_lock_class_key);
496
Sven Eckelmann5346c352012-05-05 13:27:28 +0200497 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000498}
499
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200500static void batadv_tt_global_free(struct batadv_priv *bat_priv,
501 struct batadv_tt_global_entry *tt_global,
502 const char *message)
503{
504 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +0200505 "Deleting global tt entry %pM (vid: %d): %s\n",
506 tt_global->common.addr,
507 BATADV_PRINT_VID(tt_global->common.vid), message);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200508
509 batadv_hash_remove(bat_priv->tt.global_hash, batadv_compare_tt,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200510 batadv_choose_tt, &tt_global->common);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200511 batadv_tt_global_entry_free_ref(tt_global);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200512}
513
Antonio Quartullic018ad32013-06-04 12:11:39 +0200514/**
515 * batadv_tt_local_add - add a new client to the local table or update an
516 * existing client
517 * @soft_iface: netdev struct of the mesh interface
518 * @addr: the mac address of the client to add
519 * @vid: VLAN identifier
520 * @ifindex: index of the interface where the client is connected to (useful to
521 * identify wireless clients)
Antonio Quartulli9464d072013-11-16 12:03:48 +0100522 * @mark: the value contained in the skb->mark field of the received packet (if
523 * any)
Marek Lindnera19d3d82013-05-27 15:33:25 +0800524 *
525 * Returns true if the client was successfully added, false otherwise.
Antonio Quartullic018ad32013-06-04 12:11:39 +0200526 */
Marek Lindnera19d3d82013-05-27 15:33:25 +0800527bool batadv_tt_local_add(struct net_device *soft_iface, const uint8_t *addr,
Antonio Quartulli9464d072013-11-16 12:03:48 +0100528 unsigned short vid, int ifindex, uint32_t mark)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000529{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200530 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmann170173b2012-10-07 12:02:22 +0200531 struct batadv_tt_local_entry *tt_local;
Linus Lüssingc5caf4e2014-02-15 17:47:49 +0100532 struct batadv_tt_global_entry *tt_global = NULL;
Antonio Quartulli35df3b22014-05-08 17:13:15 +0200533 struct batadv_softif_vlan *vlan;
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200534 struct net_device *in_dev = NULL;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200535 struct hlist_head *head;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200536 struct batadv_tt_orig_list_entry *orig_entry;
Marek Lindnera19d3d82013-05-27 15:33:25 +0800537 int hash_added, table_size, packet_size_max;
538 bool ret = false, roamed_back = false;
Antonio Quartulli3c4f7ab2013-10-13 02:50:19 +0200539 uint8_t remote_flags;
Antonio Quartulli9464d072013-11-16 12:03:48 +0100540 uint32_t match_mark;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000541
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200542 if (ifindex != BATADV_NULL_IFINDEX)
543 in_dev = dev_get_by_index(&init_net, ifindex);
544
Antonio Quartullic018ad32013-06-04 12:11:39 +0200545 tt_local = batadv_tt_local_hash_find(bat_priv, addr, vid);
Linus Lüssingc5caf4e2014-02-15 17:47:49 +0100546
547 if (!is_multicast_ether_addr(addr))
548 tt_global = batadv_tt_global_hash_find(bat_priv, addr, vid);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000549
Antonio Quartulli47c94652012-09-23 22:38:35 +0200550 if (tt_local) {
551 tt_local->last_seen = jiffies;
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200552 if (tt_local->common.flags & BATADV_TT_CLIENT_PENDING) {
553 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +0200554 "Re-adding pending client %pM (vid: %d)\n",
555 addr, BATADV_PRINT_VID(vid));
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200556 /* whatever the reason why the PENDING flag was set,
557 * this is a client which was enqueued to be removed in
558 * this orig_interval. Since it popped up again, the
559 * flag can be reset like it was never enqueued
560 */
561 tt_local->common.flags &= ~BATADV_TT_CLIENT_PENDING;
562 goto add_event;
563 }
564
565 if (tt_local->common.flags & BATADV_TT_CLIENT_ROAM) {
566 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +0200567 "Roaming client %pM (vid: %d) came back to its original location\n",
568 addr, BATADV_PRINT_VID(vid));
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200569 /* the ROAM flag is set because this client roamed away
570 * and the node got a roaming_advertisement message. Now
571 * that the client popped up again at its original
572 * location such flag can be unset
573 */
574 tt_local->common.flags &= ~BATADV_TT_CLIENT_ROAM;
575 roamed_back = true;
576 }
577 goto check_roaming;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000578 }
579
Marek Lindnera19d3d82013-05-27 15:33:25 +0800580 /* Ignore the client if we cannot send it in a full table response. */
581 table_size = batadv_tt_local_table_transmit_size(bat_priv);
582 table_size += batadv_tt_len(1);
583 packet_size_max = atomic_read(&bat_priv->packet_size_max);
584 if (table_size > packet_size_max) {
585 net_ratelimited_function(batadv_info, soft_iface,
586 "Local translation table size (%i) exceeds maximum packet size (%i); Ignoring new local tt entry: %pM\n",
587 table_size, packet_size_max, addr);
588 goto out;
589 }
590
Antonio Quartulli47c94652012-09-23 22:38:35 +0200591 tt_local = kmalloc(sizeof(*tt_local), GFP_ATOMIC);
592 if (!tt_local)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200593 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200594
Antonio Quartulli35df3b22014-05-08 17:13:15 +0200595 /* increase the refcounter of the related vlan */
596 vlan = batadv_softif_vlan_get(bat_priv, vid);
597
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200598 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +0200599 "Creating new local tt entry: %pM (vid: %d, ttvn: %d)\n",
600 addr, BATADV_PRINT_VID(vid),
Sven Eckelmann807736f2012-07-15 22:26:51 +0200601 (uint8_t)atomic_read(&bat_priv->tt.vn));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000602
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100603 ether_addr_copy(tt_local->common.addr, addr);
Antonio Quartulli8425ec62012-11-19 09:01:44 +0100604 /* The local entry has to be marked as NEW to avoid to send it in
605 * a full table response going out before the next ttvn increment
606 * (consistency check)
607 */
608 tt_local->common.flags = BATADV_TT_CLIENT_NEW;
Antonio Quartullic018ad32013-06-04 12:11:39 +0200609 tt_local->common.vid = vid;
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200610 if (batadv_is_wifi_netdev(in_dev))
Antonio Quartulli47c94652012-09-23 22:38:35 +0200611 tt_local->common.flags |= BATADV_TT_CLIENT_WIFI;
612 atomic_set(&tt_local->common.refcount, 2);
613 tt_local->last_seen = jiffies;
614 tt_local->common.added_at = tt_local->last_seen;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000615
Linus Lüssingc5caf4e2014-02-15 17:47:49 +0100616 /* the batman interface mac and multicast addresses should never be
617 * purged
618 */
619 if (batadv_compare_eth(addr, soft_iface->dev_addr) ||
620 is_multicast_ether_addr(addr))
Antonio Quartulli47c94652012-09-23 22:38:35 +0200621 tt_local->common.flags |= BATADV_TT_CLIENT_NOPURGE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000622
Sven Eckelmann807736f2012-07-15 22:26:51 +0200623 hash_added = batadv_hash_add(bat_priv->tt.local_hash, batadv_compare_tt,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200624 batadv_choose_tt, &tt_local->common,
Antonio Quartulli47c94652012-09-23 22:38:35 +0200625 &tt_local->common.hash_entry);
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100626
627 if (unlikely(hash_added != 0)) {
628 /* remove the reference for the hash */
Antonio Quartulli47c94652012-09-23 22:38:35 +0200629 batadv_tt_local_entry_free_ref(tt_local);
Antonio Quartulli35df3b22014-05-08 17:13:15 +0200630 batadv_softif_vlan_free_ref(vlan);
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100631 goto out;
632 }
633
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200634add_event:
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200635 batadv_tt_local_event(bat_priv, tt_local, BATADV_NO_FLAGS);
Antonio Quartulliff66c972011-06-30 01:14:00 +0200636
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200637check_roaming:
638 /* Check whether it is a roaming, but don't do anything if the roaming
639 * process has already been handled
640 */
641 if (tt_global && !(tt_global->common.flags & BATADV_TT_CLIENT_ROAM)) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200642 /* These node are probably going to update their tt table */
Antonio Quartulli47c94652012-09-23 22:38:35 +0200643 head = &tt_global->orig_list;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200644 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800645 hlist_for_each_entry_rcu(orig_entry, head, list) {
Antonio Quartulli47c94652012-09-23 22:38:35 +0200646 batadv_send_roam_adv(bat_priv, tt_global->common.addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200647 tt_global->common.vid,
Sven Eckelmanna5130882012-05-16 20:23:16 +0200648 orig_entry->orig_node);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200649 }
650 rcu_read_unlock();
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200651 if (roamed_back) {
652 batadv_tt_global_free(bat_priv, tt_global,
653 "Roaming canceled");
654 tt_global = NULL;
655 } else {
656 /* The global entry has to be marked as ROAMING and
657 * has to be kept for consistency purpose
658 */
659 tt_global->common.flags |= BATADV_TT_CLIENT_ROAM;
660 tt_global->roam_at = jiffies;
661 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200662 }
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200663
Antonio Quartulli3c4f7ab2013-10-13 02:50:19 +0200664 /* store the current remote flags before altering them. This helps
665 * understanding is flags are changing or not
666 */
667 remote_flags = tt_local->common.flags & BATADV_TT_REMOTE_MASK;
Marek Lindnera19d3d82013-05-27 15:33:25 +0800668
Antonio Quartulli3c4f7ab2013-10-13 02:50:19 +0200669 if (batadv_is_wifi_netdev(in_dev))
670 tt_local->common.flags |= BATADV_TT_CLIENT_WIFI;
671 else
672 tt_local->common.flags &= ~BATADV_TT_CLIENT_WIFI;
673
Antonio Quartulli9464d072013-11-16 12:03:48 +0100674 /* check the mark in the skb: if it's equal to the configured
675 * isolation_mark, it means the packet is coming from an isolated
676 * non-mesh client
677 */
678 match_mark = (mark & bat_priv->isolation_mark_mask);
679 if (bat_priv->isolation_mark_mask &&
680 match_mark == bat_priv->isolation_mark)
681 tt_local->common.flags |= BATADV_TT_CLIENT_ISOLA;
682 else
683 tt_local->common.flags &= ~BATADV_TT_CLIENT_ISOLA;
684
Antonio Quartulli3c4f7ab2013-10-13 02:50:19 +0200685 /* if any "dynamic" flag has been modified, resend an ADD event for this
686 * entry so that all the nodes can get the new flags
687 */
688 if (remote_flags ^ (tt_local->common.flags & BATADV_TT_REMOTE_MASK))
689 batadv_tt_local_event(bat_priv, tt_local, BATADV_NO_FLAGS);
690
691 ret = true;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200692out:
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200693 if (in_dev)
694 dev_put(in_dev);
Antonio Quartulli47c94652012-09-23 22:38:35 +0200695 if (tt_local)
696 batadv_tt_local_entry_free_ref(tt_local);
697 if (tt_global)
698 batadv_tt_global_entry_free_ref(tt_global);
Marek Lindnera19d3d82013-05-27 15:33:25 +0800699 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000700}
701
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800702/**
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200703 * batadv_tt_prepare_tvlv_global_data - prepare the TVLV TT header to send
704 * within a TT Response directed to another node
705 * @orig_node: originator for which the TT data has to be prepared
706 * @tt_data: uninitialised pointer to the address of the TVLV buffer
707 * @tt_change: uninitialised pointer to the address of the area where the TT
708 * changed can be stored
709 * @tt_len: pointer to the length to reserve to the tt_change. if -1 this
710 * function reserves the amount of space needed to send the entire global TT
711 * table. In case of success the value is updated with the real amount of
712 * reserved bytes
713
714 * Allocate the needed amount of memory for the entire TT TVLV and write its
715 * header made up by one tvlv_tt_data object and a series of tvlv_tt_vlan_data
716 * objects, one per active VLAN served by the originator node.
717 *
718 * Return the size of the allocated buffer or 0 in case of failure.
719 */
720static uint16_t
721batadv_tt_prepare_tvlv_global_data(struct batadv_orig_node *orig_node,
722 struct batadv_tvlv_tt_data **tt_data,
723 struct batadv_tvlv_tt_change **tt_change,
724 int32_t *tt_len)
725{
726 uint16_t num_vlan = 0, num_entries = 0, change_offset, tvlv_len;
727 struct batadv_tvlv_tt_vlan_data *tt_vlan;
728 struct batadv_orig_node_vlan *vlan;
729 uint8_t *tt_change_ptr;
730
731 rcu_read_lock();
732 list_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) {
733 num_vlan++;
734 num_entries += atomic_read(&vlan->tt.num_entries);
735 }
736
737 change_offset = sizeof(**tt_data);
738 change_offset += num_vlan * sizeof(*tt_vlan);
739
740 /* if tt_len is negative, allocate the space needed by the full table */
741 if (*tt_len < 0)
742 *tt_len = batadv_tt_len(num_entries);
743
744 tvlv_len = *tt_len;
745 tvlv_len += change_offset;
746
747 *tt_data = kmalloc(tvlv_len, GFP_ATOMIC);
748 if (!*tt_data) {
749 *tt_len = 0;
750 goto out;
751 }
752
753 (*tt_data)->flags = BATADV_NO_FLAGS;
754 (*tt_data)->ttvn = atomic_read(&orig_node->last_ttvn);
755 (*tt_data)->num_vlan = htons(num_vlan);
756
757 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(*tt_data + 1);
758 list_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) {
759 tt_vlan->vid = htons(vlan->vid);
760 tt_vlan->crc = htonl(vlan->tt.crc);
761
762 tt_vlan++;
763 }
764
765 tt_change_ptr = (uint8_t *)*tt_data + change_offset;
766 *tt_change = (struct batadv_tvlv_tt_change *)tt_change_ptr;
767
768out:
769 rcu_read_unlock();
770 return tvlv_len;
771}
772
773/**
774 * batadv_tt_prepare_tvlv_local_data - allocate and prepare the TT TVLV for this
775 * node
776 * @bat_priv: the bat priv with all the soft interface information
777 * @tt_data: uninitialised pointer to the address of the TVLV buffer
778 * @tt_change: uninitialised pointer to the address of the area where the TT
779 * changes can be stored
780 * @tt_len: pointer to the length to reserve to the tt_change. if -1 this
781 * function reserves the amount of space needed to send the entire local TT
782 * table. In case of success the value is updated with the real amount of
783 * reserved bytes
784 *
785 * Allocate the needed amount of memory for the entire TT TVLV and write its
786 * header made up by one tvlv_tt_data object and a series of tvlv_tt_vlan_data
787 * objects, one per active VLAN.
788 *
789 * Return the size of the allocated buffer or 0 in case of failure.
790 */
791static uint16_t
792batadv_tt_prepare_tvlv_local_data(struct batadv_priv *bat_priv,
793 struct batadv_tvlv_tt_data **tt_data,
794 struct batadv_tvlv_tt_change **tt_change,
795 int32_t *tt_len)
796{
797 struct batadv_tvlv_tt_vlan_data *tt_vlan;
798 struct batadv_softif_vlan *vlan;
799 uint16_t num_vlan = 0, num_entries = 0, tvlv_len;
800 uint8_t *tt_change_ptr;
801 int change_offset;
802
803 rcu_read_lock();
804 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
805 num_vlan++;
806 num_entries += atomic_read(&vlan->tt.num_entries);
807 }
808
809 change_offset = sizeof(**tt_data);
810 change_offset += num_vlan * sizeof(*tt_vlan);
811
812 /* if tt_len is negative, allocate the space needed by the full table */
813 if (*tt_len < 0)
814 *tt_len = batadv_tt_len(num_entries);
815
816 tvlv_len = *tt_len;
817 tvlv_len += change_offset;
818
819 *tt_data = kmalloc(tvlv_len, GFP_ATOMIC);
820 if (!*tt_data) {
821 tvlv_len = 0;
822 goto out;
823 }
824
825 (*tt_data)->flags = BATADV_NO_FLAGS;
826 (*tt_data)->ttvn = atomic_read(&bat_priv->tt.vn);
827 (*tt_data)->num_vlan = htons(num_vlan);
828
829 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(*tt_data + 1);
830 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
831 tt_vlan->vid = htons(vlan->vid);
832 tt_vlan->crc = htonl(vlan->tt.crc);
833
834 tt_vlan++;
835 }
836
837 tt_change_ptr = (uint8_t *)*tt_data + change_offset;
838 *tt_change = (struct batadv_tvlv_tt_change *)tt_change_ptr;
839
840out:
841 rcu_read_unlock();
842 return tvlv_len;
843}
844
845/**
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800846 * batadv_tt_tvlv_container_update - update the translation table tvlv container
847 * after local tt changes have been committed
848 * @bat_priv: the bat priv with all the soft interface information
849 */
850static void batadv_tt_tvlv_container_update(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000851{
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800852 struct batadv_tt_change_node *entry, *safe;
853 struct batadv_tvlv_tt_data *tt_data;
854 struct batadv_tvlv_tt_change *tt_change;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200855 int tt_diff_len, tt_change_len = 0;
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800856 int tt_diff_entries_num = 0, tt_diff_entries_count = 0;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200857 uint16_t tvlv_len;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000858
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200859 tt_diff_entries_num = atomic_read(&bat_priv->tt.local_changes);
860 tt_diff_len = batadv_tt_len(tt_diff_entries_num);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800861
862 /* if we have too many changes for one packet don't send any
863 * and wait for the tt table request which will be fragmented
864 */
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800865 if (tt_diff_len > bat_priv->soft_iface->mtu)
866 tt_diff_len = 0;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800867
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200868 tvlv_len = batadv_tt_prepare_tvlv_local_data(bat_priv, &tt_data,
869 &tt_change, &tt_diff_len);
870 if (!tvlv_len)
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800871 return;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800872
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800873 tt_data->flags = BATADV_TT_OGM_DIFF;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800874
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800875 if (tt_diff_len == 0)
876 goto container_register;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800877
Sven Eckelmann807736f2012-07-15 22:26:51 +0200878 spin_lock_bh(&bat_priv->tt.changes_list_lock);
879 atomic_set(&bat_priv->tt.local_changes, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000880
Sven Eckelmann807736f2012-07-15 22:26:51 +0200881 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100882 list) {
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800883 if (tt_diff_entries_count < tt_diff_entries_num) {
884 memcpy(tt_change + tt_diff_entries_count,
885 &entry->change,
886 sizeof(struct batadv_tvlv_tt_change));
887 tt_diff_entries_count++;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000888 }
Antonio Quartullia73105b2011-04-27 14:27:44 +0200889 list_del(&entry->list);
890 kfree(entry);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000891 }
Sven Eckelmann807736f2012-07-15 22:26:51 +0200892 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000893
Antonio Quartullia73105b2011-04-27 14:27:44 +0200894 /* Keep the buffer for possible tt_request */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200895 spin_lock_bh(&bat_priv->tt.last_changeset_lock);
896 kfree(bat_priv->tt.last_changeset);
897 bat_priv->tt.last_changeset_len = 0;
898 bat_priv->tt.last_changeset = NULL;
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800899 tt_change_len = batadv_tt_len(tt_diff_entries_count);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800900 /* check whether this new OGM has no changes due to size problems */
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800901 if (tt_diff_entries_count > 0) {
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800902 /* if kmalloc() fails we will reply with the full table
Antonio Quartullia73105b2011-04-27 14:27:44 +0200903 * instead of providing the diff
904 */
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800905 bat_priv->tt.last_changeset = kzalloc(tt_diff_len, GFP_ATOMIC);
Sven Eckelmann807736f2012-07-15 22:26:51 +0200906 if (bat_priv->tt.last_changeset) {
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800907 memcpy(bat_priv->tt.last_changeset,
908 tt_change, tt_change_len);
909 bat_priv->tt.last_changeset_len = tt_diff_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200910 }
911 }
Sven Eckelmann807736f2012-07-15 22:26:51 +0200912 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000913
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800914container_register:
915 batadv_tvlv_container_register(bat_priv, BATADV_TVLV_TT, 1, tt_data,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200916 tvlv_len);
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800917 kfree(tt_data);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000918}
919
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200920int batadv_tt_local_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000921{
922 struct net_device *net_dev = (struct net_device *)seq->private;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200923 struct batadv_priv *bat_priv = netdev_priv(net_dev);
Sven Eckelmann807736f2012-07-15 22:26:51 +0200924 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200925 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartulli85766a82012-11-08 22:16:16 +0100926 struct batadv_tt_local_entry *tt_local;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200927 struct batadv_hard_iface *primary_if;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200928 struct batadv_softif_vlan *vlan;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000929 struct hlist_head *head;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200930 unsigned short vid;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200931 uint32_t i;
Antonio Quartulli85766a82012-11-08 22:16:16 +0100932 int last_seen_secs;
933 int last_seen_msecs;
934 unsigned long last_seen_jiffies;
935 bool no_purge;
936 uint16_t np_flag = BATADV_TT_CLIENT_NOPURGE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000937
Marek Lindner30da63a2012-08-03 17:15:46 +0200938 primary_if = batadv_seq_print_text_primary_if_get(seq);
939 if (!primary_if)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200940 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000941
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100942 seq_printf(seq,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200943 "Locally retrieved addresses (from %s) announced via TT (TTVN: %u):\n",
944 net_dev->name, (uint8_t)atomic_read(&bat_priv->tt.vn));
Antonio Quartullidd24ddb2013-11-16 12:03:49 +0100945 seq_printf(seq, " %-13s %s %-8s %-9s (%-10s)\n", "Client", "VID",
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200946 "Flags", "Last seen", "CRC");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000947
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000948 for (i = 0; i < hash->size; i++) {
949 head = &hash->table[i];
950
Marek Lindner7aadf882011-02-18 12:28:09 +0000951 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800952 hlist_for_each_entry_rcu(tt_common_entry,
Marek Lindner7aadf882011-02-18 12:28:09 +0000953 head, hash_entry) {
Antonio Quartulli85766a82012-11-08 22:16:16 +0100954 tt_local = container_of(tt_common_entry,
955 struct batadv_tt_local_entry,
956 common);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200957 vid = tt_common_entry->vid;
Antonio Quartulli85766a82012-11-08 22:16:16 +0100958 last_seen_jiffies = jiffies - tt_local->last_seen;
959 last_seen_msecs = jiffies_to_msecs(last_seen_jiffies);
960 last_seen_secs = last_seen_msecs / 1000;
961 last_seen_msecs = last_seen_msecs % 1000;
962
963 no_purge = tt_common_entry->flags & np_flag;
964
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200965 vlan = batadv_softif_vlan_get(bat_priv, vid);
966 if (!vlan) {
967 seq_printf(seq, "Cannot retrieve VLAN %d\n",
968 BATADV_PRINT_VID(vid));
969 continue;
970 }
971
972 seq_printf(seq,
Antonio Quartullidd24ddb2013-11-16 12:03:49 +0100973 " * %pM %4i [%c%c%c%c%c%c] %3u.%03u (%#.8x)\n",
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100974 tt_common_entry->addr,
Antonio Quartulli16052782013-06-04 12:11:41 +0200975 BATADV_PRINT_VID(tt_common_entry->vid),
Sven Eckelmanna2f2b6c2015-04-23 18:22:24 +0200976 ((tt_common_entry->flags &
977 BATADV_TT_CLIENT_ROAM) ? 'R' : '.'),
Antonio Quartulli85766a82012-11-08 22:16:16 +0100978 no_purge ? 'P' : '.',
Sven Eckelmanna2f2b6c2015-04-23 18:22:24 +0200979 ((tt_common_entry->flags &
980 BATADV_TT_CLIENT_NEW) ? 'N' : '.'),
981 ((tt_common_entry->flags &
982 BATADV_TT_CLIENT_PENDING) ? 'X' : '.'),
983 ((tt_common_entry->flags &
984 BATADV_TT_CLIENT_WIFI) ? 'W' : '.'),
985 ((tt_common_entry->flags &
986 BATADV_TT_CLIENT_ISOLA) ? 'I' : '.'),
Antonio Quartullia7966d92013-01-24 11:41:39 +0100987 no_purge ? 0 : last_seen_secs,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200988 no_purge ? 0 : last_seen_msecs,
989 vlan->tt.crc);
990
991 batadv_softif_vlan_free_ref(vlan);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000992 }
Marek Lindner7aadf882011-02-18 12:28:09 +0000993 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000994 }
Marek Lindner32ae9b22011-04-20 15:40:58 +0200995out:
996 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200997 batadv_hardif_free_ref(primary_if);
Marek Lindner30da63a2012-08-03 17:15:46 +0200998 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000999}
1000
Sven Eckelmann56303d32012-06-05 22:31:31 +02001001static void
1002batadv_tt_local_set_pending(struct batadv_priv *bat_priv,
1003 struct batadv_tt_local_entry *tt_local_entry,
1004 uint16_t flags, const char *message)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001005{
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +02001006 batadv_tt_local_event(bat_priv, tt_local_entry, flags);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001007
Antonio Quartulli015758d2011-07-09 17:52:13 +02001008 /* The local client has to be marked as "pending to be removed" but has
1009 * to be kept in the table in order to send it in a full table
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001010 * response issued before the net ttvn increment (consistency check)
1011 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001012 tt_local_entry->common.flags |= BATADV_TT_CLIENT_PENDING;
Antonio Quartullic566dbb2012-01-06 21:31:34 +01001013
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001014 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02001015 "Local tt entry (%pM, vid: %d) pending to be removed: %s\n",
1016 tt_local_entry->common.addr,
1017 BATADV_PRINT_VID(tt_local_entry->common.vid), message);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001018}
1019
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001020/**
1021 * batadv_tt_local_remove - logically remove an entry from the local table
1022 * @bat_priv: the bat priv with all the soft interface information
1023 * @addr: the MAC address of the client to remove
Antonio Quartullic018ad32013-06-04 12:11:39 +02001024 * @vid: VLAN identifier
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001025 * @message: message to append to the log on deletion
1026 * @roaming: true if the deletion is due to a roaming event
1027 *
1028 * Returns the flags assigned to the local entry before being deleted
1029 */
1030uint16_t batadv_tt_local_remove(struct batadv_priv *bat_priv,
Antonio Quartullic018ad32013-06-04 12:11:39 +02001031 const uint8_t *addr, unsigned short vid,
1032 const char *message, bool roaming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001033{
Sven Eckelmann170173b2012-10-07 12:02:22 +02001034 struct batadv_tt_local_entry *tt_local_entry;
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001035 uint16_t flags, curr_flags = BATADV_NO_FLAGS;
Antonio Quartulli35df3b22014-05-08 17:13:15 +02001036 struct batadv_softif_vlan *vlan;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001037
Antonio Quartullic018ad32013-06-04 12:11:39 +02001038 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr, vid);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001039 if (!tt_local_entry)
1040 goto out;
1041
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001042 curr_flags = tt_local_entry->common.flags;
1043
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001044 flags = BATADV_TT_CLIENT_DEL;
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001045 /* if this global entry addition is due to a roaming, the node has to
1046 * mark the local entry as "roamed" in order to correctly reroute
1047 * packets later
1048 */
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02001049 if (roaming) {
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001050 flags |= BATADV_TT_CLIENT_ROAM;
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02001051 /* mark the local client as ROAMed */
1052 tt_local_entry->common.flags |= BATADV_TT_CLIENT_ROAM;
1053 }
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001054
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001055 if (!(tt_local_entry->common.flags & BATADV_TT_CLIENT_NEW)) {
1056 batadv_tt_local_set_pending(bat_priv, tt_local_entry, flags,
1057 message);
1058 goto out;
1059 }
1060 /* if this client has been added right now, it is possible to
1061 * immediately purge it
1062 */
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +02001063 batadv_tt_local_event(bat_priv, tt_local_entry, BATADV_TT_CLIENT_DEL);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001064 hlist_del_rcu(&tt_local_entry->common.hash_entry);
1065 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001066
Antonio Quartulli35df3b22014-05-08 17:13:15 +02001067 /* decrease the reference held for this vlan */
1068 vlan = batadv_softif_vlan_get(bat_priv, vid);
1069 batadv_softif_vlan_free_ref(vlan);
1070 batadv_softif_vlan_free_ref(vlan);
1071
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001072out:
1073 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02001074 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001075
1076 return curr_flags;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001077}
1078
Marek Lindnera19d3d82013-05-27 15:33:25 +08001079/**
1080 * batadv_tt_local_purge_list - purge inactive tt local entries
1081 * @bat_priv: the bat priv with all the soft interface information
1082 * @head: pointer to the list containing the local tt entries
1083 * @timeout: parameter deciding whether a given tt local entry is considered
1084 * inactive or not
1085 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001086static void batadv_tt_local_purge_list(struct batadv_priv *bat_priv,
Marek Lindnera19d3d82013-05-27 15:33:25 +08001087 struct hlist_head *head,
1088 int timeout)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001089{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001090 struct batadv_tt_local_entry *tt_local_entry;
1091 struct batadv_tt_common_entry *tt_common_entry;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001092 struct hlist_node *node_tmp;
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001093
Sasha Levinb67bfe02013-02-27 17:06:00 -08001094 hlist_for_each_entry_safe(tt_common_entry, node_tmp, head,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001095 hash_entry) {
1096 tt_local_entry = container_of(tt_common_entry,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001097 struct batadv_tt_local_entry,
1098 common);
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001099 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_NOPURGE)
1100 continue;
1101
1102 /* entry already marked for deletion */
1103 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING)
1104 continue;
1105
Marek Lindnera19d3d82013-05-27 15:33:25 +08001106 if (!batadv_has_timed_out(tt_local_entry->last_seen, timeout))
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001107 continue;
1108
1109 batadv_tt_local_set_pending(bat_priv, tt_local_entry,
1110 BATADV_TT_CLIENT_DEL, "timed out");
1111 }
1112}
1113
Marek Lindnera19d3d82013-05-27 15:33:25 +08001114/**
1115 * batadv_tt_local_purge - purge inactive tt local entries
1116 * @bat_priv: the bat priv with all the soft interface information
1117 * @timeout: parameter deciding whether a given tt local entry is considered
1118 * inactive or not
1119 */
1120static void batadv_tt_local_purge(struct batadv_priv *bat_priv,
1121 int timeout)
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001122{
Sven Eckelmann807736f2012-07-15 22:26:51 +02001123 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001124 struct hlist_head *head;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001125 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullic90681b2011-10-05 17:05:25 +02001126 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001127
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001128 for (i = 0; i < hash->size; i++) {
1129 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001130 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001131
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001132 spin_lock_bh(list_lock);
Marek Lindnera19d3d82013-05-27 15:33:25 +08001133 batadv_tt_local_purge_list(bat_priv, head, timeout);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001134 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001135 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001136}
1137
Sven Eckelmann56303d32012-06-05 22:31:31 +02001138static void batadv_tt_local_table_free(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001139{
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02001140 struct batadv_hashtable *hash;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001141 spinlock_t *list_lock; /* protects write access to the hash lists */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001142 struct batadv_tt_common_entry *tt_common_entry;
1143 struct batadv_tt_local_entry *tt_local;
Antonio Quartulli35df3b22014-05-08 17:13:15 +02001144 struct batadv_softif_vlan *vlan;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001145 struct hlist_node *node_tmp;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001146 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001147 uint32_t i;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001148
Sven Eckelmann807736f2012-07-15 22:26:51 +02001149 if (!bat_priv->tt.local_hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001150 return;
1151
Sven Eckelmann807736f2012-07-15 22:26:51 +02001152 hash = bat_priv->tt.local_hash;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001153
1154 for (i = 0; i < hash->size; i++) {
1155 head = &hash->table[i];
1156 list_lock = &hash->list_locks[i];
1157
1158 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001159 hlist_for_each_entry_safe(tt_common_entry, node_tmp,
Antonio Quartullia73105b2011-04-27 14:27:44 +02001160 head, hash_entry) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001161 hlist_del_rcu(&tt_common_entry->hash_entry);
Sven Eckelmann56303d32012-06-05 22:31:31 +02001162 tt_local = container_of(tt_common_entry,
1163 struct batadv_tt_local_entry,
1164 common);
Antonio Quartulli35df3b22014-05-08 17:13:15 +02001165
1166 /* decrease the reference held for this vlan */
1167 vlan = batadv_softif_vlan_get(bat_priv,
1168 tt_common_entry->vid);
1169 batadv_softif_vlan_free_ref(vlan);
1170 batadv_softif_vlan_free_ref(vlan);
1171
Sven Eckelmann56303d32012-06-05 22:31:31 +02001172 batadv_tt_local_entry_free_ref(tt_local);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001173 }
1174 spin_unlock_bh(list_lock);
1175 }
1176
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +02001177 batadv_hash_destroy(hash);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001178
Sven Eckelmann807736f2012-07-15 22:26:51 +02001179 bat_priv->tt.local_hash = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001180}
1181
Sven Eckelmann56303d32012-06-05 22:31:31 +02001182static int batadv_tt_global_init(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001183{
Sven Eckelmann807736f2012-07-15 22:26:51 +02001184 if (bat_priv->tt.global_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +02001185 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001186
Sven Eckelmann807736f2012-07-15 22:26:51 +02001187 bat_priv->tt.global_hash = batadv_hash_new(1024);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001188
Sven Eckelmann807736f2012-07-15 22:26:51 +02001189 if (!bat_priv->tt.global_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +02001190 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001191
Antonio Quartullidec05072012-11-10 11:00:32 +01001192 batadv_hash_set_lock_class(bat_priv->tt.global_hash,
1193 &batadv_tt_global_hash_lock_class_key);
1194
Sven Eckelmann5346c352012-05-05 13:27:28 +02001195 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001196}
1197
Sven Eckelmann56303d32012-06-05 22:31:31 +02001198static void batadv_tt_changes_list_free(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001199{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001200 struct batadv_tt_change_node *entry, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001201
Sven Eckelmann807736f2012-07-15 22:26:51 +02001202 spin_lock_bh(&bat_priv->tt.changes_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001203
Sven Eckelmann807736f2012-07-15 22:26:51 +02001204 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
Antonio Quartullia73105b2011-04-27 14:27:44 +02001205 list) {
1206 list_del(&entry->list);
1207 kfree(entry);
1208 }
1209
Sven Eckelmann807736f2012-07-15 22:26:51 +02001210 atomic_set(&bat_priv->tt.local_changes, 0);
1211 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001212}
1213
Antonio Quartullid657e622012-07-01 14:09:12 +02001214/* retrieves the orig_tt_list_entry belonging to orig_node from the
1215 * batadv_tt_global_entry list
1216 *
1217 * returns it with an increased refcounter, NULL if not found
1218 */
1219static struct batadv_tt_orig_list_entry *
1220batadv_tt_global_orig_entry_find(const struct batadv_tt_global_entry *entry,
1221 const struct batadv_orig_node *orig_node)
1222{
1223 struct batadv_tt_orig_list_entry *tmp_orig_entry, *orig_entry = NULL;
1224 const struct hlist_head *head;
Antonio Quartullid657e622012-07-01 14:09:12 +02001225
1226 rcu_read_lock();
1227 head = &entry->orig_list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001228 hlist_for_each_entry_rcu(tmp_orig_entry, head, list) {
Antonio Quartullid657e622012-07-01 14:09:12 +02001229 if (tmp_orig_entry->orig_node != orig_node)
1230 continue;
1231 if (!atomic_inc_not_zero(&tmp_orig_entry->refcount))
1232 continue;
1233
1234 orig_entry = tmp_orig_entry;
1235 break;
1236 }
1237 rcu_read_unlock();
1238
1239 return orig_entry;
1240}
1241
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001242/* find out if an orig_node is already in the list of a tt_global_entry.
Antonio Quartullid657e622012-07-01 14:09:12 +02001243 * returns true if found, false otherwise
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001244 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001245static bool
1246batadv_tt_global_entry_has_orig(const struct batadv_tt_global_entry *entry,
1247 const struct batadv_orig_node *orig_node)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001248{
Antonio Quartullid657e622012-07-01 14:09:12 +02001249 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001250 bool found = false;
1251
Antonio Quartullid657e622012-07-01 14:09:12 +02001252 orig_entry = batadv_tt_global_orig_entry_find(entry, orig_node);
1253 if (orig_entry) {
1254 found = true;
1255 batadv_tt_orig_list_entry_free_ref(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001256 }
Antonio Quartullid657e622012-07-01 14:09:12 +02001257
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001258 return found;
1259}
1260
Sven Eckelmanna5130882012-05-16 20:23:16 +02001261static void
Antonio Quartullid657e622012-07-01 14:09:12 +02001262batadv_tt_global_orig_entry_add(struct batadv_tt_global_entry *tt_global,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001263 struct batadv_orig_node *orig_node, int ttvn)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001264{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001265 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001266
Antonio Quartullid657e622012-07-01 14:09:12 +02001267 orig_entry = batadv_tt_global_orig_entry_find(tt_global, orig_node);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001268 if (orig_entry) {
1269 /* refresh the ttvn: the current value could be a bogus one that
1270 * was added during a "temporary client detection"
1271 */
1272 orig_entry->ttvn = ttvn;
Antonio Quartullid657e622012-07-01 14:09:12 +02001273 goto out;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001274 }
Antonio Quartullid657e622012-07-01 14:09:12 +02001275
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001276 orig_entry = kzalloc(sizeof(*orig_entry), GFP_ATOMIC);
1277 if (!orig_entry)
Antonio Quartullid657e622012-07-01 14:09:12 +02001278 goto out;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001279
1280 INIT_HLIST_NODE(&orig_entry->list);
1281 atomic_inc(&orig_node->refcount);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001282 batadv_tt_global_size_inc(orig_node, tt_global->common.vid);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001283 orig_entry->orig_node = orig_node;
1284 orig_entry->ttvn = ttvn;
Antonio Quartullid657e622012-07-01 14:09:12 +02001285 atomic_set(&orig_entry->refcount, 2);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001286
Antonio Quartullid657e622012-07-01 14:09:12 +02001287 spin_lock_bh(&tt_global->list_lock);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001288 hlist_add_head_rcu(&orig_entry->list,
Antonio Quartullid657e622012-07-01 14:09:12 +02001289 &tt_global->orig_list);
1290 spin_unlock_bh(&tt_global->list_lock);
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01001291 atomic_inc(&tt_global->orig_list_count);
1292
Antonio Quartullid657e622012-07-01 14:09:12 +02001293out:
1294 if (orig_entry)
1295 batadv_tt_orig_list_entry_free_ref(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001296}
1297
Antonio Quartullid4ff40f2013-04-18 15:13:01 +02001298/**
1299 * batadv_tt_global_add - add a new TT global entry or update an existing one
1300 * @bat_priv: the bat priv with all the soft interface information
1301 * @orig_node: the originator announcing the client
1302 * @tt_addr: the mac address of the non-mesh client
Antonio Quartullic018ad32013-06-04 12:11:39 +02001303 * @vid: VLAN identifier
Antonio Quartullid4ff40f2013-04-18 15:13:01 +02001304 * @flags: TT flags that have to be set for this non-mesh client
1305 * @ttvn: the tt version number ever announcing this non-mesh client
1306 *
1307 * Add a new TT global entry for the given originator. If the entry already
1308 * exists add a new reference to the given originator (a global entry can have
1309 * references to multiple originators) and adjust the flags attribute to reflect
1310 * the function argument.
1311 * If a TT local entry exists for this non-mesh client remove it.
1312 *
1313 * The caller must hold orig_node refcount.
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001314 *
1315 * Return true if the new entry has been added, false otherwise
Antonio Quartullid4ff40f2013-04-18 15:13:01 +02001316 */
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001317static bool batadv_tt_global_add(struct batadv_priv *bat_priv,
1318 struct batadv_orig_node *orig_node,
Antonio Quartullic018ad32013-06-04 12:11:39 +02001319 const unsigned char *tt_addr,
1320 unsigned short vid, uint16_t flags,
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001321 uint8_t ttvn)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001322{
Sven Eckelmann170173b2012-10-07 12:02:22 +02001323 struct batadv_tt_global_entry *tt_global_entry;
1324 struct batadv_tt_local_entry *tt_local_entry;
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001325 bool ret = false;
Simon Wunderlich80b3f582011-11-02 20:26:45 +01001326 int hash_added;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001327 struct batadv_tt_common_entry *common;
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001328 uint16_t local_flags;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001329
Antonio Quartullicfd4f752013-08-07 18:28:56 +02001330 /* ignore global entries from backbone nodes */
1331 if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig, vid))
1332 return true;
1333
Antonio Quartullic018ad32013-06-04 12:11:39 +02001334 tt_global_entry = batadv_tt_global_hash_find(bat_priv, tt_addr, vid);
1335 tt_local_entry = batadv_tt_local_hash_find(bat_priv, tt_addr, vid);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001336
1337 /* if the node already has a local client for this entry, it has to wait
1338 * for a roaming advertisement instead of manually messing up the global
1339 * table
1340 */
1341 if ((flags & BATADV_TT_CLIENT_TEMP) && tt_local_entry &&
1342 !(tt_local_entry->common.flags & BATADV_TT_CLIENT_NEW))
1343 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001344
Antonio Quartullia73105b2011-04-27 14:27:44 +02001345 if (!tt_global_entry) {
Antonio Quartullid4f44692012-05-25 00:00:54 +02001346 tt_global_entry = kzalloc(sizeof(*tt_global_entry), GFP_ATOMIC);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001347 if (!tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001348 goto out;
1349
Sven Eckelmannc0a55922012-05-12 13:48:55 +02001350 common = &tt_global_entry->common;
Antonio Quartulli8fdd0152014-01-22 00:42:11 +01001351 ether_addr_copy(common->addr, tt_addr);
Antonio Quartullic018ad32013-06-04 12:11:39 +02001352 common->vid = vid;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001353
Antonio Quartullid4f44692012-05-25 00:00:54 +02001354 common->flags = flags;
Antonio Quartullicc47f662011-04-27 14:27:57 +02001355 tt_global_entry->roam_at = 0;
Antonio Quartullifdf79322012-08-24 17:54:07 +02001356 /* node must store current time in case of roaming. This is
1357 * needed to purge this entry out on timeout (if nobody claims
1358 * it)
1359 */
1360 if (flags & BATADV_TT_CLIENT_ROAM)
1361 tt_global_entry->roam_at = jiffies;
Sven Eckelmannc0a55922012-05-12 13:48:55 +02001362 atomic_set(&common->refcount, 2);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001363 common->added_at = jiffies;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001364
1365 INIT_HLIST_HEAD(&tt_global_entry->orig_list);
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01001366 atomic_set(&tt_global_entry->orig_list_count, 0);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001367 spin_lock_init(&tt_global_entry->list_lock);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001368
Sven Eckelmann807736f2012-07-15 22:26:51 +02001369 hash_added = batadv_hash_add(bat_priv->tt.global_hash,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001370 batadv_compare_tt,
Antonio Quartullic018ad32013-06-04 12:11:39 +02001371 batadv_choose_tt, common,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001372 &common->hash_entry);
Simon Wunderlich80b3f582011-11-02 20:26:45 +01001373
1374 if (unlikely(hash_added != 0)) {
1375 /* remove the reference for the hash */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001376 batadv_tt_global_entry_free_ref(tt_global_entry);
Simon Wunderlich80b3f582011-11-02 20:26:45 +01001377 goto out_remove;
1378 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02001379 } else {
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001380 common = &tt_global_entry->common;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001381 /* If there is already a global entry, we can use this one for
1382 * our processing.
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001383 * But if we are trying to add a temporary client then here are
1384 * two options at this point:
1385 * 1) the global client is not a temporary client: the global
1386 * client has to be left as it is, temporary information
1387 * should never override any already known client state
1388 * 2) the global client is a temporary client: purge the
1389 * originator list and add the new one orig_entry
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001390 */
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001391 if (flags & BATADV_TT_CLIENT_TEMP) {
1392 if (!(common->flags & BATADV_TT_CLIENT_TEMP))
1393 goto out;
1394 if (batadv_tt_global_entry_has_orig(tt_global_entry,
1395 orig_node))
1396 goto out_remove;
1397 batadv_tt_global_del_orig_list(tt_global_entry);
1398 goto add_orig_entry;
1399 }
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001400
1401 /* if the client was temporary added before receiving the first
1402 * OGM announcing it, we have to clear the TEMP flag
1403 */
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001404 common->flags &= ~BATADV_TT_CLIENT_TEMP;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001405
Antonio Quartullie9c001362012-11-07 15:05:33 +01001406 /* the change can carry possible "attribute" flags like the
1407 * TT_CLIENT_WIFI, therefore they have to be copied in the
1408 * client entry
1409 */
1410 tt_global_entry->common.flags |= flags;
1411
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001412 /* If there is the BATADV_TT_CLIENT_ROAM flag set, there is only
1413 * one originator left in the list and we previously received a
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001414 * delete + roaming change for this originator.
1415 *
1416 * We should first delete the old originator before adding the
1417 * new one.
1418 */
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001419 if (common->flags & BATADV_TT_CLIENT_ROAM) {
Sven Eckelmanna5130882012-05-16 20:23:16 +02001420 batadv_tt_global_del_orig_list(tt_global_entry);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001421 common->flags &= ~BATADV_TT_CLIENT_ROAM;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001422 tt_global_entry->roam_at = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001423 }
1424 }
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001425add_orig_entry:
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001426 /* add the new orig_entry (if needed) or update it */
Antonio Quartullid657e622012-07-01 14:09:12 +02001427 batadv_tt_global_orig_entry_add(tt_global_entry, orig_node, ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001428
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001429 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02001430 "Creating new global tt entry: %pM (vid: %d, via %pM)\n",
1431 common->addr, BATADV_PRINT_VID(common->vid),
1432 orig_node->orig);
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001433 ret = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001434
Simon Wunderlich80b3f582011-11-02 20:26:45 +01001435out_remove:
Linus Lüssingc5caf4e2014-02-15 17:47:49 +01001436 /* Do not remove multicast addresses from the local hash on
1437 * global additions
1438 */
1439 if (is_multicast_ether_addr(tt_addr))
1440 goto out;
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001441
Antonio Quartullia73105b2011-04-27 14:27:44 +02001442 /* remove address from local hash if present */
Antonio Quartullic018ad32013-06-04 12:11:39 +02001443 local_flags = batadv_tt_local_remove(bat_priv, tt_addr, vid,
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001444 "global tt received",
Antonio Quartullic1d07432013-01-15 22:17:19 +10001445 flags & BATADV_TT_CLIENT_ROAM);
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001446 tt_global_entry->common.flags |= local_flags & BATADV_TT_CLIENT_WIFI;
1447
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001448 if (!(flags & BATADV_TT_CLIENT_ROAM))
1449 /* this is a normal global add. Therefore the client is not in a
1450 * roaming state anymore.
1451 */
1452 tt_global_entry->common.flags &= ~BATADV_TT_CLIENT_ROAM;
1453
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001454out:
1455 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02001456 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001457 if (tt_local_entry)
1458 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001459 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001460}
1461
Simon Wunderlich1b371d12014-01-15 21:17:54 +01001462/**
1463 * batadv_transtable_best_orig - Get best originator list entry from tt entry
Antonio Quartulli46274562013-09-03 11:10:24 +02001464 * @bat_priv: the bat priv with all the soft interface information
Sven Eckelmann981d8902012-10-07 13:34:15 +02001465 * @tt_global_entry: global translation table entry to be analyzed
1466 *
1467 * This functon assumes the caller holds rcu_read_lock().
1468 * Returns best originator list entry or NULL on errors.
1469 */
1470static struct batadv_tt_orig_list_entry *
Antonio Quartulli46274562013-09-03 11:10:24 +02001471batadv_transtable_best_orig(struct batadv_priv *bat_priv,
1472 struct batadv_tt_global_entry *tt_global_entry)
Sven Eckelmann981d8902012-10-07 13:34:15 +02001473{
Antonio Quartulli46274562013-09-03 11:10:24 +02001474 struct batadv_neigh_node *router, *best_router = NULL;
1475 struct batadv_algo_ops *bao = bat_priv->bat_algo_ops;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001476 struct hlist_head *head;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001477 struct batadv_tt_orig_list_entry *orig_entry, *best_entry = NULL;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001478
1479 head = &tt_global_entry->orig_list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001480 hlist_for_each_entry_rcu(orig_entry, head, list) {
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001481 router = batadv_orig_router_get(orig_entry->orig_node,
1482 BATADV_IF_DEFAULT);
Sven Eckelmann981d8902012-10-07 13:34:15 +02001483 if (!router)
1484 continue;
1485
Antonio Quartulli46274562013-09-03 11:10:24 +02001486 if (best_router &&
Simon Wunderlich89652332013-11-13 19:14:46 +01001487 bao->bat_neigh_cmp(router, BATADV_IF_DEFAULT,
1488 best_router, BATADV_IF_DEFAULT) <= 0) {
Antonio Quartulli46274562013-09-03 11:10:24 +02001489 batadv_neigh_node_free_ref(router);
1490 continue;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001491 }
1492
Antonio Quartulli46274562013-09-03 11:10:24 +02001493 /* release the refcount for the "old" best */
1494 if (best_router)
1495 batadv_neigh_node_free_ref(best_router);
1496
1497 best_entry = orig_entry;
1498 best_router = router;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001499 }
1500
Antonio Quartulli46274562013-09-03 11:10:24 +02001501 if (best_router)
1502 batadv_neigh_node_free_ref(best_router);
1503
Sven Eckelmann981d8902012-10-07 13:34:15 +02001504 return best_entry;
1505}
1506
Simon Wunderlich1b371d12014-01-15 21:17:54 +01001507/**
1508 * batadv_tt_global_print_entry - print all orig nodes who announce the address
1509 * for this global entry
Antonio Quartulli46274562013-09-03 11:10:24 +02001510 * @bat_priv: the bat priv with all the soft interface information
Sven Eckelmann981d8902012-10-07 13:34:15 +02001511 * @tt_global_entry: global translation table entry to be printed
1512 * @seq: debugfs table seq_file struct
1513 *
1514 * This functon assumes the caller holds rcu_read_lock().
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001515 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001516static void
Antonio Quartulli46274562013-09-03 11:10:24 +02001517batadv_tt_global_print_entry(struct batadv_priv *bat_priv,
1518 struct batadv_tt_global_entry *tt_global_entry,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001519 struct seq_file *seq)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001520{
Sven Eckelmann981d8902012-10-07 13:34:15 +02001521 struct batadv_tt_orig_list_entry *orig_entry, *best_entry;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001522 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001523 struct batadv_orig_node_vlan *vlan;
1524 struct hlist_head *head;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001525 uint8_t last_ttvn;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001526 uint16_t flags;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001527
1528 tt_common_entry = &tt_global_entry->common;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001529 flags = tt_common_entry->flags;
1530
Antonio Quartulli46274562013-09-03 11:10:24 +02001531 best_entry = batadv_transtable_best_orig(bat_priv, tt_global_entry);
Sven Eckelmann981d8902012-10-07 13:34:15 +02001532 if (best_entry) {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001533 vlan = batadv_orig_node_vlan_get(best_entry->orig_node,
1534 tt_common_entry->vid);
1535 if (!vlan) {
1536 seq_printf(seq,
1537 " * Cannot retrieve VLAN %d for originator %pM\n",
1538 BATADV_PRINT_VID(tt_common_entry->vid),
1539 best_entry->orig_node->orig);
1540 goto print_list;
1541 }
1542
Sven Eckelmann981d8902012-10-07 13:34:15 +02001543 last_ttvn = atomic_read(&best_entry->orig_node->last_ttvn);
Antonio Quartullif9d8a532012-11-19 09:01:42 +01001544 seq_printf(seq,
Antonio Quartullidd24ddb2013-11-16 12:03:49 +01001545 " %c %pM %4i (%3u) via %pM (%3u) (%#.8x) [%c%c%c%c]\n",
Sven Eckelmann981d8902012-10-07 13:34:15 +02001546 '*', tt_global_entry->common.addr,
Antonio Quartulli16052782013-06-04 12:11:41 +02001547 BATADV_PRINT_VID(tt_global_entry->common.vid),
Sven Eckelmann981d8902012-10-07 13:34:15 +02001548 best_entry->ttvn, best_entry->orig_node->orig,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001549 last_ttvn, vlan->tt.crc,
Sven Eckelmanna2f2b6c2015-04-23 18:22:24 +02001550 ((flags & BATADV_TT_CLIENT_ROAM) ? 'R' : '.'),
1551 ((flags & BATADV_TT_CLIENT_WIFI) ? 'W' : '.'),
1552 ((flags & BATADV_TT_CLIENT_ISOLA) ? 'I' : '.'),
1553 ((flags & BATADV_TT_CLIENT_TEMP) ? 'T' : '.'));
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001554
1555 batadv_orig_node_vlan_free_ref(vlan);
Sven Eckelmann981d8902012-10-07 13:34:15 +02001556 }
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001557
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001558print_list:
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001559 head = &tt_global_entry->orig_list;
1560
Sasha Levinb67bfe02013-02-27 17:06:00 -08001561 hlist_for_each_entry_rcu(orig_entry, head, list) {
Sven Eckelmann981d8902012-10-07 13:34:15 +02001562 if (best_entry == orig_entry)
1563 continue;
1564
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001565 vlan = batadv_orig_node_vlan_get(orig_entry->orig_node,
1566 tt_common_entry->vid);
1567 if (!vlan) {
1568 seq_printf(seq,
1569 " + Cannot retrieve VLAN %d for originator %pM\n",
1570 BATADV_PRINT_VID(tt_common_entry->vid),
1571 orig_entry->orig_node->orig);
1572 continue;
1573 }
1574
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001575 last_ttvn = atomic_read(&orig_entry->orig_node->last_ttvn);
Antonio Quartulli16052782013-06-04 12:11:41 +02001576 seq_printf(seq,
Antonio Quartullidd24ddb2013-11-16 12:03:49 +01001577 " %c %pM %4d (%3u) via %pM (%3u) (%#.8x) [%c%c%c%c]\n",
Sven Eckelmann981d8902012-10-07 13:34:15 +02001578 '+', tt_global_entry->common.addr,
Antonio Quartulli16052782013-06-04 12:11:41 +02001579 BATADV_PRINT_VID(tt_global_entry->common.vid),
Sven Eckelmann981d8902012-10-07 13:34:15 +02001580 orig_entry->ttvn, orig_entry->orig_node->orig,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001581 last_ttvn, vlan->tt.crc,
Sven Eckelmanna2f2b6c2015-04-23 18:22:24 +02001582 ((flags & BATADV_TT_CLIENT_ROAM) ? 'R' : '.'),
1583 ((flags & BATADV_TT_CLIENT_WIFI) ? 'W' : '.'),
1584 ((flags & BATADV_TT_CLIENT_ISOLA) ? 'I' : '.'),
1585 ((flags & BATADV_TT_CLIENT_TEMP) ? 'T' : '.'));
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001586
1587 batadv_orig_node_vlan_free_ref(vlan);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001588 }
1589}
1590
Sven Eckelmann08c36d32012-05-12 02:09:39 +02001591int batadv_tt_global_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001592{
1593 struct net_device *net_dev = (struct net_device *)seq->private;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001594 struct batadv_priv *bat_priv = netdev_priv(net_dev);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001595 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001596 struct batadv_tt_common_entry *tt_common_entry;
1597 struct batadv_tt_global_entry *tt_global;
1598 struct batadv_hard_iface *primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001599 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001600 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001601
Marek Lindner30da63a2012-08-03 17:15:46 +02001602 primary_if = batadv_seq_print_text_primary_if_get(seq);
1603 if (!primary_if)
Marek Lindner32ae9b22011-04-20 15:40:58 +02001604 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001605
Antonio Quartulli2dafb492011-05-05 08:42:45 +02001606 seq_printf(seq,
1607 "Globally announced TT entries received via the mesh %s\n",
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001608 net_dev->name);
Antonio Quartulli16052782013-06-04 12:11:41 +02001609 seq_printf(seq, " %-13s %s %s %-15s %s (%-10s) %s\n",
1610 "Client", "VID", "(TTVN)", "Originator", "(Curr TTVN)",
1611 "CRC", "Flags");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001612
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001613 for (i = 0; i < hash->size; i++) {
1614 head = &hash->table[i];
1615
Marek Lindner7aadf882011-02-18 12:28:09 +00001616 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001617 hlist_for_each_entry_rcu(tt_common_entry,
Marek Lindner7aadf882011-02-18 12:28:09 +00001618 head, hash_entry) {
Sven Eckelmann56303d32012-06-05 22:31:31 +02001619 tt_global = container_of(tt_common_entry,
1620 struct batadv_tt_global_entry,
1621 common);
Antonio Quartulli46274562013-09-03 11:10:24 +02001622 batadv_tt_global_print_entry(bat_priv, tt_global, seq);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001623 }
Marek Lindner7aadf882011-02-18 12:28:09 +00001624 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001625 }
Marek Lindner32ae9b22011-04-20 15:40:58 +02001626out:
1627 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001628 batadv_hardif_free_ref(primary_if);
Marek Lindner30da63a2012-08-03 17:15:46 +02001629 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001630}
1631
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01001632/**
1633 * batadv_tt_global_del_orig_entry - remove and free an orig_entry
1634 * @tt_global_entry: the global entry to remove the orig_entry from
1635 * @orig_entry: the orig entry to remove and free
1636 *
1637 * Remove an orig_entry from its list in the given tt_global_entry and
1638 * free this orig_entry afterwards.
1639 */
1640static void
1641batadv_tt_global_del_orig_entry(struct batadv_tt_global_entry *tt_global_entry,
1642 struct batadv_tt_orig_list_entry *orig_entry)
1643{
1644 batadv_tt_global_size_dec(orig_entry->orig_node,
1645 tt_global_entry->common.vid);
1646 atomic_dec(&tt_global_entry->orig_list_count);
1647 hlist_del_rcu(&orig_entry->list);
1648 batadv_tt_orig_list_entry_free_ref(orig_entry);
1649}
1650
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001651/* deletes the orig list of a tt_global_entry */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001652static void
Sven Eckelmann56303d32012-06-05 22:31:31 +02001653batadv_tt_global_del_orig_list(struct batadv_tt_global_entry *tt_global_entry)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001654{
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001655 struct hlist_head *head;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001656 struct hlist_node *safe;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001657 struct batadv_tt_orig_list_entry *orig_entry;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001658
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001659 spin_lock_bh(&tt_global_entry->list_lock);
1660 head = &tt_global_entry->orig_list;
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01001661 hlist_for_each_entry_safe(orig_entry, safe, head, list)
1662 batadv_tt_global_del_orig_entry(tt_global_entry, orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001663 spin_unlock_bh(&tt_global_entry->list_lock);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001664}
1665
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01001666/**
1667 * batadv_tt_global_del_orig_node - remove orig_node from a global tt entry
1668 * @bat_priv: the bat priv with all the soft interface information
1669 * @tt_global_entry: the global entry to remove the orig_node from
1670 * @orig_node: the originator announcing the client
1671 * @message: message to append to the log on deletion
1672 *
1673 * Remove the given orig_node and its according orig_entry from the given
1674 * global tt entry.
1675 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001676static void
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01001677batadv_tt_global_del_orig_node(struct batadv_priv *bat_priv,
1678 struct batadv_tt_global_entry *tt_global_entry,
1679 struct batadv_orig_node *orig_node,
1680 const char *message)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001681{
1682 struct hlist_head *head;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001683 struct hlist_node *safe;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001684 struct batadv_tt_orig_list_entry *orig_entry;
Antonio Quartulli16052782013-06-04 12:11:41 +02001685 unsigned short vid;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001686
1687 spin_lock_bh(&tt_global_entry->list_lock);
1688 head = &tt_global_entry->orig_list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001689 hlist_for_each_entry_safe(orig_entry, safe, head, list) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001690 if (orig_entry->orig_node == orig_node) {
Antonio Quartulli16052782013-06-04 12:11:41 +02001691 vid = tt_global_entry->common.vid;
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001692 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02001693 "Deleting %pM from global tt entry %pM (vid: %d): %s\n",
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001694 orig_node->orig,
Antonio Quartulli16052782013-06-04 12:11:41 +02001695 tt_global_entry->common.addr,
1696 BATADV_PRINT_VID(vid), message);
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01001697 batadv_tt_global_del_orig_entry(tt_global_entry,
1698 orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001699 }
1700 }
1701 spin_unlock_bh(&tt_global_entry->list_lock);
1702}
1703
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001704/* If the client is to be deleted, we check if it is the last origantor entry
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001705 * within tt_global entry. If yes, we set the BATADV_TT_CLIENT_ROAM flag and the
1706 * timer, otherwise we simply remove the originator scheduled for deletion.
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001707 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001708static void
Sven Eckelmann56303d32012-06-05 22:31:31 +02001709batadv_tt_global_del_roaming(struct batadv_priv *bat_priv,
1710 struct batadv_tt_global_entry *tt_global_entry,
1711 struct batadv_orig_node *orig_node,
1712 const char *message)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001713{
1714 bool last_entry = true;
1715 struct hlist_head *head;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001716 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001717
1718 /* no local entry exists, case 1:
1719 * Check if this is the last one or if other entries exist.
1720 */
1721
1722 rcu_read_lock();
1723 head = &tt_global_entry->orig_list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001724 hlist_for_each_entry_rcu(orig_entry, head, list) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001725 if (orig_entry->orig_node != orig_node) {
1726 last_entry = false;
1727 break;
1728 }
1729 }
1730 rcu_read_unlock();
1731
1732 if (last_entry) {
1733 /* its the last one, mark for roaming. */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001734 tt_global_entry->common.flags |= BATADV_TT_CLIENT_ROAM;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001735 tt_global_entry->roam_at = jiffies;
1736 } else
1737 /* there is another entry, we can simply delete this
1738 * one and can still use the other one.
1739 */
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01001740 batadv_tt_global_del_orig_node(bat_priv, tt_global_entry,
1741 orig_node, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001742}
1743
Antonio Quartullic018ad32013-06-04 12:11:39 +02001744/**
1745 * batadv_tt_global_del - remove a client from the global table
1746 * @bat_priv: the bat priv with all the soft interface information
1747 * @orig_node: an originator serving this client
1748 * @addr: the mac address of the client
1749 * @vid: VLAN identifier
1750 * @message: a message explaining the reason for deleting the client to print
1751 * for debugging purpose
1752 * @roaming: true if the deletion has been triggered by a roaming event
1753 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001754static void batadv_tt_global_del(struct batadv_priv *bat_priv,
1755 struct batadv_orig_node *orig_node,
Antonio Quartullic018ad32013-06-04 12:11:39 +02001756 const unsigned char *addr, unsigned short vid,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001757 const char *message, bool roaming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001758{
Sven Eckelmann170173b2012-10-07 12:02:22 +02001759 struct batadv_tt_global_entry *tt_global_entry;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001760 struct batadv_tt_local_entry *local_entry = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001761
Antonio Quartullic018ad32013-06-04 12:11:39 +02001762 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001763 if (!tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001764 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001765
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001766 if (!roaming) {
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01001767 batadv_tt_global_del_orig_node(bat_priv, tt_global_entry,
1768 orig_node, message);
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001769
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001770 if (hlist_empty(&tt_global_entry->orig_list))
Antonio Quartullibe73b482012-09-23 22:38:36 +02001771 batadv_tt_global_free(bat_priv, tt_global_entry,
1772 message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001773
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001774 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001775 }
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001776
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001777 /* if we are deleting a global entry due to a roam
1778 * event, there are two possibilities:
1779 * 1) the client roamed from node A to node B => if there
1780 * is only one originator left for this client, we mark
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001781 * it with BATADV_TT_CLIENT_ROAM, we start a timer and we
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001782 * wait for node B to claim it. In case of timeout
1783 * the entry is purged.
1784 *
1785 * If there are other originators left, we directly delete
1786 * the originator.
1787 * 2) the client roamed to us => we can directly delete
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001788 * the global entry, since it is useless now.
1789 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001790 local_entry = batadv_tt_local_hash_find(bat_priv,
Antonio Quartullic018ad32013-06-04 12:11:39 +02001791 tt_global_entry->common.addr,
1792 vid);
Sven Eckelmanna5130882012-05-16 20:23:16 +02001793 if (local_entry) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001794 /* local entry exists, case 2: client roamed to us. */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001795 batadv_tt_global_del_orig_list(tt_global_entry);
Antonio Quartullibe73b482012-09-23 22:38:36 +02001796 batadv_tt_global_free(bat_priv, tt_global_entry, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001797 } else
1798 /* no local entry exists, case 1: check for roaming */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001799 batadv_tt_global_del_roaming(bat_priv, tt_global_entry,
1800 orig_node, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001801
Antonio Quartullicc47f662011-04-27 14:27:57 +02001802out:
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001803 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02001804 batadv_tt_global_entry_free_ref(tt_global_entry);
1805 if (local_entry)
1806 batadv_tt_local_entry_free_ref(local_entry);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001807}
1808
Antonio Quartulli95fb1302013-08-07 18:28:55 +02001809/**
1810 * batadv_tt_global_del_orig - remove all the TT global entries belonging to the
1811 * given originator matching the provided vid
1812 * @bat_priv: the bat priv with all the soft interface information
1813 * @orig_node: the originator owning the entries to remove
1814 * @match_vid: the VLAN identifier to match. If negative all the entries will be
1815 * removed
1816 * @message: debug message to print as "reason"
1817 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001818void batadv_tt_global_del_orig(struct batadv_priv *bat_priv,
1819 struct batadv_orig_node *orig_node,
Antonio Quartulli95fb1302013-08-07 18:28:55 +02001820 int32_t match_vid,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001821 const char *message)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001822{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001823 struct batadv_tt_global_entry *tt_global;
1824 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001825 uint32_t i;
Sven Eckelmann807736f2012-07-15 22:26:51 +02001826 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001827 struct hlist_node *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001828 struct hlist_head *head;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001829 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartulli16052782013-06-04 12:11:41 +02001830 unsigned short vid;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001831
Simon Wunderlich6e801492011-10-19 10:28:26 +02001832 if (!hash)
1833 return;
1834
Antonio Quartullia73105b2011-04-27 14:27:44 +02001835 for (i = 0; i < hash->size; i++) {
1836 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001837 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001838
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001839 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001840 hlist_for_each_entry_safe(tt_common_entry, safe,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +01001841 head, hash_entry) {
Antonio Quartulli95fb1302013-08-07 18:28:55 +02001842 /* remove only matching entries */
1843 if (match_vid >= 0 && tt_common_entry->vid != match_vid)
1844 continue;
1845
Sven Eckelmann56303d32012-06-05 22:31:31 +02001846 tt_global = container_of(tt_common_entry,
1847 struct batadv_tt_global_entry,
1848 common);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001849
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01001850 batadv_tt_global_del_orig_node(bat_priv, tt_global,
1851 orig_node, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001852
Sven Eckelmann56303d32012-06-05 22:31:31 +02001853 if (hlist_empty(&tt_global->orig_list)) {
Antonio Quartulli16052782013-06-04 12:11:41 +02001854 vid = tt_global->common.vid;
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001855 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02001856 "Deleting global tt entry %pM (vid: %d): %s\n",
1857 tt_global->common.addr,
1858 BATADV_PRINT_VID(vid), message);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001859 hlist_del_rcu(&tt_common_entry->hash_entry);
Sven Eckelmann56303d32012-06-05 22:31:31 +02001860 batadv_tt_global_entry_free_ref(tt_global);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001861 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02001862 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001863 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001864 }
Linus Lüssinge17931d2014-02-15 17:47:50 +01001865 orig_node->capa_initialized &= ~BATADV_ORIG_CAPA_HAS_TT;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001866}
1867
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001868static bool batadv_tt_global_to_purge(struct batadv_tt_global_entry *tt_global,
1869 char **msg)
Antonio Quartullicc47f662011-04-27 14:27:57 +02001870{
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001871 bool purge = false;
1872 unsigned long roam_timeout = BATADV_TT_CLIENT_ROAM_TIMEOUT;
1873 unsigned long temp_timeout = BATADV_TT_CLIENT_TEMP_TIMEOUT;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001874
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001875 if ((tt_global->common.flags & BATADV_TT_CLIENT_ROAM) &&
1876 batadv_has_timed_out(tt_global->roam_at, roam_timeout)) {
1877 purge = true;
1878 *msg = "Roaming timeout\n";
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001879 }
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001880
1881 if ((tt_global->common.flags & BATADV_TT_CLIENT_TEMP) &&
1882 batadv_has_timed_out(tt_global->common.added_at, temp_timeout)) {
1883 purge = true;
1884 *msg = "Temporary client timeout\n";
1885 }
1886
1887 return purge;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001888}
1889
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001890static void batadv_tt_global_purge(struct batadv_priv *bat_priv)
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001891{
Sven Eckelmann807736f2012-07-15 22:26:51 +02001892 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Antonio Quartullicc47f662011-04-27 14:27:57 +02001893 struct hlist_head *head;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001894 struct hlist_node *node_tmp;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001895 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullic90681b2011-10-05 17:05:25 +02001896 uint32_t i;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001897 char *msg = NULL;
1898 struct batadv_tt_common_entry *tt_common;
1899 struct batadv_tt_global_entry *tt_global;
Antonio Quartullicc47f662011-04-27 14:27:57 +02001900
Antonio Quartullicc47f662011-04-27 14:27:57 +02001901 for (i = 0; i < hash->size; i++) {
1902 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001903 list_lock = &hash->list_locks[i];
Antonio Quartullicc47f662011-04-27 14:27:57 +02001904
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001905 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001906 hlist_for_each_entry_safe(tt_common, node_tmp, head,
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001907 hash_entry) {
1908 tt_global = container_of(tt_common,
1909 struct batadv_tt_global_entry,
1910 common);
1911
1912 if (!batadv_tt_global_to_purge(tt_global, &msg))
1913 continue;
1914
1915 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02001916 "Deleting global tt entry %pM (vid: %d): %s\n",
1917 tt_global->common.addr,
1918 BATADV_PRINT_VID(tt_global->common.vid),
1919 msg);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001920
Sasha Levinb67bfe02013-02-27 17:06:00 -08001921 hlist_del_rcu(&tt_common->hash_entry);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001922
1923 batadv_tt_global_entry_free_ref(tt_global);
1924 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001925 spin_unlock_bh(list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02001926 }
Antonio Quartullicc47f662011-04-27 14:27:57 +02001927}
1928
Sven Eckelmann56303d32012-06-05 22:31:31 +02001929static void batadv_tt_global_table_free(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001930{
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02001931 struct batadv_hashtable *hash;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001932 spinlock_t *list_lock; /* protects write access to the hash lists */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001933 struct batadv_tt_common_entry *tt_common_entry;
1934 struct batadv_tt_global_entry *tt_global;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001935 struct hlist_node *node_tmp;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001936 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001937 uint32_t i;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001938
Sven Eckelmann807736f2012-07-15 22:26:51 +02001939 if (!bat_priv->tt.global_hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001940 return;
1941
Sven Eckelmann807736f2012-07-15 22:26:51 +02001942 hash = bat_priv->tt.global_hash;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001943
1944 for (i = 0; i < hash->size; i++) {
1945 head = &hash->table[i];
1946 list_lock = &hash->list_locks[i];
1947
1948 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001949 hlist_for_each_entry_safe(tt_common_entry, node_tmp,
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001950 head, hash_entry) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001951 hlist_del_rcu(&tt_common_entry->hash_entry);
Sven Eckelmann56303d32012-06-05 22:31:31 +02001952 tt_global = container_of(tt_common_entry,
1953 struct batadv_tt_global_entry,
1954 common);
1955 batadv_tt_global_entry_free_ref(tt_global);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001956 }
1957 spin_unlock_bh(list_lock);
1958 }
1959
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +02001960 batadv_hash_destroy(hash);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001961
Sven Eckelmann807736f2012-07-15 22:26:51 +02001962 bat_priv->tt.global_hash = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001963}
1964
Sven Eckelmann56303d32012-06-05 22:31:31 +02001965static bool
1966_batadv_is_ap_isolated(struct batadv_tt_local_entry *tt_local_entry,
1967 struct batadv_tt_global_entry *tt_global_entry)
Antonio Quartulli59b699c2011-07-07 15:35:36 +02001968{
1969 bool ret = false;
1970
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001971 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_WIFI &&
1972 tt_global_entry->common.flags & BATADV_TT_CLIENT_WIFI)
Antonio Quartulli59b699c2011-07-07 15:35:36 +02001973 ret = true;
1974
Antonio Quartulli2d2fcc2a2013-11-16 12:03:50 +01001975 /* check if the two clients are marked as isolated */
1976 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_ISOLA &&
1977 tt_global_entry->common.flags & BATADV_TT_CLIENT_ISOLA)
1978 ret = true;
1979
Antonio Quartulli59b699c2011-07-07 15:35:36 +02001980 return ret;
1981}
1982
Antonio Quartullic018ad32013-06-04 12:11:39 +02001983/**
1984 * batadv_transtable_search - get the mesh destination for a given client
1985 * @bat_priv: the bat priv with all the soft interface information
1986 * @src: mac address of the source client
1987 * @addr: mac address of the destination client
1988 * @vid: VLAN identifier
1989 *
1990 * Returns a pointer to the originator that was selected as destination in the
1991 * mesh for contacting the client 'addr', NULL otherwise.
1992 * In case of multiple originators serving the same client, the function returns
1993 * the best one (best in terms of metric towards the destination node).
1994 *
1995 * If the two clients are AP isolated the function returns NULL.
1996 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001997struct batadv_orig_node *batadv_transtable_search(struct batadv_priv *bat_priv,
1998 const uint8_t *src,
Antonio Quartullic018ad32013-06-04 12:11:39 +02001999 const uint8_t *addr,
2000 unsigned short vid)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002001{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002002 struct batadv_tt_local_entry *tt_local_entry = NULL;
2003 struct batadv_tt_global_entry *tt_global_entry = NULL;
2004 struct batadv_orig_node *orig_node = NULL;
Sven Eckelmann981d8902012-10-07 13:34:15 +02002005 struct batadv_tt_orig_list_entry *best_entry;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002006
Antonio Quartullieceb22a2013-11-16 12:03:51 +01002007 if (src && batadv_vlan_ap_isola_get(bat_priv, vid)) {
Antonio Quartullic018ad32013-06-04 12:11:39 +02002008 tt_local_entry = batadv_tt_local_hash_find(bat_priv, src, vid);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02002009 if (!tt_local_entry ||
2010 (tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING))
Antonio Quartulli3d393e42011-07-07 15:35:37 +02002011 goto out;
2012 }
Marek Lindner7aadf882011-02-18 12:28:09 +00002013
Antonio Quartullic018ad32013-06-04 12:11:39 +02002014 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid);
Antonio Quartulli2dafb492011-05-05 08:42:45 +02002015 if (!tt_global_entry)
Marek Lindner7b36e8e2011-02-18 12:28:10 +00002016 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002017
Antonio Quartulli3d393e42011-07-07 15:35:37 +02002018 /* check whether the clients should not communicate due to AP
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002019 * isolation
2020 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002021 if (tt_local_entry &&
2022 _batadv_is_ap_isolated(tt_local_entry, tt_global_entry))
Antonio Quartulli3d393e42011-07-07 15:35:37 +02002023 goto out;
2024
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002025 rcu_read_lock();
Antonio Quartulli46274562013-09-03 11:10:24 +02002026 best_entry = batadv_transtable_best_orig(bat_priv, tt_global_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002027 /* found anything? */
Sven Eckelmann981d8902012-10-07 13:34:15 +02002028 if (best_entry)
2029 orig_node = best_entry->orig_node;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002030 if (orig_node && !atomic_inc_not_zero(&orig_node->refcount))
2031 orig_node = NULL;
2032 rcu_read_unlock();
Sven Eckelmann981d8902012-10-07 13:34:15 +02002033
Marek Lindner7b36e8e2011-02-18 12:28:10 +00002034out:
Antonio Quartulli3d393e42011-07-07 15:35:37 +02002035 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02002036 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli3d393e42011-07-07 15:35:37 +02002037 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02002038 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli3d393e42011-07-07 15:35:37 +02002039
Marek Lindner7b36e8e2011-02-18 12:28:10 +00002040 return orig_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002041}
Antonio Quartullia73105b2011-04-27 14:27:44 +02002042
Antonio Quartulliced72932013-04-24 16:37:51 +02002043/**
2044 * batadv_tt_global_crc - calculates the checksum of the local table belonging
2045 * to the given orig_node
2046 * @bat_priv: the bat priv with all the soft interface information
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002047 * @orig_node: originator for which the CRC should be computed
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002048 * @vid: VLAN identifier for which the CRC32 has to be computed
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002049 *
2050 * This function computes the checksum for the global table corresponding to a
2051 * specific originator. In particular, the checksum is computed as follows: For
2052 * each client connected to the originator the CRC32C of the MAC address and the
2053 * VID is computed and then all the CRC32Cs of the various clients are xor'ed
2054 * together.
2055 *
2056 * The idea behind is that CRC32C should be used as much as possible in order to
2057 * produce a unique hash of the table, but since the order which is used to feed
2058 * the CRC32C function affects the result and since every node in the network
2059 * probably sorts the clients differently, the hash function cannot be directly
2060 * computed over the entire table. Hence the CRC32C is used only on
2061 * the single client entry, while all the results are then xor'ed together
2062 * because the XOR operation can combine them all while trying to reduce the
2063 * noise as much as possible.
2064 *
2065 * Returns the checksum of the global table of a given originator.
Antonio Quartulliced72932013-04-24 16:37:51 +02002066 */
2067static uint32_t batadv_tt_global_crc(struct batadv_priv *bat_priv,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002068 struct batadv_orig_node *orig_node,
2069 unsigned short vid)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002070{
Sven Eckelmann807736f2012-07-15 22:26:51 +02002071 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002072 struct batadv_tt_common_entry *tt_common;
2073 struct batadv_tt_global_entry *tt_global;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002074 struct hlist_head *head;
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002075 uint32_t i, crc_tmp, crc = 0;
Antonio Quartulli0eb015682013-10-13 02:50:20 +02002076 uint8_t flags;
Antonio Quartullia30e22c2014-02-11 17:05:06 +01002077 __be16 tmp_vid;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002078
2079 for (i = 0; i < hash->size; i++) {
2080 head = &hash->table[i];
2081
2082 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08002083 hlist_for_each_entry_rcu(tt_common, head, hash_entry) {
Sven Eckelmann56303d32012-06-05 22:31:31 +02002084 tt_global = container_of(tt_common,
2085 struct batadv_tt_global_entry,
2086 common);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002087 /* compute the CRC only for entries belonging to the
2088 * VLAN identified by the vid passed as parameter
2089 */
2090 if (tt_common->vid != vid)
2091 continue;
2092
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002093 /* Roaming clients are in the global table for
2094 * consistency only. They don't have to be
2095 * taken into account while computing the
2096 * global crc
2097 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002098 if (tt_common->flags & BATADV_TT_CLIENT_ROAM)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002099 continue;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002100 /* Temporary clients have not been announced yet, so
2101 * they have to be skipped while computing the global
2102 * crc
2103 */
2104 if (tt_common->flags & BATADV_TT_CLIENT_TEMP)
2105 continue;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002106
2107 /* find out if this global entry is announced by this
2108 * originator
2109 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002110 if (!batadv_tt_global_entry_has_orig(tt_global,
Sven Eckelmanna5130882012-05-16 20:23:16 +02002111 orig_node))
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002112 continue;
2113
Antonio Quartullia30e22c2014-02-11 17:05:06 +01002114 /* use network order to read the VID: this ensures that
2115 * every node reads the bytes in the same order.
2116 */
2117 tmp_vid = htons(tt_common->vid);
2118 crc_tmp = crc32c(0, &tmp_vid, sizeof(tmp_vid));
Antonio Quartulli0eb015682013-10-13 02:50:20 +02002119
2120 /* compute the CRC on flags that have to be kept in sync
2121 * among nodes
2122 */
2123 flags = tt_common->flags & BATADV_TT_SYNC_MASK;
2124 crc_tmp = crc32c(crc_tmp, &flags, sizeof(flags));
2125
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002126 crc ^= crc32c(crc_tmp, tt_common->addr, ETH_ALEN);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002127 }
2128 rcu_read_unlock();
2129 }
2130
Antonio Quartulliced72932013-04-24 16:37:51 +02002131 return crc;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002132}
2133
Antonio Quartulliced72932013-04-24 16:37:51 +02002134/**
2135 * batadv_tt_local_crc - calculates the checksum of the local table
2136 * @bat_priv: the bat priv with all the soft interface information
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002137 * @vid: VLAN identifier for which the CRC32 has to be computed
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002138 *
2139 * For details about the computation, please refer to the documentation for
2140 * batadv_tt_global_crc().
2141 *
2142 * Returns the checksum of the local table
Antonio Quartulliced72932013-04-24 16:37:51 +02002143 */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002144static uint32_t batadv_tt_local_crc(struct batadv_priv *bat_priv,
2145 unsigned short vid)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002146{
Sven Eckelmann807736f2012-07-15 22:26:51 +02002147 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002148 struct batadv_tt_common_entry *tt_common;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002149 struct hlist_head *head;
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002150 uint32_t i, crc_tmp, crc = 0;
Antonio Quartulli0eb015682013-10-13 02:50:20 +02002151 uint8_t flags;
Antonio Quartullia30e22c2014-02-11 17:05:06 +01002152 __be16 tmp_vid;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002153
2154 for (i = 0; i < hash->size; i++) {
2155 head = &hash->table[i];
2156
2157 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08002158 hlist_for_each_entry_rcu(tt_common, head, hash_entry) {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002159 /* compute the CRC only for entries belonging to the
2160 * VLAN identified by vid
2161 */
2162 if (tt_common->vid != vid)
2163 continue;
2164
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002165 /* not yet committed clients have not to be taken into
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002166 * account while computing the CRC
2167 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002168 if (tt_common->flags & BATADV_TT_CLIENT_NEW)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002169 continue;
Antonio Quartulliced72932013-04-24 16:37:51 +02002170
Antonio Quartullia30e22c2014-02-11 17:05:06 +01002171 /* use network order to read the VID: this ensures that
2172 * every node reads the bytes in the same order.
2173 */
2174 tmp_vid = htons(tt_common->vid);
2175 crc_tmp = crc32c(0, &tmp_vid, sizeof(tmp_vid));
Antonio Quartulli0eb015682013-10-13 02:50:20 +02002176
2177 /* compute the CRC on flags that have to be kept in sync
2178 * among nodes
2179 */
2180 flags = tt_common->flags & BATADV_TT_SYNC_MASK;
2181 crc_tmp = crc32c(crc_tmp, &flags, sizeof(flags));
2182
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002183 crc ^= crc32c(crc_tmp, tt_common->addr, ETH_ALEN);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002184 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02002185 rcu_read_unlock();
2186 }
2187
Antonio Quartulliced72932013-04-24 16:37:51 +02002188 return crc;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002189}
2190
Sven Eckelmann56303d32012-06-05 22:31:31 +02002191static void batadv_tt_req_list_free(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002192{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002193 struct batadv_tt_req_node *node, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002194
Sven Eckelmann807736f2012-07-15 22:26:51 +02002195 spin_lock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002196
Sven Eckelmann807736f2012-07-15 22:26:51 +02002197 list_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
Antonio Quartullia73105b2011-04-27 14:27:44 +02002198 list_del(&node->list);
2199 kfree(node);
2200 }
2201
Sven Eckelmann807736f2012-07-15 22:26:51 +02002202 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002203}
2204
Sven Eckelmann56303d32012-06-05 22:31:31 +02002205static void batadv_tt_save_orig_buffer(struct batadv_priv *bat_priv,
2206 struct batadv_orig_node *orig_node,
Antonio Quartullie8cf2342013-05-28 13:14:28 +02002207 const void *tt_buff,
2208 uint16_t tt_buff_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002209{
Antonio Quartullia73105b2011-04-27 14:27:44 +02002210 /* Replace the old buffer only if I received something in the
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002211 * last OGM (the OGM could carry no changes)
2212 */
Antonio Quartullia73105b2011-04-27 14:27:44 +02002213 spin_lock_bh(&orig_node->tt_buff_lock);
2214 if (tt_buff_len > 0) {
2215 kfree(orig_node->tt_buff);
2216 orig_node->tt_buff_len = 0;
2217 orig_node->tt_buff = kmalloc(tt_buff_len, GFP_ATOMIC);
2218 if (orig_node->tt_buff) {
2219 memcpy(orig_node->tt_buff, tt_buff, tt_buff_len);
2220 orig_node->tt_buff_len = tt_buff_len;
2221 }
2222 }
2223 spin_unlock_bh(&orig_node->tt_buff_lock);
2224}
2225
Sven Eckelmann56303d32012-06-05 22:31:31 +02002226static void batadv_tt_req_purge(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002227{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002228 struct batadv_tt_req_node *node, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002229
Sven Eckelmann807736f2012-07-15 22:26:51 +02002230 spin_lock_bh(&bat_priv->tt.req_list_lock);
2231 list_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002232 if (batadv_has_timed_out(node->issued_at,
2233 BATADV_TT_REQUEST_TIMEOUT)) {
Antonio Quartullia73105b2011-04-27 14:27:44 +02002234 list_del(&node->list);
2235 kfree(node);
2236 }
2237 }
Sven Eckelmann807736f2012-07-15 22:26:51 +02002238 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002239}
2240
2241/* returns the pointer to the new tt_req_node struct if no request
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002242 * has already been issued for this orig_node, NULL otherwise
2243 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002244static struct batadv_tt_req_node *
2245batadv_new_tt_req_node(struct batadv_priv *bat_priv,
2246 struct batadv_orig_node *orig_node)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002247{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002248 struct batadv_tt_req_node *tt_req_node_tmp, *tt_req_node = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002249
Sven Eckelmann807736f2012-07-15 22:26:51 +02002250 spin_lock_bh(&bat_priv->tt.req_list_lock);
2251 list_for_each_entry(tt_req_node_tmp, &bat_priv->tt.req_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002252 if (batadv_compare_eth(tt_req_node_tmp, orig_node) &&
2253 !batadv_has_timed_out(tt_req_node_tmp->issued_at,
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002254 BATADV_TT_REQUEST_TIMEOUT))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002255 goto unlock;
2256 }
2257
2258 tt_req_node = kmalloc(sizeof(*tt_req_node), GFP_ATOMIC);
2259 if (!tt_req_node)
2260 goto unlock;
2261
Antonio Quartulli8fdd0152014-01-22 00:42:11 +01002262 ether_addr_copy(tt_req_node->addr, orig_node->orig);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002263 tt_req_node->issued_at = jiffies;
2264
Sven Eckelmann807736f2012-07-15 22:26:51 +02002265 list_add(&tt_req_node->list, &bat_priv->tt.req_list);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002266unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +02002267 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002268 return tt_req_node;
2269}
2270
Marek Lindner335fbe02013-04-23 21:40:02 +08002271/**
2272 * batadv_tt_local_valid - verify that given tt entry is a valid one
2273 * @entry_ptr: to be checked local tt entry
2274 * @data_ptr: not used but definition required to satisfy the callback prototype
2275 *
2276 * Returns 1 if the entry is a valid, 0 otherwise.
2277 */
2278static int batadv_tt_local_valid(const void *entry_ptr, const void *data_ptr)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002279{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002280 const struct batadv_tt_common_entry *tt_common_entry = entry_ptr;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002281
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002282 if (tt_common_entry->flags & BATADV_TT_CLIENT_NEW)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002283 return 0;
2284 return 1;
2285}
2286
Sven Eckelmanna5130882012-05-16 20:23:16 +02002287static int batadv_tt_global_valid(const void *entry_ptr,
2288 const void *data_ptr)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002289{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002290 const struct batadv_tt_common_entry *tt_common_entry = entry_ptr;
2291 const struct batadv_tt_global_entry *tt_global_entry;
2292 const struct batadv_orig_node *orig_node = data_ptr;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002293
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002294 if (tt_common_entry->flags & BATADV_TT_CLIENT_ROAM ||
2295 tt_common_entry->flags & BATADV_TT_CLIENT_TEMP)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002296 return 0;
2297
Sven Eckelmann56303d32012-06-05 22:31:31 +02002298 tt_global_entry = container_of(tt_common_entry,
2299 struct batadv_tt_global_entry,
Antonio Quartulli48100ba2011-10-30 12:17:33 +01002300 common);
2301
Sven Eckelmanna5130882012-05-16 20:23:16 +02002302 return batadv_tt_global_entry_has_orig(tt_global_entry, orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002303}
2304
Marek Lindner335fbe02013-04-23 21:40:02 +08002305/**
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002306 * batadv_tt_tvlv_generate - fill the tvlv buff with the tt entries from the
2307 * specified tt hash
Marek Lindner335fbe02013-04-23 21:40:02 +08002308 * @bat_priv: the bat priv with all the soft interface information
2309 * @hash: hash table containing the tt entries
2310 * @tt_len: expected tvlv tt data buffer length in number of bytes
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002311 * @tvlv_buff: pointer to the buffer to fill with the TT data
Marek Lindner335fbe02013-04-23 21:40:02 +08002312 * @valid_cb: function to filter tt change entries
2313 * @cb_data: data passed to the filter function as argument
Marek Lindner335fbe02013-04-23 21:40:02 +08002314 */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002315static void batadv_tt_tvlv_generate(struct batadv_priv *bat_priv,
2316 struct batadv_hashtable *hash,
2317 void *tvlv_buff, uint16_t tt_len,
2318 int (*valid_cb)(const void *, const void *),
2319 void *cb_data)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002320{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002321 struct batadv_tt_common_entry *tt_common_entry;
Marek Lindner335fbe02013-04-23 21:40:02 +08002322 struct batadv_tvlv_tt_change *tt_change;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002323 struct hlist_head *head;
Marek Lindner335fbe02013-04-23 21:40:02 +08002324 uint16_t tt_tot, tt_num_entries = 0;
Antonio Quartullic90681b2011-10-05 17:05:25 +02002325 uint32_t i;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002326
Antonio Quartulli298e6e62013-05-28 13:14:27 +02002327 tt_tot = batadv_tt_entries(tt_len);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002328 tt_change = (struct batadv_tvlv_tt_change *)tvlv_buff;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002329
2330 rcu_read_lock();
2331 for (i = 0; i < hash->size; i++) {
2332 head = &hash->table[i];
2333
Sasha Levinb67bfe02013-02-27 17:06:00 -08002334 hlist_for_each_entry_rcu(tt_common_entry,
Antonio Quartullia73105b2011-04-27 14:27:44 +02002335 head, hash_entry) {
Marek Lindner335fbe02013-04-23 21:40:02 +08002336 if (tt_tot == tt_num_entries)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002337 break;
2338
Antonio Quartulli48100ba2011-10-30 12:17:33 +01002339 if ((valid_cb) && (!valid_cb(tt_common_entry, cb_data)))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002340 continue;
2341
Antonio Quartulli8fdd0152014-01-22 00:42:11 +01002342 ether_addr_copy(tt_change->addr, tt_common_entry->addr);
Antonio Quartulli27b37eb2012-11-08 14:21:11 +01002343 tt_change->flags = tt_common_entry->flags;
Antonio Quartullic018ad32013-06-04 12:11:39 +02002344 tt_change->vid = htons(tt_common_entry->vid);
Antonio Quartullica663042013-12-15 13:26:55 +01002345 memset(tt_change->reserved, 0,
2346 sizeof(tt_change->reserved));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002347
Marek Lindner335fbe02013-04-23 21:40:02 +08002348 tt_num_entries++;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002349 tt_change++;
2350 }
2351 }
2352 rcu_read_unlock();
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002353}
Antonio Quartullia73105b2011-04-27 14:27:44 +02002354
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002355/**
2356 * batadv_tt_global_check_crc - check if all the CRCs are correct
2357 * @orig_node: originator for which the CRCs have to be checked
2358 * @tt_vlan: pointer to the first tvlv VLAN entry
2359 * @num_vlan: number of tvlv VLAN entries
2360 * @create: if true, create VLAN objects if not found
2361 *
2362 * Return true if all the received CRCs match the locally stored ones, false
2363 * otherwise
2364 */
2365static bool batadv_tt_global_check_crc(struct batadv_orig_node *orig_node,
2366 struct batadv_tvlv_tt_vlan_data *tt_vlan,
2367 uint16_t num_vlan)
2368{
2369 struct batadv_tvlv_tt_vlan_data *tt_vlan_tmp;
2370 struct batadv_orig_node_vlan *vlan;
Antonio Quartulli91c2b1a2014-01-28 02:06:47 +01002371 uint32_t crc;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002372 int i;
2373
2374 /* check if each received CRC matches the locally stored one */
2375 for (i = 0; i < num_vlan; i++) {
2376 tt_vlan_tmp = tt_vlan + i;
2377
2378 /* if orig_node is a backbone node for this VLAN, don't check
2379 * the CRC as we ignore all the global entries over it
2380 */
2381 if (batadv_bla_is_backbone_gw_orig(orig_node->bat_priv,
Antonio Quartullicfd4f752013-08-07 18:28:56 +02002382 orig_node->orig,
2383 ntohs(tt_vlan_tmp->vid)))
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002384 continue;
2385
2386 vlan = batadv_orig_node_vlan_get(orig_node,
2387 ntohs(tt_vlan_tmp->vid));
2388 if (!vlan)
2389 return false;
2390
Antonio Quartulli91c2b1a2014-01-28 02:06:47 +01002391 crc = vlan->tt.crc;
2392 batadv_orig_node_vlan_free_ref(vlan);
2393
2394 if (crc != ntohl(tt_vlan_tmp->crc))
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002395 return false;
2396 }
2397
2398 return true;
2399}
2400
2401/**
2402 * batadv_tt_local_update_crc - update all the local CRCs
2403 * @bat_priv: the bat priv with all the soft interface information
2404 */
2405static void batadv_tt_local_update_crc(struct batadv_priv *bat_priv)
2406{
2407 struct batadv_softif_vlan *vlan;
2408
2409 /* recompute the global CRC for each VLAN */
2410 rcu_read_lock();
2411 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
2412 vlan->tt.crc = batadv_tt_local_crc(bat_priv, vlan->vid);
2413 }
2414 rcu_read_unlock();
2415}
2416
2417/**
2418 * batadv_tt_global_update_crc - update all the global CRCs for this orig_node
2419 * @bat_priv: the bat priv with all the soft interface information
2420 * @orig_node: the orig_node for which the CRCs have to be updated
2421 */
2422static void batadv_tt_global_update_crc(struct batadv_priv *bat_priv,
2423 struct batadv_orig_node *orig_node)
2424{
2425 struct batadv_orig_node_vlan *vlan;
2426 uint32_t crc;
2427
2428 /* recompute the global CRC for each VLAN */
2429 rcu_read_lock();
2430 list_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) {
2431 /* if orig_node is a backbone node for this VLAN, don't compute
2432 * the CRC as we ignore all the global entries over it
2433 */
Antonio Quartullicfd4f752013-08-07 18:28:56 +02002434 if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig,
2435 vlan->vid))
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002436 continue;
2437
2438 crc = batadv_tt_global_crc(bat_priv, orig_node, vlan->vid);
2439 vlan->tt.crc = crc;
2440 }
2441 rcu_read_unlock();
Antonio Quartullia73105b2011-04-27 14:27:44 +02002442}
2443
Antonio Quartulliced72932013-04-24 16:37:51 +02002444/**
2445 * batadv_send_tt_request - send a TT Request message to a given node
2446 * @bat_priv: the bat priv with all the soft interface information
2447 * @dst_orig_node: the destination of the message
2448 * @ttvn: the version number that the source of the message is looking for
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002449 * @tt_vlan: pointer to the first tvlv VLAN object to request
2450 * @num_vlan: number of tvlv VLAN entries
Antonio Quartulliced72932013-04-24 16:37:51 +02002451 * @full_table: ask for the entire translation table if true, while only for the
2452 * last TT diff otherwise
2453 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002454static int batadv_send_tt_request(struct batadv_priv *bat_priv,
2455 struct batadv_orig_node *dst_orig_node,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002456 uint8_t ttvn,
2457 struct batadv_tvlv_tt_vlan_data *tt_vlan,
2458 uint16_t num_vlan, bool full_table)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002459{
Marek Lindner335fbe02013-04-23 21:40:02 +08002460 struct batadv_tvlv_tt_data *tvlv_tt_data = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002461 struct batadv_tt_req_node *tt_req_node = NULL;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002462 struct batadv_tvlv_tt_vlan_data *tt_vlan_req;
2463 struct batadv_hard_iface *primary_if;
Marek Lindner335fbe02013-04-23 21:40:02 +08002464 bool ret = false;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002465 int i, size;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002466
Sven Eckelmanne5d89252012-05-12 13:48:54 +02002467 primary_if = batadv_primary_if_get_selected(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002468 if (!primary_if)
2469 goto out;
2470
2471 /* The new tt_req will be issued only if I'm not waiting for a
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002472 * reply from the same orig_node yet
2473 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002474 tt_req_node = batadv_new_tt_req_node(bat_priv, dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002475 if (!tt_req_node)
2476 goto out;
2477
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002478 size = sizeof(*tvlv_tt_data) + sizeof(*tt_vlan_req) * num_vlan;
2479 tvlv_tt_data = kzalloc(size, GFP_ATOMIC);
Marek Lindner335fbe02013-04-23 21:40:02 +08002480 if (!tvlv_tt_data)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002481 goto out;
2482
Marek Lindner335fbe02013-04-23 21:40:02 +08002483 tvlv_tt_data->flags = BATADV_TT_REQUEST;
2484 tvlv_tt_data->ttvn = ttvn;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002485 tvlv_tt_data->num_vlan = htons(num_vlan);
2486
2487 /* send all the CRCs within the request. This is needed by intermediate
2488 * nodes to ensure they have the correct table before replying
2489 */
2490 tt_vlan_req = (struct batadv_tvlv_tt_vlan_data *)(tvlv_tt_data + 1);
2491 for (i = 0; i < num_vlan; i++) {
2492 tt_vlan_req->vid = tt_vlan->vid;
2493 tt_vlan_req->crc = tt_vlan->crc;
2494
2495 tt_vlan_req++;
2496 tt_vlan++;
2497 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02002498
2499 if (full_table)
Marek Lindner335fbe02013-04-23 21:40:02 +08002500 tvlv_tt_data->flags |= BATADV_TT_FULL_TABLE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002501
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02002502 batadv_dbg(BATADV_DBG_TT, bat_priv, "Sending TT_REQUEST to %pM [%c]\n",
Marek Lindner335fbe02013-04-23 21:40:02 +08002503 dst_orig_node->orig, full_table ? 'F' : '.');
Antonio Quartullia73105b2011-04-27 14:27:44 +02002504
Sven Eckelmannd69909d2012-06-03 22:19:20 +02002505 batadv_inc_counter(bat_priv, BATADV_CNT_TT_REQUEST_TX);
Marek Lindner335fbe02013-04-23 21:40:02 +08002506 batadv_tvlv_unicast_send(bat_priv, primary_if->net_dev->dev_addr,
2507 dst_orig_node->orig, BATADV_TVLV_TT, 1,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002508 tvlv_tt_data, size);
Marek Lindner335fbe02013-04-23 21:40:02 +08002509 ret = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002510
2511out:
Antonio Quartullia73105b2011-04-27 14:27:44 +02002512 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02002513 batadv_hardif_free_ref(primary_if);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002514 if (ret && tt_req_node) {
Sven Eckelmann807736f2012-07-15 22:26:51 +02002515 spin_lock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002516 list_del(&tt_req_node->list);
Sven Eckelmann807736f2012-07-15 22:26:51 +02002517 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002518 kfree(tt_req_node);
2519 }
Marek Lindner335fbe02013-04-23 21:40:02 +08002520 kfree(tvlv_tt_data);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002521 return ret;
2522}
2523
Marek Lindner335fbe02013-04-23 21:40:02 +08002524/**
2525 * batadv_send_other_tt_response - send reply to tt request concerning another
2526 * node's translation table
2527 * @bat_priv: the bat priv with all the soft interface information
2528 * @tt_data: tt data containing the tt request information
2529 * @req_src: mac address of tt request sender
2530 * @req_dst: mac address of tt request recipient
2531 *
2532 * Returns true if tt request reply was sent, false otherwise.
2533 */
2534static bool batadv_send_other_tt_response(struct batadv_priv *bat_priv,
2535 struct batadv_tvlv_tt_data *tt_data,
2536 uint8_t *req_src, uint8_t *req_dst)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002537{
Sven Eckelmann170173b2012-10-07 12:02:22 +02002538 struct batadv_orig_node *req_dst_orig_node;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002539 struct batadv_orig_node *res_dst_orig_node = NULL;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002540 struct batadv_tvlv_tt_change *tt_change;
Marek Lindner335fbe02013-04-23 21:40:02 +08002541 struct batadv_tvlv_tt_data *tvlv_tt_data = NULL;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002542 struct batadv_tvlv_tt_vlan_data *tt_vlan;
Marek Lindner335fbe02013-04-23 21:40:02 +08002543 bool ret = false, full_table;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002544 uint8_t orig_ttvn, req_ttvn;
2545 uint16_t tvlv_len;
2546 int32_t tt_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002547
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002548 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002549 "Received TT_REQUEST from %pM for ttvn: %u (%pM) [%c]\n",
Marek Lindner335fbe02013-04-23 21:40:02 +08002550 req_src, tt_data->ttvn, req_dst,
Sven Eckelmanna2f2b6c2015-04-23 18:22:24 +02002551 ((tt_data->flags & BATADV_TT_FULL_TABLE) ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002552
2553 /* Let's get the orig node of the REAL destination */
Marek Lindner335fbe02013-04-23 21:40:02 +08002554 req_dst_orig_node = batadv_orig_hash_find(bat_priv, req_dst);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002555 if (!req_dst_orig_node)
2556 goto out;
2557
Marek Lindner335fbe02013-04-23 21:40:02 +08002558 res_dst_orig_node = batadv_orig_hash_find(bat_priv, req_src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002559 if (!res_dst_orig_node)
2560 goto out;
2561
Antonio Quartullia73105b2011-04-27 14:27:44 +02002562 orig_ttvn = (uint8_t)atomic_read(&req_dst_orig_node->last_ttvn);
Marek Lindner335fbe02013-04-23 21:40:02 +08002563 req_ttvn = tt_data->ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002564
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002565 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(tt_data + 1);
Marek Lindner335fbe02013-04-23 21:40:02 +08002566 /* this node doesn't have the requested data */
Antonio Quartullia73105b2011-04-27 14:27:44 +02002567 if (orig_ttvn != req_ttvn ||
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002568 !batadv_tt_global_check_crc(req_dst_orig_node, tt_vlan,
2569 ntohs(tt_data->num_vlan)))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002570 goto out;
2571
Antonio Quartulli015758d2011-07-09 17:52:13 +02002572 /* If the full table has been explicitly requested */
Marek Lindner335fbe02013-04-23 21:40:02 +08002573 if (tt_data->flags & BATADV_TT_FULL_TABLE ||
Antonio Quartullia73105b2011-04-27 14:27:44 +02002574 !req_dst_orig_node->tt_buff)
2575 full_table = true;
2576 else
2577 full_table = false;
2578
Marek Lindner335fbe02013-04-23 21:40:02 +08002579 /* TT fragmentation hasn't been implemented yet, so send as many
2580 * TT entries fit a single packet as possible only
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002581 */
Antonio Quartullia73105b2011-04-27 14:27:44 +02002582 if (!full_table) {
2583 spin_lock_bh(&req_dst_orig_node->tt_buff_lock);
2584 tt_len = req_dst_orig_node->tt_buff_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002585
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002586 tvlv_len = batadv_tt_prepare_tvlv_global_data(req_dst_orig_node,
2587 &tvlv_tt_data,
2588 &tt_change,
2589 &tt_len);
2590 if (!tt_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002591 goto unlock;
2592
Antonio Quartullia73105b2011-04-27 14:27:44 +02002593 /* Copy the last orig_node's OGM buffer */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002594 memcpy(tt_change, req_dst_orig_node->tt_buff,
Antonio Quartullia73105b2011-04-27 14:27:44 +02002595 req_dst_orig_node->tt_buff_len);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002596 spin_unlock_bh(&req_dst_orig_node->tt_buff_lock);
2597 } else {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002598 /* allocate the tvlv, put the tt_data and all the tt_vlan_data
2599 * in the initial part
2600 */
2601 tt_len = -1;
2602 tvlv_len = batadv_tt_prepare_tvlv_global_data(req_dst_orig_node,
2603 &tvlv_tt_data,
2604 &tt_change,
2605 &tt_len);
2606 if (!tt_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002607 goto out;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002608
2609 /* fill the rest of the tvlv with the real TT entries */
2610 batadv_tt_tvlv_generate(bat_priv, bat_priv->tt.global_hash,
2611 tt_change, tt_len,
2612 batadv_tt_global_valid,
2613 req_dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002614 }
2615
Marek Lindnera19d3d82013-05-27 15:33:25 +08002616 /* Don't send the response, if larger than fragmented packet. */
2617 tt_len = sizeof(struct batadv_unicast_tvlv_packet) + tvlv_len;
2618 if (tt_len > atomic_read(&bat_priv->packet_size_max)) {
2619 net_ratelimited_function(batadv_info, bat_priv->soft_iface,
2620 "Ignoring TT_REQUEST from %pM; Response size exceeds max packet size.\n",
2621 res_dst_orig_node->orig);
2622 goto out;
2623 }
2624
Marek Lindner335fbe02013-04-23 21:40:02 +08002625 tvlv_tt_data->flags = BATADV_TT_RESPONSE;
2626 tvlv_tt_data->ttvn = req_ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002627
2628 if (full_table)
Marek Lindner335fbe02013-04-23 21:40:02 +08002629 tvlv_tt_data->flags |= BATADV_TT_FULL_TABLE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002630
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002631 batadv_dbg(BATADV_DBG_TT, bat_priv,
Marek Lindner335fbe02013-04-23 21:40:02 +08002632 "Sending TT_RESPONSE %pM for %pM [%c] (ttvn: %u)\n",
2633 res_dst_orig_node->orig, req_dst_orig_node->orig,
2634 full_table ? 'F' : '.', req_ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002635
Sven Eckelmannd69909d2012-06-03 22:19:20 +02002636 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02002637
Marek Lindner335fbe02013-04-23 21:40:02 +08002638 batadv_tvlv_unicast_send(bat_priv, req_dst_orig_node->orig,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002639 req_src, BATADV_TVLV_TT, 1, tvlv_tt_data,
2640 tvlv_len);
Martin Hundebølle91ecfc2013-04-20 13:54:39 +02002641
Marek Lindner335fbe02013-04-23 21:40:02 +08002642 ret = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002643 goto out;
2644
2645unlock:
2646 spin_unlock_bh(&req_dst_orig_node->tt_buff_lock);
2647
2648out:
2649 if (res_dst_orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002650 batadv_orig_node_free_ref(res_dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002651 if (req_dst_orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002652 batadv_orig_node_free_ref(req_dst_orig_node);
Marek Lindner335fbe02013-04-23 21:40:02 +08002653 kfree(tvlv_tt_data);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002654 return ret;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002655}
Sven Eckelmann96412692012-06-05 22:31:30 +02002656
Marek Lindner335fbe02013-04-23 21:40:02 +08002657/**
2658 * batadv_send_my_tt_response - send reply to tt request concerning this node's
2659 * translation table
2660 * @bat_priv: the bat priv with all the soft interface information
2661 * @tt_data: tt data containing the tt request information
2662 * @req_src: mac address of tt request sender
2663 *
2664 * Returns true if tt request reply was sent, false otherwise.
2665 */
2666static bool batadv_send_my_tt_response(struct batadv_priv *bat_priv,
2667 struct batadv_tvlv_tt_data *tt_data,
2668 uint8_t *req_src)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002669{
Marek Lindner335fbe02013-04-23 21:40:02 +08002670 struct batadv_tvlv_tt_data *tvlv_tt_data = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002671 struct batadv_hard_iface *primary_if = NULL;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002672 struct batadv_tvlv_tt_change *tt_change;
2673 struct batadv_orig_node *orig_node;
Marek Lindner335fbe02013-04-23 21:40:02 +08002674 uint8_t my_ttvn, req_ttvn;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002675 uint16_t tvlv_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002676 bool full_table;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002677 int32_t tt_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002678
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002679 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002680 "Received TT_REQUEST from %pM for ttvn: %u (me) [%c]\n",
Marek Lindner335fbe02013-04-23 21:40:02 +08002681 req_src, tt_data->ttvn,
Sven Eckelmanna2f2b6c2015-04-23 18:22:24 +02002682 ((tt_data->flags & BATADV_TT_FULL_TABLE) ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002683
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02002684 spin_lock_bh(&bat_priv->tt.commit_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002685
Sven Eckelmann807736f2012-07-15 22:26:51 +02002686 my_ttvn = (uint8_t)atomic_read(&bat_priv->tt.vn);
Marek Lindner335fbe02013-04-23 21:40:02 +08002687 req_ttvn = tt_data->ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002688
Marek Lindner335fbe02013-04-23 21:40:02 +08002689 orig_node = batadv_orig_hash_find(bat_priv, req_src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002690 if (!orig_node)
2691 goto out;
2692
Sven Eckelmanne5d89252012-05-12 13:48:54 +02002693 primary_if = batadv_primary_if_get_selected(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002694 if (!primary_if)
2695 goto out;
2696
2697 /* If the full table has been explicitly requested or the gap
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002698 * is too big send the whole local translation table
2699 */
Marek Lindner335fbe02013-04-23 21:40:02 +08002700 if (tt_data->flags & BATADV_TT_FULL_TABLE || my_ttvn != req_ttvn ||
Sven Eckelmann807736f2012-07-15 22:26:51 +02002701 !bat_priv->tt.last_changeset)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002702 full_table = true;
2703 else
2704 full_table = false;
2705
Marek Lindner335fbe02013-04-23 21:40:02 +08002706 /* TT fragmentation hasn't been implemented yet, so send as many
2707 * TT entries fit a single packet as possible only
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002708 */
Antonio Quartullia73105b2011-04-27 14:27:44 +02002709 if (!full_table) {
Sven Eckelmann807736f2012-07-15 22:26:51 +02002710 spin_lock_bh(&bat_priv->tt.last_changeset_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002711
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002712 tt_len = bat_priv->tt.last_changeset_len;
2713 tvlv_len = batadv_tt_prepare_tvlv_local_data(bat_priv,
2714 &tvlv_tt_data,
2715 &tt_change,
2716 &tt_len);
2717 if (!tt_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002718 goto unlock;
2719
Marek Lindner335fbe02013-04-23 21:40:02 +08002720 /* Copy the last orig_node's OGM buffer */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002721 memcpy(tt_change, bat_priv->tt.last_changeset,
Sven Eckelmann807736f2012-07-15 22:26:51 +02002722 bat_priv->tt.last_changeset_len);
2723 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002724 } else {
Marek Lindner335fbe02013-04-23 21:40:02 +08002725 req_ttvn = (uint8_t)atomic_read(&bat_priv->tt.vn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002726
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002727 /* allocate the tvlv, put the tt_data and all the tt_vlan_data
2728 * in the initial part
2729 */
2730 tt_len = -1;
2731 tvlv_len = batadv_tt_prepare_tvlv_local_data(bat_priv,
2732 &tvlv_tt_data,
2733 &tt_change,
2734 &tt_len);
2735 if (!tt_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002736 goto out;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002737
2738 /* fill the rest of the tvlv with the real TT entries */
2739 batadv_tt_tvlv_generate(bat_priv, bat_priv->tt.local_hash,
2740 tt_change, tt_len,
2741 batadv_tt_local_valid, NULL);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002742 }
2743
Marek Lindner335fbe02013-04-23 21:40:02 +08002744 tvlv_tt_data->flags = BATADV_TT_RESPONSE;
2745 tvlv_tt_data->ttvn = req_ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002746
2747 if (full_table)
Marek Lindner335fbe02013-04-23 21:40:02 +08002748 tvlv_tt_data->flags |= BATADV_TT_FULL_TABLE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002749
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002750 batadv_dbg(BATADV_DBG_TT, bat_priv,
Marek Lindner335fbe02013-04-23 21:40:02 +08002751 "Sending TT_RESPONSE to %pM [%c] (ttvn: %u)\n",
2752 orig_node->orig, full_table ? 'F' : '.', req_ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002753
Sven Eckelmannd69909d2012-06-03 22:19:20 +02002754 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02002755
Marek Lindner335fbe02013-04-23 21:40:02 +08002756 batadv_tvlv_unicast_send(bat_priv, primary_if->net_dev->dev_addr,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002757 req_src, BATADV_TVLV_TT, 1, tvlv_tt_data,
2758 tvlv_len);
Marek Lindner335fbe02013-04-23 21:40:02 +08002759
Antonio Quartullia73105b2011-04-27 14:27:44 +02002760 goto out;
2761
2762unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +02002763 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002764out:
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02002765 spin_unlock_bh(&bat_priv->tt.commit_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002766 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002767 batadv_orig_node_free_ref(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002768 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02002769 batadv_hardif_free_ref(primary_if);
Marek Lindner335fbe02013-04-23 21:40:02 +08002770 kfree(tvlv_tt_data);
2771 /* The packet was for this host, so it doesn't need to be re-routed */
Antonio Quartullia73105b2011-04-27 14:27:44 +02002772 return true;
2773}
2774
Marek Lindner335fbe02013-04-23 21:40:02 +08002775/**
2776 * batadv_send_tt_response - send reply to tt request
2777 * @bat_priv: the bat priv with all the soft interface information
2778 * @tt_data: tt data containing the tt request information
2779 * @req_src: mac address of tt request sender
2780 * @req_dst: mac address of tt request recipient
2781 *
2782 * Returns true if tt request reply was sent, false otherwise.
2783 */
2784static bool batadv_send_tt_response(struct batadv_priv *bat_priv,
2785 struct batadv_tvlv_tt_data *tt_data,
2786 uint8_t *req_src, uint8_t *req_dst)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002787{
Antonio Quartullicfd4f752013-08-07 18:28:56 +02002788 if (batadv_is_my_mac(bat_priv, req_dst))
Marek Lindner335fbe02013-04-23 21:40:02 +08002789 return batadv_send_my_tt_response(bat_priv, tt_data, req_src);
Antonio Quartulli24820df2014-09-01 14:37:25 +02002790 return batadv_send_other_tt_response(bat_priv, tt_data, req_src,
2791 req_dst);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002792}
2793
Sven Eckelmann56303d32012-06-05 22:31:31 +02002794static void _batadv_tt_update_changes(struct batadv_priv *bat_priv,
2795 struct batadv_orig_node *orig_node,
Marek Lindner335fbe02013-04-23 21:40:02 +08002796 struct batadv_tvlv_tt_change *tt_change,
Sven Eckelmanna5130882012-05-16 20:23:16 +02002797 uint16_t tt_num_changes, uint8_t ttvn)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002798{
2799 int i;
Sven Eckelmanna5130882012-05-16 20:23:16 +02002800 int roams;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002801
2802 for (i = 0; i < tt_num_changes; i++) {
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002803 if ((tt_change + i)->flags & BATADV_TT_CLIENT_DEL) {
2804 roams = (tt_change + i)->flags & BATADV_TT_CLIENT_ROAM;
Sven Eckelmanna5130882012-05-16 20:23:16 +02002805 batadv_tt_global_del(bat_priv, orig_node,
2806 (tt_change + i)->addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +02002807 ntohs((tt_change + i)->vid),
Antonio Quartullid4f44692012-05-25 00:00:54 +02002808 "tt removed by changes",
2809 roams);
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002810 } else {
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002811 if (!batadv_tt_global_add(bat_priv, orig_node,
Antonio Quartullid4f44692012-05-25 00:00:54 +02002812 (tt_change + i)->addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +02002813 ntohs((tt_change + i)->vid),
Antonio Quartullid4f44692012-05-25 00:00:54 +02002814 (tt_change + i)->flags, ttvn))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002815 /* In case of problem while storing a
2816 * global_entry, we stop the updating
2817 * procedure without committing the
2818 * ttvn change. This will avoid to send
2819 * corrupted data on tt_request
2820 */
2821 return;
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002822 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02002823 }
Linus Lüssinge17931d2014-02-15 17:47:50 +01002824 orig_node->capa_initialized |= BATADV_ORIG_CAPA_HAS_TT;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002825}
2826
Sven Eckelmann56303d32012-06-05 22:31:31 +02002827static void batadv_tt_fill_gtable(struct batadv_priv *bat_priv,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002828 struct batadv_tvlv_tt_change *tt_change,
2829 uint8_t ttvn, uint8_t *resp_src,
2830 uint16_t num_entries)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002831{
Sven Eckelmann170173b2012-10-07 12:02:22 +02002832 struct batadv_orig_node *orig_node;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002833
Marek Lindner335fbe02013-04-23 21:40:02 +08002834 orig_node = batadv_orig_hash_find(bat_priv, resp_src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002835 if (!orig_node)
2836 goto out;
2837
2838 /* Purge the old table first.. */
Antonio Quartulli95fb1302013-08-07 18:28:55 +02002839 batadv_tt_global_del_orig(bat_priv, orig_node, -1,
2840 "Received full table");
Antonio Quartullia73105b2011-04-27 14:27:44 +02002841
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002842 _batadv_tt_update_changes(bat_priv, orig_node, tt_change, num_entries,
2843 ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002844
2845 spin_lock_bh(&orig_node->tt_buff_lock);
2846 kfree(orig_node->tt_buff);
2847 orig_node->tt_buff_len = 0;
2848 orig_node->tt_buff = NULL;
2849 spin_unlock_bh(&orig_node->tt_buff_lock);
2850
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002851 atomic_set(&orig_node->last_ttvn, ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002852
2853out:
2854 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002855 batadv_orig_node_free_ref(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002856}
2857
Sven Eckelmann56303d32012-06-05 22:31:31 +02002858static void batadv_tt_update_changes(struct batadv_priv *bat_priv,
2859 struct batadv_orig_node *orig_node,
Sven Eckelmanna5130882012-05-16 20:23:16 +02002860 uint16_t tt_num_changes, uint8_t ttvn,
Marek Lindner335fbe02013-04-23 21:40:02 +08002861 struct batadv_tvlv_tt_change *tt_change)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002862{
Sven Eckelmanna5130882012-05-16 20:23:16 +02002863 _batadv_tt_update_changes(bat_priv, orig_node, tt_change,
2864 tt_num_changes, ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002865
Antonio Quartullie8cf2342013-05-28 13:14:28 +02002866 batadv_tt_save_orig_buffer(bat_priv, orig_node, tt_change,
2867 batadv_tt_len(tt_num_changes));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002868 atomic_set(&orig_node->last_ttvn, ttvn);
2869}
2870
Antonio Quartullic018ad32013-06-04 12:11:39 +02002871/**
2872 * batadv_is_my_client - check if a client is served by the local node
2873 * @bat_priv: the bat priv with all the soft interface information
Antonio Quartulli3f687852014-11-02 11:29:56 +01002874 * @addr: the mac address of the client to check
Antonio Quartullic018ad32013-06-04 12:11:39 +02002875 * @vid: VLAN identifier
2876 *
2877 * Returns true if the client is served by this node, false otherwise.
2878 */
2879bool batadv_is_my_client(struct batadv_priv *bat_priv, const uint8_t *addr,
2880 unsigned short vid)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002881{
Sven Eckelmann170173b2012-10-07 12:02:22 +02002882 struct batadv_tt_local_entry *tt_local_entry;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002883 bool ret = false;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002884
Antonio Quartullic018ad32013-06-04 12:11:39 +02002885 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr, vid);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002886 if (!tt_local_entry)
2887 goto out;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002888 /* Check if the client has been logically deleted (but is kept for
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002889 * consistency purpose)
2890 */
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02002891 if ((tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING) ||
2892 (tt_local_entry->common.flags & BATADV_TT_CLIENT_ROAM))
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002893 goto out;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002894 ret = true;
2895out:
Antonio Quartullia73105b2011-04-27 14:27:44 +02002896 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02002897 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002898 return ret;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002899}
2900
Marek Lindner335fbe02013-04-23 21:40:02 +08002901/**
2902 * batadv_handle_tt_response - process incoming tt reply
2903 * @bat_priv: the bat priv with all the soft interface information
2904 * @tt_data: tt data containing the tt request information
2905 * @resp_src: mac address of tt reply sender
2906 * @num_entries: number of tt change entries appended to the tt data
2907 */
2908static void batadv_handle_tt_response(struct batadv_priv *bat_priv,
2909 struct batadv_tvlv_tt_data *tt_data,
2910 uint8_t *resp_src, uint16_t num_entries)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002911{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002912 struct batadv_tt_req_node *node, *safe;
2913 struct batadv_orig_node *orig_node = NULL;
Marek Lindner335fbe02013-04-23 21:40:02 +08002914 struct batadv_tvlv_tt_change *tt_change;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002915 uint8_t *tvlv_ptr = (uint8_t *)tt_data;
2916 uint16_t change_offset;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002917
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002918 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002919 "Received TT_RESPONSE from %pM for ttvn %d t_size: %d [%c]\n",
Marek Lindner335fbe02013-04-23 21:40:02 +08002920 resp_src, tt_data->ttvn, num_entries,
Sven Eckelmanna2f2b6c2015-04-23 18:22:24 +02002921 ((tt_data->flags & BATADV_TT_FULL_TABLE) ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002922
Marek Lindner335fbe02013-04-23 21:40:02 +08002923 orig_node = batadv_orig_hash_find(bat_priv, resp_src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002924 if (!orig_node)
2925 goto out;
2926
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02002927 spin_lock_bh(&orig_node->tt_lock);
2928
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002929 change_offset = sizeof(struct batadv_tvlv_tt_vlan_data);
2930 change_offset *= ntohs(tt_data->num_vlan);
2931 change_offset += sizeof(*tt_data);
2932 tvlv_ptr += change_offset;
2933
2934 tt_change = (struct batadv_tvlv_tt_change *)tvlv_ptr;
Marek Lindner335fbe02013-04-23 21:40:02 +08002935 if (tt_data->flags & BATADV_TT_FULL_TABLE) {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002936 batadv_tt_fill_gtable(bat_priv, tt_change, tt_data->ttvn,
2937 resp_src, num_entries);
Sven Eckelmann96412692012-06-05 22:31:30 +02002938 } else {
Marek Lindner335fbe02013-04-23 21:40:02 +08002939 batadv_tt_update_changes(bat_priv, orig_node, num_entries,
2940 tt_data->ttvn, tt_change);
Sven Eckelmann96412692012-06-05 22:31:30 +02002941 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02002942
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02002943 /* Recalculate the CRC for this orig_node and store it */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002944 batadv_tt_global_update_crc(bat_priv, orig_node);
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02002945
2946 spin_unlock_bh(&orig_node->tt_lock);
2947
Antonio Quartullia73105b2011-04-27 14:27:44 +02002948 /* Delete the tt_req_node from pending tt_requests list */
Sven Eckelmann807736f2012-07-15 22:26:51 +02002949 spin_lock_bh(&bat_priv->tt.req_list_lock);
2950 list_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
Marek Lindner335fbe02013-04-23 21:40:02 +08002951 if (!batadv_compare_eth(node->addr, resp_src))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002952 continue;
2953 list_del(&node->list);
2954 kfree(node);
2955 }
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002956
Sven Eckelmann807736f2012-07-15 22:26:51 +02002957 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002958out:
2959 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002960 batadv_orig_node_free_ref(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002961}
2962
Sven Eckelmann56303d32012-06-05 22:31:31 +02002963static void batadv_tt_roam_list_free(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002964{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002965 struct batadv_tt_roam_node *node, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002966
Sven Eckelmann807736f2012-07-15 22:26:51 +02002967 spin_lock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002968
Sven Eckelmann807736f2012-07-15 22:26:51 +02002969 list_for_each_entry_safe(node, safe, &bat_priv->tt.roam_list, list) {
Antonio Quartullicc47f662011-04-27 14:27:57 +02002970 list_del(&node->list);
2971 kfree(node);
2972 }
2973
Sven Eckelmann807736f2012-07-15 22:26:51 +02002974 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002975}
2976
Sven Eckelmann56303d32012-06-05 22:31:31 +02002977static void batadv_tt_roam_purge(struct batadv_priv *bat_priv)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002978{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002979 struct batadv_tt_roam_node *node, *safe;
Antonio Quartullicc47f662011-04-27 14:27:57 +02002980
Sven Eckelmann807736f2012-07-15 22:26:51 +02002981 spin_lock_bh(&bat_priv->tt.roam_list_lock);
2982 list_for_each_entry_safe(node, safe, &bat_priv->tt.roam_list, list) {
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002983 if (!batadv_has_timed_out(node->first_time,
2984 BATADV_ROAMING_MAX_TIME))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002985 continue;
2986
2987 list_del(&node->list);
2988 kfree(node);
2989 }
Sven Eckelmann807736f2012-07-15 22:26:51 +02002990 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002991}
2992
2993/* This function checks whether the client already reached the
2994 * maximum number of possible roaming phases. In this case the ROAMING_ADV
2995 * will not be sent.
2996 *
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002997 * returns true if the ROAMING_ADV can be sent, false otherwise
2998 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002999static bool batadv_tt_check_roam_count(struct batadv_priv *bat_priv,
Sven Eckelmanna5130882012-05-16 20:23:16 +02003000 uint8_t *client)
Antonio Quartullicc47f662011-04-27 14:27:57 +02003001{
Sven Eckelmann56303d32012-06-05 22:31:31 +02003002 struct batadv_tt_roam_node *tt_roam_node;
Antonio Quartullicc47f662011-04-27 14:27:57 +02003003 bool ret = false;
3004
Sven Eckelmann807736f2012-07-15 22:26:51 +02003005 spin_lock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003006 /* The new tt_req will be issued only if I'm not waiting for a
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003007 * reply from the same orig_node yet
3008 */
Sven Eckelmann807736f2012-07-15 22:26:51 +02003009 list_for_each_entry(tt_roam_node, &bat_priv->tt.roam_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02003010 if (!batadv_compare_eth(tt_roam_node->addr, client))
Antonio Quartullicc47f662011-04-27 14:27:57 +02003011 continue;
3012
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02003013 if (batadv_has_timed_out(tt_roam_node->first_time,
Sven Eckelmann42d0b042012-06-03 22:19:17 +02003014 BATADV_ROAMING_MAX_TIME))
Antonio Quartullicc47f662011-04-27 14:27:57 +02003015 continue;
3016
Sven Eckelmann3e348192012-05-16 20:23:22 +02003017 if (!batadv_atomic_dec_not_zero(&tt_roam_node->counter))
Antonio Quartullicc47f662011-04-27 14:27:57 +02003018 /* Sorry, you roamed too many times! */
3019 goto unlock;
3020 ret = true;
3021 break;
3022 }
3023
3024 if (!ret) {
3025 tt_roam_node = kmalloc(sizeof(*tt_roam_node), GFP_ATOMIC);
3026 if (!tt_roam_node)
3027 goto unlock;
3028
3029 tt_roam_node->first_time = jiffies;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02003030 atomic_set(&tt_roam_node->counter,
3031 BATADV_ROAMING_MAX_COUNT - 1);
Antonio Quartulli8fdd0152014-01-22 00:42:11 +01003032 ether_addr_copy(tt_roam_node->addr, client);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003033
Sven Eckelmann807736f2012-07-15 22:26:51 +02003034 list_add(&tt_roam_node->list, &bat_priv->tt.roam_list);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003035 ret = true;
3036 }
3037
3038unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +02003039 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003040 return ret;
3041}
3042
Antonio Quartullic018ad32013-06-04 12:11:39 +02003043/**
3044 * batadv_send_roam_adv - send a roaming advertisement message
3045 * @bat_priv: the bat priv with all the soft interface information
3046 * @client: mac address of the roaming client
3047 * @vid: VLAN identifier
3048 * @orig_node: message destination
3049 *
3050 * Send a ROAMING_ADV message to the node which was previously serving this
3051 * client. This is done to inform the node that from now on all traffic destined
3052 * for this particular roamed client has to be forwarded to the sender of the
3053 * roaming message.
3054 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02003055static void batadv_send_roam_adv(struct batadv_priv *bat_priv, uint8_t *client,
Antonio Quartullic018ad32013-06-04 12:11:39 +02003056 unsigned short vid,
Sven Eckelmann56303d32012-06-05 22:31:31 +02003057 struct batadv_orig_node *orig_node)
Antonio Quartullicc47f662011-04-27 14:27:57 +02003058{
Sven Eckelmann56303d32012-06-05 22:31:31 +02003059 struct batadv_hard_iface *primary_if;
Marek Lindner122edaa2013-04-23 21:40:03 +08003060 struct batadv_tvlv_roam_adv tvlv_roam;
3061
3062 primary_if = batadv_primary_if_get_selected(bat_priv);
3063 if (!primary_if)
3064 goto out;
Antonio Quartullicc47f662011-04-27 14:27:57 +02003065
3066 /* before going on we have to check whether the client has
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003067 * already roamed to us too many times
3068 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02003069 if (!batadv_tt_check_roam_count(bat_priv, client))
Antonio Quartullicc47f662011-04-27 14:27:57 +02003070 goto out;
3071
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003072 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02003073 "Sending ROAMING_ADV to %pM (client %pM, vid: %d)\n",
3074 orig_node->orig, client, BATADV_PRINT_VID(vid));
Antonio Quartullicc47f662011-04-27 14:27:57 +02003075
Sven Eckelmannd69909d2012-06-03 22:19:20 +02003076 batadv_inc_counter(bat_priv, BATADV_CNT_TT_ROAM_ADV_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02003077
Marek Lindner122edaa2013-04-23 21:40:03 +08003078 memcpy(tvlv_roam.client, client, sizeof(tvlv_roam.client));
Antonio Quartullic018ad32013-06-04 12:11:39 +02003079 tvlv_roam.vid = htons(vid);
Marek Lindner122edaa2013-04-23 21:40:03 +08003080
3081 batadv_tvlv_unicast_send(bat_priv, primary_if->net_dev->dev_addr,
3082 orig_node->orig, BATADV_TVLV_ROAM, 1,
3083 &tvlv_roam, sizeof(tvlv_roam));
Antonio Quartullicc47f662011-04-27 14:27:57 +02003084
3085out:
Marek Lindner122edaa2013-04-23 21:40:03 +08003086 if (primary_if)
3087 batadv_hardif_free_ref(primary_if);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003088}
3089
Sven Eckelmanna5130882012-05-16 20:23:16 +02003090static void batadv_tt_purge(struct work_struct *work)
Antonio Quartullia73105b2011-04-27 14:27:44 +02003091{
Sven Eckelmann56303d32012-06-05 22:31:31 +02003092 struct delayed_work *delayed_work;
Sven Eckelmann807736f2012-07-15 22:26:51 +02003093 struct batadv_priv_tt *priv_tt;
Sven Eckelmann56303d32012-06-05 22:31:31 +02003094 struct batadv_priv *bat_priv;
3095
3096 delayed_work = container_of(work, struct delayed_work, work);
Sven Eckelmann807736f2012-07-15 22:26:51 +02003097 priv_tt = container_of(delayed_work, struct batadv_priv_tt, work);
3098 bat_priv = container_of(priv_tt, struct batadv_priv, tt);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003099
Marek Lindnera19d3d82013-05-27 15:33:25 +08003100 batadv_tt_local_purge(bat_priv, BATADV_TT_LOCAL_TIMEOUT);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02003101 batadv_tt_global_purge(bat_priv);
Sven Eckelmanna5130882012-05-16 20:23:16 +02003102 batadv_tt_req_purge(bat_priv);
3103 batadv_tt_roam_purge(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003104
Antonio Quartulli72414442012-12-25 13:14:37 +01003105 queue_delayed_work(batadv_event_workqueue, &bat_priv->tt.work,
3106 msecs_to_jiffies(BATADV_TT_WORK_PERIOD));
Antonio Quartullia73105b2011-04-27 14:27:44 +02003107}
Antonio Quartullicc47f662011-04-27 14:27:57 +02003108
Sven Eckelmann56303d32012-06-05 22:31:31 +02003109void batadv_tt_free(struct batadv_priv *bat_priv)
Antonio Quartullicc47f662011-04-27 14:27:57 +02003110{
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003111 batadv_tvlv_container_unregister(bat_priv, BATADV_TVLV_TT, 1);
3112 batadv_tvlv_handler_unregister(bat_priv, BATADV_TVLV_TT, 1);
3113
Sven Eckelmann807736f2012-07-15 22:26:51 +02003114 cancel_delayed_work_sync(&bat_priv->tt.work);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003115
Sven Eckelmanna5130882012-05-16 20:23:16 +02003116 batadv_tt_local_table_free(bat_priv);
3117 batadv_tt_global_table_free(bat_priv);
3118 batadv_tt_req_list_free(bat_priv);
3119 batadv_tt_changes_list_free(bat_priv);
3120 batadv_tt_roam_list_free(bat_priv);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003121
Sven Eckelmann807736f2012-07-15 22:26:51 +02003122 kfree(bat_priv->tt.last_changeset);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003123}
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003124
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003125/**
3126 * batadv_tt_local_set_flags - set or unset the specified flags on the local
3127 * table and possibly count them in the TT size
3128 * @bat_priv: the bat priv with all the soft interface information
3129 * @flags: the flag to switch
3130 * @enable: whether to set or unset the flag
3131 * @count: whether to increase the TT size by the number of changed entries
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003132 */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003133static void batadv_tt_local_set_flags(struct batadv_priv *bat_priv,
3134 uint16_t flags, bool enable, bool count)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003135{
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003136 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
3137 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartulli697f2532011-11-07 16:47:01 +01003138 uint16_t changed_num = 0;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003139 struct hlist_head *head;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003140 uint32_t i;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003141
3142 if (!hash)
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003143 return;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003144
3145 for (i = 0; i < hash->size; i++) {
3146 head = &hash->table[i];
3147
3148 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003149 hlist_for_each_entry_rcu(tt_common_entry,
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003150 head, hash_entry) {
Antonio Quartulli697f2532011-11-07 16:47:01 +01003151 if (enable) {
3152 if ((tt_common_entry->flags & flags) == flags)
3153 continue;
3154 tt_common_entry->flags |= flags;
3155 } else {
3156 if (!(tt_common_entry->flags & flags))
3157 continue;
3158 tt_common_entry->flags &= ~flags;
3159 }
3160 changed_num++;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003161
3162 if (!count)
3163 continue;
3164
3165 batadv_tt_local_size_inc(bat_priv,
3166 tt_common_entry->vid);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003167 }
3168 rcu_read_unlock();
3169 }
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003170}
3171
Sven Eckelmannacd34af2012-06-03 22:19:21 +02003172/* Purge out all the tt local entries marked with BATADV_TT_CLIENT_PENDING */
Sven Eckelmann56303d32012-06-05 22:31:31 +02003173static void batadv_tt_local_purge_pending_clients(struct batadv_priv *bat_priv)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003174{
Sven Eckelmann807736f2012-07-15 22:26:51 +02003175 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02003176 struct batadv_tt_common_entry *tt_common;
3177 struct batadv_tt_local_entry *tt_local;
Antonio Quartulli35df3b22014-05-08 17:13:15 +02003178 struct batadv_softif_vlan *vlan;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003179 struct hlist_node *node_tmp;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003180 struct hlist_head *head;
3181 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullic90681b2011-10-05 17:05:25 +02003182 uint32_t i;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003183
3184 if (!hash)
3185 return;
3186
3187 for (i = 0; i < hash->size; i++) {
3188 head = &hash->table[i];
3189 list_lock = &hash->list_locks[i];
3190
3191 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08003192 hlist_for_each_entry_safe(tt_common, node_tmp, head,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02003193 hash_entry) {
3194 if (!(tt_common->flags & BATADV_TT_CLIENT_PENDING))
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003195 continue;
3196
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003197 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02003198 "Deleting local tt entry (%pM, vid: %d): pending\n",
3199 tt_common->addr,
3200 BATADV_PRINT_VID(tt_common->vid));
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003201
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003202 batadv_tt_local_size_dec(bat_priv, tt_common->vid);
Sasha Levinb67bfe02013-02-27 17:06:00 -08003203 hlist_del_rcu(&tt_common->hash_entry);
Sven Eckelmann56303d32012-06-05 22:31:31 +02003204 tt_local = container_of(tt_common,
3205 struct batadv_tt_local_entry,
3206 common);
Antonio Quartulli35df3b22014-05-08 17:13:15 +02003207
3208 /* decrease the reference held for this vlan */
3209 vlan = batadv_softif_vlan_get(bat_priv, tt_common->vid);
3210 batadv_softif_vlan_free_ref(vlan);
3211 batadv_softif_vlan_free_ref(vlan);
3212
Sven Eckelmann56303d32012-06-05 22:31:31 +02003213 batadv_tt_local_entry_free_ref(tt_local);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003214 }
3215 spin_unlock_bh(list_lock);
3216 }
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003217}
3218
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003219/**
Marek Lindnera19d3d82013-05-27 15:33:25 +08003220 * batadv_tt_local_commit_changes_nolock - commit all pending local tt changes
3221 * which have been queued in the time since the last commit
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003222 * @bat_priv: the bat priv with all the soft interface information
Marek Lindnera19d3d82013-05-27 15:33:25 +08003223 *
3224 * Caller must hold tt->commit_lock.
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003225 */
Marek Lindnera19d3d82013-05-27 15:33:25 +08003226static void batadv_tt_local_commit_changes_nolock(struct batadv_priv *bat_priv)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003227{
Linus Lüssingc5caf4e2014-02-15 17:47:49 +01003228 /* Update multicast addresses in local translation table */
3229 batadv_mcast_mla_update(bat_priv);
3230
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003231 if (atomic_read(&bat_priv->tt.local_changes) < 1) {
3232 if (!batadv_atomic_dec_not_zero(&bat_priv->tt.ogm_append_cnt))
3233 batadv_tt_tvlv_container_update(bat_priv);
Marek Lindnera19d3d82013-05-27 15:33:25 +08003234 return;
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003235 }
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08003236
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003237 batadv_tt_local_set_flags(bat_priv, BATADV_TT_CLIENT_NEW, false, true);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08003238
Sven Eckelmanna5130882012-05-16 20:23:16 +02003239 batadv_tt_local_purge_pending_clients(bat_priv);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003240 batadv_tt_local_update_crc(bat_priv);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003241
3242 /* Increment the TTVN only once per OGM interval */
Sven Eckelmann807736f2012-07-15 22:26:51 +02003243 atomic_inc(&bat_priv->tt.vn);
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003244 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02003245 "Local changes committed, updating to ttvn %u\n",
Sven Eckelmann807736f2012-07-15 22:26:51 +02003246 (uint8_t)atomic_read(&bat_priv->tt.vn));
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08003247
3248 /* reset the sending counter */
Sven Eckelmann807736f2012-07-15 22:26:51 +02003249 atomic_set(&bat_priv->tt.ogm_append_cnt, BATADV_TT_OGM_APPEND_MAX);
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003250 batadv_tt_tvlv_container_update(bat_priv);
Marek Lindnera19d3d82013-05-27 15:33:25 +08003251}
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003252
Marek Lindnera19d3d82013-05-27 15:33:25 +08003253/**
3254 * batadv_tt_local_commit_changes - commit all pending local tt changes which
3255 * have been queued in the time since the last commit
3256 * @bat_priv: the bat priv with all the soft interface information
3257 */
3258void batadv_tt_local_commit_changes(struct batadv_priv *bat_priv)
3259{
3260 spin_lock_bh(&bat_priv->tt.commit_lock);
3261 batadv_tt_local_commit_changes_nolock(bat_priv);
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003262 spin_unlock_bh(&bat_priv->tt.commit_lock);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003263}
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003264
Sven Eckelmann56303d32012-06-05 22:31:31 +02003265bool batadv_is_ap_isolated(struct batadv_priv *bat_priv, uint8_t *src,
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003266 uint8_t *dst, unsigned short vid)
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003267{
Sven Eckelmann56303d32012-06-05 22:31:31 +02003268 struct batadv_tt_local_entry *tt_local_entry = NULL;
3269 struct batadv_tt_global_entry *tt_global_entry = NULL;
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003270 struct batadv_softif_vlan *vlan;
Marek Lindner5870adc2012-06-20 17:16:05 +02003271 bool ret = false;
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003272
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003273 vlan = batadv_softif_vlan_get(bat_priv, vid);
3274 if (!vlan || !atomic_read(&vlan->ap_isolation))
Marek Lindner5870adc2012-06-20 17:16:05 +02003275 goto out;
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003276
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003277 tt_local_entry = batadv_tt_local_hash_find(bat_priv, dst, vid);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003278 if (!tt_local_entry)
3279 goto out;
3280
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003281 tt_global_entry = batadv_tt_global_hash_find(bat_priv, src, vid);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003282 if (!tt_global_entry)
3283 goto out;
3284
Antonio Quartulli1f129fe2012-06-25 20:49:50 +00003285 if (!_batadv_is_ap_isolated(tt_local_entry, tt_global_entry))
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003286 goto out;
3287
Marek Lindner5870adc2012-06-20 17:16:05 +02003288 ret = true;
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003289
3290out:
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003291 if (vlan)
3292 batadv_softif_vlan_free_ref(vlan);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003293 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02003294 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003295 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02003296 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003297 return ret;
3298}
Marek Lindnera943cac2011-07-30 13:10:18 +02003299
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003300/**
3301 * batadv_tt_update_orig - update global translation table with new tt
3302 * information received via ogms
3303 * @bat_priv: the bat priv with all the soft interface information
3304 * @orig: the orig_node of the ogm
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003305 * @tt_vlan: pointer to the first tvlv VLAN entry
3306 * @tt_num_vlan: number of tvlv VLAN entries
3307 * @tt_change: pointer to the first entry in the TT buffer
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003308 * @tt_num_changes: number of tt changes inside the tt buffer
3309 * @ttvn: translation table version number of this changeset
Antonio Quartulliced72932013-04-24 16:37:51 +02003310 * @tt_crc: crc32 checksum of orig node's translation table
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003311 */
3312static void batadv_tt_update_orig(struct batadv_priv *bat_priv,
3313 struct batadv_orig_node *orig_node,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003314 const void *tt_buff, uint16_t tt_num_vlan,
3315 struct batadv_tvlv_tt_change *tt_change,
3316 uint16_t tt_num_changes, uint8_t ttvn)
Marek Lindnera943cac2011-07-30 13:10:18 +02003317{
3318 uint8_t orig_ttvn = (uint8_t)atomic_read(&orig_node->last_ttvn);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003319 struct batadv_tvlv_tt_vlan_data *tt_vlan;
Marek Lindnera943cac2011-07-30 13:10:18 +02003320 bool full_table = true;
Linus Lüssinge17931d2014-02-15 17:47:50 +01003321 bool has_tt_init;
Marek Lindnera943cac2011-07-30 13:10:18 +02003322
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003323 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)tt_buff;
Linus Lüssinge17931d2014-02-15 17:47:50 +01003324 has_tt_init = orig_node->capa_initialized & BATADV_ORIG_CAPA_HAS_TT;
3325
Antonio Quartulli17071572011-11-07 16:36:40 +01003326 /* orig table not initialised AND first diff is in the OGM OR the ttvn
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003327 * increased by one -> we can apply the attached changes
3328 */
Linus Lüssinge17931d2014-02-15 17:47:50 +01003329 if ((!has_tt_init && ttvn == 1) || ttvn - orig_ttvn == 1) {
Marek Lindnera943cac2011-07-30 13:10:18 +02003330 /* the OGM could not contain the changes due to their size or
Sven Eckelmann42d0b042012-06-03 22:19:17 +02003331 * because they have already been sent BATADV_TT_OGM_APPEND_MAX
3332 * times.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003333 * In this case send a tt request
3334 */
Marek Lindnera943cac2011-07-30 13:10:18 +02003335 if (!tt_num_changes) {
3336 full_table = false;
3337 goto request_table;
3338 }
3339
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003340 spin_lock_bh(&orig_node->tt_lock);
3341
Sven Eckelmanna5130882012-05-16 20:23:16 +02003342 batadv_tt_update_changes(bat_priv, orig_node, tt_num_changes,
Sven Eckelmann96412692012-06-05 22:31:30 +02003343 ttvn, tt_change);
Marek Lindnera943cac2011-07-30 13:10:18 +02003344
3345 /* Even if we received the precomputed crc with the OGM, we
3346 * prefer to recompute it to spot any possible inconsistency
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003347 * in the global table
3348 */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003349 batadv_tt_global_update_crc(bat_priv, orig_node);
Marek Lindnera943cac2011-07-30 13:10:18 +02003350
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003351 spin_unlock_bh(&orig_node->tt_lock);
3352
Marek Lindnera943cac2011-07-30 13:10:18 +02003353 /* The ttvn alone is not enough to guarantee consistency
3354 * because a single value could represent different states
3355 * (due to the wrap around). Thus a node has to check whether
3356 * the resulting table (after applying the changes) is still
3357 * consistent or not. E.g. a node could disconnect while its
3358 * ttvn is X and reconnect on ttvn = X + TTVN_MAX: in this case
3359 * checking the CRC value is mandatory to detect the
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003360 * inconsistency
3361 */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003362 if (!batadv_tt_global_check_crc(orig_node, tt_vlan,
3363 tt_num_vlan))
Marek Lindnera943cac2011-07-30 13:10:18 +02003364 goto request_table;
Marek Lindnera943cac2011-07-30 13:10:18 +02003365 } else {
3366 /* if we missed more than one change or our tables are not
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003367 * in sync anymore -> request fresh tt data
3368 */
Linus Lüssinge17931d2014-02-15 17:47:50 +01003369 if (!has_tt_init || ttvn != orig_ttvn ||
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003370 !batadv_tt_global_check_crc(orig_node, tt_vlan,
3371 tt_num_vlan)) {
Marek Lindnera943cac2011-07-30 13:10:18 +02003372request_table:
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003373 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003374 "TT inconsistency for %pM. Need to retrieve the correct information (ttvn: %u last_ttvn: %u num_changes: %u)\n",
3375 orig_node->orig, ttvn, orig_ttvn,
3376 tt_num_changes);
Sven Eckelmanna5130882012-05-16 20:23:16 +02003377 batadv_send_tt_request(bat_priv, orig_node, ttvn,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003378 tt_vlan, tt_num_vlan,
3379 full_table);
Marek Lindnera943cac2011-07-30 13:10:18 +02003380 return;
3381 }
3382 }
3383}
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003384
Antonio Quartullic018ad32013-06-04 12:11:39 +02003385/**
3386 * batadv_tt_global_client_is_roaming - check if a client is marked as roaming
3387 * @bat_priv: the bat priv with all the soft interface information
3388 * @addr: the mac address of the client to check
3389 * @vid: VLAN identifier
3390 *
3391 * Returns true if we know that the client has moved from its old originator
3392 * to another one. This entry is still kept for consistency purposes and will be
3393 * deleted later by a DEL or because of timeout
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003394 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02003395bool batadv_tt_global_client_is_roaming(struct batadv_priv *bat_priv,
Antonio Quartullic018ad32013-06-04 12:11:39 +02003396 uint8_t *addr, unsigned short vid)
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003397{
Sven Eckelmann56303d32012-06-05 22:31:31 +02003398 struct batadv_tt_global_entry *tt_global_entry;
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003399 bool ret = false;
3400
Antonio Quartullic018ad32013-06-04 12:11:39 +02003401 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid);
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003402 if (!tt_global_entry)
3403 goto out;
3404
Antonio Quartullic1d07432013-01-15 22:17:19 +10003405 ret = tt_global_entry->common.flags & BATADV_TT_CLIENT_ROAM;
Sven Eckelmanna5130882012-05-16 20:23:16 +02003406 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003407out:
3408 return ret;
3409}
Antonio Quartulli30cfd022012-07-05 23:38:29 +02003410
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003411/**
3412 * batadv_tt_local_client_is_roaming - tells whether the client is roaming
3413 * @bat_priv: the bat priv with all the soft interface information
Antonio Quartullic018ad32013-06-04 12:11:39 +02003414 * @addr: the mac address of the local client to query
3415 * @vid: VLAN identifier
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003416 *
3417 * Returns true if the local client is known to be roaming (it is not served by
3418 * this node anymore) or not. If yes, the client is still present in the table
3419 * to keep the latter consistent with the node TTVN
3420 */
3421bool batadv_tt_local_client_is_roaming(struct batadv_priv *bat_priv,
Antonio Quartullic018ad32013-06-04 12:11:39 +02003422 uint8_t *addr, unsigned short vid)
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003423{
3424 struct batadv_tt_local_entry *tt_local_entry;
3425 bool ret = false;
3426
Antonio Quartullic018ad32013-06-04 12:11:39 +02003427 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr, vid);
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003428 if (!tt_local_entry)
3429 goto out;
3430
3431 ret = tt_local_entry->common.flags & BATADV_TT_CLIENT_ROAM;
3432 batadv_tt_local_entry_free_ref(tt_local_entry);
3433out:
3434 return ret;
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003435}
3436
Antonio Quartulli30cfd022012-07-05 23:38:29 +02003437bool batadv_tt_add_temporary_global_entry(struct batadv_priv *bat_priv,
3438 struct batadv_orig_node *orig_node,
Antonio Quartullic018ad32013-06-04 12:11:39 +02003439 const unsigned char *addr,
Antonio Quartulli16052782013-06-04 12:11:41 +02003440 unsigned short vid)
Antonio Quartulli30cfd022012-07-05 23:38:29 +02003441{
3442 bool ret = false;
3443
Antonio Quartulli16052782013-06-04 12:11:41 +02003444 if (!batadv_tt_global_add(bat_priv, orig_node, addr, vid,
Antonio Quartulli30cfd022012-07-05 23:38:29 +02003445 BATADV_TT_CLIENT_TEMP,
3446 atomic_read(&orig_node->last_ttvn)))
3447 goto out;
3448
3449 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02003450 "Added temporary global client (addr: %pM, vid: %d, orig: %pM)\n",
3451 addr, BATADV_PRINT_VID(vid), orig_node->orig);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02003452 ret = true;
3453out:
3454 return ret;
3455}
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003456
3457/**
Marek Lindnera19d3d82013-05-27 15:33:25 +08003458 * batadv_tt_local_resize_to_mtu - resize the local translation table fit the
3459 * maximum packet size that can be transported through the mesh
3460 * @soft_iface: netdev struct of the mesh interface
3461 *
3462 * Remove entries older than 'timeout' and half timeout if more entries need
3463 * to be removed.
3464 */
3465void batadv_tt_local_resize_to_mtu(struct net_device *soft_iface)
3466{
3467 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
3468 int packet_size_max = atomic_read(&bat_priv->packet_size_max);
3469 int table_size, timeout = BATADV_TT_LOCAL_TIMEOUT / 2;
3470 bool reduced = false;
3471
3472 spin_lock_bh(&bat_priv->tt.commit_lock);
3473
3474 while (true) {
3475 table_size = batadv_tt_local_table_transmit_size(bat_priv);
3476 if (packet_size_max >= table_size)
3477 break;
3478
3479 batadv_tt_local_purge(bat_priv, timeout);
3480 batadv_tt_local_purge_pending_clients(bat_priv);
3481
3482 timeout /= 2;
3483 reduced = true;
3484 net_ratelimited_function(batadv_info, soft_iface,
3485 "Forced to purge local tt entries to fit new maximum fragment MTU (%i)\n",
3486 packet_size_max);
3487 }
3488
3489 /* commit these changes immediately, to avoid synchronization problem
3490 * with the TTVN
3491 */
3492 if (reduced)
3493 batadv_tt_local_commit_changes_nolock(bat_priv);
3494
3495 spin_unlock_bh(&bat_priv->tt.commit_lock);
3496}
3497
3498/**
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003499 * batadv_tt_tvlv_ogm_handler_v1 - process incoming tt tvlv container
3500 * @bat_priv: the bat priv with all the soft interface information
3501 * @orig: the orig_node of the ogm
3502 * @flags: flags indicating the tvlv state (see batadv_tvlv_handler_flags)
3503 * @tvlv_value: tvlv buffer containing the gateway data
3504 * @tvlv_value_len: tvlv buffer length
3505 */
3506static void batadv_tt_tvlv_ogm_handler_v1(struct batadv_priv *bat_priv,
3507 struct batadv_orig_node *orig,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003508 uint8_t flags, void *tvlv_value,
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003509 uint16_t tvlv_value_len)
3510{
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003511 struct batadv_tvlv_tt_vlan_data *tt_vlan;
3512 struct batadv_tvlv_tt_change *tt_change;
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003513 struct batadv_tvlv_tt_data *tt_data;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003514 uint16_t num_entries, num_vlan;
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003515
3516 if (tvlv_value_len < sizeof(*tt_data))
3517 return;
3518
3519 tt_data = (struct batadv_tvlv_tt_data *)tvlv_value;
3520 tvlv_value_len -= sizeof(*tt_data);
3521
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003522 num_vlan = ntohs(tt_data->num_vlan);
3523
3524 if (tvlv_value_len < sizeof(*tt_vlan) * num_vlan)
3525 return;
3526
3527 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(tt_data + 1);
3528 tt_change = (struct batadv_tvlv_tt_change *)(tt_vlan + num_vlan);
3529 tvlv_value_len -= sizeof(*tt_vlan) * num_vlan;
3530
Antonio Quartulli298e6e62013-05-28 13:14:27 +02003531 num_entries = batadv_tt_entries(tvlv_value_len);
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003532
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003533 batadv_tt_update_orig(bat_priv, orig, tt_vlan, num_vlan, tt_change,
3534 num_entries, tt_data->ttvn);
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003535}
3536
3537/**
Marek Lindner335fbe02013-04-23 21:40:02 +08003538 * batadv_tt_tvlv_unicast_handler_v1 - process incoming (unicast) tt tvlv
3539 * container
3540 * @bat_priv: the bat priv with all the soft interface information
3541 * @src: mac address of tt tvlv sender
3542 * @dst: mac address of tt tvlv recipient
3543 * @tvlv_value: tvlv buffer containing the tt data
3544 * @tvlv_value_len: tvlv buffer length
3545 *
3546 * Returns NET_RX_DROP if the tt tvlv is to be re-routed, NET_RX_SUCCESS
3547 * otherwise.
3548 */
3549static int batadv_tt_tvlv_unicast_handler_v1(struct batadv_priv *bat_priv,
3550 uint8_t *src, uint8_t *dst,
3551 void *tvlv_value,
3552 uint16_t tvlv_value_len)
3553{
3554 struct batadv_tvlv_tt_data *tt_data;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003555 uint16_t tt_vlan_len, tt_num_entries;
Marek Lindner335fbe02013-04-23 21:40:02 +08003556 char tt_flag;
3557 bool ret;
3558
3559 if (tvlv_value_len < sizeof(*tt_data))
3560 return NET_RX_SUCCESS;
3561
3562 tt_data = (struct batadv_tvlv_tt_data *)tvlv_value;
3563 tvlv_value_len -= sizeof(*tt_data);
3564
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003565 tt_vlan_len = sizeof(struct batadv_tvlv_tt_vlan_data);
3566 tt_vlan_len *= ntohs(tt_data->num_vlan);
3567
3568 if (tvlv_value_len < tt_vlan_len)
3569 return NET_RX_SUCCESS;
3570
3571 tvlv_value_len -= tt_vlan_len;
3572 tt_num_entries = batadv_tt_entries(tvlv_value_len);
Marek Lindner335fbe02013-04-23 21:40:02 +08003573
3574 switch (tt_data->flags & BATADV_TT_DATA_TYPE_MASK) {
3575 case BATADV_TT_REQUEST:
3576 batadv_inc_counter(bat_priv, BATADV_CNT_TT_REQUEST_RX);
3577
3578 /* If this node cannot provide a TT response the tt_request is
3579 * forwarded
3580 */
3581 ret = batadv_send_tt_response(bat_priv, tt_data, src, dst);
3582 if (!ret) {
3583 if (tt_data->flags & BATADV_TT_FULL_TABLE)
3584 tt_flag = 'F';
3585 else
3586 tt_flag = '.';
3587
3588 batadv_dbg(BATADV_DBG_TT, bat_priv,
3589 "Routing TT_REQUEST to %pM [%c]\n",
3590 dst, tt_flag);
3591 /* tvlv API will re-route the packet */
3592 return NET_RX_DROP;
3593 }
3594 break;
3595 case BATADV_TT_RESPONSE:
3596 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_RX);
3597
3598 if (batadv_is_my_mac(bat_priv, dst)) {
3599 batadv_handle_tt_response(bat_priv, tt_data,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003600 src, tt_num_entries);
Marek Lindner335fbe02013-04-23 21:40:02 +08003601 return NET_RX_SUCCESS;
3602 }
3603
3604 if (tt_data->flags & BATADV_TT_FULL_TABLE)
3605 tt_flag = 'F';
3606 else
3607 tt_flag = '.';
3608
3609 batadv_dbg(BATADV_DBG_TT, bat_priv,
3610 "Routing TT_RESPONSE to %pM [%c]\n", dst, tt_flag);
3611
3612 /* tvlv API will re-route the packet */
3613 return NET_RX_DROP;
3614 }
3615
3616 return NET_RX_SUCCESS;
3617}
3618
3619/**
Marek Lindner122edaa2013-04-23 21:40:03 +08003620 * batadv_roam_tvlv_unicast_handler_v1 - process incoming tt roam tvlv container
3621 * @bat_priv: the bat priv with all the soft interface information
3622 * @src: mac address of tt tvlv sender
3623 * @dst: mac address of tt tvlv recipient
3624 * @tvlv_value: tvlv buffer containing the tt data
3625 * @tvlv_value_len: tvlv buffer length
3626 *
3627 * Returns NET_RX_DROP if the tt roam tvlv is to be re-routed, NET_RX_SUCCESS
3628 * otherwise.
3629 */
3630static int batadv_roam_tvlv_unicast_handler_v1(struct batadv_priv *bat_priv,
3631 uint8_t *src, uint8_t *dst,
3632 void *tvlv_value,
3633 uint16_t tvlv_value_len)
3634{
3635 struct batadv_tvlv_roam_adv *roaming_adv;
3636 struct batadv_orig_node *orig_node = NULL;
3637
3638 /* If this node is not the intended recipient of the
3639 * roaming advertisement the packet is forwarded
3640 * (the tvlv API will re-route the packet).
3641 */
3642 if (!batadv_is_my_mac(bat_priv, dst))
3643 return NET_RX_DROP;
3644
Marek Lindner122edaa2013-04-23 21:40:03 +08003645 if (tvlv_value_len < sizeof(*roaming_adv))
3646 goto out;
3647
3648 orig_node = batadv_orig_hash_find(bat_priv, src);
3649 if (!orig_node)
3650 goto out;
3651
3652 batadv_inc_counter(bat_priv, BATADV_CNT_TT_ROAM_ADV_RX);
3653 roaming_adv = (struct batadv_tvlv_roam_adv *)tvlv_value;
3654
3655 batadv_dbg(BATADV_DBG_TT, bat_priv,
3656 "Received ROAMING_ADV from %pM (client %pM)\n",
3657 src, roaming_adv->client);
3658
3659 batadv_tt_global_add(bat_priv, orig_node, roaming_adv->client,
Antonio Quartullic018ad32013-06-04 12:11:39 +02003660 ntohs(roaming_adv->vid), BATADV_TT_CLIENT_ROAM,
Marek Lindner122edaa2013-04-23 21:40:03 +08003661 atomic_read(&orig_node->last_ttvn) + 1);
3662
3663out:
3664 if (orig_node)
3665 batadv_orig_node_free_ref(orig_node);
3666 return NET_RX_SUCCESS;
3667}
3668
3669/**
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003670 * batadv_tt_init - initialise the translation table internals
3671 * @bat_priv: the bat priv with all the soft interface information
3672 *
3673 * Return 0 on success or negative error number in case of failure.
3674 */
3675int batadv_tt_init(struct batadv_priv *bat_priv)
3676{
3677 int ret;
3678
Antonio Quartulli0eb015682013-10-13 02:50:20 +02003679 /* synchronized flags must be remote */
3680 BUILD_BUG_ON(!(BATADV_TT_SYNC_MASK & BATADV_TT_REMOTE_MASK));
3681
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003682 ret = batadv_tt_local_init(bat_priv);
3683 if (ret < 0)
3684 return ret;
3685
3686 ret = batadv_tt_global_init(bat_priv);
3687 if (ret < 0)
3688 return ret;
3689
3690 batadv_tvlv_handler_register(bat_priv, batadv_tt_tvlv_ogm_handler_v1,
Marek Lindner335fbe02013-04-23 21:40:02 +08003691 batadv_tt_tvlv_unicast_handler_v1,
3692 BATADV_TVLV_TT, 1, BATADV_NO_FLAGS);
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003693
Marek Lindner122edaa2013-04-23 21:40:03 +08003694 batadv_tvlv_handler_register(bat_priv, NULL,
3695 batadv_roam_tvlv_unicast_handler_v1,
3696 BATADV_TVLV_ROAM, 1, BATADV_NO_FLAGS);
3697
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003698 INIT_DELAYED_WORK(&bat_priv->tt.work, batadv_tt_purge);
3699 queue_delayed_work(batadv_event_workqueue, &bat_priv->tt.work,
3700 msecs_to_jiffies(BATADV_TT_WORK_PERIOD));
3701
3702 return 1;
3703}
Antonio Quartulli42cb0be2013-11-16 12:03:52 +01003704
3705/**
3706 * batadv_tt_global_is_isolated - check if a client is marked as isolated
3707 * @bat_priv: the bat priv with all the soft interface information
3708 * @addr: the mac address of the client
3709 * @vid: the identifier of the VLAN where this client is connected
3710 *
3711 * Returns true if the client is marked with the TT_CLIENT_ISOLA flag, false
3712 * otherwise
3713 */
3714bool batadv_tt_global_is_isolated(struct batadv_priv *bat_priv,
3715 const uint8_t *addr, unsigned short vid)
3716{
3717 struct batadv_tt_global_entry *tt;
3718 bool ret;
3719
3720 tt = batadv_tt_global_hash_find(bat_priv, addr, vid);
3721 if (!tt)
3722 return false;
3723
3724 ret = tt->common.flags & BATADV_TT_CLIENT_ISOLA;
3725
3726 batadv_tt_global_entry_free_ref(tt);
3727
3728 return ret;
3729}