]>
Commit | Line | Data |
---|---|---|
7db7d9f3 | 1 | // SPDX-License-Identifier: GPL-2.0 |
7a79d717 | 2 | /* Copyright (C) 2007-2019 B.A.T.M.A.N. contributors: |
c6c8fea2 | 3 | * |
35c133a0 | 4 | * Marek Lindner, Simon Wunderlich, Antonio Quartulli |
c6c8fea2 SE |
5 | */ |
6 | ||
c6c8fea2 | 7 | #include "translation-table.h" |
1e2c2a4f SE |
8 | #include "main.h" |
9 | ||
10 | #include <linux/atomic.h> | |
ac4eebd4 | 11 | #include <linux/bitops.h> |
ecc36f5e | 12 | #include <linux/build_bug.h> |
1e2c2a4f | 13 | #include <linux/byteorder/generic.h> |
86452f81 | 14 | #include <linux/cache.h> |
1e2c2a4f SE |
15 | #include <linux/compiler.h> |
16 | #include <linux/crc32c.h> | |
17 | #include <linux/errno.h> | |
18 | #include <linux/etherdevice.h> | |
b92b94ac | 19 | #include <linux/gfp.h> |
1e2c2a4f | 20 | #include <linux/if_ether.h> |
86452f81 | 21 | #include <linux/init.h> |
1e2c2a4f SE |
22 | #include <linux/jhash.h> |
23 | #include <linux/jiffies.h> | |
24 | #include <linux/kernel.h> | |
6e8ef69d | 25 | #include <linux/kref.h> |
1e2c2a4f SE |
26 | #include <linux/list.h> |
27 | #include <linux/lockdep.h> | |
3a64469e | 28 | #include <linux/net.h> |
1e2c2a4f | 29 | #include <linux/netdevice.h> |
d34f0550 | 30 | #include <linux/netlink.h> |
1e2c2a4f SE |
31 | #include <linux/rculist.h> |
32 | #include <linux/rcupdate.h> | |
33 | #include <linux/seq_file.h> | |
d34f0550 | 34 | #include <linux/skbuff.h> |
1e2c2a4f SE |
35 | #include <linux/slab.h> |
36 | #include <linux/spinlock.h> | |
37 | #include <linux/stddef.h> | |
38 | #include <linux/string.h> | |
39 | #include <linux/workqueue.h> | |
d34f0550 MS |
40 | #include <net/genetlink.h> |
41 | #include <net/netlink.h> | |
42 | #include <net/sock.h> | |
fec149f5 | 43 | #include <uapi/linux/batadv_packet.h> |
d34f0550 | 44 | #include <uapi/linux/batman_adv.h> |
1e2c2a4f SE |
45 | |
46 | #include "bridge_loop_avoidance.h" | |
32ae9b22 | 47 | #include "hard-interface.h" |
c6c8fea2 | 48 | #include "hash.h" |
ba412080 | 49 | #include "log.h" |
d34f0550 | 50 | #include "netlink.h" |
1e2c2a4f | 51 | #include "originator.h" |
1e2c2a4f | 52 | #include "soft-interface.h" |
1f8dce49 | 53 | #include "tvlv.h" |
a73105b8 | 54 | |
86452f81 SE |
55 | static struct kmem_cache *batadv_tl_cache __read_mostly; |
56 | static struct kmem_cache *batadv_tg_cache __read_mostly; | |
57 | static struct kmem_cache *batadv_tt_orig_cache __read_mostly; | |
58 | static struct kmem_cache *batadv_tt_change_cache __read_mostly; | |
59 | static struct kmem_cache *batadv_tt_req_cache __read_mostly; | |
60 | static struct kmem_cache *batadv_tt_roam_cache __read_mostly; | |
61 | ||
dec05074 AQ |
62 | /* hash class keys */ |
63 | static struct lock_class_key batadv_tt_local_hash_lock_class_key; | |
64 | static struct lock_class_key batadv_tt_global_hash_lock_class_key; | |
65 | ||
6b5e971a | 66 | static void batadv_send_roam_adv(struct batadv_priv *bat_priv, u8 *client, |
c018ad3d | 67 | unsigned short vid, |
56303d34 | 68 | struct batadv_orig_node *orig_node); |
a513088d SE |
69 | static void batadv_tt_purge(struct work_struct *work); |
70 | static void | |
56303d34 | 71 | batadv_tt_global_del_orig_list(struct batadv_tt_global_entry *tt_global_entry); |
30cfd02b AQ |
72 | static void batadv_tt_global_del(struct batadv_priv *bat_priv, |
73 | struct batadv_orig_node *orig_node, | |
74 | const unsigned char *addr, | |
c018ad3d AQ |
75 | unsigned short vid, const char *message, |
76 | bool roaming); | |
c6c8fea2 | 77 | |
62fe710f | 78 | /** |
7e9a8c2c | 79 | * batadv_compare_tt() - check if two TT entries are the same |
d15cd622 AQ |
80 | * @node: the list element pointer of the first TT entry |
81 | * @data2: pointer to the tt_common_entry of the second TT entry | |
62fe710f | 82 | * |
d15cd622 AQ |
83 | * Compare the MAC address and the VLAN ID of the two TT entries and check if |
84 | * they are the same TT client. | |
4b426b10 | 85 | * Return: true if the two TT clients are the same, false otherwise |
62fe710f | 86 | */ |
4b426b10 | 87 | static bool batadv_compare_tt(const struct hlist_node *node, const void *data2) |
7aadf889 | 88 | { |
56303d34 | 89 | const void *data1 = container_of(node, struct batadv_tt_common_entry, |
747e4221 | 90 | hash_entry); |
4c718958 ML |
91 | const struct batadv_tt_common_entry *tt1 = data1; |
92 | const struct batadv_tt_common_entry *tt2 = data2; | |
7aadf889 | 93 | |
4c718958 | 94 | return (tt1->vid == tt2->vid) && batadv_compare_eth(data1, data2); |
7aadf889 ML |
95 | } |
96 | ||
c018ad3d | 97 | /** |
7e9a8c2c | 98 | * batadv_choose_tt() - return the index of the tt entry in the hash table |
c018ad3d AQ |
99 | * @data: pointer to the tt_common_entry object to map |
100 | * @size: the size of the hash table | |
101 | * | |
62fe710f | 102 | * Return: the hash index where the object represented by 'data' should be |
c018ad3d AQ |
103 | * stored at. |
104 | */ | |
6b5e971a | 105 | static inline u32 batadv_choose_tt(const void *data, u32 size) |
c018ad3d AQ |
106 | { |
107 | struct batadv_tt_common_entry *tt; | |
6b5e971a | 108 | u32 hash = 0; |
c018ad3d AQ |
109 | |
110 | tt = (struct batadv_tt_common_entry *)data; | |
36fd61cb SE |
111 | hash = jhash(&tt->addr, ETH_ALEN, hash); |
112 | hash = jhash(&tt->vid, sizeof(tt->vid), hash); | |
c018ad3d AQ |
113 | |
114 | return hash % size; | |
115 | } | |
116 | ||
117 | /** | |
7e9a8c2c | 118 | * batadv_tt_hash_find() - look for a client in the given hash table |
c018ad3d AQ |
119 | * @hash: the hash table to search |
120 | * @addr: the mac address of the client to look for | |
121 | * @vid: VLAN identifier | |
122 | * | |
62fe710f | 123 | * Return: a pointer to the tt_common struct belonging to the searched client if |
c018ad3d AQ |
124 | * found, NULL otherwise. |
125 | */ | |
56303d34 | 126 | static struct batadv_tt_common_entry * |
6b5e971a | 127 | batadv_tt_hash_find(struct batadv_hashtable *hash, const u8 *addr, |
c018ad3d | 128 | unsigned short vid) |
7aadf889 | 129 | { |
7aadf889 | 130 | struct hlist_head *head; |
c018ad3d | 131 | struct batadv_tt_common_entry to_search, *tt, *tt_tmp = NULL; |
6b5e971a | 132 | u32 index; |
7aadf889 ML |
133 | |
134 | if (!hash) | |
135 | return NULL; | |
136 | ||
8fdd0153 | 137 | ether_addr_copy(to_search.addr, addr); |
c018ad3d AQ |
138 | to_search.vid = vid; |
139 | ||
140 | index = batadv_choose_tt(&to_search, hash->size); | |
7aadf889 ML |
141 | head = &hash->table[index]; |
142 | ||
143 | rcu_read_lock(); | |
c018ad3d AQ |
144 | hlist_for_each_entry_rcu(tt, head, hash_entry) { |
145 | if (!batadv_compare_eth(tt, addr)) | |
146 | continue; | |
147 | ||
148 | if (tt->vid != vid) | |
7aadf889 ML |
149 | continue; |
150 | ||
92dcdf09 | 151 | if (!kref_get_unless_zero(&tt->refcount)) |
7683fdc1 AQ |
152 | continue; |
153 | ||
c018ad3d | 154 | tt_tmp = tt; |
7aadf889 ML |
155 | break; |
156 | } | |
157 | rcu_read_unlock(); | |
158 | ||
c018ad3d | 159 | return tt_tmp; |
7aadf889 ML |
160 | } |
161 | ||
c018ad3d | 162 | /** |
7e9a8c2c | 163 | * batadv_tt_local_hash_find() - search the local table for a given client |
c018ad3d AQ |
164 | * @bat_priv: the bat priv with all the soft interface information |
165 | * @addr: the mac address of the client to look for | |
166 | * @vid: VLAN identifier | |
167 | * | |
62fe710f | 168 | * Return: a pointer to the corresponding tt_local_entry struct if the client is |
c018ad3d AQ |
169 | * found, NULL otherwise. |
170 | */ | |
56303d34 | 171 | static struct batadv_tt_local_entry * |
6b5e971a | 172 | batadv_tt_local_hash_find(struct batadv_priv *bat_priv, const u8 *addr, |
c018ad3d | 173 | unsigned short vid) |
7aadf889 | 174 | { |
56303d34 SE |
175 | struct batadv_tt_common_entry *tt_common_entry; |
176 | struct batadv_tt_local_entry *tt_local_entry = NULL; | |
7aadf889 | 177 | |
c018ad3d AQ |
178 | tt_common_entry = batadv_tt_hash_find(bat_priv->tt.local_hash, addr, |
179 | vid); | |
48100bac AQ |
180 | if (tt_common_entry) |
181 | tt_local_entry = container_of(tt_common_entry, | |
56303d34 SE |
182 | struct batadv_tt_local_entry, |
183 | common); | |
48100bac AQ |
184 | return tt_local_entry; |
185 | } | |
7aadf889 | 186 | |
c018ad3d | 187 | /** |
7e9a8c2c | 188 | * batadv_tt_global_hash_find() - search the global table for a given client |
c018ad3d AQ |
189 | * @bat_priv: the bat priv with all the soft interface information |
190 | * @addr: the mac address of the client to look for | |
191 | * @vid: VLAN identifier | |
192 | * | |
62fe710f | 193 | * Return: a pointer to the corresponding tt_global_entry struct if the client |
c018ad3d AQ |
194 | * is found, NULL otherwise. |
195 | */ | |
32e72744 | 196 | struct batadv_tt_global_entry * |
6b5e971a | 197 | batadv_tt_global_hash_find(struct batadv_priv *bat_priv, const u8 *addr, |
c018ad3d | 198 | unsigned short vid) |
48100bac | 199 | { |
56303d34 SE |
200 | struct batadv_tt_common_entry *tt_common_entry; |
201 | struct batadv_tt_global_entry *tt_global_entry = NULL; | |
7683fdc1 | 202 | |
c018ad3d AQ |
203 | tt_common_entry = batadv_tt_hash_find(bat_priv->tt.global_hash, addr, |
204 | vid); | |
48100bac AQ |
205 | if (tt_common_entry) |
206 | tt_global_entry = container_of(tt_common_entry, | |
56303d34 SE |
207 | struct batadv_tt_global_entry, |
208 | common); | |
48100bac | 209 | return tt_global_entry; |
7aadf889 ML |
210 | } |
211 | ||
86452f81 | 212 | /** |
7e9a8c2c | 213 | * batadv_tt_local_entry_free_rcu() - free the tt_local_entry |
86452f81 SE |
214 | * @rcu: rcu pointer of the tt_local_entry |
215 | */ | |
216 | static void batadv_tt_local_entry_free_rcu(struct rcu_head *rcu) | |
217 | { | |
218 | struct batadv_tt_local_entry *tt_local_entry; | |
219 | ||
220 | tt_local_entry = container_of(rcu, struct batadv_tt_local_entry, | |
221 | common.rcu); | |
222 | ||
223 | kmem_cache_free(batadv_tl_cache, tt_local_entry); | |
224 | } | |
225 | ||
92dcdf09 | 226 | /** |
7e9a8c2c | 227 | * batadv_tt_local_entry_release() - release tt_local_entry from lists and queue |
92dcdf09 SE |
228 | * for free after rcu grace period |
229 | * @ref: kref pointer of the nc_node | |
230 | */ | |
231 | static void batadv_tt_local_entry_release(struct kref *ref) | |
232 | { | |
233 | struct batadv_tt_local_entry *tt_local_entry; | |
234 | ||
235 | tt_local_entry = container_of(ref, struct batadv_tt_local_entry, | |
236 | common.refcount); | |
237 | ||
a33d970d SE |
238 | batadv_softif_vlan_put(tt_local_entry->vlan); |
239 | ||
86452f81 | 240 | call_rcu(&tt_local_entry->common.rcu, batadv_tt_local_entry_free_rcu); |
92dcdf09 SE |
241 | } |
242 | ||
243 | /** | |
7e9a8c2c | 244 | * batadv_tt_local_entry_put() - decrement the tt_local_entry refcounter and |
92dcdf09 SE |
245 | * possibly release it |
246 | * @tt_local_entry: tt_local_entry to be free'd | |
247 | */ | |
a513088d | 248 | static void |
95c0db90 | 249 | batadv_tt_local_entry_put(struct batadv_tt_local_entry *tt_local_entry) |
7683fdc1 | 250 | { |
92dcdf09 SE |
251 | kref_put(&tt_local_entry->common.refcount, |
252 | batadv_tt_local_entry_release); | |
7683fdc1 AQ |
253 | } |
254 | ||
86452f81 | 255 | /** |
7e9a8c2c | 256 | * batadv_tt_global_entry_free_rcu() - free the tt_global_entry |
86452f81 SE |
257 | * @rcu: rcu pointer of the tt_global_entry |
258 | */ | |
259 | static void batadv_tt_global_entry_free_rcu(struct rcu_head *rcu) | |
260 | { | |
261 | struct batadv_tt_global_entry *tt_global_entry; | |
262 | ||
263 | tt_global_entry = container_of(rcu, struct batadv_tt_global_entry, | |
264 | common.rcu); | |
265 | ||
266 | kmem_cache_free(batadv_tg_cache, tt_global_entry); | |
267 | } | |
268 | ||
21026059 | 269 | /** |
7e9a8c2c SE |
270 | * batadv_tt_global_entry_release() - release tt_global_entry from lists and |
271 | * queue for free after rcu grace period | |
92dcdf09 SE |
272 | * @ref: kref pointer of the nc_node |
273 | */ | |
274 | static void batadv_tt_global_entry_release(struct kref *ref) | |
275 | { | |
276 | struct batadv_tt_global_entry *tt_global_entry; | |
277 | ||
278 | tt_global_entry = container_of(ref, struct batadv_tt_global_entry, | |
279 | common.refcount); | |
280 | ||
281 | batadv_tt_global_del_orig_list(tt_global_entry); | |
86452f81 SE |
282 | |
283 | call_rcu(&tt_global_entry->common.rcu, batadv_tt_global_entry_free_rcu); | |
92dcdf09 SE |
284 | } |
285 | ||
286 | /** | |
7e9a8c2c | 287 | * batadv_tt_global_entry_put() - decrement the tt_global_entry refcounter and |
5dafd8a6 | 288 | * possibly release it |
92dcdf09 | 289 | * @tt_global_entry: tt_global_entry to be free'd |
21026059 | 290 | */ |
32e72744 | 291 | void batadv_tt_global_entry_put(struct batadv_tt_global_entry *tt_global_entry) |
7683fdc1 | 292 | { |
92dcdf09 SE |
293 | kref_put(&tt_global_entry->common.refcount, |
294 | batadv_tt_global_entry_release); | |
db08e6e5 SW |
295 | } |
296 | ||
1d8ab8d3 | 297 | /** |
7e9a8c2c | 298 | * batadv_tt_global_hash_count() - count the number of orig entries |
d15cd622 | 299 | * @bat_priv: the bat priv with all the soft interface information |
1d8ab8d3 LL |
300 | * @addr: the mac address of the client to count entries for |
301 | * @vid: VLAN identifier | |
302 | * | |
62fe710f | 303 | * Return: the number of originators advertising the given address/data |
1d8ab8d3 LL |
304 | * (excluding ourself). |
305 | */ | |
306 | int batadv_tt_global_hash_count(struct batadv_priv *bat_priv, | |
6b5e971a | 307 | const u8 *addr, unsigned short vid) |
1d8ab8d3 LL |
308 | { |
309 | struct batadv_tt_global_entry *tt_global_entry; | |
310 | int count; | |
311 | ||
312 | tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid); | |
313 | if (!tt_global_entry) | |
314 | return 0; | |
315 | ||
316 | count = atomic_read(&tt_global_entry->orig_list_count); | |
5dafd8a6 | 317 | batadv_tt_global_entry_put(tt_global_entry); |
1d8ab8d3 LL |
318 | |
319 | return count; | |
320 | } | |
321 | ||
7ea7b4a1 | 322 | /** |
7e9a8c2c SE |
323 | * batadv_tt_local_size_mod() - change the size by v of the local table |
324 | * identified by vid | |
7ea7b4a1 AQ |
325 | * @bat_priv: the bat priv with all the soft interface information |
326 | * @vid: the VLAN identifier of the sub-table to change | |
327 | * @v: the amount to sum to the local table size | |
328 | */ | |
329 | static void batadv_tt_local_size_mod(struct batadv_priv *bat_priv, | |
330 | unsigned short vid, int v) | |
331 | { | |
332 | struct batadv_softif_vlan *vlan; | |
333 | ||
334 | vlan = batadv_softif_vlan_get(bat_priv, vid); | |
335 | if (!vlan) | |
336 | return; | |
337 | ||
338 | atomic_add(v, &vlan->tt.num_entries); | |
339 | ||
9c3bf081 | 340 | batadv_softif_vlan_put(vlan); |
7ea7b4a1 AQ |
341 | } |
342 | ||
343 | /** | |
7e9a8c2c SE |
344 | * batadv_tt_local_size_inc() - increase by one the local table size for the |
345 | * given vid | |
7ea7b4a1 AQ |
346 | * @bat_priv: the bat priv with all the soft interface information |
347 | * @vid: the VLAN identifier | |
348 | */ | |
349 | static void batadv_tt_local_size_inc(struct batadv_priv *bat_priv, | |
350 | unsigned short vid) | |
351 | { | |
352 | batadv_tt_local_size_mod(bat_priv, vid, 1); | |
353 | } | |
354 | ||
355 | /** | |
7e9a8c2c SE |
356 | * batadv_tt_local_size_dec() - decrease by one the local table size for the |
357 | * given vid | |
7ea7b4a1 AQ |
358 | * @bat_priv: the bat priv with all the soft interface information |
359 | * @vid: the VLAN identifier | |
360 | */ | |
361 | static void batadv_tt_local_size_dec(struct batadv_priv *bat_priv, | |
362 | unsigned short vid) | |
363 | { | |
364 | batadv_tt_local_size_mod(bat_priv, vid, -1); | |
365 | } | |
366 | ||
367 | /** | |
7e9a8c2c | 368 | * batadv_tt_global_size_mod() - change the size by v of the global table |
d15cd622 AQ |
369 | * for orig_node identified by vid |
370 | * @orig_node: the originator for which the table has to be modified | |
7ea7b4a1 AQ |
371 | * @vid: the VLAN identifier |
372 | * @v: the amount to sum to the global table size | |
373 | */ | |
374 | static void batadv_tt_global_size_mod(struct batadv_orig_node *orig_node, | |
375 | unsigned short vid, int v) | |
376 | { | |
377 | struct batadv_orig_node_vlan *vlan; | |
378 | ||
379 | vlan = batadv_orig_node_vlan_new(orig_node, vid); | |
380 | if (!vlan) | |
381 | return; | |
382 | ||
383 | if (atomic_add_return(v, &vlan->tt.num_entries) == 0) { | |
384 | spin_lock_bh(&orig_node->vlan_list_lock); | |
3db15209 SE |
385 | if (!hlist_unhashed(&vlan->list)) { |
386 | hlist_del_init_rcu(&vlan->list); | |
21754e25 | 387 | batadv_orig_node_vlan_put(vlan); |
3db15209 | 388 | } |
7ea7b4a1 | 389 | spin_unlock_bh(&orig_node->vlan_list_lock); |
7ea7b4a1 AQ |
390 | } |
391 | ||
21754e25 | 392 | batadv_orig_node_vlan_put(vlan); |
7ea7b4a1 AQ |
393 | } |
394 | ||
395 | /** | |
7e9a8c2c | 396 | * batadv_tt_global_size_inc() - increase by one the global table size for the |
7ea7b4a1 AQ |
397 | * given vid |
398 | * @orig_node: the originator which global table size has to be decreased | |
399 | * @vid: the vlan identifier | |
400 | */ | |
401 | static void batadv_tt_global_size_inc(struct batadv_orig_node *orig_node, | |
402 | unsigned short vid) | |
403 | { | |
404 | batadv_tt_global_size_mod(orig_node, vid, 1); | |
405 | } | |
406 | ||
407 | /** | |
7e9a8c2c | 408 | * batadv_tt_global_size_dec() - decrease by one the global table size for the |
7ea7b4a1 AQ |
409 | * given vid |
410 | * @orig_node: the originator which global table size has to be decreased | |
411 | * @vid: the vlan identifier | |
412 | */ | |
413 | static void batadv_tt_global_size_dec(struct batadv_orig_node *orig_node, | |
414 | unsigned short vid) | |
415 | { | |
416 | batadv_tt_global_size_mod(orig_node, vid, -1); | |
417 | } | |
418 | ||
86452f81 | 419 | /** |
7e9a8c2c | 420 | * batadv_tt_orig_list_entry_free_rcu() - free the orig_entry |
86452f81 SE |
421 | * @rcu: rcu pointer of the orig_entry |
422 | */ | |
423 | static void batadv_tt_orig_list_entry_free_rcu(struct rcu_head *rcu) | |
424 | { | |
425 | struct batadv_tt_orig_list_entry *orig_entry; | |
426 | ||
427 | orig_entry = container_of(rcu, struct batadv_tt_orig_list_entry, rcu); | |
428 | ||
429 | kmem_cache_free(batadv_tt_orig_cache, orig_entry); | |
430 | } | |
431 | ||
42eff6a6 | 432 | /** |
7e9a8c2c | 433 | * batadv_tt_orig_list_entry_release() - release tt orig entry from lists and |
42eff6a6 | 434 | * queue for free after rcu grace period |
6e8ef69d | 435 | * @ref: kref pointer of the tt orig entry |
42eff6a6 | 436 | */ |
6e8ef69d | 437 | static void batadv_tt_orig_list_entry_release(struct kref *ref) |
42eff6a6 | 438 | { |
6e8ef69d SE |
439 | struct batadv_tt_orig_list_entry *orig_entry; |
440 | ||
441 | orig_entry = container_of(ref, struct batadv_tt_orig_list_entry, | |
442 | refcount); | |
443 | ||
5d967310 | 444 | batadv_orig_node_put(orig_entry->orig_node); |
86452f81 | 445 | call_rcu(&orig_entry->rcu, batadv_tt_orig_list_entry_free_rcu); |
42eff6a6 SE |
446 | } |
447 | ||
6e8ef69d | 448 | /** |
7e9a8c2c | 449 | * batadv_tt_orig_list_entry_put() - decrement the tt orig entry refcounter and |
7e2366c6 | 450 | * possibly release it |
6e8ef69d SE |
451 | * @orig_entry: tt orig entry to be free'd |
452 | */ | |
a513088d | 453 | static void |
7e2366c6 | 454 | batadv_tt_orig_list_entry_put(struct batadv_tt_orig_list_entry *orig_entry) |
db08e6e5 | 455 | { |
6e8ef69d | 456 | kref_put(&orig_entry->refcount, batadv_tt_orig_list_entry_release); |
7683fdc1 AQ |
457 | } |
458 | ||
3abe4adb | 459 | /** |
7e9a8c2c | 460 | * batadv_tt_local_event() - store a local TT event (ADD/DEL) |
3abe4adb AQ |
461 | * @bat_priv: the bat priv with all the soft interface information |
462 | * @tt_local_entry: the TT entry involved in the event | |
463 | * @event_flags: flags to store in the event structure | |
464 | */ | |
56303d34 | 465 | static void batadv_tt_local_event(struct batadv_priv *bat_priv, |
3abe4adb | 466 | struct batadv_tt_local_entry *tt_local_entry, |
6b5e971a | 467 | u8 event_flags) |
a73105b8 | 468 | { |
56303d34 | 469 | struct batadv_tt_change_node *tt_change_node, *entry, *safe; |
3abe4adb | 470 | struct batadv_tt_common_entry *common = &tt_local_entry->common; |
6b5e971a | 471 | u8 flags = common->flags | event_flags; |
3b643de5 AQ |
472 | bool event_removed = false; |
473 | bool del_op_requested, del_op_entry; | |
a73105b8 | 474 | |
86452f81 | 475 | tt_change_node = kmem_cache_alloc(batadv_tt_change_cache, GFP_ATOMIC); |
a73105b8 AQ |
476 | if (!tt_change_node) |
477 | return; | |
478 | ||
ff66c975 | 479 | tt_change_node->change.flags = flags; |
ca663046 AQ |
480 | memset(tt_change_node->change.reserved, 0, |
481 | sizeof(tt_change_node->change.reserved)); | |
8fdd0153 | 482 | ether_addr_copy(tt_change_node->change.addr, common->addr); |
c018ad3d | 483 | tt_change_node->change.vid = htons(common->vid); |
a73105b8 | 484 | |
acd34afa | 485 | del_op_requested = flags & BATADV_TT_CLIENT_DEL; |
3b643de5 AQ |
486 | |
487 | /* check for ADD+DEL or DEL+ADD events */ | |
807736f6 SE |
488 | spin_lock_bh(&bat_priv->tt.changes_list_lock); |
489 | list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list, | |
3b643de5 | 490 | list) { |
3abe4adb | 491 | if (!batadv_compare_eth(entry->change.addr, common->addr)) |
3b643de5 AQ |
492 | continue; |
493 | ||
494 | /* DEL+ADD in the same orig interval have no effect and can be | |
495 | * removed to avoid silly behaviour on the receiver side. The | |
496 | * other way around (ADD+DEL) can happen in case of roaming of | |
497 | * a client still in the NEW state. Roaming of NEW clients is | |
498 | * now possible due to automatically recognition of "temporary" | |
499 | * clients | |
500 | */ | |
acd34afa | 501 | del_op_entry = entry->change.flags & BATADV_TT_CLIENT_DEL; |
3b643de5 AQ |
502 | if (!del_op_requested && del_op_entry) |
503 | goto del; | |
504 | if (del_op_requested && !del_op_entry) | |
505 | goto del; | |
3c4f7ab6 AQ |
506 | |
507 | /* this is a second add in the same originator interval. It | |
508 | * means that flags have been changed: update them! | |
509 | */ | |
510 | if (!del_op_requested && !del_op_entry) | |
511 | entry->change.flags = flags; | |
512 | ||
3b643de5 AQ |
513 | continue; |
514 | del: | |
515 | list_del(&entry->list); | |
86452f81 SE |
516 | kmem_cache_free(batadv_tt_change_cache, entry); |
517 | kmem_cache_free(batadv_tt_change_cache, tt_change_node); | |
3b643de5 AQ |
518 | event_removed = true; |
519 | goto unlock; | |
520 | } | |
521 | ||
a73105b8 | 522 | /* track the change in the OGMinterval list */ |
807736f6 | 523 | list_add_tail(&tt_change_node->list, &bat_priv->tt.changes_list); |
3b643de5 AQ |
524 | |
525 | unlock: | |
807736f6 | 526 | spin_unlock_bh(&bat_priv->tt.changes_list_lock); |
a73105b8 | 527 | |
3b643de5 | 528 | if (event_removed) |
807736f6 | 529 | atomic_dec(&bat_priv->tt.local_changes); |
3b643de5 | 530 | else |
807736f6 | 531 | atomic_inc(&bat_priv->tt.local_changes); |
a73105b8 AQ |
532 | } |
533 | ||
335fbe0f | 534 | /** |
7e9a8c2c | 535 | * batadv_tt_len() - compute length in bytes of given number of tt changes |
335fbe0f ML |
536 | * @changes_num: number of tt changes |
537 | * | |
62fe710f | 538 | * Return: computed length in bytes. |
335fbe0f ML |
539 | */ |
540 | static int batadv_tt_len(int changes_num) | |
a73105b8 | 541 | { |
335fbe0f | 542 | return changes_num * sizeof(struct batadv_tvlv_tt_change); |
a73105b8 AQ |
543 | } |
544 | ||
298e6e68 | 545 | /** |
7e9a8c2c | 546 | * batadv_tt_entries() - compute the number of entries fitting in tt_len bytes |
298e6e68 AQ |
547 | * @tt_len: available space |
548 | * | |
62fe710f | 549 | * Return: the number of entries. |
298e6e68 | 550 | */ |
6b5e971a | 551 | static u16 batadv_tt_entries(u16 tt_len) |
298e6e68 AQ |
552 | { |
553 | return tt_len / batadv_tt_len(1); | |
554 | } | |
555 | ||
a19d3d85 | 556 | /** |
7e9a8c2c SE |
557 | * batadv_tt_local_table_transmit_size() - calculates the local translation |
558 | * table size when transmitted over the air | |
a19d3d85 ML |
559 | * @bat_priv: the bat priv with all the soft interface information |
560 | * | |
62fe710f | 561 | * Return: local translation table size in bytes. |
a19d3d85 ML |
562 | */ |
563 | static int batadv_tt_local_table_transmit_size(struct batadv_priv *bat_priv) | |
564 | { | |
4f248cff SE |
565 | u16 num_vlan = 0; |
566 | u16 tt_local_entries = 0; | |
a19d3d85 ML |
567 | struct batadv_softif_vlan *vlan; |
568 | int hdr_size; | |
569 | ||
570 | rcu_read_lock(); | |
571 | hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) { | |
572 | num_vlan++; | |
573 | tt_local_entries += atomic_read(&vlan->tt.num_entries); | |
574 | } | |
575 | rcu_read_unlock(); | |
576 | ||
577 | /* header size of tvlv encapsulated tt response payload */ | |
578 | hdr_size = sizeof(struct batadv_unicast_tvlv_packet); | |
579 | hdr_size += sizeof(struct batadv_tvlv_hdr); | |
580 | hdr_size += sizeof(struct batadv_tvlv_tt_data); | |
581 | hdr_size += num_vlan * sizeof(struct batadv_tvlv_tt_vlan_data); | |
582 | ||
583 | return hdr_size + batadv_tt_len(tt_local_entries); | |
584 | } | |
585 | ||
56303d34 | 586 | static int batadv_tt_local_init(struct batadv_priv *bat_priv) |
c6c8fea2 | 587 | { |
807736f6 | 588 | if (bat_priv->tt.local_hash) |
5346c35e | 589 | return 0; |
c6c8fea2 | 590 | |
807736f6 | 591 | bat_priv->tt.local_hash = batadv_hash_new(1024); |
c6c8fea2 | 592 | |
807736f6 | 593 | if (!bat_priv->tt.local_hash) |
5346c35e | 594 | return -ENOMEM; |
c6c8fea2 | 595 | |
dec05074 AQ |
596 | batadv_hash_set_lock_class(bat_priv->tt.local_hash, |
597 | &batadv_tt_local_hash_lock_class_key); | |
598 | ||
5346c35e | 599 | return 0; |
c6c8fea2 SE |
600 | } |
601 | ||
068ee6e2 AQ |
602 | static void batadv_tt_global_free(struct batadv_priv *bat_priv, |
603 | struct batadv_tt_global_entry *tt_global, | |
604 | const char *message) | |
605 | { | |
f131a568 SE |
606 | struct batadv_tt_global_entry *tt_removed_entry; |
607 | struct hlist_node *tt_removed_node; | |
608 | ||
068ee6e2 | 609 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
16052789 AQ |
610 | "Deleting global tt entry %pM (vid: %d): %s\n", |
611 | tt_global->common.addr, | |
f7a2bd65 | 612 | batadv_print_vid(tt_global->common.vid), message); |
068ee6e2 | 613 | |
f131a568 SE |
614 | tt_removed_node = batadv_hash_remove(bat_priv->tt.global_hash, |
615 | batadv_compare_tt, | |
616 | batadv_choose_tt, | |
617 | &tt_global->common); | |
618 | if (!tt_removed_node) | |
619 | return; | |
620 | ||
621 | /* drop reference of remove hash entry */ | |
622 | tt_removed_entry = hlist_entry(tt_removed_node, | |
623 | struct batadv_tt_global_entry, | |
624 | common.hash_entry); | |
625 | batadv_tt_global_entry_put(tt_removed_entry); | |
068ee6e2 AQ |
626 | } |
627 | ||
c018ad3d | 628 | /** |
7e9a8c2c | 629 | * batadv_tt_local_add() - add a new client to the local table or update an |
c018ad3d AQ |
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) | |
9464d071 AQ |
636 | * @mark: the value contained in the skb->mark field of the received packet (if |
637 | * any) | |
a19d3d85 | 638 | * |
62fe710f | 639 | * Return: true if the client was successfully added, false otherwise. |
c018ad3d | 640 | */ |
6b5e971a SE |
641 | bool batadv_tt_local_add(struct net_device *soft_iface, const u8 *addr, |
642 | unsigned short vid, int ifindex, u32 mark) | |
c6c8fea2 | 643 | { |
56303d34 | 644 | struct batadv_priv *bat_priv = netdev_priv(soft_iface); |
170173bf | 645 | struct batadv_tt_local_entry *tt_local; |
c5caf4ef | 646 | struct batadv_tt_global_entry *tt_global = NULL; |
2cd45a06 | 647 | struct net *net = dev_net(soft_iface); |
35df3b29 | 648 | struct batadv_softif_vlan *vlan; |
0c69aecc | 649 | struct net_device *in_dev = NULL; |
10b1bbb4 | 650 | struct batadv_hard_iface *in_hardif = NULL; |
db08e6e5 | 651 | struct hlist_head *head; |
56303d34 | 652 | struct batadv_tt_orig_list_entry *orig_entry; |
a19d3d85 | 653 | int hash_added, table_size, packet_size_max; |
4f248cff SE |
654 | bool ret = false; |
655 | bool roamed_back = false; | |
6b5e971a SE |
656 | u8 remote_flags; |
657 | u32 match_mark; | |
c6c8fea2 | 658 | |
0c69aecc | 659 | if (ifindex != BATADV_NULL_IFINDEX) |
2cd45a06 | 660 | in_dev = dev_get_by_index(net, ifindex); |
0c69aecc | 661 | |
10b1bbb4 SE |
662 | if (in_dev) |
663 | in_hardif = batadv_hardif_get_by_netdev(in_dev); | |
664 | ||
c018ad3d | 665 | tt_local = batadv_tt_local_hash_find(bat_priv, addr, vid); |
c5caf4ef LL |
666 | |
667 | if (!is_multicast_ether_addr(addr)) | |
668 | tt_global = batadv_tt_global_hash_find(bat_priv, addr, vid); | |
c6c8fea2 | 669 | |
47c94655 AQ |
670 | if (tt_local) { |
671 | tt_local->last_seen = jiffies; | |
068ee6e2 AQ |
672 | if (tt_local->common.flags & BATADV_TT_CLIENT_PENDING) { |
673 | batadv_dbg(BATADV_DBG_TT, bat_priv, | |
16052789 | 674 | "Re-adding pending client %pM (vid: %d)\n", |
f7a2bd65 | 675 | addr, batadv_print_vid(vid)); |
068ee6e2 AQ |
676 | /* whatever the reason why the PENDING flag was set, |
677 | * this is a client which was enqueued to be removed in | |
678 | * this orig_interval. Since it popped up again, the | |
679 | * flag can be reset like it was never enqueued | |
680 | */ | |
681 | tt_local->common.flags &= ~BATADV_TT_CLIENT_PENDING; | |
682 | goto add_event; | |
683 | } | |
684 | ||
685 | if (tt_local->common.flags & BATADV_TT_CLIENT_ROAM) { | |
686 | batadv_dbg(BATADV_DBG_TT, bat_priv, | |
16052789 | 687 | "Roaming client %pM (vid: %d) came back to its original location\n", |
f7a2bd65 | 688 | addr, batadv_print_vid(vid)); |
068ee6e2 AQ |
689 | /* the ROAM flag is set because this client roamed away |
690 | * and the node got a roaming_advertisement message. Now | |
691 | * that the client popped up again at its original | |
692 | * location such flag can be unset | |
693 | */ | |
694 | tt_local->common.flags &= ~BATADV_TT_CLIENT_ROAM; | |
695 | roamed_back = true; | |
696 | } | |
697 | goto check_roaming; | |
c6c8fea2 SE |
698 | } |
699 | ||
a19d3d85 ML |
700 | /* Ignore the client if we cannot send it in a full table response. */ |
701 | table_size = batadv_tt_local_table_transmit_size(bat_priv); | |
702 | table_size += batadv_tt_len(1); | |
703 | packet_size_max = atomic_read(&bat_priv->packet_size_max); | |
704 | if (table_size > packet_size_max) { | |
705 | net_ratelimited_function(batadv_info, soft_iface, | |
706 | "Local translation table size (%i) exceeds maximum packet size (%i); Ignoring new local tt entry: %pM\n", | |
707 | table_size, packet_size_max, addr); | |
708 | goto out; | |
709 | } | |
710 | ||
86452f81 | 711 | tt_local = kmem_cache_alloc(batadv_tl_cache, GFP_ATOMIC); |
47c94655 | 712 | if (!tt_local) |
7683fdc1 | 713 | goto out; |
a73105b8 | 714 | |
35df3b29 AQ |
715 | /* increase the refcounter of the related vlan */ |
716 | vlan = batadv_softif_vlan_get(bat_priv, vid); | |
0b3dd7df SW |
717 | if (!vlan) { |
718 | net_ratelimited_function(batadv_info, soft_iface, | |
719 | "adding TT local entry %pM to non-existent VLAN %d\n", | |
f7a2bd65 | 720 | addr, batadv_print_vid(vid)); |
86452f81 | 721 | kmem_cache_free(batadv_tl_cache, tt_local); |
fd7dec25 | 722 | tt_local = NULL; |
354136bc | 723 | goto out; |
fd7dec25 | 724 | } |
35df3b29 | 725 | |
39c75a51 | 726 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
16052789 | 727 | "Creating new local tt entry: %pM (vid: %d, ttvn: %d)\n", |
f7a2bd65 | 728 | addr, batadv_print_vid(vid), |
6b5e971a | 729 | (u8)atomic_read(&bat_priv->tt.vn)); |
c6c8fea2 | 730 | |
8fdd0153 | 731 | ether_addr_copy(tt_local->common.addr, addr); |
8425ec6a AQ |
732 | /* The local entry has to be marked as NEW to avoid to send it in |
733 | * a full table response going out before the next ttvn increment | |
734 | * (consistency check) | |
735 | */ | |
736 | tt_local->common.flags = BATADV_TT_CLIENT_NEW; | |
c018ad3d | 737 | tt_local->common.vid = vid; |
10b1bbb4 | 738 | if (batadv_is_wifi_hardif(in_hardif)) |
47c94655 | 739 | tt_local->common.flags |= BATADV_TT_CLIENT_WIFI; |
92dcdf09 | 740 | kref_init(&tt_local->common.refcount); |
47c94655 AQ |
741 | tt_local->last_seen = jiffies; |
742 | tt_local->common.added_at = tt_local->last_seen; | |
a33d970d | 743 | tt_local->vlan = vlan; |
c6c8fea2 | 744 | |
c5caf4ef LL |
745 | /* the batman interface mac and multicast addresses should never be |
746 | * purged | |
747 | */ | |
748 | if (batadv_compare_eth(addr, soft_iface->dev_addr) || | |
749 | is_multicast_ether_addr(addr)) | |
47c94655 | 750 | tt_local->common.flags |= BATADV_TT_CLIENT_NOPURGE; |
c6c8fea2 | 751 | |
e3387b26 | 752 | kref_get(&tt_local->common.refcount); |
807736f6 | 753 | hash_added = batadv_hash_add(bat_priv->tt.local_hash, batadv_compare_tt, |
c018ad3d | 754 | batadv_choose_tt, &tt_local->common, |
47c94655 | 755 | &tt_local->common.hash_entry); |
80b3f58c SW |
756 | |
757 | if (unlikely(hash_added != 0)) { | |
758 | /* remove the reference for the hash */ | |
95c0db90 | 759 | batadv_tt_local_entry_put(tt_local); |
80b3f58c SW |
760 | goto out; |
761 | } | |
762 | ||
068ee6e2 | 763 | add_event: |
3abe4adb | 764 | batadv_tt_local_event(bat_priv, tt_local, BATADV_NO_FLAGS); |
ff66c975 | 765 | |
068ee6e2 AQ |
766 | check_roaming: |
767 | /* Check whether it is a roaming, but don't do anything if the roaming | |
768 | * process has already been handled | |
769 | */ | |
770 | if (tt_global && !(tt_global->common.flags & BATADV_TT_CLIENT_ROAM)) { | |
db08e6e5 | 771 | /* These node are probably going to update their tt table */ |
47c94655 | 772 | head = &tt_global->orig_list; |
db08e6e5 | 773 | rcu_read_lock(); |
b67bfe0d | 774 | hlist_for_each_entry_rcu(orig_entry, head, list) { |
47c94655 | 775 | batadv_send_roam_adv(bat_priv, tt_global->common.addr, |
c018ad3d | 776 | tt_global->common.vid, |
a513088d | 777 | orig_entry->orig_node); |
db08e6e5 SW |
778 | } |
779 | rcu_read_unlock(); | |
068ee6e2 AQ |
780 | if (roamed_back) { |
781 | batadv_tt_global_free(bat_priv, tt_global, | |
782 | "Roaming canceled"); | |
783 | tt_global = NULL; | |
784 | } else { | |
785 | /* The global entry has to be marked as ROAMING and | |
786 | * has to be kept for consistency purpose | |
787 | */ | |
788 | tt_global->common.flags |= BATADV_TT_CLIENT_ROAM; | |
789 | tt_global->roam_at = jiffies; | |
790 | } | |
7683fdc1 | 791 | } |
068ee6e2 | 792 | |
3c4f7ab6 AQ |
793 | /* store the current remote flags before altering them. This helps |
794 | * understanding is flags are changing or not | |
795 | */ | |
796 | remote_flags = tt_local->common.flags & BATADV_TT_REMOTE_MASK; | |
797 | ||
10b1bbb4 | 798 | if (batadv_is_wifi_hardif(in_hardif)) |
3c4f7ab6 AQ |
799 | tt_local->common.flags |= BATADV_TT_CLIENT_WIFI; |
800 | else | |
801 | tt_local->common.flags &= ~BATADV_TT_CLIENT_WIFI; | |
a19d3d85 | 802 | |
9464d071 AQ |
803 | /* check the mark in the skb: if it's equal to the configured |
804 | * isolation_mark, it means the packet is coming from an isolated | |
805 | * non-mesh client | |
806 | */ | |
807 | match_mark = (mark & bat_priv->isolation_mark_mask); | |
808 | if (bat_priv->isolation_mark_mask && | |
809 | match_mark == bat_priv->isolation_mark) | |
810 | tt_local->common.flags |= BATADV_TT_CLIENT_ISOLA; | |
811 | else | |
812 | tt_local->common.flags &= ~BATADV_TT_CLIENT_ISOLA; | |
813 | ||
3c4f7ab6 AQ |
814 | /* if any "dynamic" flag has been modified, resend an ADD event for this |
815 | * entry so that all the nodes can get the new flags | |
816 | */ | |
817 | if (remote_flags ^ (tt_local->common.flags & BATADV_TT_REMOTE_MASK)) | |
818 | batadv_tt_local_event(bat_priv, tt_local, BATADV_NO_FLAGS); | |
819 | ||
820 | ret = true; | |
7683fdc1 | 821 | out: |
10b1bbb4 SE |
822 | if (in_hardif) |
823 | batadv_hardif_put(in_hardif); | |
0c69aecc AQ |
824 | if (in_dev) |
825 | dev_put(in_dev); | |
47c94655 | 826 | if (tt_local) |
95c0db90 | 827 | batadv_tt_local_entry_put(tt_local); |
47c94655 | 828 | if (tt_global) |
5dafd8a6 | 829 | batadv_tt_global_entry_put(tt_global); |
a19d3d85 | 830 | return ret; |
c6c8fea2 SE |
831 | } |
832 | ||
7ea7b4a1 | 833 | /** |
7e9a8c2c | 834 | * batadv_tt_prepare_tvlv_global_data() - prepare the TVLV TT header to send |
7ea7b4a1 AQ |
835 | * within a TT Response directed to another node |
836 | * @orig_node: originator for which the TT data has to be prepared | |
837 | * @tt_data: uninitialised pointer to the address of the TVLV buffer | |
838 | * @tt_change: uninitialised pointer to the address of the area where the TT | |
839 | * changed can be stored | |
840 | * @tt_len: pointer to the length to reserve to the tt_change. if -1 this | |
841 | * function reserves the amount of space needed to send the entire global TT | |
842 | * table. In case of success the value is updated with the real amount of | |
843 | * reserved bytes | |
7ea7b4a1 AQ |
844 | * Allocate the needed amount of memory for the entire TT TVLV and write its |
845 | * header made up by one tvlv_tt_data object and a series of tvlv_tt_vlan_data | |
846 | * objects, one per active VLAN served by the originator node. | |
847 | * | |
62fe710f | 848 | * Return: the size of the allocated buffer or 0 in case of failure. |
7ea7b4a1 | 849 | */ |
6b5e971a | 850 | static u16 |
7ea7b4a1 AQ |
851 | batadv_tt_prepare_tvlv_global_data(struct batadv_orig_node *orig_node, |
852 | struct batadv_tvlv_tt_data **tt_data, | |
853 | struct batadv_tvlv_tt_change **tt_change, | |
6b5e971a | 854 | s32 *tt_len) |
7ea7b4a1 | 855 | { |
4f248cff SE |
856 | u16 num_vlan = 0; |
857 | u16 num_entries = 0; | |
858 | u16 change_offset; | |
859 | u16 tvlv_len; | |
7ea7b4a1 AQ |
860 | struct batadv_tvlv_tt_vlan_data *tt_vlan; |
861 | struct batadv_orig_node_vlan *vlan; | |
6b5e971a | 862 | u8 *tt_change_ptr; |
7ea7b4a1 | 863 | |
8ba0f9bd | 864 | spin_lock_bh(&orig_node->vlan_list_lock); |
d0fa4f3f | 865 | hlist_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) { |
7ea7b4a1 AQ |
866 | num_vlan++; |
867 | num_entries += atomic_read(&vlan->tt.num_entries); | |
868 | } | |
869 | ||
870 | change_offset = sizeof(**tt_data); | |
871 | change_offset += num_vlan * sizeof(*tt_vlan); | |
872 | ||
873 | /* if tt_len is negative, allocate the space needed by the full table */ | |
874 | if (*tt_len < 0) | |
875 | *tt_len = batadv_tt_len(num_entries); | |
876 | ||
877 | tvlv_len = *tt_len; | |
878 | tvlv_len += change_offset; | |
879 | ||
880 | *tt_data = kmalloc(tvlv_len, GFP_ATOMIC); | |
881 | if (!*tt_data) { | |
882 | *tt_len = 0; | |
883 | goto out; | |
884 | } | |
885 | ||
886 | (*tt_data)->flags = BATADV_NO_FLAGS; | |
887 | (*tt_data)->ttvn = atomic_read(&orig_node->last_ttvn); | |
888 | (*tt_data)->num_vlan = htons(num_vlan); | |
889 | ||
890 | tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(*tt_data + 1); | |
d0fa4f3f | 891 | hlist_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) { |
7ea7b4a1 AQ |
892 | tt_vlan->vid = htons(vlan->vid); |
893 | tt_vlan->crc = htonl(vlan->tt.crc); | |
894 | ||
895 | tt_vlan++; | |
896 | } | |
897 | ||
6b5e971a | 898 | tt_change_ptr = (u8 *)*tt_data + change_offset; |
7ea7b4a1 AQ |
899 | *tt_change = (struct batadv_tvlv_tt_change *)tt_change_ptr; |
900 | ||
901 | out: | |
8ba0f9bd | 902 | spin_unlock_bh(&orig_node->vlan_list_lock); |
7ea7b4a1 AQ |
903 | return tvlv_len; |
904 | } | |
905 | ||
906 | /** | |
7e9a8c2c SE |
907 | * batadv_tt_prepare_tvlv_local_data() - allocate and prepare the TT TVLV for |
908 | * this node | |
7ea7b4a1 AQ |
909 | * @bat_priv: the bat priv with all the soft interface information |
910 | * @tt_data: uninitialised pointer to the address of the TVLV buffer | |
911 | * @tt_change: uninitialised pointer to the address of the area where the TT | |
912 | * changes can be stored | |
913 | * @tt_len: pointer to the length to reserve to the tt_change. if -1 this | |
914 | * function reserves the amount of space needed to send the entire local TT | |
915 | * table. In case of success the value is updated with the real amount of | |
916 | * reserved bytes | |
917 | * | |
918 | * Allocate the needed amount of memory for the entire TT TVLV and write its | |
919 | * header made up by one tvlv_tt_data object and a series of tvlv_tt_vlan_data | |
920 | * objects, one per active VLAN. | |
921 | * | |
62fe710f | 922 | * Return: the size of the allocated buffer or 0 in case of failure. |
7ea7b4a1 | 923 | */ |
6b5e971a | 924 | static u16 |
7ea7b4a1 AQ |
925 | batadv_tt_prepare_tvlv_local_data(struct batadv_priv *bat_priv, |
926 | struct batadv_tvlv_tt_data **tt_data, | |
927 | struct batadv_tvlv_tt_change **tt_change, | |
6b5e971a | 928 | s32 *tt_len) |
7ea7b4a1 AQ |
929 | { |
930 | struct batadv_tvlv_tt_vlan_data *tt_vlan; | |
931 | struct batadv_softif_vlan *vlan; | |
4f248cff | 932 | u16 num_vlan = 0; |
16116dac ML |
933 | u16 vlan_entries = 0; |
934 | u16 total_entries = 0; | |
4f248cff | 935 | u16 tvlv_len; |
6b5e971a | 936 | u8 *tt_change_ptr; |
7ea7b4a1 AQ |
937 | int change_offset; |
938 | ||
8ba0f9bd | 939 | spin_lock_bh(&bat_priv->softif_vlan_list_lock); |
7ea7b4a1 | 940 | hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) { |
16116dac ML |
941 | vlan_entries = atomic_read(&vlan->tt.num_entries); |
942 | if (vlan_entries < 1) | |
943 | continue; | |
944 | ||
7ea7b4a1 | 945 | num_vlan++; |
16116dac | 946 | total_entries += vlan_entries; |
7ea7b4a1 AQ |
947 | } |
948 | ||
949 | change_offset = sizeof(**tt_data); | |
950 | change_offset += num_vlan * sizeof(*tt_vlan); | |
951 | ||
952 | /* if tt_len is negative, allocate the space needed by the full table */ | |
953 | if (*tt_len < 0) | |
16116dac | 954 | *tt_len = batadv_tt_len(total_entries); |
7ea7b4a1 AQ |
955 | |
956 | tvlv_len = *tt_len; | |
957 | tvlv_len += change_offset; | |
958 | ||
959 | *tt_data = kmalloc(tvlv_len, GFP_ATOMIC); | |
960 | if (!*tt_data) { | |
961 | tvlv_len = 0; | |
962 | goto out; | |
963 | } | |
964 | ||
965 | (*tt_data)->flags = BATADV_NO_FLAGS; | |
966 | (*tt_data)->ttvn = atomic_read(&bat_priv->tt.vn); | |
967 | (*tt_data)->num_vlan = htons(num_vlan); | |
968 | ||
969 | tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(*tt_data + 1); | |
970 | hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) { | |
16116dac ML |
971 | vlan_entries = atomic_read(&vlan->tt.num_entries); |
972 | if (vlan_entries < 1) | |
973 | continue; | |
974 | ||
7ea7b4a1 AQ |
975 | tt_vlan->vid = htons(vlan->vid); |
976 | tt_vlan->crc = htonl(vlan->tt.crc); | |
977 | ||
978 | tt_vlan++; | |
979 | } | |
980 | ||
6b5e971a | 981 | tt_change_ptr = (u8 *)*tt_data + change_offset; |
7ea7b4a1 AQ |
982 | *tt_change = (struct batadv_tvlv_tt_change *)tt_change_ptr; |
983 | ||
984 | out: | |
8ba0f9bd | 985 | spin_unlock_bh(&bat_priv->softif_vlan_list_lock); |
7ea7b4a1 AQ |
986 | return tvlv_len; |
987 | } | |
988 | ||
e1bf0c14 | 989 | /** |
7e9a8c2c SE |
990 | * batadv_tt_tvlv_container_update() - update the translation table tvlv |
991 | * container after local tt changes have been committed | |
e1bf0c14 ML |
992 | * @bat_priv: the bat priv with all the soft interface information |
993 | */ | |
994 | static void batadv_tt_tvlv_container_update(struct batadv_priv *bat_priv) | |
be9aa4c1 | 995 | { |
e1bf0c14 ML |
996 | struct batadv_tt_change_node *entry, *safe; |
997 | struct batadv_tvlv_tt_data *tt_data; | |
998 | struct batadv_tvlv_tt_change *tt_change; | |
7ea7b4a1 | 999 | int tt_diff_len, tt_change_len = 0; |
4f248cff SE |
1000 | int tt_diff_entries_num = 0; |
1001 | int tt_diff_entries_count = 0; | |
6b5e971a | 1002 | u16 tvlv_len; |
be9aa4c1 | 1003 | |
7ea7b4a1 AQ |
1004 | tt_diff_entries_num = atomic_read(&bat_priv->tt.local_changes); |
1005 | tt_diff_len = batadv_tt_len(tt_diff_entries_num); | |
be9aa4c1 ML |
1006 | |
1007 | /* if we have too many changes for one packet don't send any | |
1008 | * and wait for the tt table request which will be fragmented | |
1009 | */ | |
e1bf0c14 ML |
1010 | if (tt_diff_len > bat_priv->soft_iface->mtu) |
1011 | tt_diff_len = 0; | |
be9aa4c1 | 1012 | |
7ea7b4a1 AQ |
1013 | tvlv_len = batadv_tt_prepare_tvlv_local_data(bat_priv, &tt_data, |
1014 | &tt_change, &tt_diff_len); | |
1015 | if (!tvlv_len) | |
e1bf0c14 | 1016 | return; |
be9aa4c1 | 1017 | |
e1bf0c14 | 1018 | tt_data->flags = BATADV_TT_OGM_DIFF; |
c6c8fea2 | 1019 | |
e1bf0c14 ML |
1020 | if (tt_diff_len == 0) |
1021 | goto container_register; | |
be9aa4c1 | 1022 | |
807736f6 SE |
1023 | spin_lock_bh(&bat_priv->tt.changes_list_lock); |
1024 | atomic_set(&bat_priv->tt.local_changes, 0); | |
c6c8fea2 | 1025 | |
807736f6 | 1026 | list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list, |
7c64fd98 | 1027 | list) { |
e1bf0c14 ML |
1028 | if (tt_diff_entries_count < tt_diff_entries_num) { |
1029 | memcpy(tt_change + tt_diff_entries_count, | |
1030 | &entry->change, | |
1031 | sizeof(struct batadv_tvlv_tt_change)); | |
1032 | tt_diff_entries_count++; | |
c6c8fea2 | 1033 | } |
a73105b8 | 1034 | list_del(&entry->list); |
86452f81 | 1035 | kmem_cache_free(batadv_tt_change_cache, entry); |
c6c8fea2 | 1036 | } |
807736f6 | 1037 | spin_unlock_bh(&bat_priv->tt.changes_list_lock); |
a73105b8 AQ |
1038 | |
1039 | /* Keep the buffer for possible tt_request */ | |
807736f6 SE |
1040 | spin_lock_bh(&bat_priv->tt.last_changeset_lock); |
1041 | kfree(bat_priv->tt.last_changeset); | |
1042 | bat_priv->tt.last_changeset_len = 0; | |
1043 | bat_priv->tt.last_changeset = NULL; | |
e1bf0c14 | 1044 | tt_change_len = batadv_tt_len(tt_diff_entries_count); |
be9aa4c1 | 1045 | /* check whether this new OGM has no changes due to size problems */ |
e1bf0c14 | 1046 | if (tt_diff_entries_count > 0) { |
be9aa4c1 | 1047 | /* if kmalloc() fails we will reply with the full table |
a73105b8 AQ |
1048 | * instead of providing the diff |
1049 | */ | |
e1bf0c14 | 1050 | bat_priv->tt.last_changeset = kzalloc(tt_diff_len, GFP_ATOMIC); |
807736f6 | 1051 | if (bat_priv->tt.last_changeset) { |
e1bf0c14 ML |
1052 | memcpy(bat_priv->tt.last_changeset, |
1053 | tt_change, tt_change_len); | |
1054 | bat_priv->tt.last_changeset_len = tt_diff_len; | |
a73105b8 AQ |
1055 | } |
1056 | } | |
807736f6 | 1057 | spin_unlock_bh(&bat_priv->tt.last_changeset_lock); |
c6c8fea2 | 1058 | |
e1bf0c14 ML |
1059 | container_register: |
1060 | batadv_tvlv_container_register(bat_priv, BATADV_TVLV_TT, 1, tt_data, | |
7ea7b4a1 | 1061 | tvlv_len); |
e1bf0c14 | 1062 | kfree(tt_data); |
c6c8fea2 SE |
1063 | } |
1064 | ||
dc1cbd14 | 1065 | #ifdef CONFIG_BATMAN_ADV_DEBUGFS |
ff15c27c SE |
1066 | |
1067 | /** | |
1068 | * batadv_tt_local_seq_print_text() - Print the local tt table in a seq file | |
1069 | * @seq: seq file to print on | |
1070 | * @offset: not used | |
1071 | * | |
1072 | * Return: always 0 | |
1073 | */ | |
08c36d3e | 1074 | int batadv_tt_local_seq_print_text(struct seq_file *seq, void *offset) |
c6c8fea2 SE |
1075 | { |
1076 | struct net_device *net_dev = (struct net_device *)seq->private; | |
56303d34 | 1077 | struct batadv_priv *bat_priv = netdev_priv(net_dev); |
807736f6 | 1078 | struct batadv_hashtable *hash = bat_priv->tt.local_hash; |
56303d34 | 1079 | struct batadv_tt_common_entry *tt_common_entry; |
85766a82 | 1080 | struct batadv_tt_local_entry *tt_local; |
56303d34 | 1081 | struct batadv_hard_iface *primary_if; |
c6c8fea2 | 1082 | struct hlist_head *head; |
6b5e971a | 1083 | u32 i; |
85766a82 AQ |
1084 | int last_seen_secs; |
1085 | int last_seen_msecs; | |
1086 | unsigned long last_seen_jiffies; | |
1087 | bool no_purge; | |
6b5e971a | 1088 | u16 np_flag = BATADV_TT_CLIENT_NOPURGE; |
c6c8fea2 | 1089 | |
30da63a6 ML |
1090 | primary_if = batadv_seq_print_text_primary_if_get(seq); |
1091 | if (!primary_if) | |
32ae9b22 | 1092 | goto out; |
c6c8fea2 | 1093 | |
86ceb360 | 1094 | seq_printf(seq, |
7ea7b4a1 | 1095 | "Locally retrieved addresses (from %s) announced via TT (TTVN: %u):\n", |
6b5e971a | 1096 | net_dev->name, (u8)atomic_read(&bat_priv->tt.vn)); |
925a6f37 AQ |
1097 | seq_puts(seq, |
1098 | " Client VID Flags Last seen (CRC )\n"); | |
c6c8fea2 | 1099 | |
c6c8fea2 SE |
1100 | for (i = 0; i < hash->size; i++) { |
1101 | head = &hash->table[i]; | |
1102 | ||
7aadf889 | 1103 | rcu_read_lock(); |
b67bfe0d | 1104 | hlist_for_each_entry_rcu(tt_common_entry, |
7aadf889 | 1105 | head, hash_entry) { |
85766a82 AQ |
1106 | tt_local = container_of(tt_common_entry, |
1107 | struct batadv_tt_local_entry, | |
1108 | common); | |
1109 | last_seen_jiffies = jiffies - tt_local->last_seen; | |
1110 | last_seen_msecs = jiffies_to_msecs(last_seen_jiffies); | |
1111 | last_seen_secs = last_seen_msecs / 1000; | |
1112 | last_seen_msecs = last_seen_msecs % 1000; | |
1113 | ||
1114 | no_purge = tt_common_entry->flags & np_flag; | |
7ea7b4a1 | 1115 | seq_printf(seq, |
dd24ddb2 | 1116 | " * %pM %4i [%c%c%c%c%c%c] %3u.%03u (%#.8x)\n", |
7c64fd98 | 1117 | tt_common_entry->addr, |
f7a2bd65 | 1118 | batadv_print_vid(tt_common_entry->vid), |
a2f2b6cd SE |
1119 | ((tt_common_entry->flags & |
1120 | BATADV_TT_CLIENT_ROAM) ? 'R' : '.'), | |
85766a82 | 1121 | no_purge ? 'P' : '.', |
a2f2b6cd SE |
1122 | ((tt_common_entry->flags & |
1123 | BATADV_TT_CLIENT_NEW) ? 'N' : '.'), | |
1124 | ((tt_common_entry->flags & | |
1125 | BATADV_TT_CLIENT_PENDING) ? 'X' : '.'), | |
1126 | ((tt_common_entry->flags & | |
1127 | BATADV_TT_CLIENT_WIFI) ? 'W' : '.'), | |
1128 | ((tt_common_entry->flags & | |
1129 | BATADV_TT_CLIENT_ISOLA) ? 'I' : '.'), | |
a7966d90 | 1130 | no_purge ? 0 : last_seen_secs, |
7ea7b4a1 | 1131 | no_purge ? 0 : last_seen_msecs, |
a33d970d | 1132 | tt_local->vlan->tt.crc); |
c6c8fea2 | 1133 | } |
7aadf889 | 1134 | rcu_read_unlock(); |
c6c8fea2 | 1135 | } |
32ae9b22 ML |
1136 | out: |
1137 | if (primary_if) | |
82047ad7 | 1138 | batadv_hardif_put(primary_if); |
30da63a6 | 1139 | return 0; |
c6c8fea2 | 1140 | } |
dc1cbd14 | 1141 | #endif |
c6c8fea2 | 1142 | |
d34f0550 | 1143 | /** |
7e9a8c2c | 1144 | * batadv_tt_local_dump_entry() - Dump one TT local entry into a message |
d34f0550 MS |
1145 | * @msg :Netlink message to dump into |
1146 | * @portid: Port making netlink request | |
6b7b40aa | 1147 | * @cb: Control block containing additional options |
d34f0550 MS |
1148 | * @bat_priv: The bat priv with all the soft interface information |
1149 | * @common: tt local & tt global common data | |
1150 | * | |
1151 | * Return: Error code, or 0 on success | |
1152 | */ | |
1153 | static int | |
6b7b40aa SE |
1154 | batadv_tt_local_dump_entry(struct sk_buff *msg, u32 portid, |
1155 | struct netlink_callback *cb, | |
d34f0550 MS |
1156 | struct batadv_priv *bat_priv, |
1157 | struct batadv_tt_common_entry *common) | |
1158 | { | |
1159 | void *hdr; | |
1160 | struct batadv_softif_vlan *vlan; | |
1161 | struct batadv_tt_local_entry *local; | |
1162 | unsigned int last_seen_msecs; | |
1163 | u32 crc; | |
1164 | ||
1165 | local = container_of(common, struct batadv_tt_local_entry, common); | |
1166 | last_seen_msecs = jiffies_to_msecs(jiffies - local->last_seen); | |
1167 | ||
1168 | vlan = batadv_softif_vlan_get(bat_priv, common->vid); | |
1169 | if (!vlan) | |
1170 | return 0; | |
1171 | ||
1172 | crc = vlan->tt.crc; | |
1173 | ||
1174 | batadv_softif_vlan_put(vlan); | |
1175 | ||
6b7b40aa SE |
1176 | hdr = genlmsg_put(msg, portid, cb->nlh->nlmsg_seq, |
1177 | &batadv_netlink_family, NLM_F_MULTI, | |
d34f0550 MS |
1178 | BATADV_CMD_GET_TRANSTABLE_LOCAL); |
1179 | if (!hdr) | |
1180 | return -ENOBUFS; | |
1181 | ||
6b7b40aa SE |
1182 | genl_dump_check_consistent(cb, hdr); |
1183 | ||
d34f0550 MS |
1184 | if (nla_put(msg, BATADV_ATTR_TT_ADDRESS, ETH_ALEN, common->addr) || |
1185 | nla_put_u32(msg, BATADV_ATTR_TT_CRC32, crc) || | |
1186 | nla_put_u16(msg, BATADV_ATTR_TT_VID, common->vid) || | |
1187 | nla_put_u32(msg, BATADV_ATTR_TT_FLAGS, common->flags)) | |
1188 | goto nla_put_failure; | |
1189 | ||
1190 | if (!(common->flags & BATADV_TT_CLIENT_NOPURGE) && | |
1191 | nla_put_u32(msg, BATADV_ATTR_LAST_SEEN_MSECS, last_seen_msecs)) | |
1192 | goto nla_put_failure; | |
1193 | ||
1194 | genlmsg_end(msg, hdr); | |
1195 | return 0; | |
1196 | ||
1197 | nla_put_failure: | |
1198 | genlmsg_cancel(msg, hdr); | |
1199 | return -EMSGSIZE; | |
1200 | } | |
1201 | ||
1202 | /** | |
7e9a8c2c | 1203 | * batadv_tt_local_dump_bucket() - Dump one TT local bucket into a message |
d34f0550 MS |
1204 | * @msg: Netlink message to dump into |
1205 | * @portid: Port making netlink request | |
6b7b40aa | 1206 | * @cb: Control block containing additional options |
d34f0550 | 1207 | * @bat_priv: The bat priv with all the soft interface information |
6b7b40aa SE |
1208 | * @hash: hash to dump |
1209 | * @bucket: bucket index to dump | |
d34f0550 MS |
1210 | * @idx_s: Number of entries to skip |
1211 | * | |
1212 | * Return: Error code, or 0 on success | |
1213 | */ | |
1214 | static int | |
6b7b40aa SE |
1215 | batadv_tt_local_dump_bucket(struct sk_buff *msg, u32 portid, |
1216 | struct netlink_callback *cb, | |
d34f0550 | 1217 | struct batadv_priv *bat_priv, |
6b7b40aa SE |
1218 | struct batadv_hashtable *hash, unsigned int bucket, |
1219 | int *idx_s) | |
d34f0550 MS |
1220 | { |
1221 | struct batadv_tt_common_entry *common; | |
1222 | int idx = 0; | |
1223 | ||
6b7b40aa SE |
1224 | spin_lock_bh(&hash->list_locks[bucket]); |
1225 | cb->seq = atomic_read(&hash->generation) << 1 | 1; | |
1226 | ||
1227 | hlist_for_each_entry(common, &hash->table[bucket], hash_entry) { | |
d34f0550 MS |
1228 | if (idx++ < *idx_s) |
1229 | continue; | |
1230 | ||
6b7b40aa | 1231 | if (batadv_tt_local_dump_entry(msg, portid, cb, bat_priv, |
d34f0550 | 1232 | common)) { |
6b7b40aa | 1233 | spin_unlock_bh(&hash->list_locks[bucket]); |
d34f0550 MS |
1234 | *idx_s = idx - 1; |
1235 | return -EMSGSIZE; | |
1236 | } | |
1237 | } | |
6b7b40aa | 1238 | spin_unlock_bh(&hash->list_locks[bucket]); |
d34f0550 MS |
1239 | |
1240 | *idx_s = 0; | |
1241 | return 0; | |
1242 | } | |
1243 | ||
1244 | /** | |
7e9a8c2c | 1245 | * batadv_tt_local_dump() - Dump TT local entries into a message |
d34f0550 MS |
1246 | * @msg: Netlink message to dump into |
1247 | * @cb: Parameters from query | |
1248 | * | |
1249 | * Return: Error code, or 0 on success | |
1250 | */ | |
1251 | int batadv_tt_local_dump(struct sk_buff *msg, struct netlink_callback *cb) | |
1252 | { | |
1253 | struct net *net = sock_net(cb->skb->sk); | |
1254 | struct net_device *soft_iface; | |
1255 | struct batadv_priv *bat_priv; | |
1256 | struct batadv_hard_iface *primary_if = NULL; | |
1257 | struct batadv_hashtable *hash; | |
d34f0550 MS |
1258 | int ret; |
1259 | int ifindex; | |
1260 | int bucket = cb->args[0]; | |
1261 | int idx = cb->args[1]; | |
1262 | int portid = NETLINK_CB(cb->skb).portid; | |
1263 | ||
1264 | ifindex = batadv_netlink_get_ifindex(cb->nlh, BATADV_ATTR_MESH_IFINDEX); | |
1265 | if (!ifindex) | |
1266 | return -EINVAL; | |
1267 | ||
1268 | soft_iface = dev_get_by_index(net, ifindex); | |
1269 | if (!soft_iface || !batadv_softif_is_valid(soft_iface)) { | |
1270 | ret = -ENODEV; | |
1271 | goto out; | |
1272 | } | |
1273 | ||
1274 | bat_priv = netdev_priv(soft_iface); | |
1275 | ||
1276 | primary_if = batadv_primary_if_get_selected(bat_priv); | |
1277 | if (!primary_if || primary_if->if_status != BATADV_IF_ACTIVE) { | |
1278 | ret = -ENOENT; | |
1279 | goto out; | |
1280 | } | |
1281 | ||
1282 | hash = bat_priv->tt.local_hash; | |
1283 | ||
1284 | while (bucket < hash->size) { | |
6b7b40aa SE |
1285 | if (batadv_tt_local_dump_bucket(msg, portid, cb, bat_priv, |
1286 | hash, bucket, &idx)) | |
d34f0550 MS |
1287 | break; |
1288 | ||
1289 | bucket++; | |
1290 | } | |
1291 | ||
1292 | ret = msg->len; | |
1293 | ||
1294 | out: | |
1295 | if (primary_if) | |
1296 | batadv_hardif_put(primary_if); | |
1297 | if (soft_iface) | |
1298 | dev_put(soft_iface); | |
1299 | ||
1300 | cb->args[0] = bucket; | |
1301 | cb->args[1] = idx; | |
1302 | ||
1303 | return ret; | |
1304 | } | |
1305 | ||
56303d34 SE |
1306 | static void |
1307 | batadv_tt_local_set_pending(struct batadv_priv *bat_priv, | |
1308 | struct batadv_tt_local_entry *tt_local_entry, | |
6b5e971a | 1309 | u16 flags, const char *message) |
c6c8fea2 | 1310 | { |
3abe4adb | 1311 | batadv_tt_local_event(bat_priv, tt_local_entry, flags); |
a73105b8 | 1312 | |
015758d0 AQ |
1313 | /* The local client has to be marked as "pending to be removed" but has |
1314 | * to be kept in the table in order to send it in a full table | |
9cfc7bd6 SE |
1315 | * response issued before the net ttvn increment (consistency check) |
1316 | */ | |
acd34afa | 1317 | tt_local_entry->common.flags |= BATADV_TT_CLIENT_PENDING; |
c566dbbe | 1318 | |
39c75a51 | 1319 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
16052789 AQ |
1320 | "Local tt entry (%pM, vid: %d) pending to be removed: %s\n", |
1321 | tt_local_entry->common.addr, | |
f7a2bd65 | 1322 | batadv_print_vid(tt_local_entry->common.vid), message); |
c6c8fea2 SE |
1323 | } |
1324 | ||
7f91d06c | 1325 | /** |
7e9a8c2c | 1326 | * batadv_tt_local_remove() - logically remove an entry from the local table |
7f91d06c AQ |
1327 | * @bat_priv: the bat priv with all the soft interface information |
1328 | * @addr: the MAC address of the client to remove | |
c018ad3d | 1329 | * @vid: VLAN identifier |
7f91d06c AQ |
1330 | * @message: message to append to the log on deletion |
1331 | * @roaming: true if the deletion is due to a roaming event | |
1332 | * | |
62fe710f | 1333 | * Return: the flags assigned to the local entry before being deleted |
7f91d06c | 1334 | */ |
6b5e971a SE |
1335 | u16 batadv_tt_local_remove(struct batadv_priv *bat_priv, const u8 *addr, |
1336 | unsigned short vid, const char *message, | |
1337 | bool roaming) | |
c6c8fea2 | 1338 | { |
3d65b9ac | 1339 | struct batadv_tt_local_entry *tt_removed_entry; |
170173bf | 1340 | struct batadv_tt_local_entry *tt_local_entry; |
6b5e971a | 1341 | u16 flags, curr_flags = BATADV_NO_FLAGS; |
3d65b9ac | 1342 | struct hlist_node *tt_removed_node; |
c6c8fea2 | 1343 | |
c018ad3d | 1344 | tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr, vid); |
7683fdc1 AQ |
1345 | if (!tt_local_entry) |
1346 | goto out; | |
1347 | ||
7f91d06c AQ |
1348 | curr_flags = tt_local_entry->common.flags; |
1349 | ||
acd34afa | 1350 | flags = BATADV_TT_CLIENT_DEL; |
068ee6e2 AQ |
1351 | /* if this global entry addition is due to a roaming, the node has to |
1352 | * mark the local entry as "roamed" in order to correctly reroute | |
1353 | * packets later | |
1354 | */ | |
7c1fd91d | 1355 | if (roaming) { |
acd34afa | 1356 | flags |= BATADV_TT_CLIENT_ROAM; |
7c1fd91d AQ |
1357 | /* mark the local client as ROAMed */ |
1358 | tt_local_entry->common.flags |= BATADV_TT_CLIENT_ROAM; | |
1359 | } | |
42d0b044 | 1360 | |
068ee6e2 AQ |
1361 | if (!(tt_local_entry->common.flags & BATADV_TT_CLIENT_NEW)) { |
1362 | batadv_tt_local_set_pending(bat_priv, tt_local_entry, flags, | |
1363 | message); | |
1364 | goto out; | |
1365 | } | |
1366 | /* if this client has been added right now, it is possible to | |
1367 | * immediately purge it | |
1368 | */ | |
3abe4adb | 1369 | batadv_tt_local_event(bat_priv, tt_local_entry, BATADV_TT_CLIENT_DEL); |
ef72706a | 1370 | |
3d65b9ac | 1371 | tt_removed_node = batadv_hash_remove(bat_priv->tt.local_hash, |
ef72706a ML |
1372 | batadv_compare_tt, |
1373 | batadv_choose_tt, | |
1374 | &tt_local_entry->common); | |
3d65b9ac | 1375 | if (!tt_removed_node) |
ef72706a ML |
1376 | goto out; |
1377 | ||
3d65b9ac SE |
1378 | /* drop reference of remove hash entry */ |
1379 | tt_removed_entry = hlist_entry(tt_removed_node, | |
1380 | struct batadv_tt_local_entry, | |
1381 | common.hash_entry); | |
1382 | batadv_tt_local_entry_put(tt_removed_entry); | |
7f91d06c | 1383 | |
7683fdc1 AQ |
1384 | out: |
1385 | if (tt_local_entry) | |
95c0db90 | 1386 | batadv_tt_local_entry_put(tt_local_entry); |
7f91d06c AQ |
1387 | |
1388 | return curr_flags; | |
c6c8fea2 SE |
1389 | } |
1390 | ||
a19d3d85 | 1391 | /** |
7e9a8c2c | 1392 | * batadv_tt_local_purge_list() - purge inactive tt local entries |
a19d3d85 ML |
1393 | * @bat_priv: the bat priv with all the soft interface information |
1394 | * @head: pointer to the list containing the local tt entries | |
1395 | * @timeout: parameter deciding whether a given tt local entry is considered | |
1396 | * inactive or not | |
1397 | */ | |
56303d34 | 1398 | static void batadv_tt_local_purge_list(struct batadv_priv *bat_priv, |
a19d3d85 ML |
1399 | struct hlist_head *head, |
1400 | int timeout) | |
c6c8fea2 | 1401 | { |
56303d34 SE |
1402 | struct batadv_tt_local_entry *tt_local_entry; |
1403 | struct batadv_tt_common_entry *tt_common_entry; | |
b67bfe0d | 1404 | struct hlist_node *node_tmp; |
acd34afa | 1405 | |
b67bfe0d | 1406 | hlist_for_each_entry_safe(tt_common_entry, node_tmp, head, |
acd34afa SE |
1407 | hash_entry) { |
1408 | tt_local_entry = container_of(tt_common_entry, | |
56303d34 SE |
1409 | struct batadv_tt_local_entry, |
1410 | common); | |
acd34afa SE |
1411 | if (tt_local_entry->common.flags & BATADV_TT_CLIENT_NOPURGE) |
1412 | continue; | |
1413 | ||
1414 | /* entry already marked for deletion */ | |
1415 | if (tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING) | |
1416 | continue; | |
1417 | ||
a19d3d85 | 1418 | if (!batadv_has_timed_out(tt_local_entry->last_seen, timeout)) |
acd34afa SE |
1419 | continue; |
1420 | ||
1421 | batadv_tt_local_set_pending(bat_priv, tt_local_entry, | |
1422 | BATADV_TT_CLIENT_DEL, "timed out"); | |
1423 | } | |
1424 | } | |
1425 | ||
a19d3d85 | 1426 | /** |
7e9a8c2c | 1427 | * batadv_tt_local_purge() - purge inactive tt local entries |
a19d3d85 ML |
1428 | * @bat_priv: the bat priv with all the soft interface information |
1429 | * @timeout: parameter deciding whether a given tt local entry is considered | |
1430 | * inactive or not | |
1431 | */ | |
1432 | static void batadv_tt_local_purge(struct batadv_priv *bat_priv, | |
1433 | int timeout) | |
acd34afa | 1434 | { |
807736f6 | 1435 | struct batadv_hashtable *hash = bat_priv->tt.local_hash; |
c6c8fea2 | 1436 | struct hlist_head *head; |
7683fdc1 | 1437 | spinlock_t *list_lock; /* protects write access to the hash lists */ |
6b5e971a | 1438 | u32 i; |
c6c8fea2 | 1439 | |
c6c8fea2 SE |
1440 | for (i = 0; i < hash->size; i++) { |
1441 | head = &hash->table[i]; | |
7683fdc1 | 1442 | list_lock = &hash->list_locks[i]; |
c6c8fea2 | 1443 | |
7683fdc1 | 1444 | spin_lock_bh(list_lock); |
a19d3d85 | 1445 | batadv_tt_local_purge_list(bat_priv, head, timeout); |
7683fdc1 | 1446 | spin_unlock_bh(list_lock); |
c6c8fea2 | 1447 | } |
c6c8fea2 SE |
1448 | } |
1449 | ||
56303d34 | 1450 | static void batadv_tt_local_table_free(struct batadv_priv *bat_priv) |
c6c8fea2 | 1451 | { |
5bf74e9c | 1452 | struct batadv_hashtable *hash; |
a73105b8 | 1453 | spinlock_t *list_lock; /* protects write access to the hash lists */ |
56303d34 SE |
1454 | struct batadv_tt_common_entry *tt_common_entry; |
1455 | struct batadv_tt_local_entry *tt_local; | |
b67bfe0d | 1456 | struct hlist_node *node_tmp; |
7683fdc1 | 1457 | struct hlist_head *head; |
6b5e971a | 1458 | u32 i; |
a73105b8 | 1459 | |
807736f6 | 1460 | if (!bat_priv->tt.local_hash) |
c6c8fea2 SE |
1461 | return; |
1462 | ||
807736f6 | 1463 | hash = bat_priv->tt.local_hash; |
a73105b8 AQ |
1464 | |
1465 | for (i = 0; i < hash->size; i++) { | |
1466 | head = &hash->table[i]; | |
1467 | list_lock = &hash->list_locks[i]; | |
1468 | ||
1469 | spin_lock_bh(list_lock); | |
b67bfe0d | 1470 | hlist_for_each_entry_safe(tt_common_entry, node_tmp, |
a73105b8 | 1471 | head, hash_entry) { |
b67bfe0d | 1472 | hlist_del_rcu(&tt_common_entry->hash_entry); |
56303d34 SE |
1473 | tt_local = container_of(tt_common_entry, |
1474 | struct batadv_tt_local_entry, | |
1475 | common); | |
35df3b29 | 1476 | |
95c0db90 | 1477 | batadv_tt_local_entry_put(tt_local); |
a73105b8 AQ |
1478 | } |
1479 | spin_unlock_bh(list_lock); | |
1480 | } | |
1481 | ||
1a8eaf07 | 1482 | batadv_hash_destroy(hash); |
a73105b8 | 1483 | |
807736f6 | 1484 | bat_priv->tt.local_hash = NULL; |
c6c8fea2 SE |
1485 | } |
1486 | ||
56303d34 | 1487 | static int batadv_tt_global_init(struct batadv_priv *bat_priv) |
c6c8fea2 | 1488 | { |
807736f6 | 1489 | if (bat_priv->tt.global_hash) |
5346c35e | 1490 | return 0; |
c6c8fea2 | 1491 | |
807736f6 | 1492 | bat_priv->tt.global_hash = batadv_hash_new(1024); |
c6c8fea2 | 1493 | |
807736f6 | 1494 | if (!bat_priv->tt.global_hash) |
5346c35e | 1495 | return -ENOMEM; |
c6c8fea2 | 1496 | |
dec05074 AQ |
1497 | batadv_hash_set_lock_class(bat_priv->tt.global_hash, |
1498 | &batadv_tt_global_hash_lock_class_key); | |
1499 | ||
5346c35e | 1500 | return 0; |
c6c8fea2 SE |
1501 | } |
1502 | ||
56303d34 | 1503 | static void batadv_tt_changes_list_free(struct batadv_priv *bat_priv) |
c6c8fea2 | 1504 | { |
56303d34 | 1505 | struct batadv_tt_change_node *entry, *safe; |
c6c8fea2 | 1506 | |
807736f6 | 1507 | spin_lock_bh(&bat_priv->tt.changes_list_lock); |
c6c8fea2 | 1508 | |
807736f6 | 1509 | list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list, |
a73105b8 AQ |
1510 | list) { |
1511 | list_del(&entry->list); | |
86452f81 | 1512 | kmem_cache_free(batadv_tt_change_cache, entry); |
a73105b8 | 1513 | } |
c6c8fea2 | 1514 | |
807736f6 SE |
1515 | atomic_set(&bat_priv->tt.local_changes, 0); |
1516 | spin_unlock_bh(&bat_priv->tt.changes_list_lock); | |
a73105b8 | 1517 | } |
c6c8fea2 | 1518 | |
62fe710f | 1519 | /** |
7e9a8c2c | 1520 | * batadv_tt_global_orig_entry_find() - find a TT orig_list_entry |
d15cd622 AQ |
1521 | * @entry: the TT global entry where the orig_list_entry has to be |
1522 | * extracted from | |
1523 | * @orig_node: the originator for which the orig_list_entry has to be found | |
62fe710f | 1524 | * |
d15cd622 | 1525 | * retrieve the orig_tt_list_entry belonging to orig_node from the |
d657e621 AQ |
1526 | * batadv_tt_global_entry list |
1527 | * | |
62fe710f | 1528 | * Return: it with an increased refcounter, NULL if not found |
db08e6e5 | 1529 | */ |
d657e621 AQ |
1530 | static struct batadv_tt_orig_list_entry * |
1531 | batadv_tt_global_orig_entry_find(const struct batadv_tt_global_entry *entry, | |
1532 | const struct batadv_orig_node *orig_node) | |
db08e6e5 | 1533 | { |
d657e621 | 1534 | struct batadv_tt_orig_list_entry *tmp_orig_entry, *orig_entry = NULL; |
db08e6e5 | 1535 | const struct hlist_head *head; |
db08e6e5 SW |
1536 | |
1537 | rcu_read_lock(); | |
1538 | head = &entry->orig_list; | |
b67bfe0d | 1539 | hlist_for_each_entry_rcu(tmp_orig_entry, head, list) { |
d657e621 AQ |
1540 | if (tmp_orig_entry->orig_node != orig_node) |
1541 | continue; | |
6e8ef69d | 1542 | if (!kref_get_unless_zero(&tmp_orig_entry->refcount)) |
d657e621 AQ |
1543 | continue; |
1544 | ||
1545 | orig_entry = tmp_orig_entry; | |
1546 | break; | |
db08e6e5 SW |
1547 | } |
1548 | rcu_read_unlock(); | |
d657e621 AQ |
1549 | |
1550 | return orig_entry; | |
1551 | } | |
1552 | ||
62fe710f | 1553 | /** |
7e9a8c2c SE |
1554 | * batadv_tt_global_entry_has_orig() - check if a TT global entry is also |
1555 | * handled by a given originator | |
d15cd622 AQ |
1556 | * @entry: the TT global entry to check |
1557 | * @orig_node: the originator to search in the list | |
7072337e LL |
1558 | * @flags: a pointer to store TT flags for the given @entry received |
1559 | * from @orig_node | |
62fe710f SE |
1560 | * |
1561 | * find out if an orig_node is already in the list of a tt_global_entry. | |
1562 | * | |
1563 | * Return: true if found, false otherwise | |
d657e621 AQ |
1564 | */ |
1565 | static bool | |
1566 | batadv_tt_global_entry_has_orig(const struct batadv_tt_global_entry *entry, | |
7072337e LL |
1567 | const struct batadv_orig_node *orig_node, |
1568 | u8 *flags) | |
d657e621 AQ |
1569 | { |
1570 | struct batadv_tt_orig_list_entry *orig_entry; | |
1571 | bool found = false; | |
1572 | ||
1573 | orig_entry = batadv_tt_global_orig_entry_find(entry, orig_node); | |
1574 | if (orig_entry) { | |
1575 | found = true; | |
7072337e LL |
1576 | |
1577 | if (flags) | |
1578 | *flags = orig_entry->flags; | |
1579 | ||
7e2366c6 | 1580 | batadv_tt_orig_list_entry_put(orig_entry); |
d657e621 AQ |
1581 | } |
1582 | ||
db08e6e5 SW |
1583 | return found; |
1584 | } | |
1585 | ||
54e22f26 | 1586 | /** |
7e9a8c2c | 1587 | * batadv_tt_global_sync_flags() - update TT sync flags |
54e22f26 LL |
1588 | * @tt_global: the TT global entry to update sync flags in |
1589 | * | |
1590 | * Updates the sync flag bits in the tt_global flag attribute with a logical | |
1591 | * OR of all sync flags from any of its TT orig entries. | |
1592 | */ | |
1593 | static void | |
1594 | batadv_tt_global_sync_flags(struct batadv_tt_global_entry *tt_global) | |
1595 | { | |
1596 | struct batadv_tt_orig_list_entry *orig_entry; | |
1597 | const struct hlist_head *head; | |
1598 | u16 flags = BATADV_NO_FLAGS; | |
1599 | ||
1600 | rcu_read_lock(); | |
1601 | head = &tt_global->orig_list; | |
1602 | hlist_for_each_entry_rcu(orig_entry, head, list) | |
1603 | flags |= orig_entry->flags; | |
1604 | rcu_read_unlock(); | |
1605 | ||
1606 | flags |= tt_global->common.flags & (~BATADV_TT_SYNC_MASK); | |
1607 | tt_global->common.flags = flags; | |
1608 | } | |
1609 | ||
1610 | /** | |
7e9a8c2c | 1611 | * batadv_tt_global_orig_entry_add() - add or update a TT orig entry |
54e22f26 LL |
1612 | * @tt_global: the TT global entry to add an orig entry in |
1613 | * @orig_node: the originator to add an orig entry for | |
1614 | * @ttvn: translation table version number of this changeset | |
1615 | * @flags: TT sync flags | |
1616 | */ | |
a513088d | 1617 | static void |
d657e621 | 1618 | batadv_tt_global_orig_entry_add(struct batadv_tt_global_entry *tt_global, |
54e22f26 LL |
1619 | struct batadv_orig_node *orig_node, int ttvn, |
1620 | u8 flags) | |
db08e6e5 | 1621 | { |
56303d34 | 1622 | struct batadv_tt_orig_list_entry *orig_entry; |
db08e6e5 | 1623 | |
e7136e48 SE |
1624 | spin_lock_bh(&tt_global->list_lock); |
1625 | ||
d657e621 | 1626 | orig_entry = batadv_tt_global_orig_entry_find(tt_global, orig_node); |
30cfd02b AQ |
1627 | if (orig_entry) { |
1628 | /* refresh the ttvn: the current value could be a bogus one that | |
1629 | * was added during a "temporary client detection" | |
1630 | */ | |
1631 | orig_entry->ttvn = ttvn; | |
54e22f26 LL |
1632 | orig_entry->flags = flags; |
1633 | goto sync_flags; | |
30cfd02b | 1634 | } |
d657e621 | 1635 | |
86452f81 | 1636 | orig_entry = kmem_cache_zalloc(batadv_tt_orig_cache, GFP_ATOMIC); |
db08e6e5 | 1637 | if (!orig_entry) |
d657e621 | 1638 | goto out; |
db08e6e5 SW |
1639 | |
1640 | INIT_HLIST_NODE(&orig_entry->list); | |
7c124391 | 1641 | kref_get(&orig_node->refcount); |
7ea7b4a1 | 1642 | batadv_tt_global_size_inc(orig_node, tt_global->common.vid); |
db08e6e5 SW |
1643 | orig_entry->orig_node = orig_node; |
1644 | orig_entry->ttvn = ttvn; | |
54e22f26 | 1645 | orig_entry->flags = flags; |
6e8ef69d | 1646 | kref_init(&orig_entry->refcount); |
db08e6e5 | 1647 | |
23f55485 | 1648 | kref_get(&orig_entry->refcount); |
db08e6e5 | 1649 | hlist_add_head_rcu(&orig_entry->list, |
d657e621 | 1650 | &tt_global->orig_list); |
1d8ab8d3 LL |
1651 | atomic_inc(&tt_global->orig_list_count); |
1652 | ||
54e22f26 LL |
1653 | sync_flags: |
1654 | batadv_tt_global_sync_flags(tt_global); | |
d657e621 AQ |
1655 | out: |
1656 | if (orig_entry) | |
7e2366c6 | 1657 | batadv_tt_orig_list_entry_put(orig_entry); |
e7136e48 SE |
1658 | |
1659 | spin_unlock_bh(&tt_global->list_lock); | |
db08e6e5 SW |
1660 | } |
1661 | ||
d4ff40f6 | 1662 | /** |
7e9a8c2c | 1663 | * batadv_tt_global_add() - add a new TT global entry or update an existing one |
d4ff40f6 AQ |
1664 | * @bat_priv: the bat priv with all the soft interface information |
1665 | * @orig_node: the originator announcing the client | |
1666 | * @tt_addr: the mac address of the non-mesh client | |
c018ad3d | 1667 | * @vid: VLAN identifier |
d4ff40f6 AQ |
1668 | * @flags: TT flags that have to be set for this non-mesh client |
1669 | * @ttvn: the tt version number ever announcing this non-mesh client | |
1670 | * | |
1671 | * Add a new TT global entry for the given originator. If the entry already | |
1672 | * exists add a new reference to the given originator (a global entry can have | |
1673 | * references to multiple originators) and adjust the flags attribute to reflect | |
1674 | * the function argument. | |
1675 | * If a TT local entry exists for this non-mesh client remove it. | |
1676 | * | |
1677 | * The caller must hold orig_node refcount. | |
1e5d49fc | 1678 | * |
62fe710f | 1679 | * Return: true if the new entry has been added, false otherwise |
d4ff40f6 | 1680 | */ |
1e5d49fc AQ |
1681 | static bool batadv_tt_global_add(struct batadv_priv *bat_priv, |
1682 | struct batadv_orig_node *orig_node, | |
c018ad3d | 1683 | const unsigned char *tt_addr, |
6b5e971a | 1684 | unsigned short vid, u16 flags, u8 ttvn) |
a73105b8 | 1685 | { |
170173bf SE |
1686 | struct batadv_tt_global_entry *tt_global_entry; |
1687 | struct batadv_tt_local_entry *tt_local_entry; | |
1e5d49fc | 1688 | bool ret = false; |
80b3f58c | 1689 | int hash_added; |
56303d34 | 1690 | struct batadv_tt_common_entry *common; |
6b5e971a | 1691 | u16 local_flags; |
c6c8fea2 | 1692 | |
cfd4f757 AQ |
1693 | /* ignore global entries from backbone nodes */ |
1694 | if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig, vid)) | |
1695 | return true; | |
1696 | ||
c018ad3d AQ |
1697 | tt_global_entry = batadv_tt_global_hash_find(bat_priv, tt_addr, vid); |
1698 | tt_local_entry = batadv_tt_local_hash_find(bat_priv, tt_addr, vid); | |
068ee6e2 AQ |
1699 | |
1700 | /* if the node already has a local client for this entry, it has to wait | |
1701 | * for a roaming advertisement instead of manually messing up the global | |
1702 | * table | |
1703 | */ | |
1704 | if ((flags & BATADV_TT_CLIENT_TEMP) && tt_local_entry && | |
1705 | !(tt_local_entry->common.flags & BATADV_TT_CLIENT_NEW)) | |
1706 | goto out; | |
a73105b8 AQ |
1707 | |
1708 | if (!tt_global_entry) { | |
86452f81 SE |
1709 | tt_global_entry = kmem_cache_zalloc(batadv_tg_cache, |
1710 | GFP_ATOMIC); | |
a73105b8 | 1711 | if (!tt_global_entry) |
7683fdc1 AQ |
1712 | goto out; |
1713 | ||
c0a55929 | 1714 | common = &tt_global_entry->common; |
8fdd0153 | 1715 | ether_addr_copy(common->addr, tt_addr); |
c018ad3d | 1716 | common->vid = vid; |
db08e6e5 | 1717 | |
a44ebeff LL |
1718 | if (!is_multicast_ether_addr(common->addr)) |
1719 | common->flags = flags & (~BATADV_TT_SYNC_MASK); | |
4a519b83 | 1720 | |
cc47f66e | 1721 | tt_global_entry->roam_at = 0; |
fdf79320 AQ |
1722 | /* node must store current time in case of roaming. This is |
1723 | * needed to purge this entry out on timeout (if nobody claims | |
1724 | * it) | |
1725 | */ | |
1726 | if (flags & BATADV_TT_CLIENT_ROAM) | |
1727 | tt_global_entry->roam_at = jiffies; | |
92dcdf09 | 1728 | kref_init(&common->refcount); |
30cfd02b | 1729 | common->added_at = jiffies; |
db08e6e5 SW |
1730 | |
1731 | INIT_HLIST_HEAD(&tt_global_entry->orig_list); | |
1d8ab8d3 | 1732 | atomic_set(&tt_global_entry->orig_list_count, 0); |
db08e6e5 | 1733 | spin_lock_init(&tt_global_entry->list_lock); |
7683fdc1 | 1734 | |
15d5ffde | 1735 | kref_get(&common->refcount); |
807736f6 | 1736 | hash_added = batadv_hash_add(bat_priv->tt.global_hash, |
a513088d | 1737 | batadv_compare_tt, |
c018ad3d | 1738 | batadv_choose_tt, common, |
a513088d | 1739 | &common->hash_entry); |
80b3f58c SW |
1740 | |
1741 | if (unlikely(hash_added != 0)) { | |
1742 | /* remove the reference for the hash */ | |
5dafd8a6 | 1743 | batadv_tt_global_entry_put(tt_global_entry); |
80b3f58c SW |
1744 | goto out_remove; |
1745 | } | |
a73105b8 | 1746 | } else { |
068ee6e2 | 1747 | common = &tt_global_entry->common; |
30cfd02b AQ |
1748 | /* If there is already a global entry, we can use this one for |
1749 | * our processing. | |
068ee6e2 AQ |
1750 | * But if we are trying to add a temporary client then here are |
1751 | * two options at this point: | |
1752 | * 1) the global client is not a temporary client: the global | |
1753 | * client has to be left as it is, temporary information | |
1754 | * should never override any already known client state | |
1755 | * 2) the global client is a temporary client: purge the | |
1756 | * originator list and add the new one orig_entry | |
30cfd02b | 1757 | */ |
068ee6e2 AQ |
1758 | if (flags & BATADV_TT_CLIENT_TEMP) { |
1759 | if (!(common->flags & BATADV_TT_CLIENT_TEMP)) | |
1760 | goto out; | |
1761 | if (batadv_tt_global_entry_has_orig(tt_global_entry, | |
7072337e | 1762 | orig_node, NULL)) |
068ee6e2 AQ |
1763 | goto out_remove; |
1764 | batadv_tt_global_del_orig_list(tt_global_entry); | |
1765 | goto add_orig_entry; | |
1766 | } | |
30cfd02b AQ |
1767 | |
1768 | /* if the client was temporary added before receiving the first | |
a6cb3909 SW |
1769 | * OGM announcing it, we have to clear the TEMP flag. Also, |
1770 | * remove the previous temporary orig node and re-add it | |
1771 | * if required. If the orig entry changed, the new one which | |
1772 | * is a non-temporary entry is preferred. | |
30cfd02b | 1773 | */ |
a6cb3909 SW |
1774 | if (common->flags & BATADV_TT_CLIENT_TEMP) { |
1775 | batadv_tt_global_del_orig_list(tt_global_entry); | |
1776 | common->flags &= ~BATADV_TT_CLIENT_TEMP; | |
1777 | } | |
db08e6e5 | 1778 | |
e9c00136 | 1779 | /* the change can carry possible "attribute" flags like the |
54e22f26 | 1780 | * TT_CLIENT_TEMP, therefore they have to be copied in the |
e9c00136 AQ |
1781 | * client entry |
1782 | */ | |
a44ebeff LL |
1783 | if (!is_multicast_ether_addr(common->addr)) |
1784 | common->flags |= flags & (~BATADV_TT_SYNC_MASK); | |
e9c00136 | 1785 | |
acd34afa SE |
1786 | /* If there is the BATADV_TT_CLIENT_ROAM flag set, there is only |
1787 | * one originator left in the list and we previously received a | |
db08e6e5 SW |
1788 | * delete + roaming change for this originator. |
1789 | * | |
1790 | * We should first delete the old originator before adding the | |
1791 | * new one. | |
1792 | */ | |
068ee6e2 | 1793 | if (common->flags & BATADV_TT_CLIENT_ROAM) { |
a513088d | 1794 | batadv_tt_global_del_orig_list(tt_global_entry); |
068ee6e2 | 1795 | common->flags &= ~BATADV_TT_CLIENT_ROAM; |
db08e6e5 | 1796 | tt_global_entry->roam_at = 0; |
a73105b8 AQ |
1797 | } |
1798 | } | |
068ee6e2 | 1799 | add_orig_entry: |
30cfd02b | 1800 | /* add the new orig_entry (if needed) or update it */ |
54e22f26 LL |
1801 | batadv_tt_global_orig_entry_add(tt_global_entry, orig_node, ttvn, |
1802 | flags & BATADV_TT_SYNC_MASK); | |
c6c8fea2 | 1803 | |
39c75a51 | 1804 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
16052789 | 1805 | "Creating new global tt entry: %pM (vid: %d, via %pM)\n", |
f7a2bd65 | 1806 | common->addr, batadv_print_vid(common->vid), |
16052789 | 1807 | orig_node->orig); |
1e5d49fc | 1808 | ret = true; |
c6c8fea2 | 1809 | |
80b3f58c | 1810 | out_remove: |
c5caf4ef LL |
1811 | /* Do not remove multicast addresses from the local hash on |
1812 | * global additions | |
1813 | */ | |
1814 | if (is_multicast_ether_addr(tt_addr)) | |
1815 | goto out; | |
7f91d06c | 1816 | |
a73105b8 | 1817 | /* remove address from local hash if present */ |
c018ad3d | 1818 | local_flags = batadv_tt_local_remove(bat_priv, tt_addr, vid, |
7f91d06c | 1819 | "global tt received", |
c1d07431 | 1820 | flags & BATADV_TT_CLIENT_ROAM); |
7f91d06c AQ |
1821 | tt_global_entry->common.flags |= local_flags & BATADV_TT_CLIENT_WIFI; |
1822 | ||
068ee6e2 AQ |
1823 | if (!(flags & BATADV_TT_CLIENT_ROAM)) |
1824 | /* this is a normal global add. Therefore the client is not in a | |
1825 | * roaming state anymore. | |
1826 | */ | |
1827 | tt_global_entry->common.flags &= ~BATADV_TT_CLIENT_ROAM; | |
1828 | ||
7683fdc1 AQ |
1829 | out: |
1830 | if (tt_global_entry) | |
5dafd8a6 | 1831 | batadv_tt_global_entry_put(tt_global_entry); |
068ee6e2 | 1832 | if (tt_local_entry) |
95c0db90 | 1833 | batadv_tt_local_entry_put(tt_local_entry); |
7683fdc1 | 1834 | return ret; |
c6c8fea2 SE |
1835 | } |
1836 | ||
1b371d13 | 1837 | /** |
7e9a8c2c | 1838 | * batadv_transtable_best_orig() - Get best originator list entry from tt entry |
4627456a | 1839 | * @bat_priv: the bat priv with all the soft interface information |
981d8900 SE |
1840 | * @tt_global_entry: global translation table entry to be analyzed |
1841 | * | |
1842 | * This functon assumes the caller holds rcu_read_lock(). | |
62fe710f | 1843 | * Return: best originator list entry or NULL on errors. |
981d8900 SE |
1844 | */ |
1845 | static struct batadv_tt_orig_list_entry * | |
4627456a AQ |
1846 | batadv_transtable_best_orig(struct batadv_priv *bat_priv, |
1847 | struct batadv_tt_global_entry *tt_global_entry) | |
981d8900 | 1848 | { |
4627456a | 1849 | struct batadv_neigh_node *router, *best_router = NULL; |
29824a55 | 1850 | struct batadv_algo_ops *bao = bat_priv->algo_ops; |
981d8900 | 1851 | struct hlist_head *head; |
981d8900 | 1852 | struct batadv_tt_orig_list_entry *orig_entry, *best_entry = NULL; |
981d8900 SE |
1853 | |
1854 | head = &tt_global_entry->orig_list; | |
b67bfe0d | 1855 | hlist_for_each_entry_rcu(orig_entry, head, list) { |
7351a482 SW |
1856 | router = batadv_orig_router_get(orig_entry->orig_node, |
1857 | BATADV_IF_DEFAULT); | |
981d8900 SE |
1858 | if (!router) |
1859 | continue; | |
1860 | ||
4627456a | 1861 | if (best_router && |
29824a55 AQ |
1862 | bao->neigh.cmp(router, BATADV_IF_DEFAULT, best_router, |
1863 | BATADV_IF_DEFAULT) <= 0) { | |
25bb2509 | 1864 | batadv_neigh_node_put(router); |
4627456a | 1865 | continue; |
981d8900 SE |
1866 | } |
1867 | ||
4627456a AQ |
1868 | /* release the refcount for the "old" best */ |
1869 | if (best_router) | |
25bb2509 | 1870 | batadv_neigh_node_put(best_router); |
4627456a AQ |
1871 | |
1872 | best_entry = orig_entry; | |
1873 | best_router = router; | |
981d8900 SE |
1874 | } |
1875 | ||
4627456a | 1876 | if (best_router) |
25bb2509 | 1877 | batadv_neigh_node_put(best_router); |
4627456a | 1878 | |
981d8900 SE |
1879 | return best_entry; |
1880 | } | |
1881 | ||
dc1cbd14 | 1882 | #ifdef CONFIG_BATMAN_ADV_DEBUGFS |
1b371d13 | 1883 | /** |
7e9a8c2c SE |
1884 | * batadv_tt_global_print_entry() - print all orig nodes who announce the |
1885 | * address for this global entry | |
4627456a | 1886 | * @bat_priv: the bat priv with all the soft interface information |
981d8900 SE |
1887 | * @tt_global_entry: global translation table entry to be printed |
1888 | * @seq: debugfs table seq_file struct | |
1889 | * | |
1890 | * This functon assumes the caller holds rcu_read_lock(). | |
db08e6e5 | 1891 | */ |
a513088d | 1892 | static void |
4627456a AQ |
1893 | batadv_tt_global_print_entry(struct batadv_priv *bat_priv, |
1894 | struct batadv_tt_global_entry *tt_global_entry, | |
a513088d | 1895 | struct seq_file *seq) |
db08e6e5 | 1896 | { |
981d8900 | 1897 | struct batadv_tt_orig_list_entry *orig_entry, *best_entry; |
56303d34 | 1898 | struct batadv_tt_common_entry *tt_common_entry; |
7ea7b4a1 AQ |
1899 | struct batadv_orig_node_vlan *vlan; |
1900 | struct hlist_head *head; | |
6b5e971a SE |
1901 | u8 last_ttvn; |
1902 | u16 flags; | |
db08e6e5 SW |
1903 | |
1904 | tt_common_entry = &tt_global_entry->common; | |
981d8900 SE |
1905 | flags = tt_common_entry->flags; |
1906 | ||
4627456a | 1907 | best_entry = batadv_transtable_best_orig(bat_priv, tt_global_entry); |
981d8900 | 1908 | if (best_entry) { |
7ea7b4a1 AQ |
1909 | vlan = batadv_orig_node_vlan_get(best_entry->orig_node, |
1910 | tt_common_entry->vid); | |
1911 | if (!vlan) { | |
1912 | seq_printf(seq, | |
1913 | " * Cannot retrieve VLAN %d for originator %pM\n", | |
f7a2bd65 | 1914 | batadv_print_vid(tt_common_entry->vid), |
7ea7b4a1 AQ |
1915 | best_entry->orig_node->orig); |
1916 | goto print_list; | |
1917 | } | |
1918 | ||
981d8900 | 1919 | last_ttvn = atomic_read(&best_entry->orig_node->last_ttvn); |
f9d8a537 | 1920 | seq_printf(seq, |
dd24ddb2 | 1921 | " %c %pM %4i (%3u) via %pM (%3u) (%#.8x) [%c%c%c%c]\n", |
981d8900 | 1922 | '*', tt_global_entry->common.addr, |
f7a2bd65 | 1923 | batadv_print_vid(tt_global_entry->common.vid), |
981d8900 | 1924 | best_entry->ttvn, best_entry->orig_node->orig, |
7ea7b4a1 | 1925 | last_ttvn, vlan->tt.crc, |
a2f2b6cd SE |
1926 | ((flags & BATADV_TT_CLIENT_ROAM) ? 'R' : '.'), |
1927 | ((flags & BATADV_TT_CLIENT_WIFI) ? 'W' : '.'), | |
1928 | ((flags & BATADV_TT_CLIENT_ISOLA) ? 'I' : '.'), | |
1929 | ((flags & BATADV_TT_CLIENT_TEMP) ? 'T' : '.')); | |
7ea7b4a1 | 1930 | |
21754e25 | 1931 | batadv_orig_node_vlan_put(vlan); |
981d8900 | 1932 | } |
db08e6e5 | 1933 | |
7ea7b4a1 | 1934 | print_list: |
db08e6e5 SW |
1935 | head = &tt_global_entry->orig_list; |
1936 | ||
b67bfe0d | 1937 | hlist_for_each_entry_rcu(orig_entry, head, list) { |
981d8900 SE |
1938 | if (best_entry == orig_entry) |
1939 | continue; | |
1940 | ||
7ea7b4a1 AQ |
1941 | vlan = batadv_orig_node_vlan_get(orig_entry->orig_node, |
1942 | tt_common_entry->vid); | |
1943 | if (!vlan) { | |
1944 | seq_printf(seq, | |
1945 | " + Cannot retrieve VLAN %d for originator %pM\n", | |
f7a2bd65 | 1946 | batadv_print_vid(tt_common_entry->vid), |
7ea7b4a1 AQ |
1947 | orig_entry->orig_node->orig); |
1948 | continue; | |
1949 | } | |
1950 | ||
db08e6e5 | 1951 | last_ttvn = atomic_read(&orig_entry->orig_node->last_ttvn); |
16052789 | 1952 | seq_printf(seq, |
dd24ddb2 | 1953 | " %c %pM %4d (%3u) via %pM (%3u) (%#.8x) [%c%c%c%c]\n", |
981d8900 | 1954 | '+', tt_global_entry->common.addr, |
f7a2bd65 | 1955 | batadv_print_vid(tt_global_entry->common.vid), |
981d8900 | 1956 | orig_entry->ttvn, orig_entry->orig_node->orig, |
7ea7b4a1 | 1957 | last_ttvn, vlan->tt.crc, |
a2f2b6cd SE |
1958 | ((flags & BATADV_TT_CLIENT_ROAM) ? 'R' : '.'), |
1959 | ((flags & BATADV_TT_CLIENT_WIFI) ? 'W' : '.'), | |
1960 | ((flags & BATADV_TT_CLIENT_ISOLA) ? 'I' : '.'), | |
1961 | ((flags & BATADV_TT_CLIENT_TEMP) ? 'T' : '.')); | |
7ea7b4a1 | 1962 | |
21754e25 | 1963 | batadv_orig_node_vlan_put(vlan); |
db08e6e5 SW |
1964 | } |
1965 | } | |
1966 | ||
ff15c27c SE |
1967 | /** |
1968 | * batadv_tt_global_seq_print_text() - Print the global tt table in a seq file | |
1969 | * @seq: seq file to print on | |
1970 | * @offset: not used | |
1971 | * | |
1972 | * Return: always 0 | |
1973 | */ | |
08c36d3e | 1974 | int batadv_tt_global_seq_print_text(struct seq_file *seq, void *offset) |
c6c8fea2 SE |
1975 | { |
1976 | struct net_device *net_dev = (struct net_device *)seq->private; | |
56303d34 | 1977 | struct batadv_priv *bat_priv = netdev_priv(net_dev); |
807736f6 | 1978 | struct batadv_hashtable *hash = bat_priv->tt.global_hash; |
56303d34 SE |
1979 | struct batadv_tt_common_entry *tt_common_entry; |
1980 | struct batadv_tt_global_entry *tt_global; | |
1981 | struct batadv_hard_iface *primary_if; | |
c6c8fea2 | 1982 | struct hlist_head *head; |
6b5e971a | 1983 | u32 i; |
c6c8fea2 | 1984 | |
30da63a6 ML |
1985 | primary_if = batadv_seq_print_text_primary_if_get(seq); |
1986 | if (!primary_if) | |
32ae9b22 | 1987 | goto out; |
c6c8fea2 | 1988 | |
2dafb49d AQ |
1989 | seq_printf(seq, |
1990 | "Globally announced TT entries received via the mesh %s\n", | |
c6c8fea2 | 1991 | net_dev->name); |
925a6f37 AQ |
1992 | seq_puts(seq, |
1993 | " Client VID (TTVN) Originator (Curr TTVN) (CRC ) Flags\n"); | |
c6c8fea2 | 1994 | |
c6c8fea2 SE |
1995 | for (i = 0; i < hash->size; i++) { |
1996 | head = &hash->table[i]; | |
1997 | ||
7aadf889 | 1998 | rcu_read_lock(); |
b67bfe0d | 1999 | hlist_for_each_entry_rcu(tt_common_entry, |
7aadf889 | 2000 | head, hash_entry) { |
56303d34 SE |
2001 | tt_global = container_of(tt_common_entry, |
2002 | struct batadv_tt_global_entry, | |
2003 | common); | |
4627456a | 2004 | batadv_tt_global_print_entry(bat_priv, tt_global, seq); |
c6c8fea2 | 2005 | } |
7aadf889 | 2006 | rcu_read_unlock(); |
c6c8fea2 | 2007 | } |
32ae9b22 ML |
2008 | out: |
2009 | if (primary_if) | |
82047ad7 | 2010 | batadv_hardif_put(primary_if); |
30da63a6 | 2011 | return 0; |
c6c8fea2 | 2012 | } |
dc1cbd14 | 2013 | #endif |
c6c8fea2 | 2014 | |
d34f0550 | 2015 | /** |
7e9a8c2c | 2016 | * batadv_tt_global_dump_subentry() - Dump all TT local entries into a message |
d34f0550 MS |
2017 | * @msg: Netlink message to dump into |
2018 | * @portid: Port making netlink request | |
2019 | * @seq: Sequence number of netlink message | |
2020 | * @common: tt local & tt global common data | |
2021 | * @orig: Originator node announcing a non-mesh client | |
2022 | * @best: Is the best originator for the TT entry | |
2023 | * | |
2024 | * Return: Error code, or 0 on success | |
2025 | */ | |
2026 | static int | |
2027 | batadv_tt_global_dump_subentry(struct sk_buff *msg, u32 portid, u32 seq, | |
2028 | struct batadv_tt_common_entry *common, | |
2029 | struct batadv_tt_orig_list_entry *orig, | |
2030 | bool best) | |
2031 | { | |
54e22f26 | 2032 | u16 flags = (common->flags & (~BATADV_TT_SYNC_MASK)) | orig->flags; |
d34f0550 MS |
2033 | void *hdr; |
2034 | struct batadv_orig_node_vlan *vlan; | |
2035 | u8 last_ttvn; | |
2036 | u32 crc; | |
2037 | ||
2038 | vlan = batadv_orig_node_vlan_get(orig->orig_node, | |
2039 | common->vid); | |
2040 | if (!vlan) | |
2041 | return 0; | |
2042 | ||
2043 | crc = vlan->tt.crc; | |
2044 | ||
2045 | batadv_orig_node_vlan_put(vlan); | |
2046 | ||
2047 | hdr = genlmsg_put(msg, portid, seq, &batadv_netlink_family, | |
2048 | NLM_F_MULTI, | |
2049 | BATADV_CMD_GET_TRANSTABLE_GLOBAL); | |
2050 | if (!hdr) | |
2051 | return -ENOBUFS; | |
2052 | ||
2053 | last_ttvn = atomic_read(&orig->orig_node->last_ttvn); | |
2054 | ||
2055 | if (nla_put(msg, BATADV_ATTR_TT_ADDRESS, ETH_ALEN, common->addr) || | |
2056 | nla_put(msg, BATADV_ATTR_ORIG_ADDRESS, ETH_ALEN, | |
2057 | orig->orig_node->orig) || | |
2058 | nla_put_u8(msg, BATADV_ATTR_TT_TTVN, orig->ttvn) || | |
2059 | nla_put_u8(msg, BATADV_ATTR_TT_LAST_TTVN, last_ttvn) || | |
2060 | nla_put_u32(msg, BATADV_ATTR_TT_CRC32, crc) || | |
2061 | nla_put_u16(msg, BATADV_ATTR_TT_VID, common->vid) || | |
54e22f26 | 2062 | nla_put_u32(msg, BATADV_ATTR_TT_FLAGS, flags)) |
d34f0550 MS |
2063 | goto nla_put_failure; |
2064 | ||
2065 | if (best && nla_put_flag(msg, BATADV_ATTR_FLAG_BEST)) | |
2066 | goto nla_put_failure; | |
2067 | ||
2068 | genlmsg_end(msg, hdr); | |
2069 | return 0; | |
2070 | ||
2071 | nla_put_failure: | |
2072 | genlmsg_cancel(msg, hdr); | |
2073 | return -EMSGSIZE; | |
2074 | } | |
2075 | ||
2076 | /** | |
7e9a8c2c | 2077 | * batadv_tt_global_dump_entry() - Dump one TT global entry into a message |
d34f0550 MS |
2078 | * @msg: Netlink message to dump into |
2079 | * @portid: Port making netlink request | |
2080 | * @seq: Sequence number of netlink message | |
2081 | * @bat_priv: The bat priv with all the soft interface information | |
2082 | * @common: tt local & tt global common data | |
2083 | * @sub_s: Number of entries to skip | |
2084 | * | |
2085 | * This function assumes the caller holds rcu_read_lock(). | |
2086 | * | |
2087 | * Return: Error code, or 0 on success | |
2088 | */ | |
2089 | static int | |
2090 | batadv_tt_global_dump_entry(struct sk_buff *msg, u32 portid, u32 seq, | |
2091 | struct batadv_priv *bat_priv, | |
2092 | struct batadv_tt_common_entry *common, int *sub_s) | |
2093 | { | |
2094 | struct batadv_tt_orig_list_entry *orig_entry, *best_entry; | |
2095 | struct batadv_tt_global_entry *global; | |
2096 | struct hlist_head *head; | |
2097 | int sub = 0; | |
2098 | bool best; | |
2099 | ||
2100 | global = container_of(common, struct batadv_tt_global_entry, common); | |
2101 | best_entry = batadv_transtable_best_orig(bat_priv, global); | |
2102 | head = &global->orig_list; | |
2103 | ||
2104 | hlist_for_each_entry_rcu(orig_entry, head, list) { | |
2105 | if (sub++ < *sub_s) | |
2106 | continue; | |
2107 | ||
2108 | best = (orig_entry == best_entry); | |
2109 | ||
2110 | if (batadv_tt_global_dump_subentry(msg, portid, seq, common, | |
2111 | orig_entry, best)) { | |
2112 | *sub_s = sub - 1; | |
2113 | return -EMSGSIZE; | |
2114 | } | |
2115 | } | |
2116 | ||
2117 | *sub_s = 0; | |
2118 | return 0; | |
2119 | } | |
2120 | ||
2121 | /** | |
7e9a8c2c | 2122 | * batadv_tt_global_dump_bucket() - Dump one TT local bucket into a message |
d34f0550 MS |
2123 | * @msg: Netlink message to dump into |
2124 | * @portid: Port making netlink request | |
2125 | * @seq: Sequence number of netlink message | |
2126 | * @bat_priv: The bat priv with all the soft interface information | |
2127 | * @head: Pointer to the list containing the global tt entries | |
2128 | * @idx_s: Number of entries to skip | |
2129 | * @sub: Number of entries to skip | |
2130 | * | |
2131 | * Return: Error code, or 0 on success | |
2132 | */ | |
2133 | static int | |
2134 | batadv_tt_global_dump_bucket(struct sk_buff *msg, u32 portid, u32 seq, | |
2135 | struct batadv_priv *bat_priv, | |
2136 | struct hlist_head *head, int *idx_s, int *sub) | |
2137 | { | |
2138 | struct batadv_tt_common_entry *common; | |
2139 | int idx = 0; | |
2140 | ||
2141 | rcu_read_lock(); | |
2142 | hlist_for_each_entry_rcu(common, head, hash_entry) { | |
2143 | if (idx++ < *idx_s) | |
2144 | continue; | |
2145 | ||
2146 | if (batadv_tt_global_dump_entry(msg, portid, seq, bat_priv, | |
2147 | common, sub)) { | |
2148 | rcu_read_unlock(); | |
2149 | *idx_s = idx - 1; | |
2150 | return -EMSGSIZE; | |
2151 | } | |
2152 | } | |
2153 | rcu_read_unlock(); | |
2154 | ||
2155 | *idx_s = 0; | |
2156 | *sub = 0; | |
2157 | return 0; | |
2158 | } | |
2159 | ||
2160 | /** | |
7e9a8c2c | 2161 | * batadv_tt_global_dump() - Dump TT global entries into a message |
d34f0550 MS |
2162 | * @msg: Netlink message to dump into |
2163 | * @cb: Parameters from query | |
2164 | * | |
2165 | * Return: Error code, or length of message on success | |
2166 | */ | |
2167 | int batadv_tt_global_dump(struct sk_buff *msg, struct netlink_callback *cb) | |
2168 | { | |
2169 | struct net *net = sock_net(cb->skb->sk); | |
2170 | struct net_device *soft_iface; | |
2171 | struct batadv_priv *bat_priv; | |
2172 | struct batadv_hard_iface *primary_if = NULL; | |
2173 | struct batadv_hashtable *hash; | |
2174 | struct hlist_head *head; | |
2175 | int ret; | |
2176 | int ifindex; | |
2177 | int bucket = cb->args[0]; | |
2178 | int idx = cb->args[1]; | |
2179 | int sub = cb->args[2]; | |
2180 | int portid = NETLINK_CB(cb->skb).portid; | |
2181 | ||
2182 | ifindex = batadv_netlink_get_ifindex(cb->nlh, BATADV_ATTR_MESH_IFINDEX); | |
2183 | if (!ifindex) | |
2184 | return -EINVAL; | |
2185 | ||
2186 | soft_iface = dev_get_by_index(net, ifindex); | |
2187 | if (!soft_iface || !batadv_softif_is_valid(soft_iface)) { | |
2188 | ret = -ENODEV; | |
2189 | goto out; | |
2190 | } | |
2191 | ||
2192 | bat_priv = netdev_priv(soft_iface); | |
2193 | ||
2194 | primary_if = batadv_primary_if_get_selected(bat_priv); | |
2195 | if (!primary_if || primary_if->if_status != BATADV_IF_ACTIVE) { | |
2196 | ret = -ENOENT; | |
2197 | goto out; | |
2198 | } | |
2199 | ||
2200 | hash = bat_priv->tt.global_hash; | |
2201 | ||
2202 | while (bucket < hash->size) { | |
2203 | head = &hash->table[bucket]; | |
2204 | ||
2205 | if (batadv_tt_global_dump_bucket(msg, portid, | |
2206 | cb->nlh->nlmsg_seq, bat_priv, | |
2207 | head, &idx, &sub)) | |
2208 | break; | |
2209 | ||
2210 | bucket++; | |
2211 | } | |
2212 | ||
2213 | ret = msg->len; | |
2214 | ||
2215 | out: | |
2216 | if (primary_if) | |
2217 | batadv_hardif_put(primary_if); | |
2218 | if (soft_iface) | |
2219 | dev_put(soft_iface); | |
2220 | ||
2221 | cb->args[0] = bucket; | |
2222 | cb->args[1] = idx; | |
2223 | cb->args[2] = sub; | |
2224 | ||
2225 | return ret; | |
2226 | } | |
2227 | ||
1d8ab8d3 | 2228 | /** |
7e9a8c2c | 2229 | * _batadv_tt_global_del_orig_entry() - remove and free an orig_entry |
1d8ab8d3 LL |
2230 | * @tt_global_entry: the global entry to remove the orig_entry from |
2231 | * @orig_entry: the orig entry to remove and free | |
2232 | * | |
2233 | * Remove an orig_entry from its list in the given tt_global_entry and | |
2234 | * free this orig_entry afterwards. | |
433ff98f ML |
2235 | * |
2236 | * Caller must hold tt_global_entry->list_lock and ensure orig_entry->list is | |
2237 | * part of a list. | |
1d8ab8d3 LL |
2238 | */ |
2239 | static void | |
433ff98f ML |
2240 | _batadv_tt_global_del_orig_entry(struct batadv_tt_global_entry *tt_global_entry, |
2241 | struct batadv_tt_orig_list_entry *orig_entry) | |
1d8ab8d3 | 2242 | { |
2c72d655 SE |
2243 | lockdep_assert_held(&tt_global_entry->list_lock); |
2244 | ||
1d8ab8d3 LL |
2245 | batadv_tt_global_size_dec(orig_entry->orig_node, |
2246 | tt_global_entry->common.vid); | |
2247 | atomic_dec(&tt_global_entry->orig_list_count); | |
433ff98f ML |
2248 | /* requires holding tt_global_entry->list_lock and orig_entry->list |
2249 | * being part of a list | |
2250 | */ | |
1d8ab8d3 | 2251 | hlist_del_rcu(&orig_entry->list); |
7e2366c6 | 2252 | batadv_tt_orig_list_entry_put(orig_entry); |
1d8ab8d3 LL |
2253 | } |
2254 | ||
db08e6e5 | 2255 | /* deletes the orig list of a tt_global_entry */ |
a513088d | 2256 | static void |
56303d34 | 2257 | batadv_tt_global_del_orig_list(struct batadv_tt_global_entry *tt_global_entry) |
c6c8fea2 | 2258 | { |
db08e6e5 | 2259 | struct hlist_head *head; |
b67bfe0d | 2260 | struct hlist_node *safe; |
56303d34 | 2261 | struct batadv_tt_orig_list_entry *orig_entry; |
a73105b8 | 2262 | |
db08e6e5 SW |
2263 | spin_lock_bh(&tt_global_entry->list_lock); |
2264 | head = &tt_global_entry->orig_list; | |
1d8ab8d3 | 2265 | hlist_for_each_entry_safe(orig_entry, safe, head, list) |
433ff98f | 2266 | _batadv_tt_global_del_orig_entry(tt_global_entry, orig_entry); |
db08e6e5 | 2267 | spin_unlock_bh(&tt_global_entry->list_lock); |
db08e6e5 SW |
2268 | } |
2269 | ||
1d8ab8d3 | 2270 | /** |
7e9a8c2c | 2271 | * batadv_tt_global_del_orig_node() - remove orig_node from a global tt entry |
1d8ab8d3 LL |
2272 | * @bat_priv: the bat priv with all the soft interface information |
2273 | * @tt_global_entry: the global entry to remove the orig_node from | |
2274 | * @orig_node: the originator announcing the client | |
2275 | * @message: message to append to the log on deletion | |
2276 | * | |
2277 | * Remove the given orig_node and its according orig_entry from the given | |
2278 | * global tt entry. | |
2279 | */ | |
a513088d | 2280 | static void |
1d8ab8d3 LL |
2281 | batadv_tt_global_del_orig_node(struct batadv_priv *bat_priv, |
2282 | struct batadv_tt_global_entry *tt_global_entry, | |
2283 | struct batadv_orig_node *orig_node, | |
2284 | const char *message) | |
db08e6e5 SW |
2285 | { |
2286 | struct hlist_head *head; | |
b67bfe0d | 2287 | struct hlist_node *safe; |
56303d34 | 2288 | struct batadv_tt_orig_list_entry *orig_entry; |
16052789 | 2289 | unsigned short vid; |
db08e6e5 SW |
2290 | |
2291 | spin_lock_bh(&tt_global_entry->list_lock); | |
2292 | head = &tt_global_entry->orig_list; | |
b67bfe0d | 2293 | hlist_for_each_entry_safe(orig_entry, safe, head, list) { |
db08e6e5 | 2294 | if (orig_entry->orig_node == orig_node) { |
16052789 | 2295 | vid = tt_global_entry->common.vid; |
39c75a51 | 2296 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
16052789 | 2297 | "Deleting %pM from global tt entry %pM (vid: %d): %s\n", |
1eda58bf | 2298 | orig_node->orig, |
16052789 | 2299 | tt_global_entry->common.addr, |
f7a2bd65 | 2300 | batadv_print_vid(vid), message); |
433ff98f ML |
2301 | _batadv_tt_global_del_orig_entry(tt_global_entry, |
2302 | orig_entry); | |
db08e6e5 SW |
2303 | } |
2304 | } | |
2305 | spin_unlock_bh(&tt_global_entry->list_lock); | |
2306 | } | |
2307 | ||
db08e6e5 | 2308 | /* If the client is to be deleted, we check if it is the last origantor entry |
acd34afa SE |
2309 | * within tt_global entry. If yes, we set the BATADV_TT_CLIENT_ROAM flag and the |
2310 | * timer, otherwise we simply remove the originator scheduled for deletion. | |
db08e6e5 | 2311 | */ |
a513088d | 2312 | static void |
56303d34 SE |
2313 | batadv_tt_global_del_roaming(struct batadv_priv *bat_priv, |
2314 | struct batadv_tt_global_entry *tt_global_entry, | |
2315 | struct batadv_orig_node *orig_node, | |
2316 | const char *message) | |
db08e6e5 SW |
2317 | { |
2318 | bool last_entry = true; | |
2319 | struct hlist_head *head; | |
56303d34 | 2320 | struct batadv_tt_orig_list_entry *orig_entry; |
db08e6e5 SW |
2321 | |
2322 | /* no local entry exists, case 1: | |
2323 | * Check if this is the last one or if other entries exist. | |
2324 | */ | |
2325 | ||
2326 | rcu_read_lock(); | |
2327 | head = &tt_global_entry->orig_list; | |
b67bfe0d | 2328 | hlist_for_each_entry_rcu(orig_entry, head, list) { |
db08e6e5 SW |
2329 | if (orig_entry->orig_node != orig_node) { |
2330 | last_entry = false; | |
2331 | break; | |
2332 | } | |
2333 | } | |
2334 | rcu_read_unlock(); | |
2335 | ||
2336 | if (last_entry) { | |
2337 | /* its the last one, mark for roaming. */ | |
acd34afa | 2338 | tt_global_entry->common.flags |= BATADV_TT_CLIENT_ROAM; |
db08e6e5 | 2339 | tt_global_entry->roam_at = jiffies; |
1fda4c0a | 2340 | } else { |
db08e6e5 SW |
2341 | /* there is another entry, we can simply delete this |
2342 | * one and can still use the other one. | |
2343 | */ | |
1d8ab8d3 LL |
2344 | batadv_tt_global_del_orig_node(bat_priv, tt_global_entry, |
2345 | orig_node, message); | |
1fda4c0a | 2346 | } |
db08e6e5 SW |
2347 | } |
2348 | ||
c018ad3d | 2349 | /** |
7e9a8c2c | 2350 | * batadv_tt_global_del() - remove a client from the global table |
c018ad3d AQ |
2351 | * @bat_priv: the bat priv with all the soft interface information |
2352 | * @orig_node: an originator serving this client | |
2353 | * @addr: the mac address of the client | |
2354 | * @vid: VLAN identifier | |
2355 | * @message: a message explaining the reason for deleting the client to print | |
2356 | * for debugging purpose | |
2357 | * @roaming: true if the deletion has been triggered by a roaming event | |
2358 | */ | |
56303d34 SE |
2359 | static void batadv_tt_global_del(struct batadv_priv *bat_priv, |
2360 | struct batadv_orig_node *orig_node, | |
c018ad3d | 2361 | const unsigned char *addr, unsigned short vid, |
a513088d | 2362 | const char *message, bool roaming) |
a73105b8 | 2363 | { |
170173bf | 2364 | struct batadv_tt_global_entry *tt_global_entry; |
56303d34 | 2365 | struct batadv_tt_local_entry *local_entry = NULL; |
a73105b8 | 2366 | |
c018ad3d | 2367 | tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid); |
db08e6e5 | 2368 | if (!tt_global_entry) |
7683fdc1 | 2369 | goto out; |
a73105b8 | 2370 | |
db08e6e5 | 2371 | if (!roaming) { |
1d8ab8d3 LL |
2372 | batadv_tt_global_del_orig_node(bat_priv, tt_global_entry, |
2373 | orig_node, message); | |
db08e6e5 SW |
2374 | |
2375 | if (hlist_empty(&tt_global_entry->orig_list)) | |
be73b488 AQ |
2376 | batadv_tt_global_free(bat_priv, tt_global_entry, |
2377 | message); | |
db08e6e5 SW |
2378 | |
2379 | goto out; | |
2380 | } | |
92f90f56 SE |
2381 | |
2382 | /* if we are deleting a global entry due to a roam | |
2383 | * event, there are two possibilities: | |
db08e6e5 SW |
2384 | * 1) the client roamed from node A to node B => if there |
2385 | * is only one originator left for this client, we mark | |
acd34afa | 2386 | * it with BATADV_TT_CLIENT_ROAM, we start a timer and we |
92f90f56 SE |
2387 | * wait for node B to claim it. In case of timeout |
2388 | * the entry is purged. | |
db08e6e5 SW |
2389 | * |
2390 | * If there are other originators left, we directly delete | |
2391 | * the originator. | |
92f90f56 | 2392 | * 2) the client roamed to us => we can directly delete |
9cfc7bd6 SE |
2393 | * the global entry, since it is useless now. |
2394 | */ | |
a513088d | 2395 | local_entry = batadv_tt_local_hash_find(bat_priv, |
c018ad3d AQ |
2396 | tt_global_entry->common.addr, |
2397 | vid); | |
a513088d | 2398 | if (local_entry) { |
db08e6e5 | 2399 | /* local entry exists, case 2: client roamed to us. */ |
a513088d | 2400 | batadv_tt_global_del_orig_list(tt_global_entry); |
be73b488 | 2401 | batadv_tt_global_free(bat_priv, tt_global_entry, message); |
1fda4c0a | 2402 | } else { |
db08e6e5 | 2403 | /* no local entry exists, case 1: check for roaming */ |
a513088d SE |
2404 | batadv_tt_global_del_roaming(bat_priv, tt_global_entry, |
2405 | orig_node, message); | |
1fda4c0a | 2406 | } |
92f90f56 | 2407 | |
cc47f66e | 2408 | out: |
7683fdc1 | 2409 | if (tt_global_entry) |
5dafd8a6 | 2410 | batadv_tt_global_entry_put(tt_global_entry); |
a513088d | 2411 | if (local_entry) |
95c0db90 | 2412 | batadv_tt_local_entry_put(local_entry); |
a73105b8 AQ |
2413 | } |
2414 | ||
95fb130d | 2415 | /** |
7e9a8c2c SE |
2416 | * batadv_tt_global_del_orig() - remove all the TT global entries belonging to |
2417 | * the given originator matching the provided vid | |
95fb130d AQ |
2418 | * @bat_priv: the bat priv with all the soft interface information |
2419 | * @orig_node: the originator owning the entries to remove | |
2420 | * @match_vid: the VLAN identifier to match. If negative all the entries will be | |
2421 | * removed | |
2422 | * @message: debug message to print as "reason" | |
2423 | */ | |
56303d34 SE |
2424 | void batadv_tt_global_del_orig(struct batadv_priv *bat_priv, |
2425 | struct batadv_orig_node *orig_node, | |
6b5e971a | 2426 | s32 match_vid, |
56303d34 | 2427 | const char *message) |
c6c8fea2 | 2428 | { |
56303d34 SE |
2429 | struct batadv_tt_global_entry *tt_global; |
2430 | struct batadv_tt_common_entry *tt_common_entry; | |
6b5e971a | 2431 | u32 i; |
807736f6 | 2432 | struct batadv_hashtable *hash = bat_priv->tt.global_hash; |
b67bfe0d | 2433 | struct hlist_node *safe; |
a73105b8 | 2434 | struct hlist_head *head; |
7683fdc1 | 2435 | spinlock_t *list_lock; /* protects write access to the hash lists */ |
16052789 | 2436 | unsigned short vid; |
c6c8fea2 | 2437 | |
6e801494 SW |
2438 | if (!hash) |
2439 | return; | |
2440 | ||
a73105b8 AQ |
2441 | for (i = 0; i < hash->size; i++) { |
2442 | head = &hash->table[i]; | |
7683fdc1 | 2443 | list_lock = &hash->list_locks[i]; |
c6c8fea2 | 2444 | |
7683fdc1 | 2445 | spin_lock_bh(list_lock); |
b67bfe0d | 2446 | hlist_for_each_entry_safe(tt_common_entry, safe, |
7c64fd98 | 2447 | head, hash_entry) { |
95fb130d AQ |
2448 | /* remove only matching entries */ |
2449 | if (match_vid >= 0 && tt_common_entry->vid != match_vid) | |
2450 | continue; | |
2451 | ||
56303d34 SE |
2452 | tt_global = container_of(tt_common_entry, |
2453 | struct batadv_tt_global_entry, | |
2454 | common); | |
db08e6e5 | 2455 | |
1d8ab8d3 LL |
2456 | batadv_tt_global_del_orig_node(bat_priv, tt_global, |
2457 | orig_node, message); | |
db08e6e5 | 2458 | |
56303d34 | 2459 | if (hlist_empty(&tt_global->orig_list)) { |
16052789 | 2460 | vid = tt_global->common.vid; |
39c75a51 | 2461 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
16052789 AQ |
2462 | "Deleting global tt entry %pM (vid: %d): %s\n", |
2463 | tt_global->common.addr, | |
f7a2bd65 | 2464 | batadv_print_vid(vid), message); |
b67bfe0d | 2465 | hlist_del_rcu(&tt_common_entry->hash_entry); |
5dafd8a6 | 2466 | batadv_tt_global_entry_put(tt_global); |
7683fdc1 | 2467 | } |
a73105b8 | 2468 | } |
7683fdc1 | 2469 | spin_unlock_bh(list_lock); |
c6c8fea2 | 2470 | } |
ac4eebd4 | 2471 | clear_bit(BATADV_ORIG_CAPA_HAS_TT, &orig_node->capa_initialized); |
c6c8fea2 SE |
2472 | } |
2473 | ||
30cfd02b AQ |
2474 | static bool batadv_tt_global_to_purge(struct batadv_tt_global_entry *tt_global, |
2475 | char **msg) | |
cc47f66e | 2476 | { |
30cfd02b AQ |
2477 | bool purge = false; |
2478 | unsigned long roam_timeout = BATADV_TT_CLIENT_ROAM_TIMEOUT; | |
2479 | unsigned long temp_timeout = BATADV_TT_CLIENT_TEMP_TIMEOUT; | |
42d0b044 | 2480 | |
30cfd02b AQ |
2481 | if ((tt_global->common.flags & BATADV_TT_CLIENT_ROAM) && |
2482 | batadv_has_timed_out(tt_global->roam_at, roam_timeout)) { | |
2483 | purge = true; | |
2484 | *msg = "Roaming timeout\n"; | |
2485 | } | |
42d0b044 | 2486 | |
30cfd02b AQ |
2487 | if ((tt_global->common.flags & BATADV_TT_CLIENT_TEMP) && |
2488 | batadv_has_timed_out(tt_global->common.added_at, temp_timeout)) { | |
2489 | purge = true; | |
2490 | *msg = "Temporary client timeout\n"; | |
42d0b044 | 2491 | } |
30cfd02b AQ |
2492 | |
2493 | return purge; | |
42d0b044 SE |
2494 | } |
2495 | ||
30cfd02b | 2496 | static void batadv_tt_global_purge(struct batadv_priv *bat_priv) |
42d0b044 | 2497 | { |
807736f6 | 2498 | struct batadv_hashtable *hash = bat_priv->tt.global_hash; |
cc47f66e | 2499 | struct hlist_head *head; |
b67bfe0d | 2500 | struct hlist_node *node_tmp; |
7683fdc1 | 2501 | spinlock_t *list_lock; /* protects write access to the hash lists */ |
6b5e971a | 2502 | u32 i; |
30cfd02b AQ |
2503 | char *msg = NULL; |
2504 | struct batadv_tt_common_entry *tt_common; | |
2505 | struct batadv_tt_global_entry *tt_global; | |
cc47f66e | 2506 | |
cc47f66e AQ |
2507 | for (i = 0; i < hash->size; i++) { |
2508 | head = &hash->table[i]; | |
7683fdc1 | 2509 | list_lock = &hash->list_locks[i]; |
cc47f66e | 2510 | |
7683fdc1 | 2511 | spin_lock_bh(list_lock); |
b67bfe0d | 2512 | hlist_for_each_entry_safe(tt_common, node_tmp, head, |
30cfd02b AQ |
2513 | hash_entry) { |
2514 | tt_global = container_of(tt_common, | |
2515 | struct batadv_tt_global_entry, | |
2516 | common); | |
2517 | ||
2518 | if (!batadv_tt_global_to_purge(tt_global, &msg)) | |
2519 | continue; | |
2520 | ||
2521 | batadv_dbg(BATADV_DBG_TT, bat_priv, | |
16052789 AQ |
2522 | "Deleting global tt entry %pM (vid: %d): %s\n", |
2523 | tt_global->common.addr, | |
f7a2bd65 | 2524 | batadv_print_vid(tt_global->common.vid), |
16052789 | 2525 | msg); |
30cfd02b | 2526 | |
b67bfe0d | 2527 | hlist_del_rcu(&tt_common->hash_entry); |
30cfd02b | 2528 | |
5dafd8a6 | 2529 | batadv_tt_global_entry_put(tt_global); |
30cfd02b | 2530 | } |
7683fdc1 | 2531 | spin_unlock_bh(list_lock); |
cc47f66e | 2532 | } |
cc47f66e AQ |
2533 | } |
2534 | ||
56303d34 | 2535 | static void batadv_tt_global_table_free(struct batadv_priv *bat_priv) |
c6c8fea2 | 2536 | { |
5bf74e9c | 2537 | struct batadv_hashtable *hash; |
7683fdc1 | 2538 | spinlock_t *list_lock; /* protects write access to the hash lists */ |
56303d34 SE |
2539 | struct batadv_tt_common_entry *tt_common_entry; |
2540 | struct batadv_tt_global_entry *tt_global; | |
b67bfe0d | 2541 | struct hlist_node *node_tmp; |
7683fdc1 | 2542 | struct hlist_head *head; |
6b5e971a | 2543 | u32 i; |
7683fdc1 | 2544 | |
807736f6 | 2545 | if (!bat_priv->tt.global_hash) |
c6c8fea2 SE |
2546 | return; |
2547 | ||
807736f6 | 2548 | hash = bat_priv->tt.global_hash; |
7683fdc1 AQ |
2549 | |
2550 | for (i = 0; i < hash->size; i++) { | |
2551 | head = &hash->table[i]; | |
2552 | list_lock = &hash->list_locks[i]; | |
2553 | ||
2554 | spin_lock_bh(list_lock); | |
b67bfe0d | 2555 | hlist_for_each_entry_safe(tt_common_entry, node_tmp, |
7683fdc1 | 2556 | head, hash_entry) { |
b67bfe0d | 2557 | hlist_del_rcu(&tt_common_entry->hash_entry); |
56303d34 SE |
2558 | tt_global = container_of(tt_common_entry, |
2559 | struct batadv_tt_global_entry, | |
2560 | common); | |
5dafd8a6 | 2561 | batadv_tt_global_entry_put(tt_global); |
7683fdc1 AQ |
2562 | } |
2563 | spin_unlock_bh(list_lock); | |
2564 | } | |
2565 | ||
1a8eaf07 | 2566 | batadv_hash_destroy(hash); |
7683fdc1 | 2567 | |
807736f6 | 2568 | bat_priv->tt.global_hash = NULL; |
c6c8fea2 SE |
2569 | } |
2570 | ||
56303d34 SE |
2571 | static bool |
2572 | _batadv_is_ap_isolated(struct batadv_tt_local_entry *tt_local_entry, | |
2573 | struct batadv_tt_global_entry *tt_global_entry) | |
59b699cd | 2574 | { |
acd34afa SE |
2575 | if (tt_local_entry->common.flags & BATADV_TT_CLIENT_WIFI && |
2576 | tt_global_entry->common.flags & BATADV_TT_CLIENT_WIFI) | |
75ae84a4 | 2577 | return true; |
59b699cd | 2578 | |
2d2fcc2a AQ |
2579 | /* check if the two clients are marked as isolated */ |
2580 | if (tt_local_entry->common.flags & BATADV_TT_CLIENT_ISOLA && | |
2581 | tt_global_entry->common.flags & BATADV_TT_CLIENT_ISOLA) | |
75ae84a4 | 2582 | return true; |
2d2fcc2a | 2583 | |
75ae84a4 | 2584 | return false; |
59b699cd AQ |
2585 | } |
2586 | ||
c018ad3d | 2587 | /** |
7e9a8c2c | 2588 | * batadv_transtable_search() - get the mesh destination for a given client |
c018ad3d AQ |
2589 | * @bat_priv: the bat priv with all the soft interface information |
2590 | * @src: mac address of the source client | |
2591 | * @addr: mac address of the destination client | |
2592 | * @vid: VLAN identifier | |
2593 | * | |
62fe710f | 2594 | * Return: a pointer to the originator that was selected as destination in the |
c018ad3d AQ |
2595 | * mesh for contacting the client 'addr', NULL otherwise. |
2596 | * In case of multiple originators serving the same client, the function returns | |
2597 | * the best one (best in terms of metric towards the destination node). | |
2598 | * | |
2599 | * If the two clients are AP isolated the function returns NULL. | |
2600 | */ | |
56303d34 | 2601 | struct batadv_orig_node *batadv_transtable_search(struct batadv_priv *bat_priv, |
6b5e971a SE |
2602 | const u8 *src, |
2603 | const u8 *addr, | |
c018ad3d | 2604 | unsigned short vid) |
c6c8fea2 | 2605 | { |
56303d34 SE |
2606 | struct batadv_tt_local_entry *tt_local_entry = NULL; |
2607 | struct batadv_tt_global_entry *tt_global_entry = NULL; | |
2608 | struct batadv_orig_node *orig_node = NULL; | |
981d8900 | 2609 | struct batadv_tt_orig_list_entry *best_entry; |
b8cbd81d | 2610 | |
eceb22ae | 2611 | if (src && batadv_vlan_ap_isola_get(bat_priv, vid)) { |
c018ad3d | 2612 | tt_local_entry = batadv_tt_local_hash_find(bat_priv, src, vid); |
068ee6e2 AQ |
2613 | if (!tt_local_entry || |
2614 | (tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING)) | |
3d393e47 AQ |
2615 | goto out; |
2616 | } | |
7aadf889 | 2617 | |
c018ad3d | 2618 | tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid); |
2dafb49d | 2619 | if (!tt_global_entry) |
7b36e8ee | 2620 | goto out; |
7aadf889 | 2621 | |
3d393e47 | 2622 | /* check whether the clients should not communicate due to AP |
9cfc7bd6 SE |
2623 | * isolation |
2624 | */ | |
a513088d SE |
2625 | if (tt_local_entry && |
2626 | _batadv_is_ap_isolated(tt_local_entry, tt_global_entry)) | |
3d393e47 AQ |
2627 | goto out; |
2628 | ||
db08e6e5 | 2629 | rcu_read_lock(); |
4627456a | 2630 | best_entry = batadv_transtable_best_orig(bat_priv, tt_global_entry); |
db08e6e5 | 2631 | /* found anything? */ |
981d8900 SE |
2632 | if (best_entry) |
2633 | orig_node = best_entry->orig_node; | |
7c124391 | 2634 | if (orig_node && !kref_get_unless_zero(&orig_node->refcount)) |
db08e6e5 SW |
2635 | orig_node = NULL; |
2636 | rcu_read_unlock(); | |
981d8900 | 2637 | |
7b36e8ee | 2638 | out: |
3d393e47 | 2639 | if (tt_global_entry) |
5dafd8a6 | 2640 | batadv_tt_global_entry_put(tt_global_entry); |
3d393e47 | 2641 | if (tt_local_entry) |
95c0db90 | 2642 | batadv_tt_local_entry_put(tt_local_entry); |
3d393e47 | 2643 | |
7b36e8ee | 2644 | return orig_node; |
c6c8fea2 | 2645 | } |
a73105b8 | 2646 | |
ced72933 | 2647 | /** |
7e9a8c2c | 2648 | * batadv_tt_global_crc() - calculates the checksum of the local table belonging |
ced72933 AQ |
2649 | * to the given orig_node |
2650 | * @bat_priv: the bat priv with all the soft interface information | |
0ffa9e8d | 2651 | * @orig_node: originator for which the CRC should be computed |
7ea7b4a1 | 2652 | * @vid: VLAN identifier for which the CRC32 has to be computed |
0ffa9e8d AQ |
2653 | * |
2654 | * This function computes the checksum for the global table corresponding to a | |
2655 | * specific originator. In particular, the checksum is computed as follows: For | |
2656 | * each client connected to the originator the CRC32C of the MAC address and the | |
2657 | * VID is computed and then all the CRC32Cs of the various clients are xor'ed | |
2658 | * together. | |
2659 | * | |
2660 | * The idea behind is that CRC32C should be used as much as possible in order to | |
2661 | * produce a unique hash of the table, but since the order which is used to feed | |
2662 | * the CRC32C function affects the result and since every node in the network | |
2663 | * probably sorts the clients differently, the hash function cannot be directly | |
2664 | * computed over the entire table. Hence the CRC32C is used only on | |
2665 | * the single client entry, while all the results are then xor'ed together | |
2666 | * because the XOR operation can combine them all while trying to reduce the | |
2667 | * noise as much as possible. | |
2668 | * | |
62fe710f | 2669 | * Return: the checksum of the global table of a given originator. |
ced72933 | 2670 | */ |
6b5e971a SE |
2671 | static u32 batadv_tt_global_crc(struct batadv_priv *bat_priv, |
2672 | struct batadv_orig_node *orig_node, | |
2673 | unsigned short vid) | |
a73105b8 | 2674 | { |
807736f6 | 2675 | struct batadv_hashtable *hash = bat_priv->tt.global_hash; |
54e22f26 | 2676 | struct batadv_tt_orig_list_entry *tt_orig; |
56303d34 SE |
2677 | struct batadv_tt_common_entry *tt_common; |
2678 | struct batadv_tt_global_entry *tt_global; | |
a73105b8 | 2679 | struct hlist_head *head; |
6b5e971a SE |
2680 | u32 i, crc_tmp, crc = 0; |
2681 | u8 flags; | |
a30e22ca | 2682 | __be16 tmp_vid; |
a73105b8 AQ |
2683 | |
2684 | for (i = 0; i < hash->size; i++) { | |
2685 | head = &hash->table[i]; | |
2686 | ||
2687 | rcu_read_lock(); | |
b67bfe0d | 2688 | hlist_for_each_entry_rcu(tt_common, head, hash_entry) { |
56303d34 SE |
2689 | tt_global = container_of(tt_common, |
2690 | struct batadv_tt_global_entry, | |
2691 | common); | |
7ea7b4a1 AQ |
2692 | /* compute the CRC only for entries belonging to the |
2693 | * VLAN identified by the vid passed as parameter | |
2694 | */ | |
2695 | if (tt_common->vid != vid) | |
2696 | continue; | |
2697 | ||
db08e6e5 SW |
2698 | /* Roaming clients are in the global table for |
2699 | * consistency only. They don't have to be | |
2700 | * taken into account while computing the | |
2701 | * global crc | |
2702 | */ | |
acd34afa | 2703 | if (tt_common->flags & BATADV_TT_CLIENT_ROAM) |
db08e6e5 | 2704 | continue; |
30cfd02b AQ |
2705 | /* Temporary clients have not been announced yet, so |
2706 | * they have to be skipped while computing the global | |
2707 | * crc | |
2708 | */ | |
2709 | if (tt_common->flags & BATADV_TT_CLIENT_TEMP) | |
2710 | continue; | |
db08e6e5 SW |
2711 | |
2712 | /* find out if this global entry is announced by this | |
2713 | * originator | |
2714 | */ | |
54e22f26 LL |
2715 | tt_orig = batadv_tt_global_orig_entry_find(tt_global, |
2716 | orig_node); | |
2717 | if (!tt_orig) | |
db08e6e5 SW |
2718 | continue; |
2719 | ||
a30e22ca AQ |
2720 | /* use network order to read the VID: this ensures that |
2721 | * every node reads the bytes in the same order. | |
2722 | */ | |
2723 | tmp_vid = htons(tt_common->vid); | |
2724 | crc_tmp = crc32c(0, &tmp_vid, sizeof(tmp_vid)); | |
0eb01568 AQ |
2725 | |
2726 | /* compute the CRC on flags that have to be kept in sync | |
2727 | * among nodes | |
2728 | */ | |
54e22f26 | 2729 | flags = tt_orig->flags; |
0eb01568 AQ |
2730 | crc_tmp = crc32c(crc_tmp, &flags, sizeof(flags)); |
2731 | ||
0ffa9e8d | 2732 | crc ^= crc32c(crc_tmp, tt_common->addr, ETH_ALEN); |
54e22f26 LL |
2733 | |
2734 | batadv_tt_orig_list_entry_put(tt_orig); | |
a73105b8 AQ |
2735 | } |
2736 | rcu_read_unlock(); | |
2737 | } | |
2738 | ||
ced72933 | 2739 | return crc; |
a73105b8 AQ |
2740 | } |
2741 | ||
ced72933 | 2742 | /** |
7e9a8c2c | 2743 | * batadv_tt_local_crc() - calculates the checksum of the local table |
ced72933 | 2744 | * @bat_priv: the bat priv with all the soft interface information |
7ea7b4a1 | 2745 | * @vid: VLAN identifier for which the CRC32 has to be computed |
0ffa9e8d AQ |
2746 | * |
2747 | * For details about the computation, please refer to the documentation for | |
2748 | * batadv_tt_global_crc(). | |
2749 | * | |
62fe710f | 2750 | * Return: the checksum of the local table |
ced72933 | 2751 | */ |
6b5e971a SE |
2752 | static u32 batadv_tt_local_crc(struct batadv_priv *bat_priv, |
2753 | unsigned short vid) | |
a73105b8 | 2754 | { |
807736f6 | 2755 | struct batadv_hashtable *hash = bat_priv->tt.local_hash; |
56303d34 | 2756 | struct batadv_tt_common_entry *tt_common; |
a73105b8 | 2757 | struct hlist_head *head; |
6b5e971a SE |
2758 | u32 i, crc_tmp, crc = 0; |
2759 | u8 flags; | |
a30e22ca | 2760 | __be16 tmp_vid; |
a73105b8 AQ |
2761 | |
2762 | for (i = 0; i < hash->size; i++) { | |
2763 | head = &hash->table[i]; | |
2764 | ||
2765 | rcu_read_lock(); | |
b67bfe0d | 2766 | hlist_for_each_entry_rcu(tt_common, head, hash_entry) { |
7ea7b4a1 AQ |
2767 | /* compute the CRC only for entries belonging to the |
2768 | * VLAN identified by vid | |
2769 | */ | |
2770 | if (tt_common->vid != vid) | |
2771 | continue; | |
2772 | ||
058d0e26 | 2773 | /* not yet committed clients have not to be taken into |
9cfc7bd6 SE |
2774 | * account while computing the CRC |
2775 | */ | |
acd34afa | 2776 | if (tt_common->flags & BATADV_TT_CLIENT_NEW) |
058d0e26 | 2777 | continue; |
ced72933 | 2778 | |
a30e22ca AQ |
2779 | /* use network order to read the VID: this ensures that |
2780 | * every node reads the bytes in the same order. | |
2781 | */ | |
2782 | tmp_vid = htons(tt_common->vid); | |
2783 | crc_tmp = crc32c(0, &tmp_vid, sizeof(tmp_vid)); | |
0eb01568 AQ |
2784 | |
2785 | /* compute the CRC on flags that have to be kept in sync | |
2786 | * among nodes | |
2787 | */ | |
2788 | flags = tt_common->flags & BATADV_TT_SYNC_MASK; | |
2789 | crc_tmp = crc32c(crc_tmp, &flags, sizeof(flags)); | |
2790 | ||
0ffa9e8d | 2791 | crc ^= crc32c(crc_tmp, tt_common->addr, ETH_ALEN); |
a73105b8 | 2792 | } |
a73105b8 AQ |
2793 | rcu_read_unlock(); |
2794 | } | |
2795 | ||
ced72933 | 2796 | return crc; |
a73105b8 AQ |
2797 | } |
2798 | ||
9c4604a2 | 2799 | /** |
7e9a8c2c | 2800 | * batadv_tt_req_node_release() - free tt_req node entry |
9c4604a2 SE |
2801 | * @ref: kref pointer of the tt req_node entry |
2802 | */ | |
2803 | static void batadv_tt_req_node_release(struct kref *ref) | |
2804 | { | |
2805 | struct batadv_tt_req_node *tt_req_node; | |
2806 | ||
2807 | tt_req_node = container_of(ref, struct batadv_tt_req_node, refcount); | |
2808 | ||
86452f81 | 2809 | kmem_cache_free(batadv_tt_req_cache, tt_req_node); |
9c4604a2 SE |
2810 | } |
2811 | ||
2812 | /** | |
7e9a8c2c | 2813 | * batadv_tt_req_node_put() - decrement the tt_req_node refcounter and |
9c4604a2 SE |
2814 | * possibly release it |
2815 | * @tt_req_node: tt_req_node to be free'd | |
2816 | */ | |
2817 | static void batadv_tt_req_node_put(struct batadv_tt_req_node *tt_req_node) | |
2818 | { | |
2819 | kref_put(&tt_req_node->refcount, batadv_tt_req_node_release); | |
2820 | } | |
2821 | ||
56303d34 | 2822 | static void batadv_tt_req_list_free(struct batadv_priv *bat_priv) |
a73105b8 | 2823 | { |
7c26a53b ML |
2824 | struct batadv_tt_req_node *node; |
2825 | struct hlist_node *safe; | |
a73105b8 | 2826 | |
807736f6 | 2827 | spin_lock_bh(&bat_priv->tt.req_list_lock); |
a73105b8 | 2828 | |
7c26a53b ML |
2829 | hlist_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) { |
2830 | hlist_del_init(&node->list); | |
9c4604a2 | 2831 | batadv_tt_req_node_put(node); |
a73105b8 AQ |
2832 | } |
2833 | ||
807736f6 | 2834 | spin_unlock_bh(&bat_priv->tt.req_list_lock); |
a73105b8 AQ |
2835 | } |
2836 | ||
56303d34 SE |
2837 | static void batadv_tt_save_orig_buffer(struct batadv_priv *bat_priv, |
2838 | struct batadv_orig_node *orig_node, | |
e8cf234a | 2839 | const void *tt_buff, |
6b5e971a | 2840 | u16 tt_buff_len) |
a73105b8 | 2841 | { |
a73105b8 | 2842 | /* Replace the old buffer only if I received something in the |
9cfc7bd6 SE |
2843 | * last OGM (the OGM could carry no changes) |
2844 | */ | |
a73105b8 AQ |
2845 | spin_lock_bh(&orig_node->tt_buff_lock); |
2846 | if (tt_buff_len > 0) { | |
2847 | kfree(orig_node->tt_buff); | |
2848 | orig_node->tt_buff_len = 0; | |
2849 | orig_node->tt_buff = kmalloc(tt_buff_len, GFP_ATOMIC); | |
2850 | if (orig_node->tt_buff) { | |
2851 | memcpy(orig_node->tt_buff, tt_buff, tt_buff_len); | |
2852 | orig_node->tt_buff_len = tt_buff_len; | |
2853 | } | |
2854 | } | |
2855 | spin_unlock_bh(&orig_node->tt_buff_lock); | |
2856 | } | |
2857 | ||
56303d34 | 2858 | static void batadv_tt_req_purge(struct batadv_priv *bat_priv) |
a73105b8 | 2859 | { |
7c26a53b ML |
2860 | struct batadv_tt_req_node *node; |
2861 | struct hlist_node *safe; | |
a73105b8 | 2862 | |
807736f6 | 2863 | spin_lock_bh(&bat_priv->tt.req_list_lock); |
7c26a53b | 2864 | hlist_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) { |
42d0b044 SE |
2865 | if (batadv_has_timed_out(node->issued_at, |
2866 | BATADV_TT_REQUEST_TIMEOUT)) { | |
7c26a53b | 2867 | hlist_del_init(&node->list); |
9c4604a2 | 2868 | batadv_tt_req_node_put(node); |
a73105b8 AQ |
2869 | } |
2870 | } | |
807736f6 | 2871 | spin_unlock_bh(&bat_priv->tt.req_list_lock); |
a73105b8 AQ |
2872 | } |
2873 | ||
383b8636 | 2874 | /** |
7e9a8c2c | 2875 | * batadv_tt_req_node_new() - search and possibly create a tt_req_node object |
383b8636 ML |
2876 | * @bat_priv: the bat priv with all the soft interface information |
2877 | * @orig_node: orig node this request is being issued for | |
2878 | * | |
62fe710f | 2879 | * Return: the pointer to the new tt_req_node struct if no request |
383b8636 | 2880 | * has already been issued for this orig_node, NULL otherwise. |
9cfc7bd6 | 2881 | */ |
56303d34 | 2882 | static struct batadv_tt_req_node * |
383b8636 | 2883 | batadv_tt_req_node_new(struct batadv_priv *bat_priv, |
56303d34 | 2884 | struct batadv_orig_node *orig_node) |
a73105b8 | 2885 | { |
56303d34 | 2886 | struct batadv_tt_req_node *tt_req_node_tmp, *tt_req_node = NULL; |
a73105b8 | 2887 | |
807736f6 | 2888 | spin_lock_bh(&bat_priv->tt.req_list_lock); |
7c26a53b | 2889 | hlist_for_each_entry(tt_req_node_tmp, &bat_priv->tt.req_list, list) { |
1eda58bf SE |
2890 | if (batadv_compare_eth(tt_req_node_tmp, orig_node) && |
2891 | !batadv_has_timed_out(tt_req_node_tmp->issued_at, | |
42d0b044 | 2892 | BATADV_TT_REQUEST_TIMEOUT)) |
a73105b8 AQ |
2893 | goto unlock; |
2894 | } | |
2895 | ||
86452f81 | 2896 | tt_req_node = kmem_cache_alloc(batadv_tt_req_cache, GFP_ATOMIC); |
a73105b8 AQ |
2897 | if (!tt_req_node) |
2898 | goto unlock; | |
2899 | ||
9c4604a2 | 2900 | kref_init(&tt_req_node->refcount); |
8fdd0153 | 2901 | ether_addr_copy(tt_req_node->addr, orig_node->orig); |
a73105b8 AQ |
2902 | tt_req_node->issued_at = jiffies; |
2903 | ||
9c4604a2 | 2904 | kref_get(&tt_req_node->refcount); |
7c26a53b | 2905 | hlist_add_head(&tt_req_node->list, &bat_priv->tt.req_list); |
a73105b8 | 2906 | unlock: |
807736f6 | 2907 | spin_unlock_bh(&bat_priv->tt.req_list_lock); |
a73105b8 AQ |
2908 | return tt_req_node; |
2909 | } | |
2910 | ||
335fbe0f | 2911 | /** |
7072337e | 2912 | * batadv_tt_local_valid() - verify local tt entry and get flags |
335fbe0f ML |
2913 | * @entry_ptr: to be checked local tt entry |
2914 | * @data_ptr: not used but definition required to satisfy the callback prototype | |
7072337e LL |
2915 | * @flags: a pointer to store TT flags for this client to |
2916 | * | |
2917 | * Checks the validity of the given local TT entry. If it is, then the provided | |
2918 | * flags pointer is updated. | |
335fbe0f | 2919 | * |
4b426b10 | 2920 | * Return: true if the entry is a valid, false otherwise. |
335fbe0f | 2921 | */ |
7072337e LL |
2922 | static bool batadv_tt_local_valid(const void *entry_ptr, |
2923 | const void *data_ptr, | |
2924 | u8 *flags) | |
058d0e26 | 2925 | { |
56303d34 | 2926 | const struct batadv_tt_common_entry *tt_common_entry = entry_ptr; |
058d0e26 | 2927 | |
acd34afa | 2928 | if (tt_common_entry->flags & BATADV_TT_CLIENT_NEW) |
4b426b10 | 2929 | return false; |
7072337e LL |
2930 | |
2931 | if (flags) | |
2932 | *flags = tt_common_entry->flags; | |
2933 | ||
4b426b10 | 2934 | return true; |
058d0e26 AQ |
2935 | } |
2936 | ||
7072337e LL |
2937 | /** |
2938 | * batadv_tt_global_valid() - verify global tt entry and get flags | |
2939 | * @entry_ptr: to be checked global tt entry | |
2940 | * @data_ptr: an orig_node object (may be NULL) | |
2941 | * @flags: a pointer to store TT flags for this client to | |
2942 | * | |
2943 | * Checks the validity of the given global TT entry. If it is, then the provided | |
2944 | * flags pointer is updated either with the common (summed) TT flags if data_ptr | |
2945 | * is NULL or the specific, per originator TT flags otherwise. | |
2946 | * | |
2947 | * Return: true if the entry is a valid, false otherwise. | |
2948 | */ | |
4b426b10 | 2949 | static bool batadv_tt_global_valid(const void *entry_ptr, |
7072337e LL |
2950 | const void *data_ptr, |
2951 | u8 *flags) | |
a73105b8 | 2952 | { |
56303d34 SE |
2953 | const struct batadv_tt_common_entry *tt_common_entry = entry_ptr; |
2954 | const struct batadv_tt_global_entry *tt_global_entry; | |
2955 | const struct batadv_orig_node *orig_node = data_ptr; | |
a73105b8 | 2956 | |
30cfd02b AQ |
2957 | if (tt_common_entry->flags & BATADV_TT_CLIENT_ROAM || |
2958 | tt_common_entry->flags & BATADV_TT_CLIENT_TEMP) | |
4b426b10 | 2959 | return false; |
cc47f66e | 2960 | |
56303d34 SE |
2961 | tt_global_entry = container_of(tt_common_entry, |
2962 | struct batadv_tt_global_entry, | |
48100bac AQ |
2963 | common); |
2964 | ||
7072337e LL |
2965 | return batadv_tt_global_entry_has_orig(tt_global_entry, orig_node, |
2966 | flags); | |
a73105b8 AQ |
2967 | } |
2968 | ||
335fbe0f | 2969 | /** |
7e9a8c2c | 2970 | * batadv_tt_tvlv_generate() - fill the tvlv buff with the tt entries from the |
7ea7b4a1 | 2971 | * specified tt hash |
335fbe0f ML |
2972 | * @bat_priv: the bat priv with all the soft interface information |
2973 | * @hash: hash table containing the tt entries | |
2974 | * @tt_len: expected tvlv tt data buffer length in number of bytes | |
7ea7b4a1 | 2975 | * @tvlv_buff: pointer to the buffer to fill with the TT data |
7072337e | 2976 | * @valid_cb: function to filter tt change entries and to return TT flags |
335fbe0f | 2977 | * @cb_data: data passed to the filter function as argument |
7072337e LL |
2978 | * |
2979 | * Fills the tvlv buff with the tt entries from the specified hash. If valid_cb | |
2980 | * is not provided then this becomes a no-op. | |
335fbe0f | 2981 | */ |
7ea7b4a1 AQ |
2982 | static void batadv_tt_tvlv_generate(struct batadv_priv *bat_priv, |
2983 | struct batadv_hashtable *hash, | |
6b5e971a | 2984 | void *tvlv_buff, u16 tt_len, |
4b426b10 | 2985 | bool (*valid_cb)(const void *, |
7072337e LL |
2986 | const void *, |
2987 | u8 *flags), | |
7ea7b4a1 | 2988 | void *cb_data) |
a73105b8 | 2989 | { |
56303d34 | 2990 | struct batadv_tt_common_entry *tt_common_entry; |
335fbe0f | 2991 | struct batadv_tvlv_tt_change *tt_change; |
a73105b8 | 2992 | struct hlist_head *head; |
6b5e971a | 2993 | u16 tt_tot, tt_num_entries = 0; |
7072337e LL |
2994 | u8 flags; |
2995 | bool ret; | |
6b5e971a | 2996 | u32 i; |
a73105b8 | 2997 | |
298e6e68 | 2998 | tt_tot = batadv_tt_entries(tt_len); |
7ea7b4a1 | 2999 | tt_change = (struct batadv_tvlv_tt_change *)tvlv_buff; |
a73105b8 | 3000 | |
7072337e LL |
3001 | if (!valid_cb) |
3002 | return; | |
3003 | ||
a73105b8 AQ |
3004 | rcu_read_lock(); |
3005 | for (i = 0; i < hash->size; i++) { | |
3006 | head = &hash->table[i]; | |
3007 | ||
b67bfe0d | 3008 | hlist_for_each_entry_rcu(tt_common_entry, |
a73105b8 | 3009 | head, hash_entry) { |
335fbe0f | 3010 | if (tt_tot == tt_num_entries) |
a73105b8 AQ |
3011 | break; |
3012 | ||
7072337e LL |
3013 | ret = valid_cb(tt_common_entry, cb_data, &flags); |
3014 | if (!ret) | |
a73105b8 AQ |
3015 | continue; |
3016 | ||
8fdd0153 | 3017 | ether_addr_copy(tt_change->addr, tt_common_entry->addr); |
7072337e | 3018 | tt_change->flags = flags; |
c018ad3d | 3019 | tt_change->vid = htons(tt_common_entry->vid); |
ca663046 AQ |
3020 | memset(tt_change->reserved, 0, |
3021 | sizeof(tt_change->reserved)); | |
a73105b8 | 3022 | |
335fbe0f | 3023 | tt_num_entries++; |
a73105b8 AQ |
3024 | tt_change++; |
3025 | } | |
3026 | } | |
3027 | rcu_read_unlock(); | |
7ea7b4a1 | 3028 | } |
a73105b8 | 3029 | |
7ea7b4a1 | 3030 | /** |
7e9a8c2c | 3031 | * batadv_tt_global_check_crc() - check if all the CRCs are correct |
7ea7b4a1 AQ |
3032 | * @orig_node: originator for which the CRCs have to be checked |
3033 | * @tt_vlan: pointer to the first tvlv VLAN entry | |
3034 | * @num_vlan: number of tvlv VLAN entries | |
7ea7b4a1 | 3035 | * |
62fe710f | 3036 | * Return: true if all the received CRCs match the locally stored ones, false |
7ea7b4a1 AQ |
3037 | * otherwise |
3038 | */ | |
3039 | static bool batadv_tt_global_check_crc(struct batadv_orig_node *orig_node, | |
3040 | struct batadv_tvlv_tt_vlan_data *tt_vlan, | |
6b5e971a | 3041 | u16 num_vlan) |
7ea7b4a1 AQ |
3042 | { |
3043 | struct batadv_tvlv_tt_vlan_data *tt_vlan_tmp; | |
3044 | struct batadv_orig_node_vlan *vlan; | |
c169c59d | 3045 | int i, orig_num_vlan; |
6b5e971a | 3046 | u32 crc; |
7ea7b4a1 AQ |
3047 | |
3048 | /* check if each received CRC matches the locally stored one */ | |
3049 | for (i = 0; i < num_vlan; i++) { | |
3050 | tt_vlan_tmp = tt_vlan + i; | |
3051 | ||
3052 | /* if orig_node is a backbone node for this VLAN, don't check | |
3053 | * the CRC as we ignore all the global entries over it | |
3054 | */ | |
3055 | if (batadv_bla_is_backbone_gw_orig(orig_node->bat_priv, | |
cfd4f757 AQ |
3056 | orig_node->orig, |
3057 | ntohs(tt_vlan_tmp->vid))) | |
7ea7b4a1 AQ |
3058 | continue; |
3059 | ||
3060 | vlan = batadv_orig_node_vlan_get(orig_node, | |
3061 | ntohs(tt_vlan_tmp->vid)); | |
3062 | if (!vlan) | |
3063 | return false; | |
3064 | ||
91c2b1a9 | 3065 | crc = vlan->tt.crc; |
21754e25 | 3066 | batadv_orig_node_vlan_put(vlan); |
91c2b1a9 AQ |
3067 | |
3068 | if (crc != ntohl(tt_vlan_tmp->crc)) | |
7ea7b4a1 AQ |
3069 | return false; |
3070 | } | |
3071 | ||
c169c59d SW |
3072 | /* check if any excess VLANs exist locally for the originator |
3073 | * which are not mentioned in the TVLV from the originator. | |
3074 | */ | |
3075 | rcu_read_lock(); | |
3076 | orig_num_vlan = 0; | |
3077 | hlist_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) | |
3078 | orig_num_vlan++; | |
3079 | rcu_read_unlock(); | |
3080 | ||
3081 | if (orig_num_vlan > num_vlan) | |
3082 | return false; | |
3083 | ||
7ea7b4a1 AQ |
3084 | return true; |
3085 | } | |
3086 | ||
3087 | /** | |
7e9a8c2c | 3088 | * batadv_tt_local_update_crc() - update all the local CRCs |
7ea7b4a1 AQ |
3089 | * @bat_priv: the bat priv with all the soft interface information |
3090 | */ | |
3091 | static void batadv_tt_local_update_crc(struct batadv_priv *bat_priv) | |
3092 | { | |
3093 | struct batadv_softif_vlan *vlan; | |
3094 | ||
3095 | /* recompute the global CRC for each VLAN */ | |
3096 | rcu_read_lock(); | |
3097 | hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) { | |
3098 | vlan->tt.crc = batadv_tt_local_crc(bat_priv, vlan->vid); | |
3099 | } | |
3100 | rcu_read_unlock(); | |
3101 | } | |
3102 | ||
3103 | /** | |
7e9a8c2c | 3104 | * batadv_tt_global_update_crc() - update all the global CRCs for this orig_node |
7ea7b4a1 AQ |
3105 | * @bat_priv: the bat priv with all the soft interface information |
3106 | * @orig_node: the orig_node for which the CRCs have to be updated | |
3107 | */ | |
3108 | static void batadv_tt_global_update_crc(struct batadv_priv *bat_priv, | |
3109 | struct batadv_orig_node *orig_node) | |
3110 | { | |
3111 | struct batadv_orig_node_vlan *vlan; | |
6b5e971a | 3112 | u32 crc; |
7ea7b4a1 AQ |
3113 | |
3114 | /* recompute the global CRC for each VLAN */ | |
3115 | rcu_read_lock(); | |
d0fa4f3f | 3116 | hlist_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) { |
7ea7b4a1 AQ |
3117 | /* if orig_node is a backbone node for this VLAN, don't compute |
3118 | * the CRC as we ignore all the global entries over it | |
3119 | */ | |
cfd4f757 AQ |
3120 | if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig, |
3121 | vlan->vid)) | |
7ea7b4a1 AQ |
3122 | continue; |
3123 | ||
3124 | crc = batadv_tt_global_crc(bat_priv, orig_node, vlan->vid); | |
3125 | vlan->tt.crc = crc; | |
3126 | } | |
3127 | rcu_read_unlock(); | |
a73105b8 AQ |
3128 | } |
3129 | ||
ced72933 | 3130 | /** |
7e9a8c2c | 3131 | * batadv_send_tt_request() - send a TT Request message to a given node |
ced72933 AQ |
3132 | * @bat_priv: the bat priv with all the soft interface information |
3133 | * @dst_orig_node: the destination of the message | |
3134 | * @ttvn: the version number that the source of the message is looking for | |
7ea7b4a1 AQ |
3135 | * @tt_vlan: pointer to the first tvlv VLAN object to request |
3136 | * @num_vlan: number of tvlv VLAN entries | |
ced72933 AQ |
3137 | * @full_table: ask for the entire translation table if true, while only for the |
3138 | * last TT diff otherwise | |
d15cd622 AQ |
3139 | * |
3140 | * Return: true if the TT Request was sent, false otherwise | |
ced72933 | 3141 | */ |
4b426b10 SE |
3142 | static bool batadv_send_tt_request(struct batadv_priv *bat_priv, |
3143 | struct batadv_orig_node *dst_orig_node, | |
3144 | u8 ttvn, | |
3145 | struct batadv_tvlv_tt_vlan_data *tt_vlan, | |
3146 | u16 num_vlan, bool full_table) | |
a73105b8 | 3147 | { |
335fbe0f | 3148 | struct batadv_tvlv_tt_data *tvlv_tt_data = NULL; |
56303d34 | 3149 | struct batadv_tt_req_node *tt_req_node = NULL; |
7ea7b4a1 AQ |
3150 | struct batadv_tvlv_tt_vlan_data *tt_vlan_req; |
3151 | struct batadv_hard_iface *primary_if; | |
335fbe0f | 3152 | bool ret = false; |
7ea7b4a1 | 3153 | int i, size; |
a73105b8 | 3154 | |
e5d89254 | 3155 | primary_if = batadv_primary_if_get_selected(bat_priv); |
a73105b8 AQ |
3156 | if (!primary_if) |
3157 | goto out; | |
3158 | ||
3159 | /* The new tt_req will be issued only if I'm not waiting for a | |
9cfc7bd6 SE |
3160 | * reply from the same orig_node yet |
3161 | */ | |
383b8636 | 3162 | tt_req_node = batadv_tt_req_node_new(bat_priv, dst_orig_node); |
a73105b8 AQ |
3163 | if (!tt_req_node) |
3164 | goto out; | |
3165 | ||
7ea7b4a1 AQ |
3166 | size = sizeof(*tvlv_tt_data) + sizeof(*tt_vlan_req) * num_vlan; |
3167 | tvlv_tt_data = kzalloc(size, GFP_ATOMIC); | |
335fbe0f | 3168 | if (!tvlv_tt_data) |
a73105b8 AQ |
3169 | goto out; |
3170 | ||
335fbe0f ML |
3171 | tvlv_tt_data->flags = BATADV_TT_REQUEST; |
3172 | tvlv_tt_data->ttvn = ttvn; | |
7ea7b4a1 AQ |
3173 | tvlv_tt_data->num_vlan = htons(num_vlan); |
3174 | ||
3175 | /* send all the CRCs within the request. This is needed by intermediate | |
3176 | * nodes to ensure they have the correct table before replying | |
3177 | */ | |
3178 | tt_vlan_req = (struct batadv_tvlv_tt_vlan_data *)(tvlv_tt_data + 1); | |
3179 | for (i = 0; i < num_vlan; i++) { | |
3180 | tt_vlan_req->vid = tt_vlan->vid; | |
3181 | tt_vlan_req->crc = tt_vlan->crc; | |
3182 | ||
3183 | tt_vlan_req++; | |
3184 | tt_vlan++; | |
3185 | } | |
a73105b8 AQ |
3186 | |
3187 | if (full_table) | |
335fbe0f | 3188 | tvlv_tt_data->flags |= BATADV_TT_FULL_TABLE; |
a73105b8 | 3189 | |
bb351ba0 | 3190 | batadv_dbg(BATADV_DBG_TT, bat_priv, "Sending TT_REQUEST to %pM [%c]\n", |
335fbe0f | 3191 | dst_orig_node->orig, full_table ? 'F' : '.'); |
a73105b8 | 3192 | |
d69909d2 | 3193 | batadv_inc_counter(bat_priv, BATADV_CNT_TT_REQUEST_TX); |
335fbe0f ML |
3194 | batadv_tvlv_unicast_send(bat_priv, primary_if->net_dev->dev_addr, |
3195 | dst_orig_node->orig, BATADV_TVLV_TT, 1, | |
7ea7b4a1 | 3196 | tvlv_tt_data, size); |
335fbe0f | 3197 | ret = true; |
a73105b8 AQ |
3198 | |
3199 | out: | |
a73105b8 | 3200 | if (primary_if) |
82047ad7 | 3201 | batadv_hardif_put(primary_if); |
9c4604a2 | 3202 | |
a73105b8 | 3203 | if (ret && tt_req_node) { |
807736f6 | 3204 | spin_lock_bh(&bat_priv->tt.req_list_lock); |
9c4604a2 SE |
3205 | if (!hlist_unhashed(&tt_req_node->list)) { |
3206 | hlist_del_init(&tt_req_node->list); | |
3207 | batadv_tt_req_node_put(tt_req_node); | |
3208 | } | |
807736f6 | 3209 | spin_unlock_bh(&bat_priv->tt.req_list_lock); |
a73105b8 | 3210 | } |
9c4604a2 SE |
3211 | |
3212 | if (tt_req_node) | |
3213 | batadv_tt_req_node_put(tt_req_node); | |
3214 | ||
335fbe0f | 3215 | kfree(tvlv_tt_data); |
a73105b8 AQ |
3216 | return ret; |
3217 | } | |
3218 | ||
335fbe0f | 3219 | /** |
7e9a8c2c | 3220 | * batadv_send_other_tt_response() - send reply to tt request concerning another |
335fbe0f ML |
3221 | * node's translation table |
3222 | * @bat_priv: the bat priv with all the soft interface information | |
3223 | * @tt_data: tt data containing the tt request information | |
3224 | * @req_src: mac address of tt request sender | |
3225 | * @req_dst: mac address of tt request recipient | |
3226 | * | |
62fe710f | 3227 | * Return: true if tt request reply was sent, false otherwise. |
335fbe0f ML |
3228 | */ |
3229 | static bool batadv_send_other_tt_response(struct batadv_priv *bat_priv, | |
3230 | struct batadv_tvlv_tt_data *tt_data, | |
6b5e971a | 3231 | u8 *req_src, u8 *req_dst) |
a73105b8 | 3232 | { |
170173bf | 3233 | struct batadv_orig_node *req_dst_orig_node; |
56303d34 | 3234 | struct batadv_orig_node *res_dst_orig_node = NULL; |
7ea7b4a1 | 3235 | struct batadv_tvlv_tt_change *tt_change; |
335fbe0f | 3236 | struct batadv_tvlv_tt_data *tvlv_tt_data = NULL; |
7ea7b4a1 | 3237 | struct batadv_tvlv_tt_vlan_data *tt_vlan; |
335fbe0f | 3238 | bool ret = false, full_table; |
6b5e971a SE |
3239 | u8 orig_ttvn, req_ttvn; |
3240 | u16 tvlv_len; | |
3241 | s32 tt_len; | |
a73105b8 | 3242 | |
39c75a51 | 3243 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf | 3244 | "Received TT_REQUEST from %pM for ttvn: %u (%pM) [%c]\n", |
335fbe0f | 3245 | req_src, tt_data->ttvn, req_dst, |
a2f2b6cd | 3246 | ((tt_data->flags & BATADV_TT_FULL_TABLE) ? 'F' : '.')); |
a73105b8 AQ |
3247 | |
3248 | /* Let's get the orig node of the REAL destination */ | |
335fbe0f | 3249 | req_dst_orig_node = batadv_orig_hash_find(bat_priv, req_dst); |
a73105b8 AQ |
3250 | if (!req_dst_orig_node) |
3251 | goto out; | |
3252 | ||
335fbe0f | 3253 | res_dst_orig_node = batadv_orig_hash_find(bat_priv, req_src); |
a73105b8 AQ |
3254 | if (!res_dst_orig_node) |
3255 | goto out; | |
3256 | ||
6b5e971a | 3257 | orig_ttvn = (u8)atomic_read(&req_dst_orig_node->last_ttvn); |
335fbe0f | 3258 | req_ttvn = tt_data->ttvn; |
a73105b8 | 3259 | |
7ea7b4a1 | 3260 | tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(tt_data + 1); |
335fbe0f | 3261 | /* this node doesn't have the requested data */ |
a73105b8 | 3262 | if (orig_ttvn != req_ttvn || |
7ea7b4a1 AQ |
3263 | !batadv_tt_global_check_crc(req_dst_orig_node, tt_vlan, |
3264 | ntohs(tt_data->num_vlan))) | |
a73105b8 AQ |
3265 | goto out; |
3266 | ||
015758d0 | 3267 | /* If the full table has been explicitly requested */ |
335fbe0f | 3268 | if (tt_data->flags & BATADV_TT_FULL_TABLE || |
a73105b8 AQ |
3269 | !req_dst_orig_node->tt_buff) |
3270 | full_table = true; | |
3271 | else | |
3272 | full_table = false; | |
3273 | ||
335fbe0f ML |
3274 | /* TT fragmentation hasn't been implemented yet, so send as many |
3275 | * TT entries fit a single packet as possible only | |
9cfc7bd6 | 3276 | */ |
a73105b8 AQ |
3277 | if (!full_table) { |
3278 | spin_lock_bh(&req_dst_orig_node->tt_buff_lock); | |
3279 | tt_len = req_dst_orig_node->tt_buff_len; | |
a73105b8 | 3280 | |
7ea7b4a1 AQ |
3281 | tvlv_len = batadv_tt_prepare_tvlv_global_data(req_dst_orig_node, |
3282 | &tvlv_tt_data, | |
3283 | &tt_change, | |
3284 | &tt_len); | |
3285 | if (!tt_len) | |
a73105b8 AQ |
3286 | goto unlock; |
3287 | ||
a73105b8 | 3288 | /* Copy the last orig_node's OGM buffer */ |
7ea7b4a1 | 3289 | memcpy(tt_change, req_dst_orig_node->tt_buff, |
a73105b8 | 3290 | req_dst_orig_node->tt_buff_len); |
a73105b8 AQ |
3291 | spin_unlock_bh(&req_dst_orig_node->tt_buff_lock); |
3292 | } else { | |
7ea7b4a1 AQ |
3293 | /* allocate the tvlv, put the tt_data and all the tt_vlan_data |
3294 | * in the initial part | |
3295 | */ | |
3296 | tt_len = -1; | |
3297 | tvlv_len = batadv_tt_prepare_tvlv_global_data(req_dst_orig_node, | |
3298 | &tvlv_tt_data, | |
3299 | &tt_change, | |
3300 | &tt_len); | |
3301 | if (!tt_len) | |
a73105b8 | 3302 | goto out; |
7ea7b4a1 AQ |
3303 | |
3304 | /* fill the rest of the tvlv with the real TT entries */ | |
3305 | batadv_tt_tvlv_generate(bat_priv, bat_priv->tt.global_hash, | |
3306 | tt_change, tt_len, | |
3307 | batadv_tt_global_valid, | |
3308 | req_dst_orig_node); | |
a73105b8 AQ |
3309 | } |
3310 | ||
a19d3d85 ML |
3311 | /* Don't send the response, if larger than fragmented packet. */ |
3312 | tt_len = sizeof(struct batadv_unicast_tvlv_packet) + tvlv_len; | |
3313 | if (tt_len > atomic_read(&bat_priv->packet_size_max)) { | |
3314 | net_ratelimited_function(batadv_info, bat_priv->soft_iface, | |
3315 | "Ignoring TT_REQUEST from %pM; Response size exceeds max packet size.\n", | |
3316 | res_dst_orig_node->orig); | |
3317 | goto out; | |
3318 | } | |
3319 | ||
335fbe0f ML |
3320 | tvlv_tt_data->flags = BATADV_TT_RESPONSE; |
3321 | tvlv_tt_data->ttvn = req_ttvn; | |
a73105b8 AQ |
3322 | |
3323 | if (full_table) | |
335fbe0f | 3324 | tvlv_tt_data->flags |= BATADV_TT_FULL_TABLE; |
a73105b8 | 3325 | |
39c75a51 | 3326 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
335fbe0f ML |
3327 | "Sending TT_RESPONSE %pM for %pM [%c] (ttvn: %u)\n", |
3328 | res_dst_orig_node->orig, req_dst_orig_node->orig, | |
3329 | full_table ? 'F' : '.', req_ttvn); | |
a73105b8 | 3330 | |
d69909d2 | 3331 | batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_TX); |
f8214865 | 3332 | |
335fbe0f | 3333 | batadv_tvlv_unicast_send(bat_priv, req_dst_orig_node->orig, |
7ea7b4a1 AQ |
3334 | req_src, BATADV_TVLV_TT, 1, tvlv_tt_data, |
3335 | tvlv_len); | |
e91ecfc6 | 3336 | |
335fbe0f | 3337 | ret = true; |
a73105b8 AQ |
3338 | goto out; |
3339 | ||
3340 | unlock: | |
3341 | spin_unlock_bh(&req_dst_orig_node->tt_buff_lock); | |
3342 | ||
3343 | out: | |
3344 | if (res_dst_orig_node) | |
5d967310 | 3345 | batadv_orig_node_put(res_dst_orig_node); |
a73105b8 | 3346 | if (req_dst_orig_node) |
5d967310 | 3347 | batadv_orig_node_put(req_dst_orig_node); |
335fbe0f | 3348 | kfree(tvlv_tt_data); |
a73105b8 | 3349 | return ret; |
a73105b8 | 3350 | } |
96412690 | 3351 | |
335fbe0f | 3352 | /** |
7e9a8c2c SE |
3353 | * batadv_send_my_tt_response() - send reply to tt request concerning this |
3354 | * node's translation table | |
335fbe0f ML |
3355 | * @bat_priv: the bat priv with all the soft interface information |
3356 | * @tt_data: tt data containing the tt request information | |
3357 | * @req_src: mac address of tt request sender | |
3358 | * | |
62fe710f | 3359 | * Return: true if tt request reply was sent, false otherwise. |
335fbe0f ML |
3360 | */ |
3361 | static bool batadv_send_my_tt_response(struct batadv_priv *bat_priv, | |
3362 | struct batadv_tvlv_tt_data *tt_data, | |
6b5e971a | 3363 | u8 *req_src) |
a73105b8 | 3364 | { |
335fbe0f | 3365 | struct batadv_tvlv_tt_data *tvlv_tt_data = NULL; |
56303d34 | 3366 | struct batadv_hard_iface *primary_if = NULL; |
7ea7b4a1 AQ |
3367 | struct batadv_tvlv_tt_change *tt_change; |
3368 | struct batadv_orig_node *orig_node; | |
6b5e971a SE |
3369 | u8 my_ttvn, req_ttvn; |
3370 | u16 tvlv_len; | |
a73105b8 | 3371 | bool full_table; |
6b5e971a | 3372 | s32 tt_len; |
a73105b8 | 3373 | |
39c75a51 | 3374 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf | 3375 | "Received TT_REQUEST from %pM for ttvn: %u (me) [%c]\n", |
335fbe0f | 3376 | req_src, tt_data->ttvn, |
a2f2b6cd | 3377 | ((tt_data->flags & BATADV_TT_FULL_TABLE) ? 'F' : '.')); |
a73105b8 | 3378 | |
a70a9aa9 | 3379 | spin_lock_bh(&bat_priv->tt.commit_lock); |
a73105b8 | 3380 | |
6b5e971a | 3381 | my_ttvn = (u8)atomic_read(&bat_priv->tt.vn); |
335fbe0f | 3382 | req_ttvn = tt_data->ttvn; |
a73105b8 | 3383 | |
335fbe0f | 3384 | orig_node = batadv_orig_hash_find(bat_priv, req_src); |
a73105b8 AQ |
3385 | if (!orig_node) |
3386 | goto out; | |
3387 | ||
e5d89254 | 3388 | primary_if = batadv_primary_if_get_selected(bat_priv); |
a73105b8 AQ |
3389 | if (!primary_if) |
3390 | goto out; | |
3391 | ||
3392 | /* If the full table has been explicitly requested or the gap | |
9cfc7bd6 SE |
3393 | * is too big send the whole local translation table |
3394 | */ | |
335fbe0f | 3395 | if (tt_data->flags & BATADV_TT_FULL_TABLE || my_ttvn != req_ttvn || |
807736f6 | 3396 | !bat_priv->tt.last_changeset) |
a73105b8 AQ |
3397 | full_table = true; |
3398 | else | |
3399 | full_table = false; | |
3400 | ||
335fbe0f ML |
3401 | /* TT fragmentation hasn't been implemented yet, so send as many |
3402 | * TT entries fit a single packet as possible only | |
9cfc7bd6 | 3403 | */ |
a73105b8 | 3404 | if (!full_table) { |
807736f6 | 3405 | spin_lock_bh(&bat_priv->tt.last_changeset_lock); |
a73105b8 | 3406 | |
7ea7b4a1 AQ |
3407 | tt_len = bat_priv->tt.last_changeset_len; |
3408 | tvlv_len = batadv_tt_prepare_tvlv_local_data(bat_priv, | |
3409 | &tvlv_tt_data, | |
3410 | &tt_change, | |
3411 | &tt_len); | |
c2d0f48a | 3412 | if (!tt_len || !tvlv_len) |
a73105b8 AQ |
3413 | goto unlock; |
3414 | ||
335fbe0f | 3415 | /* Copy the last orig_node's OGM buffer */ |
7ea7b4a1 | 3416 | memcpy(tt_change, bat_priv->tt.last_changeset, |
807736f6 SE |
3417 | bat_priv->tt.last_changeset_len); |
3418 | spin_unlock_bh(&bat_priv->tt.last_changeset_lock); | |
a73105b8 | 3419 | } else { |
6b5e971a | 3420 | req_ttvn = (u8)atomic_read(&bat_priv->tt.vn); |
335fbe0f | 3421 | |
7ea7b4a1 AQ |
3422 | /* allocate the tvlv, put the tt_data and all the tt_vlan_data |
3423 | * in the initial part | |
3424 | */ | |
3425 | tt_len = -1; | |
3426 | tvlv_len = batadv_tt_prepare_tvlv_local_data(bat_priv, | |
3427 | &tvlv_tt_data, | |
3428 | &tt_change, | |
3429 | &tt_len); | |
c2d0f48a | 3430 | if (!tt_len || !tvlv_len) |
a73105b8 | 3431 | goto out; |
7ea7b4a1 AQ |
3432 | |
3433 | /* fill the rest of the tvlv with the real TT entries */ | |
3434 | batadv_tt_tvlv_generate(bat_priv, bat_priv->tt.local_hash, | |
3435 | tt_change, tt_len, | |
3436 | batadv_tt_local_valid, NULL); | |
a73105b8 AQ |
3437 | } |
3438 | ||
335fbe0f ML |
3439 | tvlv_tt_data->flags = BATADV_TT_RESPONSE; |
3440 | tvlv_tt_data->ttvn = req_ttvn; | |
a73105b8 AQ |
3441 | |
3442 | if (full_table) | |
335fbe0f | 3443 | tvlv_tt_data->flags |= BATADV_TT_FULL_TABLE; |
a73105b8 | 3444 | |
39c75a51 | 3445 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
335fbe0f ML |
3446 | "Sending TT_RESPONSE to %pM [%c] (ttvn: %u)\n", |
3447 | orig_node->orig, full_table ? 'F' : '.', req_ttvn); | |
a73105b8 | 3448 | |
d69909d2 | 3449 | batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_TX); |
f8214865 | 3450 | |
335fbe0f | 3451 | batadv_tvlv_unicast_send(bat_priv, primary_if->net_dev->dev_addr, |
7ea7b4a1 AQ |
3452 | req_src, BATADV_TVLV_TT, 1, tvlv_tt_data, |
3453 | tvlv_len); | |
335fbe0f | 3454 | |
a73105b8 AQ |
3455 | goto out; |
3456 | ||
3457 | unlock: | |
807736f6 | 3458 | spin_unlock_bh(&bat_priv->tt.last_changeset_lock); |
a73105b8 | 3459 | out: |
a70a9aa9 | 3460 | spin_unlock_bh(&bat_priv->tt.commit_lock); |
a73105b8 | 3461 | if (orig_node) |
5d967310 | 3462 | batadv_orig_node_put(orig_node); |
a73105b8 | 3463 | if (primary_if) |
82047ad7 | 3464 | batadv_hardif_put(primary_if); |
335fbe0f ML |
3465 | kfree(tvlv_tt_data); |
3466 | /* The packet was for this host, so it doesn't need to be re-routed */ | |
a73105b8 AQ |
3467 | return true; |
3468 | } | |
3469 | ||
335fbe0f | 3470 | /** |
7e9a8c2c | 3471 | * batadv_send_tt_response() - send reply to tt request |
335fbe0f ML |
3472 | * @bat_priv: the bat priv with all the soft interface information |
3473 | * @tt_data: tt data containing the tt request information | |
3474 | * @req_src: mac address of tt request sender | |
3475 | * @req_dst: mac address of tt request recipient | |
3476 | * | |
62fe710f | 3477 | * Return: true if tt request reply was sent, false otherwise. |
335fbe0f ML |
3478 | */ |
3479 | static bool batadv_send_tt_response(struct batadv_priv *bat_priv, | |
3480 | struct batadv_tvlv_tt_data *tt_data, | |
6b5e971a | 3481 | u8 *req_src, u8 *req_dst) |
a73105b8 | 3482 | { |
cfd4f757 | 3483 | if (batadv_is_my_mac(bat_priv, req_dst)) |
335fbe0f | 3484 | return batadv_send_my_tt_response(bat_priv, tt_data, req_src); |
24820df1 AQ |
3485 | return batadv_send_other_tt_response(bat_priv, tt_data, req_src, |
3486 | req_dst); | |
a73105b8 AQ |
3487 | } |
3488 | ||
56303d34 SE |
3489 | static void _batadv_tt_update_changes(struct batadv_priv *bat_priv, |
3490 | struct batadv_orig_node *orig_node, | |
335fbe0f | 3491 | struct batadv_tvlv_tt_change *tt_change, |
6b5e971a | 3492 | u16 tt_num_changes, u8 ttvn) |
a73105b8 AQ |
3493 | { |
3494 | int i; | |
a513088d | 3495 | int roams; |
a73105b8 AQ |
3496 | |
3497 | for (i = 0; i < tt_num_changes; i++) { | |
acd34afa SE |
3498 | if ((tt_change + i)->flags & BATADV_TT_CLIENT_DEL) { |
3499 | roams = (tt_change + i)->flags & BATADV_TT_CLIENT_ROAM; | |
a513088d SE |
3500 | batadv_tt_global_del(bat_priv, orig_node, |
3501 | (tt_change + i)->addr, | |
c018ad3d | 3502 | ntohs((tt_change + i)->vid), |
d4f44692 AQ |
3503 | "tt removed by changes", |
3504 | roams); | |
08c36d3e | 3505 | } else { |
08c36d3e | 3506 | if (!batadv_tt_global_add(bat_priv, orig_node, |
d4f44692 | 3507 | (tt_change + i)->addr, |
c018ad3d | 3508 | ntohs((tt_change + i)->vid), |
d4f44692 | 3509 | (tt_change + i)->flags, ttvn)) |
a73105b8 AQ |
3510 | /* In case of problem while storing a |
3511 | * global_entry, we stop the updating | |
3512 | * procedure without committing the | |
3513 | * ttvn change. This will avoid to send | |
3514 | * corrupted data on tt_request | |
3515 | */ | |
3516 | return; | |
08c36d3e | 3517 | } |
a73105b8 | 3518 | } |
ac4eebd4 | 3519 | set_bit(BATADV_ORIG_CAPA_HAS_TT, &orig_node->capa_initialized); |
a73105b8 AQ |
3520 | } |
3521 | ||
56303d34 | 3522 | static void batadv_tt_fill_gtable(struct batadv_priv *bat_priv, |
7ea7b4a1 | 3523 | struct batadv_tvlv_tt_change *tt_change, |
6b5e971a SE |
3524 | u8 ttvn, u8 *resp_src, |
3525 | u16 num_entries) | |
a73105b8 | 3526 | { |
170173bf | 3527 | struct batadv_orig_node *orig_node; |
a73105b8 | 3528 | |
335fbe0f | 3529 | orig_node = batadv_orig_hash_find(bat_priv, resp_src); |
a73105b8 AQ |
3530 | if (!orig_node) |
3531 | goto out; | |
3532 | ||
3533 | /* Purge the old table first.. */ | |
95fb130d AQ |
3534 | batadv_tt_global_del_orig(bat_priv, orig_node, -1, |
3535 | "Received full table"); | |
a73105b8 | 3536 | |
7ea7b4a1 AQ |
3537 | _batadv_tt_update_changes(bat_priv, orig_node, tt_change, num_entries, |
3538 | ttvn); | |
a73105b8 AQ |
3539 | |
3540 | spin_lock_bh(&orig_node->tt_buff_lock); | |
3541 | kfree(orig_node->tt_buff); | |
3542 | orig_node->tt_buff_len = 0; | |
3543 | orig_node->tt_buff = NULL; | |
3544 | spin_unlock_bh(&orig_node->tt_buff_lock); | |
3545 | ||
7ea7b4a1 | 3546 | atomic_set(&orig_node->last_ttvn, ttvn); |
a73105b8 AQ |
3547 | |
3548 | out: | |
3549 | if (orig_node) | |
5d967310 | 3550 | batadv_orig_node_put(orig_node); |
a73105b8 AQ |
3551 | } |
3552 | ||
56303d34 SE |
3553 | static void batadv_tt_update_changes(struct batadv_priv *bat_priv, |
3554 | struct batadv_orig_node *orig_node, | |
6b5e971a | 3555 | u16 tt_num_changes, u8 ttvn, |
335fbe0f | 3556 | struct batadv_tvlv_tt_change *tt_change) |
a73105b8 | 3557 | { |
a513088d SE |
3558 | _batadv_tt_update_changes(bat_priv, orig_node, tt_change, |
3559 | tt_num_changes, ttvn); | |
a73105b8 | 3560 | |
e8cf234a AQ |
3561 | batadv_tt_save_orig_buffer(bat_priv, orig_node, tt_change, |
3562 | batadv_tt_len(tt_num_changes)); | |
a73105b8 AQ |
3563 | atomic_set(&orig_node->last_ttvn, ttvn); |
3564 | } | |
3565 | ||
c018ad3d | 3566 | /** |
7e9a8c2c | 3567 | * batadv_is_my_client() - check if a client is served by the local node |
c018ad3d | 3568 | * @bat_priv: the bat priv with all the soft interface information |
3f68785e | 3569 | * @addr: the mac address of the client to check |
c018ad3d AQ |
3570 | * @vid: VLAN identifier |
3571 | * | |
62fe710f | 3572 | * Return: true if the client is served by this node, false otherwise. |
c018ad3d | 3573 | */ |
6b5e971a | 3574 | bool batadv_is_my_client(struct batadv_priv *bat_priv, const u8 *addr, |
c018ad3d | 3575 | unsigned short vid) |
a73105b8 | 3576 | { |
170173bf | 3577 | struct batadv_tt_local_entry *tt_local_entry; |
7683fdc1 | 3578 | bool ret = false; |
a73105b8 | 3579 | |
c018ad3d | 3580 | tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr, vid); |
7683fdc1 AQ |
3581 | if (!tt_local_entry) |
3582 | goto out; | |
058d0e26 | 3583 | /* Check if the client has been logically deleted (but is kept for |
9cfc7bd6 SE |
3584 | * consistency purpose) |
3585 | */ | |
7c1fd91d AQ |
3586 | if ((tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING) || |
3587 | (tt_local_entry->common.flags & BATADV_TT_CLIENT_ROAM)) | |
058d0e26 | 3588 | goto out; |
7683fdc1 AQ |
3589 | ret = true; |
3590 | out: | |
a73105b8 | 3591 | if (tt_local_entry) |
95c0db90 | 3592 | batadv_tt_local_entry_put(tt_local_entry); |
7683fdc1 | 3593 | return ret; |
a73105b8 AQ |
3594 | } |
3595 | ||
335fbe0f | 3596 | /** |
7e9a8c2c | 3597 | * batadv_handle_tt_response() - process incoming tt reply |
335fbe0f ML |
3598 | * @bat_priv: the bat priv with all the soft interface information |
3599 | * @tt_data: tt data containing the tt request information | |
3600 | * @resp_src: mac address of tt reply sender | |
3601 | * @num_entries: number of tt change entries appended to the tt data | |
3602 | */ | |
3603 | static void batadv_handle_tt_response(struct batadv_priv *bat_priv, | |
3604 | struct batadv_tvlv_tt_data *tt_data, | |
6b5e971a | 3605 | u8 *resp_src, u16 num_entries) |
a73105b8 | 3606 | { |
7c26a53b ML |
3607 | struct batadv_tt_req_node *node; |
3608 | struct hlist_node *safe; | |
56303d34 | 3609 | struct batadv_orig_node *orig_node = NULL; |
335fbe0f | 3610 | struct batadv_tvlv_tt_change *tt_change; |
6b5e971a SE |
3611 | u8 *tvlv_ptr = (u8 *)tt_data; |
3612 | u16 change_offset; | |
a73105b8 | 3613 | |
39c75a51 | 3614 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf | 3615 | "Received TT_RESPONSE from %pM for ttvn %d t_size: %d [%c]\n", |
335fbe0f | 3616 | resp_src, tt_data->ttvn, num_entries, |
a2f2b6cd | 3617 | ((tt_data->flags & BATADV_TT_FULL_TABLE) ? 'F' : '.')); |
a73105b8 | 3618 | |
335fbe0f | 3619 | orig_node = batadv_orig_hash_find(bat_priv, resp_src); |
a73105b8 AQ |
3620 | if (!orig_node) |
3621 | goto out; | |
3622 | ||
a70a9aa9 AQ |
3623 | spin_lock_bh(&orig_node->tt_lock); |
3624 | ||
7ea7b4a1 AQ |
3625 | change_offset = sizeof(struct batadv_tvlv_tt_vlan_data); |
3626 | change_offset *= ntohs(tt_data->num_vlan); | |
3627 | change_offset += sizeof(*tt_data); | |
3628 | tvlv_ptr += change_offset; | |
3629 | ||
3630 | tt_change = (struct batadv_tvlv_tt_change *)tvlv_ptr; | |
335fbe0f | 3631 | if (tt_data->flags & BATADV_TT_FULL_TABLE) { |
7ea7b4a1 AQ |
3632 | batadv_tt_fill_gtable(bat_priv, tt_change, tt_data->ttvn, |
3633 | resp_src, num_entries); | |
96412690 | 3634 | } else { |
335fbe0f ML |
3635 | batadv_tt_update_changes(bat_priv, orig_node, num_entries, |
3636 | tt_data->ttvn, tt_change); | |
96412690 | 3637 | } |
a73105b8 | 3638 | |
a70a9aa9 | 3639 | /* Recalculate the CRC for this orig_node and store it */ |
7ea7b4a1 | 3640 | batadv_tt_global_update_crc(bat_priv, orig_node); |
a70a9aa9 AQ |
3641 | |
3642 | spin_unlock_bh(&orig_node->tt_lock); | |
3643 | ||
a73105b8 | 3644 | /* Delete the tt_req_node from pending tt_requests list */ |
807736f6 | 3645 | spin_lock_bh(&bat_priv->tt.req_list_lock); |
7c26a53b | 3646 | hlist_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) { |
335fbe0f | 3647 | if (!batadv_compare_eth(node->addr, resp_src)) |
a73105b8 | 3648 | continue; |
7c26a53b | 3649 | hlist_del_init(&node->list); |
9c4604a2 | 3650 | batadv_tt_req_node_put(node); |
a73105b8 | 3651 | } |
7ea7b4a1 | 3652 | |
807736f6 | 3653 | spin_unlock_bh(&bat_priv->tt.req_list_lock); |
a73105b8 AQ |
3654 | out: |
3655 | if (orig_node) | |
5d967310 | 3656 | batadv_orig_node_put(orig_node); |
a73105b8 AQ |
3657 | } |
3658 | ||
56303d34 | 3659 | static void batadv_tt_roam_list_free(struct batadv_priv *bat_priv) |
a73105b8 | 3660 | { |
56303d34 | 3661 | struct batadv_tt_roam_node *node, *safe; |
a73105b8 | 3662 | |
807736f6 | 3663 | spin_lock_bh(&bat_priv->tt.roam_list_lock); |
a73105b8 | 3664 | |
807736f6 | 3665 | list_for_each_entry_safe(node, safe, &bat_priv->tt.roam_list, list) { |
cc47f66e | 3666 | list_del(&node->list); |
86452f81 | 3667 | kmem_cache_free(batadv_tt_roam_cache, node); |
cc47f66e AQ |
3668 | } |
3669 | ||
807736f6 | 3670 | spin_unlock_bh(&bat_priv->tt.roam_list_lock); |
cc47f66e AQ |
3671 | } |
3672 | ||
56303d34 | 3673 | static void batadv_tt_roam_purge(struct batadv_priv *bat_priv) |
cc47f66e | 3674 | { |
56303d34 | 3675 | struct batadv_tt_roam_node *node, *safe; |
cc47f66e | 3676 | |
807736f6 SE |
3677 | spin_lock_bh(&bat_priv->tt.roam_list_lock); |
3678 | list_for_each_entry_safe(node, safe, &bat_priv->tt.roam_list, list) { | |
42d0b044 SE |
3679 | if (!batadv_has_timed_out(node->first_time, |
3680 | BATADV_ROAMING_MAX_TIME)) | |
cc47f66e AQ |
3681 | continue; |
3682 | ||
3683 | list_del(&node->list); | |
86452f81 | 3684 | kmem_cache_free(batadv_tt_roam_cache, node); |
cc47f66e | 3685 | } |
807736f6 | 3686 | spin_unlock_bh(&bat_priv->tt.roam_list_lock); |
cc47f66e AQ |
3687 | } |
3688 | ||
62fe710f | 3689 | /** |
7e9a8c2c | 3690 | * batadv_tt_check_roam_count() - check if a client has roamed too frequently |
d15cd622 AQ |
3691 | * @bat_priv: the bat priv with all the soft interface information |
3692 | * @client: mac address of the roaming client | |
62fe710f SE |
3693 | * |
3694 | * This function checks whether the client already reached the | |
cc47f66e AQ |
3695 | * maximum number of possible roaming phases. In this case the ROAMING_ADV |
3696 | * will not be sent. | |
3697 | * | |
62fe710f | 3698 | * Return: true if the ROAMING_ADV can be sent, false otherwise |
9cfc7bd6 | 3699 | */ |
6b5e971a | 3700 | static bool batadv_tt_check_roam_count(struct batadv_priv *bat_priv, u8 *client) |
cc47f66e | 3701 | { |
56303d34 | 3702 | struct batadv_tt_roam_node *tt_roam_node; |
cc47f66e AQ |
3703 | bool ret = false; |
3704 | ||
807736f6 | 3705 | spin_lock_bh(&bat_priv->tt.roam_list_lock); |
cc47f66e | 3706 | /* The new tt_req will be issued only if I'm not waiting for a |
9cfc7bd6 SE |
3707 | * reply from the same orig_node yet |
3708 | */ | |
807736f6 | 3709 | list_for_each_entry(tt_roam_node, &bat_priv->tt.roam_list, list) { |
1eda58bf | 3710 | if (!batadv_compare_eth(tt_roam_node->addr, client)) |
cc47f66e AQ |
3711 | continue; |
3712 | ||
1eda58bf | 3713 | if (batadv_has_timed_out(tt_roam_node->first_time, |
42d0b044 | 3714 | BATADV_ROAMING_MAX_TIME)) |
cc47f66e AQ |
3715 | continue; |
3716 | ||
3e34819e | 3717 | if (!batadv_atomic_dec_not_zero(&tt_roam_node->counter)) |
cc47f66e AQ |
3718 | /* Sorry, you roamed too many times! */ |
3719 | goto unlock; | |
3720 | ret = true; | |
3721 | break; | |
3722 | } | |
3723 | ||
3724 | if (!ret) { | |
86452f81 SE |
3725 | tt_roam_node = kmem_cache_alloc(batadv_tt_roam_cache, |
3726 | GFP_ATOMIC); | |
cc47f66e AQ |
3727 | if (!tt_roam_node) |
3728 | goto unlock; | |
3729 | ||
3730 | tt_roam_node->first_time = jiffies; | |
42d0b044 SE |
3731 | atomic_set(&tt_roam_node->counter, |
3732 | BATADV_ROAMING_MAX_COUNT - 1); | |
8fdd0153 | 3733 | ether_addr_copy(tt_roam_node->addr, client); |
cc47f66e | 3734 | |
807736f6 | 3735 | list_add(&tt_roam_node->list, &bat_priv->tt.roam_list); |
cc47f66e AQ |
3736 | ret = true; |
3737 | } | |
3738 | ||
3739 | unlock: | |
807736f6 | 3740 | spin_unlock_bh(&bat_priv->tt.roam_list_lock); |
cc47f66e AQ |
3741 | return ret; |
3742 | } | |
3743 | ||
c018ad3d | 3744 | /** |
7e9a8c2c | 3745 | * batadv_send_roam_adv() - send a roaming advertisement message |
c018ad3d AQ |
3746 | * @bat_priv: the bat priv with all the soft interface information |
3747 | * @client: mac address of the roaming client | |
3748 | * @vid: VLAN identifier | |
3749 | * @orig_node: message destination | |
3750 | * | |
3751 | * Send a ROAMING_ADV message to the node which was previously serving this | |
3752 | * client. This is done to inform the node that from now on all traffic destined | |
3753 | * for this particular roamed client has to be forwarded to the sender of the | |
3754 | * roaming message. | |
3755 | */ | |
6b5e971a | 3756 | static void batadv_send_roam_adv(struct batadv_priv *bat_priv, u8 *client, |
c018ad3d | 3757 | unsigned short vid, |
56303d34 | 3758 | struct batadv_orig_node *orig_node) |
cc47f66e | 3759 | { |
56303d34 | 3760 | struct batadv_hard_iface *primary_if; |
122edaa0 ML |
3761 | struct batadv_tvlv_roam_adv tvlv_roam; |
3762 | ||
3763 | primary_if = batadv_primary_if_get_selected(bat_priv); | |
3764 | if (!primary_if) | |
3765 | goto out; | |
cc47f66e AQ |
3766 | |
3767 | /* before going on we have to check whether the client has | |
9cfc7bd6 SE |
3768 | * already roamed to us too many times |
3769 | */ | |
a513088d | 3770 | if (!batadv_tt_check_roam_count(bat_priv, client)) |
cc47f66e AQ |
3771 | goto out; |
3772 | ||
39c75a51 | 3773 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
16052789 | 3774 | "Sending ROAMING_ADV to %pM (client %pM, vid: %d)\n", |
f7a2bd65 | 3775 | orig_node->orig, client, batadv_print_vid(vid)); |
cc47f66e | 3776 | |
d69909d2 | 3777 | batadv_inc_counter(bat_priv, BATADV_CNT_TT_ROAM_ADV_TX); |
f8214865 | 3778 | |
122edaa0 | 3779 | memcpy(tvlv_roam.client, client, sizeof(tvlv_roam.client)); |
c018ad3d | 3780 | tvlv_roam.vid = htons(vid); |
122edaa0 ML |
3781 | |
3782 | batadv_tvlv_unicast_send(bat_priv, primary_if->net_dev->dev_addr, | |
3783 | orig_node->orig, BATADV_TVLV_ROAM, 1, | |
3784 | &tvlv_roam, sizeof(tvlv_roam)); | |
cc47f66e AQ |
3785 | |
3786 | out: | |
122edaa0 | 3787 | if (primary_if) |
82047ad7 | 3788 | batadv_hardif_put(primary_if); |
a73105b8 AQ |
3789 | } |
3790 | ||
a513088d | 3791 | static void batadv_tt_purge(struct work_struct *work) |
a73105b8 | 3792 | { |
56303d34 | 3793 | struct delayed_work *delayed_work; |
807736f6 | 3794 | struct batadv_priv_tt *priv_tt; |
56303d34 SE |
3795 | struct batadv_priv *bat_priv; |
3796 | ||
4ba4bc0f | 3797 | delayed_work = to_delayed_work(work); |
807736f6 SE |
3798 | priv_tt = container_of(delayed_work, struct batadv_priv_tt, work); |
3799 | bat_priv = container_of(priv_tt, struct batadv_priv, tt); | |
a73105b8 | 3800 | |
a19d3d85 | 3801 | batadv_tt_local_purge(bat_priv, BATADV_TT_LOCAL_TIMEOUT); |
30cfd02b | 3802 | batadv_tt_global_purge(bat_priv); |
a513088d SE |
3803 | batadv_tt_req_purge(bat_priv); |
3804 | batadv_tt_roam_purge(bat_priv); | |
a73105b8 | 3805 | |
72414442 AQ |
3806 | queue_delayed_work(batadv_event_workqueue, &bat_priv->tt.work, |
3807 | msecs_to_jiffies(BATADV_TT_WORK_PERIOD)); | |
a73105b8 | 3808 | } |
cc47f66e | 3809 | |
ff15c27c SE |
3810 | /** |
3811 | * batadv_tt_free() - Free translation table of soft interface | |
3812 | * @bat_priv: the bat priv with all the soft interface information | |
3813 | */ | |
56303d34 | 3814 | void batadv_tt_free(struct batadv_priv *bat_priv) |
cc47f66e | 3815 | { |
e1bf0c14 ML |
3816 | batadv_tvlv_container_unregister(bat_priv, BATADV_TVLV_TT, 1); |
3817 | batadv_tvlv_handler_unregister(bat_priv, BATADV_TVLV_TT, 1); | |
3818 | ||
807736f6 | 3819 | cancel_delayed_work_sync(&bat_priv->tt.work); |
cc47f66e | 3820 | |
a513088d SE |
3821 | batadv_tt_local_table_free(bat_priv); |
3822 | batadv_tt_global_table_free(bat_priv); | |
3823 | batadv_tt_req_list_free(bat_priv); | |
3824 | batadv_tt_changes_list_free(bat_priv); | |
3825 | batadv_tt_roam_list_free(bat_priv); | |
cc47f66e | 3826 | |
807736f6 | 3827 | kfree(bat_priv->tt.last_changeset); |
cc47f66e | 3828 | } |
058d0e26 | 3829 | |
7ea7b4a1 | 3830 | /** |
7e9a8c2c | 3831 | * batadv_tt_local_set_flags() - set or unset the specified flags on the local |
7ea7b4a1 AQ |
3832 | * table and possibly count them in the TT size |
3833 | * @bat_priv: the bat priv with all the soft interface information | |
3834 | * @flags: the flag to switch | |
3835 | * @enable: whether to set or unset the flag | |
3836 | * @count: whether to increase the TT size by the number of changed entries | |
9cfc7bd6 | 3837 | */ |
6b5e971a SE |
3838 | static void batadv_tt_local_set_flags(struct batadv_priv *bat_priv, u16 flags, |
3839 | bool enable, bool count) | |
058d0e26 | 3840 | { |
7ea7b4a1 AQ |
3841 | struct batadv_hashtable *hash = bat_priv->tt.local_hash; |
3842 | struct batadv_tt_common_entry *tt_common_entry; | |
058d0e26 | 3843 | struct hlist_head *head; |
6b5e971a | 3844 | u32 i; |
058d0e26 AQ |
3845 | |
3846 | if (!hash) | |
7ea7b4a1 | 3847 | return; |
058d0e26 AQ |
3848 | |
3849 | for (i = 0; i < hash->size; i++) { | |
3850 | head = &hash->table[i]; | |
3851 | ||
3852 | rcu_read_lock(); | |
b67bfe0d | 3853 | hlist_for_each_entry_rcu(tt_common_entry, |
058d0e26 | 3854 | head, hash_entry) { |
697f2531 AQ |
3855 | if (enable) { |
3856 | if ((tt_common_entry->flags & flags) == flags) | |
3857 | continue; | |
3858 | tt_common_entry->flags |= flags; | |
3859 | } else { | |
3860 | if (!(tt_common_entry->flags & flags)) | |
3861 | continue; | |
3862 | tt_common_entry->flags &= ~flags; | |
3863 | } | |
7ea7b4a1 AQ |
3864 | |
3865 | if (!count) | |
3866 | continue; | |
3867 | ||
3868 | batadv_tt_local_size_inc(bat_priv, | |
3869 | tt_common_entry->vid); | |
058d0e26 AQ |
3870 | } |
3871 | rcu_read_unlock(); | |
3872 | } | |
058d0e26 AQ |
3873 | } |
3874 | ||
acd34afa | 3875 | /* Purge out all the tt local entries marked with BATADV_TT_CLIENT_PENDING */ |
56303d34 | 3876 | static void batadv_tt_local_purge_pending_clients(struct batadv_priv *bat_priv) |
058d0e26 | 3877 | { |
807736f6 | 3878 | struct batadv_hashtable *hash = bat_priv->tt.local_hash; |
56303d34 SE |
3879 | struct batadv_tt_common_entry *tt_common; |
3880 | struct batadv_tt_local_entry *tt_local; | |
b67bfe0d | 3881 | struct hlist_node *node_tmp; |
058d0e26 AQ |
3882 | struct hlist_head *head; |
3883 | spinlock_t *list_lock; /* protects write access to the hash lists */ | |
6b5e971a | 3884 | u32 i; |
058d0e26 AQ |
3885 | |
3886 | if (!hash) | |
3887 | return; | |
3888 | ||
3889 | for (i = 0; i < hash->size; i++) { | |
3890 | head = &hash->table[i]; | |
3891 | list_lock = &hash->list_locks[i]; | |
3892 | ||
3893 | spin_lock_bh(list_lock); | |
b67bfe0d | 3894 | hlist_for_each_entry_safe(tt_common, node_tmp, head, |
acd34afa SE |
3895 | hash_entry) { |
3896 | if (!(tt_common->flags & BATADV_TT_CLIENT_PENDING)) | |
058d0e26 AQ |
3897 | continue; |
3898 | ||
39c75a51 | 3899 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
16052789 AQ |
3900 | "Deleting local tt entry (%pM, vid: %d): pending\n", |
3901 | tt_common->addr, | |
f7a2bd65 | 3902 | batadv_print_vid(tt_common->vid)); |
058d0e26 | 3903 | |
7ea7b4a1 | 3904 | batadv_tt_local_size_dec(bat_priv, tt_common->vid); |
b67bfe0d | 3905 | hlist_del_rcu(&tt_common->hash_entry); |
56303d34 SE |
3906 | tt_local = container_of(tt_common, |
3907 | struct batadv_tt_local_entry, | |
3908 | common); | |
35df3b29 | 3909 | |
95c0db90 | 3910 | batadv_tt_local_entry_put(tt_local); |
058d0e26 AQ |
3911 | } |
3912 | spin_unlock_bh(list_lock); | |
3913 | } | |
058d0e26 AQ |
3914 | } |
3915 | ||
e1bf0c14 | 3916 | /** |
7e9a8c2c | 3917 | * batadv_tt_local_commit_changes_nolock() - commit all pending local tt changes |
a19d3d85 | 3918 | * which have been queued in the time since the last commit |
e1bf0c14 | 3919 | * @bat_priv: the bat priv with all the soft interface information |
a19d3d85 ML |
3920 | * |
3921 | * Caller must hold tt->commit_lock. | |
e1bf0c14 | 3922 | */ |
a19d3d85 | 3923 | static void batadv_tt_local_commit_changes_nolock(struct batadv_priv *bat_priv) |
058d0e26 | 3924 | { |
5274cd68 SE |
3925 | lockdep_assert_held(&bat_priv->tt.commit_lock); |
3926 | ||
e1bf0c14 ML |
3927 | if (atomic_read(&bat_priv->tt.local_changes) < 1) { |
3928 | if (!batadv_atomic_dec_not_zero(&bat_priv->tt.ogm_append_cnt)) | |
3929 | batadv_tt_tvlv_container_update(bat_priv); | |
a19d3d85 | 3930 | return; |
e1bf0c14 | 3931 | } |
be9aa4c1 | 3932 | |
7ea7b4a1 | 3933 | batadv_tt_local_set_flags(bat_priv, BATADV_TT_CLIENT_NEW, false, true); |
be9aa4c1 | 3934 | |
a513088d | 3935 | batadv_tt_local_purge_pending_clients(bat_priv); |
7ea7b4a1 | 3936 | batadv_tt_local_update_crc(bat_priv); |
058d0e26 AQ |
3937 | |
3938 | /* Increment the TTVN only once per OGM interval */ | |
807736f6 | 3939 | atomic_inc(&bat_priv->tt.vn); |
39c75a51 | 3940 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf | 3941 | "Local changes committed, updating to ttvn %u\n", |
6b5e971a | 3942 | (u8)atomic_read(&bat_priv->tt.vn)); |
be9aa4c1 ML |
3943 | |
3944 | /* reset the sending counter */ | |
807736f6 | 3945 | atomic_set(&bat_priv->tt.ogm_append_cnt, BATADV_TT_OGM_APPEND_MAX); |
e1bf0c14 | 3946 | batadv_tt_tvlv_container_update(bat_priv); |
a19d3d85 | 3947 | } |
a70a9aa9 | 3948 | |
a19d3d85 | 3949 | /** |
7e9a8c2c | 3950 | * batadv_tt_local_commit_changes() - commit all pending local tt changes which |
a19d3d85 ML |
3951 | * have been queued in the time since the last commit |
3952 | * @bat_priv: the bat priv with all the soft interface information | |
3953 | */ | |
3954 | void batadv_tt_local_commit_changes(struct batadv_priv *bat_priv) | |
3955 | { | |
3956 | spin_lock_bh(&bat_priv->tt.commit_lock); | |
3957 | batadv_tt_local_commit_changes_nolock(bat_priv); | |
a70a9aa9 | 3958 | spin_unlock_bh(&bat_priv->tt.commit_lock); |
058d0e26 | 3959 | } |
59b699cd | 3960 | |
ff15c27c SE |
3961 | /** |
3962 | * batadv_is_ap_isolated() - Check if packet from upper layer should be dropped | |
3963 | * @bat_priv: the bat priv with all the soft interface information | |
3964 | * @src: source mac address of packet | |
3965 | * @dst: destination mac address of packet | |
3966 | * @vid: vlan id of packet | |
3967 | * | |
3968 | * Return: true when src+dst(+vid) pair should be isolated, false otherwise | |
3969 | */ | |
6b5e971a SE |
3970 | bool batadv_is_ap_isolated(struct batadv_priv *bat_priv, u8 *src, u8 *dst, |
3971 | unsigned short vid) | |
59b699cd | 3972 | { |
393b299d ME |
3973 | struct batadv_tt_local_entry *tt_local_entry; |
3974 | struct batadv_tt_global_entry *tt_global_entry; | |
b8cbd81d | 3975 | struct batadv_softif_vlan *vlan; |
5870adc6 | 3976 | bool ret = false; |
59b699cd | 3977 | |
b8cbd81d | 3978 | vlan = batadv_softif_vlan_get(bat_priv, vid); |
e087f34f ME |
3979 | if (!vlan) |
3980 | return false; | |
3981 | ||
3982 | if (!atomic_read(&vlan->ap_isolation)) | |
393b299d | 3983 | goto vlan_put; |
59b699cd | 3984 | |
b8cbd81d | 3985 | tt_local_entry = batadv_tt_local_hash_find(bat_priv, dst, vid); |
59b699cd | 3986 | if (!tt_local_entry) |
393b299d | 3987 | goto vlan_put; |
59b699cd | 3988 | |
b8cbd81d | 3989 | tt_global_entry = batadv_tt_global_hash_find(bat_priv, src, vid); |
59b699cd | 3990 | if (!tt_global_entry) |
393b299d | 3991 | goto local_entry_put; |
59b699cd | 3992 | |
393b299d ME |
3993 | if (_batadv_is_ap_isolated(tt_local_entry, tt_global_entry)) |
3994 | ret = true; | |
59b699cd | 3995 | |
393b299d ME |
3996 | batadv_tt_global_entry_put(tt_global_entry); |
3997 | local_entry_put: | |
3998 | batadv_tt_local_entry_put(tt_local_entry); | |
3999 | vlan_put: | |
9c3bf081 | 4000 | batadv_softif_vlan_put(vlan); |
59b699cd AQ |
4001 | return ret; |
4002 | } | |
a943cac1 | 4003 | |
e1bf0c14 | 4004 | /** |
7e9a8c2c | 4005 | * batadv_tt_update_orig() - update global translation table with new tt |
e1bf0c14 ML |
4006 | * information received via ogms |
4007 | * @bat_priv: the bat priv with all the soft interface information | |
e51f0397 SE |
4008 | * @orig_node: the orig_node of the ogm |
4009 | * @tt_buff: pointer to the first tvlv VLAN entry | |
7ea7b4a1 AQ |
4010 | * @tt_num_vlan: number of tvlv VLAN entries |
4011 | * @tt_change: pointer to the first entry in the TT buffer | |
e1bf0c14 ML |
4012 | * @tt_num_changes: number of tt changes inside the tt buffer |
4013 | * @ttvn: translation table version number of this changeset | |
e1bf0c14 ML |
4014 | */ |
4015 | static void batadv_tt_update_orig(struct batadv_priv *bat_priv, | |
4016 | struct batadv_orig_node *orig_node, | |
6b5e971a | 4017 | const void *tt_buff, u16 tt_num_vlan, |
7ea7b4a1 | 4018 | struct batadv_tvlv_tt_change *tt_change, |
6b5e971a | 4019 | u16 tt_num_changes, u8 ttvn) |
a943cac1 | 4020 | { |
6b5e971a | 4021 | u8 orig_ttvn = (u8)atomic_read(&orig_node->last_ttvn); |
7ea7b4a1 | 4022 | struct batadv_tvlv_tt_vlan_data *tt_vlan; |
a943cac1 | 4023 | bool full_table = true; |
e17931d1 | 4024 | bool has_tt_init; |
a943cac1 | 4025 | |
7ea7b4a1 | 4026 | tt_vlan = (struct batadv_tvlv_tt_vlan_data *)tt_buff; |
ac4eebd4 LL |
4027 | has_tt_init = test_bit(BATADV_ORIG_CAPA_HAS_TT, |
4028 | &orig_node->capa_initialized); | |
e17931d1 | 4029 | |
17071578 | 4030 | /* orig table not initialised AND first diff is in the OGM OR the ttvn |
9cfc7bd6 SE |
4031 | * increased by one -> we can apply the attached changes |
4032 | */ | |
e17931d1 | 4033 | if ((!has_tt_init && ttvn == 1) || ttvn - orig_ttvn == 1) { |
a943cac1 | 4034 | /* the OGM could not contain the changes due to their size or |
42d0b044 SE |
4035 | * because they have already been sent BATADV_TT_OGM_APPEND_MAX |
4036 | * times. | |
9cfc7bd6 SE |
4037 | * In this case send a tt request |
4038 | */ | |
a943cac1 ML |
4039 | if (!tt_num_changes) { |
4040 | full_table = false; | |
4041 | goto request_table; | |
4042 | } | |
4043 | ||
a70a9aa9 AQ |
4044 | spin_lock_bh(&orig_node->tt_lock); |
4045 | ||
a513088d | 4046 | batadv_tt_update_changes(bat_priv, orig_node, tt_num_changes, |
96412690 | 4047 | ttvn, tt_change); |
a943cac1 ML |
4048 | |
4049 | /* Even if we received the precomputed crc with the OGM, we | |
4050 | * prefer to recompute it to spot any possible inconsistency | |
9cfc7bd6 SE |
4051 | * in the global table |
4052 | */ | |
7ea7b4a1 | 4053 | batadv_tt_global_update_crc(bat_priv, orig_node); |
a943cac1 | 4054 | |
a70a9aa9 AQ |
4055 | spin_unlock_bh(&orig_node->tt_lock); |
4056 | ||
a943cac1 ML |
4057 | /* The ttvn alone is not enough to guarantee consistency |
4058 | * because a single value could represent different states | |
4059 | * (due to the wrap around). Thus a node has to check whether | |
4060 | * the resulting table (after applying the changes) is still | |
4061 | * consistent or not. E.g. a node could disconnect while its | |
4062 | * ttvn is X and reconnect on ttvn = X + TTVN_MAX: in this case | |
4063 | * checking the CRC value is mandatory to detect the | |
9cfc7bd6 SE |
4064 | * inconsistency |
4065 | */ | |
7ea7b4a1 AQ |
4066 | if (!batadv_tt_global_check_crc(orig_node, tt_vlan, |
4067 | tt_num_vlan)) | |
a943cac1 | 4068 | goto request_table; |
a943cac1 ML |
4069 | } else { |
4070 | /* if we missed more than one change or our tables are not | |
9cfc7bd6 SE |
4071 | * in sync anymore -> request fresh tt data |
4072 | */ | |
e17931d1 | 4073 | if (!has_tt_init || ttvn != orig_ttvn || |
7ea7b4a1 AQ |
4074 | !batadv_tt_global_check_crc(orig_node, tt_vlan, |
4075 | tt_num_vlan)) { | |
a943cac1 | 4076 | request_table: |
39c75a51 | 4077 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
7ea7b4a1 AQ |
4078 | "TT inconsistency for %pM. Need to retrieve the correct information (ttvn: %u last_ttvn: %u num_changes: %u)\n", |
4079 | orig_node->orig, ttvn, orig_ttvn, | |
4080 | tt_num_changes); | |
a513088d | 4081 | batadv_send_tt_request(bat_priv, orig_node, ttvn, |
7ea7b4a1 AQ |
4082 | tt_vlan, tt_num_vlan, |
4083 | full_table); | |
a943cac1 ML |
4084 | return; |
4085 | } | |
4086 | } | |
4087 | } | |
3275e7cc | 4088 | |
c018ad3d | 4089 | /** |
7e9a8c2c | 4090 | * batadv_tt_global_client_is_roaming() - check if a client is marked as roaming |
c018ad3d AQ |
4091 | * @bat_priv: the bat priv with all the soft interface information |
4092 | * @addr: the mac address of the client to check | |
4093 | * @vid: VLAN identifier | |
4094 | * | |
62fe710f | 4095 | * Return: true if we know that the client has moved from its old originator |
c018ad3d AQ |
4096 | * to another one. This entry is still kept for consistency purposes and will be |
4097 | * deleted later by a DEL or because of timeout | |
3275e7cc | 4098 | */ |
56303d34 | 4099 | bool batadv_tt_global_client_is_roaming(struct batadv_priv *bat_priv, |
6b5e971a | 4100 | u8 *addr, unsigned short vid) |
3275e7cc | 4101 | { |
56303d34 | 4102 | struct batadv_tt_global_entry *tt_global_entry; |
3275e7cc AQ |
4103 | bool ret = false; |
4104 | ||
c018ad3d | 4105 | tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid); |
3275e7cc AQ |
4106 | if (!tt_global_entry) |
4107 | goto out; | |
4108 | ||
c1d07431 | 4109 | ret = tt_global_entry->common.flags & BATADV_TT_CLIENT_ROAM; |
5dafd8a6 | 4110 | batadv_tt_global_entry_put(tt_global_entry); |
3275e7cc AQ |
4111 | out: |
4112 | return ret; | |
4113 | } | |
30cfd02b | 4114 | |
7c1fd91d | 4115 | /** |
7e9a8c2c | 4116 | * batadv_tt_local_client_is_roaming() - tells whether the client is roaming |
7c1fd91d | 4117 | * @bat_priv: the bat priv with all the soft interface information |
c018ad3d AQ |
4118 | * @addr: the mac address of the local client to query |
4119 | * @vid: VLAN identifier | |
7c1fd91d | 4120 | * |
62fe710f | 4121 | * Return: true if the local client is known to be roaming (it is not served by |
7c1fd91d AQ |
4122 | * this node anymore) or not. If yes, the client is still present in the table |
4123 | * to keep the latter consistent with the node TTVN | |
4124 | */ | |
4125 | bool batadv_tt_local_client_is_roaming(struct batadv_priv *bat_priv, | |
6b5e971a | 4126 | u8 *addr, unsigned short vid) |
7c1fd91d AQ |
4127 | { |
4128 | struct batadv_tt_local_entry *tt_local_entry; | |
4129 | bool ret = false; | |
4130 | ||
c018ad3d | 4131 | tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr, vid); |
7c1fd91d AQ |
4132 | if (!tt_local_entry) |
4133 | goto out; | |
4134 | ||
4135 | ret = tt_local_entry->common.flags & BATADV_TT_CLIENT_ROAM; | |
95c0db90 | 4136 | batadv_tt_local_entry_put(tt_local_entry); |
7c1fd91d AQ |
4137 | out: |
4138 | return ret; | |
7c1fd91d AQ |
4139 | } |
4140 | ||
ff15c27c SE |
4141 | /** |
4142 | * batadv_tt_add_temporary_global_entry() - Add temporary entry to global TT | |
4143 | * @bat_priv: the bat priv with all the soft interface information | |
4144 | * @orig_node: orig node which the temporary entry should be associated with | |
4145 | * @addr: mac address of the client | |
4146 | * @vid: VLAN id of the new temporary global translation table | |
4147 | * | |
4148 | * Return: true when temporary tt entry could be added, false otherwise | |
4149 | */ | |
30cfd02b AQ |
4150 | bool batadv_tt_add_temporary_global_entry(struct batadv_priv *bat_priv, |
4151 | struct batadv_orig_node *orig_node, | |
c018ad3d | 4152 | const unsigned char *addr, |
16052789 | 4153 | unsigned short vid) |
30cfd02b | 4154 | { |
1227c9ae SW |
4155 | /* ignore loop detect macs, they are not supposed to be in the tt local |
4156 | * data as well. | |
4157 | */ | |
4158 | if (batadv_bla_is_loopdetect_mac(addr)) | |
4159 | return false; | |
4160 | ||
16052789 | 4161 | if (!batadv_tt_global_add(bat_priv, orig_node, addr, vid, |
30cfd02b AQ |
4162 | BATADV_TT_CLIENT_TEMP, |
4163 | atomic_read(&orig_node->last_ttvn))) | |
75ae84a4 | 4164 | return false; |
30cfd02b AQ |
4165 | |
4166 | batadv_dbg(BATADV_DBG_TT, bat_priv, | |
16052789 | 4167 | "Added temporary global client (addr: %pM, vid: %d, orig: %pM)\n", |
f7a2bd65 | 4168 | addr, batadv_print_vid(vid), orig_node->orig); |
75ae84a4 SW |
4169 | |
4170 | return true; | |
30cfd02b | 4171 | } |
e1bf0c14 | 4172 | |
a19d3d85 | 4173 | /** |
7e9a8c2c | 4174 | * batadv_tt_local_resize_to_mtu() - resize the local translation table fit the |
a19d3d85 ML |
4175 | * maximum packet size that can be transported through the mesh |
4176 | * @soft_iface: netdev struct of the mesh interface | |
4177 | * | |
4178 | * Remove entries older than 'timeout' and half timeout if more entries need | |
4179 | * to be removed. | |
4180 | */ | |
4181 | void batadv_tt_local_resize_to_mtu(struct net_device *soft_iface) | |
4182 | { | |
4183 | struct batadv_priv *bat_priv = netdev_priv(soft_iface); | |
4184 | int packet_size_max = atomic_read(&bat_priv->packet_size_max); | |
4185 | int table_size, timeout = BATADV_TT_LOCAL_TIMEOUT / 2; | |
4186 | bool reduced = false; | |
4187 | ||
4188 | spin_lock_bh(&bat_priv->tt.commit_lock); | |
4189 | ||
4190 | while (true) { | |
4191 | table_size = batadv_tt_local_table_transmit_size(bat_priv); | |
4192 | if (packet_size_max >= table_size) | |
4193 | break; | |
4194 | ||
4195 | batadv_tt_local_purge(bat_priv, timeout); | |
4196 | batadv_tt_local_purge_pending_clients(bat_priv); | |
4197 | ||
4198 | timeout /= 2; | |
4199 | reduced = true; | |
4200 | net_ratelimited_function(batadv_info, soft_iface, | |
4201 | "Forced to purge local tt entries to fit new maximum fragment MTU (%i)\n", | |
4202 | packet_size_max); | |
4203 | } | |
4204 | ||
4205 | /* commit these changes immediately, to avoid synchronization problem | |
4206 | * with the TTVN | |
4207 | */ | |
4208 | if (reduced) | |
4209 | batadv_tt_local_commit_changes_nolock(bat_priv); | |
4210 | ||
4211 | spin_unlock_bh(&bat_priv->tt.commit_lock); | |
4212 | } | |
4213 | ||
e1bf0c14 | 4214 | /** |
7e9a8c2c | 4215 | * batadv_tt_tvlv_ogm_handler_v1() - process incoming tt tvlv container |
e1bf0c14 ML |
4216 | * @bat_priv: the bat priv with all the soft interface information |
4217 | * @orig: the orig_node of the ogm | |
4218 | * @flags: flags indicating the tvlv state (see batadv_tvlv_handler_flags) | |
4219 | * @tvlv_value: tvlv buffer containing the gateway data | |
4220 | * @tvlv_value_len: tvlv buffer length | |
4221 | */ | |
4222 | static void batadv_tt_tvlv_ogm_handler_v1(struct batadv_priv *bat_priv, | |
4223 | struct batadv_orig_node *orig, | |
6b5e971a SE |
4224 | u8 flags, void *tvlv_value, |
4225 | u16 tvlv_value_len) | |
e1bf0c14 | 4226 | { |
7ea7b4a1 AQ |
4227 | struct batadv_tvlv_tt_vlan_data *tt_vlan; |
4228 | struct batadv_tvlv_tt_change *tt_change; | |
e1bf0c14 | 4229 | struct batadv_tvlv_tt_data *tt_data; |
6b5e971a | 4230 | u16 num_entries, num_vlan; |
e1bf0c14 ML |
4231 | |
4232 | if (tvlv_value_len < sizeof(*tt_data)) | |
4233 | return; | |
4234 | ||
4235 | tt_data = (struct batadv_tvlv_tt_data *)tvlv_value; | |
4236 | tvlv_value_len -= sizeof(*tt_data); | |
4237 | ||
7ea7b4a1 AQ |
4238 | num_vlan = ntohs(tt_data->num_vlan); |
4239 | ||
4240 | if (tvlv_value_len < sizeof(*tt_vlan) * num_vlan) | |
4241 | return; | |
4242 | ||
4243 | tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(tt_data + 1); | |
4244 | tt_change = (struct batadv_tvlv_tt_change *)(tt_vlan + num_vlan); | |
4245 | tvlv_value_len -= sizeof(*tt_vlan) * num_vlan; | |
4246 | ||
298e6e68 | 4247 | num_entries = batadv_tt_entries(tvlv_value_len); |
e1bf0c14 | 4248 | |
7ea7b4a1 AQ |
4249 | batadv_tt_update_orig(bat_priv, orig, tt_vlan, num_vlan, tt_change, |
4250 | num_entries, tt_data->ttvn); | |
e1bf0c14 ML |
4251 | } |
4252 | ||
335fbe0f | 4253 | /** |
7e9a8c2c | 4254 | * batadv_tt_tvlv_unicast_handler_v1() - process incoming (unicast) tt tvlv |
335fbe0f ML |
4255 | * container |
4256 | * @bat_priv: the bat priv with all the soft interface information | |
4257 | * @src: mac address of tt tvlv sender | |
4258 | * @dst: mac address of tt tvlv recipient | |
4259 | * @tvlv_value: tvlv buffer containing the tt data | |
4260 | * @tvlv_value_len: tvlv buffer length | |
4261 | * | |
62fe710f | 4262 | * Return: NET_RX_DROP if the tt tvlv is to be re-routed, NET_RX_SUCCESS |
335fbe0f ML |
4263 | * otherwise. |
4264 | */ | |
4265 | static int batadv_tt_tvlv_unicast_handler_v1(struct batadv_priv *bat_priv, | |
6b5e971a | 4266 | u8 *src, u8 *dst, |
335fbe0f | 4267 | void *tvlv_value, |
6b5e971a | 4268 | u16 tvlv_value_len) |
335fbe0f ML |
4269 | { |
4270 | struct batadv_tvlv_tt_data *tt_data; | |
6b5e971a | 4271 | u16 tt_vlan_len, tt_num_entries; |
335fbe0f ML |
4272 | char tt_flag; |
4273 | bool ret; | |
4274 | ||
4275 | if (tvlv_value_len < sizeof(*tt_data)) | |
4276 | return NET_RX_SUCCESS; | |
4277 | ||
4278 | tt_data = (struct batadv_tvlv_tt_data *)tvlv_value; | |
4279 | tvlv_value_len -= sizeof(*tt_data); | |
4280 | ||
7ea7b4a1 AQ |
4281 | tt_vlan_len = sizeof(struct batadv_tvlv_tt_vlan_data); |
4282 | tt_vlan_len *= ntohs(tt_data->num_vlan); | |
4283 | ||
4284 | if (tvlv_value_len < tt_vlan_len) | |
4285 | return NET_RX_SUCCESS; | |
4286 | ||
4287 | tvlv_value_len -= tt_vlan_len; | |
4288 | tt_num_entries = batadv_tt_entries(tvlv_value_len); | |
335fbe0f ML |
4289 | |
4290 | switch (tt_data->flags & BATADV_TT_DATA_TYPE_MASK) { | |
4291 | case BATADV_TT_REQUEST: | |
4292 | batadv_inc_counter(bat_priv, BATADV_CNT_TT_REQUEST_RX); | |
4293 | ||
4294 | /* If this node cannot provide a TT response the tt_request is | |
4295 | * forwarded | |
4296 | */ | |
4297 | ret = batadv_send_tt_response(bat_priv, tt_data, src, dst); | |
4298 | if (!ret) { | |
4299 | if (tt_data->flags & BATADV_TT_FULL_TABLE) | |
4300 | tt_flag = 'F'; | |
4301 | else | |
4302 | tt_flag = '.'; | |
4303 | ||
4304 | batadv_dbg(BATADV_DBG_TT, bat_priv, | |
4305 | "Routing TT_REQUEST to %pM [%c]\n", | |
4306 | dst, tt_flag); | |
4307 | /* tvlv API will re-route the packet */ | |
4308 | return NET_RX_DROP; | |
4309 | } | |
4310 | break; | |
4311 | case BATADV_TT_RESPONSE: | |
4312 | batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_RX); | |
4313 | ||
4314 | if (batadv_is_my_mac(bat_priv, dst)) { | |
4315 | batadv_handle_tt_response(bat_priv, tt_data, | |
7ea7b4a1 | 4316 | src, tt_num_entries); |
335fbe0f ML |
4317 | return NET_RX_SUCCESS; |
4318 | } | |
4319 | ||
4320 | if (tt_data->flags & BATADV_TT_FULL_TABLE) | |
4321 | tt_flag = 'F'; | |
4322 | else | |
4323 | tt_flag = '.'; | |
4324 | ||
4325 | batadv_dbg(BATADV_DBG_TT, bat_priv, | |
4326 | "Routing TT_RESPONSE to %pM [%c]\n", dst, tt_flag); | |
4327 | ||
4328 | /* tvlv API will re-route the packet */ | |
4329 | return NET_RX_DROP; | |
4330 | } | |
4331 | ||
4332 | return NET_RX_SUCCESS; | |
4333 | } | |
4334 | ||
122edaa0 | 4335 | /** |
7e9a8c2c SE |
4336 | * batadv_roam_tvlv_unicast_handler_v1() - process incoming tt roam tvlv |
4337 | * container | |
122edaa0 ML |
4338 | * @bat_priv: the bat priv with all the soft interface information |
4339 | * @src: mac address of tt tvlv sender | |
4340 | * @dst: mac address of tt tvlv recipient | |
4341 | * @tvlv_value: tvlv buffer containing the tt data | |
4342 | * @tvlv_value_len: tvlv buffer length | |
4343 | * | |
62fe710f | 4344 | * Return: NET_RX_DROP if the tt roam tvlv is to be re-routed, NET_RX_SUCCESS |
122edaa0 ML |
4345 | * otherwise. |
4346 | */ | |
4347 | static int batadv_roam_tvlv_unicast_handler_v1(struct batadv_priv *bat_priv, | |
6b5e971a | 4348 | u8 *src, u8 *dst, |
122edaa0 | 4349 | void *tvlv_value, |
6b5e971a | 4350 | u16 tvlv_value_len) |
122edaa0 ML |
4351 | { |
4352 | struct batadv_tvlv_roam_adv *roaming_adv; | |
4353 | struct batadv_orig_node *orig_node = NULL; | |
4354 | ||
4355 | /* If this node is not the intended recipient of the | |
4356 | * roaming advertisement the packet is forwarded | |
4357 | * (the tvlv API will re-route the packet). | |
4358 | */ | |
4359 | if (!batadv_is_my_mac(bat_priv, dst)) | |
4360 | return NET_RX_DROP; | |
4361 | ||
122edaa0 ML |
4362 | if (tvlv_value_len < sizeof(*roaming_adv)) |
4363 | goto out; | |
4364 | ||
4365 | orig_node = batadv_orig_hash_find(bat_priv, src); | |
4366 | if (!orig_node) | |
4367 | goto out; | |
4368 | ||
4369 | batadv_inc_counter(bat_priv, BATADV_CNT_TT_ROAM_ADV_RX); | |
4370 | roaming_adv = (struct batadv_tvlv_roam_adv *)tvlv_value; | |
4371 | ||
4372 | batadv_dbg(BATADV_DBG_TT, bat_priv, | |
4373 | "Received ROAMING_ADV from %pM (client %pM)\n", | |
4374 | src, roaming_adv->client); | |
4375 | ||
4376 | batadv_tt_global_add(bat_priv, orig_node, roaming_adv->client, | |
c018ad3d | 4377 | ntohs(roaming_adv->vid), BATADV_TT_CLIENT_ROAM, |
122edaa0 ML |
4378 | atomic_read(&orig_node->last_ttvn) + 1); |
4379 | ||
4380 | out: | |
4381 | if (orig_node) | |
5d967310 | 4382 | batadv_orig_node_put(orig_node); |
122edaa0 ML |
4383 | return NET_RX_SUCCESS; |
4384 | } | |
4385 | ||
e1bf0c14 | 4386 | /** |
7e9a8c2c | 4387 | * batadv_tt_init() - initialise the translation table internals |
e1bf0c14 ML |
4388 | * @bat_priv: the bat priv with all the soft interface information |
4389 | * | |
62fe710f | 4390 | * Return: 0 on success or negative error number in case of failure. |
e1bf0c14 ML |
4391 | */ |
4392 | int batadv_tt_init(struct batadv_priv *bat_priv) | |
4393 | { | |
4394 | int ret; | |
4395 | ||
0eb01568 AQ |
4396 | /* synchronized flags must be remote */ |
4397 | BUILD_BUG_ON(!(BATADV_TT_SYNC_MASK & BATADV_TT_REMOTE_MASK)); | |
4398 | ||
e1bf0c14 ML |
4399 | ret = batadv_tt_local_init(bat_priv); |
4400 | if (ret < 0) | |
4401 | return ret; | |
4402 | ||
4403 | ret = batadv_tt_global_init(bat_priv); | |
4404 | if (ret < 0) | |
4405 | return ret; | |
4406 | ||
4407 | batadv_tvlv_handler_register(bat_priv, batadv_tt_tvlv_ogm_handler_v1, | |
335fbe0f ML |
4408 | batadv_tt_tvlv_unicast_handler_v1, |
4409 | BATADV_TVLV_TT, 1, BATADV_NO_FLAGS); | |
e1bf0c14 | 4410 | |
122edaa0 ML |
4411 | batadv_tvlv_handler_register(bat_priv, NULL, |
4412 | batadv_roam_tvlv_unicast_handler_v1, | |
4413 | BATADV_TVLV_ROAM, 1, BATADV_NO_FLAGS); | |
4414 | ||
e1bf0c14 ML |
4415 | INIT_DELAYED_WORK(&bat_priv->tt.work, batadv_tt_purge); |
4416 | queue_delayed_work(batadv_event_workqueue, &bat_priv->tt.work, | |
4417 | msecs_to_jiffies(BATADV_TT_WORK_PERIOD)); | |
4418 | ||
4419 | return 1; | |
4420 | } | |
42cb0bef AQ |
4421 | |
4422 | /** | |
7e9a8c2c | 4423 | * batadv_tt_global_is_isolated() - check if a client is marked as isolated |
42cb0bef AQ |
4424 | * @bat_priv: the bat priv with all the soft interface information |
4425 | * @addr: the mac address of the client | |
4426 | * @vid: the identifier of the VLAN where this client is connected | |
4427 | * | |
62fe710f | 4428 | * Return: true if the client is marked with the TT_CLIENT_ISOLA flag, false |
42cb0bef AQ |
4429 | * otherwise |
4430 | */ | |
4431 | bool batadv_tt_global_is_isolated(struct batadv_priv *bat_priv, | |
6b5e971a | 4432 | const u8 *addr, unsigned short vid) |
42cb0bef AQ |
4433 | { |
4434 | struct batadv_tt_global_entry *tt; | |
4435 | bool ret; | |
4436 | ||
4437 | tt = batadv_tt_global_hash_find(bat_priv, addr, vid); | |
4438 | if (!tt) | |
4439 | return false; | |
4440 | ||
4441 | ret = tt->common.flags & BATADV_TT_CLIENT_ISOLA; | |
4442 | ||
5dafd8a6 | 4443 | batadv_tt_global_entry_put(tt); |
42cb0bef AQ |
4444 | |
4445 | return ret; | |
4446 | } | |
86452f81 SE |
4447 | |
4448 | /** | |
7e9a8c2c | 4449 | * batadv_tt_cache_init() - Initialize tt memory object cache |
86452f81 SE |
4450 | * |
4451 | * Return: 0 on success or negative error number in case of failure. | |
4452 | */ | |
4453 | int __init batadv_tt_cache_init(void) | |
4454 | { | |
4455 | size_t tl_size = sizeof(struct batadv_tt_local_entry); | |
4456 | size_t tg_size = sizeof(struct batadv_tt_global_entry); | |
4457 | size_t tt_orig_size = sizeof(struct batadv_tt_orig_list_entry); | |
4458 | size_t tt_change_size = sizeof(struct batadv_tt_change_node); | |
4459 | size_t tt_req_size = sizeof(struct batadv_tt_req_node); | |
4460 | size_t tt_roam_size = sizeof(struct batadv_tt_roam_node); | |
4461 | ||
4462 | batadv_tl_cache = kmem_cache_create("batadv_tl_cache", tl_size, 0, | |
4463 | SLAB_HWCACHE_ALIGN, NULL); | |
4464 | if (!batadv_tl_cache) | |
4465 | return -ENOMEM; | |
4466 | ||
4467 | batadv_tg_cache = kmem_cache_create("batadv_tg_cache", tg_size, 0, | |
4468 | SLAB_HWCACHE_ALIGN, NULL); | |
4469 | if (!batadv_tg_cache) | |
4470 | goto err_tt_tl_destroy; | |
4471 | ||
4472 | batadv_tt_orig_cache = kmem_cache_create("batadv_tt_orig_cache", | |
4473 | tt_orig_size, 0, | |
4474 | SLAB_HWCACHE_ALIGN, NULL); | |
4475 | if (!batadv_tt_orig_cache) | |
4476 | goto err_tt_tg_destroy; | |
4477 | ||
4478 | batadv_tt_change_cache = kmem_cache_create("batadv_tt_change_cache", | |
4479 | tt_change_size, 0, | |
4480 | SLAB_HWCACHE_ALIGN, NULL); | |
4481 | if (!batadv_tt_change_cache) | |
4482 | goto err_tt_orig_destroy; | |
4483 | ||
4484 | batadv_tt_req_cache = kmem_cache_create("batadv_tt_req_cache", | |
4485 | tt_req_size, 0, | |
4486 | SLAB_HWCACHE_ALIGN, NULL); | |
4487 | if (!batadv_tt_req_cache) | |
4488 | goto err_tt_change_destroy; | |
4489 | ||
4490 | batadv_tt_roam_cache = kmem_cache_create("batadv_tt_roam_cache", | |
4491 | tt_roam_size, 0, | |
4492 | SLAB_HWCACHE_ALIGN, NULL); | |
4493 | if (!batadv_tt_roam_cache) | |
4494 | goto err_tt_req_destroy; | |
4495 | ||
4496 | return 0; | |
4497 | ||
4498 | err_tt_req_destroy: | |
4499 | kmem_cache_destroy(batadv_tt_req_cache); | |
4500 | batadv_tt_req_cache = NULL; | |
4501 | err_tt_change_destroy: | |
4502 | kmem_cache_destroy(batadv_tt_change_cache); | |
4503 | batadv_tt_change_cache = NULL; | |
4504 | err_tt_orig_destroy: | |
4505 | kmem_cache_destroy(batadv_tt_orig_cache); | |
4506 | batadv_tt_orig_cache = NULL; | |
4507 | err_tt_tg_destroy: | |
4508 | kmem_cache_destroy(batadv_tg_cache); | |
4509 | batadv_tg_cache = NULL; | |
4510 | err_tt_tl_destroy: | |
4511 | kmem_cache_destroy(batadv_tl_cache); | |
4512 | batadv_tl_cache = NULL; | |
4513 | ||
4514 | return -ENOMEM; | |
4515 | } | |
4516 | ||
4517 | /** | |
7e9a8c2c | 4518 | * batadv_tt_cache_destroy() - Destroy tt memory object cache |
86452f81 SE |
4519 | */ |
4520 | void batadv_tt_cache_destroy(void) | |
4521 | { | |
4522 | kmem_cache_destroy(batadv_tl_cache); | |
4523 | kmem_cache_destroy(batadv_tg_cache); | |
4524 | kmem_cache_destroy(batadv_tt_orig_cache); | |
4525 | kmem_cache_destroy(batadv_tt_change_cache); | |
4526 | kmem_cache_destroy(batadv_tt_req_cache); | |
4527 | kmem_cache_destroy(batadv_tt_roam_cache); | |
4528 | } |