Revert "ALSA: hda: Flush interrupts on disabling"
[linux/fpc-iii.git] / net / batman-adv / translation-table.c
blob1fab9bcf535d30d1fc6e9c7a958316bcf38882c1
1 /* Copyright (C) 2007-2016 B.A.T.M.A.N. contributors:
3 * Marek Lindner, Simon Wunderlich, Antonio Quartulli
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 #include "translation-table.h"
19 #include "main.h"
21 #include <linux/atomic.h>
22 #include <linux/bitops.h>
23 #include <linux/bug.h>
24 #include <linux/byteorder/generic.h>
25 #include <linux/cache.h>
26 #include <linux/compiler.h>
27 #include <linux/crc32c.h>
28 #include <linux/errno.h>
29 #include <linux/etherdevice.h>
30 #include <linux/fs.h>
31 #include <linux/if_ether.h>
32 #include <linux/init.h>
33 #include <linux/jhash.h>
34 #include <linux/jiffies.h>
35 #include <linux/kernel.h>
36 #include <linux/kref.h>
37 #include <linux/list.h>
38 #include <linux/lockdep.h>
39 #include <linux/netdevice.h>
40 #include <linux/netlink.h>
41 #include <linux/rculist.h>
42 #include <linux/rcupdate.h>
43 #include <linux/seq_file.h>
44 #include <linux/skbuff.h>
45 #include <linux/slab.h>
46 #include <linux/spinlock.h>
47 #include <linux/stddef.h>
48 #include <linux/string.h>
49 #include <linux/workqueue.h>
50 #include <net/genetlink.h>
51 #include <net/netlink.h>
52 #include <net/sock.h>
53 #include <uapi/linux/batman_adv.h>
55 #include "bridge_loop_avoidance.h"
56 #include "hard-interface.h"
57 #include "hash.h"
58 #include "log.h"
59 #include "multicast.h"
60 #include "netlink.h"
61 #include "originator.h"
62 #include "packet.h"
63 #include "soft-interface.h"
64 #include "tvlv.h"
66 static struct kmem_cache *batadv_tl_cache __read_mostly;
67 static struct kmem_cache *batadv_tg_cache __read_mostly;
68 static struct kmem_cache *batadv_tt_orig_cache __read_mostly;
69 static struct kmem_cache *batadv_tt_change_cache __read_mostly;
70 static struct kmem_cache *batadv_tt_req_cache __read_mostly;
71 static struct kmem_cache *batadv_tt_roam_cache __read_mostly;
73 /* hash class keys */
74 static struct lock_class_key batadv_tt_local_hash_lock_class_key;
75 static struct lock_class_key batadv_tt_global_hash_lock_class_key;
77 static void batadv_send_roam_adv(struct batadv_priv *bat_priv, u8 *client,
78 unsigned short vid,
79 struct batadv_orig_node *orig_node);
80 static void batadv_tt_purge(struct work_struct *work);
81 static void
82 batadv_tt_global_del_orig_list(struct batadv_tt_global_entry *tt_global_entry);
83 static void batadv_tt_global_del(struct batadv_priv *bat_priv,
84 struct batadv_orig_node *orig_node,
85 const unsigned char *addr,
86 unsigned short vid, const char *message,
87 bool roaming);
89 /**
90 * batadv_compare_tt - check if two TT entries are the same
91 * @node: the list element pointer of the first TT entry
92 * @data2: pointer to the tt_common_entry of the second TT entry
94 * Compare the MAC address and the VLAN ID of the two TT entries and check if
95 * they are the same TT client.
96 * Return: true if the two TT clients are the same, false otherwise
98 static bool batadv_compare_tt(const struct hlist_node *node, const void *data2)
100 const void *data1 = container_of(node, struct batadv_tt_common_entry,
101 hash_entry);
102 const struct batadv_tt_common_entry *tt1 = data1;
103 const struct batadv_tt_common_entry *tt2 = data2;
105 return (tt1->vid == tt2->vid) && batadv_compare_eth(data1, data2);
109 * batadv_choose_tt - return the index of the tt entry in the hash table
110 * @data: pointer to the tt_common_entry object to map
111 * @size: the size of the hash table
113 * Return: the hash index where the object represented by 'data' should be
114 * stored at.
116 static inline u32 batadv_choose_tt(const void *data, u32 size)
118 struct batadv_tt_common_entry *tt;
119 u32 hash = 0;
121 tt = (struct batadv_tt_common_entry *)data;
122 hash = jhash(&tt->addr, ETH_ALEN, hash);
123 hash = jhash(&tt->vid, sizeof(tt->vid), hash);
125 return hash % size;
129 * batadv_tt_hash_find - look for a client in the given hash table
130 * @hash: the hash table to search
131 * @addr: the mac address of the client to look for
132 * @vid: VLAN identifier
134 * Return: a pointer to the tt_common struct belonging to the searched client if
135 * found, NULL otherwise.
137 static struct batadv_tt_common_entry *
138 batadv_tt_hash_find(struct batadv_hashtable *hash, const u8 *addr,
139 unsigned short vid)
141 struct hlist_head *head;
142 struct batadv_tt_common_entry to_search, *tt, *tt_tmp = NULL;
143 u32 index;
145 if (!hash)
146 return NULL;
148 ether_addr_copy(to_search.addr, addr);
149 to_search.vid = vid;
151 index = batadv_choose_tt(&to_search, hash->size);
152 head = &hash->table[index];
154 rcu_read_lock();
155 hlist_for_each_entry_rcu(tt, head, hash_entry) {
156 if (!batadv_compare_eth(tt, addr))
157 continue;
159 if (tt->vid != vid)
160 continue;
162 if (!kref_get_unless_zero(&tt->refcount))
163 continue;
165 tt_tmp = tt;
166 break;
168 rcu_read_unlock();
170 return tt_tmp;
174 * batadv_tt_local_hash_find - search the local table for a given client
175 * @bat_priv: the bat priv with all the soft interface information
176 * @addr: the mac address of the client to look for
177 * @vid: VLAN identifier
179 * Return: a pointer to the corresponding tt_local_entry struct if the client is
180 * found, NULL otherwise.
182 static struct batadv_tt_local_entry *
183 batadv_tt_local_hash_find(struct batadv_priv *bat_priv, const u8 *addr,
184 unsigned short vid)
186 struct batadv_tt_common_entry *tt_common_entry;
187 struct batadv_tt_local_entry *tt_local_entry = NULL;
189 tt_common_entry = batadv_tt_hash_find(bat_priv->tt.local_hash, addr,
190 vid);
191 if (tt_common_entry)
192 tt_local_entry = container_of(tt_common_entry,
193 struct batadv_tt_local_entry,
194 common);
195 return tt_local_entry;
199 * batadv_tt_global_hash_find - search the global table for a given client
200 * @bat_priv: the bat priv with all the soft interface information
201 * @addr: the mac address of the client to look for
202 * @vid: VLAN identifier
204 * Return: a pointer to the corresponding tt_global_entry struct if the client
205 * is found, NULL otherwise.
207 static struct batadv_tt_global_entry *
208 batadv_tt_global_hash_find(struct batadv_priv *bat_priv, const u8 *addr,
209 unsigned short vid)
211 struct batadv_tt_common_entry *tt_common_entry;
212 struct batadv_tt_global_entry *tt_global_entry = NULL;
214 tt_common_entry = batadv_tt_hash_find(bat_priv->tt.global_hash, addr,
215 vid);
216 if (tt_common_entry)
217 tt_global_entry = container_of(tt_common_entry,
218 struct batadv_tt_global_entry,
219 common);
220 return tt_global_entry;
224 * batadv_tt_local_entry_free_rcu - free the tt_local_entry
225 * @rcu: rcu pointer of the tt_local_entry
227 static void batadv_tt_local_entry_free_rcu(struct rcu_head *rcu)
229 struct batadv_tt_local_entry *tt_local_entry;
231 tt_local_entry = container_of(rcu, struct batadv_tt_local_entry,
232 common.rcu);
234 kmem_cache_free(batadv_tl_cache, tt_local_entry);
238 * batadv_tt_local_entry_release - release tt_local_entry from lists and queue
239 * for free after rcu grace period
240 * @ref: kref pointer of the nc_node
242 static void batadv_tt_local_entry_release(struct kref *ref)
244 struct batadv_tt_local_entry *tt_local_entry;
246 tt_local_entry = container_of(ref, struct batadv_tt_local_entry,
247 common.refcount);
249 batadv_softif_vlan_put(tt_local_entry->vlan);
251 call_rcu(&tt_local_entry->common.rcu, batadv_tt_local_entry_free_rcu);
255 * batadv_tt_local_entry_put - decrement the tt_local_entry refcounter and
256 * possibly release it
257 * @tt_local_entry: tt_local_entry to be free'd
259 static void
260 batadv_tt_local_entry_put(struct batadv_tt_local_entry *tt_local_entry)
262 kref_put(&tt_local_entry->common.refcount,
263 batadv_tt_local_entry_release);
267 * batadv_tt_global_entry_free_rcu - free the tt_global_entry
268 * @rcu: rcu pointer of the tt_global_entry
270 static void batadv_tt_global_entry_free_rcu(struct rcu_head *rcu)
272 struct batadv_tt_global_entry *tt_global_entry;
274 tt_global_entry = container_of(rcu, struct batadv_tt_global_entry,
275 common.rcu);
277 kmem_cache_free(batadv_tg_cache, tt_global_entry);
281 * batadv_tt_global_entry_release - release tt_global_entry from lists and queue
282 * for free after rcu grace period
283 * @ref: kref pointer of the nc_node
285 static void batadv_tt_global_entry_release(struct kref *ref)
287 struct batadv_tt_global_entry *tt_global_entry;
289 tt_global_entry = container_of(ref, struct batadv_tt_global_entry,
290 common.refcount);
292 batadv_tt_global_del_orig_list(tt_global_entry);
294 call_rcu(&tt_global_entry->common.rcu, batadv_tt_global_entry_free_rcu);
298 * batadv_tt_global_entry_put - decrement the tt_global_entry refcounter and
299 * possibly release it
300 * @tt_global_entry: tt_global_entry to be free'd
302 static void
303 batadv_tt_global_entry_put(struct batadv_tt_global_entry *tt_global_entry)
305 kref_put(&tt_global_entry->common.refcount,
306 batadv_tt_global_entry_release);
310 * batadv_tt_global_hash_count - count the number of orig entries
311 * @bat_priv: the bat priv with all the soft interface information
312 * @addr: the mac address of the client to count entries for
313 * @vid: VLAN identifier
315 * Return: the number of originators advertising the given address/data
316 * (excluding ourself).
318 int batadv_tt_global_hash_count(struct batadv_priv *bat_priv,
319 const u8 *addr, unsigned short vid)
321 struct batadv_tt_global_entry *tt_global_entry;
322 int count;
324 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid);
325 if (!tt_global_entry)
326 return 0;
328 count = atomic_read(&tt_global_entry->orig_list_count);
329 batadv_tt_global_entry_put(tt_global_entry);
331 return count;
335 * batadv_tt_local_size_mod - change the size by v of the local table identified
336 * by vid
337 * @bat_priv: the bat priv with all the soft interface information
338 * @vid: the VLAN identifier of the sub-table to change
339 * @v: the amount to sum to the local table size
341 static void batadv_tt_local_size_mod(struct batadv_priv *bat_priv,
342 unsigned short vid, int v)
344 struct batadv_softif_vlan *vlan;
346 vlan = batadv_softif_vlan_get(bat_priv, vid);
347 if (!vlan)
348 return;
350 atomic_add(v, &vlan->tt.num_entries);
352 batadv_softif_vlan_put(vlan);
356 * batadv_tt_local_size_inc - increase by one the local table size for the given
357 * vid
358 * @bat_priv: the bat priv with all the soft interface information
359 * @vid: the VLAN identifier
361 static void batadv_tt_local_size_inc(struct batadv_priv *bat_priv,
362 unsigned short vid)
364 batadv_tt_local_size_mod(bat_priv, vid, 1);
368 * batadv_tt_local_size_dec - decrease by one the local table size for the given
369 * vid
370 * @bat_priv: the bat priv with all the soft interface information
371 * @vid: the VLAN identifier
373 static void batadv_tt_local_size_dec(struct batadv_priv *bat_priv,
374 unsigned short vid)
376 batadv_tt_local_size_mod(bat_priv, vid, -1);
380 * batadv_tt_global_size_mod - change the size by v of the global table
381 * for orig_node identified by vid
382 * @orig_node: the originator for which the table has to be modified
383 * @vid: the VLAN identifier
384 * @v: the amount to sum to the global table size
386 static void batadv_tt_global_size_mod(struct batadv_orig_node *orig_node,
387 unsigned short vid, int v)
389 struct batadv_orig_node_vlan *vlan;
391 vlan = batadv_orig_node_vlan_new(orig_node, vid);
392 if (!vlan)
393 return;
395 if (atomic_add_return(v, &vlan->tt.num_entries) == 0) {
396 spin_lock_bh(&orig_node->vlan_list_lock);
397 if (!hlist_unhashed(&vlan->list)) {
398 hlist_del_init_rcu(&vlan->list);
399 batadv_orig_node_vlan_put(vlan);
401 spin_unlock_bh(&orig_node->vlan_list_lock);
404 batadv_orig_node_vlan_put(vlan);
408 * batadv_tt_global_size_inc - increase by one the global table size for the
409 * given vid
410 * @orig_node: the originator which global table size has to be decreased
411 * @vid: the vlan identifier
413 static void batadv_tt_global_size_inc(struct batadv_orig_node *orig_node,
414 unsigned short vid)
416 batadv_tt_global_size_mod(orig_node, vid, 1);
420 * batadv_tt_global_size_dec - decrease by one the global table size for the
421 * given vid
422 * @orig_node: the originator which global table size has to be decreased
423 * @vid: the vlan identifier
425 static void batadv_tt_global_size_dec(struct batadv_orig_node *orig_node,
426 unsigned short vid)
428 batadv_tt_global_size_mod(orig_node, vid, -1);
432 * batadv_tt_orig_list_entry_free_rcu - free the orig_entry
433 * @rcu: rcu pointer of the orig_entry
435 static void batadv_tt_orig_list_entry_free_rcu(struct rcu_head *rcu)
437 struct batadv_tt_orig_list_entry *orig_entry;
439 orig_entry = container_of(rcu, struct batadv_tt_orig_list_entry, rcu);
441 kmem_cache_free(batadv_tt_orig_cache, orig_entry);
445 * batadv_tt_orig_list_entry_release - release tt orig entry from lists and
446 * queue for free after rcu grace period
447 * @ref: kref pointer of the tt orig entry
449 static void batadv_tt_orig_list_entry_release(struct kref *ref)
451 struct batadv_tt_orig_list_entry *orig_entry;
453 orig_entry = container_of(ref, struct batadv_tt_orig_list_entry,
454 refcount);
456 batadv_orig_node_put(orig_entry->orig_node);
457 call_rcu(&orig_entry->rcu, batadv_tt_orig_list_entry_free_rcu);
461 * batadv_tt_orig_list_entry_put - decrement the tt orig entry refcounter and
462 * possibly release it
463 * @orig_entry: tt orig entry to be free'd
465 static void
466 batadv_tt_orig_list_entry_put(struct batadv_tt_orig_list_entry *orig_entry)
468 kref_put(&orig_entry->refcount, batadv_tt_orig_list_entry_release);
472 * batadv_tt_local_event - store a local TT event (ADD/DEL)
473 * @bat_priv: the bat priv with all the soft interface information
474 * @tt_local_entry: the TT entry involved in the event
475 * @event_flags: flags to store in the event structure
477 static void batadv_tt_local_event(struct batadv_priv *bat_priv,
478 struct batadv_tt_local_entry *tt_local_entry,
479 u8 event_flags)
481 struct batadv_tt_change_node *tt_change_node, *entry, *safe;
482 struct batadv_tt_common_entry *common = &tt_local_entry->common;
483 u8 flags = common->flags | event_flags;
484 bool event_removed = false;
485 bool del_op_requested, del_op_entry;
487 tt_change_node = kmem_cache_alloc(batadv_tt_change_cache, GFP_ATOMIC);
488 if (!tt_change_node)
489 return;
491 tt_change_node->change.flags = flags;
492 memset(tt_change_node->change.reserved, 0,
493 sizeof(tt_change_node->change.reserved));
494 ether_addr_copy(tt_change_node->change.addr, common->addr);
495 tt_change_node->change.vid = htons(common->vid);
497 del_op_requested = flags & BATADV_TT_CLIENT_DEL;
499 /* check for ADD+DEL or DEL+ADD events */
500 spin_lock_bh(&bat_priv->tt.changes_list_lock);
501 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
502 list) {
503 if (!batadv_compare_eth(entry->change.addr, common->addr))
504 continue;
506 /* DEL+ADD in the same orig interval have no effect and can be
507 * removed to avoid silly behaviour on the receiver side. The
508 * other way around (ADD+DEL) can happen in case of roaming of
509 * a client still in the NEW state. Roaming of NEW clients is
510 * now possible due to automatically recognition of "temporary"
511 * clients
513 del_op_entry = entry->change.flags & BATADV_TT_CLIENT_DEL;
514 if (!del_op_requested && del_op_entry)
515 goto del;
516 if (del_op_requested && !del_op_entry)
517 goto del;
519 /* this is a second add in the same originator interval. It
520 * means that flags have been changed: update them!
522 if (!del_op_requested && !del_op_entry)
523 entry->change.flags = flags;
525 continue;
526 del:
527 list_del(&entry->list);
528 kmem_cache_free(batadv_tt_change_cache, entry);
529 kmem_cache_free(batadv_tt_change_cache, tt_change_node);
530 event_removed = true;
531 goto unlock;
534 /* track the change in the OGMinterval list */
535 list_add_tail(&tt_change_node->list, &bat_priv->tt.changes_list);
537 unlock:
538 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
540 if (event_removed)
541 atomic_dec(&bat_priv->tt.local_changes);
542 else
543 atomic_inc(&bat_priv->tt.local_changes);
547 * batadv_tt_len - compute length in bytes of given number of tt changes
548 * @changes_num: number of tt changes
550 * Return: computed length in bytes.
552 static int batadv_tt_len(int changes_num)
554 return changes_num * sizeof(struct batadv_tvlv_tt_change);
558 * batadv_tt_entries - compute the number of entries fitting in tt_len bytes
559 * @tt_len: available space
561 * Return: the number of entries.
563 static u16 batadv_tt_entries(u16 tt_len)
565 return tt_len / batadv_tt_len(1);
569 * batadv_tt_local_table_transmit_size - calculates the local translation table
570 * size when transmitted over the air
571 * @bat_priv: the bat priv with all the soft interface information
573 * Return: local translation table size in bytes.
575 static int batadv_tt_local_table_transmit_size(struct batadv_priv *bat_priv)
577 u16 num_vlan = 0;
578 u16 tt_local_entries = 0;
579 struct batadv_softif_vlan *vlan;
580 int hdr_size;
582 rcu_read_lock();
583 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
584 num_vlan++;
585 tt_local_entries += atomic_read(&vlan->tt.num_entries);
587 rcu_read_unlock();
589 /* header size of tvlv encapsulated tt response payload */
590 hdr_size = sizeof(struct batadv_unicast_tvlv_packet);
591 hdr_size += sizeof(struct batadv_tvlv_hdr);
592 hdr_size += sizeof(struct batadv_tvlv_tt_data);
593 hdr_size += num_vlan * sizeof(struct batadv_tvlv_tt_vlan_data);
595 return hdr_size + batadv_tt_len(tt_local_entries);
598 static int batadv_tt_local_init(struct batadv_priv *bat_priv)
600 if (bat_priv->tt.local_hash)
601 return 0;
603 bat_priv->tt.local_hash = batadv_hash_new(1024);
605 if (!bat_priv->tt.local_hash)
606 return -ENOMEM;
608 batadv_hash_set_lock_class(bat_priv->tt.local_hash,
609 &batadv_tt_local_hash_lock_class_key);
611 return 0;
614 static void batadv_tt_global_free(struct batadv_priv *bat_priv,
615 struct batadv_tt_global_entry *tt_global,
616 const char *message)
618 struct batadv_tt_global_entry *tt_removed_entry;
619 struct hlist_node *tt_removed_node;
621 batadv_dbg(BATADV_DBG_TT, bat_priv,
622 "Deleting global tt entry %pM (vid: %d): %s\n",
623 tt_global->common.addr,
624 BATADV_PRINT_VID(tt_global->common.vid), message);
626 tt_removed_node = batadv_hash_remove(bat_priv->tt.global_hash,
627 batadv_compare_tt,
628 batadv_choose_tt,
629 &tt_global->common);
630 if (!tt_removed_node)
631 return;
633 /* drop reference of remove hash entry */
634 tt_removed_entry = hlist_entry(tt_removed_node,
635 struct batadv_tt_global_entry,
636 common.hash_entry);
637 batadv_tt_global_entry_put(tt_removed_entry);
641 * batadv_tt_local_add - add a new client to the local table or update an
642 * existing client
643 * @soft_iface: netdev struct of the mesh interface
644 * @addr: the mac address of the client to add
645 * @vid: VLAN identifier
646 * @ifindex: index of the interface where the client is connected to (useful to
647 * identify wireless clients)
648 * @mark: the value contained in the skb->mark field of the received packet (if
649 * any)
651 * Return: true if the client was successfully added, false otherwise.
653 bool batadv_tt_local_add(struct net_device *soft_iface, const u8 *addr,
654 unsigned short vid, int ifindex, u32 mark)
656 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
657 struct batadv_tt_local_entry *tt_local;
658 struct batadv_tt_global_entry *tt_global = NULL;
659 struct net *net = dev_net(soft_iface);
660 struct batadv_softif_vlan *vlan;
661 struct net_device *in_dev = NULL;
662 struct hlist_head *head;
663 struct batadv_tt_orig_list_entry *orig_entry;
664 int hash_added, table_size, packet_size_max;
665 bool ret = false;
666 bool roamed_back = false;
667 u8 remote_flags;
668 u32 match_mark;
670 if (ifindex != BATADV_NULL_IFINDEX)
671 in_dev = dev_get_by_index(net, ifindex);
673 tt_local = batadv_tt_local_hash_find(bat_priv, addr, vid);
675 if (!is_multicast_ether_addr(addr))
676 tt_global = batadv_tt_global_hash_find(bat_priv, addr, vid);
678 if (tt_local) {
679 tt_local->last_seen = jiffies;
680 if (tt_local->common.flags & BATADV_TT_CLIENT_PENDING) {
681 batadv_dbg(BATADV_DBG_TT, bat_priv,
682 "Re-adding pending client %pM (vid: %d)\n",
683 addr, BATADV_PRINT_VID(vid));
684 /* whatever the reason why the PENDING flag was set,
685 * this is a client which was enqueued to be removed in
686 * this orig_interval. Since it popped up again, the
687 * flag can be reset like it was never enqueued
689 tt_local->common.flags &= ~BATADV_TT_CLIENT_PENDING;
690 goto add_event;
693 if (tt_local->common.flags & BATADV_TT_CLIENT_ROAM) {
694 batadv_dbg(BATADV_DBG_TT, bat_priv,
695 "Roaming client %pM (vid: %d) came back to its original location\n",
696 addr, BATADV_PRINT_VID(vid));
697 /* the ROAM flag is set because this client roamed away
698 * and the node got a roaming_advertisement message. Now
699 * that the client popped up again at its original
700 * location such flag can be unset
702 tt_local->common.flags &= ~BATADV_TT_CLIENT_ROAM;
703 roamed_back = true;
705 goto check_roaming;
708 /* Ignore the client if we cannot send it in a full table response. */
709 table_size = batadv_tt_local_table_transmit_size(bat_priv);
710 table_size += batadv_tt_len(1);
711 packet_size_max = atomic_read(&bat_priv->packet_size_max);
712 if (table_size > packet_size_max) {
713 net_ratelimited_function(batadv_info, soft_iface,
714 "Local translation table size (%i) exceeds maximum packet size (%i); Ignoring new local tt entry: %pM\n",
715 table_size, packet_size_max, addr);
716 goto out;
719 tt_local = kmem_cache_alloc(batadv_tl_cache, GFP_ATOMIC);
720 if (!tt_local)
721 goto out;
723 /* increase the refcounter of the related vlan */
724 vlan = batadv_softif_vlan_get(bat_priv, vid);
725 if (!vlan) {
726 net_ratelimited_function(batadv_info, soft_iface,
727 "adding TT local entry %pM to non-existent VLAN %d\n",
728 addr, BATADV_PRINT_VID(vid));
729 kmem_cache_free(batadv_tl_cache, tt_local);
730 tt_local = NULL;
731 goto out;
734 batadv_dbg(BATADV_DBG_TT, bat_priv,
735 "Creating new local tt entry: %pM (vid: %d, ttvn: %d)\n",
736 addr, BATADV_PRINT_VID(vid),
737 (u8)atomic_read(&bat_priv->tt.vn));
739 ether_addr_copy(tt_local->common.addr, addr);
740 /* The local entry has to be marked as NEW to avoid to send it in
741 * a full table response going out before the next ttvn increment
742 * (consistency check)
744 tt_local->common.flags = BATADV_TT_CLIENT_NEW;
745 tt_local->common.vid = vid;
746 if (batadv_is_wifi_netdev(in_dev))
747 tt_local->common.flags |= BATADV_TT_CLIENT_WIFI;
748 kref_init(&tt_local->common.refcount);
749 tt_local->last_seen = jiffies;
750 tt_local->common.added_at = tt_local->last_seen;
751 tt_local->vlan = vlan;
753 /* the batman interface mac and multicast addresses should never be
754 * purged
756 if (batadv_compare_eth(addr, soft_iface->dev_addr) ||
757 is_multicast_ether_addr(addr))
758 tt_local->common.flags |= BATADV_TT_CLIENT_NOPURGE;
760 kref_get(&tt_local->common.refcount);
761 hash_added = batadv_hash_add(bat_priv->tt.local_hash, batadv_compare_tt,
762 batadv_choose_tt, &tt_local->common,
763 &tt_local->common.hash_entry);
765 if (unlikely(hash_added != 0)) {
766 /* remove the reference for the hash */
767 batadv_tt_local_entry_put(tt_local);
768 goto out;
771 add_event:
772 batadv_tt_local_event(bat_priv, tt_local, BATADV_NO_FLAGS);
774 check_roaming:
775 /* Check whether it is a roaming, but don't do anything if the roaming
776 * process has already been handled
778 if (tt_global && !(tt_global->common.flags & BATADV_TT_CLIENT_ROAM)) {
779 /* These node are probably going to update their tt table */
780 head = &tt_global->orig_list;
781 rcu_read_lock();
782 hlist_for_each_entry_rcu(orig_entry, head, list) {
783 batadv_send_roam_adv(bat_priv, tt_global->common.addr,
784 tt_global->common.vid,
785 orig_entry->orig_node);
787 rcu_read_unlock();
788 if (roamed_back) {
789 batadv_tt_global_free(bat_priv, tt_global,
790 "Roaming canceled");
791 tt_global = NULL;
792 } else {
793 /* The global entry has to be marked as ROAMING and
794 * has to be kept for consistency purpose
796 tt_global->common.flags |= BATADV_TT_CLIENT_ROAM;
797 tt_global->roam_at = jiffies;
801 /* store the current remote flags before altering them. This helps
802 * understanding is flags are changing or not
804 remote_flags = tt_local->common.flags & BATADV_TT_REMOTE_MASK;
806 if (batadv_is_wifi_netdev(in_dev))
807 tt_local->common.flags |= BATADV_TT_CLIENT_WIFI;
808 else
809 tt_local->common.flags &= ~BATADV_TT_CLIENT_WIFI;
811 /* check the mark in the skb: if it's equal to the configured
812 * isolation_mark, it means the packet is coming from an isolated
813 * non-mesh client
815 match_mark = (mark & bat_priv->isolation_mark_mask);
816 if (bat_priv->isolation_mark_mask &&
817 match_mark == bat_priv->isolation_mark)
818 tt_local->common.flags |= BATADV_TT_CLIENT_ISOLA;
819 else
820 tt_local->common.flags &= ~BATADV_TT_CLIENT_ISOLA;
822 /* if any "dynamic" flag has been modified, resend an ADD event for this
823 * entry so that all the nodes can get the new flags
825 if (remote_flags ^ (tt_local->common.flags & BATADV_TT_REMOTE_MASK))
826 batadv_tt_local_event(bat_priv, tt_local, BATADV_NO_FLAGS);
828 ret = true;
829 out:
830 if (in_dev)
831 dev_put(in_dev);
832 if (tt_local)
833 batadv_tt_local_entry_put(tt_local);
834 if (tt_global)
835 batadv_tt_global_entry_put(tt_global);
836 return ret;
840 * batadv_tt_prepare_tvlv_global_data - prepare the TVLV TT header to send
841 * within a TT Response directed to another node
842 * @orig_node: originator for which the TT data has to be prepared
843 * @tt_data: uninitialised pointer to the address of the TVLV buffer
844 * @tt_change: uninitialised pointer to the address of the area where the TT
845 * changed can be stored
846 * @tt_len: pointer to the length to reserve to the tt_change. if -1 this
847 * function reserves the amount of space needed to send the entire global TT
848 * table. In case of success the value is updated with the real amount of
849 * reserved bytes
850 * Allocate the needed amount of memory for the entire TT TVLV and write its
851 * header made up by one tvlv_tt_data object and a series of tvlv_tt_vlan_data
852 * objects, one per active VLAN served by the originator node.
854 * Return: the size of the allocated buffer or 0 in case of failure.
856 static u16
857 batadv_tt_prepare_tvlv_global_data(struct batadv_orig_node *orig_node,
858 struct batadv_tvlv_tt_data **tt_data,
859 struct batadv_tvlv_tt_change **tt_change,
860 s32 *tt_len)
862 u16 num_vlan = 0;
863 u16 num_entries = 0;
864 u16 change_offset;
865 u16 tvlv_len;
866 struct batadv_tvlv_tt_vlan_data *tt_vlan;
867 struct batadv_orig_node_vlan *vlan;
868 u8 *tt_change_ptr;
870 rcu_read_lock();
871 hlist_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) {
872 num_vlan++;
873 num_entries += atomic_read(&vlan->tt.num_entries);
876 change_offset = sizeof(**tt_data);
877 change_offset += num_vlan * sizeof(*tt_vlan);
879 /* if tt_len is negative, allocate the space needed by the full table */
880 if (*tt_len < 0)
881 *tt_len = batadv_tt_len(num_entries);
883 tvlv_len = *tt_len;
884 tvlv_len += change_offset;
886 *tt_data = kmalloc(tvlv_len, GFP_ATOMIC);
887 if (!*tt_data) {
888 *tt_len = 0;
889 goto out;
892 (*tt_data)->flags = BATADV_NO_FLAGS;
893 (*tt_data)->ttvn = atomic_read(&orig_node->last_ttvn);
894 (*tt_data)->num_vlan = htons(num_vlan);
896 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(*tt_data + 1);
897 hlist_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) {
898 tt_vlan->vid = htons(vlan->vid);
899 tt_vlan->crc = htonl(vlan->tt.crc);
901 tt_vlan++;
904 tt_change_ptr = (u8 *)*tt_data + change_offset;
905 *tt_change = (struct batadv_tvlv_tt_change *)tt_change_ptr;
907 out:
908 rcu_read_unlock();
909 return tvlv_len;
913 * batadv_tt_prepare_tvlv_local_data - allocate and prepare the TT TVLV for this
914 * node
915 * @bat_priv: the bat priv with all the soft interface information
916 * @tt_data: uninitialised pointer to the address of the TVLV buffer
917 * @tt_change: uninitialised pointer to the address of the area where the TT
918 * changes can be stored
919 * @tt_len: pointer to the length to reserve to the tt_change. if -1 this
920 * function reserves the amount of space needed to send the entire local TT
921 * table. In case of success the value is updated with the real amount of
922 * reserved bytes
924 * Allocate the needed amount of memory for the entire TT TVLV and write its
925 * header made up by one tvlv_tt_data object and a series of tvlv_tt_vlan_data
926 * objects, one per active VLAN.
928 * Return: the size of the allocated buffer or 0 in case of failure.
930 static u16
931 batadv_tt_prepare_tvlv_local_data(struct batadv_priv *bat_priv,
932 struct batadv_tvlv_tt_data **tt_data,
933 struct batadv_tvlv_tt_change **tt_change,
934 s32 *tt_len)
936 struct batadv_tvlv_tt_vlan_data *tt_vlan;
937 struct batadv_softif_vlan *vlan;
938 u16 num_vlan = 0;
939 u16 num_entries = 0;
940 u16 tvlv_len;
941 u8 *tt_change_ptr;
942 int change_offset;
944 rcu_read_lock();
945 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
946 num_vlan++;
947 num_entries += atomic_read(&vlan->tt.num_entries);
950 change_offset = sizeof(**tt_data);
951 change_offset += num_vlan * sizeof(*tt_vlan);
953 /* if tt_len is negative, allocate the space needed by the full table */
954 if (*tt_len < 0)
955 *tt_len = batadv_tt_len(num_entries);
957 tvlv_len = *tt_len;
958 tvlv_len += change_offset;
960 *tt_data = kmalloc(tvlv_len, GFP_ATOMIC);
961 if (!*tt_data) {
962 tvlv_len = 0;
963 goto out;
966 (*tt_data)->flags = BATADV_NO_FLAGS;
967 (*tt_data)->ttvn = atomic_read(&bat_priv->tt.vn);
968 (*tt_data)->num_vlan = htons(num_vlan);
970 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(*tt_data + 1);
971 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
972 tt_vlan->vid = htons(vlan->vid);
973 tt_vlan->crc = htonl(vlan->tt.crc);
975 tt_vlan++;
978 tt_change_ptr = (u8 *)*tt_data + change_offset;
979 *tt_change = (struct batadv_tvlv_tt_change *)tt_change_ptr;
981 out:
982 rcu_read_unlock();
983 return tvlv_len;
987 * batadv_tt_tvlv_container_update - update the translation table tvlv container
988 * after local tt changes have been committed
989 * @bat_priv: the bat priv with all the soft interface information
991 static void batadv_tt_tvlv_container_update(struct batadv_priv *bat_priv)
993 struct batadv_tt_change_node *entry, *safe;
994 struct batadv_tvlv_tt_data *tt_data;
995 struct batadv_tvlv_tt_change *tt_change;
996 int tt_diff_len, tt_change_len = 0;
997 int tt_diff_entries_num = 0;
998 int tt_diff_entries_count = 0;
999 u16 tvlv_len;
1001 tt_diff_entries_num = atomic_read(&bat_priv->tt.local_changes);
1002 tt_diff_len = batadv_tt_len(tt_diff_entries_num);
1004 /* if we have too many changes for one packet don't send any
1005 * and wait for the tt table request which will be fragmented
1007 if (tt_diff_len > bat_priv->soft_iface->mtu)
1008 tt_diff_len = 0;
1010 tvlv_len = batadv_tt_prepare_tvlv_local_data(bat_priv, &tt_data,
1011 &tt_change, &tt_diff_len);
1012 if (!tvlv_len)
1013 return;
1015 tt_data->flags = BATADV_TT_OGM_DIFF;
1017 if (tt_diff_len == 0)
1018 goto container_register;
1020 spin_lock_bh(&bat_priv->tt.changes_list_lock);
1021 atomic_set(&bat_priv->tt.local_changes, 0);
1023 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
1024 list) {
1025 if (tt_diff_entries_count < tt_diff_entries_num) {
1026 memcpy(tt_change + tt_diff_entries_count,
1027 &entry->change,
1028 sizeof(struct batadv_tvlv_tt_change));
1029 tt_diff_entries_count++;
1031 list_del(&entry->list);
1032 kmem_cache_free(batadv_tt_change_cache, entry);
1034 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
1036 /* Keep the buffer for possible tt_request */
1037 spin_lock_bh(&bat_priv->tt.last_changeset_lock);
1038 kfree(bat_priv->tt.last_changeset);
1039 bat_priv->tt.last_changeset_len = 0;
1040 bat_priv->tt.last_changeset = NULL;
1041 tt_change_len = batadv_tt_len(tt_diff_entries_count);
1042 /* check whether this new OGM has no changes due to size problems */
1043 if (tt_diff_entries_count > 0) {
1044 /* if kmalloc() fails we will reply with the full table
1045 * instead of providing the diff
1047 bat_priv->tt.last_changeset = kzalloc(tt_diff_len, GFP_ATOMIC);
1048 if (bat_priv->tt.last_changeset) {
1049 memcpy(bat_priv->tt.last_changeset,
1050 tt_change, tt_change_len);
1051 bat_priv->tt.last_changeset_len = tt_diff_len;
1054 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
1056 container_register:
1057 batadv_tvlv_container_register(bat_priv, BATADV_TVLV_TT, 1, tt_data,
1058 tvlv_len);
1059 kfree(tt_data);
1062 #ifdef CONFIG_BATMAN_ADV_DEBUGFS
1063 int batadv_tt_local_seq_print_text(struct seq_file *seq, void *offset)
1065 struct net_device *net_dev = (struct net_device *)seq->private;
1066 struct batadv_priv *bat_priv = netdev_priv(net_dev);
1067 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
1068 struct batadv_tt_common_entry *tt_common_entry;
1069 struct batadv_tt_local_entry *tt_local;
1070 struct batadv_hard_iface *primary_if;
1071 struct hlist_head *head;
1072 u32 i;
1073 int last_seen_secs;
1074 int last_seen_msecs;
1075 unsigned long last_seen_jiffies;
1076 bool no_purge;
1077 u16 np_flag = BATADV_TT_CLIENT_NOPURGE;
1079 primary_if = batadv_seq_print_text_primary_if_get(seq);
1080 if (!primary_if)
1081 goto out;
1083 seq_printf(seq,
1084 "Locally retrieved addresses (from %s) announced via TT (TTVN: %u):\n",
1085 net_dev->name, (u8)atomic_read(&bat_priv->tt.vn));
1086 seq_puts(seq,
1087 " Client VID Flags Last seen (CRC )\n");
1089 for (i = 0; i < hash->size; i++) {
1090 head = &hash->table[i];
1092 rcu_read_lock();
1093 hlist_for_each_entry_rcu(tt_common_entry,
1094 head, hash_entry) {
1095 tt_local = container_of(tt_common_entry,
1096 struct batadv_tt_local_entry,
1097 common);
1098 last_seen_jiffies = jiffies - tt_local->last_seen;
1099 last_seen_msecs = jiffies_to_msecs(last_seen_jiffies);
1100 last_seen_secs = last_seen_msecs / 1000;
1101 last_seen_msecs = last_seen_msecs % 1000;
1103 no_purge = tt_common_entry->flags & np_flag;
1104 seq_printf(seq,
1105 " * %pM %4i [%c%c%c%c%c%c] %3u.%03u (%#.8x)\n",
1106 tt_common_entry->addr,
1107 BATADV_PRINT_VID(tt_common_entry->vid),
1108 ((tt_common_entry->flags &
1109 BATADV_TT_CLIENT_ROAM) ? 'R' : '.'),
1110 no_purge ? 'P' : '.',
1111 ((tt_common_entry->flags &
1112 BATADV_TT_CLIENT_NEW) ? 'N' : '.'),
1113 ((tt_common_entry->flags &
1114 BATADV_TT_CLIENT_PENDING) ? 'X' : '.'),
1115 ((tt_common_entry->flags &
1116 BATADV_TT_CLIENT_WIFI) ? 'W' : '.'),
1117 ((tt_common_entry->flags &
1118 BATADV_TT_CLIENT_ISOLA) ? 'I' : '.'),
1119 no_purge ? 0 : last_seen_secs,
1120 no_purge ? 0 : last_seen_msecs,
1121 tt_local->vlan->tt.crc);
1123 rcu_read_unlock();
1125 out:
1126 if (primary_if)
1127 batadv_hardif_put(primary_if);
1128 return 0;
1130 #endif
1133 * batadv_tt_local_dump_entry - Dump one TT local entry into a message
1134 * @msg :Netlink message to dump into
1135 * @portid: Port making netlink request
1136 * @seq: Sequence number of netlink message
1137 * @bat_priv: The bat priv with all the soft interface information
1138 * @common: tt local & tt global common data
1140 * Return: Error code, or 0 on success
1142 static int
1143 batadv_tt_local_dump_entry(struct sk_buff *msg, u32 portid, u32 seq,
1144 struct batadv_priv *bat_priv,
1145 struct batadv_tt_common_entry *common)
1147 void *hdr;
1148 struct batadv_softif_vlan *vlan;
1149 struct batadv_tt_local_entry *local;
1150 unsigned int last_seen_msecs;
1151 u32 crc;
1153 local = container_of(common, struct batadv_tt_local_entry, common);
1154 last_seen_msecs = jiffies_to_msecs(jiffies - local->last_seen);
1156 vlan = batadv_softif_vlan_get(bat_priv, common->vid);
1157 if (!vlan)
1158 return 0;
1160 crc = vlan->tt.crc;
1162 batadv_softif_vlan_put(vlan);
1164 hdr = genlmsg_put(msg, portid, seq, &batadv_netlink_family,
1165 NLM_F_MULTI,
1166 BATADV_CMD_GET_TRANSTABLE_LOCAL);
1167 if (!hdr)
1168 return -ENOBUFS;
1170 if (nla_put(msg, BATADV_ATTR_TT_ADDRESS, ETH_ALEN, common->addr) ||
1171 nla_put_u32(msg, BATADV_ATTR_TT_CRC32, crc) ||
1172 nla_put_u16(msg, BATADV_ATTR_TT_VID, common->vid) ||
1173 nla_put_u32(msg, BATADV_ATTR_TT_FLAGS, common->flags))
1174 goto nla_put_failure;
1176 if (!(common->flags & BATADV_TT_CLIENT_NOPURGE) &&
1177 nla_put_u32(msg, BATADV_ATTR_LAST_SEEN_MSECS, last_seen_msecs))
1178 goto nla_put_failure;
1180 genlmsg_end(msg, hdr);
1181 return 0;
1183 nla_put_failure:
1184 genlmsg_cancel(msg, hdr);
1185 return -EMSGSIZE;
1189 * batadv_tt_local_dump_bucket - Dump one TT local bucket into a message
1190 * @msg: Netlink message to dump into
1191 * @portid: Port making netlink request
1192 * @seq: Sequence number of netlink message
1193 * @bat_priv: The bat priv with all the soft interface information
1194 * @head: Pointer to the list containing the local tt entries
1195 * @idx_s: Number of entries to skip
1197 * Return: Error code, or 0 on success
1199 static int
1200 batadv_tt_local_dump_bucket(struct sk_buff *msg, u32 portid, u32 seq,
1201 struct batadv_priv *bat_priv,
1202 struct hlist_head *head, int *idx_s)
1204 struct batadv_tt_common_entry *common;
1205 int idx = 0;
1207 rcu_read_lock();
1208 hlist_for_each_entry_rcu(common, head, hash_entry) {
1209 if (idx++ < *idx_s)
1210 continue;
1212 if (batadv_tt_local_dump_entry(msg, portid, seq, bat_priv,
1213 common)) {
1214 rcu_read_unlock();
1215 *idx_s = idx - 1;
1216 return -EMSGSIZE;
1219 rcu_read_unlock();
1221 *idx_s = 0;
1222 return 0;
1226 * batadv_tt_local_dump - Dump TT local entries into a message
1227 * @msg: Netlink message to dump into
1228 * @cb: Parameters from query
1230 * Return: Error code, or 0 on success
1232 int batadv_tt_local_dump(struct sk_buff *msg, struct netlink_callback *cb)
1234 struct net *net = sock_net(cb->skb->sk);
1235 struct net_device *soft_iface;
1236 struct batadv_priv *bat_priv;
1237 struct batadv_hard_iface *primary_if = NULL;
1238 struct batadv_hashtable *hash;
1239 struct hlist_head *head;
1240 int ret;
1241 int ifindex;
1242 int bucket = cb->args[0];
1243 int idx = cb->args[1];
1244 int portid = NETLINK_CB(cb->skb).portid;
1246 ifindex = batadv_netlink_get_ifindex(cb->nlh, BATADV_ATTR_MESH_IFINDEX);
1247 if (!ifindex)
1248 return -EINVAL;
1250 soft_iface = dev_get_by_index(net, ifindex);
1251 if (!soft_iface || !batadv_softif_is_valid(soft_iface)) {
1252 ret = -ENODEV;
1253 goto out;
1256 bat_priv = netdev_priv(soft_iface);
1258 primary_if = batadv_primary_if_get_selected(bat_priv);
1259 if (!primary_if || primary_if->if_status != BATADV_IF_ACTIVE) {
1260 ret = -ENOENT;
1261 goto out;
1264 hash = bat_priv->tt.local_hash;
1266 while (bucket < hash->size) {
1267 head = &hash->table[bucket];
1269 if (batadv_tt_local_dump_bucket(msg, portid, cb->nlh->nlmsg_seq,
1270 bat_priv, head, &idx))
1271 break;
1273 bucket++;
1276 ret = msg->len;
1278 out:
1279 if (primary_if)
1280 batadv_hardif_put(primary_if);
1281 if (soft_iface)
1282 dev_put(soft_iface);
1284 cb->args[0] = bucket;
1285 cb->args[1] = idx;
1287 return ret;
1290 static void
1291 batadv_tt_local_set_pending(struct batadv_priv *bat_priv,
1292 struct batadv_tt_local_entry *tt_local_entry,
1293 u16 flags, const char *message)
1295 batadv_tt_local_event(bat_priv, tt_local_entry, flags);
1297 /* The local client has to be marked as "pending to be removed" but has
1298 * to be kept in the table in order to send it in a full table
1299 * response issued before the net ttvn increment (consistency check)
1301 tt_local_entry->common.flags |= BATADV_TT_CLIENT_PENDING;
1303 batadv_dbg(BATADV_DBG_TT, bat_priv,
1304 "Local tt entry (%pM, vid: %d) pending to be removed: %s\n",
1305 tt_local_entry->common.addr,
1306 BATADV_PRINT_VID(tt_local_entry->common.vid), message);
1310 * batadv_tt_local_remove - logically remove an entry from the local table
1311 * @bat_priv: the bat priv with all the soft interface information
1312 * @addr: the MAC address of the client to remove
1313 * @vid: VLAN identifier
1314 * @message: message to append to the log on deletion
1315 * @roaming: true if the deletion is due to a roaming event
1317 * Return: the flags assigned to the local entry before being deleted
1319 u16 batadv_tt_local_remove(struct batadv_priv *bat_priv, const u8 *addr,
1320 unsigned short vid, const char *message,
1321 bool roaming)
1323 struct batadv_tt_local_entry *tt_removed_entry;
1324 struct batadv_tt_local_entry *tt_local_entry;
1325 u16 flags, curr_flags = BATADV_NO_FLAGS;
1326 struct hlist_node *tt_removed_node;
1328 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr, vid);
1329 if (!tt_local_entry)
1330 goto out;
1332 curr_flags = tt_local_entry->common.flags;
1334 flags = BATADV_TT_CLIENT_DEL;
1335 /* if this global entry addition is due to a roaming, the node has to
1336 * mark the local entry as "roamed" in order to correctly reroute
1337 * packets later
1339 if (roaming) {
1340 flags |= BATADV_TT_CLIENT_ROAM;
1341 /* mark the local client as ROAMed */
1342 tt_local_entry->common.flags |= BATADV_TT_CLIENT_ROAM;
1345 if (!(tt_local_entry->common.flags & BATADV_TT_CLIENT_NEW)) {
1346 batadv_tt_local_set_pending(bat_priv, tt_local_entry, flags,
1347 message);
1348 goto out;
1350 /* if this client has been added right now, it is possible to
1351 * immediately purge it
1353 batadv_tt_local_event(bat_priv, tt_local_entry, BATADV_TT_CLIENT_DEL);
1355 tt_removed_node = batadv_hash_remove(bat_priv->tt.local_hash,
1356 batadv_compare_tt,
1357 batadv_choose_tt,
1358 &tt_local_entry->common);
1359 if (!tt_removed_node)
1360 goto out;
1362 /* drop reference of remove hash entry */
1363 tt_removed_entry = hlist_entry(tt_removed_node,
1364 struct batadv_tt_local_entry,
1365 common.hash_entry);
1366 batadv_tt_local_entry_put(tt_removed_entry);
1368 out:
1369 if (tt_local_entry)
1370 batadv_tt_local_entry_put(tt_local_entry);
1372 return curr_flags;
1376 * batadv_tt_local_purge_list - purge inactive tt local entries
1377 * @bat_priv: the bat priv with all the soft interface information
1378 * @head: pointer to the list containing the local tt entries
1379 * @timeout: parameter deciding whether a given tt local entry is considered
1380 * inactive or not
1382 static void batadv_tt_local_purge_list(struct batadv_priv *bat_priv,
1383 struct hlist_head *head,
1384 int timeout)
1386 struct batadv_tt_local_entry *tt_local_entry;
1387 struct batadv_tt_common_entry *tt_common_entry;
1388 struct hlist_node *node_tmp;
1390 hlist_for_each_entry_safe(tt_common_entry, node_tmp, head,
1391 hash_entry) {
1392 tt_local_entry = container_of(tt_common_entry,
1393 struct batadv_tt_local_entry,
1394 common);
1395 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_NOPURGE)
1396 continue;
1398 /* entry already marked for deletion */
1399 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING)
1400 continue;
1402 if (!batadv_has_timed_out(tt_local_entry->last_seen, timeout))
1403 continue;
1405 batadv_tt_local_set_pending(bat_priv, tt_local_entry,
1406 BATADV_TT_CLIENT_DEL, "timed out");
1411 * batadv_tt_local_purge - purge inactive tt local entries
1412 * @bat_priv: the bat priv with all the soft interface information
1413 * @timeout: parameter deciding whether a given tt local entry is considered
1414 * inactive or not
1416 static void batadv_tt_local_purge(struct batadv_priv *bat_priv,
1417 int timeout)
1419 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
1420 struct hlist_head *head;
1421 spinlock_t *list_lock; /* protects write access to the hash lists */
1422 u32 i;
1424 for (i = 0; i < hash->size; i++) {
1425 head = &hash->table[i];
1426 list_lock = &hash->list_locks[i];
1428 spin_lock_bh(list_lock);
1429 batadv_tt_local_purge_list(bat_priv, head, timeout);
1430 spin_unlock_bh(list_lock);
1434 static void batadv_tt_local_table_free(struct batadv_priv *bat_priv)
1436 struct batadv_hashtable *hash;
1437 spinlock_t *list_lock; /* protects write access to the hash lists */
1438 struct batadv_tt_common_entry *tt_common_entry;
1439 struct batadv_tt_local_entry *tt_local;
1440 struct hlist_node *node_tmp;
1441 struct hlist_head *head;
1442 u32 i;
1444 if (!bat_priv->tt.local_hash)
1445 return;
1447 hash = bat_priv->tt.local_hash;
1449 for (i = 0; i < hash->size; i++) {
1450 head = &hash->table[i];
1451 list_lock = &hash->list_locks[i];
1453 spin_lock_bh(list_lock);
1454 hlist_for_each_entry_safe(tt_common_entry, node_tmp,
1455 head, hash_entry) {
1456 hlist_del_rcu(&tt_common_entry->hash_entry);
1457 tt_local = container_of(tt_common_entry,
1458 struct batadv_tt_local_entry,
1459 common);
1461 batadv_tt_local_entry_put(tt_local);
1463 spin_unlock_bh(list_lock);
1466 batadv_hash_destroy(hash);
1468 bat_priv->tt.local_hash = NULL;
1471 static int batadv_tt_global_init(struct batadv_priv *bat_priv)
1473 if (bat_priv->tt.global_hash)
1474 return 0;
1476 bat_priv->tt.global_hash = batadv_hash_new(1024);
1478 if (!bat_priv->tt.global_hash)
1479 return -ENOMEM;
1481 batadv_hash_set_lock_class(bat_priv->tt.global_hash,
1482 &batadv_tt_global_hash_lock_class_key);
1484 return 0;
1487 static void batadv_tt_changes_list_free(struct batadv_priv *bat_priv)
1489 struct batadv_tt_change_node *entry, *safe;
1491 spin_lock_bh(&bat_priv->tt.changes_list_lock);
1493 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
1494 list) {
1495 list_del(&entry->list);
1496 kmem_cache_free(batadv_tt_change_cache, entry);
1499 atomic_set(&bat_priv->tt.local_changes, 0);
1500 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
1504 * batadv_tt_global_orig_entry_find - find a TT orig_list_entry
1505 * @entry: the TT global entry where the orig_list_entry has to be
1506 * extracted from
1507 * @orig_node: the originator for which the orig_list_entry has to be found
1509 * retrieve the orig_tt_list_entry belonging to orig_node from the
1510 * batadv_tt_global_entry list
1512 * Return: it with an increased refcounter, NULL if not found
1514 static struct batadv_tt_orig_list_entry *
1515 batadv_tt_global_orig_entry_find(const struct batadv_tt_global_entry *entry,
1516 const struct batadv_orig_node *orig_node)
1518 struct batadv_tt_orig_list_entry *tmp_orig_entry, *orig_entry = NULL;
1519 const struct hlist_head *head;
1521 rcu_read_lock();
1522 head = &entry->orig_list;
1523 hlist_for_each_entry_rcu(tmp_orig_entry, head, list) {
1524 if (tmp_orig_entry->orig_node != orig_node)
1525 continue;
1526 if (!kref_get_unless_zero(&tmp_orig_entry->refcount))
1527 continue;
1529 orig_entry = tmp_orig_entry;
1530 break;
1532 rcu_read_unlock();
1534 return orig_entry;
1538 * batadv_tt_global_entry_has_orig - check if a TT global entry is also handled
1539 * by a given originator
1540 * @entry: the TT global entry to check
1541 * @orig_node: the originator to search in the list
1543 * find out if an orig_node is already in the list of a tt_global_entry.
1545 * Return: true if found, false otherwise
1547 static bool
1548 batadv_tt_global_entry_has_orig(const struct batadv_tt_global_entry *entry,
1549 const struct batadv_orig_node *orig_node)
1551 struct batadv_tt_orig_list_entry *orig_entry;
1552 bool found = false;
1554 orig_entry = batadv_tt_global_orig_entry_find(entry, orig_node);
1555 if (orig_entry) {
1556 found = true;
1557 batadv_tt_orig_list_entry_put(orig_entry);
1560 return found;
1563 static void
1564 batadv_tt_global_orig_entry_add(struct batadv_tt_global_entry *tt_global,
1565 struct batadv_orig_node *orig_node, int ttvn)
1567 struct batadv_tt_orig_list_entry *orig_entry;
1569 spin_lock_bh(&tt_global->list_lock);
1571 orig_entry = batadv_tt_global_orig_entry_find(tt_global, orig_node);
1572 if (orig_entry) {
1573 /* refresh the ttvn: the current value could be a bogus one that
1574 * was added during a "temporary client detection"
1576 orig_entry->ttvn = ttvn;
1577 goto out;
1580 orig_entry = kmem_cache_zalloc(batadv_tt_orig_cache, GFP_ATOMIC);
1581 if (!orig_entry)
1582 goto out;
1584 INIT_HLIST_NODE(&orig_entry->list);
1585 kref_get(&orig_node->refcount);
1586 batadv_tt_global_size_inc(orig_node, tt_global->common.vid);
1587 orig_entry->orig_node = orig_node;
1588 orig_entry->ttvn = ttvn;
1589 kref_init(&orig_entry->refcount);
1591 kref_get(&orig_entry->refcount);
1592 hlist_add_head_rcu(&orig_entry->list,
1593 &tt_global->orig_list);
1594 atomic_inc(&tt_global->orig_list_count);
1596 out:
1597 if (orig_entry)
1598 batadv_tt_orig_list_entry_put(orig_entry);
1600 spin_unlock_bh(&tt_global->list_lock);
1604 * batadv_tt_global_add - add a new TT global entry or update an existing one
1605 * @bat_priv: the bat priv with all the soft interface information
1606 * @orig_node: the originator announcing the client
1607 * @tt_addr: the mac address of the non-mesh client
1608 * @vid: VLAN identifier
1609 * @flags: TT flags that have to be set for this non-mesh client
1610 * @ttvn: the tt version number ever announcing this non-mesh client
1612 * Add a new TT global entry for the given originator. If the entry already
1613 * exists add a new reference to the given originator (a global entry can have
1614 * references to multiple originators) and adjust the flags attribute to reflect
1615 * the function argument.
1616 * If a TT local entry exists for this non-mesh client remove it.
1618 * The caller must hold orig_node refcount.
1620 * Return: true if the new entry has been added, false otherwise
1622 static bool batadv_tt_global_add(struct batadv_priv *bat_priv,
1623 struct batadv_orig_node *orig_node,
1624 const unsigned char *tt_addr,
1625 unsigned short vid, u16 flags, u8 ttvn)
1627 struct batadv_tt_global_entry *tt_global_entry;
1628 struct batadv_tt_local_entry *tt_local_entry;
1629 bool ret = false;
1630 int hash_added;
1631 struct batadv_tt_common_entry *common;
1632 u16 local_flags;
1634 /* ignore global entries from backbone nodes */
1635 if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig, vid))
1636 return true;
1638 tt_global_entry = batadv_tt_global_hash_find(bat_priv, tt_addr, vid);
1639 tt_local_entry = batadv_tt_local_hash_find(bat_priv, tt_addr, vid);
1641 /* if the node already has a local client for this entry, it has to wait
1642 * for a roaming advertisement instead of manually messing up the global
1643 * table
1645 if ((flags & BATADV_TT_CLIENT_TEMP) && tt_local_entry &&
1646 !(tt_local_entry->common.flags & BATADV_TT_CLIENT_NEW))
1647 goto out;
1649 if (!tt_global_entry) {
1650 tt_global_entry = kmem_cache_zalloc(batadv_tg_cache,
1651 GFP_ATOMIC);
1652 if (!tt_global_entry)
1653 goto out;
1655 common = &tt_global_entry->common;
1656 ether_addr_copy(common->addr, tt_addr);
1657 common->vid = vid;
1659 common->flags = flags;
1660 tt_global_entry->roam_at = 0;
1661 /* node must store current time in case of roaming. This is
1662 * needed to purge this entry out on timeout (if nobody claims
1663 * it)
1665 if (flags & BATADV_TT_CLIENT_ROAM)
1666 tt_global_entry->roam_at = jiffies;
1667 kref_init(&common->refcount);
1668 common->added_at = jiffies;
1670 INIT_HLIST_HEAD(&tt_global_entry->orig_list);
1671 atomic_set(&tt_global_entry->orig_list_count, 0);
1672 spin_lock_init(&tt_global_entry->list_lock);
1674 kref_get(&common->refcount);
1675 hash_added = batadv_hash_add(bat_priv->tt.global_hash,
1676 batadv_compare_tt,
1677 batadv_choose_tt, common,
1678 &common->hash_entry);
1680 if (unlikely(hash_added != 0)) {
1681 /* remove the reference for the hash */
1682 batadv_tt_global_entry_put(tt_global_entry);
1683 goto out_remove;
1685 } else {
1686 common = &tt_global_entry->common;
1687 /* If there is already a global entry, we can use this one for
1688 * our processing.
1689 * But if we are trying to add a temporary client then here are
1690 * two options at this point:
1691 * 1) the global client is not a temporary client: the global
1692 * client has to be left as it is, temporary information
1693 * should never override any already known client state
1694 * 2) the global client is a temporary client: purge the
1695 * originator list and add the new one orig_entry
1697 if (flags & BATADV_TT_CLIENT_TEMP) {
1698 if (!(common->flags & BATADV_TT_CLIENT_TEMP))
1699 goto out;
1700 if (batadv_tt_global_entry_has_orig(tt_global_entry,
1701 orig_node))
1702 goto out_remove;
1703 batadv_tt_global_del_orig_list(tt_global_entry);
1704 goto add_orig_entry;
1707 /* if the client was temporary added before receiving the first
1708 * OGM announcing it, we have to clear the TEMP flag. Also,
1709 * remove the previous temporary orig node and re-add it
1710 * if required. If the orig entry changed, the new one which
1711 * is a non-temporary entry is preferred.
1713 if (common->flags & BATADV_TT_CLIENT_TEMP) {
1714 batadv_tt_global_del_orig_list(tt_global_entry);
1715 common->flags &= ~BATADV_TT_CLIENT_TEMP;
1718 /* the change can carry possible "attribute" flags like the
1719 * TT_CLIENT_WIFI, therefore they have to be copied in the
1720 * client entry
1722 common->flags |= flags;
1724 /* If there is the BATADV_TT_CLIENT_ROAM flag set, there is only
1725 * one originator left in the list and we previously received a
1726 * delete + roaming change for this originator.
1728 * We should first delete the old originator before adding the
1729 * new one.
1731 if (common->flags & BATADV_TT_CLIENT_ROAM) {
1732 batadv_tt_global_del_orig_list(tt_global_entry);
1733 common->flags &= ~BATADV_TT_CLIENT_ROAM;
1734 tt_global_entry->roam_at = 0;
1737 add_orig_entry:
1738 /* add the new orig_entry (if needed) or update it */
1739 batadv_tt_global_orig_entry_add(tt_global_entry, orig_node, ttvn);
1741 batadv_dbg(BATADV_DBG_TT, bat_priv,
1742 "Creating new global tt entry: %pM (vid: %d, via %pM)\n",
1743 common->addr, BATADV_PRINT_VID(common->vid),
1744 orig_node->orig);
1745 ret = true;
1747 out_remove:
1748 /* Do not remove multicast addresses from the local hash on
1749 * global additions
1751 if (is_multicast_ether_addr(tt_addr))
1752 goto out;
1754 /* remove address from local hash if present */
1755 local_flags = batadv_tt_local_remove(bat_priv, tt_addr, vid,
1756 "global tt received",
1757 flags & BATADV_TT_CLIENT_ROAM);
1758 tt_global_entry->common.flags |= local_flags & BATADV_TT_CLIENT_WIFI;
1760 if (!(flags & BATADV_TT_CLIENT_ROAM))
1761 /* this is a normal global add. Therefore the client is not in a
1762 * roaming state anymore.
1764 tt_global_entry->common.flags &= ~BATADV_TT_CLIENT_ROAM;
1766 out:
1767 if (tt_global_entry)
1768 batadv_tt_global_entry_put(tt_global_entry);
1769 if (tt_local_entry)
1770 batadv_tt_local_entry_put(tt_local_entry);
1771 return ret;
1775 * batadv_transtable_best_orig - Get best originator list entry from tt entry
1776 * @bat_priv: the bat priv with all the soft interface information
1777 * @tt_global_entry: global translation table entry to be analyzed
1779 * This functon assumes the caller holds rcu_read_lock().
1780 * Return: best originator list entry or NULL on errors.
1782 static struct batadv_tt_orig_list_entry *
1783 batadv_transtable_best_orig(struct batadv_priv *bat_priv,
1784 struct batadv_tt_global_entry *tt_global_entry)
1786 struct batadv_neigh_node *router, *best_router = NULL;
1787 struct batadv_algo_ops *bao = bat_priv->algo_ops;
1788 struct hlist_head *head;
1789 struct batadv_tt_orig_list_entry *orig_entry, *best_entry = NULL;
1791 head = &tt_global_entry->orig_list;
1792 hlist_for_each_entry_rcu(orig_entry, head, list) {
1793 router = batadv_orig_router_get(orig_entry->orig_node,
1794 BATADV_IF_DEFAULT);
1795 if (!router)
1796 continue;
1798 if (best_router &&
1799 bao->neigh.cmp(router, BATADV_IF_DEFAULT, best_router,
1800 BATADV_IF_DEFAULT) <= 0) {
1801 batadv_neigh_node_put(router);
1802 continue;
1805 /* release the refcount for the "old" best */
1806 if (best_router)
1807 batadv_neigh_node_put(best_router);
1809 best_entry = orig_entry;
1810 best_router = router;
1813 if (best_router)
1814 batadv_neigh_node_put(best_router);
1816 return best_entry;
1819 #ifdef CONFIG_BATMAN_ADV_DEBUGFS
1821 * batadv_tt_global_print_entry - print all orig nodes who announce the address
1822 * for this global entry
1823 * @bat_priv: the bat priv with all the soft interface information
1824 * @tt_global_entry: global translation table entry to be printed
1825 * @seq: debugfs table seq_file struct
1827 * This functon assumes the caller holds rcu_read_lock().
1829 static void
1830 batadv_tt_global_print_entry(struct batadv_priv *bat_priv,
1831 struct batadv_tt_global_entry *tt_global_entry,
1832 struct seq_file *seq)
1834 struct batadv_tt_orig_list_entry *orig_entry, *best_entry;
1835 struct batadv_tt_common_entry *tt_common_entry;
1836 struct batadv_orig_node_vlan *vlan;
1837 struct hlist_head *head;
1838 u8 last_ttvn;
1839 u16 flags;
1841 tt_common_entry = &tt_global_entry->common;
1842 flags = tt_common_entry->flags;
1844 best_entry = batadv_transtable_best_orig(bat_priv, tt_global_entry);
1845 if (best_entry) {
1846 vlan = batadv_orig_node_vlan_get(best_entry->orig_node,
1847 tt_common_entry->vid);
1848 if (!vlan) {
1849 seq_printf(seq,
1850 " * Cannot retrieve VLAN %d for originator %pM\n",
1851 BATADV_PRINT_VID(tt_common_entry->vid),
1852 best_entry->orig_node->orig);
1853 goto print_list;
1856 last_ttvn = atomic_read(&best_entry->orig_node->last_ttvn);
1857 seq_printf(seq,
1858 " %c %pM %4i (%3u) via %pM (%3u) (%#.8x) [%c%c%c%c]\n",
1859 '*', tt_global_entry->common.addr,
1860 BATADV_PRINT_VID(tt_global_entry->common.vid),
1861 best_entry->ttvn, best_entry->orig_node->orig,
1862 last_ttvn, vlan->tt.crc,
1863 ((flags & BATADV_TT_CLIENT_ROAM) ? 'R' : '.'),
1864 ((flags & BATADV_TT_CLIENT_WIFI) ? 'W' : '.'),
1865 ((flags & BATADV_TT_CLIENT_ISOLA) ? 'I' : '.'),
1866 ((flags & BATADV_TT_CLIENT_TEMP) ? 'T' : '.'));
1868 batadv_orig_node_vlan_put(vlan);
1871 print_list:
1872 head = &tt_global_entry->orig_list;
1874 hlist_for_each_entry_rcu(orig_entry, head, list) {
1875 if (best_entry == orig_entry)
1876 continue;
1878 vlan = batadv_orig_node_vlan_get(orig_entry->orig_node,
1879 tt_common_entry->vid);
1880 if (!vlan) {
1881 seq_printf(seq,
1882 " + Cannot retrieve VLAN %d for originator %pM\n",
1883 BATADV_PRINT_VID(tt_common_entry->vid),
1884 orig_entry->orig_node->orig);
1885 continue;
1888 last_ttvn = atomic_read(&orig_entry->orig_node->last_ttvn);
1889 seq_printf(seq,
1890 " %c %pM %4d (%3u) via %pM (%3u) (%#.8x) [%c%c%c%c]\n",
1891 '+', tt_global_entry->common.addr,
1892 BATADV_PRINT_VID(tt_global_entry->common.vid),
1893 orig_entry->ttvn, orig_entry->orig_node->orig,
1894 last_ttvn, vlan->tt.crc,
1895 ((flags & BATADV_TT_CLIENT_ROAM) ? 'R' : '.'),
1896 ((flags & BATADV_TT_CLIENT_WIFI) ? 'W' : '.'),
1897 ((flags & BATADV_TT_CLIENT_ISOLA) ? 'I' : '.'),
1898 ((flags & BATADV_TT_CLIENT_TEMP) ? 'T' : '.'));
1900 batadv_orig_node_vlan_put(vlan);
1904 int batadv_tt_global_seq_print_text(struct seq_file *seq, void *offset)
1906 struct net_device *net_dev = (struct net_device *)seq->private;
1907 struct batadv_priv *bat_priv = netdev_priv(net_dev);
1908 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
1909 struct batadv_tt_common_entry *tt_common_entry;
1910 struct batadv_tt_global_entry *tt_global;
1911 struct batadv_hard_iface *primary_if;
1912 struct hlist_head *head;
1913 u32 i;
1915 primary_if = batadv_seq_print_text_primary_if_get(seq);
1916 if (!primary_if)
1917 goto out;
1919 seq_printf(seq,
1920 "Globally announced TT entries received via the mesh %s\n",
1921 net_dev->name);
1922 seq_puts(seq,
1923 " Client VID (TTVN) Originator (Curr TTVN) (CRC ) Flags\n");
1925 for (i = 0; i < hash->size; i++) {
1926 head = &hash->table[i];
1928 rcu_read_lock();
1929 hlist_for_each_entry_rcu(tt_common_entry,
1930 head, hash_entry) {
1931 tt_global = container_of(tt_common_entry,
1932 struct batadv_tt_global_entry,
1933 common);
1934 batadv_tt_global_print_entry(bat_priv, tt_global, seq);
1936 rcu_read_unlock();
1938 out:
1939 if (primary_if)
1940 batadv_hardif_put(primary_if);
1941 return 0;
1943 #endif
1946 * batadv_tt_global_dump_subentry - Dump all TT local entries into a message
1947 * @msg: Netlink message to dump into
1948 * @portid: Port making netlink request
1949 * @seq: Sequence number of netlink message
1950 * @common: tt local & tt global common data
1951 * @orig: Originator node announcing a non-mesh client
1952 * @best: Is the best originator for the TT entry
1954 * Return: Error code, or 0 on success
1956 static int
1957 batadv_tt_global_dump_subentry(struct sk_buff *msg, u32 portid, u32 seq,
1958 struct batadv_tt_common_entry *common,
1959 struct batadv_tt_orig_list_entry *orig,
1960 bool best)
1962 void *hdr;
1963 struct batadv_orig_node_vlan *vlan;
1964 u8 last_ttvn;
1965 u32 crc;
1967 vlan = batadv_orig_node_vlan_get(orig->orig_node,
1968 common->vid);
1969 if (!vlan)
1970 return 0;
1972 crc = vlan->tt.crc;
1974 batadv_orig_node_vlan_put(vlan);
1976 hdr = genlmsg_put(msg, portid, seq, &batadv_netlink_family,
1977 NLM_F_MULTI,
1978 BATADV_CMD_GET_TRANSTABLE_GLOBAL);
1979 if (!hdr)
1980 return -ENOBUFS;
1982 last_ttvn = atomic_read(&orig->orig_node->last_ttvn);
1984 if (nla_put(msg, BATADV_ATTR_TT_ADDRESS, ETH_ALEN, common->addr) ||
1985 nla_put(msg, BATADV_ATTR_ORIG_ADDRESS, ETH_ALEN,
1986 orig->orig_node->orig) ||
1987 nla_put_u8(msg, BATADV_ATTR_TT_TTVN, orig->ttvn) ||
1988 nla_put_u8(msg, BATADV_ATTR_TT_LAST_TTVN, last_ttvn) ||
1989 nla_put_u32(msg, BATADV_ATTR_TT_CRC32, crc) ||
1990 nla_put_u16(msg, BATADV_ATTR_TT_VID, common->vid) ||
1991 nla_put_u32(msg, BATADV_ATTR_TT_FLAGS, common->flags))
1992 goto nla_put_failure;
1994 if (best && nla_put_flag(msg, BATADV_ATTR_FLAG_BEST))
1995 goto nla_put_failure;
1997 genlmsg_end(msg, hdr);
1998 return 0;
2000 nla_put_failure:
2001 genlmsg_cancel(msg, hdr);
2002 return -EMSGSIZE;
2006 * batadv_tt_global_dump_entry - Dump one TT global entry into a message
2007 * @msg: Netlink message to dump into
2008 * @portid: Port making netlink request
2009 * @seq: Sequence number of netlink message
2010 * @bat_priv: The bat priv with all the soft interface information
2011 * @common: tt local & tt global common data
2012 * @sub_s: Number of entries to skip
2014 * This function assumes the caller holds rcu_read_lock().
2016 * Return: Error code, or 0 on success
2018 static int
2019 batadv_tt_global_dump_entry(struct sk_buff *msg, u32 portid, u32 seq,
2020 struct batadv_priv *bat_priv,
2021 struct batadv_tt_common_entry *common, int *sub_s)
2023 struct batadv_tt_orig_list_entry *orig_entry, *best_entry;
2024 struct batadv_tt_global_entry *global;
2025 struct hlist_head *head;
2026 int sub = 0;
2027 bool best;
2029 global = container_of(common, struct batadv_tt_global_entry, common);
2030 best_entry = batadv_transtable_best_orig(bat_priv, global);
2031 head = &global->orig_list;
2033 hlist_for_each_entry_rcu(orig_entry, head, list) {
2034 if (sub++ < *sub_s)
2035 continue;
2037 best = (orig_entry == best_entry);
2039 if (batadv_tt_global_dump_subentry(msg, portid, seq, common,
2040 orig_entry, best)) {
2041 *sub_s = sub - 1;
2042 return -EMSGSIZE;
2046 *sub_s = 0;
2047 return 0;
2051 * batadv_tt_global_dump_bucket - Dump one TT local bucket into a message
2052 * @msg: Netlink message to dump into
2053 * @portid: Port making netlink request
2054 * @seq: Sequence number of netlink message
2055 * @bat_priv: The bat priv with all the soft interface information
2056 * @head: Pointer to the list containing the global tt entries
2057 * @idx_s: Number of entries to skip
2058 * @sub: Number of entries to skip
2060 * Return: Error code, or 0 on success
2062 static int
2063 batadv_tt_global_dump_bucket(struct sk_buff *msg, u32 portid, u32 seq,
2064 struct batadv_priv *bat_priv,
2065 struct hlist_head *head, int *idx_s, int *sub)
2067 struct batadv_tt_common_entry *common;
2068 int idx = 0;
2070 rcu_read_lock();
2071 hlist_for_each_entry_rcu(common, head, hash_entry) {
2072 if (idx++ < *idx_s)
2073 continue;
2075 if (batadv_tt_global_dump_entry(msg, portid, seq, bat_priv,
2076 common, sub)) {
2077 rcu_read_unlock();
2078 *idx_s = idx - 1;
2079 return -EMSGSIZE;
2082 rcu_read_unlock();
2084 *idx_s = 0;
2085 *sub = 0;
2086 return 0;
2090 * batadv_tt_global_dump - Dump TT global entries into a message
2091 * @msg: Netlink message to dump into
2092 * @cb: Parameters from query
2094 * Return: Error code, or length of message on success
2096 int batadv_tt_global_dump(struct sk_buff *msg, struct netlink_callback *cb)
2098 struct net *net = sock_net(cb->skb->sk);
2099 struct net_device *soft_iface;
2100 struct batadv_priv *bat_priv;
2101 struct batadv_hard_iface *primary_if = NULL;
2102 struct batadv_hashtable *hash;
2103 struct hlist_head *head;
2104 int ret;
2105 int ifindex;
2106 int bucket = cb->args[0];
2107 int idx = cb->args[1];
2108 int sub = cb->args[2];
2109 int portid = NETLINK_CB(cb->skb).portid;
2111 ifindex = batadv_netlink_get_ifindex(cb->nlh, BATADV_ATTR_MESH_IFINDEX);
2112 if (!ifindex)
2113 return -EINVAL;
2115 soft_iface = dev_get_by_index(net, ifindex);
2116 if (!soft_iface || !batadv_softif_is_valid(soft_iface)) {
2117 ret = -ENODEV;
2118 goto out;
2121 bat_priv = netdev_priv(soft_iface);
2123 primary_if = batadv_primary_if_get_selected(bat_priv);
2124 if (!primary_if || primary_if->if_status != BATADV_IF_ACTIVE) {
2125 ret = -ENOENT;
2126 goto out;
2129 hash = bat_priv->tt.global_hash;
2131 while (bucket < hash->size) {
2132 head = &hash->table[bucket];
2134 if (batadv_tt_global_dump_bucket(msg, portid,
2135 cb->nlh->nlmsg_seq, bat_priv,
2136 head, &idx, &sub))
2137 break;
2139 bucket++;
2142 ret = msg->len;
2144 out:
2145 if (primary_if)
2146 batadv_hardif_put(primary_if);
2147 if (soft_iface)
2148 dev_put(soft_iface);
2150 cb->args[0] = bucket;
2151 cb->args[1] = idx;
2152 cb->args[2] = sub;
2154 return ret;
2158 * _batadv_tt_global_del_orig_entry - remove and free an orig_entry
2159 * @tt_global_entry: the global entry to remove the orig_entry from
2160 * @orig_entry: the orig entry to remove and free
2162 * Remove an orig_entry from its list in the given tt_global_entry and
2163 * free this orig_entry afterwards.
2165 * Caller must hold tt_global_entry->list_lock and ensure orig_entry->list is
2166 * part of a list.
2168 static void
2169 _batadv_tt_global_del_orig_entry(struct batadv_tt_global_entry *tt_global_entry,
2170 struct batadv_tt_orig_list_entry *orig_entry)
2172 lockdep_assert_held(&tt_global_entry->list_lock);
2174 batadv_tt_global_size_dec(orig_entry->orig_node,
2175 tt_global_entry->common.vid);
2176 atomic_dec(&tt_global_entry->orig_list_count);
2177 /* requires holding tt_global_entry->list_lock and orig_entry->list
2178 * being part of a list
2180 hlist_del_rcu(&orig_entry->list);
2181 batadv_tt_orig_list_entry_put(orig_entry);
2184 /* deletes the orig list of a tt_global_entry */
2185 static void
2186 batadv_tt_global_del_orig_list(struct batadv_tt_global_entry *tt_global_entry)
2188 struct hlist_head *head;
2189 struct hlist_node *safe;
2190 struct batadv_tt_orig_list_entry *orig_entry;
2192 spin_lock_bh(&tt_global_entry->list_lock);
2193 head = &tt_global_entry->orig_list;
2194 hlist_for_each_entry_safe(orig_entry, safe, head, list)
2195 _batadv_tt_global_del_orig_entry(tt_global_entry, orig_entry);
2196 spin_unlock_bh(&tt_global_entry->list_lock);
2200 * batadv_tt_global_del_orig_node - remove orig_node from a global tt entry
2201 * @bat_priv: the bat priv with all the soft interface information
2202 * @tt_global_entry: the global entry to remove the orig_node from
2203 * @orig_node: the originator announcing the client
2204 * @message: message to append to the log on deletion
2206 * Remove the given orig_node and its according orig_entry from the given
2207 * global tt entry.
2209 static void
2210 batadv_tt_global_del_orig_node(struct batadv_priv *bat_priv,
2211 struct batadv_tt_global_entry *tt_global_entry,
2212 struct batadv_orig_node *orig_node,
2213 const char *message)
2215 struct hlist_head *head;
2216 struct hlist_node *safe;
2217 struct batadv_tt_orig_list_entry *orig_entry;
2218 unsigned short vid;
2220 spin_lock_bh(&tt_global_entry->list_lock);
2221 head = &tt_global_entry->orig_list;
2222 hlist_for_each_entry_safe(orig_entry, safe, head, list) {
2223 if (orig_entry->orig_node == orig_node) {
2224 vid = tt_global_entry->common.vid;
2225 batadv_dbg(BATADV_DBG_TT, bat_priv,
2226 "Deleting %pM from global tt entry %pM (vid: %d): %s\n",
2227 orig_node->orig,
2228 tt_global_entry->common.addr,
2229 BATADV_PRINT_VID(vid), message);
2230 _batadv_tt_global_del_orig_entry(tt_global_entry,
2231 orig_entry);
2234 spin_unlock_bh(&tt_global_entry->list_lock);
2237 /* If the client is to be deleted, we check if it is the last origantor entry
2238 * within tt_global entry. If yes, we set the BATADV_TT_CLIENT_ROAM flag and the
2239 * timer, otherwise we simply remove the originator scheduled for deletion.
2241 static void
2242 batadv_tt_global_del_roaming(struct batadv_priv *bat_priv,
2243 struct batadv_tt_global_entry *tt_global_entry,
2244 struct batadv_orig_node *orig_node,
2245 const char *message)
2247 bool last_entry = true;
2248 struct hlist_head *head;
2249 struct batadv_tt_orig_list_entry *orig_entry;
2251 /* no local entry exists, case 1:
2252 * Check if this is the last one or if other entries exist.
2255 rcu_read_lock();
2256 head = &tt_global_entry->orig_list;
2257 hlist_for_each_entry_rcu(orig_entry, head, list) {
2258 if (orig_entry->orig_node != orig_node) {
2259 last_entry = false;
2260 break;
2263 rcu_read_unlock();
2265 if (last_entry) {
2266 /* its the last one, mark for roaming. */
2267 tt_global_entry->common.flags |= BATADV_TT_CLIENT_ROAM;
2268 tt_global_entry->roam_at = jiffies;
2269 } else
2270 /* there is another entry, we can simply delete this
2271 * one and can still use the other one.
2273 batadv_tt_global_del_orig_node(bat_priv, tt_global_entry,
2274 orig_node, message);
2278 * batadv_tt_global_del - remove a client from the global table
2279 * @bat_priv: the bat priv with all the soft interface information
2280 * @orig_node: an originator serving this client
2281 * @addr: the mac address of the client
2282 * @vid: VLAN identifier
2283 * @message: a message explaining the reason for deleting the client to print
2284 * for debugging purpose
2285 * @roaming: true if the deletion has been triggered by a roaming event
2287 static void batadv_tt_global_del(struct batadv_priv *bat_priv,
2288 struct batadv_orig_node *orig_node,
2289 const unsigned char *addr, unsigned short vid,
2290 const char *message, bool roaming)
2292 struct batadv_tt_global_entry *tt_global_entry;
2293 struct batadv_tt_local_entry *local_entry = NULL;
2295 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid);
2296 if (!tt_global_entry)
2297 goto out;
2299 if (!roaming) {
2300 batadv_tt_global_del_orig_node(bat_priv, tt_global_entry,
2301 orig_node, message);
2303 if (hlist_empty(&tt_global_entry->orig_list))
2304 batadv_tt_global_free(bat_priv, tt_global_entry,
2305 message);
2307 goto out;
2310 /* if we are deleting a global entry due to a roam
2311 * event, there are two possibilities:
2312 * 1) the client roamed from node A to node B => if there
2313 * is only one originator left for this client, we mark
2314 * it with BATADV_TT_CLIENT_ROAM, we start a timer and we
2315 * wait for node B to claim it. In case of timeout
2316 * the entry is purged.
2318 * If there are other originators left, we directly delete
2319 * the originator.
2320 * 2) the client roamed to us => we can directly delete
2321 * the global entry, since it is useless now.
2323 local_entry = batadv_tt_local_hash_find(bat_priv,
2324 tt_global_entry->common.addr,
2325 vid);
2326 if (local_entry) {
2327 /* local entry exists, case 2: client roamed to us. */
2328 batadv_tt_global_del_orig_list(tt_global_entry);
2329 batadv_tt_global_free(bat_priv, tt_global_entry, message);
2330 } else
2331 /* no local entry exists, case 1: check for roaming */
2332 batadv_tt_global_del_roaming(bat_priv, tt_global_entry,
2333 orig_node, message);
2335 out:
2336 if (tt_global_entry)
2337 batadv_tt_global_entry_put(tt_global_entry);
2338 if (local_entry)
2339 batadv_tt_local_entry_put(local_entry);
2343 * batadv_tt_global_del_orig - remove all the TT global entries belonging to the
2344 * given originator matching the provided vid
2345 * @bat_priv: the bat priv with all the soft interface information
2346 * @orig_node: the originator owning the entries to remove
2347 * @match_vid: the VLAN identifier to match. If negative all the entries will be
2348 * removed
2349 * @message: debug message to print as "reason"
2351 void batadv_tt_global_del_orig(struct batadv_priv *bat_priv,
2352 struct batadv_orig_node *orig_node,
2353 s32 match_vid,
2354 const char *message)
2356 struct batadv_tt_global_entry *tt_global;
2357 struct batadv_tt_common_entry *tt_common_entry;
2358 u32 i;
2359 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
2360 struct hlist_node *safe;
2361 struct hlist_head *head;
2362 spinlock_t *list_lock; /* protects write access to the hash lists */
2363 unsigned short vid;
2365 if (!hash)
2366 return;
2368 for (i = 0; i < hash->size; i++) {
2369 head = &hash->table[i];
2370 list_lock = &hash->list_locks[i];
2372 spin_lock_bh(list_lock);
2373 hlist_for_each_entry_safe(tt_common_entry, safe,
2374 head, hash_entry) {
2375 /* remove only matching entries */
2376 if (match_vid >= 0 && tt_common_entry->vid != match_vid)
2377 continue;
2379 tt_global = container_of(tt_common_entry,
2380 struct batadv_tt_global_entry,
2381 common);
2383 batadv_tt_global_del_orig_node(bat_priv, tt_global,
2384 orig_node, message);
2386 if (hlist_empty(&tt_global->orig_list)) {
2387 vid = tt_global->common.vid;
2388 batadv_dbg(BATADV_DBG_TT, bat_priv,
2389 "Deleting global tt entry %pM (vid: %d): %s\n",
2390 tt_global->common.addr,
2391 BATADV_PRINT_VID(vid), message);
2392 hlist_del_rcu(&tt_common_entry->hash_entry);
2393 batadv_tt_global_entry_put(tt_global);
2396 spin_unlock_bh(list_lock);
2398 clear_bit(BATADV_ORIG_CAPA_HAS_TT, &orig_node->capa_initialized);
2401 static bool batadv_tt_global_to_purge(struct batadv_tt_global_entry *tt_global,
2402 char **msg)
2404 bool purge = false;
2405 unsigned long roam_timeout = BATADV_TT_CLIENT_ROAM_TIMEOUT;
2406 unsigned long temp_timeout = BATADV_TT_CLIENT_TEMP_TIMEOUT;
2408 if ((tt_global->common.flags & BATADV_TT_CLIENT_ROAM) &&
2409 batadv_has_timed_out(tt_global->roam_at, roam_timeout)) {
2410 purge = true;
2411 *msg = "Roaming timeout\n";
2414 if ((tt_global->common.flags & BATADV_TT_CLIENT_TEMP) &&
2415 batadv_has_timed_out(tt_global->common.added_at, temp_timeout)) {
2416 purge = true;
2417 *msg = "Temporary client timeout\n";
2420 return purge;
2423 static void batadv_tt_global_purge(struct batadv_priv *bat_priv)
2425 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
2426 struct hlist_head *head;
2427 struct hlist_node *node_tmp;
2428 spinlock_t *list_lock; /* protects write access to the hash lists */
2429 u32 i;
2430 char *msg = NULL;
2431 struct batadv_tt_common_entry *tt_common;
2432 struct batadv_tt_global_entry *tt_global;
2434 for (i = 0; i < hash->size; i++) {
2435 head = &hash->table[i];
2436 list_lock = &hash->list_locks[i];
2438 spin_lock_bh(list_lock);
2439 hlist_for_each_entry_safe(tt_common, node_tmp, head,
2440 hash_entry) {
2441 tt_global = container_of(tt_common,
2442 struct batadv_tt_global_entry,
2443 common);
2445 if (!batadv_tt_global_to_purge(tt_global, &msg))
2446 continue;
2448 batadv_dbg(BATADV_DBG_TT, bat_priv,
2449 "Deleting global tt entry %pM (vid: %d): %s\n",
2450 tt_global->common.addr,
2451 BATADV_PRINT_VID(tt_global->common.vid),
2452 msg);
2454 hlist_del_rcu(&tt_common->hash_entry);
2456 batadv_tt_global_entry_put(tt_global);
2458 spin_unlock_bh(list_lock);
2462 static void batadv_tt_global_table_free(struct batadv_priv *bat_priv)
2464 struct batadv_hashtable *hash;
2465 spinlock_t *list_lock; /* protects write access to the hash lists */
2466 struct batadv_tt_common_entry *tt_common_entry;
2467 struct batadv_tt_global_entry *tt_global;
2468 struct hlist_node *node_tmp;
2469 struct hlist_head *head;
2470 u32 i;
2472 if (!bat_priv->tt.global_hash)
2473 return;
2475 hash = bat_priv->tt.global_hash;
2477 for (i = 0; i < hash->size; i++) {
2478 head = &hash->table[i];
2479 list_lock = &hash->list_locks[i];
2481 spin_lock_bh(list_lock);
2482 hlist_for_each_entry_safe(tt_common_entry, node_tmp,
2483 head, hash_entry) {
2484 hlist_del_rcu(&tt_common_entry->hash_entry);
2485 tt_global = container_of(tt_common_entry,
2486 struct batadv_tt_global_entry,
2487 common);
2488 batadv_tt_global_entry_put(tt_global);
2490 spin_unlock_bh(list_lock);
2493 batadv_hash_destroy(hash);
2495 bat_priv->tt.global_hash = NULL;
2498 static bool
2499 _batadv_is_ap_isolated(struct batadv_tt_local_entry *tt_local_entry,
2500 struct batadv_tt_global_entry *tt_global_entry)
2502 bool ret = false;
2504 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_WIFI &&
2505 tt_global_entry->common.flags & BATADV_TT_CLIENT_WIFI)
2506 ret = true;
2508 /* check if the two clients are marked as isolated */
2509 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_ISOLA &&
2510 tt_global_entry->common.flags & BATADV_TT_CLIENT_ISOLA)
2511 ret = true;
2513 return ret;
2517 * batadv_transtable_search - get the mesh destination for a given client
2518 * @bat_priv: the bat priv with all the soft interface information
2519 * @src: mac address of the source client
2520 * @addr: mac address of the destination client
2521 * @vid: VLAN identifier
2523 * Return: a pointer to the originator that was selected as destination in the
2524 * mesh for contacting the client 'addr', NULL otherwise.
2525 * In case of multiple originators serving the same client, the function returns
2526 * the best one (best in terms of metric towards the destination node).
2528 * If the two clients are AP isolated the function returns NULL.
2530 struct batadv_orig_node *batadv_transtable_search(struct batadv_priv *bat_priv,
2531 const u8 *src,
2532 const u8 *addr,
2533 unsigned short vid)
2535 struct batadv_tt_local_entry *tt_local_entry = NULL;
2536 struct batadv_tt_global_entry *tt_global_entry = NULL;
2537 struct batadv_orig_node *orig_node = NULL;
2538 struct batadv_tt_orig_list_entry *best_entry;
2540 if (src && batadv_vlan_ap_isola_get(bat_priv, vid)) {
2541 tt_local_entry = batadv_tt_local_hash_find(bat_priv, src, vid);
2542 if (!tt_local_entry ||
2543 (tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING))
2544 goto out;
2547 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid);
2548 if (!tt_global_entry)
2549 goto out;
2551 /* check whether the clients should not communicate due to AP
2552 * isolation
2554 if (tt_local_entry &&
2555 _batadv_is_ap_isolated(tt_local_entry, tt_global_entry))
2556 goto out;
2558 rcu_read_lock();
2559 best_entry = batadv_transtable_best_orig(bat_priv, tt_global_entry);
2560 /* found anything? */
2561 if (best_entry)
2562 orig_node = best_entry->orig_node;
2563 if (orig_node && !kref_get_unless_zero(&orig_node->refcount))
2564 orig_node = NULL;
2565 rcu_read_unlock();
2567 out:
2568 if (tt_global_entry)
2569 batadv_tt_global_entry_put(tt_global_entry);
2570 if (tt_local_entry)
2571 batadv_tt_local_entry_put(tt_local_entry);
2573 return orig_node;
2577 * batadv_tt_global_crc - calculates the checksum of the local table belonging
2578 * to the given orig_node
2579 * @bat_priv: the bat priv with all the soft interface information
2580 * @orig_node: originator for which the CRC should be computed
2581 * @vid: VLAN identifier for which the CRC32 has to be computed
2583 * This function computes the checksum for the global table corresponding to a
2584 * specific originator. In particular, the checksum is computed as follows: For
2585 * each client connected to the originator the CRC32C of the MAC address and the
2586 * VID is computed and then all the CRC32Cs of the various clients are xor'ed
2587 * together.
2589 * The idea behind is that CRC32C should be used as much as possible in order to
2590 * produce a unique hash of the table, but since the order which is used to feed
2591 * the CRC32C function affects the result and since every node in the network
2592 * probably sorts the clients differently, the hash function cannot be directly
2593 * computed over the entire table. Hence the CRC32C is used only on
2594 * the single client entry, while all the results are then xor'ed together
2595 * because the XOR operation can combine them all while trying to reduce the
2596 * noise as much as possible.
2598 * Return: the checksum of the global table of a given originator.
2600 static u32 batadv_tt_global_crc(struct batadv_priv *bat_priv,
2601 struct batadv_orig_node *orig_node,
2602 unsigned short vid)
2604 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
2605 struct batadv_tt_common_entry *tt_common;
2606 struct batadv_tt_global_entry *tt_global;
2607 struct hlist_head *head;
2608 u32 i, crc_tmp, crc = 0;
2609 u8 flags;
2610 __be16 tmp_vid;
2612 for (i = 0; i < hash->size; i++) {
2613 head = &hash->table[i];
2615 rcu_read_lock();
2616 hlist_for_each_entry_rcu(tt_common, head, hash_entry) {
2617 tt_global = container_of(tt_common,
2618 struct batadv_tt_global_entry,
2619 common);
2620 /* compute the CRC only for entries belonging to the
2621 * VLAN identified by the vid passed as parameter
2623 if (tt_common->vid != vid)
2624 continue;
2626 /* Roaming clients are in the global table for
2627 * consistency only. They don't have to be
2628 * taken into account while computing the
2629 * global crc
2631 if (tt_common->flags & BATADV_TT_CLIENT_ROAM)
2632 continue;
2633 /* Temporary clients have not been announced yet, so
2634 * they have to be skipped while computing the global
2635 * crc
2637 if (tt_common->flags & BATADV_TT_CLIENT_TEMP)
2638 continue;
2640 /* find out if this global entry is announced by this
2641 * originator
2643 if (!batadv_tt_global_entry_has_orig(tt_global,
2644 orig_node))
2645 continue;
2647 /* use network order to read the VID: this ensures that
2648 * every node reads the bytes in the same order.
2650 tmp_vid = htons(tt_common->vid);
2651 crc_tmp = crc32c(0, &tmp_vid, sizeof(tmp_vid));
2653 /* compute the CRC on flags that have to be kept in sync
2654 * among nodes
2656 flags = tt_common->flags & BATADV_TT_SYNC_MASK;
2657 crc_tmp = crc32c(crc_tmp, &flags, sizeof(flags));
2659 crc ^= crc32c(crc_tmp, tt_common->addr, ETH_ALEN);
2661 rcu_read_unlock();
2664 return crc;
2668 * batadv_tt_local_crc - calculates the checksum of the local table
2669 * @bat_priv: the bat priv with all the soft interface information
2670 * @vid: VLAN identifier for which the CRC32 has to be computed
2672 * For details about the computation, please refer to the documentation for
2673 * batadv_tt_global_crc().
2675 * Return: the checksum of the local table
2677 static u32 batadv_tt_local_crc(struct batadv_priv *bat_priv,
2678 unsigned short vid)
2680 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
2681 struct batadv_tt_common_entry *tt_common;
2682 struct hlist_head *head;
2683 u32 i, crc_tmp, crc = 0;
2684 u8 flags;
2685 __be16 tmp_vid;
2687 for (i = 0; i < hash->size; i++) {
2688 head = &hash->table[i];
2690 rcu_read_lock();
2691 hlist_for_each_entry_rcu(tt_common, head, hash_entry) {
2692 /* compute the CRC only for entries belonging to the
2693 * VLAN identified by vid
2695 if (tt_common->vid != vid)
2696 continue;
2698 /* not yet committed clients have not to be taken into
2699 * account while computing the CRC
2701 if (tt_common->flags & BATADV_TT_CLIENT_NEW)
2702 continue;
2704 /* use network order to read the VID: this ensures that
2705 * every node reads the bytes in the same order.
2707 tmp_vid = htons(tt_common->vid);
2708 crc_tmp = crc32c(0, &tmp_vid, sizeof(tmp_vid));
2710 /* compute the CRC on flags that have to be kept in sync
2711 * among nodes
2713 flags = tt_common->flags & BATADV_TT_SYNC_MASK;
2714 crc_tmp = crc32c(crc_tmp, &flags, sizeof(flags));
2716 crc ^= crc32c(crc_tmp, tt_common->addr, ETH_ALEN);
2718 rcu_read_unlock();
2721 return crc;
2725 * batadv_tt_req_node_release - free tt_req node entry
2726 * @ref: kref pointer of the tt req_node entry
2728 static void batadv_tt_req_node_release(struct kref *ref)
2730 struct batadv_tt_req_node *tt_req_node;
2732 tt_req_node = container_of(ref, struct batadv_tt_req_node, refcount);
2734 kmem_cache_free(batadv_tt_req_cache, tt_req_node);
2738 * batadv_tt_req_node_put - decrement the tt_req_node refcounter and
2739 * possibly release it
2740 * @tt_req_node: tt_req_node to be free'd
2742 static void batadv_tt_req_node_put(struct batadv_tt_req_node *tt_req_node)
2744 kref_put(&tt_req_node->refcount, batadv_tt_req_node_release);
2747 static void batadv_tt_req_list_free(struct batadv_priv *bat_priv)
2749 struct batadv_tt_req_node *node;
2750 struct hlist_node *safe;
2752 spin_lock_bh(&bat_priv->tt.req_list_lock);
2754 hlist_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
2755 hlist_del_init(&node->list);
2756 batadv_tt_req_node_put(node);
2759 spin_unlock_bh(&bat_priv->tt.req_list_lock);
2762 static void batadv_tt_save_orig_buffer(struct batadv_priv *bat_priv,
2763 struct batadv_orig_node *orig_node,
2764 const void *tt_buff,
2765 u16 tt_buff_len)
2767 /* Replace the old buffer only if I received something in the
2768 * last OGM (the OGM could carry no changes)
2770 spin_lock_bh(&orig_node->tt_buff_lock);
2771 if (tt_buff_len > 0) {
2772 kfree(orig_node->tt_buff);
2773 orig_node->tt_buff_len = 0;
2774 orig_node->tt_buff = kmalloc(tt_buff_len, GFP_ATOMIC);
2775 if (orig_node->tt_buff) {
2776 memcpy(orig_node->tt_buff, tt_buff, tt_buff_len);
2777 orig_node->tt_buff_len = tt_buff_len;
2780 spin_unlock_bh(&orig_node->tt_buff_lock);
2783 static void batadv_tt_req_purge(struct batadv_priv *bat_priv)
2785 struct batadv_tt_req_node *node;
2786 struct hlist_node *safe;
2788 spin_lock_bh(&bat_priv->tt.req_list_lock);
2789 hlist_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
2790 if (batadv_has_timed_out(node->issued_at,
2791 BATADV_TT_REQUEST_TIMEOUT)) {
2792 hlist_del_init(&node->list);
2793 batadv_tt_req_node_put(node);
2796 spin_unlock_bh(&bat_priv->tt.req_list_lock);
2800 * batadv_tt_req_node_new - search and possibly create a tt_req_node object
2801 * @bat_priv: the bat priv with all the soft interface information
2802 * @orig_node: orig node this request is being issued for
2804 * Return: the pointer to the new tt_req_node struct if no request
2805 * has already been issued for this orig_node, NULL otherwise.
2807 static struct batadv_tt_req_node *
2808 batadv_tt_req_node_new(struct batadv_priv *bat_priv,
2809 struct batadv_orig_node *orig_node)
2811 struct batadv_tt_req_node *tt_req_node_tmp, *tt_req_node = NULL;
2813 spin_lock_bh(&bat_priv->tt.req_list_lock);
2814 hlist_for_each_entry(tt_req_node_tmp, &bat_priv->tt.req_list, list) {
2815 if (batadv_compare_eth(tt_req_node_tmp, orig_node) &&
2816 !batadv_has_timed_out(tt_req_node_tmp->issued_at,
2817 BATADV_TT_REQUEST_TIMEOUT))
2818 goto unlock;
2821 tt_req_node = kmem_cache_alloc(batadv_tt_req_cache, GFP_ATOMIC);
2822 if (!tt_req_node)
2823 goto unlock;
2825 kref_init(&tt_req_node->refcount);
2826 ether_addr_copy(tt_req_node->addr, orig_node->orig);
2827 tt_req_node->issued_at = jiffies;
2829 kref_get(&tt_req_node->refcount);
2830 hlist_add_head(&tt_req_node->list, &bat_priv->tt.req_list);
2831 unlock:
2832 spin_unlock_bh(&bat_priv->tt.req_list_lock);
2833 return tt_req_node;
2837 * batadv_tt_local_valid - verify that given tt entry is a valid one
2838 * @entry_ptr: to be checked local tt entry
2839 * @data_ptr: not used but definition required to satisfy the callback prototype
2841 * Return: true if the entry is a valid, false otherwise.
2843 static bool batadv_tt_local_valid(const void *entry_ptr, const void *data_ptr)
2845 const struct batadv_tt_common_entry *tt_common_entry = entry_ptr;
2847 if (tt_common_entry->flags & BATADV_TT_CLIENT_NEW)
2848 return false;
2849 return true;
2852 static bool batadv_tt_global_valid(const void *entry_ptr,
2853 const void *data_ptr)
2855 const struct batadv_tt_common_entry *tt_common_entry = entry_ptr;
2856 const struct batadv_tt_global_entry *tt_global_entry;
2857 const struct batadv_orig_node *orig_node = data_ptr;
2859 if (tt_common_entry->flags & BATADV_TT_CLIENT_ROAM ||
2860 tt_common_entry->flags & BATADV_TT_CLIENT_TEMP)
2861 return false;
2863 tt_global_entry = container_of(tt_common_entry,
2864 struct batadv_tt_global_entry,
2865 common);
2867 return batadv_tt_global_entry_has_orig(tt_global_entry, orig_node);
2871 * batadv_tt_tvlv_generate - fill the tvlv buff with the tt entries from the
2872 * specified tt hash
2873 * @bat_priv: the bat priv with all the soft interface information
2874 * @hash: hash table containing the tt entries
2875 * @tt_len: expected tvlv tt data buffer length in number of bytes
2876 * @tvlv_buff: pointer to the buffer to fill with the TT data
2877 * @valid_cb: function to filter tt change entries
2878 * @cb_data: data passed to the filter function as argument
2880 static void batadv_tt_tvlv_generate(struct batadv_priv *bat_priv,
2881 struct batadv_hashtable *hash,
2882 void *tvlv_buff, u16 tt_len,
2883 bool (*valid_cb)(const void *,
2884 const void *),
2885 void *cb_data)
2887 struct batadv_tt_common_entry *tt_common_entry;
2888 struct batadv_tvlv_tt_change *tt_change;
2889 struct hlist_head *head;
2890 u16 tt_tot, tt_num_entries = 0;
2891 u32 i;
2893 tt_tot = batadv_tt_entries(tt_len);
2894 tt_change = (struct batadv_tvlv_tt_change *)tvlv_buff;
2896 rcu_read_lock();
2897 for (i = 0; i < hash->size; i++) {
2898 head = &hash->table[i];
2900 hlist_for_each_entry_rcu(tt_common_entry,
2901 head, hash_entry) {
2902 if (tt_tot == tt_num_entries)
2903 break;
2905 if ((valid_cb) && (!valid_cb(tt_common_entry, cb_data)))
2906 continue;
2908 ether_addr_copy(tt_change->addr, tt_common_entry->addr);
2909 tt_change->flags = tt_common_entry->flags;
2910 tt_change->vid = htons(tt_common_entry->vid);
2911 memset(tt_change->reserved, 0,
2912 sizeof(tt_change->reserved));
2914 tt_num_entries++;
2915 tt_change++;
2918 rcu_read_unlock();
2922 * batadv_tt_global_check_crc - check if all the CRCs are correct
2923 * @orig_node: originator for which the CRCs have to be checked
2924 * @tt_vlan: pointer to the first tvlv VLAN entry
2925 * @num_vlan: number of tvlv VLAN entries
2927 * Return: true if all the received CRCs match the locally stored ones, false
2928 * otherwise
2930 static bool batadv_tt_global_check_crc(struct batadv_orig_node *orig_node,
2931 struct batadv_tvlv_tt_vlan_data *tt_vlan,
2932 u16 num_vlan)
2934 struct batadv_tvlv_tt_vlan_data *tt_vlan_tmp;
2935 struct batadv_orig_node_vlan *vlan;
2936 int i, orig_num_vlan;
2937 u32 crc;
2939 /* check if each received CRC matches the locally stored one */
2940 for (i = 0; i < num_vlan; i++) {
2941 tt_vlan_tmp = tt_vlan + i;
2943 /* if orig_node is a backbone node for this VLAN, don't check
2944 * the CRC as we ignore all the global entries over it
2946 if (batadv_bla_is_backbone_gw_orig(orig_node->bat_priv,
2947 orig_node->orig,
2948 ntohs(tt_vlan_tmp->vid)))
2949 continue;
2951 vlan = batadv_orig_node_vlan_get(orig_node,
2952 ntohs(tt_vlan_tmp->vid));
2953 if (!vlan)
2954 return false;
2956 crc = vlan->tt.crc;
2957 batadv_orig_node_vlan_put(vlan);
2959 if (crc != ntohl(tt_vlan_tmp->crc))
2960 return false;
2963 /* check if any excess VLANs exist locally for the originator
2964 * which are not mentioned in the TVLV from the originator.
2966 rcu_read_lock();
2967 orig_num_vlan = 0;
2968 hlist_for_each_entry_rcu(vlan, &orig_node->vlan_list, list)
2969 orig_num_vlan++;
2970 rcu_read_unlock();
2972 if (orig_num_vlan > num_vlan)
2973 return false;
2975 return true;
2979 * batadv_tt_local_update_crc - update all the local CRCs
2980 * @bat_priv: the bat priv with all the soft interface information
2982 static void batadv_tt_local_update_crc(struct batadv_priv *bat_priv)
2984 struct batadv_softif_vlan *vlan;
2986 /* recompute the global CRC for each VLAN */
2987 rcu_read_lock();
2988 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
2989 vlan->tt.crc = batadv_tt_local_crc(bat_priv, vlan->vid);
2991 rcu_read_unlock();
2995 * batadv_tt_global_update_crc - update all the global CRCs for this orig_node
2996 * @bat_priv: the bat priv with all the soft interface information
2997 * @orig_node: the orig_node for which the CRCs have to be updated
2999 static void batadv_tt_global_update_crc(struct batadv_priv *bat_priv,
3000 struct batadv_orig_node *orig_node)
3002 struct batadv_orig_node_vlan *vlan;
3003 u32 crc;
3005 /* recompute the global CRC for each VLAN */
3006 rcu_read_lock();
3007 hlist_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) {
3008 /* if orig_node is a backbone node for this VLAN, don't compute
3009 * the CRC as we ignore all the global entries over it
3011 if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig,
3012 vlan->vid))
3013 continue;
3015 crc = batadv_tt_global_crc(bat_priv, orig_node, vlan->vid);
3016 vlan->tt.crc = crc;
3018 rcu_read_unlock();
3022 * batadv_send_tt_request - send a TT Request message to a given node
3023 * @bat_priv: the bat priv with all the soft interface information
3024 * @dst_orig_node: the destination of the message
3025 * @ttvn: the version number that the source of the message is looking for
3026 * @tt_vlan: pointer to the first tvlv VLAN object to request
3027 * @num_vlan: number of tvlv VLAN entries
3028 * @full_table: ask for the entire translation table if true, while only for the
3029 * last TT diff otherwise
3031 * Return: true if the TT Request was sent, false otherwise
3033 static bool batadv_send_tt_request(struct batadv_priv *bat_priv,
3034 struct batadv_orig_node *dst_orig_node,
3035 u8 ttvn,
3036 struct batadv_tvlv_tt_vlan_data *tt_vlan,
3037 u16 num_vlan, bool full_table)
3039 struct batadv_tvlv_tt_data *tvlv_tt_data = NULL;
3040 struct batadv_tt_req_node *tt_req_node = NULL;
3041 struct batadv_tvlv_tt_vlan_data *tt_vlan_req;
3042 struct batadv_hard_iface *primary_if;
3043 bool ret = false;
3044 int i, size;
3046 primary_if = batadv_primary_if_get_selected(bat_priv);
3047 if (!primary_if)
3048 goto out;
3050 /* The new tt_req will be issued only if I'm not waiting for a
3051 * reply from the same orig_node yet
3053 tt_req_node = batadv_tt_req_node_new(bat_priv, dst_orig_node);
3054 if (!tt_req_node)
3055 goto out;
3057 size = sizeof(*tvlv_tt_data) + sizeof(*tt_vlan_req) * num_vlan;
3058 tvlv_tt_data = kzalloc(size, GFP_ATOMIC);
3059 if (!tvlv_tt_data)
3060 goto out;
3062 tvlv_tt_data->flags = BATADV_TT_REQUEST;
3063 tvlv_tt_data->ttvn = ttvn;
3064 tvlv_tt_data->num_vlan = htons(num_vlan);
3066 /* send all the CRCs within the request. This is needed by intermediate
3067 * nodes to ensure they have the correct table before replying
3069 tt_vlan_req = (struct batadv_tvlv_tt_vlan_data *)(tvlv_tt_data + 1);
3070 for (i = 0; i < num_vlan; i++) {
3071 tt_vlan_req->vid = tt_vlan->vid;
3072 tt_vlan_req->crc = tt_vlan->crc;
3074 tt_vlan_req++;
3075 tt_vlan++;
3078 if (full_table)
3079 tvlv_tt_data->flags |= BATADV_TT_FULL_TABLE;
3081 batadv_dbg(BATADV_DBG_TT, bat_priv, "Sending TT_REQUEST to %pM [%c]\n",
3082 dst_orig_node->orig, full_table ? 'F' : '.');
3084 batadv_inc_counter(bat_priv, BATADV_CNT_TT_REQUEST_TX);
3085 batadv_tvlv_unicast_send(bat_priv, primary_if->net_dev->dev_addr,
3086 dst_orig_node->orig, BATADV_TVLV_TT, 1,
3087 tvlv_tt_data, size);
3088 ret = true;
3090 out:
3091 if (primary_if)
3092 batadv_hardif_put(primary_if);
3094 if (ret && tt_req_node) {
3095 spin_lock_bh(&bat_priv->tt.req_list_lock);
3096 if (!hlist_unhashed(&tt_req_node->list)) {
3097 hlist_del_init(&tt_req_node->list);
3098 batadv_tt_req_node_put(tt_req_node);
3100 spin_unlock_bh(&bat_priv->tt.req_list_lock);
3103 if (tt_req_node)
3104 batadv_tt_req_node_put(tt_req_node);
3106 kfree(tvlv_tt_data);
3107 return ret;
3111 * batadv_send_other_tt_response - send reply to tt request concerning another
3112 * node's translation table
3113 * @bat_priv: the bat priv with all the soft interface information
3114 * @tt_data: tt data containing the tt request information
3115 * @req_src: mac address of tt request sender
3116 * @req_dst: mac address of tt request recipient
3118 * Return: true if tt request reply was sent, false otherwise.
3120 static bool batadv_send_other_tt_response(struct batadv_priv *bat_priv,
3121 struct batadv_tvlv_tt_data *tt_data,
3122 u8 *req_src, u8 *req_dst)
3124 struct batadv_orig_node *req_dst_orig_node;
3125 struct batadv_orig_node *res_dst_orig_node = NULL;
3126 struct batadv_tvlv_tt_change *tt_change;
3127 struct batadv_tvlv_tt_data *tvlv_tt_data = NULL;
3128 struct batadv_tvlv_tt_vlan_data *tt_vlan;
3129 bool ret = false, full_table;
3130 u8 orig_ttvn, req_ttvn;
3131 u16 tvlv_len;
3132 s32 tt_len;
3134 batadv_dbg(BATADV_DBG_TT, bat_priv,
3135 "Received TT_REQUEST from %pM for ttvn: %u (%pM) [%c]\n",
3136 req_src, tt_data->ttvn, req_dst,
3137 ((tt_data->flags & BATADV_TT_FULL_TABLE) ? 'F' : '.'));
3139 /* Let's get the orig node of the REAL destination */
3140 req_dst_orig_node = batadv_orig_hash_find(bat_priv, req_dst);
3141 if (!req_dst_orig_node)
3142 goto out;
3144 res_dst_orig_node = batadv_orig_hash_find(bat_priv, req_src);
3145 if (!res_dst_orig_node)
3146 goto out;
3148 orig_ttvn = (u8)atomic_read(&req_dst_orig_node->last_ttvn);
3149 req_ttvn = tt_data->ttvn;
3151 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(tt_data + 1);
3152 /* this node doesn't have the requested data */
3153 if (orig_ttvn != req_ttvn ||
3154 !batadv_tt_global_check_crc(req_dst_orig_node, tt_vlan,
3155 ntohs(tt_data->num_vlan)))
3156 goto out;
3158 /* If the full table has been explicitly requested */
3159 if (tt_data->flags & BATADV_TT_FULL_TABLE ||
3160 !req_dst_orig_node->tt_buff)
3161 full_table = true;
3162 else
3163 full_table = false;
3165 /* TT fragmentation hasn't been implemented yet, so send as many
3166 * TT entries fit a single packet as possible only
3168 if (!full_table) {
3169 spin_lock_bh(&req_dst_orig_node->tt_buff_lock);
3170 tt_len = req_dst_orig_node->tt_buff_len;
3172 tvlv_len = batadv_tt_prepare_tvlv_global_data(req_dst_orig_node,
3173 &tvlv_tt_data,
3174 &tt_change,
3175 &tt_len);
3176 if (!tt_len)
3177 goto unlock;
3179 /* Copy the last orig_node's OGM buffer */
3180 memcpy(tt_change, req_dst_orig_node->tt_buff,
3181 req_dst_orig_node->tt_buff_len);
3182 spin_unlock_bh(&req_dst_orig_node->tt_buff_lock);
3183 } else {
3184 /* allocate the tvlv, put the tt_data and all the tt_vlan_data
3185 * in the initial part
3187 tt_len = -1;
3188 tvlv_len = batadv_tt_prepare_tvlv_global_data(req_dst_orig_node,
3189 &tvlv_tt_data,
3190 &tt_change,
3191 &tt_len);
3192 if (!tt_len)
3193 goto out;
3195 /* fill the rest of the tvlv with the real TT entries */
3196 batadv_tt_tvlv_generate(bat_priv, bat_priv->tt.global_hash,
3197 tt_change, tt_len,
3198 batadv_tt_global_valid,
3199 req_dst_orig_node);
3202 /* Don't send the response, if larger than fragmented packet. */
3203 tt_len = sizeof(struct batadv_unicast_tvlv_packet) + tvlv_len;
3204 if (tt_len > atomic_read(&bat_priv->packet_size_max)) {
3205 net_ratelimited_function(batadv_info, bat_priv->soft_iface,
3206 "Ignoring TT_REQUEST from %pM; Response size exceeds max packet size.\n",
3207 res_dst_orig_node->orig);
3208 goto out;
3211 tvlv_tt_data->flags = BATADV_TT_RESPONSE;
3212 tvlv_tt_data->ttvn = req_ttvn;
3214 if (full_table)
3215 tvlv_tt_data->flags |= BATADV_TT_FULL_TABLE;
3217 batadv_dbg(BATADV_DBG_TT, bat_priv,
3218 "Sending TT_RESPONSE %pM for %pM [%c] (ttvn: %u)\n",
3219 res_dst_orig_node->orig, req_dst_orig_node->orig,
3220 full_table ? 'F' : '.', req_ttvn);
3222 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_TX);
3224 batadv_tvlv_unicast_send(bat_priv, req_dst_orig_node->orig,
3225 req_src, BATADV_TVLV_TT, 1, tvlv_tt_data,
3226 tvlv_len);
3228 ret = true;
3229 goto out;
3231 unlock:
3232 spin_unlock_bh(&req_dst_orig_node->tt_buff_lock);
3234 out:
3235 if (res_dst_orig_node)
3236 batadv_orig_node_put(res_dst_orig_node);
3237 if (req_dst_orig_node)
3238 batadv_orig_node_put(req_dst_orig_node);
3239 kfree(tvlv_tt_data);
3240 return ret;
3244 * batadv_send_my_tt_response - send reply to tt request concerning this node's
3245 * translation table
3246 * @bat_priv: the bat priv with all the soft interface information
3247 * @tt_data: tt data containing the tt request information
3248 * @req_src: mac address of tt request sender
3250 * Return: true if tt request reply was sent, false otherwise.
3252 static bool batadv_send_my_tt_response(struct batadv_priv *bat_priv,
3253 struct batadv_tvlv_tt_data *tt_data,
3254 u8 *req_src)
3256 struct batadv_tvlv_tt_data *tvlv_tt_data = NULL;
3257 struct batadv_hard_iface *primary_if = NULL;
3258 struct batadv_tvlv_tt_change *tt_change;
3259 struct batadv_orig_node *orig_node;
3260 u8 my_ttvn, req_ttvn;
3261 u16 tvlv_len;
3262 bool full_table;
3263 s32 tt_len;
3265 batadv_dbg(BATADV_DBG_TT, bat_priv,
3266 "Received TT_REQUEST from %pM for ttvn: %u (me) [%c]\n",
3267 req_src, tt_data->ttvn,
3268 ((tt_data->flags & BATADV_TT_FULL_TABLE) ? 'F' : '.'));
3270 spin_lock_bh(&bat_priv->tt.commit_lock);
3272 my_ttvn = (u8)atomic_read(&bat_priv->tt.vn);
3273 req_ttvn = tt_data->ttvn;
3275 orig_node = batadv_orig_hash_find(bat_priv, req_src);
3276 if (!orig_node)
3277 goto out;
3279 primary_if = batadv_primary_if_get_selected(bat_priv);
3280 if (!primary_if)
3281 goto out;
3283 /* If the full table has been explicitly requested or the gap
3284 * is too big send the whole local translation table
3286 if (tt_data->flags & BATADV_TT_FULL_TABLE || my_ttvn != req_ttvn ||
3287 !bat_priv->tt.last_changeset)
3288 full_table = true;
3289 else
3290 full_table = false;
3292 /* TT fragmentation hasn't been implemented yet, so send as many
3293 * TT entries fit a single packet as possible only
3295 if (!full_table) {
3296 spin_lock_bh(&bat_priv->tt.last_changeset_lock);
3298 tt_len = bat_priv->tt.last_changeset_len;
3299 tvlv_len = batadv_tt_prepare_tvlv_local_data(bat_priv,
3300 &tvlv_tt_data,
3301 &tt_change,
3302 &tt_len);
3303 if (!tt_len || !tvlv_len)
3304 goto unlock;
3306 /* Copy the last orig_node's OGM buffer */
3307 memcpy(tt_change, bat_priv->tt.last_changeset,
3308 bat_priv->tt.last_changeset_len);
3309 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
3310 } else {
3311 req_ttvn = (u8)atomic_read(&bat_priv->tt.vn);
3313 /* allocate the tvlv, put the tt_data and all the tt_vlan_data
3314 * in the initial part
3316 tt_len = -1;
3317 tvlv_len = batadv_tt_prepare_tvlv_local_data(bat_priv,
3318 &tvlv_tt_data,
3319 &tt_change,
3320 &tt_len);
3321 if (!tt_len || !tvlv_len)
3322 goto out;
3324 /* fill the rest of the tvlv with the real TT entries */
3325 batadv_tt_tvlv_generate(bat_priv, bat_priv->tt.local_hash,
3326 tt_change, tt_len,
3327 batadv_tt_local_valid, NULL);
3330 tvlv_tt_data->flags = BATADV_TT_RESPONSE;
3331 tvlv_tt_data->ttvn = req_ttvn;
3333 if (full_table)
3334 tvlv_tt_data->flags |= BATADV_TT_FULL_TABLE;
3336 batadv_dbg(BATADV_DBG_TT, bat_priv,
3337 "Sending TT_RESPONSE to %pM [%c] (ttvn: %u)\n",
3338 orig_node->orig, full_table ? 'F' : '.', req_ttvn);
3340 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_TX);
3342 batadv_tvlv_unicast_send(bat_priv, primary_if->net_dev->dev_addr,
3343 req_src, BATADV_TVLV_TT, 1, tvlv_tt_data,
3344 tvlv_len);
3346 goto out;
3348 unlock:
3349 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
3350 out:
3351 spin_unlock_bh(&bat_priv->tt.commit_lock);
3352 if (orig_node)
3353 batadv_orig_node_put(orig_node);
3354 if (primary_if)
3355 batadv_hardif_put(primary_if);
3356 kfree(tvlv_tt_data);
3357 /* The packet was for this host, so it doesn't need to be re-routed */
3358 return true;
3362 * batadv_send_tt_response - send reply to tt request
3363 * @bat_priv: the bat priv with all the soft interface information
3364 * @tt_data: tt data containing the tt request information
3365 * @req_src: mac address of tt request sender
3366 * @req_dst: mac address of tt request recipient
3368 * Return: true if tt request reply was sent, false otherwise.
3370 static bool batadv_send_tt_response(struct batadv_priv *bat_priv,
3371 struct batadv_tvlv_tt_data *tt_data,
3372 u8 *req_src, u8 *req_dst)
3374 if (batadv_is_my_mac(bat_priv, req_dst))
3375 return batadv_send_my_tt_response(bat_priv, tt_data, req_src);
3376 return batadv_send_other_tt_response(bat_priv, tt_data, req_src,
3377 req_dst);
3380 static void _batadv_tt_update_changes(struct batadv_priv *bat_priv,
3381 struct batadv_orig_node *orig_node,
3382 struct batadv_tvlv_tt_change *tt_change,
3383 u16 tt_num_changes, u8 ttvn)
3385 int i;
3386 int roams;
3388 for (i = 0; i < tt_num_changes; i++) {
3389 if ((tt_change + i)->flags & BATADV_TT_CLIENT_DEL) {
3390 roams = (tt_change + i)->flags & BATADV_TT_CLIENT_ROAM;
3391 batadv_tt_global_del(bat_priv, orig_node,
3392 (tt_change + i)->addr,
3393 ntohs((tt_change + i)->vid),
3394 "tt removed by changes",
3395 roams);
3396 } else {
3397 if (!batadv_tt_global_add(bat_priv, orig_node,
3398 (tt_change + i)->addr,
3399 ntohs((tt_change + i)->vid),
3400 (tt_change + i)->flags, ttvn))
3401 /* In case of problem while storing a
3402 * global_entry, we stop the updating
3403 * procedure without committing the
3404 * ttvn change. This will avoid to send
3405 * corrupted data on tt_request
3407 return;
3410 set_bit(BATADV_ORIG_CAPA_HAS_TT, &orig_node->capa_initialized);
3413 static void batadv_tt_fill_gtable(struct batadv_priv *bat_priv,
3414 struct batadv_tvlv_tt_change *tt_change,
3415 u8 ttvn, u8 *resp_src,
3416 u16 num_entries)
3418 struct batadv_orig_node *orig_node;
3420 orig_node = batadv_orig_hash_find(bat_priv, resp_src);
3421 if (!orig_node)
3422 goto out;
3424 /* Purge the old table first.. */
3425 batadv_tt_global_del_orig(bat_priv, orig_node, -1,
3426 "Received full table");
3428 _batadv_tt_update_changes(bat_priv, orig_node, tt_change, num_entries,
3429 ttvn);
3431 spin_lock_bh(&orig_node->tt_buff_lock);
3432 kfree(orig_node->tt_buff);
3433 orig_node->tt_buff_len = 0;
3434 orig_node->tt_buff = NULL;
3435 spin_unlock_bh(&orig_node->tt_buff_lock);
3437 atomic_set(&orig_node->last_ttvn, ttvn);
3439 out:
3440 if (orig_node)
3441 batadv_orig_node_put(orig_node);
3444 static void batadv_tt_update_changes(struct batadv_priv *bat_priv,
3445 struct batadv_orig_node *orig_node,
3446 u16 tt_num_changes, u8 ttvn,
3447 struct batadv_tvlv_tt_change *tt_change)
3449 _batadv_tt_update_changes(bat_priv, orig_node, tt_change,
3450 tt_num_changes, ttvn);
3452 batadv_tt_save_orig_buffer(bat_priv, orig_node, tt_change,
3453 batadv_tt_len(tt_num_changes));
3454 atomic_set(&orig_node->last_ttvn, ttvn);
3458 * batadv_is_my_client - check if a client is served by the local node
3459 * @bat_priv: the bat priv with all the soft interface information
3460 * @addr: the mac address of the client to check
3461 * @vid: VLAN identifier
3463 * Return: true if the client is served by this node, false otherwise.
3465 bool batadv_is_my_client(struct batadv_priv *bat_priv, const u8 *addr,
3466 unsigned short vid)
3468 struct batadv_tt_local_entry *tt_local_entry;
3469 bool ret = false;
3471 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr, vid);
3472 if (!tt_local_entry)
3473 goto out;
3474 /* Check if the client has been logically deleted (but is kept for
3475 * consistency purpose)
3477 if ((tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING) ||
3478 (tt_local_entry->common.flags & BATADV_TT_CLIENT_ROAM))
3479 goto out;
3480 ret = true;
3481 out:
3482 if (tt_local_entry)
3483 batadv_tt_local_entry_put(tt_local_entry);
3484 return ret;
3488 * batadv_handle_tt_response - process incoming tt reply
3489 * @bat_priv: the bat priv with all the soft interface information
3490 * @tt_data: tt data containing the tt request information
3491 * @resp_src: mac address of tt reply sender
3492 * @num_entries: number of tt change entries appended to the tt data
3494 static void batadv_handle_tt_response(struct batadv_priv *bat_priv,
3495 struct batadv_tvlv_tt_data *tt_data,
3496 u8 *resp_src, u16 num_entries)
3498 struct batadv_tt_req_node *node;
3499 struct hlist_node *safe;
3500 struct batadv_orig_node *orig_node = NULL;
3501 struct batadv_tvlv_tt_change *tt_change;
3502 u8 *tvlv_ptr = (u8 *)tt_data;
3503 u16 change_offset;
3505 batadv_dbg(BATADV_DBG_TT, bat_priv,
3506 "Received TT_RESPONSE from %pM for ttvn %d t_size: %d [%c]\n",
3507 resp_src, tt_data->ttvn, num_entries,
3508 ((tt_data->flags & BATADV_TT_FULL_TABLE) ? 'F' : '.'));
3510 orig_node = batadv_orig_hash_find(bat_priv, resp_src);
3511 if (!orig_node)
3512 goto out;
3514 spin_lock_bh(&orig_node->tt_lock);
3516 change_offset = sizeof(struct batadv_tvlv_tt_vlan_data);
3517 change_offset *= ntohs(tt_data->num_vlan);
3518 change_offset += sizeof(*tt_data);
3519 tvlv_ptr += change_offset;
3521 tt_change = (struct batadv_tvlv_tt_change *)tvlv_ptr;
3522 if (tt_data->flags & BATADV_TT_FULL_TABLE) {
3523 batadv_tt_fill_gtable(bat_priv, tt_change, tt_data->ttvn,
3524 resp_src, num_entries);
3525 } else {
3526 batadv_tt_update_changes(bat_priv, orig_node, num_entries,
3527 tt_data->ttvn, tt_change);
3530 /* Recalculate the CRC for this orig_node and store it */
3531 batadv_tt_global_update_crc(bat_priv, orig_node);
3533 spin_unlock_bh(&orig_node->tt_lock);
3535 /* Delete the tt_req_node from pending tt_requests list */
3536 spin_lock_bh(&bat_priv->tt.req_list_lock);
3537 hlist_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
3538 if (!batadv_compare_eth(node->addr, resp_src))
3539 continue;
3540 hlist_del_init(&node->list);
3541 batadv_tt_req_node_put(node);
3544 spin_unlock_bh(&bat_priv->tt.req_list_lock);
3545 out:
3546 if (orig_node)
3547 batadv_orig_node_put(orig_node);
3550 static void batadv_tt_roam_list_free(struct batadv_priv *bat_priv)
3552 struct batadv_tt_roam_node *node, *safe;
3554 spin_lock_bh(&bat_priv->tt.roam_list_lock);
3556 list_for_each_entry_safe(node, safe, &bat_priv->tt.roam_list, list) {
3557 list_del(&node->list);
3558 kmem_cache_free(batadv_tt_roam_cache, node);
3561 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
3564 static void batadv_tt_roam_purge(struct batadv_priv *bat_priv)
3566 struct batadv_tt_roam_node *node, *safe;
3568 spin_lock_bh(&bat_priv->tt.roam_list_lock);
3569 list_for_each_entry_safe(node, safe, &bat_priv->tt.roam_list, list) {
3570 if (!batadv_has_timed_out(node->first_time,
3571 BATADV_ROAMING_MAX_TIME))
3572 continue;
3574 list_del(&node->list);
3575 kmem_cache_free(batadv_tt_roam_cache, node);
3577 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
3581 * batadv_tt_check_roam_count - check if a client has roamed too frequently
3582 * @bat_priv: the bat priv with all the soft interface information
3583 * @client: mac address of the roaming client
3585 * This function checks whether the client already reached the
3586 * maximum number of possible roaming phases. In this case the ROAMING_ADV
3587 * will not be sent.
3589 * Return: true if the ROAMING_ADV can be sent, false otherwise
3591 static bool batadv_tt_check_roam_count(struct batadv_priv *bat_priv, u8 *client)
3593 struct batadv_tt_roam_node *tt_roam_node;
3594 bool ret = false;
3596 spin_lock_bh(&bat_priv->tt.roam_list_lock);
3597 /* The new tt_req will be issued only if I'm not waiting for a
3598 * reply from the same orig_node yet
3600 list_for_each_entry(tt_roam_node, &bat_priv->tt.roam_list, list) {
3601 if (!batadv_compare_eth(tt_roam_node->addr, client))
3602 continue;
3604 if (batadv_has_timed_out(tt_roam_node->first_time,
3605 BATADV_ROAMING_MAX_TIME))
3606 continue;
3608 if (!batadv_atomic_dec_not_zero(&tt_roam_node->counter))
3609 /* Sorry, you roamed too many times! */
3610 goto unlock;
3611 ret = true;
3612 break;
3615 if (!ret) {
3616 tt_roam_node = kmem_cache_alloc(batadv_tt_roam_cache,
3617 GFP_ATOMIC);
3618 if (!tt_roam_node)
3619 goto unlock;
3621 tt_roam_node->first_time = jiffies;
3622 atomic_set(&tt_roam_node->counter,
3623 BATADV_ROAMING_MAX_COUNT - 1);
3624 ether_addr_copy(tt_roam_node->addr, client);
3626 list_add(&tt_roam_node->list, &bat_priv->tt.roam_list);
3627 ret = true;
3630 unlock:
3631 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
3632 return ret;
3636 * batadv_send_roam_adv - send a roaming advertisement message
3637 * @bat_priv: the bat priv with all the soft interface information
3638 * @client: mac address of the roaming client
3639 * @vid: VLAN identifier
3640 * @orig_node: message destination
3642 * Send a ROAMING_ADV message to the node which was previously serving this
3643 * client. This is done to inform the node that from now on all traffic destined
3644 * for this particular roamed client has to be forwarded to the sender of the
3645 * roaming message.
3647 static void batadv_send_roam_adv(struct batadv_priv *bat_priv, u8 *client,
3648 unsigned short vid,
3649 struct batadv_orig_node *orig_node)
3651 struct batadv_hard_iface *primary_if;
3652 struct batadv_tvlv_roam_adv tvlv_roam;
3654 primary_if = batadv_primary_if_get_selected(bat_priv);
3655 if (!primary_if)
3656 goto out;
3658 /* before going on we have to check whether the client has
3659 * already roamed to us too many times
3661 if (!batadv_tt_check_roam_count(bat_priv, client))
3662 goto out;
3664 batadv_dbg(BATADV_DBG_TT, bat_priv,
3665 "Sending ROAMING_ADV to %pM (client %pM, vid: %d)\n",
3666 orig_node->orig, client, BATADV_PRINT_VID(vid));
3668 batadv_inc_counter(bat_priv, BATADV_CNT_TT_ROAM_ADV_TX);
3670 memcpy(tvlv_roam.client, client, sizeof(tvlv_roam.client));
3671 tvlv_roam.vid = htons(vid);
3673 batadv_tvlv_unicast_send(bat_priv, primary_if->net_dev->dev_addr,
3674 orig_node->orig, BATADV_TVLV_ROAM, 1,
3675 &tvlv_roam, sizeof(tvlv_roam));
3677 out:
3678 if (primary_if)
3679 batadv_hardif_put(primary_if);
3682 static void batadv_tt_purge(struct work_struct *work)
3684 struct delayed_work *delayed_work;
3685 struct batadv_priv_tt *priv_tt;
3686 struct batadv_priv *bat_priv;
3688 delayed_work = to_delayed_work(work);
3689 priv_tt = container_of(delayed_work, struct batadv_priv_tt, work);
3690 bat_priv = container_of(priv_tt, struct batadv_priv, tt);
3692 batadv_tt_local_purge(bat_priv, BATADV_TT_LOCAL_TIMEOUT);
3693 batadv_tt_global_purge(bat_priv);
3694 batadv_tt_req_purge(bat_priv);
3695 batadv_tt_roam_purge(bat_priv);
3697 queue_delayed_work(batadv_event_workqueue, &bat_priv->tt.work,
3698 msecs_to_jiffies(BATADV_TT_WORK_PERIOD));
3701 void batadv_tt_free(struct batadv_priv *bat_priv)
3703 batadv_tvlv_handler_unregister(bat_priv, BATADV_TVLV_ROAM, 1);
3705 batadv_tvlv_container_unregister(bat_priv, BATADV_TVLV_TT, 1);
3706 batadv_tvlv_handler_unregister(bat_priv, BATADV_TVLV_TT, 1);
3708 cancel_delayed_work_sync(&bat_priv->tt.work);
3710 batadv_tt_local_table_free(bat_priv);
3711 batadv_tt_global_table_free(bat_priv);
3712 batadv_tt_req_list_free(bat_priv);
3713 batadv_tt_changes_list_free(bat_priv);
3714 batadv_tt_roam_list_free(bat_priv);
3716 kfree(bat_priv->tt.last_changeset);
3720 * batadv_tt_local_set_flags - set or unset the specified flags on the local
3721 * table and possibly count them in the TT size
3722 * @bat_priv: the bat priv with all the soft interface information
3723 * @flags: the flag to switch
3724 * @enable: whether to set or unset the flag
3725 * @count: whether to increase the TT size by the number of changed entries
3727 static void batadv_tt_local_set_flags(struct batadv_priv *bat_priv, u16 flags,
3728 bool enable, bool count)
3730 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
3731 struct batadv_tt_common_entry *tt_common_entry;
3732 u16 changed_num = 0;
3733 struct hlist_head *head;
3734 u32 i;
3736 if (!hash)
3737 return;
3739 for (i = 0; i < hash->size; i++) {
3740 head = &hash->table[i];
3742 rcu_read_lock();
3743 hlist_for_each_entry_rcu(tt_common_entry,
3744 head, hash_entry) {
3745 if (enable) {
3746 if ((tt_common_entry->flags & flags) == flags)
3747 continue;
3748 tt_common_entry->flags |= flags;
3749 } else {
3750 if (!(tt_common_entry->flags & flags))
3751 continue;
3752 tt_common_entry->flags &= ~flags;
3754 changed_num++;
3756 if (!count)
3757 continue;
3759 batadv_tt_local_size_inc(bat_priv,
3760 tt_common_entry->vid);
3762 rcu_read_unlock();
3766 /* Purge out all the tt local entries marked with BATADV_TT_CLIENT_PENDING */
3767 static void batadv_tt_local_purge_pending_clients(struct batadv_priv *bat_priv)
3769 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
3770 struct batadv_tt_common_entry *tt_common;
3771 struct batadv_tt_local_entry *tt_local;
3772 struct hlist_node *node_tmp;
3773 struct hlist_head *head;
3774 spinlock_t *list_lock; /* protects write access to the hash lists */
3775 u32 i;
3777 if (!hash)
3778 return;
3780 for (i = 0; i < hash->size; i++) {
3781 head = &hash->table[i];
3782 list_lock = &hash->list_locks[i];
3784 spin_lock_bh(list_lock);
3785 hlist_for_each_entry_safe(tt_common, node_tmp, head,
3786 hash_entry) {
3787 if (!(tt_common->flags & BATADV_TT_CLIENT_PENDING))
3788 continue;
3790 batadv_dbg(BATADV_DBG_TT, bat_priv,
3791 "Deleting local tt entry (%pM, vid: %d): pending\n",
3792 tt_common->addr,
3793 BATADV_PRINT_VID(tt_common->vid));
3795 batadv_tt_local_size_dec(bat_priv, tt_common->vid);
3796 hlist_del_rcu(&tt_common->hash_entry);
3797 tt_local = container_of(tt_common,
3798 struct batadv_tt_local_entry,
3799 common);
3801 batadv_tt_local_entry_put(tt_local);
3803 spin_unlock_bh(list_lock);
3808 * batadv_tt_local_commit_changes_nolock - commit all pending local tt changes
3809 * which have been queued in the time since the last commit
3810 * @bat_priv: the bat priv with all the soft interface information
3812 * Caller must hold tt->commit_lock.
3814 static void batadv_tt_local_commit_changes_nolock(struct batadv_priv *bat_priv)
3816 lockdep_assert_held(&bat_priv->tt.commit_lock);
3818 /* Update multicast addresses in local translation table */
3819 batadv_mcast_mla_update(bat_priv);
3821 if (atomic_read(&bat_priv->tt.local_changes) < 1) {
3822 if (!batadv_atomic_dec_not_zero(&bat_priv->tt.ogm_append_cnt))
3823 batadv_tt_tvlv_container_update(bat_priv);
3824 return;
3827 batadv_tt_local_set_flags(bat_priv, BATADV_TT_CLIENT_NEW, false, true);
3829 batadv_tt_local_purge_pending_clients(bat_priv);
3830 batadv_tt_local_update_crc(bat_priv);
3832 /* Increment the TTVN only once per OGM interval */
3833 atomic_inc(&bat_priv->tt.vn);
3834 batadv_dbg(BATADV_DBG_TT, bat_priv,
3835 "Local changes committed, updating to ttvn %u\n",
3836 (u8)atomic_read(&bat_priv->tt.vn));
3838 /* reset the sending counter */
3839 atomic_set(&bat_priv->tt.ogm_append_cnt, BATADV_TT_OGM_APPEND_MAX);
3840 batadv_tt_tvlv_container_update(bat_priv);
3844 * batadv_tt_local_commit_changes - commit all pending local tt changes which
3845 * have been queued in the time since the last commit
3846 * @bat_priv: the bat priv with all the soft interface information
3848 void batadv_tt_local_commit_changes(struct batadv_priv *bat_priv)
3850 spin_lock_bh(&bat_priv->tt.commit_lock);
3851 batadv_tt_local_commit_changes_nolock(bat_priv);
3852 spin_unlock_bh(&bat_priv->tt.commit_lock);
3855 bool batadv_is_ap_isolated(struct batadv_priv *bat_priv, u8 *src, u8 *dst,
3856 unsigned short vid)
3858 struct batadv_tt_local_entry *tt_local_entry = NULL;
3859 struct batadv_tt_global_entry *tt_global_entry = NULL;
3860 struct batadv_softif_vlan *vlan;
3861 bool ret = false;
3863 vlan = batadv_softif_vlan_get(bat_priv, vid);
3864 if (!vlan)
3865 return false;
3867 if (!atomic_read(&vlan->ap_isolation))
3868 goto out;
3870 tt_local_entry = batadv_tt_local_hash_find(bat_priv, dst, vid);
3871 if (!tt_local_entry)
3872 goto out;
3874 tt_global_entry = batadv_tt_global_hash_find(bat_priv, src, vid);
3875 if (!tt_global_entry)
3876 goto out;
3878 if (!_batadv_is_ap_isolated(tt_local_entry, tt_global_entry))
3879 goto out;
3881 ret = true;
3883 out:
3884 batadv_softif_vlan_put(vlan);
3885 if (tt_global_entry)
3886 batadv_tt_global_entry_put(tt_global_entry);
3887 if (tt_local_entry)
3888 batadv_tt_local_entry_put(tt_local_entry);
3889 return ret;
3893 * batadv_tt_update_orig - update global translation table with new tt
3894 * information received via ogms
3895 * @bat_priv: the bat priv with all the soft interface information
3896 * @orig_node: the orig_node of the ogm
3897 * @tt_buff: pointer to the first tvlv VLAN entry
3898 * @tt_num_vlan: number of tvlv VLAN entries
3899 * @tt_change: pointer to the first entry in the TT buffer
3900 * @tt_num_changes: number of tt changes inside the tt buffer
3901 * @ttvn: translation table version number of this changeset
3903 static void batadv_tt_update_orig(struct batadv_priv *bat_priv,
3904 struct batadv_orig_node *orig_node,
3905 const void *tt_buff, u16 tt_num_vlan,
3906 struct batadv_tvlv_tt_change *tt_change,
3907 u16 tt_num_changes, u8 ttvn)
3909 u8 orig_ttvn = (u8)atomic_read(&orig_node->last_ttvn);
3910 struct batadv_tvlv_tt_vlan_data *tt_vlan;
3911 bool full_table = true;
3912 bool has_tt_init;
3914 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)tt_buff;
3915 has_tt_init = test_bit(BATADV_ORIG_CAPA_HAS_TT,
3916 &orig_node->capa_initialized);
3918 /* orig table not initialised AND first diff is in the OGM OR the ttvn
3919 * increased by one -> we can apply the attached changes
3921 if ((!has_tt_init && ttvn == 1) || ttvn - orig_ttvn == 1) {
3922 /* the OGM could not contain the changes due to their size or
3923 * because they have already been sent BATADV_TT_OGM_APPEND_MAX
3924 * times.
3925 * In this case send a tt request
3927 if (!tt_num_changes) {
3928 full_table = false;
3929 goto request_table;
3932 spin_lock_bh(&orig_node->tt_lock);
3934 batadv_tt_update_changes(bat_priv, orig_node, tt_num_changes,
3935 ttvn, tt_change);
3937 /* Even if we received the precomputed crc with the OGM, we
3938 * prefer to recompute it to spot any possible inconsistency
3939 * in the global table
3941 batadv_tt_global_update_crc(bat_priv, orig_node);
3943 spin_unlock_bh(&orig_node->tt_lock);
3945 /* The ttvn alone is not enough to guarantee consistency
3946 * because a single value could represent different states
3947 * (due to the wrap around). Thus a node has to check whether
3948 * the resulting table (after applying the changes) is still
3949 * consistent or not. E.g. a node could disconnect while its
3950 * ttvn is X and reconnect on ttvn = X + TTVN_MAX: in this case
3951 * checking the CRC value is mandatory to detect the
3952 * inconsistency
3954 if (!batadv_tt_global_check_crc(orig_node, tt_vlan,
3955 tt_num_vlan))
3956 goto request_table;
3957 } else {
3958 /* if we missed more than one change or our tables are not
3959 * in sync anymore -> request fresh tt data
3961 if (!has_tt_init || ttvn != orig_ttvn ||
3962 !batadv_tt_global_check_crc(orig_node, tt_vlan,
3963 tt_num_vlan)) {
3964 request_table:
3965 batadv_dbg(BATADV_DBG_TT, bat_priv,
3966 "TT inconsistency for %pM. Need to retrieve the correct information (ttvn: %u last_ttvn: %u num_changes: %u)\n",
3967 orig_node->orig, ttvn, orig_ttvn,
3968 tt_num_changes);
3969 batadv_send_tt_request(bat_priv, orig_node, ttvn,
3970 tt_vlan, tt_num_vlan,
3971 full_table);
3972 return;
3978 * batadv_tt_global_client_is_roaming - check if a client is marked as roaming
3979 * @bat_priv: the bat priv with all the soft interface information
3980 * @addr: the mac address of the client to check
3981 * @vid: VLAN identifier
3983 * Return: true if we know that the client has moved from its old originator
3984 * to another one. This entry is still kept for consistency purposes and will be
3985 * deleted later by a DEL or because of timeout
3987 bool batadv_tt_global_client_is_roaming(struct batadv_priv *bat_priv,
3988 u8 *addr, unsigned short vid)
3990 struct batadv_tt_global_entry *tt_global_entry;
3991 bool ret = false;
3993 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid);
3994 if (!tt_global_entry)
3995 goto out;
3997 ret = tt_global_entry->common.flags & BATADV_TT_CLIENT_ROAM;
3998 batadv_tt_global_entry_put(tt_global_entry);
3999 out:
4000 return ret;
4004 * batadv_tt_local_client_is_roaming - tells whether the client is roaming
4005 * @bat_priv: the bat priv with all the soft interface information
4006 * @addr: the mac address of the local client to query
4007 * @vid: VLAN identifier
4009 * Return: true if the local client is known to be roaming (it is not served by
4010 * this node anymore) or not. If yes, the client is still present in the table
4011 * to keep the latter consistent with the node TTVN
4013 bool batadv_tt_local_client_is_roaming(struct batadv_priv *bat_priv,
4014 u8 *addr, unsigned short vid)
4016 struct batadv_tt_local_entry *tt_local_entry;
4017 bool ret = false;
4019 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr, vid);
4020 if (!tt_local_entry)
4021 goto out;
4023 ret = tt_local_entry->common.flags & BATADV_TT_CLIENT_ROAM;
4024 batadv_tt_local_entry_put(tt_local_entry);
4025 out:
4026 return ret;
4029 bool batadv_tt_add_temporary_global_entry(struct batadv_priv *bat_priv,
4030 struct batadv_orig_node *orig_node,
4031 const unsigned char *addr,
4032 unsigned short vid)
4034 bool ret = false;
4036 if (!batadv_tt_global_add(bat_priv, orig_node, addr, vid,
4037 BATADV_TT_CLIENT_TEMP,
4038 atomic_read(&orig_node->last_ttvn)))
4039 goto out;
4041 batadv_dbg(BATADV_DBG_TT, bat_priv,
4042 "Added temporary global client (addr: %pM, vid: %d, orig: %pM)\n",
4043 addr, BATADV_PRINT_VID(vid), orig_node->orig);
4044 ret = true;
4045 out:
4046 return ret;
4050 * batadv_tt_local_resize_to_mtu - resize the local translation table fit the
4051 * maximum packet size that can be transported through the mesh
4052 * @soft_iface: netdev struct of the mesh interface
4054 * Remove entries older than 'timeout' and half timeout if more entries need
4055 * to be removed.
4057 void batadv_tt_local_resize_to_mtu(struct net_device *soft_iface)
4059 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
4060 int packet_size_max = atomic_read(&bat_priv->packet_size_max);
4061 int table_size, timeout = BATADV_TT_LOCAL_TIMEOUT / 2;
4062 bool reduced = false;
4064 spin_lock_bh(&bat_priv->tt.commit_lock);
4066 while (true) {
4067 table_size = batadv_tt_local_table_transmit_size(bat_priv);
4068 if (packet_size_max >= table_size)
4069 break;
4071 batadv_tt_local_purge(bat_priv, timeout);
4072 batadv_tt_local_purge_pending_clients(bat_priv);
4074 timeout /= 2;
4075 reduced = true;
4076 net_ratelimited_function(batadv_info, soft_iface,
4077 "Forced to purge local tt entries to fit new maximum fragment MTU (%i)\n",
4078 packet_size_max);
4081 /* commit these changes immediately, to avoid synchronization problem
4082 * with the TTVN
4084 if (reduced)
4085 batadv_tt_local_commit_changes_nolock(bat_priv);
4087 spin_unlock_bh(&bat_priv->tt.commit_lock);
4091 * batadv_tt_tvlv_ogm_handler_v1 - process incoming tt tvlv container
4092 * @bat_priv: the bat priv with all the soft interface information
4093 * @orig: the orig_node of the ogm
4094 * @flags: flags indicating the tvlv state (see batadv_tvlv_handler_flags)
4095 * @tvlv_value: tvlv buffer containing the gateway data
4096 * @tvlv_value_len: tvlv buffer length
4098 static void batadv_tt_tvlv_ogm_handler_v1(struct batadv_priv *bat_priv,
4099 struct batadv_orig_node *orig,
4100 u8 flags, void *tvlv_value,
4101 u16 tvlv_value_len)
4103 struct batadv_tvlv_tt_vlan_data *tt_vlan;
4104 struct batadv_tvlv_tt_change *tt_change;
4105 struct batadv_tvlv_tt_data *tt_data;
4106 u16 num_entries, num_vlan;
4108 if (tvlv_value_len < sizeof(*tt_data))
4109 return;
4111 tt_data = (struct batadv_tvlv_tt_data *)tvlv_value;
4112 tvlv_value_len -= sizeof(*tt_data);
4114 num_vlan = ntohs(tt_data->num_vlan);
4116 if (tvlv_value_len < sizeof(*tt_vlan) * num_vlan)
4117 return;
4119 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(tt_data + 1);
4120 tt_change = (struct batadv_tvlv_tt_change *)(tt_vlan + num_vlan);
4121 tvlv_value_len -= sizeof(*tt_vlan) * num_vlan;
4123 num_entries = batadv_tt_entries(tvlv_value_len);
4125 batadv_tt_update_orig(bat_priv, orig, tt_vlan, num_vlan, tt_change,
4126 num_entries, tt_data->ttvn);
4130 * batadv_tt_tvlv_unicast_handler_v1 - process incoming (unicast) tt tvlv
4131 * container
4132 * @bat_priv: the bat priv with all the soft interface information
4133 * @src: mac address of tt tvlv sender
4134 * @dst: mac address of tt tvlv recipient
4135 * @tvlv_value: tvlv buffer containing the tt data
4136 * @tvlv_value_len: tvlv buffer length
4138 * Return: NET_RX_DROP if the tt tvlv is to be re-routed, NET_RX_SUCCESS
4139 * otherwise.
4141 static int batadv_tt_tvlv_unicast_handler_v1(struct batadv_priv *bat_priv,
4142 u8 *src, u8 *dst,
4143 void *tvlv_value,
4144 u16 tvlv_value_len)
4146 struct batadv_tvlv_tt_data *tt_data;
4147 u16 tt_vlan_len, tt_num_entries;
4148 char tt_flag;
4149 bool ret;
4151 if (tvlv_value_len < sizeof(*tt_data))
4152 return NET_RX_SUCCESS;
4154 tt_data = (struct batadv_tvlv_tt_data *)tvlv_value;
4155 tvlv_value_len -= sizeof(*tt_data);
4157 tt_vlan_len = sizeof(struct batadv_tvlv_tt_vlan_data);
4158 tt_vlan_len *= ntohs(tt_data->num_vlan);
4160 if (tvlv_value_len < tt_vlan_len)
4161 return NET_RX_SUCCESS;
4163 tvlv_value_len -= tt_vlan_len;
4164 tt_num_entries = batadv_tt_entries(tvlv_value_len);
4166 switch (tt_data->flags & BATADV_TT_DATA_TYPE_MASK) {
4167 case BATADV_TT_REQUEST:
4168 batadv_inc_counter(bat_priv, BATADV_CNT_TT_REQUEST_RX);
4170 /* If this node cannot provide a TT response the tt_request is
4171 * forwarded
4173 ret = batadv_send_tt_response(bat_priv, tt_data, src, dst);
4174 if (!ret) {
4175 if (tt_data->flags & BATADV_TT_FULL_TABLE)
4176 tt_flag = 'F';
4177 else
4178 tt_flag = '.';
4180 batadv_dbg(BATADV_DBG_TT, bat_priv,
4181 "Routing TT_REQUEST to %pM [%c]\n",
4182 dst, tt_flag);
4183 /* tvlv API will re-route the packet */
4184 return NET_RX_DROP;
4186 break;
4187 case BATADV_TT_RESPONSE:
4188 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_RX);
4190 if (batadv_is_my_mac(bat_priv, dst)) {
4191 batadv_handle_tt_response(bat_priv, tt_data,
4192 src, tt_num_entries);
4193 return NET_RX_SUCCESS;
4196 if (tt_data->flags & BATADV_TT_FULL_TABLE)
4197 tt_flag = 'F';
4198 else
4199 tt_flag = '.';
4201 batadv_dbg(BATADV_DBG_TT, bat_priv,
4202 "Routing TT_RESPONSE to %pM [%c]\n", dst, tt_flag);
4204 /* tvlv API will re-route the packet */
4205 return NET_RX_DROP;
4208 return NET_RX_SUCCESS;
4212 * batadv_roam_tvlv_unicast_handler_v1 - process incoming tt roam tvlv container
4213 * @bat_priv: the bat priv with all the soft interface information
4214 * @src: mac address of tt tvlv sender
4215 * @dst: mac address of tt tvlv recipient
4216 * @tvlv_value: tvlv buffer containing the tt data
4217 * @tvlv_value_len: tvlv buffer length
4219 * Return: NET_RX_DROP if the tt roam tvlv is to be re-routed, NET_RX_SUCCESS
4220 * otherwise.
4222 static int batadv_roam_tvlv_unicast_handler_v1(struct batadv_priv *bat_priv,
4223 u8 *src, u8 *dst,
4224 void *tvlv_value,
4225 u16 tvlv_value_len)
4227 struct batadv_tvlv_roam_adv *roaming_adv;
4228 struct batadv_orig_node *orig_node = NULL;
4230 /* If this node is not the intended recipient of the
4231 * roaming advertisement the packet is forwarded
4232 * (the tvlv API will re-route the packet).
4234 if (!batadv_is_my_mac(bat_priv, dst))
4235 return NET_RX_DROP;
4237 if (tvlv_value_len < sizeof(*roaming_adv))
4238 goto out;
4240 orig_node = batadv_orig_hash_find(bat_priv, src);
4241 if (!orig_node)
4242 goto out;
4244 batadv_inc_counter(bat_priv, BATADV_CNT_TT_ROAM_ADV_RX);
4245 roaming_adv = (struct batadv_tvlv_roam_adv *)tvlv_value;
4247 batadv_dbg(BATADV_DBG_TT, bat_priv,
4248 "Received ROAMING_ADV from %pM (client %pM)\n",
4249 src, roaming_adv->client);
4251 batadv_tt_global_add(bat_priv, orig_node, roaming_adv->client,
4252 ntohs(roaming_adv->vid), BATADV_TT_CLIENT_ROAM,
4253 atomic_read(&orig_node->last_ttvn) + 1);
4255 out:
4256 if (orig_node)
4257 batadv_orig_node_put(orig_node);
4258 return NET_RX_SUCCESS;
4262 * batadv_tt_init - initialise the translation table internals
4263 * @bat_priv: the bat priv with all the soft interface information
4265 * Return: 0 on success or negative error number in case of failure.
4267 int batadv_tt_init(struct batadv_priv *bat_priv)
4269 int ret;
4271 /* synchronized flags must be remote */
4272 BUILD_BUG_ON(!(BATADV_TT_SYNC_MASK & BATADV_TT_REMOTE_MASK));
4274 ret = batadv_tt_local_init(bat_priv);
4275 if (ret < 0)
4276 return ret;
4278 ret = batadv_tt_global_init(bat_priv);
4279 if (ret < 0)
4280 return ret;
4282 batadv_tvlv_handler_register(bat_priv, batadv_tt_tvlv_ogm_handler_v1,
4283 batadv_tt_tvlv_unicast_handler_v1,
4284 BATADV_TVLV_TT, 1, BATADV_NO_FLAGS);
4286 batadv_tvlv_handler_register(bat_priv, NULL,
4287 batadv_roam_tvlv_unicast_handler_v1,
4288 BATADV_TVLV_ROAM, 1, BATADV_NO_FLAGS);
4290 INIT_DELAYED_WORK(&bat_priv->tt.work, batadv_tt_purge);
4291 queue_delayed_work(batadv_event_workqueue, &bat_priv->tt.work,
4292 msecs_to_jiffies(BATADV_TT_WORK_PERIOD));
4294 return 1;
4298 * batadv_tt_global_is_isolated - check if a client is marked as isolated
4299 * @bat_priv: the bat priv with all the soft interface information
4300 * @addr: the mac address of the client
4301 * @vid: the identifier of the VLAN where this client is connected
4303 * Return: true if the client is marked with the TT_CLIENT_ISOLA flag, false
4304 * otherwise
4306 bool batadv_tt_global_is_isolated(struct batadv_priv *bat_priv,
4307 const u8 *addr, unsigned short vid)
4309 struct batadv_tt_global_entry *tt;
4310 bool ret;
4312 tt = batadv_tt_global_hash_find(bat_priv, addr, vid);
4313 if (!tt)
4314 return false;
4316 ret = tt->common.flags & BATADV_TT_CLIENT_ISOLA;
4318 batadv_tt_global_entry_put(tt);
4320 return ret;
4324 * batadv_tt_cache_init - Initialize tt memory object cache
4326 * Return: 0 on success or negative error number in case of failure.
4328 int __init batadv_tt_cache_init(void)
4330 size_t tl_size = sizeof(struct batadv_tt_local_entry);
4331 size_t tg_size = sizeof(struct batadv_tt_global_entry);
4332 size_t tt_orig_size = sizeof(struct batadv_tt_orig_list_entry);
4333 size_t tt_change_size = sizeof(struct batadv_tt_change_node);
4334 size_t tt_req_size = sizeof(struct batadv_tt_req_node);
4335 size_t tt_roam_size = sizeof(struct batadv_tt_roam_node);
4337 batadv_tl_cache = kmem_cache_create("batadv_tl_cache", tl_size, 0,
4338 SLAB_HWCACHE_ALIGN, NULL);
4339 if (!batadv_tl_cache)
4340 return -ENOMEM;
4342 batadv_tg_cache = kmem_cache_create("batadv_tg_cache", tg_size, 0,
4343 SLAB_HWCACHE_ALIGN, NULL);
4344 if (!batadv_tg_cache)
4345 goto err_tt_tl_destroy;
4347 batadv_tt_orig_cache = kmem_cache_create("batadv_tt_orig_cache",
4348 tt_orig_size, 0,
4349 SLAB_HWCACHE_ALIGN, NULL);
4350 if (!batadv_tt_orig_cache)
4351 goto err_tt_tg_destroy;
4353 batadv_tt_change_cache = kmem_cache_create("batadv_tt_change_cache",
4354 tt_change_size, 0,
4355 SLAB_HWCACHE_ALIGN, NULL);
4356 if (!batadv_tt_change_cache)
4357 goto err_tt_orig_destroy;
4359 batadv_tt_req_cache = kmem_cache_create("batadv_tt_req_cache",
4360 tt_req_size, 0,
4361 SLAB_HWCACHE_ALIGN, NULL);
4362 if (!batadv_tt_req_cache)
4363 goto err_tt_change_destroy;
4365 batadv_tt_roam_cache = kmem_cache_create("batadv_tt_roam_cache",
4366 tt_roam_size, 0,
4367 SLAB_HWCACHE_ALIGN, NULL);
4368 if (!batadv_tt_roam_cache)
4369 goto err_tt_req_destroy;
4371 return 0;
4373 err_tt_req_destroy:
4374 kmem_cache_destroy(batadv_tt_req_cache);
4375 batadv_tt_req_cache = NULL;
4376 err_tt_change_destroy:
4377 kmem_cache_destroy(batadv_tt_change_cache);
4378 batadv_tt_change_cache = NULL;
4379 err_tt_orig_destroy:
4380 kmem_cache_destroy(batadv_tt_orig_cache);
4381 batadv_tt_orig_cache = NULL;
4382 err_tt_tg_destroy:
4383 kmem_cache_destroy(batadv_tg_cache);
4384 batadv_tg_cache = NULL;
4385 err_tt_tl_destroy:
4386 kmem_cache_destroy(batadv_tl_cache);
4387 batadv_tl_cache = NULL;
4389 return -ENOMEM;
4393 * batadv_tt_cache_destroy - Destroy tt memory object cache
4395 void batadv_tt_cache_destroy(void)
4397 kmem_cache_destroy(batadv_tl_cache);
4398 kmem_cache_destroy(batadv_tg_cache);
4399 kmem_cache_destroy(batadv_tt_orig_cache);
4400 kmem_cache_destroy(batadv_tt_change_cache);
4401 kmem_cache_destroy(batadv_tt_req_cache);
4402 kmem_cache_destroy(batadv_tt_roam_cache);