blob: 20804078293cbb6dafc2f359be4796175eb2e9b0 [file] [log] [blame]
Sven Eckelmann0046b042016-01-01 00:01:03 +01001/* Copyright (C) 2007-2016 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>
Linus Lüssingac4eebd2015-06-16 17:10:24 +020022#include <linux/bitops.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020023#include <linux/bug.h>
24#include <linux/byteorder/generic.h>
Sven Eckelmann86452f82016-06-25 16:44:06 +020025#include <linux/cache.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020026#include <linux/compiler.h>
Antonio Quartulliced72932013-04-24 16:37:51 +020027#include <linux/crc32c.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020028#include <linux/errno.h>
29#include <linux/etherdevice.h>
30#include <linux/fs.h>
31#include <linux/if_ether.h>
Sven Eckelmann86452f82016-06-25 16:44:06 +020032#include <linux/init.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020033#include <linux/jhash.h>
34#include <linux/jiffies.h>
35#include <linux/kernel.h>
Sven Eckelmann6e8ef692016-01-16 10:29:50 +010036#include <linux/kref.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020037#include <linux/list.h>
38#include <linux/lockdep.h>
39#include <linux/netdevice.h>
Matthias Schifferd34f0552016-07-03 13:31:37 +020040#include <linux/netlink.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020041#include <linux/rculist.h>
42#include <linux/rcupdate.h>
43#include <linux/seq_file.h>
Matthias Schifferd34f0552016-07-03 13:31:37 +020044#include <linux/skbuff.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020045#include <linux/slab.h>
46#include <linux/spinlock.h>
47#include <linux/stddef.h>
48#include <linux/string.h>
49#include <linux/workqueue.h>
Matthias Schifferd34f0552016-07-03 13:31:37 +020050#include <net/genetlink.h>
51#include <net/netlink.h>
52#include <net/sock.h>
53#include <uapi/linux/batman_adv.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020054
55#include "bridge_loop_avoidance.h"
56#include "hard-interface.h"
57#include "hash.h"
Sven Eckelmannba412082016-05-15 23:48:31 +020058#include "log.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020059#include "multicast.h"
Matthias Schifferd34f0552016-07-03 13:31:37 +020060#include "netlink.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020061#include "originator.h"
62#include "packet.h"
63#include "soft-interface.h"
Markus Pargmann1f8dce42016-05-15 11:07:43 +020064#include "tvlv.h"
Antonio Quartullia73105b2011-04-27 14:27:44 +020065
Sven Eckelmann86452f82016-06-25 16:44:06 +020066static struct kmem_cache *batadv_tl_cache __read_mostly;
67static struct kmem_cache *batadv_tg_cache __read_mostly;
68static struct kmem_cache *batadv_tt_orig_cache __read_mostly;
69static struct kmem_cache *batadv_tt_change_cache __read_mostly;
70static struct kmem_cache *batadv_tt_req_cache __read_mostly;
71static struct kmem_cache *batadv_tt_roam_cache __read_mostly;
72
Antonio Quartullidec05072012-11-10 11:00:32 +010073/* hash class keys */
74static struct lock_class_key batadv_tt_local_hash_lock_class_key;
75static struct lock_class_key batadv_tt_global_hash_lock_class_key;
76
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020077static void batadv_send_roam_adv(struct batadv_priv *bat_priv, u8 *client,
Antonio Quartullic018ad32013-06-04 12:11:39 +020078 unsigned short vid,
Sven Eckelmann56303d32012-06-05 22:31:31 +020079 struct batadv_orig_node *orig_node);
Sven Eckelmanna5130882012-05-16 20:23:16 +020080static void batadv_tt_purge(struct work_struct *work);
81static void
Sven Eckelmann56303d32012-06-05 22:31:31 +020082batadv_tt_global_del_orig_list(struct batadv_tt_global_entry *tt_global_entry);
Antonio Quartulli30cfd022012-07-05 23:38:29 +020083static void batadv_tt_global_del(struct batadv_priv *bat_priv,
84 struct batadv_orig_node *orig_node,
85 const unsigned char *addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +020086 unsigned short vid, const char *message,
87 bool roaming);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000088
Sven Eckelmann62fe7102015-09-15 19:00:48 +020089/**
Antonio Quartullid15cd622015-11-17 16:40:52 +080090 * batadv_compare_tt - check if two TT entries are the same
91 * @node: the list element pointer of the first TT entry
92 * @data2: pointer to the tt_common_entry of the second TT entry
Sven Eckelmann62fe7102015-09-15 19:00:48 +020093 *
Antonio Quartullid15cd622015-11-17 16:40:52 +080094 * Compare the MAC address and the VLAN ID of the two TT entries and check if
95 * they are the same TT client.
Sven Eckelmann4b426b12016-02-22 21:02:39 +010096 * Return: true if the two TT clients are the same, false otherwise
Sven Eckelmann62fe7102015-09-15 19:00:48 +020097 */
Sven Eckelmann4b426b12016-02-22 21:02:39 +010098static bool batadv_compare_tt(const struct hlist_node *node, const void *data2)
Marek Lindner7aadf882011-02-18 12:28:09 +000099{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200100 const void *data1 = container_of(node, struct batadv_tt_common_entry,
Sven Eckelmann747e4222011-05-14 23:14:50 +0200101 hash_entry);
Marek Lindner4c718952015-08-06 10:38:54 +0200102 const struct batadv_tt_common_entry *tt1 = data1;
103 const struct batadv_tt_common_entry *tt2 = data2;
Marek Lindner7aadf882011-02-18 12:28:09 +0000104
Marek Lindner4c718952015-08-06 10:38:54 +0200105 return (tt1->vid == tt2->vid) && batadv_compare_eth(data1, data2);
Marek Lindner7aadf882011-02-18 12:28:09 +0000106}
107
Antonio Quartullic018ad32013-06-04 12:11:39 +0200108/**
109 * batadv_choose_tt - return the index of the tt entry in the hash table
110 * @data: pointer to the tt_common_entry object to map
111 * @size: the size of the hash table
112 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200113 * Return: the hash index where the object represented by 'data' should be
Antonio Quartullic018ad32013-06-04 12:11:39 +0200114 * stored at.
115 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200116static inline u32 batadv_choose_tt(const void *data, u32 size)
Antonio Quartullic018ad32013-06-04 12:11:39 +0200117{
118 struct batadv_tt_common_entry *tt;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200119 u32 hash = 0;
Antonio Quartullic018ad32013-06-04 12:11:39 +0200120
121 tt = (struct batadv_tt_common_entry *)data;
Sven Eckelmann36fd61c2015-03-01 09:46:18 +0100122 hash = jhash(&tt->addr, ETH_ALEN, hash);
123 hash = jhash(&tt->vid, sizeof(tt->vid), hash);
Antonio Quartullic018ad32013-06-04 12:11:39 +0200124
125 return hash % size;
126}
127
128/**
129 * batadv_tt_hash_find - look for a client in the given hash table
130 * @hash: the hash table to search
131 * @addr: the mac address of the client to look for
132 * @vid: VLAN identifier
133 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200134 * Return: a pointer to the tt_common struct belonging to the searched client if
Antonio Quartullic018ad32013-06-04 12:11:39 +0200135 * found, NULL otherwise.
136 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200137static struct batadv_tt_common_entry *
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200138batadv_tt_hash_find(struct batadv_hashtable *hash, const u8 *addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200139 unsigned short vid)
Marek Lindner7aadf882011-02-18 12:28:09 +0000140{
Marek Lindner7aadf882011-02-18 12:28:09 +0000141 struct hlist_head *head;
Antonio Quartullic018ad32013-06-04 12:11:39 +0200142 struct batadv_tt_common_entry to_search, *tt, *tt_tmp = NULL;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200143 u32 index;
Marek Lindner7aadf882011-02-18 12:28:09 +0000144
145 if (!hash)
146 return NULL;
147
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100148 ether_addr_copy(to_search.addr, addr);
Antonio Quartullic018ad32013-06-04 12:11:39 +0200149 to_search.vid = vid;
150
151 index = batadv_choose_tt(&to_search, hash->size);
Marek Lindner7aadf882011-02-18 12:28:09 +0000152 head = &hash->table[index];
153
154 rcu_read_lock();
Antonio Quartullic018ad32013-06-04 12:11:39 +0200155 hlist_for_each_entry_rcu(tt, head, hash_entry) {
156 if (!batadv_compare_eth(tt, addr))
Marek Lindner7aadf882011-02-18 12:28:09 +0000157 continue;
158
Antonio Quartullic018ad32013-06-04 12:11:39 +0200159 if (tt->vid != vid)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200160 continue;
161
Sven Eckelmann92dcdf02016-01-16 10:29:57 +0100162 if (!kref_get_unless_zero(&tt->refcount))
Antonio Quartullic018ad32013-06-04 12:11:39 +0200163 continue;
164
165 tt_tmp = tt;
Marek Lindner7aadf882011-02-18 12:28:09 +0000166 break;
167 }
168 rcu_read_unlock();
169
Antonio Quartullic018ad32013-06-04 12:11:39 +0200170 return tt_tmp;
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100171}
172
Antonio Quartullic018ad32013-06-04 12:11:39 +0200173/**
174 * batadv_tt_local_hash_find - search the local table for a given client
175 * @bat_priv: the bat priv with all the soft interface information
176 * @addr: the mac address of the client to look for
177 * @vid: VLAN identifier
178 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200179 * Return: a pointer to the corresponding tt_local_entry struct if the client is
Antonio Quartullic018ad32013-06-04 12:11:39 +0200180 * found, NULL otherwise.
181 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200182static struct batadv_tt_local_entry *
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200183batadv_tt_local_hash_find(struct batadv_priv *bat_priv, const u8 *addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200184 unsigned short vid)
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100185{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200186 struct batadv_tt_common_entry *tt_common_entry;
187 struct batadv_tt_local_entry *tt_local_entry = NULL;
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100188
Antonio Quartullic018ad32013-06-04 12:11:39 +0200189 tt_common_entry = batadv_tt_hash_find(bat_priv->tt.local_hash, addr,
190 vid);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100191 if (tt_common_entry)
192 tt_local_entry = container_of(tt_common_entry,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200193 struct batadv_tt_local_entry,
194 common);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100195 return tt_local_entry;
Marek Lindner7aadf882011-02-18 12:28:09 +0000196}
197
Antonio Quartullic018ad32013-06-04 12:11:39 +0200198/**
199 * batadv_tt_global_hash_find - search the global table for a given client
200 * @bat_priv: the bat priv with all the soft interface information
201 * @addr: the mac address of the client to look for
202 * @vid: VLAN identifier
203 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200204 * Return: a pointer to the corresponding tt_global_entry struct if the client
Antonio Quartullic018ad32013-06-04 12:11:39 +0200205 * is found, NULL otherwise.
206 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200207static struct batadv_tt_global_entry *
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200208batadv_tt_global_hash_find(struct batadv_priv *bat_priv, const u8 *addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200209 unsigned short vid)
Marek Lindner7aadf882011-02-18 12:28:09 +0000210{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200211 struct batadv_tt_common_entry *tt_common_entry;
212 struct batadv_tt_global_entry *tt_global_entry = NULL;
Marek Lindner7aadf882011-02-18 12:28:09 +0000213
Antonio Quartullic018ad32013-06-04 12:11:39 +0200214 tt_common_entry = batadv_tt_hash_find(bat_priv->tt.global_hash, addr,
215 vid);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100216 if (tt_common_entry)
217 tt_global_entry = container_of(tt_common_entry,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200218 struct batadv_tt_global_entry,
219 common);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100220 return tt_global_entry;
Marek Lindner7aadf882011-02-18 12:28:09 +0000221}
222
Sven Eckelmann92dcdf02016-01-16 10:29:57 +0100223/**
Sven Eckelmann86452f82016-06-25 16:44:06 +0200224 * batadv_tt_local_entry_free_rcu - free the tt_local_entry
225 * @rcu: rcu pointer of the tt_local_entry
226 */
227static void batadv_tt_local_entry_free_rcu(struct rcu_head *rcu)
228{
229 struct batadv_tt_local_entry *tt_local_entry;
230
231 tt_local_entry = container_of(rcu, struct batadv_tt_local_entry,
232 common.rcu);
233
234 kmem_cache_free(batadv_tl_cache, tt_local_entry);
235}
236
237/**
Sven Eckelmann92dcdf02016-01-16 10:29:57 +0100238 * batadv_tt_local_entry_release - release tt_local_entry from lists and queue
239 * for free after rcu grace period
240 * @ref: kref pointer of the nc_node
241 */
242static void batadv_tt_local_entry_release(struct kref *ref)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200243{
Sven Eckelmann92dcdf02016-01-16 10:29:57 +0100244 struct batadv_tt_local_entry *tt_local_entry;
245
246 tt_local_entry = container_of(ref, struct batadv_tt_local_entry,
247 common.refcount);
248
Sven Eckelmanna33d9702016-03-11 16:44:05 +0100249 batadv_softif_vlan_put(tt_local_entry->vlan);
250
Sven Eckelmann86452f82016-06-25 16:44:06 +0200251 call_rcu(&tt_local_entry->common.rcu, batadv_tt_local_entry_free_rcu);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200252}
253
Antonio Quartulli21026052013-05-07 00:29:22 +0200254/**
Sven Eckelmann95c0db92016-01-17 11:01:25 +0100255 * batadv_tt_local_entry_put - decrement the tt_local_entry refcounter and
Sven Eckelmann92dcdf02016-01-16 10:29:57 +0100256 * possibly release it
257 * @tt_local_entry: tt_local_entry to be free'd
258 */
259static void
Sven Eckelmann95c0db92016-01-17 11:01:25 +0100260batadv_tt_local_entry_put(struct batadv_tt_local_entry *tt_local_entry)
Sven Eckelmann92dcdf02016-01-16 10:29:57 +0100261{
262 kref_put(&tt_local_entry->common.refcount,
263 batadv_tt_local_entry_release);
264}
265
266/**
Sven Eckelmann86452f82016-06-25 16:44:06 +0200267 * batadv_tt_global_entry_free_rcu - free the tt_global_entry
268 * @rcu: rcu pointer of the tt_global_entry
269 */
270static void batadv_tt_global_entry_free_rcu(struct rcu_head *rcu)
271{
272 struct batadv_tt_global_entry *tt_global_entry;
273
274 tt_global_entry = container_of(rcu, struct batadv_tt_global_entry,
275 common.rcu);
276
277 kmem_cache_free(batadv_tg_cache, tt_global_entry);
278}
279
280/**
Sven Eckelmann92dcdf02016-01-16 10:29:57 +0100281 * batadv_tt_global_entry_release - release tt_global_entry from lists and queue
282 * for free after rcu grace period
283 * @ref: kref pointer of the nc_node
284 */
285static void batadv_tt_global_entry_release(struct kref *ref)
286{
287 struct batadv_tt_global_entry *tt_global_entry;
288
289 tt_global_entry = container_of(ref, struct batadv_tt_global_entry,
290 common.refcount);
291
292 batadv_tt_global_del_orig_list(tt_global_entry);
Sven Eckelmann86452f82016-06-25 16:44:06 +0200293
294 call_rcu(&tt_global_entry->common.rcu, batadv_tt_global_entry_free_rcu);
Sven Eckelmann92dcdf02016-01-16 10:29:57 +0100295}
296
297/**
Sven Eckelmann5dafd8a2016-01-17 11:01:26 +0100298 * batadv_tt_global_entry_put - decrement the tt_global_entry refcounter and
299 * possibly release it
Sven Eckelmann92dcdf02016-01-16 10:29:57 +0100300 * @tt_global_entry: tt_global_entry to be free'd
Antonio Quartulli21026052013-05-07 00:29:22 +0200301 */
Sven Eckelmanna5130882012-05-16 20:23:16 +0200302static void
Sven Eckelmann5dafd8a2016-01-17 11:01:26 +0100303batadv_tt_global_entry_put(struct batadv_tt_global_entry *tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200304{
Sven Eckelmann92dcdf02016-01-16 10:29:57 +0100305 kref_put(&tt_global_entry->common.refcount,
306 batadv_tt_global_entry_release);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200307}
308
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +0100309/**
310 * batadv_tt_global_hash_count - count the number of orig entries
Antonio Quartullid15cd622015-11-17 16:40:52 +0800311 * @bat_priv: the bat priv with all the soft interface information
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +0100312 * @addr: the mac address of the client to count entries for
313 * @vid: VLAN identifier
314 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200315 * Return: the number of originators advertising the given address/data
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +0100316 * (excluding ourself).
317 */
318int batadv_tt_global_hash_count(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200319 const u8 *addr, unsigned short vid)
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +0100320{
321 struct batadv_tt_global_entry *tt_global_entry;
322 int count;
323
324 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid);
325 if (!tt_global_entry)
326 return 0;
327
328 count = atomic_read(&tt_global_entry->orig_list_count);
Sven Eckelmann5dafd8a2016-01-17 11:01:26 +0100329 batadv_tt_global_entry_put(tt_global_entry);
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +0100330
331 return count;
332}
333
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200334/**
335 * batadv_tt_local_size_mod - change the size by v of the local table identified
336 * by vid
337 * @bat_priv: the bat priv with all the soft interface information
338 * @vid: the VLAN identifier of the sub-table to change
339 * @v: the amount to sum to the local table size
340 */
341static void batadv_tt_local_size_mod(struct batadv_priv *bat_priv,
342 unsigned short vid, int v)
343{
344 struct batadv_softif_vlan *vlan;
345
346 vlan = batadv_softif_vlan_get(bat_priv, vid);
347 if (!vlan)
348 return;
349
350 atomic_add(v, &vlan->tt.num_entries);
351
Sven Eckelmann9c3bf082016-01-17 11:01:21 +0100352 batadv_softif_vlan_put(vlan);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200353}
354
355/**
356 * batadv_tt_local_size_inc - increase by one the local table size for the given
357 * vid
358 * @bat_priv: the bat priv with all the soft interface information
359 * @vid: the VLAN identifier
360 */
361static void batadv_tt_local_size_inc(struct batadv_priv *bat_priv,
362 unsigned short vid)
363{
364 batadv_tt_local_size_mod(bat_priv, vid, 1);
365}
366
367/**
368 * batadv_tt_local_size_dec - decrease by one the local table size for the given
369 * vid
370 * @bat_priv: the bat priv with all the soft interface information
371 * @vid: the VLAN identifier
372 */
373static void batadv_tt_local_size_dec(struct batadv_priv *bat_priv,
374 unsigned short vid)
375{
376 batadv_tt_local_size_mod(bat_priv, vid, -1);
377}
378
379/**
Antonio Quartullid15cd622015-11-17 16:40:52 +0800380 * batadv_tt_global_size_mod - change the size by v of the global table
381 * for orig_node identified by vid
382 * @orig_node: the originator for which the table has to be modified
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200383 * @vid: the VLAN identifier
384 * @v: the amount to sum to the global table size
385 */
386static void batadv_tt_global_size_mod(struct batadv_orig_node *orig_node,
387 unsigned short vid, int v)
388{
389 struct batadv_orig_node_vlan *vlan;
390
391 vlan = batadv_orig_node_vlan_new(orig_node, vid);
392 if (!vlan)
393 return;
394
395 if (atomic_add_return(v, &vlan->tt.num_entries) == 0) {
396 spin_lock_bh(&orig_node->vlan_list_lock);
Sven Eckelmann3db15202016-01-31 13:28:00 +0100397 if (!hlist_unhashed(&vlan->list)) {
398 hlist_del_init_rcu(&vlan->list);
Sven Eckelmann21754e22016-01-17 11:01:24 +0100399 batadv_orig_node_vlan_put(vlan);
Sven Eckelmann3db15202016-01-31 13:28:00 +0100400 }
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200401 spin_unlock_bh(&orig_node->vlan_list_lock);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200402 }
403
Sven Eckelmann21754e22016-01-17 11:01:24 +0100404 batadv_orig_node_vlan_put(vlan);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200405}
406
407/**
408 * batadv_tt_global_size_inc - increase by one the global table size for the
409 * given vid
410 * @orig_node: the originator which global table size has to be decreased
411 * @vid: the vlan identifier
412 */
413static void batadv_tt_global_size_inc(struct batadv_orig_node *orig_node,
414 unsigned short vid)
415{
416 batadv_tt_global_size_mod(orig_node, vid, 1);
417}
418
419/**
420 * batadv_tt_global_size_dec - decrease by one the global table size for the
421 * given vid
422 * @orig_node: the originator which global table size has to be decreased
423 * @vid: the vlan identifier
424 */
425static void batadv_tt_global_size_dec(struct batadv_orig_node *orig_node,
426 unsigned short vid)
427{
428 batadv_tt_global_size_mod(orig_node, vid, -1);
429}
430
Sven Eckelmann42eff6a2016-01-05 12:06:20 +0100431/**
Sven Eckelmann86452f82016-06-25 16:44:06 +0200432 * batadv_tt_orig_list_entry_free_rcu - free the orig_entry
433 * @rcu: rcu pointer of the orig_entry
434 */
435static void batadv_tt_orig_list_entry_free_rcu(struct rcu_head *rcu)
436{
437 struct batadv_tt_orig_list_entry *orig_entry;
438
439 orig_entry = container_of(rcu, struct batadv_tt_orig_list_entry, rcu);
440
441 kmem_cache_free(batadv_tt_orig_cache, orig_entry);
442}
443
444/**
Sven Eckelmann42eff6a2016-01-05 12:06:20 +0100445 * batadv_tt_orig_list_entry_release - release tt orig entry from lists and
446 * queue for free after rcu grace period
Sven Eckelmann6e8ef692016-01-16 10:29:50 +0100447 * @ref: kref pointer of the tt orig entry
Sven Eckelmann42eff6a2016-01-05 12:06:20 +0100448 */
Sven Eckelmann6e8ef692016-01-16 10:29:50 +0100449static void batadv_tt_orig_list_entry_release(struct kref *ref)
Sven Eckelmann42eff6a2016-01-05 12:06:20 +0100450{
Sven Eckelmann6e8ef692016-01-16 10:29:50 +0100451 struct batadv_tt_orig_list_entry *orig_entry;
452
453 orig_entry = container_of(ref, struct batadv_tt_orig_list_entry,
454 refcount);
455
Sven Eckelmann5d967312016-01-17 11:01:09 +0100456 batadv_orig_node_put(orig_entry->orig_node);
Sven Eckelmann86452f82016-06-25 16:44:06 +0200457 call_rcu(&orig_entry->rcu, batadv_tt_orig_list_entry_free_rcu);
Sven Eckelmann42eff6a2016-01-05 12:06:20 +0100458}
459
Sven Eckelmann6e8ef692016-01-16 10:29:50 +0100460/**
Sven Eckelmann7e2366c2016-01-17 11:01:27 +0100461 * batadv_tt_orig_list_entry_put - decrement the tt orig entry refcounter and
462 * possibly release it
Sven Eckelmann6e8ef692016-01-16 10:29:50 +0100463 * @orig_entry: tt orig entry to be free'd
464 */
Sven Eckelmanna5130882012-05-16 20:23:16 +0200465static void
Sven Eckelmann7e2366c2016-01-17 11:01:27 +0100466batadv_tt_orig_list_entry_put(struct batadv_tt_orig_list_entry *orig_entry)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200467{
Sven Eckelmann6e8ef692016-01-16 10:29:50 +0100468 kref_put(&orig_entry->refcount, batadv_tt_orig_list_entry_release);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200469}
470
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200471/**
472 * batadv_tt_local_event - store a local TT event (ADD/DEL)
473 * @bat_priv: the bat priv with all the soft interface information
474 * @tt_local_entry: the TT entry involved in the event
475 * @event_flags: flags to store in the event structure
476 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200477static void batadv_tt_local_event(struct batadv_priv *bat_priv,
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200478 struct batadv_tt_local_entry *tt_local_entry,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200479 u8 event_flags)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200480{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200481 struct batadv_tt_change_node *tt_change_node, *entry, *safe;
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200482 struct batadv_tt_common_entry *common = &tt_local_entry->common;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200483 u8 flags = common->flags | event_flags;
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200484 bool event_removed = false;
485 bool del_op_requested, del_op_entry;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200486
Sven Eckelmann86452f82016-06-25 16:44:06 +0200487 tt_change_node = kmem_cache_alloc(batadv_tt_change_cache, GFP_ATOMIC);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200488 if (!tt_change_node)
489 return;
490
Antonio Quartulliff66c972011-06-30 01:14:00 +0200491 tt_change_node->change.flags = flags;
Antonio Quartullica663042013-12-15 13:26:55 +0100492 memset(tt_change_node->change.reserved, 0,
493 sizeof(tt_change_node->change.reserved));
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100494 ether_addr_copy(tt_change_node->change.addr, common->addr);
Antonio Quartullic018ad32013-06-04 12:11:39 +0200495 tt_change_node->change.vid = htons(common->vid);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200496
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200497 del_op_requested = flags & BATADV_TT_CLIENT_DEL;
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200498
499 /* check for ADD+DEL or DEL+ADD events */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200500 spin_lock_bh(&bat_priv->tt.changes_list_lock);
501 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200502 list) {
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200503 if (!batadv_compare_eth(entry->change.addr, common->addr))
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200504 continue;
505
506 /* DEL+ADD in the same orig interval have no effect and can be
507 * removed to avoid silly behaviour on the receiver side. The
508 * other way around (ADD+DEL) can happen in case of roaming of
509 * a client still in the NEW state. Roaming of NEW clients is
510 * now possible due to automatically recognition of "temporary"
511 * clients
512 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200513 del_op_entry = entry->change.flags & BATADV_TT_CLIENT_DEL;
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200514 if (!del_op_requested && del_op_entry)
515 goto del;
516 if (del_op_requested && !del_op_entry)
517 goto del;
Antonio Quartulli3c4f7ab2013-10-13 02:50:19 +0200518
519 /* this is a second add in the same originator interval. It
520 * means that flags have been changed: update them!
521 */
522 if (!del_op_requested && !del_op_entry)
523 entry->change.flags = flags;
524
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200525 continue;
526del:
527 list_del(&entry->list);
Sven Eckelmann86452f82016-06-25 16:44:06 +0200528 kmem_cache_free(batadv_tt_change_cache, entry);
529 kmem_cache_free(batadv_tt_change_cache, tt_change_node);
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200530 event_removed = true;
531 goto unlock;
532 }
533
Antonio Quartullia73105b2011-04-27 14:27:44 +0200534 /* track the change in the OGMinterval list */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200535 list_add_tail(&tt_change_node->list, &bat_priv->tt.changes_list);
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200536
537unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +0200538 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200539
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200540 if (event_removed)
Sven Eckelmann807736f2012-07-15 22:26:51 +0200541 atomic_dec(&bat_priv->tt.local_changes);
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200542 else
Sven Eckelmann807736f2012-07-15 22:26:51 +0200543 atomic_inc(&bat_priv->tt.local_changes);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200544}
545
Marek Lindner335fbe02013-04-23 21:40:02 +0800546/**
547 * batadv_tt_len - compute length in bytes of given number of tt changes
548 * @changes_num: number of tt changes
549 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200550 * Return: computed length in bytes.
Marek Lindner335fbe02013-04-23 21:40:02 +0800551 */
552static int batadv_tt_len(int changes_num)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200553{
Marek Lindner335fbe02013-04-23 21:40:02 +0800554 return changes_num * sizeof(struct batadv_tvlv_tt_change);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200555}
556
Antonio Quartulli298e6e62013-05-28 13:14:27 +0200557/**
558 * batadv_tt_entries - compute the number of entries fitting in tt_len bytes
559 * @tt_len: available space
560 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200561 * Return: the number of entries.
Antonio Quartulli298e6e62013-05-28 13:14:27 +0200562 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200563static u16 batadv_tt_entries(u16 tt_len)
Antonio Quartulli298e6e62013-05-28 13:14:27 +0200564{
565 return tt_len / batadv_tt_len(1);
566}
567
Marek Lindnera19d3d82013-05-27 15:33:25 +0800568/**
569 * batadv_tt_local_table_transmit_size - calculates the local translation table
570 * size when transmitted over the air
571 * @bat_priv: the bat priv with all the soft interface information
572 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200573 * Return: local translation table size in bytes.
Marek Lindnera19d3d82013-05-27 15:33:25 +0800574 */
575static int batadv_tt_local_table_transmit_size(struct batadv_priv *bat_priv)
576{
Sven Eckelmann4f248cf2015-06-09 20:50:49 +0200577 u16 num_vlan = 0;
578 u16 tt_local_entries = 0;
Marek Lindnera19d3d82013-05-27 15:33:25 +0800579 struct batadv_softif_vlan *vlan;
580 int hdr_size;
581
582 rcu_read_lock();
583 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
584 num_vlan++;
585 tt_local_entries += atomic_read(&vlan->tt.num_entries);
586 }
587 rcu_read_unlock();
588
589 /* header size of tvlv encapsulated tt response payload */
590 hdr_size = sizeof(struct batadv_unicast_tvlv_packet);
591 hdr_size += sizeof(struct batadv_tvlv_hdr);
592 hdr_size += sizeof(struct batadv_tvlv_tt_data);
593 hdr_size += num_vlan * sizeof(struct batadv_tvlv_tt_vlan_data);
594
595 return hdr_size + batadv_tt_len(tt_local_entries);
596}
597
Sven Eckelmann56303d32012-06-05 22:31:31 +0200598static int batadv_tt_local_init(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000599{
Sven Eckelmann807736f2012-07-15 22:26:51 +0200600 if (bat_priv->tt.local_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200601 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000602
Sven Eckelmann807736f2012-07-15 22:26:51 +0200603 bat_priv->tt.local_hash = batadv_hash_new(1024);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000604
Sven Eckelmann807736f2012-07-15 22:26:51 +0200605 if (!bat_priv->tt.local_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200606 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000607
Antonio Quartullidec05072012-11-10 11:00:32 +0100608 batadv_hash_set_lock_class(bat_priv->tt.local_hash,
609 &batadv_tt_local_hash_lock_class_key);
610
Sven Eckelmann5346c352012-05-05 13:27:28 +0200611 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000612}
613
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200614static void batadv_tt_global_free(struct batadv_priv *bat_priv,
615 struct batadv_tt_global_entry *tt_global,
616 const char *message)
617{
618 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +0200619 "Deleting global tt entry %pM (vid: %d): %s\n",
620 tt_global->common.addr,
621 BATADV_PRINT_VID(tt_global->common.vid), message);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200622
623 batadv_hash_remove(bat_priv->tt.global_hash, batadv_compare_tt,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200624 batadv_choose_tt, &tt_global->common);
Sven Eckelmann5dafd8a2016-01-17 11:01:26 +0100625 batadv_tt_global_entry_put(tt_global);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200626}
627
Antonio Quartullic018ad32013-06-04 12:11:39 +0200628/**
629 * batadv_tt_local_add - add a new client to the local table or update an
630 * existing client
631 * @soft_iface: netdev struct of the mesh interface
632 * @addr: the mac address of the client to add
633 * @vid: VLAN identifier
634 * @ifindex: index of the interface where the client is connected to (useful to
635 * identify wireless clients)
Antonio Quartulli9464d072013-11-16 12:03:48 +0100636 * @mark: the value contained in the skb->mark field of the received packet (if
637 * any)
Marek Lindnera19d3d82013-05-27 15:33:25 +0800638 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200639 * Return: true if the client was successfully added, false otherwise.
Antonio Quartullic018ad32013-06-04 12:11:39 +0200640 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200641bool batadv_tt_local_add(struct net_device *soft_iface, const u8 *addr,
642 unsigned short vid, int ifindex, u32 mark)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000643{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200644 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmann170173b2012-10-07 12:02:22 +0200645 struct batadv_tt_local_entry *tt_local;
Linus Lüssingc5caf4e2014-02-15 17:47:49 +0100646 struct batadv_tt_global_entry *tt_global = NULL;
Andrew Lunn2cd45a02016-04-21 12:57:27 +0200647 struct net *net = dev_net(soft_iface);
Antonio Quartulli35df3b22014-05-08 17:13:15 +0200648 struct batadv_softif_vlan *vlan;
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200649 struct net_device *in_dev = NULL;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200650 struct hlist_head *head;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200651 struct batadv_tt_orig_list_entry *orig_entry;
Marek Lindnera19d3d82013-05-27 15:33:25 +0800652 int hash_added, table_size, packet_size_max;
Sven Eckelmann4f248cf2015-06-09 20:50:49 +0200653 bool ret = false;
654 bool roamed_back = false;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200655 u8 remote_flags;
656 u32 match_mark;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000657
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200658 if (ifindex != BATADV_NULL_IFINDEX)
Andrew Lunn2cd45a02016-04-21 12:57:27 +0200659 in_dev = dev_get_by_index(net, ifindex);
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200660
Antonio Quartullic018ad32013-06-04 12:11:39 +0200661 tt_local = batadv_tt_local_hash_find(bat_priv, addr, vid);
Linus Lüssingc5caf4e2014-02-15 17:47:49 +0100662
663 if (!is_multicast_ether_addr(addr))
664 tt_global = batadv_tt_global_hash_find(bat_priv, addr, vid);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000665
Antonio Quartulli47c94652012-09-23 22:38:35 +0200666 if (tt_local) {
667 tt_local->last_seen = jiffies;
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200668 if (tt_local->common.flags & BATADV_TT_CLIENT_PENDING) {
669 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +0200670 "Re-adding pending client %pM (vid: %d)\n",
671 addr, BATADV_PRINT_VID(vid));
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200672 /* whatever the reason why the PENDING flag was set,
673 * this is a client which was enqueued to be removed in
674 * this orig_interval. Since it popped up again, the
675 * flag can be reset like it was never enqueued
676 */
677 tt_local->common.flags &= ~BATADV_TT_CLIENT_PENDING;
678 goto add_event;
679 }
680
681 if (tt_local->common.flags & BATADV_TT_CLIENT_ROAM) {
682 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +0200683 "Roaming client %pM (vid: %d) came back to its original location\n",
684 addr, BATADV_PRINT_VID(vid));
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200685 /* the ROAM flag is set because this client roamed away
686 * and the node got a roaming_advertisement message. Now
687 * that the client popped up again at its original
688 * location such flag can be unset
689 */
690 tt_local->common.flags &= ~BATADV_TT_CLIENT_ROAM;
691 roamed_back = true;
692 }
693 goto check_roaming;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000694 }
695
Marek Lindnera19d3d82013-05-27 15:33:25 +0800696 /* Ignore the client if we cannot send it in a full table response. */
697 table_size = batadv_tt_local_table_transmit_size(bat_priv);
698 table_size += batadv_tt_len(1);
699 packet_size_max = atomic_read(&bat_priv->packet_size_max);
700 if (table_size > packet_size_max) {
701 net_ratelimited_function(batadv_info, soft_iface,
702 "Local translation table size (%i) exceeds maximum packet size (%i); Ignoring new local tt entry: %pM\n",
703 table_size, packet_size_max, addr);
704 goto out;
705 }
706
Sven Eckelmann86452f82016-06-25 16:44:06 +0200707 tt_local = kmem_cache_alloc(batadv_tl_cache, GFP_ATOMIC);
Antonio Quartulli47c94652012-09-23 22:38:35 +0200708 if (!tt_local)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200709 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200710
Antonio Quartulli35df3b22014-05-08 17:13:15 +0200711 /* increase the refcounter of the related vlan */
712 vlan = batadv_softif_vlan_get(bat_priv, vid);
Simon Wunderlich0b3dd7d2016-06-26 11:16:09 +0200713 if (!vlan) {
714 net_ratelimited_function(batadv_info, soft_iface,
715 "adding TT local entry %pM to non-existent VLAN %d\n",
716 addr, BATADV_PRINT_VID(vid));
Sven Eckelmann86452f82016-06-25 16:44:06 +0200717 kmem_cache_free(batadv_tl_cache, tt_local);
Sven Eckelmannfd7dec22015-08-18 13:37:01 +0200718 tt_local = NULL;
Marek Lindner354136b2015-06-09 21:24:36 +0800719 goto out;
Sven Eckelmannfd7dec22015-08-18 13:37:01 +0200720 }
Antonio Quartulli35df3b22014-05-08 17:13:15 +0200721
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200722 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +0200723 "Creating new local tt entry: %pM (vid: %d, ttvn: %d)\n",
724 addr, BATADV_PRINT_VID(vid),
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200725 (u8)atomic_read(&bat_priv->tt.vn));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000726
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100727 ether_addr_copy(tt_local->common.addr, addr);
Antonio Quartulli8425ec62012-11-19 09:01:44 +0100728 /* The local entry has to be marked as NEW to avoid to send it in
729 * a full table response going out before the next ttvn increment
730 * (consistency check)
731 */
732 tt_local->common.flags = BATADV_TT_CLIENT_NEW;
Antonio Quartullic018ad32013-06-04 12:11:39 +0200733 tt_local->common.vid = vid;
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200734 if (batadv_is_wifi_netdev(in_dev))
Antonio Quartulli47c94652012-09-23 22:38:35 +0200735 tt_local->common.flags |= BATADV_TT_CLIENT_WIFI;
Sven Eckelmann92dcdf02016-01-16 10:29:57 +0100736 kref_init(&tt_local->common.refcount);
737 kref_get(&tt_local->common.refcount);
Antonio Quartulli47c94652012-09-23 22:38:35 +0200738 tt_local->last_seen = jiffies;
739 tt_local->common.added_at = tt_local->last_seen;
Sven Eckelmanna33d9702016-03-11 16:44:05 +0100740 tt_local->vlan = vlan;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000741
Linus Lüssingc5caf4e2014-02-15 17:47:49 +0100742 /* the batman interface mac and multicast addresses should never be
743 * purged
744 */
745 if (batadv_compare_eth(addr, soft_iface->dev_addr) ||
746 is_multicast_ether_addr(addr))
Antonio Quartulli47c94652012-09-23 22:38:35 +0200747 tt_local->common.flags |= BATADV_TT_CLIENT_NOPURGE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000748
Sven Eckelmann807736f2012-07-15 22:26:51 +0200749 hash_added = batadv_hash_add(bat_priv->tt.local_hash, batadv_compare_tt,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200750 batadv_choose_tt, &tt_local->common,
Antonio Quartulli47c94652012-09-23 22:38:35 +0200751 &tt_local->common.hash_entry);
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100752
753 if (unlikely(hash_added != 0)) {
754 /* remove the reference for the hash */
Sven Eckelmann95c0db92016-01-17 11:01:25 +0100755 batadv_tt_local_entry_put(tt_local);
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100756 goto out;
757 }
758
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200759add_event:
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200760 batadv_tt_local_event(bat_priv, tt_local, BATADV_NO_FLAGS);
Antonio Quartulliff66c972011-06-30 01:14:00 +0200761
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200762check_roaming:
763 /* Check whether it is a roaming, but don't do anything if the roaming
764 * process has already been handled
765 */
766 if (tt_global && !(tt_global->common.flags & BATADV_TT_CLIENT_ROAM)) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200767 /* These node are probably going to update their tt table */
Antonio Quartulli47c94652012-09-23 22:38:35 +0200768 head = &tt_global->orig_list;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200769 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800770 hlist_for_each_entry_rcu(orig_entry, head, list) {
Antonio Quartulli47c94652012-09-23 22:38:35 +0200771 batadv_send_roam_adv(bat_priv, tt_global->common.addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200772 tt_global->common.vid,
Sven Eckelmanna5130882012-05-16 20:23:16 +0200773 orig_entry->orig_node);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200774 }
775 rcu_read_unlock();
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200776 if (roamed_back) {
777 batadv_tt_global_free(bat_priv, tt_global,
778 "Roaming canceled");
779 tt_global = NULL;
780 } else {
781 /* The global entry has to be marked as ROAMING and
782 * has to be kept for consistency purpose
783 */
784 tt_global->common.flags |= BATADV_TT_CLIENT_ROAM;
785 tt_global->roam_at = jiffies;
786 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200787 }
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200788
Antonio Quartulli3c4f7ab2013-10-13 02:50:19 +0200789 /* store the current remote flags before altering them. This helps
790 * understanding is flags are changing or not
791 */
792 remote_flags = tt_local->common.flags & BATADV_TT_REMOTE_MASK;
Marek Lindnera19d3d82013-05-27 15:33:25 +0800793
Antonio Quartulli3c4f7ab2013-10-13 02:50:19 +0200794 if (batadv_is_wifi_netdev(in_dev))
795 tt_local->common.flags |= BATADV_TT_CLIENT_WIFI;
796 else
797 tt_local->common.flags &= ~BATADV_TT_CLIENT_WIFI;
798
Antonio Quartulli9464d072013-11-16 12:03:48 +0100799 /* check the mark in the skb: if it's equal to the configured
800 * isolation_mark, it means the packet is coming from an isolated
801 * non-mesh client
802 */
803 match_mark = (mark & bat_priv->isolation_mark_mask);
804 if (bat_priv->isolation_mark_mask &&
805 match_mark == bat_priv->isolation_mark)
806 tt_local->common.flags |= BATADV_TT_CLIENT_ISOLA;
807 else
808 tt_local->common.flags &= ~BATADV_TT_CLIENT_ISOLA;
809
Antonio Quartulli3c4f7ab2013-10-13 02:50:19 +0200810 /* if any "dynamic" flag has been modified, resend an ADD event for this
811 * entry so that all the nodes can get the new flags
812 */
813 if (remote_flags ^ (tt_local->common.flags & BATADV_TT_REMOTE_MASK))
814 batadv_tt_local_event(bat_priv, tt_local, BATADV_NO_FLAGS);
815
816 ret = true;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200817out:
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200818 if (in_dev)
819 dev_put(in_dev);
Antonio Quartulli47c94652012-09-23 22:38:35 +0200820 if (tt_local)
Sven Eckelmann95c0db92016-01-17 11:01:25 +0100821 batadv_tt_local_entry_put(tt_local);
Antonio Quartulli47c94652012-09-23 22:38:35 +0200822 if (tt_global)
Sven Eckelmann5dafd8a2016-01-17 11:01:26 +0100823 batadv_tt_global_entry_put(tt_global);
Marek Lindnera19d3d82013-05-27 15:33:25 +0800824 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000825}
826
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800827/**
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200828 * batadv_tt_prepare_tvlv_global_data - prepare the TVLV TT header to send
829 * within a TT Response directed to another node
830 * @orig_node: originator for which the TT data has to be prepared
831 * @tt_data: uninitialised pointer to the address of the TVLV buffer
832 * @tt_change: uninitialised pointer to the address of the area where the TT
833 * changed can be stored
834 * @tt_len: pointer to the length to reserve to the tt_change. if -1 this
835 * function reserves the amount of space needed to send the entire global TT
836 * table. In case of success the value is updated with the real amount of
837 * reserved bytes
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200838 * Allocate the needed amount of memory for the entire TT TVLV and write its
839 * header made up by one tvlv_tt_data object and a series of tvlv_tt_vlan_data
840 * objects, one per active VLAN served by the originator node.
841 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200842 * Return: the size of the allocated buffer or 0 in case of failure.
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200843 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200844static u16
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200845batadv_tt_prepare_tvlv_global_data(struct batadv_orig_node *orig_node,
846 struct batadv_tvlv_tt_data **tt_data,
847 struct batadv_tvlv_tt_change **tt_change,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200848 s32 *tt_len)
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200849{
Sven Eckelmann4f248cf2015-06-09 20:50:49 +0200850 u16 num_vlan = 0;
851 u16 num_entries = 0;
852 u16 change_offset;
853 u16 tvlv_len;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200854 struct batadv_tvlv_tt_vlan_data *tt_vlan;
855 struct batadv_orig_node_vlan *vlan;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200856 u8 *tt_change_ptr;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200857
858 rcu_read_lock();
Marek Lindnerd0fa4f32015-06-22 00:30:22 +0800859 hlist_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200860 num_vlan++;
861 num_entries += atomic_read(&vlan->tt.num_entries);
862 }
863
864 change_offset = sizeof(**tt_data);
865 change_offset += num_vlan * sizeof(*tt_vlan);
866
867 /* if tt_len is negative, allocate the space needed by the full table */
868 if (*tt_len < 0)
869 *tt_len = batadv_tt_len(num_entries);
870
871 tvlv_len = *tt_len;
872 tvlv_len += change_offset;
873
874 *tt_data = kmalloc(tvlv_len, GFP_ATOMIC);
875 if (!*tt_data) {
876 *tt_len = 0;
877 goto out;
878 }
879
880 (*tt_data)->flags = BATADV_NO_FLAGS;
881 (*tt_data)->ttvn = atomic_read(&orig_node->last_ttvn);
882 (*tt_data)->num_vlan = htons(num_vlan);
883
884 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(*tt_data + 1);
Marek Lindnerd0fa4f32015-06-22 00:30:22 +0800885 hlist_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200886 tt_vlan->vid = htons(vlan->vid);
887 tt_vlan->crc = htonl(vlan->tt.crc);
888
889 tt_vlan++;
890 }
891
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200892 tt_change_ptr = (u8 *)*tt_data + change_offset;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200893 *tt_change = (struct batadv_tvlv_tt_change *)tt_change_ptr;
894
895out:
896 rcu_read_unlock();
897 return tvlv_len;
898}
899
900/**
901 * batadv_tt_prepare_tvlv_local_data - allocate and prepare the TT TVLV for this
902 * node
903 * @bat_priv: the bat priv with all the soft interface information
904 * @tt_data: uninitialised pointer to the address of the TVLV buffer
905 * @tt_change: uninitialised pointer to the address of the area where the TT
906 * changes can be stored
907 * @tt_len: pointer to the length to reserve to the tt_change. if -1 this
908 * function reserves the amount of space needed to send the entire local TT
909 * table. In case of success the value is updated with the real amount of
910 * reserved bytes
911 *
912 * Allocate the needed amount of memory for the entire TT TVLV and write its
913 * header made up by one tvlv_tt_data object and a series of tvlv_tt_vlan_data
914 * objects, one per active VLAN.
915 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200916 * Return: the size of the allocated buffer or 0 in case of failure.
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200917 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200918static u16
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200919batadv_tt_prepare_tvlv_local_data(struct batadv_priv *bat_priv,
920 struct batadv_tvlv_tt_data **tt_data,
921 struct batadv_tvlv_tt_change **tt_change,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200922 s32 *tt_len)
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200923{
924 struct batadv_tvlv_tt_vlan_data *tt_vlan;
925 struct batadv_softif_vlan *vlan;
Sven Eckelmann4f248cf2015-06-09 20:50:49 +0200926 u16 num_vlan = 0;
927 u16 num_entries = 0;
928 u16 tvlv_len;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200929 u8 *tt_change_ptr;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200930 int change_offset;
931
932 rcu_read_lock();
933 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
934 num_vlan++;
935 num_entries += atomic_read(&vlan->tt.num_entries);
936 }
937
938 change_offset = sizeof(**tt_data);
939 change_offset += num_vlan * sizeof(*tt_vlan);
940
941 /* if tt_len is negative, allocate the space needed by the full table */
942 if (*tt_len < 0)
943 *tt_len = batadv_tt_len(num_entries);
944
945 tvlv_len = *tt_len;
946 tvlv_len += change_offset;
947
948 *tt_data = kmalloc(tvlv_len, GFP_ATOMIC);
949 if (!*tt_data) {
950 tvlv_len = 0;
951 goto out;
952 }
953
954 (*tt_data)->flags = BATADV_NO_FLAGS;
955 (*tt_data)->ttvn = atomic_read(&bat_priv->tt.vn);
956 (*tt_data)->num_vlan = htons(num_vlan);
957
958 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(*tt_data + 1);
959 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
960 tt_vlan->vid = htons(vlan->vid);
961 tt_vlan->crc = htonl(vlan->tt.crc);
962
963 tt_vlan++;
964 }
965
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200966 tt_change_ptr = (u8 *)*tt_data + change_offset;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200967 *tt_change = (struct batadv_tvlv_tt_change *)tt_change_ptr;
968
969out:
970 rcu_read_unlock();
971 return tvlv_len;
972}
973
974/**
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800975 * batadv_tt_tvlv_container_update - update the translation table tvlv container
976 * after local tt changes have been committed
977 * @bat_priv: the bat priv with all the soft interface information
978 */
979static void batadv_tt_tvlv_container_update(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000980{
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800981 struct batadv_tt_change_node *entry, *safe;
982 struct batadv_tvlv_tt_data *tt_data;
983 struct batadv_tvlv_tt_change *tt_change;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200984 int tt_diff_len, tt_change_len = 0;
Sven Eckelmann4f248cf2015-06-09 20:50:49 +0200985 int tt_diff_entries_num = 0;
986 int tt_diff_entries_count = 0;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200987 u16 tvlv_len;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000988
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200989 tt_diff_entries_num = atomic_read(&bat_priv->tt.local_changes);
990 tt_diff_len = batadv_tt_len(tt_diff_entries_num);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800991
992 /* if we have too many changes for one packet don't send any
993 * and wait for the tt table request which will be fragmented
994 */
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800995 if (tt_diff_len > bat_priv->soft_iface->mtu)
996 tt_diff_len = 0;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800997
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200998 tvlv_len = batadv_tt_prepare_tvlv_local_data(bat_priv, &tt_data,
999 &tt_change, &tt_diff_len);
1000 if (!tvlv_len)
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001001 return;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08001002
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001003 tt_data->flags = BATADV_TT_OGM_DIFF;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08001004
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001005 if (tt_diff_len == 0)
1006 goto container_register;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08001007
Sven Eckelmann807736f2012-07-15 22:26:51 +02001008 spin_lock_bh(&bat_priv->tt.changes_list_lock);
1009 atomic_set(&bat_priv->tt.local_changes, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001010
Sven Eckelmann807736f2012-07-15 22:26:51 +02001011 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +01001012 list) {
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001013 if (tt_diff_entries_count < tt_diff_entries_num) {
1014 memcpy(tt_change + tt_diff_entries_count,
1015 &entry->change,
1016 sizeof(struct batadv_tvlv_tt_change));
1017 tt_diff_entries_count++;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001018 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02001019 list_del(&entry->list);
Sven Eckelmann86452f82016-06-25 16:44:06 +02001020 kmem_cache_free(batadv_tt_change_cache, entry);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001021 }
Sven Eckelmann807736f2012-07-15 22:26:51 +02001022 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001023
Antonio Quartullia73105b2011-04-27 14:27:44 +02001024 /* Keep the buffer for possible tt_request */
Sven Eckelmann807736f2012-07-15 22:26:51 +02001025 spin_lock_bh(&bat_priv->tt.last_changeset_lock);
1026 kfree(bat_priv->tt.last_changeset);
1027 bat_priv->tt.last_changeset_len = 0;
1028 bat_priv->tt.last_changeset = NULL;
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001029 tt_change_len = batadv_tt_len(tt_diff_entries_count);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08001030 /* check whether this new OGM has no changes due to size problems */
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001031 if (tt_diff_entries_count > 0) {
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08001032 /* if kmalloc() fails we will reply with the full table
Antonio Quartullia73105b2011-04-27 14:27:44 +02001033 * instead of providing the diff
1034 */
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001035 bat_priv->tt.last_changeset = kzalloc(tt_diff_len, GFP_ATOMIC);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001036 if (bat_priv->tt.last_changeset) {
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001037 memcpy(bat_priv->tt.last_changeset,
1038 tt_change, tt_change_len);
1039 bat_priv->tt.last_changeset_len = tt_diff_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001040 }
1041 }
Sven Eckelmann807736f2012-07-15 22:26:51 +02001042 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001043
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001044container_register:
1045 batadv_tvlv_container_register(bat_priv, BATADV_TVLV_TT, 1, tt_data,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001046 tvlv_len);
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001047 kfree(tt_data);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001048}
1049
Sven Eckelmann08c36d32012-05-12 02:09:39 +02001050int batadv_tt_local_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001051{
1052 struct net_device *net_dev = (struct net_device *)seq->private;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001053 struct batadv_priv *bat_priv = netdev_priv(net_dev);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001054 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001055 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartulli85766a82012-11-08 22:16:16 +01001056 struct batadv_tt_local_entry *tt_local;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001057 struct batadv_hard_iface *primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001058 struct hlist_head *head;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001059 u32 i;
Antonio Quartulli85766a82012-11-08 22:16:16 +01001060 int last_seen_secs;
1061 int last_seen_msecs;
1062 unsigned long last_seen_jiffies;
1063 bool no_purge;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001064 u16 np_flag = BATADV_TT_CLIENT_NOPURGE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001065
Marek Lindner30da63a2012-08-03 17:15:46 +02001066 primary_if = batadv_seq_print_text_primary_if_get(seq);
1067 if (!primary_if)
Marek Lindner32ae9b22011-04-20 15:40:58 +02001068 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001069
Sven Eckelmann86ceb362012-03-07 09:07:45 +01001070 seq_printf(seq,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001071 "Locally retrieved addresses (from %s) announced via TT (TTVN: %u):\n",
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001072 net_dev->name, (u8)atomic_read(&bat_priv->tt.vn));
Antonio Quartulli925a6f32016-03-12 10:30:18 +01001073 seq_puts(seq,
1074 " Client VID Flags Last seen (CRC )\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001075
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001076 for (i = 0; i < hash->size; i++) {
1077 head = &hash->table[i];
1078
Marek Lindner7aadf882011-02-18 12:28:09 +00001079 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001080 hlist_for_each_entry_rcu(tt_common_entry,
Marek Lindner7aadf882011-02-18 12:28:09 +00001081 head, hash_entry) {
Antonio Quartulli85766a82012-11-08 22:16:16 +01001082 tt_local = container_of(tt_common_entry,
1083 struct batadv_tt_local_entry,
1084 common);
1085 last_seen_jiffies = jiffies - tt_local->last_seen;
1086 last_seen_msecs = jiffies_to_msecs(last_seen_jiffies);
1087 last_seen_secs = last_seen_msecs / 1000;
1088 last_seen_msecs = last_seen_msecs % 1000;
1089
1090 no_purge = tt_common_entry->flags & np_flag;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001091 seq_printf(seq,
Antonio Quartullidd24ddb2013-11-16 12:03:49 +01001092 " * %pM %4i [%c%c%c%c%c%c] %3u.%03u (%#.8x)\n",
Sven Eckelmann7c64fd92012-02-28 10:55:36 +01001093 tt_common_entry->addr,
Antonio Quartulli16052782013-06-04 12:11:41 +02001094 BATADV_PRINT_VID(tt_common_entry->vid),
Sven Eckelmanna2f2b6c2015-04-23 18:22:24 +02001095 ((tt_common_entry->flags &
1096 BATADV_TT_CLIENT_ROAM) ? 'R' : '.'),
Antonio Quartulli85766a82012-11-08 22:16:16 +01001097 no_purge ? 'P' : '.',
Sven Eckelmanna2f2b6c2015-04-23 18:22:24 +02001098 ((tt_common_entry->flags &
1099 BATADV_TT_CLIENT_NEW) ? 'N' : '.'),
1100 ((tt_common_entry->flags &
1101 BATADV_TT_CLIENT_PENDING) ? 'X' : '.'),
1102 ((tt_common_entry->flags &
1103 BATADV_TT_CLIENT_WIFI) ? 'W' : '.'),
1104 ((tt_common_entry->flags &
1105 BATADV_TT_CLIENT_ISOLA) ? 'I' : '.'),
Antonio Quartullia7966d92013-01-24 11:41:39 +01001106 no_purge ? 0 : last_seen_secs,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001107 no_purge ? 0 : last_seen_msecs,
Sven Eckelmanna33d9702016-03-11 16:44:05 +01001108 tt_local->vlan->tt.crc);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001109 }
Marek Lindner7aadf882011-02-18 12:28:09 +00001110 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001111 }
Marek Lindner32ae9b22011-04-20 15:40:58 +02001112out:
1113 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +01001114 batadv_hardif_put(primary_if);
Marek Lindner30da63a2012-08-03 17:15:46 +02001115 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001116}
1117
Matthias Schifferd34f0552016-07-03 13:31:37 +02001118/**
1119 * batadv_tt_local_dump_entry - Dump one TT local entry into a message
1120 * @msg :Netlink message to dump into
1121 * @portid: Port making netlink request
1122 * @seq: Sequence number of netlink message
1123 * @bat_priv: The bat priv with all the soft interface information
1124 * @common: tt local & tt global common data
1125 *
1126 * Return: Error code, or 0 on success
1127 */
1128static int
1129batadv_tt_local_dump_entry(struct sk_buff *msg, u32 portid, u32 seq,
1130 struct batadv_priv *bat_priv,
1131 struct batadv_tt_common_entry *common)
1132{
1133 void *hdr;
1134 struct batadv_softif_vlan *vlan;
1135 struct batadv_tt_local_entry *local;
1136 unsigned int last_seen_msecs;
1137 u32 crc;
1138
1139 local = container_of(common, struct batadv_tt_local_entry, common);
1140 last_seen_msecs = jiffies_to_msecs(jiffies - local->last_seen);
1141
1142 vlan = batadv_softif_vlan_get(bat_priv, common->vid);
1143 if (!vlan)
1144 return 0;
1145
1146 crc = vlan->tt.crc;
1147
1148 batadv_softif_vlan_put(vlan);
1149
1150 hdr = genlmsg_put(msg, portid, seq, &batadv_netlink_family,
1151 NLM_F_MULTI,
1152 BATADV_CMD_GET_TRANSTABLE_LOCAL);
1153 if (!hdr)
1154 return -ENOBUFS;
1155
1156 if (nla_put(msg, BATADV_ATTR_TT_ADDRESS, ETH_ALEN, common->addr) ||
1157 nla_put_u32(msg, BATADV_ATTR_TT_CRC32, crc) ||
1158 nla_put_u16(msg, BATADV_ATTR_TT_VID, common->vid) ||
1159 nla_put_u32(msg, BATADV_ATTR_TT_FLAGS, common->flags))
1160 goto nla_put_failure;
1161
1162 if (!(common->flags & BATADV_TT_CLIENT_NOPURGE) &&
1163 nla_put_u32(msg, BATADV_ATTR_LAST_SEEN_MSECS, last_seen_msecs))
1164 goto nla_put_failure;
1165
1166 genlmsg_end(msg, hdr);
1167 return 0;
1168
1169 nla_put_failure:
1170 genlmsg_cancel(msg, hdr);
1171 return -EMSGSIZE;
1172}
1173
1174/**
1175 * batadv_tt_local_dump_bucket - Dump one TT local bucket into a message
1176 * @msg: Netlink message to dump into
1177 * @portid: Port making netlink request
1178 * @seq: Sequence number of netlink message
1179 * @bat_priv: The bat priv with all the soft interface information
1180 * @head: Pointer to the list containing the local tt entries
1181 * @idx_s: Number of entries to skip
1182 *
1183 * Return: Error code, or 0 on success
1184 */
1185static int
1186batadv_tt_local_dump_bucket(struct sk_buff *msg, u32 portid, u32 seq,
1187 struct batadv_priv *bat_priv,
1188 struct hlist_head *head, int *idx_s)
1189{
1190 struct batadv_tt_common_entry *common;
1191 int idx = 0;
1192
1193 rcu_read_lock();
1194 hlist_for_each_entry_rcu(common, head, hash_entry) {
1195 if (idx++ < *idx_s)
1196 continue;
1197
1198 if (batadv_tt_local_dump_entry(msg, portid, seq, bat_priv,
1199 common)) {
1200 rcu_read_unlock();
1201 *idx_s = idx - 1;
1202 return -EMSGSIZE;
1203 }
1204 }
1205 rcu_read_unlock();
1206
1207 *idx_s = 0;
1208 return 0;
1209}
1210
1211/**
1212 * batadv_tt_local_dump - Dump TT local entries into a message
1213 * @msg: Netlink message to dump into
1214 * @cb: Parameters from query
1215 *
1216 * Return: Error code, or 0 on success
1217 */
1218int batadv_tt_local_dump(struct sk_buff *msg, struct netlink_callback *cb)
1219{
1220 struct net *net = sock_net(cb->skb->sk);
1221 struct net_device *soft_iface;
1222 struct batadv_priv *bat_priv;
1223 struct batadv_hard_iface *primary_if = NULL;
1224 struct batadv_hashtable *hash;
1225 struct hlist_head *head;
1226 int ret;
1227 int ifindex;
1228 int bucket = cb->args[0];
1229 int idx = cb->args[1];
1230 int portid = NETLINK_CB(cb->skb).portid;
1231
1232 ifindex = batadv_netlink_get_ifindex(cb->nlh, BATADV_ATTR_MESH_IFINDEX);
1233 if (!ifindex)
1234 return -EINVAL;
1235
1236 soft_iface = dev_get_by_index(net, ifindex);
1237 if (!soft_iface || !batadv_softif_is_valid(soft_iface)) {
1238 ret = -ENODEV;
1239 goto out;
1240 }
1241
1242 bat_priv = netdev_priv(soft_iface);
1243
1244 primary_if = batadv_primary_if_get_selected(bat_priv);
1245 if (!primary_if || primary_if->if_status != BATADV_IF_ACTIVE) {
1246 ret = -ENOENT;
1247 goto out;
1248 }
1249
1250 hash = bat_priv->tt.local_hash;
1251
1252 while (bucket < hash->size) {
1253 head = &hash->table[bucket];
1254
1255 if (batadv_tt_local_dump_bucket(msg, portid, cb->nlh->nlmsg_seq,
1256 bat_priv, head, &idx))
1257 break;
1258
1259 bucket++;
1260 }
1261
1262 ret = msg->len;
1263
1264 out:
1265 if (primary_if)
1266 batadv_hardif_put(primary_if);
1267 if (soft_iface)
1268 dev_put(soft_iface);
1269
1270 cb->args[0] = bucket;
1271 cb->args[1] = idx;
1272
1273 return ret;
1274}
1275
Sven Eckelmann56303d32012-06-05 22:31:31 +02001276static void
1277batadv_tt_local_set_pending(struct batadv_priv *bat_priv,
1278 struct batadv_tt_local_entry *tt_local_entry,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001279 u16 flags, const char *message)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001280{
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +02001281 batadv_tt_local_event(bat_priv, tt_local_entry, flags);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001282
Antonio Quartulli015758d2011-07-09 17:52:13 +02001283 /* The local client has to be marked as "pending to be removed" but has
1284 * to be kept in the table in order to send it in a full table
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001285 * response issued before the net ttvn increment (consistency check)
1286 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001287 tt_local_entry->common.flags |= BATADV_TT_CLIENT_PENDING;
Antonio Quartullic566dbb2012-01-06 21:31:34 +01001288
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001289 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02001290 "Local tt entry (%pM, vid: %d) pending to be removed: %s\n",
1291 tt_local_entry->common.addr,
1292 BATADV_PRINT_VID(tt_local_entry->common.vid), message);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001293}
1294
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001295/**
1296 * batadv_tt_local_remove - logically remove an entry from the local table
1297 * @bat_priv: the bat priv with all the soft interface information
1298 * @addr: the MAC address of the client to remove
Antonio Quartullic018ad32013-06-04 12:11:39 +02001299 * @vid: VLAN identifier
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001300 * @message: message to append to the log on deletion
1301 * @roaming: true if the deletion is due to a roaming event
1302 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02001303 * Return: the flags assigned to the local entry before being deleted
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001304 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001305u16 batadv_tt_local_remove(struct batadv_priv *bat_priv, const u8 *addr,
1306 unsigned short vid, const char *message,
1307 bool roaming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001308{
Sven Eckelmann170173b2012-10-07 12:02:22 +02001309 struct batadv_tt_local_entry *tt_local_entry;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001310 u16 flags, curr_flags = BATADV_NO_FLAGS;
Marek Lindneref727062015-06-17 20:01:36 +08001311 void *tt_entry_exists;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001312
Antonio Quartullic018ad32013-06-04 12:11:39 +02001313 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr, vid);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001314 if (!tt_local_entry)
1315 goto out;
1316
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001317 curr_flags = tt_local_entry->common.flags;
1318
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001319 flags = BATADV_TT_CLIENT_DEL;
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001320 /* if this global entry addition is due to a roaming, the node has to
1321 * mark the local entry as "roamed" in order to correctly reroute
1322 * packets later
1323 */
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02001324 if (roaming) {
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001325 flags |= BATADV_TT_CLIENT_ROAM;
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02001326 /* mark the local client as ROAMed */
1327 tt_local_entry->common.flags |= BATADV_TT_CLIENT_ROAM;
1328 }
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001329
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001330 if (!(tt_local_entry->common.flags & BATADV_TT_CLIENT_NEW)) {
1331 batadv_tt_local_set_pending(bat_priv, tt_local_entry, flags,
1332 message);
1333 goto out;
1334 }
1335 /* if this client has been added right now, it is possible to
1336 * immediately purge it
1337 */
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +02001338 batadv_tt_local_event(bat_priv, tt_local_entry, BATADV_TT_CLIENT_DEL);
Marek Lindneref727062015-06-17 20:01:36 +08001339
1340 tt_entry_exists = batadv_hash_remove(bat_priv->tt.local_hash,
1341 batadv_compare_tt,
1342 batadv_choose_tt,
1343 &tt_local_entry->common);
1344 if (!tt_entry_exists)
1345 goto out;
1346
1347 /* extra call to free the local tt entry */
Sven Eckelmann95c0db92016-01-17 11:01:25 +01001348 batadv_tt_local_entry_put(tt_local_entry);
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001349
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001350out:
1351 if (tt_local_entry)
Sven Eckelmann95c0db92016-01-17 11:01:25 +01001352 batadv_tt_local_entry_put(tt_local_entry);
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001353
1354 return curr_flags;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001355}
1356
Marek Lindnera19d3d82013-05-27 15:33:25 +08001357/**
1358 * batadv_tt_local_purge_list - purge inactive tt local entries
1359 * @bat_priv: the bat priv with all the soft interface information
1360 * @head: pointer to the list containing the local tt entries
1361 * @timeout: parameter deciding whether a given tt local entry is considered
1362 * inactive or not
1363 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001364static void batadv_tt_local_purge_list(struct batadv_priv *bat_priv,
Marek Lindnera19d3d82013-05-27 15:33:25 +08001365 struct hlist_head *head,
1366 int timeout)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001367{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001368 struct batadv_tt_local_entry *tt_local_entry;
1369 struct batadv_tt_common_entry *tt_common_entry;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001370 struct hlist_node *node_tmp;
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001371
Sasha Levinb67bfe02013-02-27 17:06:00 -08001372 hlist_for_each_entry_safe(tt_common_entry, node_tmp, head,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001373 hash_entry) {
1374 tt_local_entry = container_of(tt_common_entry,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001375 struct batadv_tt_local_entry,
1376 common);
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001377 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_NOPURGE)
1378 continue;
1379
1380 /* entry already marked for deletion */
1381 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING)
1382 continue;
1383
Marek Lindnera19d3d82013-05-27 15:33:25 +08001384 if (!batadv_has_timed_out(tt_local_entry->last_seen, timeout))
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001385 continue;
1386
1387 batadv_tt_local_set_pending(bat_priv, tt_local_entry,
1388 BATADV_TT_CLIENT_DEL, "timed out");
1389 }
1390}
1391
Marek Lindnera19d3d82013-05-27 15:33:25 +08001392/**
1393 * batadv_tt_local_purge - purge inactive tt local entries
1394 * @bat_priv: the bat priv with all the soft interface information
1395 * @timeout: parameter deciding whether a given tt local entry is considered
1396 * inactive or not
1397 */
1398static void batadv_tt_local_purge(struct batadv_priv *bat_priv,
1399 int timeout)
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001400{
Sven Eckelmann807736f2012-07-15 22:26:51 +02001401 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001402 struct hlist_head *head;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001403 spinlock_t *list_lock; /* protects write access to the hash lists */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001404 u32 i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001405
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001406 for (i = 0; i < hash->size; i++) {
1407 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001408 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001409
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001410 spin_lock_bh(list_lock);
Marek Lindnera19d3d82013-05-27 15:33:25 +08001411 batadv_tt_local_purge_list(bat_priv, head, timeout);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001412 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001413 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001414}
1415
Sven Eckelmann56303d32012-06-05 22:31:31 +02001416static void batadv_tt_local_table_free(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001417{
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02001418 struct batadv_hashtable *hash;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001419 spinlock_t *list_lock; /* protects write access to the hash lists */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001420 struct batadv_tt_common_entry *tt_common_entry;
1421 struct batadv_tt_local_entry *tt_local;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001422 struct hlist_node *node_tmp;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001423 struct hlist_head *head;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001424 u32 i;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001425
Sven Eckelmann807736f2012-07-15 22:26:51 +02001426 if (!bat_priv->tt.local_hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001427 return;
1428
Sven Eckelmann807736f2012-07-15 22:26:51 +02001429 hash = bat_priv->tt.local_hash;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001430
1431 for (i = 0; i < hash->size; i++) {
1432 head = &hash->table[i];
1433 list_lock = &hash->list_locks[i];
1434
1435 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001436 hlist_for_each_entry_safe(tt_common_entry, node_tmp,
Antonio Quartullia73105b2011-04-27 14:27:44 +02001437 head, hash_entry) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001438 hlist_del_rcu(&tt_common_entry->hash_entry);
Sven Eckelmann56303d32012-06-05 22:31:31 +02001439 tt_local = container_of(tt_common_entry,
1440 struct batadv_tt_local_entry,
1441 common);
Antonio Quartulli35df3b22014-05-08 17:13:15 +02001442
Sven Eckelmann95c0db92016-01-17 11:01:25 +01001443 batadv_tt_local_entry_put(tt_local);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001444 }
1445 spin_unlock_bh(list_lock);
1446 }
1447
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +02001448 batadv_hash_destroy(hash);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001449
Sven Eckelmann807736f2012-07-15 22:26:51 +02001450 bat_priv->tt.local_hash = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001451}
1452
Sven Eckelmann56303d32012-06-05 22:31:31 +02001453static int batadv_tt_global_init(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001454{
Sven Eckelmann807736f2012-07-15 22:26:51 +02001455 if (bat_priv->tt.global_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +02001456 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001457
Sven Eckelmann807736f2012-07-15 22:26:51 +02001458 bat_priv->tt.global_hash = batadv_hash_new(1024);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001459
Sven Eckelmann807736f2012-07-15 22:26:51 +02001460 if (!bat_priv->tt.global_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +02001461 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001462
Antonio Quartullidec05072012-11-10 11:00:32 +01001463 batadv_hash_set_lock_class(bat_priv->tt.global_hash,
1464 &batadv_tt_global_hash_lock_class_key);
1465
Sven Eckelmann5346c352012-05-05 13:27:28 +02001466 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001467}
1468
Sven Eckelmann56303d32012-06-05 22:31:31 +02001469static void batadv_tt_changes_list_free(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001470{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001471 struct batadv_tt_change_node *entry, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001472
Sven Eckelmann807736f2012-07-15 22:26:51 +02001473 spin_lock_bh(&bat_priv->tt.changes_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001474
Sven Eckelmann807736f2012-07-15 22:26:51 +02001475 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
Antonio Quartullia73105b2011-04-27 14:27:44 +02001476 list) {
1477 list_del(&entry->list);
Sven Eckelmann86452f82016-06-25 16:44:06 +02001478 kmem_cache_free(batadv_tt_change_cache, entry);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001479 }
1480
Sven Eckelmann807736f2012-07-15 22:26:51 +02001481 atomic_set(&bat_priv->tt.local_changes, 0);
1482 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001483}
1484
Sven Eckelmann62fe7102015-09-15 19:00:48 +02001485/**
Antonio Quartullid15cd622015-11-17 16:40:52 +08001486 * batadv_tt_global_orig_entry_find - find a TT orig_list_entry
1487 * @entry: the TT global entry where the orig_list_entry has to be
1488 * extracted from
1489 * @orig_node: the originator for which the orig_list_entry has to be found
Sven Eckelmann62fe7102015-09-15 19:00:48 +02001490 *
Antonio Quartullid15cd622015-11-17 16:40:52 +08001491 * retrieve the orig_tt_list_entry belonging to orig_node from the
Antonio Quartullid657e622012-07-01 14:09:12 +02001492 * batadv_tt_global_entry list
1493 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02001494 * Return: it with an increased refcounter, NULL if not found
Antonio Quartullid657e622012-07-01 14:09:12 +02001495 */
1496static struct batadv_tt_orig_list_entry *
1497batadv_tt_global_orig_entry_find(const struct batadv_tt_global_entry *entry,
1498 const struct batadv_orig_node *orig_node)
1499{
1500 struct batadv_tt_orig_list_entry *tmp_orig_entry, *orig_entry = NULL;
1501 const struct hlist_head *head;
Antonio Quartullid657e622012-07-01 14:09:12 +02001502
1503 rcu_read_lock();
1504 head = &entry->orig_list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001505 hlist_for_each_entry_rcu(tmp_orig_entry, head, list) {
Antonio Quartullid657e622012-07-01 14:09:12 +02001506 if (tmp_orig_entry->orig_node != orig_node)
1507 continue;
Sven Eckelmann6e8ef692016-01-16 10:29:50 +01001508 if (!kref_get_unless_zero(&tmp_orig_entry->refcount))
Antonio Quartullid657e622012-07-01 14:09:12 +02001509 continue;
1510
1511 orig_entry = tmp_orig_entry;
1512 break;
1513 }
1514 rcu_read_unlock();
1515
1516 return orig_entry;
1517}
1518
Sven Eckelmann62fe7102015-09-15 19:00:48 +02001519/**
Antonio Quartullid15cd622015-11-17 16:40:52 +08001520 * batadv_tt_global_entry_has_orig - check if a TT global entry is also handled
1521 * by a given originator
1522 * @entry: the TT global entry to check
1523 * @orig_node: the originator to search in the list
Sven Eckelmann62fe7102015-09-15 19:00:48 +02001524 *
1525 * find out if an orig_node is already in the list of a tt_global_entry.
1526 *
1527 * Return: true if found, false otherwise
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001528 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001529static bool
1530batadv_tt_global_entry_has_orig(const struct batadv_tt_global_entry *entry,
1531 const struct batadv_orig_node *orig_node)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001532{
Antonio Quartullid657e622012-07-01 14:09:12 +02001533 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001534 bool found = false;
1535
Antonio Quartullid657e622012-07-01 14:09:12 +02001536 orig_entry = batadv_tt_global_orig_entry_find(entry, orig_node);
1537 if (orig_entry) {
1538 found = true;
Sven Eckelmann7e2366c2016-01-17 11:01:27 +01001539 batadv_tt_orig_list_entry_put(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001540 }
Antonio Quartullid657e622012-07-01 14:09:12 +02001541
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001542 return found;
1543}
1544
Sven Eckelmanna5130882012-05-16 20:23:16 +02001545static void
Antonio Quartullid657e622012-07-01 14:09:12 +02001546batadv_tt_global_orig_entry_add(struct batadv_tt_global_entry *tt_global,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001547 struct batadv_orig_node *orig_node, int ttvn)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001548{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001549 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001550
Antonio Quartullid657e622012-07-01 14:09:12 +02001551 orig_entry = batadv_tt_global_orig_entry_find(tt_global, orig_node);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001552 if (orig_entry) {
1553 /* refresh the ttvn: the current value could be a bogus one that
1554 * was added during a "temporary client detection"
1555 */
1556 orig_entry->ttvn = ttvn;
Antonio Quartullid657e622012-07-01 14:09:12 +02001557 goto out;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001558 }
Antonio Quartullid657e622012-07-01 14:09:12 +02001559
Sven Eckelmann86452f82016-06-25 16:44:06 +02001560 orig_entry = kmem_cache_zalloc(batadv_tt_orig_cache, GFP_ATOMIC);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001561 if (!orig_entry)
Antonio Quartullid657e622012-07-01 14:09:12 +02001562 goto out;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001563
1564 INIT_HLIST_NODE(&orig_entry->list);
Sven Eckelmann7c124392016-01-16 10:29:56 +01001565 kref_get(&orig_node->refcount);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001566 batadv_tt_global_size_inc(orig_node, tt_global->common.vid);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001567 orig_entry->orig_node = orig_node;
1568 orig_entry->ttvn = ttvn;
Sven Eckelmann6e8ef692016-01-16 10:29:50 +01001569 kref_init(&orig_entry->refcount);
1570 kref_get(&orig_entry->refcount);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001571
Antonio Quartullid657e622012-07-01 14:09:12 +02001572 spin_lock_bh(&tt_global->list_lock);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001573 hlist_add_head_rcu(&orig_entry->list,
Antonio Quartullid657e622012-07-01 14:09:12 +02001574 &tt_global->orig_list);
1575 spin_unlock_bh(&tt_global->list_lock);
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01001576 atomic_inc(&tt_global->orig_list_count);
1577
Antonio Quartullid657e622012-07-01 14:09:12 +02001578out:
1579 if (orig_entry)
Sven Eckelmann7e2366c2016-01-17 11:01:27 +01001580 batadv_tt_orig_list_entry_put(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001581}
1582
Antonio Quartullid4ff40f2013-04-18 15:13:01 +02001583/**
1584 * batadv_tt_global_add - add a new TT global entry or update an existing one
1585 * @bat_priv: the bat priv with all the soft interface information
1586 * @orig_node: the originator announcing the client
1587 * @tt_addr: the mac address of the non-mesh client
Antonio Quartullic018ad32013-06-04 12:11:39 +02001588 * @vid: VLAN identifier
Antonio Quartullid4ff40f2013-04-18 15:13:01 +02001589 * @flags: TT flags that have to be set for this non-mesh client
1590 * @ttvn: the tt version number ever announcing this non-mesh client
1591 *
1592 * Add a new TT global entry for the given originator. If the entry already
1593 * exists add a new reference to the given originator (a global entry can have
1594 * references to multiple originators) and adjust the flags attribute to reflect
1595 * the function argument.
1596 * If a TT local entry exists for this non-mesh client remove it.
1597 *
1598 * The caller must hold orig_node refcount.
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001599 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02001600 * Return: true if the new entry has been added, false otherwise
Antonio Quartullid4ff40f2013-04-18 15:13:01 +02001601 */
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001602static bool batadv_tt_global_add(struct batadv_priv *bat_priv,
1603 struct batadv_orig_node *orig_node,
Antonio Quartullic018ad32013-06-04 12:11:39 +02001604 const unsigned char *tt_addr,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001605 unsigned short vid, u16 flags, u8 ttvn)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001606{
Sven Eckelmann170173b2012-10-07 12:02:22 +02001607 struct batadv_tt_global_entry *tt_global_entry;
1608 struct batadv_tt_local_entry *tt_local_entry;
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001609 bool ret = false;
Simon Wunderlich80b3f582011-11-02 20:26:45 +01001610 int hash_added;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001611 struct batadv_tt_common_entry *common;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001612 u16 local_flags;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001613
Antonio Quartullicfd4f752013-08-07 18:28:56 +02001614 /* ignore global entries from backbone nodes */
1615 if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig, vid))
1616 return true;
1617
Antonio Quartullic018ad32013-06-04 12:11:39 +02001618 tt_global_entry = batadv_tt_global_hash_find(bat_priv, tt_addr, vid);
1619 tt_local_entry = batadv_tt_local_hash_find(bat_priv, tt_addr, vid);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001620
1621 /* if the node already has a local client for this entry, it has to wait
1622 * for a roaming advertisement instead of manually messing up the global
1623 * table
1624 */
1625 if ((flags & BATADV_TT_CLIENT_TEMP) && tt_local_entry &&
1626 !(tt_local_entry->common.flags & BATADV_TT_CLIENT_NEW))
1627 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001628
Antonio Quartullia73105b2011-04-27 14:27:44 +02001629 if (!tt_global_entry) {
Sven Eckelmann86452f82016-06-25 16:44:06 +02001630 tt_global_entry = kmem_cache_zalloc(batadv_tg_cache,
1631 GFP_ATOMIC);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001632 if (!tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001633 goto out;
1634
Sven Eckelmannc0a55922012-05-12 13:48:55 +02001635 common = &tt_global_entry->common;
Antonio Quartulli8fdd0152014-01-22 00:42:11 +01001636 ether_addr_copy(common->addr, tt_addr);
Antonio Quartullic018ad32013-06-04 12:11:39 +02001637 common->vid = vid;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001638
Antonio Quartullid4f44692012-05-25 00:00:54 +02001639 common->flags = flags;
Antonio Quartullicc47f662011-04-27 14:27:57 +02001640 tt_global_entry->roam_at = 0;
Antonio Quartullifdf79322012-08-24 17:54:07 +02001641 /* node must store current time in case of roaming. This is
1642 * needed to purge this entry out on timeout (if nobody claims
1643 * it)
1644 */
1645 if (flags & BATADV_TT_CLIENT_ROAM)
1646 tt_global_entry->roam_at = jiffies;
Sven Eckelmann92dcdf02016-01-16 10:29:57 +01001647 kref_init(&common->refcount);
1648 kref_get(&common->refcount);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001649 common->added_at = jiffies;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001650
1651 INIT_HLIST_HEAD(&tt_global_entry->orig_list);
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01001652 atomic_set(&tt_global_entry->orig_list_count, 0);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001653 spin_lock_init(&tt_global_entry->list_lock);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001654
Sven Eckelmann807736f2012-07-15 22:26:51 +02001655 hash_added = batadv_hash_add(bat_priv->tt.global_hash,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001656 batadv_compare_tt,
Antonio Quartullic018ad32013-06-04 12:11:39 +02001657 batadv_choose_tt, common,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001658 &common->hash_entry);
Simon Wunderlich80b3f582011-11-02 20:26:45 +01001659
1660 if (unlikely(hash_added != 0)) {
1661 /* remove the reference for the hash */
Sven Eckelmann5dafd8a2016-01-17 11:01:26 +01001662 batadv_tt_global_entry_put(tt_global_entry);
Simon Wunderlich80b3f582011-11-02 20:26:45 +01001663 goto out_remove;
1664 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02001665 } else {
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001666 common = &tt_global_entry->common;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001667 /* If there is already a global entry, we can use this one for
1668 * our processing.
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001669 * But if we are trying to add a temporary client then here are
1670 * two options at this point:
1671 * 1) the global client is not a temporary client: the global
1672 * client has to be left as it is, temporary information
1673 * should never override any already known client state
1674 * 2) the global client is a temporary client: purge the
1675 * originator list and add the new one orig_entry
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001676 */
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001677 if (flags & BATADV_TT_CLIENT_TEMP) {
1678 if (!(common->flags & BATADV_TT_CLIENT_TEMP))
1679 goto out;
1680 if (batadv_tt_global_entry_has_orig(tt_global_entry,
1681 orig_node))
1682 goto out_remove;
1683 batadv_tt_global_del_orig_list(tt_global_entry);
1684 goto add_orig_entry;
1685 }
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001686
1687 /* if the client was temporary added before receiving the first
Simon Wunderlicha6cb3902015-09-02 20:09:55 +02001688 * OGM announcing it, we have to clear the TEMP flag. Also,
1689 * remove the previous temporary orig node and re-add it
1690 * if required. If the orig entry changed, the new one which
1691 * is a non-temporary entry is preferred.
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001692 */
Simon Wunderlicha6cb3902015-09-02 20:09:55 +02001693 if (common->flags & BATADV_TT_CLIENT_TEMP) {
1694 batadv_tt_global_del_orig_list(tt_global_entry);
1695 common->flags &= ~BATADV_TT_CLIENT_TEMP;
1696 }
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001697
Antonio Quartullie9c001362012-11-07 15:05:33 +01001698 /* the change can carry possible "attribute" flags like the
1699 * TT_CLIENT_WIFI, therefore they have to be copied in the
1700 * client entry
1701 */
Simon Wunderlichad7e2c42015-08-26 16:33:34 +02001702 common->flags |= flags;
Antonio Quartullie9c001362012-11-07 15:05:33 +01001703
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001704 /* If there is the BATADV_TT_CLIENT_ROAM flag set, there is only
1705 * one originator left in the list and we previously received a
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001706 * delete + roaming change for this originator.
1707 *
1708 * We should first delete the old originator before adding the
1709 * new one.
1710 */
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001711 if (common->flags & BATADV_TT_CLIENT_ROAM) {
Sven Eckelmanna5130882012-05-16 20:23:16 +02001712 batadv_tt_global_del_orig_list(tt_global_entry);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001713 common->flags &= ~BATADV_TT_CLIENT_ROAM;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001714 tt_global_entry->roam_at = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001715 }
1716 }
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001717add_orig_entry:
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001718 /* add the new orig_entry (if needed) or update it */
Antonio Quartullid657e622012-07-01 14:09:12 +02001719 batadv_tt_global_orig_entry_add(tt_global_entry, orig_node, ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001720
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001721 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02001722 "Creating new global tt entry: %pM (vid: %d, via %pM)\n",
1723 common->addr, BATADV_PRINT_VID(common->vid),
1724 orig_node->orig);
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001725 ret = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001726
Simon Wunderlich80b3f582011-11-02 20:26:45 +01001727out_remove:
Linus Lüssingc5caf4e2014-02-15 17:47:49 +01001728 /* Do not remove multicast addresses from the local hash on
1729 * global additions
1730 */
1731 if (is_multicast_ether_addr(tt_addr))
1732 goto out;
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001733
Antonio Quartullia73105b2011-04-27 14:27:44 +02001734 /* remove address from local hash if present */
Antonio Quartullic018ad32013-06-04 12:11:39 +02001735 local_flags = batadv_tt_local_remove(bat_priv, tt_addr, vid,
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001736 "global tt received",
Antonio Quartullic1d07432013-01-15 22:17:19 +10001737 flags & BATADV_TT_CLIENT_ROAM);
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001738 tt_global_entry->common.flags |= local_flags & BATADV_TT_CLIENT_WIFI;
1739
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001740 if (!(flags & BATADV_TT_CLIENT_ROAM))
1741 /* this is a normal global add. Therefore the client is not in a
1742 * roaming state anymore.
1743 */
1744 tt_global_entry->common.flags &= ~BATADV_TT_CLIENT_ROAM;
1745
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001746out:
1747 if (tt_global_entry)
Sven Eckelmann5dafd8a2016-01-17 11:01:26 +01001748 batadv_tt_global_entry_put(tt_global_entry);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001749 if (tt_local_entry)
Sven Eckelmann95c0db92016-01-17 11:01:25 +01001750 batadv_tt_local_entry_put(tt_local_entry);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001751 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001752}
1753
Simon Wunderlich1b371d12014-01-15 21:17:54 +01001754/**
1755 * batadv_transtable_best_orig - Get best originator list entry from tt entry
Antonio Quartulli46274562013-09-03 11:10:24 +02001756 * @bat_priv: the bat priv with all the soft interface information
Sven Eckelmann981d8902012-10-07 13:34:15 +02001757 * @tt_global_entry: global translation table entry to be analyzed
1758 *
1759 * This functon assumes the caller holds rcu_read_lock().
Sven Eckelmann62fe7102015-09-15 19:00:48 +02001760 * Return: best originator list entry or NULL on errors.
Sven Eckelmann981d8902012-10-07 13:34:15 +02001761 */
1762static struct batadv_tt_orig_list_entry *
Antonio Quartulli46274562013-09-03 11:10:24 +02001763batadv_transtable_best_orig(struct batadv_priv *bat_priv,
1764 struct batadv_tt_global_entry *tt_global_entry)
Sven Eckelmann981d8902012-10-07 13:34:15 +02001765{
Antonio Quartulli46274562013-09-03 11:10:24 +02001766 struct batadv_neigh_node *router, *best_router = NULL;
Antonio Quartulli29824a52016-05-25 23:27:31 +08001767 struct batadv_algo_ops *bao = bat_priv->algo_ops;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001768 struct hlist_head *head;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001769 struct batadv_tt_orig_list_entry *orig_entry, *best_entry = NULL;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001770
1771 head = &tt_global_entry->orig_list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001772 hlist_for_each_entry_rcu(orig_entry, head, list) {
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001773 router = batadv_orig_router_get(orig_entry->orig_node,
1774 BATADV_IF_DEFAULT);
Sven Eckelmann981d8902012-10-07 13:34:15 +02001775 if (!router)
1776 continue;
1777
Antonio Quartulli46274562013-09-03 11:10:24 +02001778 if (best_router &&
Antonio Quartulli29824a52016-05-25 23:27:31 +08001779 bao->neigh.cmp(router, BATADV_IF_DEFAULT, best_router,
1780 BATADV_IF_DEFAULT) <= 0) {
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001781 batadv_neigh_node_put(router);
Antonio Quartulli46274562013-09-03 11:10:24 +02001782 continue;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001783 }
1784
Antonio Quartulli46274562013-09-03 11:10:24 +02001785 /* release the refcount for the "old" best */
1786 if (best_router)
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001787 batadv_neigh_node_put(best_router);
Antonio Quartulli46274562013-09-03 11:10:24 +02001788
1789 best_entry = orig_entry;
1790 best_router = router;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001791 }
1792
Antonio Quartulli46274562013-09-03 11:10:24 +02001793 if (best_router)
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001794 batadv_neigh_node_put(best_router);
Antonio Quartulli46274562013-09-03 11:10:24 +02001795
Sven Eckelmann981d8902012-10-07 13:34:15 +02001796 return best_entry;
1797}
1798
Simon Wunderlich1b371d12014-01-15 21:17:54 +01001799/**
1800 * batadv_tt_global_print_entry - print all orig nodes who announce the address
1801 * for this global entry
Antonio Quartulli46274562013-09-03 11:10:24 +02001802 * @bat_priv: the bat priv with all the soft interface information
Sven Eckelmann981d8902012-10-07 13:34:15 +02001803 * @tt_global_entry: global translation table entry to be printed
1804 * @seq: debugfs table seq_file struct
1805 *
1806 * This functon assumes the caller holds rcu_read_lock().
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001807 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001808static void
Antonio Quartulli46274562013-09-03 11:10:24 +02001809batadv_tt_global_print_entry(struct batadv_priv *bat_priv,
1810 struct batadv_tt_global_entry *tt_global_entry,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001811 struct seq_file *seq)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001812{
Sven Eckelmann981d8902012-10-07 13:34:15 +02001813 struct batadv_tt_orig_list_entry *orig_entry, *best_entry;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001814 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001815 struct batadv_orig_node_vlan *vlan;
1816 struct hlist_head *head;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001817 u8 last_ttvn;
1818 u16 flags;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001819
1820 tt_common_entry = &tt_global_entry->common;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001821 flags = tt_common_entry->flags;
1822
Antonio Quartulli46274562013-09-03 11:10:24 +02001823 best_entry = batadv_transtable_best_orig(bat_priv, tt_global_entry);
Sven Eckelmann981d8902012-10-07 13:34:15 +02001824 if (best_entry) {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001825 vlan = batadv_orig_node_vlan_get(best_entry->orig_node,
1826 tt_common_entry->vid);
1827 if (!vlan) {
1828 seq_printf(seq,
1829 " * Cannot retrieve VLAN %d for originator %pM\n",
1830 BATADV_PRINT_VID(tt_common_entry->vid),
1831 best_entry->orig_node->orig);
1832 goto print_list;
1833 }
1834
Sven Eckelmann981d8902012-10-07 13:34:15 +02001835 last_ttvn = atomic_read(&best_entry->orig_node->last_ttvn);
Antonio Quartullif9d8a532012-11-19 09:01:42 +01001836 seq_printf(seq,
Antonio Quartullidd24ddb2013-11-16 12:03:49 +01001837 " %c %pM %4i (%3u) via %pM (%3u) (%#.8x) [%c%c%c%c]\n",
Sven Eckelmann981d8902012-10-07 13:34:15 +02001838 '*', tt_global_entry->common.addr,
Antonio Quartulli16052782013-06-04 12:11:41 +02001839 BATADV_PRINT_VID(tt_global_entry->common.vid),
Sven Eckelmann981d8902012-10-07 13:34:15 +02001840 best_entry->ttvn, best_entry->orig_node->orig,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001841 last_ttvn, vlan->tt.crc,
Sven Eckelmanna2f2b6c2015-04-23 18:22:24 +02001842 ((flags & BATADV_TT_CLIENT_ROAM) ? 'R' : '.'),
1843 ((flags & BATADV_TT_CLIENT_WIFI) ? 'W' : '.'),
1844 ((flags & BATADV_TT_CLIENT_ISOLA) ? 'I' : '.'),
1845 ((flags & BATADV_TT_CLIENT_TEMP) ? 'T' : '.'));
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001846
Sven Eckelmann21754e22016-01-17 11:01:24 +01001847 batadv_orig_node_vlan_put(vlan);
Sven Eckelmann981d8902012-10-07 13:34:15 +02001848 }
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001849
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001850print_list:
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001851 head = &tt_global_entry->orig_list;
1852
Sasha Levinb67bfe02013-02-27 17:06:00 -08001853 hlist_for_each_entry_rcu(orig_entry, head, list) {
Sven Eckelmann981d8902012-10-07 13:34:15 +02001854 if (best_entry == orig_entry)
1855 continue;
1856
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001857 vlan = batadv_orig_node_vlan_get(orig_entry->orig_node,
1858 tt_common_entry->vid);
1859 if (!vlan) {
1860 seq_printf(seq,
1861 " + Cannot retrieve VLAN %d for originator %pM\n",
1862 BATADV_PRINT_VID(tt_common_entry->vid),
1863 orig_entry->orig_node->orig);
1864 continue;
1865 }
1866
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001867 last_ttvn = atomic_read(&orig_entry->orig_node->last_ttvn);
Antonio Quartulli16052782013-06-04 12:11:41 +02001868 seq_printf(seq,
Antonio Quartullidd24ddb2013-11-16 12:03:49 +01001869 " %c %pM %4d (%3u) via %pM (%3u) (%#.8x) [%c%c%c%c]\n",
Sven Eckelmann981d8902012-10-07 13:34:15 +02001870 '+', tt_global_entry->common.addr,
Antonio Quartulli16052782013-06-04 12:11:41 +02001871 BATADV_PRINT_VID(tt_global_entry->common.vid),
Sven Eckelmann981d8902012-10-07 13:34:15 +02001872 orig_entry->ttvn, orig_entry->orig_node->orig,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001873 last_ttvn, vlan->tt.crc,
Sven Eckelmanna2f2b6c2015-04-23 18:22:24 +02001874 ((flags & BATADV_TT_CLIENT_ROAM) ? 'R' : '.'),
1875 ((flags & BATADV_TT_CLIENT_WIFI) ? 'W' : '.'),
1876 ((flags & BATADV_TT_CLIENT_ISOLA) ? 'I' : '.'),
1877 ((flags & BATADV_TT_CLIENT_TEMP) ? 'T' : '.'));
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001878
Sven Eckelmann21754e22016-01-17 11:01:24 +01001879 batadv_orig_node_vlan_put(vlan);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001880 }
1881}
1882
Sven Eckelmann08c36d32012-05-12 02:09:39 +02001883int batadv_tt_global_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001884{
1885 struct net_device *net_dev = (struct net_device *)seq->private;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001886 struct batadv_priv *bat_priv = netdev_priv(net_dev);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001887 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001888 struct batadv_tt_common_entry *tt_common_entry;
1889 struct batadv_tt_global_entry *tt_global;
1890 struct batadv_hard_iface *primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001891 struct hlist_head *head;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001892 u32 i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001893
Marek Lindner30da63a2012-08-03 17:15:46 +02001894 primary_if = batadv_seq_print_text_primary_if_get(seq);
1895 if (!primary_if)
Marek Lindner32ae9b22011-04-20 15:40:58 +02001896 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001897
Antonio Quartulli2dafb492011-05-05 08:42:45 +02001898 seq_printf(seq,
1899 "Globally announced TT entries received via the mesh %s\n",
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001900 net_dev->name);
Antonio Quartulli925a6f32016-03-12 10:30:18 +01001901 seq_puts(seq,
1902 " Client VID (TTVN) Originator (Curr TTVN) (CRC ) Flags\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001903
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001904 for (i = 0; i < hash->size; i++) {
1905 head = &hash->table[i];
1906
Marek Lindner7aadf882011-02-18 12:28:09 +00001907 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001908 hlist_for_each_entry_rcu(tt_common_entry,
Marek Lindner7aadf882011-02-18 12:28:09 +00001909 head, hash_entry) {
Sven Eckelmann56303d32012-06-05 22:31:31 +02001910 tt_global = container_of(tt_common_entry,
1911 struct batadv_tt_global_entry,
1912 common);
Antonio Quartulli46274562013-09-03 11:10:24 +02001913 batadv_tt_global_print_entry(bat_priv, tt_global, seq);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001914 }
Marek Lindner7aadf882011-02-18 12:28:09 +00001915 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001916 }
Marek Lindner32ae9b22011-04-20 15:40:58 +02001917out:
1918 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +01001919 batadv_hardif_put(primary_if);
Marek Lindner30da63a2012-08-03 17:15:46 +02001920 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001921}
1922
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01001923/**
Matthias Schifferd34f0552016-07-03 13:31:37 +02001924 * batadv_tt_global_dump_subentry - Dump all TT local entries into a message
1925 * @msg: Netlink message to dump into
1926 * @portid: Port making netlink request
1927 * @seq: Sequence number of netlink message
1928 * @common: tt local & tt global common data
1929 * @orig: Originator node announcing a non-mesh client
1930 * @best: Is the best originator for the TT entry
1931 *
1932 * Return: Error code, or 0 on success
1933 */
1934static int
1935batadv_tt_global_dump_subentry(struct sk_buff *msg, u32 portid, u32 seq,
1936 struct batadv_tt_common_entry *common,
1937 struct batadv_tt_orig_list_entry *orig,
1938 bool best)
1939{
1940 void *hdr;
1941 struct batadv_orig_node_vlan *vlan;
1942 u8 last_ttvn;
1943 u32 crc;
1944
1945 vlan = batadv_orig_node_vlan_get(orig->orig_node,
1946 common->vid);
1947 if (!vlan)
1948 return 0;
1949
1950 crc = vlan->tt.crc;
1951
1952 batadv_orig_node_vlan_put(vlan);
1953
1954 hdr = genlmsg_put(msg, portid, seq, &batadv_netlink_family,
1955 NLM_F_MULTI,
1956 BATADV_CMD_GET_TRANSTABLE_GLOBAL);
1957 if (!hdr)
1958 return -ENOBUFS;
1959
1960 last_ttvn = atomic_read(&orig->orig_node->last_ttvn);
1961
1962 if (nla_put(msg, BATADV_ATTR_TT_ADDRESS, ETH_ALEN, common->addr) ||
1963 nla_put(msg, BATADV_ATTR_ORIG_ADDRESS, ETH_ALEN,
1964 orig->orig_node->orig) ||
1965 nla_put_u8(msg, BATADV_ATTR_TT_TTVN, orig->ttvn) ||
1966 nla_put_u8(msg, BATADV_ATTR_TT_LAST_TTVN, last_ttvn) ||
1967 nla_put_u32(msg, BATADV_ATTR_TT_CRC32, crc) ||
1968 nla_put_u16(msg, BATADV_ATTR_TT_VID, common->vid) ||
1969 nla_put_u32(msg, BATADV_ATTR_TT_FLAGS, common->flags))
1970 goto nla_put_failure;
1971
1972 if (best && nla_put_flag(msg, BATADV_ATTR_FLAG_BEST))
1973 goto nla_put_failure;
1974
1975 genlmsg_end(msg, hdr);
1976 return 0;
1977
1978 nla_put_failure:
1979 genlmsg_cancel(msg, hdr);
1980 return -EMSGSIZE;
1981}
1982
1983/**
1984 * batadv_tt_global_dump_entry - Dump one TT global entry into a message
1985 * @msg: Netlink message to dump into
1986 * @portid: Port making netlink request
1987 * @seq: Sequence number of netlink message
1988 * @bat_priv: The bat priv with all the soft interface information
1989 * @common: tt local & tt global common data
1990 * @sub_s: Number of entries to skip
1991 *
1992 * This function assumes the caller holds rcu_read_lock().
1993 *
1994 * Return: Error code, or 0 on success
1995 */
1996static int
1997batadv_tt_global_dump_entry(struct sk_buff *msg, u32 portid, u32 seq,
1998 struct batadv_priv *bat_priv,
1999 struct batadv_tt_common_entry *common, int *sub_s)
2000{
2001 struct batadv_tt_orig_list_entry *orig_entry, *best_entry;
2002 struct batadv_tt_global_entry *global;
2003 struct hlist_head *head;
2004 int sub = 0;
2005 bool best;
2006
2007 global = container_of(common, struct batadv_tt_global_entry, common);
2008 best_entry = batadv_transtable_best_orig(bat_priv, global);
2009 head = &global->orig_list;
2010
2011 hlist_for_each_entry_rcu(orig_entry, head, list) {
2012 if (sub++ < *sub_s)
2013 continue;
2014
2015 best = (orig_entry == best_entry);
2016
2017 if (batadv_tt_global_dump_subentry(msg, portid, seq, common,
2018 orig_entry, best)) {
2019 *sub_s = sub - 1;
2020 return -EMSGSIZE;
2021 }
2022 }
2023
2024 *sub_s = 0;
2025 return 0;
2026}
2027
2028/**
2029 * batadv_tt_global_dump_bucket - Dump one TT local bucket into a message
2030 * @msg: Netlink message to dump into
2031 * @portid: Port making netlink request
2032 * @seq: Sequence number of netlink message
2033 * @bat_priv: The bat priv with all the soft interface information
2034 * @head: Pointer to the list containing the global tt entries
2035 * @idx_s: Number of entries to skip
2036 * @sub: Number of entries to skip
2037 *
2038 * Return: Error code, or 0 on success
2039 */
2040static int
2041batadv_tt_global_dump_bucket(struct sk_buff *msg, u32 portid, u32 seq,
2042 struct batadv_priv *bat_priv,
2043 struct hlist_head *head, int *idx_s, int *sub)
2044{
2045 struct batadv_tt_common_entry *common;
2046 int idx = 0;
2047
2048 rcu_read_lock();
2049 hlist_for_each_entry_rcu(common, head, hash_entry) {
2050 if (idx++ < *idx_s)
2051 continue;
2052
2053 if (batadv_tt_global_dump_entry(msg, portid, seq, bat_priv,
2054 common, sub)) {
2055 rcu_read_unlock();
2056 *idx_s = idx - 1;
2057 return -EMSGSIZE;
2058 }
2059 }
2060 rcu_read_unlock();
2061
2062 *idx_s = 0;
2063 *sub = 0;
2064 return 0;
2065}
2066
2067/**
2068 * batadv_tt_global_dump - Dump TT global entries into a message
2069 * @msg: Netlink message to dump into
2070 * @cb: Parameters from query
2071 *
2072 * Return: Error code, or length of message on success
2073 */
2074int batadv_tt_global_dump(struct sk_buff *msg, struct netlink_callback *cb)
2075{
2076 struct net *net = sock_net(cb->skb->sk);
2077 struct net_device *soft_iface;
2078 struct batadv_priv *bat_priv;
2079 struct batadv_hard_iface *primary_if = NULL;
2080 struct batadv_hashtable *hash;
2081 struct hlist_head *head;
2082 int ret;
2083 int ifindex;
2084 int bucket = cb->args[0];
2085 int idx = cb->args[1];
2086 int sub = cb->args[2];
2087 int portid = NETLINK_CB(cb->skb).portid;
2088
2089 ifindex = batadv_netlink_get_ifindex(cb->nlh, BATADV_ATTR_MESH_IFINDEX);
2090 if (!ifindex)
2091 return -EINVAL;
2092
2093 soft_iface = dev_get_by_index(net, ifindex);
2094 if (!soft_iface || !batadv_softif_is_valid(soft_iface)) {
2095 ret = -ENODEV;
2096 goto out;
2097 }
2098
2099 bat_priv = netdev_priv(soft_iface);
2100
2101 primary_if = batadv_primary_if_get_selected(bat_priv);
2102 if (!primary_if || primary_if->if_status != BATADV_IF_ACTIVE) {
2103 ret = -ENOENT;
2104 goto out;
2105 }
2106
2107 hash = bat_priv->tt.global_hash;
2108
2109 while (bucket < hash->size) {
2110 head = &hash->table[bucket];
2111
2112 if (batadv_tt_global_dump_bucket(msg, portid,
2113 cb->nlh->nlmsg_seq, bat_priv,
2114 head, &idx, &sub))
2115 break;
2116
2117 bucket++;
2118 }
2119
2120 ret = msg->len;
2121
2122 out:
2123 if (primary_if)
2124 batadv_hardif_put(primary_if);
2125 if (soft_iface)
2126 dev_put(soft_iface);
2127
2128 cb->args[0] = bucket;
2129 cb->args[1] = idx;
2130 cb->args[2] = sub;
2131
2132 return ret;
2133}
2134
2135/**
Marek Lindner433ff982015-06-18 16:11:07 +08002136 * _batadv_tt_global_del_orig_entry - remove and free an orig_entry
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01002137 * @tt_global_entry: the global entry to remove the orig_entry from
2138 * @orig_entry: the orig entry to remove and free
2139 *
2140 * Remove an orig_entry from its list in the given tt_global_entry and
2141 * free this orig_entry afterwards.
Marek Lindner433ff982015-06-18 16:11:07 +08002142 *
2143 * Caller must hold tt_global_entry->list_lock and ensure orig_entry->list is
2144 * part of a list.
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01002145 */
2146static void
Marek Lindner433ff982015-06-18 16:11:07 +08002147_batadv_tt_global_del_orig_entry(struct batadv_tt_global_entry *tt_global_entry,
2148 struct batadv_tt_orig_list_entry *orig_entry)
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01002149{
Sven Eckelmann2c72d652015-06-21 14:45:14 +02002150 lockdep_assert_held(&tt_global_entry->list_lock);
2151
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01002152 batadv_tt_global_size_dec(orig_entry->orig_node,
2153 tt_global_entry->common.vid);
2154 atomic_dec(&tt_global_entry->orig_list_count);
Marek Lindner433ff982015-06-18 16:11:07 +08002155 /* requires holding tt_global_entry->list_lock and orig_entry->list
2156 * being part of a list
2157 */
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01002158 hlist_del_rcu(&orig_entry->list);
Sven Eckelmann7e2366c2016-01-17 11:01:27 +01002159 batadv_tt_orig_list_entry_put(orig_entry);
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01002160}
2161
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002162/* deletes the orig list of a tt_global_entry */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002163static void
Sven Eckelmann56303d32012-06-05 22:31:31 +02002164batadv_tt_global_del_orig_list(struct batadv_tt_global_entry *tt_global_entry)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002165{
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002166 struct hlist_head *head;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002167 struct hlist_node *safe;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002168 struct batadv_tt_orig_list_entry *orig_entry;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002169
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002170 spin_lock_bh(&tt_global_entry->list_lock);
2171 head = &tt_global_entry->orig_list;
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01002172 hlist_for_each_entry_safe(orig_entry, safe, head, list)
Marek Lindner433ff982015-06-18 16:11:07 +08002173 _batadv_tt_global_del_orig_entry(tt_global_entry, orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002174 spin_unlock_bh(&tt_global_entry->list_lock);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002175}
2176
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01002177/**
2178 * batadv_tt_global_del_orig_node - remove orig_node from a global tt entry
2179 * @bat_priv: the bat priv with all the soft interface information
2180 * @tt_global_entry: the global entry to remove the orig_node from
2181 * @orig_node: the originator announcing the client
2182 * @message: message to append to the log on deletion
2183 *
2184 * Remove the given orig_node and its according orig_entry from the given
2185 * global tt entry.
2186 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002187static void
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01002188batadv_tt_global_del_orig_node(struct batadv_priv *bat_priv,
2189 struct batadv_tt_global_entry *tt_global_entry,
2190 struct batadv_orig_node *orig_node,
2191 const char *message)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002192{
2193 struct hlist_head *head;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002194 struct hlist_node *safe;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002195 struct batadv_tt_orig_list_entry *orig_entry;
Antonio Quartulli16052782013-06-04 12:11:41 +02002196 unsigned short vid;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002197
2198 spin_lock_bh(&tt_global_entry->list_lock);
2199 head = &tt_global_entry->orig_list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002200 hlist_for_each_entry_safe(orig_entry, safe, head, list) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002201 if (orig_entry->orig_node == orig_node) {
Antonio Quartulli16052782013-06-04 12:11:41 +02002202 vid = tt_global_entry->common.vid;
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002203 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02002204 "Deleting %pM from global tt entry %pM (vid: %d): %s\n",
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002205 orig_node->orig,
Antonio Quartulli16052782013-06-04 12:11:41 +02002206 tt_global_entry->common.addr,
2207 BATADV_PRINT_VID(vid), message);
Marek Lindner433ff982015-06-18 16:11:07 +08002208 _batadv_tt_global_del_orig_entry(tt_global_entry,
2209 orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002210 }
2211 }
2212 spin_unlock_bh(&tt_global_entry->list_lock);
2213}
2214
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002215/* If the client is to be deleted, we check if it is the last origantor entry
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002216 * within tt_global entry. If yes, we set the BATADV_TT_CLIENT_ROAM flag and the
2217 * timer, otherwise we simply remove the originator scheduled for deletion.
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002218 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002219static void
Sven Eckelmann56303d32012-06-05 22:31:31 +02002220batadv_tt_global_del_roaming(struct batadv_priv *bat_priv,
2221 struct batadv_tt_global_entry *tt_global_entry,
2222 struct batadv_orig_node *orig_node,
2223 const char *message)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002224{
2225 bool last_entry = true;
2226 struct hlist_head *head;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002227 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002228
2229 /* no local entry exists, case 1:
2230 * Check if this is the last one or if other entries exist.
2231 */
2232
2233 rcu_read_lock();
2234 head = &tt_global_entry->orig_list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002235 hlist_for_each_entry_rcu(orig_entry, head, list) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002236 if (orig_entry->orig_node != orig_node) {
2237 last_entry = false;
2238 break;
2239 }
2240 }
2241 rcu_read_unlock();
2242
2243 if (last_entry) {
2244 /* its the last one, mark for roaming. */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002245 tt_global_entry->common.flags |= BATADV_TT_CLIENT_ROAM;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002246 tt_global_entry->roam_at = jiffies;
2247 } else
2248 /* there is another entry, we can simply delete this
2249 * one and can still use the other one.
2250 */
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01002251 batadv_tt_global_del_orig_node(bat_priv, tt_global_entry,
2252 orig_node, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002253}
2254
Antonio Quartullic018ad32013-06-04 12:11:39 +02002255/**
2256 * batadv_tt_global_del - remove a client from the global table
2257 * @bat_priv: the bat priv with all the soft interface information
2258 * @orig_node: an originator serving this client
2259 * @addr: the mac address of the client
2260 * @vid: VLAN identifier
2261 * @message: a message explaining the reason for deleting the client to print
2262 * for debugging purpose
2263 * @roaming: true if the deletion has been triggered by a roaming event
2264 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002265static void batadv_tt_global_del(struct batadv_priv *bat_priv,
2266 struct batadv_orig_node *orig_node,
Antonio Quartullic018ad32013-06-04 12:11:39 +02002267 const unsigned char *addr, unsigned short vid,
Sven Eckelmanna5130882012-05-16 20:23:16 +02002268 const char *message, bool roaming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002269{
Sven Eckelmann170173b2012-10-07 12:02:22 +02002270 struct batadv_tt_global_entry *tt_global_entry;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002271 struct batadv_tt_local_entry *local_entry = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002272
Antonio Quartullic018ad32013-06-04 12:11:39 +02002273 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002274 if (!tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002275 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002276
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002277 if (!roaming) {
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01002278 batadv_tt_global_del_orig_node(bat_priv, tt_global_entry,
2279 orig_node, message);
Sven Eckelmann92f90f52011-12-22 20:31:12 +08002280
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002281 if (hlist_empty(&tt_global_entry->orig_list))
Antonio Quartullibe73b482012-09-23 22:38:36 +02002282 batadv_tt_global_free(bat_priv, tt_global_entry,
2283 message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002284
Sven Eckelmann92f90f52011-12-22 20:31:12 +08002285 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002286 }
Sven Eckelmann92f90f52011-12-22 20:31:12 +08002287
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002288 /* if we are deleting a global entry due to a roam
2289 * event, there are two possibilities:
2290 * 1) the client roamed from node A to node B => if there
2291 * is only one originator left for this client, we mark
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002292 * it with BATADV_TT_CLIENT_ROAM, we start a timer and we
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002293 * wait for node B to claim it. In case of timeout
2294 * the entry is purged.
2295 *
2296 * If there are other originators left, we directly delete
2297 * the originator.
2298 * 2) the client roamed to us => we can directly delete
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002299 * the global entry, since it is useless now.
2300 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002301 local_entry = batadv_tt_local_hash_find(bat_priv,
Antonio Quartullic018ad32013-06-04 12:11:39 +02002302 tt_global_entry->common.addr,
2303 vid);
Sven Eckelmanna5130882012-05-16 20:23:16 +02002304 if (local_entry) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002305 /* local entry exists, case 2: client roamed to us. */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002306 batadv_tt_global_del_orig_list(tt_global_entry);
Antonio Quartullibe73b482012-09-23 22:38:36 +02002307 batadv_tt_global_free(bat_priv, tt_global_entry, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002308 } else
2309 /* no local entry exists, case 1: check for roaming */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002310 batadv_tt_global_del_roaming(bat_priv, tt_global_entry,
2311 orig_node, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002312
Antonio Quartullicc47f662011-04-27 14:27:57 +02002313out:
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002314 if (tt_global_entry)
Sven Eckelmann5dafd8a2016-01-17 11:01:26 +01002315 batadv_tt_global_entry_put(tt_global_entry);
Sven Eckelmanna5130882012-05-16 20:23:16 +02002316 if (local_entry)
Sven Eckelmann95c0db92016-01-17 11:01:25 +01002317 batadv_tt_local_entry_put(local_entry);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002318}
2319
Antonio Quartulli95fb1302013-08-07 18:28:55 +02002320/**
2321 * batadv_tt_global_del_orig - remove all the TT global entries belonging to the
2322 * given originator matching the provided vid
2323 * @bat_priv: the bat priv with all the soft interface information
2324 * @orig_node: the originator owning the entries to remove
2325 * @match_vid: the VLAN identifier to match. If negative all the entries will be
2326 * removed
2327 * @message: debug message to print as "reason"
2328 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002329void batadv_tt_global_del_orig(struct batadv_priv *bat_priv,
2330 struct batadv_orig_node *orig_node,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02002331 s32 match_vid,
Sven Eckelmann56303d32012-06-05 22:31:31 +02002332 const char *message)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002333{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002334 struct batadv_tt_global_entry *tt_global;
2335 struct batadv_tt_common_entry *tt_common_entry;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02002336 u32 i;
Sven Eckelmann807736f2012-07-15 22:26:51 +02002337 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002338 struct hlist_node *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002339 struct hlist_head *head;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002340 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartulli16052782013-06-04 12:11:41 +02002341 unsigned short vid;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002342
Simon Wunderlich6e801492011-10-19 10:28:26 +02002343 if (!hash)
2344 return;
2345
Antonio Quartullia73105b2011-04-27 14:27:44 +02002346 for (i = 0; i < hash->size; i++) {
2347 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002348 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002349
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002350 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08002351 hlist_for_each_entry_safe(tt_common_entry, safe,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +01002352 head, hash_entry) {
Antonio Quartulli95fb1302013-08-07 18:28:55 +02002353 /* remove only matching entries */
2354 if (match_vid >= 0 && tt_common_entry->vid != match_vid)
2355 continue;
2356
Sven Eckelmann56303d32012-06-05 22:31:31 +02002357 tt_global = container_of(tt_common_entry,
2358 struct batadv_tt_global_entry,
2359 common);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002360
Linus Lüssing1d8ab8d2014-02-15 17:47:52 +01002361 batadv_tt_global_del_orig_node(bat_priv, tt_global,
2362 orig_node, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002363
Sven Eckelmann56303d32012-06-05 22:31:31 +02002364 if (hlist_empty(&tt_global->orig_list)) {
Antonio Quartulli16052782013-06-04 12:11:41 +02002365 vid = tt_global->common.vid;
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002366 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02002367 "Deleting global tt entry %pM (vid: %d): %s\n",
2368 tt_global->common.addr,
2369 BATADV_PRINT_VID(vid), message);
Sasha Levinb67bfe02013-02-27 17:06:00 -08002370 hlist_del_rcu(&tt_common_entry->hash_entry);
Sven Eckelmann5dafd8a2016-01-17 11:01:26 +01002371 batadv_tt_global_entry_put(tt_global);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002372 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02002373 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002374 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002375 }
Linus Lüssingac4eebd2015-06-16 17:10:24 +02002376 clear_bit(BATADV_ORIG_CAPA_HAS_TT, &orig_node->capa_initialized);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002377}
2378
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002379static bool batadv_tt_global_to_purge(struct batadv_tt_global_entry *tt_global,
2380 char **msg)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002381{
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002382 bool purge = false;
2383 unsigned long roam_timeout = BATADV_TT_CLIENT_ROAM_TIMEOUT;
2384 unsigned long temp_timeout = BATADV_TT_CLIENT_TEMP_TIMEOUT;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002385
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002386 if ((tt_global->common.flags & BATADV_TT_CLIENT_ROAM) &&
2387 batadv_has_timed_out(tt_global->roam_at, roam_timeout)) {
2388 purge = true;
2389 *msg = "Roaming timeout\n";
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002390 }
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002391
2392 if ((tt_global->common.flags & BATADV_TT_CLIENT_TEMP) &&
2393 batadv_has_timed_out(tt_global->common.added_at, temp_timeout)) {
2394 purge = true;
2395 *msg = "Temporary client timeout\n";
2396 }
2397
2398 return purge;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002399}
2400
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002401static void batadv_tt_global_purge(struct batadv_priv *bat_priv)
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002402{
Sven Eckelmann807736f2012-07-15 22:26:51 +02002403 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Antonio Quartullicc47f662011-04-27 14:27:57 +02002404 struct hlist_head *head;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002405 struct hlist_node *node_tmp;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002406 spinlock_t *list_lock; /* protects write access to the hash lists */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02002407 u32 i;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002408 char *msg = NULL;
2409 struct batadv_tt_common_entry *tt_common;
2410 struct batadv_tt_global_entry *tt_global;
Antonio Quartullicc47f662011-04-27 14:27:57 +02002411
Antonio Quartullicc47f662011-04-27 14:27:57 +02002412 for (i = 0; i < hash->size; i++) {
2413 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002414 list_lock = &hash->list_locks[i];
Antonio Quartullicc47f662011-04-27 14:27:57 +02002415
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002416 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08002417 hlist_for_each_entry_safe(tt_common, node_tmp, head,
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002418 hash_entry) {
2419 tt_global = container_of(tt_common,
2420 struct batadv_tt_global_entry,
2421 common);
2422
2423 if (!batadv_tt_global_to_purge(tt_global, &msg))
2424 continue;
2425
2426 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02002427 "Deleting global tt entry %pM (vid: %d): %s\n",
2428 tt_global->common.addr,
2429 BATADV_PRINT_VID(tt_global->common.vid),
2430 msg);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002431
Sasha Levinb67bfe02013-02-27 17:06:00 -08002432 hlist_del_rcu(&tt_common->hash_entry);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002433
Sven Eckelmann5dafd8a2016-01-17 11:01:26 +01002434 batadv_tt_global_entry_put(tt_global);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002435 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002436 spin_unlock_bh(list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002437 }
Antonio Quartullicc47f662011-04-27 14:27:57 +02002438}
2439
Sven Eckelmann56303d32012-06-05 22:31:31 +02002440static void batadv_tt_global_table_free(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002441{
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02002442 struct batadv_hashtable *hash;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002443 spinlock_t *list_lock; /* protects write access to the hash lists */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002444 struct batadv_tt_common_entry *tt_common_entry;
2445 struct batadv_tt_global_entry *tt_global;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002446 struct hlist_node *node_tmp;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002447 struct hlist_head *head;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02002448 u32 i;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002449
Sven Eckelmann807736f2012-07-15 22:26:51 +02002450 if (!bat_priv->tt.global_hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002451 return;
2452
Sven Eckelmann807736f2012-07-15 22:26:51 +02002453 hash = bat_priv->tt.global_hash;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002454
2455 for (i = 0; i < hash->size; i++) {
2456 head = &hash->table[i];
2457 list_lock = &hash->list_locks[i];
2458
2459 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08002460 hlist_for_each_entry_safe(tt_common_entry, node_tmp,
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002461 head, hash_entry) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08002462 hlist_del_rcu(&tt_common_entry->hash_entry);
Sven Eckelmann56303d32012-06-05 22:31:31 +02002463 tt_global = container_of(tt_common_entry,
2464 struct batadv_tt_global_entry,
2465 common);
Sven Eckelmann5dafd8a2016-01-17 11:01:26 +01002466 batadv_tt_global_entry_put(tt_global);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002467 }
2468 spin_unlock_bh(list_lock);
2469 }
2470
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +02002471 batadv_hash_destroy(hash);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002472
Sven Eckelmann807736f2012-07-15 22:26:51 +02002473 bat_priv->tt.global_hash = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002474}
2475
Sven Eckelmann56303d32012-06-05 22:31:31 +02002476static bool
2477_batadv_is_ap_isolated(struct batadv_tt_local_entry *tt_local_entry,
2478 struct batadv_tt_global_entry *tt_global_entry)
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002479{
2480 bool ret = false;
2481
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002482 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_WIFI &&
2483 tt_global_entry->common.flags & BATADV_TT_CLIENT_WIFI)
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002484 ret = true;
2485
Antonio Quartulli2d2fcc2a2013-11-16 12:03:50 +01002486 /* check if the two clients are marked as isolated */
2487 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_ISOLA &&
2488 tt_global_entry->common.flags & BATADV_TT_CLIENT_ISOLA)
2489 ret = true;
2490
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002491 return ret;
2492}
2493
Antonio Quartullic018ad32013-06-04 12:11:39 +02002494/**
2495 * batadv_transtable_search - get the mesh destination for a given client
2496 * @bat_priv: the bat priv with all the soft interface information
2497 * @src: mac address of the source client
2498 * @addr: mac address of the destination client
2499 * @vid: VLAN identifier
2500 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02002501 * Return: a pointer to the originator that was selected as destination in the
Antonio Quartullic018ad32013-06-04 12:11:39 +02002502 * mesh for contacting the client 'addr', NULL otherwise.
2503 * In case of multiple originators serving the same client, the function returns
2504 * the best one (best in terms of metric towards the destination node).
2505 *
2506 * If the two clients are AP isolated the function returns NULL.
2507 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002508struct batadv_orig_node *batadv_transtable_search(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02002509 const u8 *src,
2510 const u8 *addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +02002511 unsigned short vid)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002512{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002513 struct batadv_tt_local_entry *tt_local_entry = NULL;
2514 struct batadv_tt_global_entry *tt_global_entry = NULL;
2515 struct batadv_orig_node *orig_node = NULL;
Sven Eckelmann981d8902012-10-07 13:34:15 +02002516 struct batadv_tt_orig_list_entry *best_entry;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002517
Antonio Quartullieceb22a2013-11-16 12:03:51 +01002518 if (src && batadv_vlan_ap_isola_get(bat_priv, vid)) {
Antonio Quartullic018ad32013-06-04 12:11:39 +02002519 tt_local_entry = batadv_tt_local_hash_find(bat_priv, src, vid);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02002520 if (!tt_local_entry ||
2521 (tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING))
Antonio Quartulli3d393e42011-07-07 15:35:37 +02002522 goto out;
2523 }
Marek Lindner7aadf882011-02-18 12:28:09 +00002524
Antonio Quartullic018ad32013-06-04 12:11:39 +02002525 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid);
Antonio Quartulli2dafb492011-05-05 08:42:45 +02002526 if (!tt_global_entry)
Marek Lindner7b36e8e2011-02-18 12:28:10 +00002527 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002528
Antonio Quartulli3d393e42011-07-07 15:35:37 +02002529 /* check whether the clients should not communicate due to AP
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002530 * isolation
2531 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002532 if (tt_local_entry &&
2533 _batadv_is_ap_isolated(tt_local_entry, tt_global_entry))
Antonio Quartulli3d393e42011-07-07 15:35:37 +02002534 goto out;
2535
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002536 rcu_read_lock();
Antonio Quartulli46274562013-09-03 11:10:24 +02002537 best_entry = batadv_transtable_best_orig(bat_priv, tt_global_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002538 /* found anything? */
Sven Eckelmann981d8902012-10-07 13:34:15 +02002539 if (best_entry)
2540 orig_node = best_entry->orig_node;
Sven Eckelmann7c124392016-01-16 10:29:56 +01002541 if (orig_node && !kref_get_unless_zero(&orig_node->refcount))
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002542 orig_node = NULL;
2543 rcu_read_unlock();
Sven Eckelmann981d8902012-10-07 13:34:15 +02002544
Marek Lindner7b36e8e2011-02-18 12:28:10 +00002545out:
Antonio Quartulli3d393e42011-07-07 15:35:37 +02002546 if (tt_global_entry)
Sven Eckelmann5dafd8a2016-01-17 11:01:26 +01002547 batadv_tt_global_entry_put(tt_global_entry);
Antonio Quartulli3d393e42011-07-07 15:35:37 +02002548 if (tt_local_entry)
Sven Eckelmann95c0db92016-01-17 11:01:25 +01002549 batadv_tt_local_entry_put(tt_local_entry);
Antonio Quartulli3d393e42011-07-07 15:35:37 +02002550
Marek Lindner7b36e8e2011-02-18 12:28:10 +00002551 return orig_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002552}
Antonio Quartullia73105b2011-04-27 14:27:44 +02002553
Antonio Quartulliced72932013-04-24 16:37:51 +02002554/**
2555 * batadv_tt_global_crc - calculates the checksum of the local table belonging
2556 * to the given orig_node
2557 * @bat_priv: the bat priv with all the soft interface information
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002558 * @orig_node: originator for which the CRC should be computed
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002559 * @vid: VLAN identifier for which the CRC32 has to be computed
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002560 *
2561 * This function computes the checksum for the global table corresponding to a
2562 * specific originator. In particular, the checksum is computed as follows: For
2563 * each client connected to the originator the CRC32C of the MAC address and the
2564 * VID is computed and then all the CRC32Cs of the various clients are xor'ed
2565 * together.
2566 *
2567 * The idea behind is that CRC32C should be used as much as possible in order to
2568 * produce a unique hash of the table, but since the order which is used to feed
2569 * the CRC32C function affects the result and since every node in the network
2570 * probably sorts the clients differently, the hash function cannot be directly
2571 * computed over the entire table. Hence the CRC32C is used only on
2572 * the single client entry, while all the results are then xor'ed together
2573 * because the XOR operation can combine them all while trying to reduce the
2574 * noise as much as possible.
2575 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02002576 * Return: the checksum of the global table of a given originator.
Antonio Quartulliced72932013-04-24 16:37:51 +02002577 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02002578static u32 batadv_tt_global_crc(struct batadv_priv *bat_priv,
2579 struct batadv_orig_node *orig_node,
2580 unsigned short vid)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002581{
Sven Eckelmann807736f2012-07-15 22:26:51 +02002582 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002583 struct batadv_tt_common_entry *tt_common;
2584 struct batadv_tt_global_entry *tt_global;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002585 struct hlist_head *head;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02002586 u32 i, crc_tmp, crc = 0;
2587 u8 flags;
Antonio Quartullia30e22c2014-02-11 17:05:06 +01002588 __be16 tmp_vid;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002589
2590 for (i = 0; i < hash->size; i++) {
2591 head = &hash->table[i];
2592
2593 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08002594 hlist_for_each_entry_rcu(tt_common, head, hash_entry) {
Sven Eckelmann56303d32012-06-05 22:31:31 +02002595 tt_global = container_of(tt_common,
2596 struct batadv_tt_global_entry,
2597 common);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002598 /* compute the CRC only for entries belonging to the
2599 * VLAN identified by the vid passed as parameter
2600 */
2601 if (tt_common->vid != vid)
2602 continue;
2603
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002604 /* Roaming clients are in the global table for
2605 * consistency only. They don't have to be
2606 * taken into account while computing the
2607 * global crc
2608 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002609 if (tt_common->flags & BATADV_TT_CLIENT_ROAM)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002610 continue;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002611 /* Temporary clients have not been announced yet, so
2612 * they have to be skipped while computing the global
2613 * crc
2614 */
2615 if (tt_common->flags & BATADV_TT_CLIENT_TEMP)
2616 continue;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002617
2618 /* find out if this global entry is announced by this
2619 * originator
2620 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002621 if (!batadv_tt_global_entry_has_orig(tt_global,
Sven Eckelmanna5130882012-05-16 20:23:16 +02002622 orig_node))
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002623 continue;
2624
Antonio Quartullia30e22c2014-02-11 17:05:06 +01002625 /* use network order to read the VID: this ensures that
2626 * every node reads the bytes in the same order.
2627 */
2628 tmp_vid = htons(tt_common->vid);
2629 crc_tmp = crc32c(0, &tmp_vid, sizeof(tmp_vid));
Antonio Quartulli0eb015682013-10-13 02:50:20 +02002630
2631 /* compute the CRC on flags that have to be kept in sync
2632 * among nodes
2633 */
2634 flags = tt_common->flags & BATADV_TT_SYNC_MASK;
2635 crc_tmp = crc32c(crc_tmp, &flags, sizeof(flags));
2636
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002637 crc ^= crc32c(crc_tmp, tt_common->addr, ETH_ALEN);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002638 }
2639 rcu_read_unlock();
2640 }
2641
Antonio Quartulliced72932013-04-24 16:37:51 +02002642 return crc;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002643}
2644
Antonio Quartulliced72932013-04-24 16:37:51 +02002645/**
2646 * batadv_tt_local_crc - calculates the checksum of the local table
2647 * @bat_priv: the bat priv with all the soft interface information
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002648 * @vid: VLAN identifier for which the CRC32 has to be computed
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002649 *
2650 * For details about the computation, please refer to the documentation for
2651 * batadv_tt_global_crc().
2652 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02002653 * Return: the checksum of the local table
Antonio Quartulliced72932013-04-24 16:37:51 +02002654 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02002655static u32 batadv_tt_local_crc(struct batadv_priv *bat_priv,
2656 unsigned short vid)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002657{
Sven Eckelmann807736f2012-07-15 22:26:51 +02002658 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002659 struct batadv_tt_common_entry *tt_common;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002660 struct hlist_head *head;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02002661 u32 i, crc_tmp, crc = 0;
2662 u8 flags;
Antonio Quartullia30e22c2014-02-11 17:05:06 +01002663 __be16 tmp_vid;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002664
2665 for (i = 0; i < hash->size; i++) {
2666 head = &hash->table[i];
2667
2668 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08002669 hlist_for_each_entry_rcu(tt_common, head, hash_entry) {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002670 /* compute the CRC only for entries belonging to the
2671 * VLAN identified by vid
2672 */
2673 if (tt_common->vid != vid)
2674 continue;
2675
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002676 /* not yet committed clients have not to be taken into
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002677 * account while computing the CRC
2678 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002679 if (tt_common->flags & BATADV_TT_CLIENT_NEW)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002680 continue;
Antonio Quartulliced72932013-04-24 16:37:51 +02002681
Antonio Quartullia30e22c2014-02-11 17:05:06 +01002682 /* use network order to read the VID: this ensures that
2683 * every node reads the bytes in the same order.
2684 */
2685 tmp_vid = htons(tt_common->vid);
2686 crc_tmp = crc32c(0, &tmp_vid, sizeof(tmp_vid));
Antonio Quartulli0eb015682013-10-13 02:50:20 +02002687
2688 /* compute the CRC on flags that have to be kept in sync
2689 * among nodes
2690 */
2691 flags = tt_common->flags & BATADV_TT_SYNC_MASK;
2692 crc_tmp = crc32c(crc_tmp, &flags, sizeof(flags));
2693
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002694 crc ^= crc32c(crc_tmp, tt_common->addr, ETH_ALEN);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002695 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02002696 rcu_read_unlock();
2697 }
2698
Antonio Quartulliced72932013-04-24 16:37:51 +02002699 return crc;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002700}
2701
Sven Eckelmann9c4604a2016-06-26 11:16:10 +02002702/**
2703 * batadv_tt_req_node_release - free tt_req node entry
2704 * @ref: kref pointer of the tt req_node entry
2705 */
2706static void batadv_tt_req_node_release(struct kref *ref)
2707{
2708 struct batadv_tt_req_node *tt_req_node;
2709
2710 tt_req_node = container_of(ref, struct batadv_tt_req_node, refcount);
2711
Sven Eckelmann86452f82016-06-25 16:44:06 +02002712 kmem_cache_free(batadv_tt_req_cache, tt_req_node);
Sven Eckelmann9c4604a2016-06-26 11:16:10 +02002713}
2714
2715/**
2716 * batadv_tt_req_node_put - decrement the tt_req_node refcounter and
2717 * possibly release it
2718 * @tt_req_node: tt_req_node to be free'd
2719 */
2720static void batadv_tt_req_node_put(struct batadv_tt_req_node *tt_req_node)
2721{
2722 kref_put(&tt_req_node->refcount, batadv_tt_req_node_release);
2723}
2724
Sven Eckelmann56303d32012-06-05 22:31:31 +02002725static void batadv_tt_req_list_free(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002726{
Marek Lindner7c26a532015-06-28 22:16:06 +08002727 struct batadv_tt_req_node *node;
2728 struct hlist_node *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002729
Sven Eckelmann807736f2012-07-15 22:26:51 +02002730 spin_lock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002731
Marek Lindner7c26a532015-06-28 22:16:06 +08002732 hlist_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
2733 hlist_del_init(&node->list);
Sven Eckelmann9c4604a2016-06-26 11:16:10 +02002734 batadv_tt_req_node_put(node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002735 }
2736
Sven Eckelmann807736f2012-07-15 22:26:51 +02002737 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002738}
2739
Sven Eckelmann56303d32012-06-05 22:31:31 +02002740static void batadv_tt_save_orig_buffer(struct batadv_priv *bat_priv,
2741 struct batadv_orig_node *orig_node,
Antonio Quartullie8cf2342013-05-28 13:14:28 +02002742 const void *tt_buff,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02002743 u16 tt_buff_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002744{
Antonio Quartullia73105b2011-04-27 14:27:44 +02002745 /* Replace the old buffer only if I received something in the
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002746 * last OGM (the OGM could carry no changes)
2747 */
Antonio Quartullia73105b2011-04-27 14:27:44 +02002748 spin_lock_bh(&orig_node->tt_buff_lock);
2749 if (tt_buff_len > 0) {
2750 kfree(orig_node->tt_buff);
2751 orig_node->tt_buff_len = 0;
2752 orig_node->tt_buff = kmalloc(tt_buff_len, GFP_ATOMIC);
2753 if (orig_node->tt_buff) {
2754 memcpy(orig_node->tt_buff, tt_buff, tt_buff_len);
2755 orig_node->tt_buff_len = tt_buff_len;
2756 }
2757 }
2758 spin_unlock_bh(&orig_node->tt_buff_lock);
2759}
2760
Sven Eckelmann56303d32012-06-05 22:31:31 +02002761static void batadv_tt_req_purge(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002762{
Marek Lindner7c26a532015-06-28 22:16:06 +08002763 struct batadv_tt_req_node *node;
2764 struct hlist_node *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002765
Sven Eckelmann807736f2012-07-15 22:26:51 +02002766 spin_lock_bh(&bat_priv->tt.req_list_lock);
Marek Lindner7c26a532015-06-28 22:16:06 +08002767 hlist_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002768 if (batadv_has_timed_out(node->issued_at,
2769 BATADV_TT_REQUEST_TIMEOUT)) {
Marek Lindner7c26a532015-06-28 22:16:06 +08002770 hlist_del_init(&node->list);
Sven Eckelmann9c4604a2016-06-26 11:16:10 +02002771 batadv_tt_req_node_put(node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002772 }
2773 }
Sven Eckelmann807736f2012-07-15 22:26:51 +02002774 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002775}
2776
Marek Lindner383b8632015-06-18 16:24:24 +08002777/**
2778 * batadv_tt_req_node_new - search and possibly create a tt_req_node object
2779 * @bat_priv: the bat priv with all the soft interface information
2780 * @orig_node: orig node this request is being issued for
2781 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02002782 * Return: the pointer to the new tt_req_node struct if no request
Marek Lindner383b8632015-06-18 16:24:24 +08002783 * has already been issued for this orig_node, NULL otherwise.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002784 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002785static struct batadv_tt_req_node *
Marek Lindner383b8632015-06-18 16:24:24 +08002786batadv_tt_req_node_new(struct batadv_priv *bat_priv,
Sven Eckelmann56303d32012-06-05 22:31:31 +02002787 struct batadv_orig_node *orig_node)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002788{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002789 struct batadv_tt_req_node *tt_req_node_tmp, *tt_req_node = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002790
Sven Eckelmann807736f2012-07-15 22:26:51 +02002791 spin_lock_bh(&bat_priv->tt.req_list_lock);
Marek Lindner7c26a532015-06-28 22:16:06 +08002792 hlist_for_each_entry(tt_req_node_tmp, &bat_priv->tt.req_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002793 if (batadv_compare_eth(tt_req_node_tmp, orig_node) &&
2794 !batadv_has_timed_out(tt_req_node_tmp->issued_at,
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002795 BATADV_TT_REQUEST_TIMEOUT))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002796 goto unlock;
2797 }
2798
Sven Eckelmann86452f82016-06-25 16:44:06 +02002799 tt_req_node = kmem_cache_alloc(batadv_tt_req_cache, GFP_ATOMIC);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002800 if (!tt_req_node)
2801 goto unlock;
2802
Sven Eckelmann9c4604a2016-06-26 11:16:10 +02002803 kref_init(&tt_req_node->refcount);
Antonio Quartulli8fdd0152014-01-22 00:42:11 +01002804 ether_addr_copy(tt_req_node->addr, orig_node->orig);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002805 tt_req_node->issued_at = jiffies;
2806
Sven Eckelmann9c4604a2016-06-26 11:16:10 +02002807 kref_get(&tt_req_node->refcount);
Marek Lindner7c26a532015-06-28 22:16:06 +08002808 hlist_add_head(&tt_req_node->list, &bat_priv->tt.req_list);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002809unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +02002810 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002811 return tt_req_node;
2812}
2813
Marek Lindner335fbe02013-04-23 21:40:02 +08002814/**
2815 * batadv_tt_local_valid - verify that given tt entry is a valid one
2816 * @entry_ptr: to be checked local tt entry
2817 * @data_ptr: not used but definition required to satisfy the callback prototype
2818 *
Sven Eckelmann4b426b12016-02-22 21:02:39 +01002819 * Return: true if the entry is a valid, false otherwise.
Marek Lindner335fbe02013-04-23 21:40:02 +08002820 */
Sven Eckelmann4b426b12016-02-22 21:02:39 +01002821static bool batadv_tt_local_valid(const void *entry_ptr, const void *data_ptr)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002822{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002823 const struct batadv_tt_common_entry *tt_common_entry = entry_ptr;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002824
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002825 if (tt_common_entry->flags & BATADV_TT_CLIENT_NEW)
Sven Eckelmann4b426b12016-02-22 21:02:39 +01002826 return false;
2827 return true;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002828}
2829
Sven Eckelmann4b426b12016-02-22 21:02:39 +01002830static bool batadv_tt_global_valid(const void *entry_ptr,
2831 const void *data_ptr)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002832{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002833 const struct batadv_tt_common_entry *tt_common_entry = entry_ptr;
2834 const struct batadv_tt_global_entry *tt_global_entry;
2835 const struct batadv_orig_node *orig_node = data_ptr;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002836
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002837 if (tt_common_entry->flags & BATADV_TT_CLIENT_ROAM ||
2838 tt_common_entry->flags & BATADV_TT_CLIENT_TEMP)
Sven Eckelmann4b426b12016-02-22 21:02:39 +01002839 return false;
Antonio Quartullicc47f662011-04-27 14:27:57 +02002840
Sven Eckelmann56303d32012-06-05 22:31:31 +02002841 tt_global_entry = container_of(tt_common_entry,
2842 struct batadv_tt_global_entry,
Antonio Quartulli48100ba2011-10-30 12:17:33 +01002843 common);
2844
Sven Eckelmanna5130882012-05-16 20:23:16 +02002845 return batadv_tt_global_entry_has_orig(tt_global_entry, orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002846}
2847
Marek Lindner335fbe02013-04-23 21:40:02 +08002848/**
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002849 * batadv_tt_tvlv_generate - fill the tvlv buff with the tt entries from the
2850 * specified tt hash
Marek Lindner335fbe02013-04-23 21:40:02 +08002851 * @bat_priv: the bat priv with all the soft interface information
2852 * @hash: hash table containing the tt entries
2853 * @tt_len: expected tvlv tt data buffer length in number of bytes
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002854 * @tvlv_buff: pointer to the buffer to fill with the TT data
Marek Lindner335fbe02013-04-23 21:40:02 +08002855 * @valid_cb: function to filter tt change entries
2856 * @cb_data: data passed to the filter function as argument
Marek Lindner335fbe02013-04-23 21:40:02 +08002857 */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002858static void batadv_tt_tvlv_generate(struct batadv_priv *bat_priv,
2859 struct batadv_hashtable *hash,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02002860 void *tvlv_buff, u16 tt_len,
Sven Eckelmann4b426b12016-02-22 21:02:39 +01002861 bool (*valid_cb)(const void *,
2862 const void *),
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002863 void *cb_data)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002864{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002865 struct batadv_tt_common_entry *tt_common_entry;
Marek Lindner335fbe02013-04-23 21:40:02 +08002866 struct batadv_tvlv_tt_change *tt_change;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002867 struct hlist_head *head;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02002868 u16 tt_tot, tt_num_entries = 0;
2869 u32 i;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002870
Antonio Quartulli298e6e62013-05-28 13:14:27 +02002871 tt_tot = batadv_tt_entries(tt_len);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002872 tt_change = (struct batadv_tvlv_tt_change *)tvlv_buff;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002873
2874 rcu_read_lock();
2875 for (i = 0; i < hash->size; i++) {
2876 head = &hash->table[i];
2877
Sasha Levinb67bfe02013-02-27 17:06:00 -08002878 hlist_for_each_entry_rcu(tt_common_entry,
Antonio Quartullia73105b2011-04-27 14:27:44 +02002879 head, hash_entry) {
Marek Lindner335fbe02013-04-23 21:40:02 +08002880 if (tt_tot == tt_num_entries)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002881 break;
2882
Antonio Quartulli48100ba2011-10-30 12:17:33 +01002883 if ((valid_cb) && (!valid_cb(tt_common_entry, cb_data)))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002884 continue;
2885
Antonio Quartulli8fdd0152014-01-22 00:42:11 +01002886 ether_addr_copy(tt_change->addr, tt_common_entry->addr);
Antonio Quartulli27b37eb2012-11-08 14:21:11 +01002887 tt_change->flags = tt_common_entry->flags;
Antonio Quartullic018ad32013-06-04 12:11:39 +02002888 tt_change->vid = htons(tt_common_entry->vid);
Antonio Quartullica663042013-12-15 13:26:55 +01002889 memset(tt_change->reserved, 0,
2890 sizeof(tt_change->reserved));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002891
Marek Lindner335fbe02013-04-23 21:40:02 +08002892 tt_num_entries++;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002893 tt_change++;
2894 }
2895 }
2896 rcu_read_unlock();
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002897}
Antonio Quartullia73105b2011-04-27 14:27:44 +02002898
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002899/**
2900 * batadv_tt_global_check_crc - check if all the CRCs are correct
2901 * @orig_node: originator for which the CRCs have to be checked
2902 * @tt_vlan: pointer to the first tvlv VLAN entry
2903 * @num_vlan: number of tvlv VLAN entries
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002904 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02002905 * Return: true if all the received CRCs match the locally stored ones, false
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002906 * otherwise
2907 */
2908static bool batadv_tt_global_check_crc(struct batadv_orig_node *orig_node,
2909 struct batadv_tvlv_tt_vlan_data *tt_vlan,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02002910 u16 num_vlan)
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002911{
2912 struct batadv_tvlv_tt_vlan_data *tt_vlan_tmp;
2913 struct batadv_orig_node_vlan *vlan;
Simon Wunderlichc169c592015-09-02 20:09:56 +02002914 int i, orig_num_vlan;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02002915 u32 crc;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002916
2917 /* check if each received CRC matches the locally stored one */
2918 for (i = 0; i < num_vlan; i++) {
2919 tt_vlan_tmp = tt_vlan + i;
2920
2921 /* if orig_node is a backbone node for this VLAN, don't check
2922 * the CRC as we ignore all the global entries over it
2923 */
2924 if (batadv_bla_is_backbone_gw_orig(orig_node->bat_priv,
Antonio Quartullicfd4f752013-08-07 18:28:56 +02002925 orig_node->orig,
2926 ntohs(tt_vlan_tmp->vid)))
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002927 continue;
2928
2929 vlan = batadv_orig_node_vlan_get(orig_node,
2930 ntohs(tt_vlan_tmp->vid));
2931 if (!vlan)
2932 return false;
2933
Antonio Quartulli91c2b1a2014-01-28 02:06:47 +01002934 crc = vlan->tt.crc;
Sven Eckelmann21754e22016-01-17 11:01:24 +01002935 batadv_orig_node_vlan_put(vlan);
Antonio Quartulli91c2b1a2014-01-28 02:06:47 +01002936
2937 if (crc != ntohl(tt_vlan_tmp->crc))
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002938 return false;
2939 }
2940
Simon Wunderlichc169c592015-09-02 20:09:56 +02002941 /* check if any excess VLANs exist locally for the originator
2942 * which are not mentioned in the TVLV from the originator.
2943 */
2944 rcu_read_lock();
2945 orig_num_vlan = 0;
2946 hlist_for_each_entry_rcu(vlan, &orig_node->vlan_list, list)
2947 orig_num_vlan++;
2948 rcu_read_unlock();
2949
2950 if (orig_num_vlan > num_vlan)
2951 return false;
2952
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002953 return true;
2954}
2955
2956/**
2957 * batadv_tt_local_update_crc - update all the local CRCs
2958 * @bat_priv: the bat priv with all the soft interface information
2959 */
2960static void batadv_tt_local_update_crc(struct batadv_priv *bat_priv)
2961{
2962 struct batadv_softif_vlan *vlan;
2963
2964 /* recompute the global CRC for each VLAN */
2965 rcu_read_lock();
2966 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
2967 vlan->tt.crc = batadv_tt_local_crc(bat_priv, vlan->vid);
2968 }
2969 rcu_read_unlock();
2970}
2971
2972/**
2973 * batadv_tt_global_update_crc - update all the global CRCs for this orig_node
2974 * @bat_priv: the bat priv with all the soft interface information
2975 * @orig_node: the orig_node for which the CRCs have to be updated
2976 */
2977static void batadv_tt_global_update_crc(struct batadv_priv *bat_priv,
2978 struct batadv_orig_node *orig_node)
2979{
2980 struct batadv_orig_node_vlan *vlan;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02002981 u32 crc;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002982
2983 /* recompute the global CRC for each VLAN */
2984 rcu_read_lock();
Marek Lindnerd0fa4f32015-06-22 00:30:22 +08002985 hlist_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002986 /* if orig_node is a backbone node for this VLAN, don't compute
2987 * the CRC as we ignore all the global entries over it
2988 */
Antonio Quartullicfd4f752013-08-07 18:28:56 +02002989 if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig,
2990 vlan->vid))
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002991 continue;
2992
2993 crc = batadv_tt_global_crc(bat_priv, orig_node, vlan->vid);
2994 vlan->tt.crc = crc;
2995 }
2996 rcu_read_unlock();
Antonio Quartullia73105b2011-04-27 14:27:44 +02002997}
2998
Antonio Quartulliced72932013-04-24 16:37:51 +02002999/**
3000 * batadv_send_tt_request - send a TT Request message to a given node
3001 * @bat_priv: the bat priv with all the soft interface information
3002 * @dst_orig_node: the destination of the message
3003 * @ttvn: the version number that the source of the message is looking for
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003004 * @tt_vlan: pointer to the first tvlv VLAN object to request
3005 * @num_vlan: number of tvlv VLAN entries
Antonio Quartulliced72932013-04-24 16:37:51 +02003006 * @full_table: ask for the entire translation table if true, while only for the
3007 * last TT diff otherwise
Antonio Quartullid15cd622015-11-17 16:40:52 +08003008 *
3009 * Return: true if the TT Request was sent, false otherwise
Antonio Quartulliced72932013-04-24 16:37:51 +02003010 */
Sven Eckelmann4b426b12016-02-22 21:02:39 +01003011static bool batadv_send_tt_request(struct batadv_priv *bat_priv,
3012 struct batadv_orig_node *dst_orig_node,
3013 u8 ttvn,
3014 struct batadv_tvlv_tt_vlan_data *tt_vlan,
3015 u16 num_vlan, bool full_table)
Antonio Quartullia73105b2011-04-27 14:27:44 +02003016{
Marek Lindner335fbe02013-04-23 21:40:02 +08003017 struct batadv_tvlv_tt_data *tvlv_tt_data = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +02003018 struct batadv_tt_req_node *tt_req_node = NULL;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003019 struct batadv_tvlv_tt_vlan_data *tt_vlan_req;
3020 struct batadv_hard_iface *primary_if;
Marek Lindner335fbe02013-04-23 21:40:02 +08003021 bool ret = false;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003022 int i, size;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003023
Sven Eckelmanne5d89252012-05-12 13:48:54 +02003024 primary_if = batadv_primary_if_get_selected(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003025 if (!primary_if)
3026 goto out;
3027
3028 /* The new tt_req will be issued only if I'm not waiting for a
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003029 * reply from the same orig_node yet
3030 */
Marek Lindner383b8632015-06-18 16:24:24 +08003031 tt_req_node = batadv_tt_req_node_new(bat_priv, dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003032 if (!tt_req_node)
3033 goto out;
3034
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003035 size = sizeof(*tvlv_tt_data) + sizeof(*tt_vlan_req) * num_vlan;
3036 tvlv_tt_data = kzalloc(size, GFP_ATOMIC);
Marek Lindner335fbe02013-04-23 21:40:02 +08003037 if (!tvlv_tt_data)
Antonio Quartullia73105b2011-04-27 14:27:44 +02003038 goto out;
3039
Marek Lindner335fbe02013-04-23 21:40:02 +08003040 tvlv_tt_data->flags = BATADV_TT_REQUEST;
3041 tvlv_tt_data->ttvn = ttvn;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003042 tvlv_tt_data->num_vlan = htons(num_vlan);
3043
3044 /* send all the CRCs within the request. This is needed by intermediate
3045 * nodes to ensure they have the correct table before replying
3046 */
3047 tt_vlan_req = (struct batadv_tvlv_tt_vlan_data *)(tvlv_tt_data + 1);
3048 for (i = 0; i < num_vlan; i++) {
3049 tt_vlan_req->vid = tt_vlan->vid;
3050 tt_vlan_req->crc = tt_vlan->crc;
3051
3052 tt_vlan_req++;
3053 tt_vlan++;
3054 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02003055
3056 if (full_table)
Marek Lindner335fbe02013-04-23 21:40:02 +08003057 tvlv_tt_data->flags |= BATADV_TT_FULL_TABLE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003058
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02003059 batadv_dbg(BATADV_DBG_TT, bat_priv, "Sending TT_REQUEST to %pM [%c]\n",
Marek Lindner335fbe02013-04-23 21:40:02 +08003060 dst_orig_node->orig, full_table ? 'F' : '.');
Antonio Quartullia73105b2011-04-27 14:27:44 +02003061
Sven Eckelmannd69909d2012-06-03 22:19:20 +02003062 batadv_inc_counter(bat_priv, BATADV_CNT_TT_REQUEST_TX);
Marek Lindner335fbe02013-04-23 21:40:02 +08003063 batadv_tvlv_unicast_send(bat_priv, primary_if->net_dev->dev_addr,
3064 dst_orig_node->orig, BATADV_TVLV_TT, 1,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003065 tvlv_tt_data, size);
Marek Lindner335fbe02013-04-23 21:40:02 +08003066 ret = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003067
3068out:
Antonio Quartullia73105b2011-04-27 14:27:44 +02003069 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +01003070 batadv_hardif_put(primary_if);
Sven Eckelmann9c4604a2016-06-26 11:16:10 +02003071
Antonio Quartullia73105b2011-04-27 14:27:44 +02003072 if (ret && tt_req_node) {
Sven Eckelmann807736f2012-07-15 22:26:51 +02003073 spin_lock_bh(&bat_priv->tt.req_list_lock);
Sven Eckelmann9c4604a2016-06-26 11:16:10 +02003074 if (!hlist_unhashed(&tt_req_node->list)) {
3075 hlist_del_init(&tt_req_node->list);
3076 batadv_tt_req_node_put(tt_req_node);
3077 }
Sven Eckelmann807736f2012-07-15 22:26:51 +02003078 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003079 }
Sven Eckelmann9c4604a2016-06-26 11:16:10 +02003080
3081 if (tt_req_node)
3082 batadv_tt_req_node_put(tt_req_node);
3083
Marek Lindner335fbe02013-04-23 21:40:02 +08003084 kfree(tvlv_tt_data);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003085 return ret;
3086}
3087
Marek Lindner335fbe02013-04-23 21:40:02 +08003088/**
3089 * batadv_send_other_tt_response - send reply to tt request concerning another
3090 * node's translation table
3091 * @bat_priv: the bat priv with all the soft interface information
3092 * @tt_data: tt data containing the tt request information
3093 * @req_src: mac address of tt request sender
3094 * @req_dst: mac address of tt request recipient
3095 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02003096 * Return: true if tt request reply was sent, false otherwise.
Marek Lindner335fbe02013-04-23 21:40:02 +08003097 */
3098static bool batadv_send_other_tt_response(struct batadv_priv *bat_priv,
3099 struct batadv_tvlv_tt_data *tt_data,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003100 u8 *req_src, u8 *req_dst)
Antonio Quartullia73105b2011-04-27 14:27:44 +02003101{
Sven Eckelmann170173b2012-10-07 12:02:22 +02003102 struct batadv_orig_node *req_dst_orig_node;
Sven Eckelmann56303d32012-06-05 22:31:31 +02003103 struct batadv_orig_node *res_dst_orig_node = NULL;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003104 struct batadv_tvlv_tt_change *tt_change;
Marek Lindner335fbe02013-04-23 21:40:02 +08003105 struct batadv_tvlv_tt_data *tvlv_tt_data = NULL;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003106 struct batadv_tvlv_tt_vlan_data *tt_vlan;
Marek Lindner335fbe02013-04-23 21:40:02 +08003107 bool ret = false, full_table;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003108 u8 orig_ttvn, req_ttvn;
3109 u16 tvlv_len;
3110 s32 tt_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003111
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003112 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02003113 "Received TT_REQUEST from %pM for ttvn: %u (%pM) [%c]\n",
Marek Lindner335fbe02013-04-23 21:40:02 +08003114 req_src, tt_data->ttvn, req_dst,
Sven Eckelmanna2f2b6c2015-04-23 18:22:24 +02003115 ((tt_data->flags & BATADV_TT_FULL_TABLE) ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02003116
3117 /* Let's get the orig node of the REAL destination */
Marek Lindner335fbe02013-04-23 21:40:02 +08003118 req_dst_orig_node = batadv_orig_hash_find(bat_priv, req_dst);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003119 if (!req_dst_orig_node)
3120 goto out;
3121
Marek Lindner335fbe02013-04-23 21:40:02 +08003122 res_dst_orig_node = batadv_orig_hash_find(bat_priv, req_src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003123 if (!res_dst_orig_node)
3124 goto out;
3125
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003126 orig_ttvn = (u8)atomic_read(&req_dst_orig_node->last_ttvn);
Marek Lindner335fbe02013-04-23 21:40:02 +08003127 req_ttvn = tt_data->ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003128
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003129 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(tt_data + 1);
Marek Lindner335fbe02013-04-23 21:40:02 +08003130 /* this node doesn't have the requested data */
Antonio Quartullia73105b2011-04-27 14:27:44 +02003131 if (orig_ttvn != req_ttvn ||
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003132 !batadv_tt_global_check_crc(req_dst_orig_node, tt_vlan,
3133 ntohs(tt_data->num_vlan)))
Antonio Quartullia73105b2011-04-27 14:27:44 +02003134 goto out;
3135
Antonio Quartulli015758d2011-07-09 17:52:13 +02003136 /* If the full table has been explicitly requested */
Marek Lindner335fbe02013-04-23 21:40:02 +08003137 if (tt_data->flags & BATADV_TT_FULL_TABLE ||
Antonio Quartullia73105b2011-04-27 14:27:44 +02003138 !req_dst_orig_node->tt_buff)
3139 full_table = true;
3140 else
3141 full_table = false;
3142
Marek Lindner335fbe02013-04-23 21:40:02 +08003143 /* TT fragmentation hasn't been implemented yet, so send as many
3144 * TT entries fit a single packet as possible only
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003145 */
Antonio Quartullia73105b2011-04-27 14:27:44 +02003146 if (!full_table) {
3147 spin_lock_bh(&req_dst_orig_node->tt_buff_lock);
3148 tt_len = req_dst_orig_node->tt_buff_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003149
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003150 tvlv_len = batadv_tt_prepare_tvlv_global_data(req_dst_orig_node,
3151 &tvlv_tt_data,
3152 &tt_change,
3153 &tt_len);
3154 if (!tt_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02003155 goto unlock;
3156
Antonio Quartullia73105b2011-04-27 14:27:44 +02003157 /* Copy the last orig_node's OGM buffer */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003158 memcpy(tt_change, req_dst_orig_node->tt_buff,
Antonio Quartullia73105b2011-04-27 14:27:44 +02003159 req_dst_orig_node->tt_buff_len);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003160 spin_unlock_bh(&req_dst_orig_node->tt_buff_lock);
3161 } else {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003162 /* allocate the tvlv, put the tt_data and all the tt_vlan_data
3163 * in the initial part
3164 */
3165 tt_len = -1;
3166 tvlv_len = batadv_tt_prepare_tvlv_global_data(req_dst_orig_node,
3167 &tvlv_tt_data,
3168 &tt_change,
3169 &tt_len);
3170 if (!tt_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02003171 goto out;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003172
3173 /* fill the rest of the tvlv with the real TT entries */
3174 batadv_tt_tvlv_generate(bat_priv, bat_priv->tt.global_hash,
3175 tt_change, tt_len,
3176 batadv_tt_global_valid,
3177 req_dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003178 }
3179
Marek Lindnera19d3d82013-05-27 15:33:25 +08003180 /* Don't send the response, if larger than fragmented packet. */
3181 tt_len = sizeof(struct batadv_unicast_tvlv_packet) + tvlv_len;
3182 if (tt_len > atomic_read(&bat_priv->packet_size_max)) {
3183 net_ratelimited_function(batadv_info, bat_priv->soft_iface,
3184 "Ignoring TT_REQUEST from %pM; Response size exceeds max packet size.\n",
3185 res_dst_orig_node->orig);
3186 goto out;
3187 }
3188
Marek Lindner335fbe02013-04-23 21:40:02 +08003189 tvlv_tt_data->flags = BATADV_TT_RESPONSE;
3190 tvlv_tt_data->ttvn = req_ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003191
3192 if (full_table)
Marek Lindner335fbe02013-04-23 21:40:02 +08003193 tvlv_tt_data->flags |= BATADV_TT_FULL_TABLE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003194
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003195 batadv_dbg(BATADV_DBG_TT, bat_priv,
Marek Lindner335fbe02013-04-23 21:40:02 +08003196 "Sending TT_RESPONSE %pM for %pM [%c] (ttvn: %u)\n",
3197 res_dst_orig_node->orig, req_dst_orig_node->orig,
3198 full_table ? 'F' : '.', req_ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003199
Sven Eckelmannd69909d2012-06-03 22:19:20 +02003200 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02003201
Marek Lindner335fbe02013-04-23 21:40:02 +08003202 batadv_tvlv_unicast_send(bat_priv, req_dst_orig_node->orig,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003203 req_src, BATADV_TVLV_TT, 1, tvlv_tt_data,
3204 tvlv_len);
Martin Hundebølle91ecfc2013-04-20 13:54:39 +02003205
Marek Lindner335fbe02013-04-23 21:40:02 +08003206 ret = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003207 goto out;
3208
3209unlock:
3210 spin_unlock_bh(&req_dst_orig_node->tt_buff_lock);
3211
3212out:
3213 if (res_dst_orig_node)
Sven Eckelmann5d967312016-01-17 11:01:09 +01003214 batadv_orig_node_put(res_dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003215 if (req_dst_orig_node)
Sven Eckelmann5d967312016-01-17 11:01:09 +01003216 batadv_orig_node_put(req_dst_orig_node);
Marek Lindner335fbe02013-04-23 21:40:02 +08003217 kfree(tvlv_tt_data);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003218 return ret;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003219}
Sven Eckelmann96412692012-06-05 22:31:30 +02003220
Marek Lindner335fbe02013-04-23 21:40:02 +08003221/**
3222 * batadv_send_my_tt_response - send reply to tt request concerning this node's
3223 * translation table
3224 * @bat_priv: the bat priv with all the soft interface information
3225 * @tt_data: tt data containing the tt request information
3226 * @req_src: mac address of tt request sender
3227 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02003228 * Return: true if tt request reply was sent, false otherwise.
Marek Lindner335fbe02013-04-23 21:40:02 +08003229 */
3230static bool batadv_send_my_tt_response(struct batadv_priv *bat_priv,
3231 struct batadv_tvlv_tt_data *tt_data,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003232 u8 *req_src)
Antonio Quartullia73105b2011-04-27 14:27:44 +02003233{
Marek Lindner335fbe02013-04-23 21:40:02 +08003234 struct batadv_tvlv_tt_data *tvlv_tt_data = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +02003235 struct batadv_hard_iface *primary_if = NULL;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003236 struct batadv_tvlv_tt_change *tt_change;
3237 struct batadv_orig_node *orig_node;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003238 u8 my_ttvn, req_ttvn;
3239 u16 tvlv_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003240 bool full_table;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003241 s32 tt_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003242
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003243 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02003244 "Received TT_REQUEST from %pM for ttvn: %u (me) [%c]\n",
Marek Lindner335fbe02013-04-23 21:40:02 +08003245 req_src, tt_data->ttvn,
Sven Eckelmanna2f2b6c2015-04-23 18:22:24 +02003246 ((tt_data->flags & BATADV_TT_FULL_TABLE) ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02003247
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003248 spin_lock_bh(&bat_priv->tt.commit_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003249
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003250 my_ttvn = (u8)atomic_read(&bat_priv->tt.vn);
Marek Lindner335fbe02013-04-23 21:40:02 +08003251 req_ttvn = tt_data->ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003252
Marek Lindner335fbe02013-04-23 21:40:02 +08003253 orig_node = batadv_orig_hash_find(bat_priv, req_src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003254 if (!orig_node)
3255 goto out;
3256
Sven Eckelmanne5d89252012-05-12 13:48:54 +02003257 primary_if = batadv_primary_if_get_selected(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003258 if (!primary_if)
3259 goto out;
3260
3261 /* If the full table has been explicitly requested or the gap
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003262 * is too big send the whole local translation table
3263 */
Marek Lindner335fbe02013-04-23 21:40:02 +08003264 if (tt_data->flags & BATADV_TT_FULL_TABLE || my_ttvn != req_ttvn ||
Sven Eckelmann807736f2012-07-15 22:26:51 +02003265 !bat_priv->tt.last_changeset)
Antonio Quartullia73105b2011-04-27 14:27:44 +02003266 full_table = true;
3267 else
3268 full_table = false;
3269
Marek Lindner335fbe02013-04-23 21:40:02 +08003270 /* TT fragmentation hasn't been implemented yet, so send as many
3271 * TT entries fit a single packet as possible only
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003272 */
Antonio Quartullia73105b2011-04-27 14:27:44 +02003273 if (!full_table) {
Sven Eckelmann807736f2012-07-15 22:26:51 +02003274 spin_lock_bh(&bat_priv->tt.last_changeset_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003275
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003276 tt_len = bat_priv->tt.last_changeset_len;
3277 tvlv_len = batadv_tt_prepare_tvlv_local_data(bat_priv,
3278 &tvlv_tt_data,
3279 &tt_change,
3280 &tt_len);
3281 if (!tt_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02003282 goto unlock;
3283
Marek Lindner335fbe02013-04-23 21:40:02 +08003284 /* Copy the last orig_node's OGM buffer */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003285 memcpy(tt_change, bat_priv->tt.last_changeset,
Sven Eckelmann807736f2012-07-15 22:26:51 +02003286 bat_priv->tt.last_changeset_len);
3287 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003288 } else {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003289 req_ttvn = (u8)atomic_read(&bat_priv->tt.vn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003290
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003291 /* allocate the tvlv, put the tt_data and all the tt_vlan_data
3292 * in the initial part
3293 */
3294 tt_len = -1;
3295 tvlv_len = batadv_tt_prepare_tvlv_local_data(bat_priv,
3296 &tvlv_tt_data,
3297 &tt_change,
3298 &tt_len);
3299 if (!tt_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02003300 goto out;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003301
3302 /* fill the rest of the tvlv with the real TT entries */
3303 batadv_tt_tvlv_generate(bat_priv, bat_priv->tt.local_hash,
3304 tt_change, tt_len,
3305 batadv_tt_local_valid, NULL);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003306 }
3307
Marek Lindner335fbe02013-04-23 21:40:02 +08003308 tvlv_tt_data->flags = BATADV_TT_RESPONSE;
3309 tvlv_tt_data->ttvn = req_ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003310
3311 if (full_table)
Marek Lindner335fbe02013-04-23 21:40:02 +08003312 tvlv_tt_data->flags |= BATADV_TT_FULL_TABLE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003313
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003314 batadv_dbg(BATADV_DBG_TT, bat_priv,
Marek Lindner335fbe02013-04-23 21:40:02 +08003315 "Sending TT_RESPONSE to %pM [%c] (ttvn: %u)\n",
3316 orig_node->orig, full_table ? 'F' : '.', req_ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003317
Sven Eckelmannd69909d2012-06-03 22:19:20 +02003318 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02003319
Marek Lindner335fbe02013-04-23 21:40:02 +08003320 batadv_tvlv_unicast_send(bat_priv, primary_if->net_dev->dev_addr,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003321 req_src, BATADV_TVLV_TT, 1, tvlv_tt_data,
3322 tvlv_len);
Marek Lindner335fbe02013-04-23 21:40:02 +08003323
Antonio Quartullia73105b2011-04-27 14:27:44 +02003324 goto out;
3325
3326unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +02003327 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003328out:
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003329 spin_unlock_bh(&bat_priv->tt.commit_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003330 if (orig_node)
Sven Eckelmann5d967312016-01-17 11:01:09 +01003331 batadv_orig_node_put(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003332 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +01003333 batadv_hardif_put(primary_if);
Marek Lindner335fbe02013-04-23 21:40:02 +08003334 kfree(tvlv_tt_data);
3335 /* The packet was for this host, so it doesn't need to be re-routed */
Antonio Quartullia73105b2011-04-27 14:27:44 +02003336 return true;
3337}
3338
Marek Lindner335fbe02013-04-23 21:40:02 +08003339/**
3340 * batadv_send_tt_response - send reply to tt request
3341 * @bat_priv: the bat priv with all the soft interface information
3342 * @tt_data: tt data containing the tt request information
3343 * @req_src: mac address of tt request sender
3344 * @req_dst: mac address of tt request recipient
3345 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02003346 * Return: true if tt request reply was sent, false otherwise.
Marek Lindner335fbe02013-04-23 21:40:02 +08003347 */
3348static bool batadv_send_tt_response(struct batadv_priv *bat_priv,
3349 struct batadv_tvlv_tt_data *tt_data,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003350 u8 *req_src, u8 *req_dst)
Antonio Quartullia73105b2011-04-27 14:27:44 +02003351{
Antonio Quartullicfd4f752013-08-07 18:28:56 +02003352 if (batadv_is_my_mac(bat_priv, req_dst))
Marek Lindner335fbe02013-04-23 21:40:02 +08003353 return batadv_send_my_tt_response(bat_priv, tt_data, req_src);
Antonio Quartulli24820df2014-09-01 14:37:25 +02003354 return batadv_send_other_tt_response(bat_priv, tt_data, req_src,
3355 req_dst);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003356}
3357
Sven Eckelmann56303d32012-06-05 22:31:31 +02003358static void _batadv_tt_update_changes(struct batadv_priv *bat_priv,
3359 struct batadv_orig_node *orig_node,
Marek Lindner335fbe02013-04-23 21:40:02 +08003360 struct batadv_tvlv_tt_change *tt_change,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003361 u16 tt_num_changes, u8 ttvn)
Antonio Quartullia73105b2011-04-27 14:27:44 +02003362{
3363 int i;
Sven Eckelmanna5130882012-05-16 20:23:16 +02003364 int roams;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003365
3366 for (i = 0; i < tt_num_changes; i++) {
Sven Eckelmannacd34af2012-06-03 22:19:21 +02003367 if ((tt_change + i)->flags & BATADV_TT_CLIENT_DEL) {
3368 roams = (tt_change + i)->flags & BATADV_TT_CLIENT_ROAM;
Sven Eckelmanna5130882012-05-16 20:23:16 +02003369 batadv_tt_global_del(bat_priv, orig_node,
3370 (tt_change + i)->addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +02003371 ntohs((tt_change + i)->vid),
Antonio Quartullid4f44692012-05-25 00:00:54 +02003372 "tt removed by changes",
3373 roams);
Sven Eckelmann08c36d32012-05-12 02:09:39 +02003374 } else {
Sven Eckelmann08c36d32012-05-12 02:09:39 +02003375 if (!batadv_tt_global_add(bat_priv, orig_node,
Antonio Quartullid4f44692012-05-25 00:00:54 +02003376 (tt_change + i)->addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +02003377 ntohs((tt_change + i)->vid),
Antonio Quartullid4f44692012-05-25 00:00:54 +02003378 (tt_change + i)->flags, ttvn))
Antonio Quartullia73105b2011-04-27 14:27:44 +02003379 /* In case of problem while storing a
3380 * global_entry, we stop the updating
3381 * procedure without committing the
3382 * ttvn change. This will avoid to send
3383 * corrupted data on tt_request
3384 */
3385 return;
Sven Eckelmann08c36d32012-05-12 02:09:39 +02003386 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02003387 }
Linus Lüssingac4eebd2015-06-16 17:10:24 +02003388 set_bit(BATADV_ORIG_CAPA_HAS_TT, &orig_node->capa_initialized);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003389}
3390
Sven Eckelmann56303d32012-06-05 22:31:31 +02003391static void batadv_tt_fill_gtable(struct batadv_priv *bat_priv,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003392 struct batadv_tvlv_tt_change *tt_change,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003393 u8 ttvn, u8 *resp_src,
3394 u16 num_entries)
Antonio Quartullia73105b2011-04-27 14:27:44 +02003395{
Sven Eckelmann170173b2012-10-07 12:02:22 +02003396 struct batadv_orig_node *orig_node;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003397
Marek Lindner335fbe02013-04-23 21:40:02 +08003398 orig_node = batadv_orig_hash_find(bat_priv, resp_src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003399 if (!orig_node)
3400 goto out;
3401
3402 /* Purge the old table first.. */
Antonio Quartulli95fb1302013-08-07 18:28:55 +02003403 batadv_tt_global_del_orig(bat_priv, orig_node, -1,
3404 "Received full table");
Antonio Quartullia73105b2011-04-27 14:27:44 +02003405
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003406 _batadv_tt_update_changes(bat_priv, orig_node, tt_change, num_entries,
3407 ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003408
3409 spin_lock_bh(&orig_node->tt_buff_lock);
3410 kfree(orig_node->tt_buff);
3411 orig_node->tt_buff_len = 0;
3412 orig_node->tt_buff = NULL;
3413 spin_unlock_bh(&orig_node->tt_buff_lock);
3414
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003415 atomic_set(&orig_node->last_ttvn, ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003416
3417out:
3418 if (orig_node)
Sven Eckelmann5d967312016-01-17 11:01:09 +01003419 batadv_orig_node_put(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003420}
3421
Sven Eckelmann56303d32012-06-05 22:31:31 +02003422static void batadv_tt_update_changes(struct batadv_priv *bat_priv,
3423 struct batadv_orig_node *orig_node,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003424 u16 tt_num_changes, u8 ttvn,
Marek Lindner335fbe02013-04-23 21:40:02 +08003425 struct batadv_tvlv_tt_change *tt_change)
Antonio Quartullia73105b2011-04-27 14:27:44 +02003426{
Sven Eckelmanna5130882012-05-16 20:23:16 +02003427 _batadv_tt_update_changes(bat_priv, orig_node, tt_change,
3428 tt_num_changes, ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003429
Antonio Quartullie8cf2342013-05-28 13:14:28 +02003430 batadv_tt_save_orig_buffer(bat_priv, orig_node, tt_change,
3431 batadv_tt_len(tt_num_changes));
Antonio Quartullia73105b2011-04-27 14:27:44 +02003432 atomic_set(&orig_node->last_ttvn, ttvn);
3433}
3434
Antonio Quartullic018ad32013-06-04 12:11:39 +02003435/**
3436 * batadv_is_my_client - check if a client is served by the local node
3437 * @bat_priv: the bat priv with all the soft interface information
Antonio Quartulli3f687852014-11-02 11:29:56 +01003438 * @addr: the mac address of the client to check
Antonio Quartullic018ad32013-06-04 12:11:39 +02003439 * @vid: VLAN identifier
3440 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02003441 * Return: true if the client is served by this node, false otherwise.
Antonio Quartullic018ad32013-06-04 12:11:39 +02003442 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003443bool batadv_is_my_client(struct batadv_priv *bat_priv, const u8 *addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +02003444 unsigned short vid)
Antonio Quartullia73105b2011-04-27 14:27:44 +02003445{
Sven Eckelmann170173b2012-10-07 12:02:22 +02003446 struct batadv_tt_local_entry *tt_local_entry;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02003447 bool ret = false;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003448
Antonio Quartullic018ad32013-06-04 12:11:39 +02003449 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr, vid);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02003450 if (!tt_local_entry)
3451 goto out;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003452 /* Check if the client has been logically deleted (but is kept for
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003453 * consistency purpose)
3454 */
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003455 if ((tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING) ||
3456 (tt_local_entry->common.flags & BATADV_TT_CLIENT_ROAM))
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003457 goto out;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02003458 ret = true;
3459out:
Antonio Quartullia73105b2011-04-27 14:27:44 +02003460 if (tt_local_entry)
Sven Eckelmann95c0db92016-01-17 11:01:25 +01003461 batadv_tt_local_entry_put(tt_local_entry);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02003462 return ret;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003463}
3464
Marek Lindner335fbe02013-04-23 21:40:02 +08003465/**
3466 * batadv_handle_tt_response - process incoming tt reply
3467 * @bat_priv: the bat priv with all the soft interface information
3468 * @tt_data: tt data containing the tt request information
3469 * @resp_src: mac address of tt reply sender
3470 * @num_entries: number of tt change entries appended to the tt data
3471 */
3472static void batadv_handle_tt_response(struct batadv_priv *bat_priv,
3473 struct batadv_tvlv_tt_data *tt_data,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003474 u8 *resp_src, u16 num_entries)
Antonio Quartullia73105b2011-04-27 14:27:44 +02003475{
Marek Lindner7c26a532015-06-28 22:16:06 +08003476 struct batadv_tt_req_node *node;
3477 struct hlist_node *safe;
Sven Eckelmann56303d32012-06-05 22:31:31 +02003478 struct batadv_orig_node *orig_node = NULL;
Marek Lindner335fbe02013-04-23 21:40:02 +08003479 struct batadv_tvlv_tt_change *tt_change;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003480 u8 *tvlv_ptr = (u8 *)tt_data;
3481 u16 change_offset;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003482
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003483 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02003484 "Received TT_RESPONSE from %pM for ttvn %d t_size: %d [%c]\n",
Marek Lindner335fbe02013-04-23 21:40:02 +08003485 resp_src, tt_data->ttvn, num_entries,
Sven Eckelmanna2f2b6c2015-04-23 18:22:24 +02003486 ((tt_data->flags & BATADV_TT_FULL_TABLE) ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02003487
Marek Lindner335fbe02013-04-23 21:40:02 +08003488 orig_node = batadv_orig_hash_find(bat_priv, resp_src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003489 if (!orig_node)
3490 goto out;
3491
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003492 spin_lock_bh(&orig_node->tt_lock);
3493
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003494 change_offset = sizeof(struct batadv_tvlv_tt_vlan_data);
3495 change_offset *= ntohs(tt_data->num_vlan);
3496 change_offset += sizeof(*tt_data);
3497 tvlv_ptr += change_offset;
3498
3499 tt_change = (struct batadv_tvlv_tt_change *)tvlv_ptr;
Marek Lindner335fbe02013-04-23 21:40:02 +08003500 if (tt_data->flags & BATADV_TT_FULL_TABLE) {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003501 batadv_tt_fill_gtable(bat_priv, tt_change, tt_data->ttvn,
3502 resp_src, num_entries);
Sven Eckelmann96412692012-06-05 22:31:30 +02003503 } else {
Marek Lindner335fbe02013-04-23 21:40:02 +08003504 batadv_tt_update_changes(bat_priv, orig_node, num_entries,
3505 tt_data->ttvn, tt_change);
Sven Eckelmann96412692012-06-05 22:31:30 +02003506 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02003507
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003508 /* Recalculate the CRC for this orig_node and store it */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003509 batadv_tt_global_update_crc(bat_priv, orig_node);
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003510
3511 spin_unlock_bh(&orig_node->tt_lock);
3512
Antonio Quartullia73105b2011-04-27 14:27:44 +02003513 /* Delete the tt_req_node from pending tt_requests list */
Sven Eckelmann807736f2012-07-15 22:26:51 +02003514 spin_lock_bh(&bat_priv->tt.req_list_lock);
Marek Lindner7c26a532015-06-28 22:16:06 +08003515 hlist_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
Marek Lindner335fbe02013-04-23 21:40:02 +08003516 if (!batadv_compare_eth(node->addr, resp_src))
Antonio Quartullia73105b2011-04-27 14:27:44 +02003517 continue;
Marek Lindner7c26a532015-06-28 22:16:06 +08003518 hlist_del_init(&node->list);
Sven Eckelmann9c4604a2016-06-26 11:16:10 +02003519 batadv_tt_req_node_put(node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003520 }
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003521
Sven Eckelmann807736f2012-07-15 22:26:51 +02003522 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003523out:
3524 if (orig_node)
Sven Eckelmann5d967312016-01-17 11:01:09 +01003525 batadv_orig_node_put(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003526}
3527
Sven Eckelmann56303d32012-06-05 22:31:31 +02003528static void batadv_tt_roam_list_free(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02003529{
Sven Eckelmann56303d32012-06-05 22:31:31 +02003530 struct batadv_tt_roam_node *node, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02003531
Sven Eckelmann807736f2012-07-15 22:26:51 +02003532 spin_lock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003533
Sven Eckelmann807736f2012-07-15 22:26:51 +02003534 list_for_each_entry_safe(node, safe, &bat_priv->tt.roam_list, list) {
Antonio Quartullicc47f662011-04-27 14:27:57 +02003535 list_del(&node->list);
Sven Eckelmann86452f82016-06-25 16:44:06 +02003536 kmem_cache_free(batadv_tt_roam_cache, node);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003537 }
3538
Sven Eckelmann807736f2012-07-15 22:26:51 +02003539 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003540}
3541
Sven Eckelmann56303d32012-06-05 22:31:31 +02003542static void batadv_tt_roam_purge(struct batadv_priv *bat_priv)
Antonio Quartullicc47f662011-04-27 14:27:57 +02003543{
Sven Eckelmann56303d32012-06-05 22:31:31 +02003544 struct batadv_tt_roam_node *node, *safe;
Antonio Quartullicc47f662011-04-27 14:27:57 +02003545
Sven Eckelmann807736f2012-07-15 22:26:51 +02003546 spin_lock_bh(&bat_priv->tt.roam_list_lock);
3547 list_for_each_entry_safe(node, safe, &bat_priv->tt.roam_list, list) {
Sven Eckelmann42d0b042012-06-03 22:19:17 +02003548 if (!batadv_has_timed_out(node->first_time,
3549 BATADV_ROAMING_MAX_TIME))
Antonio Quartullicc47f662011-04-27 14:27:57 +02003550 continue;
3551
3552 list_del(&node->list);
Sven Eckelmann86452f82016-06-25 16:44:06 +02003553 kmem_cache_free(batadv_tt_roam_cache, node);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003554 }
Sven Eckelmann807736f2012-07-15 22:26:51 +02003555 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003556}
3557
Sven Eckelmann62fe7102015-09-15 19:00:48 +02003558/**
Antonio Quartullid15cd622015-11-17 16:40:52 +08003559 * batadv_tt_check_roam_count - check if a client has roamed too frequently
3560 * @bat_priv: the bat priv with all the soft interface information
3561 * @client: mac address of the roaming client
Sven Eckelmann62fe7102015-09-15 19:00:48 +02003562 *
3563 * This function checks whether the client already reached the
Antonio Quartullicc47f662011-04-27 14:27:57 +02003564 * maximum number of possible roaming phases. In this case the ROAMING_ADV
3565 * will not be sent.
3566 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02003567 * Return: true if the ROAMING_ADV can be sent, false otherwise
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003568 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003569static bool batadv_tt_check_roam_count(struct batadv_priv *bat_priv, u8 *client)
Antonio Quartullicc47f662011-04-27 14:27:57 +02003570{
Sven Eckelmann56303d32012-06-05 22:31:31 +02003571 struct batadv_tt_roam_node *tt_roam_node;
Antonio Quartullicc47f662011-04-27 14:27:57 +02003572 bool ret = false;
3573
Sven Eckelmann807736f2012-07-15 22:26:51 +02003574 spin_lock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003575 /* The new tt_req will be issued only if I'm not waiting for a
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003576 * reply from the same orig_node yet
3577 */
Sven Eckelmann807736f2012-07-15 22:26:51 +02003578 list_for_each_entry(tt_roam_node, &bat_priv->tt.roam_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02003579 if (!batadv_compare_eth(tt_roam_node->addr, client))
Antonio Quartullicc47f662011-04-27 14:27:57 +02003580 continue;
3581
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02003582 if (batadv_has_timed_out(tt_roam_node->first_time,
Sven Eckelmann42d0b042012-06-03 22:19:17 +02003583 BATADV_ROAMING_MAX_TIME))
Antonio Quartullicc47f662011-04-27 14:27:57 +02003584 continue;
3585
Sven Eckelmann3e348192012-05-16 20:23:22 +02003586 if (!batadv_atomic_dec_not_zero(&tt_roam_node->counter))
Antonio Quartullicc47f662011-04-27 14:27:57 +02003587 /* Sorry, you roamed too many times! */
3588 goto unlock;
3589 ret = true;
3590 break;
3591 }
3592
3593 if (!ret) {
Sven Eckelmann86452f82016-06-25 16:44:06 +02003594 tt_roam_node = kmem_cache_alloc(batadv_tt_roam_cache,
3595 GFP_ATOMIC);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003596 if (!tt_roam_node)
3597 goto unlock;
3598
3599 tt_roam_node->first_time = jiffies;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02003600 atomic_set(&tt_roam_node->counter,
3601 BATADV_ROAMING_MAX_COUNT - 1);
Antonio Quartulli8fdd0152014-01-22 00:42:11 +01003602 ether_addr_copy(tt_roam_node->addr, client);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003603
Sven Eckelmann807736f2012-07-15 22:26:51 +02003604 list_add(&tt_roam_node->list, &bat_priv->tt.roam_list);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003605 ret = true;
3606 }
3607
3608unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +02003609 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003610 return ret;
3611}
3612
Antonio Quartullic018ad32013-06-04 12:11:39 +02003613/**
3614 * batadv_send_roam_adv - send a roaming advertisement message
3615 * @bat_priv: the bat priv with all the soft interface information
3616 * @client: mac address of the roaming client
3617 * @vid: VLAN identifier
3618 * @orig_node: message destination
3619 *
3620 * Send a ROAMING_ADV message to the node which was previously serving this
3621 * client. This is done to inform the node that from now on all traffic destined
3622 * for this particular roamed client has to be forwarded to the sender of the
3623 * roaming message.
3624 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003625static void batadv_send_roam_adv(struct batadv_priv *bat_priv, u8 *client,
Antonio Quartullic018ad32013-06-04 12:11:39 +02003626 unsigned short vid,
Sven Eckelmann56303d32012-06-05 22:31:31 +02003627 struct batadv_orig_node *orig_node)
Antonio Quartullicc47f662011-04-27 14:27:57 +02003628{
Sven Eckelmann56303d32012-06-05 22:31:31 +02003629 struct batadv_hard_iface *primary_if;
Marek Lindner122edaa2013-04-23 21:40:03 +08003630 struct batadv_tvlv_roam_adv tvlv_roam;
3631
3632 primary_if = batadv_primary_if_get_selected(bat_priv);
3633 if (!primary_if)
3634 goto out;
Antonio Quartullicc47f662011-04-27 14:27:57 +02003635
3636 /* before going on we have to check whether the client has
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003637 * already roamed to us too many times
3638 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02003639 if (!batadv_tt_check_roam_count(bat_priv, client))
Antonio Quartullicc47f662011-04-27 14:27:57 +02003640 goto out;
3641
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003642 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02003643 "Sending ROAMING_ADV to %pM (client %pM, vid: %d)\n",
3644 orig_node->orig, client, BATADV_PRINT_VID(vid));
Antonio Quartullicc47f662011-04-27 14:27:57 +02003645
Sven Eckelmannd69909d2012-06-03 22:19:20 +02003646 batadv_inc_counter(bat_priv, BATADV_CNT_TT_ROAM_ADV_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02003647
Marek Lindner122edaa2013-04-23 21:40:03 +08003648 memcpy(tvlv_roam.client, client, sizeof(tvlv_roam.client));
Antonio Quartullic018ad32013-06-04 12:11:39 +02003649 tvlv_roam.vid = htons(vid);
Marek Lindner122edaa2013-04-23 21:40:03 +08003650
3651 batadv_tvlv_unicast_send(bat_priv, primary_if->net_dev->dev_addr,
3652 orig_node->orig, BATADV_TVLV_ROAM, 1,
3653 &tvlv_roam, sizeof(tvlv_roam));
Antonio Quartullicc47f662011-04-27 14:27:57 +02003654
3655out:
Marek Lindner122edaa2013-04-23 21:40:03 +08003656 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +01003657 batadv_hardif_put(primary_if);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003658}
3659
Sven Eckelmanna5130882012-05-16 20:23:16 +02003660static void batadv_tt_purge(struct work_struct *work)
Antonio Quartullia73105b2011-04-27 14:27:44 +02003661{
Sven Eckelmann56303d32012-06-05 22:31:31 +02003662 struct delayed_work *delayed_work;
Sven Eckelmann807736f2012-07-15 22:26:51 +02003663 struct batadv_priv_tt *priv_tt;
Sven Eckelmann56303d32012-06-05 22:31:31 +02003664 struct batadv_priv *bat_priv;
3665
Geliang Tang4ba4bc02015-12-28 23:43:37 +08003666 delayed_work = to_delayed_work(work);
Sven Eckelmann807736f2012-07-15 22:26:51 +02003667 priv_tt = container_of(delayed_work, struct batadv_priv_tt, work);
3668 bat_priv = container_of(priv_tt, struct batadv_priv, tt);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003669
Marek Lindnera19d3d82013-05-27 15:33:25 +08003670 batadv_tt_local_purge(bat_priv, BATADV_TT_LOCAL_TIMEOUT);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02003671 batadv_tt_global_purge(bat_priv);
Sven Eckelmanna5130882012-05-16 20:23:16 +02003672 batadv_tt_req_purge(bat_priv);
3673 batadv_tt_roam_purge(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02003674
Antonio Quartulli72414442012-12-25 13:14:37 +01003675 queue_delayed_work(batadv_event_workqueue, &bat_priv->tt.work,
3676 msecs_to_jiffies(BATADV_TT_WORK_PERIOD));
Antonio Quartullia73105b2011-04-27 14:27:44 +02003677}
Antonio Quartullicc47f662011-04-27 14:27:57 +02003678
Sven Eckelmann56303d32012-06-05 22:31:31 +02003679void batadv_tt_free(struct batadv_priv *bat_priv)
Antonio Quartullicc47f662011-04-27 14:27:57 +02003680{
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003681 batadv_tvlv_container_unregister(bat_priv, BATADV_TVLV_TT, 1);
3682 batadv_tvlv_handler_unregister(bat_priv, BATADV_TVLV_TT, 1);
3683
Sven Eckelmann807736f2012-07-15 22:26:51 +02003684 cancel_delayed_work_sync(&bat_priv->tt.work);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003685
Sven Eckelmanna5130882012-05-16 20:23:16 +02003686 batadv_tt_local_table_free(bat_priv);
3687 batadv_tt_global_table_free(bat_priv);
3688 batadv_tt_req_list_free(bat_priv);
3689 batadv_tt_changes_list_free(bat_priv);
3690 batadv_tt_roam_list_free(bat_priv);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003691
Sven Eckelmann807736f2012-07-15 22:26:51 +02003692 kfree(bat_priv->tt.last_changeset);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003693}
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003694
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003695/**
3696 * batadv_tt_local_set_flags - set or unset the specified flags on the local
3697 * table and possibly count them in the TT size
3698 * @bat_priv: the bat priv with all the soft interface information
3699 * @flags: the flag to switch
3700 * @enable: whether to set or unset the flag
3701 * @count: whether to increase the TT size by the number of changed entries
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003702 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003703static void batadv_tt_local_set_flags(struct batadv_priv *bat_priv, u16 flags,
3704 bool enable, bool count)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003705{
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003706 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
3707 struct batadv_tt_common_entry *tt_common_entry;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003708 u16 changed_num = 0;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003709 struct hlist_head *head;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003710 u32 i;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003711
3712 if (!hash)
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003713 return;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003714
3715 for (i = 0; i < hash->size; i++) {
3716 head = &hash->table[i];
3717
3718 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003719 hlist_for_each_entry_rcu(tt_common_entry,
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003720 head, hash_entry) {
Antonio Quartulli697f2532011-11-07 16:47:01 +01003721 if (enable) {
3722 if ((tt_common_entry->flags & flags) == flags)
3723 continue;
3724 tt_common_entry->flags |= flags;
3725 } else {
3726 if (!(tt_common_entry->flags & flags))
3727 continue;
3728 tt_common_entry->flags &= ~flags;
3729 }
3730 changed_num++;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003731
3732 if (!count)
3733 continue;
3734
3735 batadv_tt_local_size_inc(bat_priv,
3736 tt_common_entry->vid);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003737 }
3738 rcu_read_unlock();
3739 }
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003740}
3741
Sven Eckelmannacd34af2012-06-03 22:19:21 +02003742/* Purge out all the tt local entries marked with BATADV_TT_CLIENT_PENDING */
Sven Eckelmann56303d32012-06-05 22:31:31 +02003743static void batadv_tt_local_purge_pending_clients(struct batadv_priv *bat_priv)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003744{
Sven Eckelmann807736f2012-07-15 22:26:51 +02003745 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02003746 struct batadv_tt_common_entry *tt_common;
3747 struct batadv_tt_local_entry *tt_local;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003748 struct hlist_node *node_tmp;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003749 struct hlist_head *head;
3750 spinlock_t *list_lock; /* protects write access to the hash lists */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003751 u32 i;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003752
3753 if (!hash)
3754 return;
3755
3756 for (i = 0; i < hash->size; i++) {
3757 head = &hash->table[i];
3758 list_lock = &hash->list_locks[i];
3759
3760 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08003761 hlist_for_each_entry_safe(tt_common, node_tmp, head,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02003762 hash_entry) {
3763 if (!(tt_common->flags & BATADV_TT_CLIENT_PENDING))
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003764 continue;
3765
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003766 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02003767 "Deleting local tt entry (%pM, vid: %d): pending\n",
3768 tt_common->addr,
3769 BATADV_PRINT_VID(tt_common->vid));
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003770
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003771 batadv_tt_local_size_dec(bat_priv, tt_common->vid);
Sasha Levinb67bfe02013-02-27 17:06:00 -08003772 hlist_del_rcu(&tt_common->hash_entry);
Sven Eckelmann56303d32012-06-05 22:31:31 +02003773 tt_local = container_of(tt_common,
3774 struct batadv_tt_local_entry,
3775 common);
Antonio Quartulli35df3b22014-05-08 17:13:15 +02003776
Sven Eckelmann95c0db92016-01-17 11:01:25 +01003777 batadv_tt_local_entry_put(tt_local);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003778 }
3779 spin_unlock_bh(list_lock);
3780 }
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003781}
3782
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003783/**
Marek Lindnera19d3d82013-05-27 15:33:25 +08003784 * batadv_tt_local_commit_changes_nolock - commit all pending local tt changes
3785 * which have been queued in the time since the last commit
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003786 * @bat_priv: the bat priv with all the soft interface information
Marek Lindnera19d3d82013-05-27 15:33:25 +08003787 *
3788 * Caller must hold tt->commit_lock.
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003789 */
Marek Lindnera19d3d82013-05-27 15:33:25 +08003790static void batadv_tt_local_commit_changes_nolock(struct batadv_priv *bat_priv)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003791{
Sven Eckelmann5274cd62015-06-21 14:45:15 +02003792 lockdep_assert_held(&bat_priv->tt.commit_lock);
3793
Linus Lüssingc5caf4e2014-02-15 17:47:49 +01003794 /* Update multicast addresses in local translation table */
3795 batadv_mcast_mla_update(bat_priv);
3796
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003797 if (atomic_read(&bat_priv->tt.local_changes) < 1) {
3798 if (!batadv_atomic_dec_not_zero(&bat_priv->tt.ogm_append_cnt))
3799 batadv_tt_tvlv_container_update(bat_priv);
Marek Lindnera19d3d82013-05-27 15:33:25 +08003800 return;
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003801 }
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08003802
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003803 batadv_tt_local_set_flags(bat_priv, BATADV_TT_CLIENT_NEW, false, true);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08003804
Sven Eckelmanna5130882012-05-16 20:23:16 +02003805 batadv_tt_local_purge_pending_clients(bat_priv);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003806 batadv_tt_local_update_crc(bat_priv);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003807
3808 /* Increment the TTVN only once per OGM interval */
Sven Eckelmann807736f2012-07-15 22:26:51 +02003809 atomic_inc(&bat_priv->tt.vn);
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003810 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02003811 "Local changes committed, updating to ttvn %u\n",
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003812 (u8)atomic_read(&bat_priv->tt.vn));
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08003813
3814 /* reset the sending counter */
Sven Eckelmann807736f2012-07-15 22:26:51 +02003815 atomic_set(&bat_priv->tt.ogm_append_cnt, BATADV_TT_OGM_APPEND_MAX);
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003816 batadv_tt_tvlv_container_update(bat_priv);
Marek Lindnera19d3d82013-05-27 15:33:25 +08003817}
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003818
Marek Lindnera19d3d82013-05-27 15:33:25 +08003819/**
3820 * batadv_tt_local_commit_changes - commit all pending local tt changes which
3821 * have been queued in the time since the last commit
3822 * @bat_priv: the bat priv with all the soft interface information
3823 */
3824void batadv_tt_local_commit_changes(struct batadv_priv *bat_priv)
3825{
3826 spin_lock_bh(&bat_priv->tt.commit_lock);
3827 batadv_tt_local_commit_changes_nolock(bat_priv);
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003828 spin_unlock_bh(&bat_priv->tt.commit_lock);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003829}
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003830
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003831bool batadv_is_ap_isolated(struct batadv_priv *bat_priv, u8 *src, u8 *dst,
3832 unsigned short vid)
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003833{
Sven Eckelmann56303d32012-06-05 22:31:31 +02003834 struct batadv_tt_local_entry *tt_local_entry = NULL;
3835 struct batadv_tt_global_entry *tt_global_entry = NULL;
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003836 struct batadv_softif_vlan *vlan;
Marek Lindner5870adc2012-06-20 17:16:05 +02003837 bool ret = false;
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003838
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003839 vlan = batadv_softif_vlan_get(bat_priv, vid);
Markus Elfringe087f342015-11-03 19:20:34 +01003840 if (!vlan)
3841 return false;
3842
3843 if (!atomic_read(&vlan->ap_isolation))
Marek Lindner5870adc2012-06-20 17:16:05 +02003844 goto out;
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003845
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003846 tt_local_entry = batadv_tt_local_hash_find(bat_priv, dst, vid);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003847 if (!tt_local_entry)
3848 goto out;
3849
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003850 tt_global_entry = batadv_tt_global_hash_find(bat_priv, src, vid);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003851 if (!tt_global_entry)
3852 goto out;
3853
Antonio Quartulli1f129fe2012-06-25 20:49:50 +00003854 if (!_batadv_is_ap_isolated(tt_local_entry, tt_global_entry))
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003855 goto out;
3856
Marek Lindner5870adc2012-06-20 17:16:05 +02003857 ret = true;
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003858
3859out:
Sven Eckelmann9c3bf082016-01-17 11:01:21 +01003860 batadv_softif_vlan_put(vlan);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003861 if (tt_global_entry)
Sven Eckelmann5dafd8a2016-01-17 11:01:26 +01003862 batadv_tt_global_entry_put(tt_global_entry);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003863 if (tt_local_entry)
Sven Eckelmann95c0db92016-01-17 11:01:25 +01003864 batadv_tt_local_entry_put(tt_local_entry);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003865 return ret;
3866}
Marek Lindnera943cac2011-07-30 13:10:18 +02003867
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003868/**
3869 * batadv_tt_update_orig - update global translation table with new tt
3870 * information received via ogms
3871 * @bat_priv: the bat priv with all the soft interface information
Sven Eckelmanne51f0392015-09-06 21:38:51 +02003872 * @orig_node: the orig_node of the ogm
3873 * @tt_buff: pointer to the first tvlv VLAN entry
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003874 * @tt_num_vlan: number of tvlv VLAN entries
3875 * @tt_change: pointer to the first entry in the TT buffer
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003876 * @tt_num_changes: number of tt changes inside the tt buffer
3877 * @ttvn: translation table version number of this changeset
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003878 */
3879static void batadv_tt_update_orig(struct batadv_priv *bat_priv,
3880 struct batadv_orig_node *orig_node,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003881 const void *tt_buff, u16 tt_num_vlan,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003882 struct batadv_tvlv_tt_change *tt_change,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003883 u16 tt_num_changes, u8 ttvn)
Marek Lindnera943cac2011-07-30 13:10:18 +02003884{
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003885 u8 orig_ttvn = (u8)atomic_read(&orig_node->last_ttvn);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003886 struct batadv_tvlv_tt_vlan_data *tt_vlan;
Marek Lindnera943cac2011-07-30 13:10:18 +02003887 bool full_table = true;
Linus Lüssinge17931d2014-02-15 17:47:50 +01003888 bool has_tt_init;
Marek Lindnera943cac2011-07-30 13:10:18 +02003889
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003890 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)tt_buff;
Linus Lüssingac4eebd2015-06-16 17:10:24 +02003891 has_tt_init = test_bit(BATADV_ORIG_CAPA_HAS_TT,
3892 &orig_node->capa_initialized);
Linus Lüssinge17931d2014-02-15 17:47:50 +01003893
Antonio Quartulli17071572011-11-07 16:36:40 +01003894 /* orig table not initialised AND first diff is in the OGM OR the ttvn
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003895 * increased by one -> we can apply the attached changes
3896 */
Linus Lüssinge17931d2014-02-15 17:47:50 +01003897 if ((!has_tt_init && ttvn == 1) || ttvn - orig_ttvn == 1) {
Marek Lindnera943cac2011-07-30 13:10:18 +02003898 /* the OGM could not contain the changes due to their size or
Sven Eckelmann42d0b042012-06-03 22:19:17 +02003899 * because they have already been sent BATADV_TT_OGM_APPEND_MAX
3900 * times.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003901 * In this case send a tt request
3902 */
Marek Lindnera943cac2011-07-30 13:10:18 +02003903 if (!tt_num_changes) {
3904 full_table = false;
3905 goto request_table;
3906 }
3907
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003908 spin_lock_bh(&orig_node->tt_lock);
3909
Sven Eckelmanna5130882012-05-16 20:23:16 +02003910 batadv_tt_update_changes(bat_priv, orig_node, tt_num_changes,
Sven Eckelmann96412692012-06-05 22:31:30 +02003911 ttvn, tt_change);
Marek Lindnera943cac2011-07-30 13:10:18 +02003912
3913 /* Even if we received the precomputed crc with the OGM, we
3914 * prefer to recompute it to spot any possible inconsistency
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003915 * in the global table
3916 */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003917 batadv_tt_global_update_crc(bat_priv, orig_node);
Marek Lindnera943cac2011-07-30 13:10:18 +02003918
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003919 spin_unlock_bh(&orig_node->tt_lock);
3920
Marek Lindnera943cac2011-07-30 13:10:18 +02003921 /* The ttvn alone is not enough to guarantee consistency
3922 * because a single value could represent different states
3923 * (due to the wrap around). Thus a node has to check whether
3924 * the resulting table (after applying the changes) is still
3925 * consistent or not. E.g. a node could disconnect while its
3926 * ttvn is X and reconnect on ttvn = X + TTVN_MAX: in this case
3927 * checking the CRC value is mandatory to detect the
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003928 * inconsistency
3929 */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003930 if (!batadv_tt_global_check_crc(orig_node, tt_vlan,
3931 tt_num_vlan))
Marek Lindnera943cac2011-07-30 13:10:18 +02003932 goto request_table;
Marek Lindnera943cac2011-07-30 13:10:18 +02003933 } else {
3934 /* if we missed more than one change or our tables are not
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003935 * in sync anymore -> request fresh tt data
3936 */
Linus Lüssinge17931d2014-02-15 17:47:50 +01003937 if (!has_tt_init || ttvn != orig_ttvn ||
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003938 !batadv_tt_global_check_crc(orig_node, tt_vlan,
3939 tt_num_vlan)) {
Marek Lindnera943cac2011-07-30 13:10:18 +02003940request_table:
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003941 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003942 "TT inconsistency for %pM. Need to retrieve the correct information (ttvn: %u last_ttvn: %u num_changes: %u)\n",
3943 orig_node->orig, ttvn, orig_ttvn,
3944 tt_num_changes);
Sven Eckelmanna5130882012-05-16 20:23:16 +02003945 batadv_send_tt_request(bat_priv, orig_node, ttvn,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003946 tt_vlan, tt_num_vlan,
3947 full_table);
Marek Lindnera943cac2011-07-30 13:10:18 +02003948 return;
3949 }
3950 }
3951}
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003952
Antonio Quartullic018ad32013-06-04 12:11:39 +02003953/**
3954 * batadv_tt_global_client_is_roaming - check if a client is marked as roaming
3955 * @bat_priv: the bat priv with all the soft interface information
3956 * @addr: the mac address of the client to check
3957 * @vid: VLAN identifier
3958 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02003959 * Return: true if we know that the client has moved from its old originator
Antonio Quartullic018ad32013-06-04 12:11:39 +02003960 * to another one. This entry is still kept for consistency purposes and will be
3961 * deleted later by a DEL or because of timeout
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003962 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02003963bool batadv_tt_global_client_is_roaming(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003964 u8 *addr, unsigned short vid)
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003965{
Sven Eckelmann56303d32012-06-05 22:31:31 +02003966 struct batadv_tt_global_entry *tt_global_entry;
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003967 bool ret = false;
3968
Antonio Quartullic018ad32013-06-04 12:11:39 +02003969 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid);
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003970 if (!tt_global_entry)
3971 goto out;
3972
Antonio Quartullic1d07432013-01-15 22:17:19 +10003973 ret = tt_global_entry->common.flags & BATADV_TT_CLIENT_ROAM;
Sven Eckelmann5dafd8a2016-01-17 11:01:26 +01003974 batadv_tt_global_entry_put(tt_global_entry);
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003975out:
3976 return ret;
3977}
Antonio Quartulli30cfd022012-07-05 23:38:29 +02003978
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003979/**
3980 * batadv_tt_local_client_is_roaming - tells whether the client is roaming
3981 * @bat_priv: the bat priv with all the soft interface information
Antonio Quartullic018ad32013-06-04 12:11:39 +02003982 * @addr: the mac address of the local client to query
3983 * @vid: VLAN identifier
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003984 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02003985 * Return: true if the local client is known to be roaming (it is not served by
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003986 * this node anymore) or not. If yes, the client is still present in the table
3987 * to keep the latter consistent with the node TTVN
3988 */
3989bool batadv_tt_local_client_is_roaming(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02003990 u8 *addr, unsigned short vid)
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003991{
3992 struct batadv_tt_local_entry *tt_local_entry;
3993 bool ret = false;
3994
Antonio Quartullic018ad32013-06-04 12:11:39 +02003995 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr, vid);
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003996 if (!tt_local_entry)
3997 goto out;
3998
3999 ret = tt_local_entry->common.flags & BATADV_TT_CLIENT_ROAM;
Sven Eckelmann95c0db92016-01-17 11:01:25 +01004000 batadv_tt_local_entry_put(tt_local_entry);
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02004001out:
4002 return ret;
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02004003}
4004
Antonio Quartulli30cfd022012-07-05 23:38:29 +02004005bool batadv_tt_add_temporary_global_entry(struct batadv_priv *bat_priv,
4006 struct batadv_orig_node *orig_node,
Antonio Quartullic018ad32013-06-04 12:11:39 +02004007 const unsigned char *addr,
Antonio Quartulli16052782013-06-04 12:11:41 +02004008 unsigned short vid)
Antonio Quartulli30cfd022012-07-05 23:38:29 +02004009{
4010 bool ret = false;
4011
Antonio Quartulli16052782013-06-04 12:11:41 +02004012 if (!batadv_tt_global_add(bat_priv, orig_node, addr, vid,
Antonio Quartulli30cfd022012-07-05 23:38:29 +02004013 BATADV_TT_CLIENT_TEMP,
4014 atomic_read(&orig_node->last_ttvn)))
4015 goto out;
4016
4017 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02004018 "Added temporary global client (addr: %pM, vid: %d, orig: %pM)\n",
4019 addr, BATADV_PRINT_VID(vid), orig_node->orig);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02004020 ret = true;
4021out:
4022 return ret;
4023}
Marek Lindnere1bf0c12013-04-23 21:40:01 +08004024
4025/**
Marek Lindnera19d3d82013-05-27 15:33:25 +08004026 * batadv_tt_local_resize_to_mtu - resize the local translation table fit the
4027 * maximum packet size that can be transported through the mesh
4028 * @soft_iface: netdev struct of the mesh interface
4029 *
4030 * Remove entries older than 'timeout' and half timeout if more entries need
4031 * to be removed.
4032 */
4033void batadv_tt_local_resize_to_mtu(struct net_device *soft_iface)
4034{
4035 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
4036 int packet_size_max = atomic_read(&bat_priv->packet_size_max);
4037 int table_size, timeout = BATADV_TT_LOCAL_TIMEOUT / 2;
4038 bool reduced = false;
4039
4040 spin_lock_bh(&bat_priv->tt.commit_lock);
4041
4042 while (true) {
4043 table_size = batadv_tt_local_table_transmit_size(bat_priv);
4044 if (packet_size_max >= table_size)
4045 break;
4046
4047 batadv_tt_local_purge(bat_priv, timeout);
4048 batadv_tt_local_purge_pending_clients(bat_priv);
4049
4050 timeout /= 2;
4051 reduced = true;
4052 net_ratelimited_function(batadv_info, soft_iface,
4053 "Forced to purge local tt entries to fit new maximum fragment MTU (%i)\n",
4054 packet_size_max);
4055 }
4056
4057 /* commit these changes immediately, to avoid synchronization problem
4058 * with the TTVN
4059 */
4060 if (reduced)
4061 batadv_tt_local_commit_changes_nolock(bat_priv);
4062
4063 spin_unlock_bh(&bat_priv->tt.commit_lock);
4064}
4065
4066/**
Marek Lindnere1bf0c12013-04-23 21:40:01 +08004067 * batadv_tt_tvlv_ogm_handler_v1 - process incoming tt tvlv container
4068 * @bat_priv: the bat priv with all the soft interface information
4069 * @orig: the orig_node of the ogm
4070 * @flags: flags indicating the tvlv state (see batadv_tvlv_handler_flags)
4071 * @tvlv_value: tvlv buffer containing the gateway data
4072 * @tvlv_value_len: tvlv buffer length
4073 */
4074static void batadv_tt_tvlv_ogm_handler_v1(struct batadv_priv *bat_priv,
4075 struct batadv_orig_node *orig,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02004076 u8 flags, void *tvlv_value,
4077 u16 tvlv_value_len)
Marek Lindnere1bf0c12013-04-23 21:40:01 +08004078{
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02004079 struct batadv_tvlv_tt_vlan_data *tt_vlan;
4080 struct batadv_tvlv_tt_change *tt_change;
Marek Lindnere1bf0c12013-04-23 21:40:01 +08004081 struct batadv_tvlv_tt_data *tt_data;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02004082 u16 num_entries, num_vlan;
Marek Lindnere1bf0c12013-04-23 21:40:01 +08004083
4084 if (tvlv_value_len < sizeof(*tt_data))
4085 return;
4086
4087 tt_data = (struct batadv_tvlv_tt_data *)tvlv_value;
4088 tvlv_value_len -= sizeof(*tt_data);
4089
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02004090 num_vlan = ntohs(tt_data->num_vlan);
4091
4092 if (tvlv_value_len < sizeof(*tt_vlan) * num_vlan)
4093 return;
4094
4095 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(tt_data + 1);
4096 tt_change = (struct batadv_tvlv_tt_change *)(tt_vlan + num_vlan);
4097 tvlv_value_len -= sizeof(*tt_vlan) * num_vlan;
4098
Antonio Quartulli298e6e62013-05-28 13:14:27 +02004099 num_entries = batadv_tt_entries(tvlv_value_len);
Marek Lindnere1bf0c12013-04-23 21:40:01 +08004100
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02004101 batadv_tt_update_orig(bat_priv, orig, tt_vlan, num_vlan, tt_change,
4102 num_entries, tt_data->ttvn);
Marek Lindnere1bf0c12013-04-23 21:40:01 +08004103}
4104
4105/**
Marek Lindner335fbe02013-04-23 21:40:02 +08004106 * batadv_tt_tvlv_unicast_handler_v1 - process incoming (unicast) tt tvlv
4107 * container
4108 * @bat_priv: the bat priv with all the soft interface information
4109 * @src: mac address of tt tvlv sender
4110 * @dst: mac address of tt tvlv recipient
4111 * @tvlv_value: tvlv buffer containing the tt data
4112 * @tvlv_value_len: tvlv buffer length
4113 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02004114 * Return: NET_RX_DROP if the tt tvlv is to be re-routed, NET_RX_SUCCESS
Marek Lindner335fbe02013-04-23 21:40:02 +08004115 * otherwise.
4116 */
4117static int batadv_tt_tvlv_unicast_handler_v1(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02004118 u8 *src, u8 *dst,
Marek Lindner335fbe02013-04-23 21:40:02 +08004119 void *tvlv_value,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02004120 u16 tvlv_value_len)
Marek Lindner335fbe02013-04-23 21:40:02 +08004121{
4122 struct batadv_tvlv_tt_data *tt_data;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02004123 u16 tt_vlan_len, tt_num_entries;
Marek Lindner335fbe02013-04-23 21:40:02 +08004124 char tt_flag;
4125 bool ret;
4126
4127 if (tvlv_value_len < sizeof(*tt_data))
4128 return NET_RX_SUCCESS;
4129
4130 tt_data = (struct batadv_tvlv_tt_data *)tvlv_value;
4131 tvlv_value_len -= sizeof(*tt_data);
4132
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02004133 tt_vlan_len = sizeof(struct batadv_tvlv_tt_vlan_data);
4134 tt_vlan_len *= ntohs(tt_data->num_vlan);
4135
4136 if (tvlv_value_len < tt_vlan_len)
4137 return NET_RX_SUCCESS;
4138
4139 tvlv_value_len -= tt_vlan_len;
4140 tt_num_entries = batadv_tt_entries(tvlv_value_len);
Marek Lindner335fbe02013-04-23 21:40:02 +08004141
4142 switch (tt_data->flags & BATADV_TT_DATA_TYPE_MASK) {
4143 case BATADV_TT_REQUEST:
4144 batadv_inc_counter(bat_priv, BATADV_CNT_TT_REQUEST_RX);
4145
4146 /* If this node cannot provide a TT response the tt_request is
4147 * forwarded
4148 */
4149 ret = batadv_send_tt_response(bat_priv, tt_data, src, dst);
4150 if (!ret) {
4151 if (tt_data->flags & BATADV_TT_FULL_TABLE)
4152 tt_flag = 'F';
4153 else
4154 tt_flag = '.';
4155
4156 batadv_dbg(BATADV_DBG_TT, bat_priv,
4157 "Routing TT_REQUEST to %pM [%c]\n",
4158 dst, tt_flag);
4159 /* tvlv API will re-route the packet */
4160 return NET_RX_DROP;
4161 }
4162 break;
4163 case BATADV_TT_RESPONSE:
4164 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_RX);
4165
4166 if (batadv_is_my_mac(bat_priv, dst)) {
4167 batadv_handle_tt_response(bat_priv, tt_data,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02004168 src, tt_num_entries);
Marek Lindner335fbe02013-04-23 21:40:02 +08004169 return NET_RX_SUCCESS;
4170 }
4171
4172 if (tt_data->flags & BATADV_TT_FULL_TABLE)
4173 tt_flag = 'F';
4174 else
4175 tt_flag = '.';
4176
4177 batadv_dbg(BATADV_DBG_TT, bat_priv,
4178 "Routing TT_RESPONSE to %pM [%c]\n", dst, tt_flag);
4179
4180 /* tvlv API will re-route the packet */
4181 return NET_RX_DROP;
4182 }
4183
4184 return NET_RX_SUCCESS;
4185}
4186
4187/**
Marek Lindner122edaa2013-04-23 21:40:03 +08004188 * batadv_roam_tvlv_unicast_handler_v1 - process incoming tt roam tvlv container
4189 * @bat_priv: the bat priv with all the soft interface information
4190 * @src: mac address of tt tvlv sender
4191 * @dst: mac address of tt tvlv recipient
4192 * @tvlv_value: tvlv buffer containing the tt data
4193 * @tvlv_value_len: tvlv buffer length
4194 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02004195 * Return: NET_RX_DROP if the tt roam tvlv is to be re-routed, NET_RX_SUCCESS
Marek Lindner122edaa2013-04-23 21:40:03 +08004196 * otherwise.
4197 */
4198static int batadv_roam_tvlv_unicast_handler_v1(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02004199 u8 *src, u8 *dst,
Marek Lindner122edaa2013-04-23 21:40:03 +08004200 void *tvlv_value,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02004201 u16 tvlv_value_len)
Marek Lindner122edaa2013-04-23 21:40:03 +08004202{
4203 struct batadv_tvlv_roam_adv *roaming_adv;
4204 struct batadv_orig_node *orig_node = NULL;
4205
4206 /* If this node is not the intended recipient of the
4207 * roaming advertisement the packet is forwarded
4208 * (the tvlv API will re-route the packet).
4209 */
4210 if (!batadv_is_my_mac(bat_priv, dst))
4211 return NET_RX_DROP;
4212
Marek Lindner122edaa2013-04-23 21:40:03 +08004213 if (tvlv_value_len < sizeof(*roaming_adv))
4214 goto out;
4215
4216 orig_node = batadv_orig_hash_find(bat_priv, src);
4217 if (!orig_node)
4218 goto out;
4219
4220 batadv_inc_counter(bat_priv, BATADV_CNT_TT_ROAM_ADV_RX);
4221 roaming_adv = (struct batadv_tvlv_roam_adv *)tvlv_value;
4222
4223 batadv_dbg(BATADV_DBG_TT, bat_priv,
4224 "Received ROAMING_ADV from %pM (client %pM)\n",
4225 src, roaming_adv->client);
4226
4227 batadv_tt_global_add(bat_priv, orig_node, roaming_adv->client,
Antonio Quartullic018ad32013-06-04 12:11:39 +02004228 ntohs(roaming_adv->vid), BATADV_TT_CLIENT_ROAM,
Marek Lindner122edaa2013-04-23 21:40:03 +08004229 atomic_read(&orig_node->last_ttvn) + 1);
4230
4231out:
4232 if (orig_node)
Sven Eckelmann5d967312016-01-17 11:01:09 +01004233 batadv_orig_node_put(orig_node);
Marek Lindner122edaa2013-04-23 21:40:03 +08004234 return NET_RX_SUCCESS;
4235}
4236
4237/**
Marek Lindnere1bf0c12013-04-23 21:40:01 +08004238 * batadv_tt_init - initialise the translation table internals
4239 * @bat_priv: the bat priv with all the soft interface information
4240 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02004241 * Return: 0 on success or negative error number in case of failure.
Marek Lindnere1bf0c12013-04-23 21:40:01 +08004242 */
4243int batadv_tt_init(struct batadv_priv *bat_priv)
4244{
4245 int ret;
4246
Antonio Quartulli0eb015682013-10-13 02:50:20 +02004247 /* synchronized flags must be remote */
4248 BUILD_BUG_ON(!(BATADV_TT_SYNC_MASK & BATADV_TT_REMOTE_MASK));
4249
Marek Lindnere1bf0c12013-04-23 21:40:01 +08004250 ret = batadv_tt_local_init(bat_priv);
4251 if (ret < 0)
4252 return ret;
4253
4254 ret = batadv_tt_global_init(bat_priv);
4255 if (ret < 0)
4256 return ret;
4257
4258 batadv_tvlv_handler_register(bat_priv, batadv_tt_tvlv_ogm_handler_v1,
Marek Lindner335fbe02013-04-23 21:40:02 +08004259 batadv_tt_tvlv_unicast_handler_v1,
4260 BATADV_TVLV_TT, 1, BATADV_NO_FLAGS);
Marek Lindnere1bf0c12013-04-23 21:40:01 +08004261
Marek Lindner122edaa2013-04-23 21:40:03 +08004262 batadv_tvlv_handler_register(bat_priv, NULL,
4263 batadv_roam_tvlv_unicast_handler_v1,
4264 BATADV_TVLV_ROAM, 1, BATADV_NO_FLAGS);
4265
Marek Lindnere1bf0c12013-04-23 21:40:01 +08004266 INIT_DELAYED_WORK(&bat_priv->tt.work, batadv_tt_purge);
4267 queue_delayed_work(batadv_event_workqueue, &bat_priv->tt.work,
4268 msecs_to_jiffies(BATADV_TT_WORK_PERIOD));
4269
4270 return 1;
4271}
Antonio Quartulli42cb0be2013-11-16 12:03:52 +01004272
4273/**
4274 * batadv_tt_global_is_isolated - check if a client is marked as isolated
4275 * @bat_priv: the bat priv with all the soft interface information
4276 * @addr: the mac address of the client
4277 * @vid: the identifier of the VLAN where this client is connected
4278 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02004279 * Return: true if the client is marked with the TT_CLIENT_ISOLA flag, false
Antonio Quartulli42cb0be2013-11-16 12:03:52 +01004280 * otherwise
4281 */
4282bool batadv_tt_global_is_isolated(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02004283 const u8 *addr, unsigned short vid)
Antonio Quartulli42cb0be2013-11-16 12:03:52 +01004284{
4285 struct batadv_tt_global_entry *tt;
4286 bool ret;
4287
4288 tt = batadv_tt_global_hash_find(bat_priv, addr, vid);
4289 if (!tt)
4290 return false;
4291
4292 ret = tt->common.flags & BATADV_TT_CLIENT_ISOLA;
4293
Sven Eckelmann5dafd8a2016-01-17 11:01:26 +01004294 batadv_tt_global_entry_put(tt);
Antonio Quartulli42cb0be2013-11-16 12:03:52 +01004295
4296 return ret;
4297}
Sven Eckelmann86452f82016-06-25 16:44:06 +02004298
4299/**
4300 * batadv_tt_cache_init - Initialize tt memory object cache
4301 *
4302 * Return: 0 on success or negative error number in case of failure.
4303 */
4304int __init batadv_tt_cache_init(void)
4305{
4306 size_t tl_size = sizeof(struct batadv_tt_local_entry);
4307 size_t tg_size = sizeof(struct batadv_tt_global_entry);
4308 size_t tt_orig_size = sizeof(struct batadv_tt_orig_list_entry);
4309 size_t tt_change_size = sizeof(struct batadv_tt_change_node);
4310 size_t tt_req_size = sizeof(struct batadv_tt_req_node);
4311 size_t tt_roam_size = sizeof(struct batadv_tt_roam_node);
4312
4313 batadv_tl_cache = kmem_cache_create("batadv_tl_cache", tl_size, 0,
4314 SLAB_HWCACHE_ALIGN, NULL);
4315 if (!batadv_tl_cache)
4316 return -ENOMEM;
4317
4318 batadv_tg_cache = kmem_cache_create("batadv_tg_cache", tg_size, 0,
4319 SLAB_HWCACHE_ALIGN, NULL);
4320 if (!batadv_tg_cache)
4321 goto err_tt_tl_destroy;
4322
4323 batadv_tt_orig_cache = kmem_cache_create("batadv_tt_orig_cache",
4324 tt_orig_size, 0,
4325 SLAB_HWCACHE_ALIGN, NULL);
4326 if (!batadv_tt_orig_cache)
4327 goto err_tt_tg_destroy;
4328
4329 batadv_tt_change_cache = kmem_cache_create("batadv_tt_change_cache",
4330 tt_change_size, 0,
4331 SLAB_HWCACHE_ALIGN, NULL);
4332 if (!batadv_tt_change_cache)
4333 goto err_tt_orig_destroy;
4334
4335 batadv_tt_req_cache = kmem_cache_create("batadv_tt_req_cache",
4336 tt_req_size, 0,
4337 SLAB_HWCACHE_ALIGN, NULL);
4338 if (!batadv_tt_req_cache)
4339 goto err_tt_change_destroy;
4340
4341 batadv_tt_roam_cache = kmem_cache_create("batadv_tt_roam_cache",
4342 tt_roam_size, 0,
4343 SLAB_HWCACHE_ALIGN, NULL);
4344 if (!batadv_tt_roam_cache)
4345 goto err_tt_req_destroy;
4346
4347 return 0;
4348
4349err_tt_req_destroy:
4350 kmem_cache_destroy(batadv_tt_req_cache);
4351 batadv_tt_req_cache = NULL;
4352err_tt_change_destroy:
4353 kmem_cache_destroy(batadv_tt_change_cache);
4354 batadv_tt_change_cache = NULL;
4355err_tt_orig_destroy:
4356 kmem_cache_destroy(batadv_tt_orig_cache);
4357 batadv_tt_orig_cache = NULL;
4358err_tt_tg_destroy:
4359 kmem_cache_destroy(batadv_tg_cache);
4360 batadv_tg_cache = NULL;
4361err_tt_tl_destroy:
4362 kmem_cache_destroy(batadv_tl_cache);
4363 batadv_tl_cache = NULL;
4364
4365 return -ENOMEM;
4366}
4367
4368/**
4369 * batadv_tt_cache_destroy - Destroy tt memory object cache
4370 */
4371void batadv_tt_cache_destroy(void)
4372{
4373 kmem_cache_destroy(batadv_tl_cache);
4374 kmem_cache_destroy(batadv_tg_cache);
4375 kmem_cache_destroy(batadv_tt_orig_cache);
4376 kmem_cache_destroy(batadv_tt_change_cache);
4377 kmem_cache_destroy(batadv_tt_req_cache);
4378 kmem_cache_destroy(batadv_tt_roam_cache);
4379}