2 * Copyright (C) 2008-2012 B.A.T.M.A.N. contributors:
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
24 #include "translation-table.h"
26 #include "soft-interface.h"
27 #include "hard-interface.h"
29 #include "originator.h"
31 #define MAX_VIS_PACKET_SIZE 1000
33 static void start_vis_timer(struct bat_priv *bat_priv);
36 static void free_info(struct kref *ref)
38 struct vis_info *info = container_of(ref, struct vis_info, refcount);
39 struct bat_priv *bat_priv = info->bat_priv;
40 struct recvlist_node *entry, *tmp;
42 list_del_init(&info->send_list);
43 spin_lock_bh(&bat_priv->vis_list_lock);
44 list_for_each_entry_safe(entry, tmp, &info->recv_list, list) {
45 list_del(&entry->list);
49 spin_unlock_bh(&bat_priv->vis_list_lock);
50 kfree_skb(info->skb_packet);
54 /* Compare two vis packets, used by the hashing algorithm */
55 static int vis_info_cmp(const struct hlist_node *node, const void *data2)
57 const struct vis_info *d1, *d2;
58 const struct vis_packet *p1, *p2;
60 d1 = container_of(node, struct vis_info, hash_entry);
62 p1 = (struct vis_packet *)d1->skb_packet->data;
63 p2 = (struct vis_packet *)d2->skb_packet->data;
64 return compare_eth(p1->vis_orig, p2->vis_orig);
67 /* hash function to choose an entry in a hash table of given size */
68 /* hash algorithm from http://en.wikipedia.org/wiki/Hash_table */
69 static uint32_t vis_info_choose(const void *data, uint32_t size)
71 const struct vis_info *vis_info = data;
72 const struct vis_packet *packet;
73 const unsigned char *key;
77 packet = (struct vis_packet *)vis_info->skb_packet->data;
78 key = packet->vis_orig;
79 for (i = 0; i < ETH_ALEN; i++) {
92 static struct vis_info *vis_hash_find(struct bat_priv *bat_priv,
95 struct hashtable_t *hash = bat_priv->vis_hash;
96 struct hlist_head *head;
97 struct hlist_node *node;
98 struct vis_info *vis_info, *vis_info_tmp = NULL;
104 index = vis_info_choose(data, hash->size);
105 head = &hash->table[index];
108 hlist_for_each_entry_rcu(vis_info, node, head, hash_entry) {
109 if (!vis_info_cmp(node, data))
112 vis_info_tmp = vis_info;
120 /* insert interface to the list of interfaces of one originator, if it
121 * does not already exist in the list */
122 static void vis_data_insert_interface(const uint8_t *interface,
123 struct hlist_head *if_list,
126 struct if_list_entry *entry;
127 struct hlist_node *pos;
129 hlist_for_each_entry(entry, pos, if_list, list) {
130 if (compare_eth(entry->addr, interface))
134 /* it's a new address, add it to the list */
135 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
138 memcpy(entry->addr, interface, ETH_ALEN);
139 entry->primary = primary;
140 hlist_add_head(&entry->list, if_list);
143 static ssize_t vis_data_read_prim_sec(char *buff,
144 const struct hlist_head *if_list)
146 struct if_list_entry *entry;
147 struct hlist_node *pos;
150 hlist_for_each_entry(entry, pos, if_list, list) {
152 len += sprintf(buff + len, "PRIMARY, ");
154 len += sprintf(buff + len, "SEC %pM, ", entry->addr);
160 static size_t vis_data_count_prim_sec(struct hlist_head *if_list)
162 struct if_list_entry *entry;
163 struct hlist_node *pos;
166 hlist_for_each_entry(entry, pos, if_list, list) {
177 static ssize_t vis_data_read_entry(char *buff,
178 const struct vis_info_entry *entry,
179 const uint8_t *src, bool primary)
181 /* maximal length: max(4+17+2, 3+17+1+3+2) == 26 */
182 if (primary && entry->quality == 0)
183 return sprintf(buff, "TT %pM, ", entry->dest);
184 else if (compare_eth(entry->src, src))
185 return sprintf(buff, "TQ %pM %d, ", entry->dest,
191 int vis_seq_print_text(struct seq_file *seq, void *offset)
193 struct hard_iface *primary_if;
194 struct hlist_node *node;
195 struct hlist_head *head;
196 struct vis_info *info;
197 struct vis_packet *packet;
198 struct vis_info_entry *entries;
199 struct net_device *net_dev = (struct net_device *)seq->private;
200 struct bat_priv *bat_priv = netdev_priv(net_dev);
201 struct hashtable_t *hash = bat_priv->vis_hash;
202 HLIST_HEAD(vis_if_list);
203 struct if_list_entry *entry;
204 struct hlist_node *pos, *n;
207 int vis_server = atomic_read(&bat_priv->vis_mode);
208 size_t buff_pos, buf_size;
212 primary_if = primary_if_get_selected(bat_priv);
216 if (vis_server == VIS_TYPE_CLIENT_UPDATE)
220 /* Estimate length */
221 spin_lock_bh(&bat_priv->vis_hash_lock);
222 for (i = 0; i < hash->size; i++) {
223 head = &hash->table[i];
226 hlist_for_each_entry_rcu(info, node, head, hash_entry) {
227 packet = (struct vis_packet *)info->skb_packet->data;
228 entries = (struct vis_info_entry *)
229 ((char *)packet + sizeof(*packet));
231 for (j = 0; j < packet->entries; j++) {
232 if (entries[j].quality == 0)
235 compare_eth(entries[j].src, packet->vis_orig);
236 vis_data_insert_interface(entries[j].src,
241 hlist_for_each_entry(entry, pos, &vis_if_list, list) {
242 buf_size += 18 + 26 * packet->entries;
244 /* add primary/secondary records */
245 if (compare_eth(entry->addr, packet->vis_orig))
247 vis_data_count_prim_sec(&vis_if_list);
252 hlist_for_each_entry_safe(entry, pos, n, &vis_if_list,
254 hlist_del(&entry->list);
261 buff = kmalloc(buf_size, GFP_ATOMIC);
263 spin_unlock_bh(&bat_priv->vis_hash_lock);
270 for (i = 0; i < hash->size; i++) {
271 head = &hash->table[i];
274 hlist_for_each_entry_rcu(info, node, head, hash_entry) {
275 packet = (struct vis_packet *)info->skb_packet->data;
276 entries = (struct vis_info_entry *)
277 ((char *)packet + sizeof(*packet));
279 for (j = 0; j < packet->entries; j++) {
280 if (entries[j].quality == 0)
283 compare_eth(entries[j].src, packet->vis_orig);
284 vis_data_insert_interface(entries[j].src,
289 hlist_for_each_entry(entry, pos, &vis_if_list, list) {
290 buff_pos += sprintf(buff + buff_pos, "%pM,",
293 for (j = 0; j < packet->entries; j++)
294 buff_pos += vis_data_read_entry(
300 /* add primary/secondary records */
301 if (compare_eth(entry->addr, packet->vis_orig))
303 vis_data_read_prim_sec(buff + buff_pos,
306 buff_pos += sprintf(buff + buff_pos, "\n");
309 hlist_for_each_entry_safe(entry, pos, n, &vis_if_list,
311 hlist_del(&entry->list);
318 spin_unlock_bh(&bat_priv->vis_hash_lock);
320 seq_printf(seq, "%s", buff);
325 hardif_free_ref(primary_if);
329 /* add the info packet to the send list, if it was not
330 * already linked in. */
331 static void send_list_add(struct bat_priv *bat_priv, struct vis_info *info)
333 if (list_empty(&info->send_list)) {
334 kref_get(&info->refcount);
335 list_add_tail(&info->send_list, &bat_priv->vis_send_list);
339 /* delete the info packet from the send list, if it was
341 static void send_list_del(struct vis_info *info)
343 if (!list_empty(&info->send_list)) {
344 list_del_init(&info->send_list);
345 kref_put(&info->refcount, free_info);
349 /* tries to add one entry to the receive list. */
350 static void recv_list_add(struct bat_priv *bat_priv,
351 struct list_head *recv_list, const char *mac)
353 struct recvlist_node *entry;
355 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
359 memcpy(entry->mac, mac, ETH_ALEN);
360 spin_lock_bh(&bat_priv->vis_list_lock);
361 list_add_tail(&entry->list, recv_list);
362 spin_unlock_bh(&bat_priv->vis_list_lock);
365 /* returns 1 if this mac is in the recv_list */
366 static int recv_list_is_in(struct bat_priv *bat_priv,
367 const struct list_head *recv_list, const char *mac)
369 const struct recvlist_node *entry;
371 spin_lock_bh(&bat_priv->vis_list_lock);
372 list_for_each_entry(entry, recv_list, list) {
373 if (compare_eth(entry->mac, mac)) {
374 spin_unlock_bh(&bat_priv->vis_list_lock);
378 spin_unlock_bh(&bat_priv->vis_list_lock);
382 /* try to add the packet to the vis_hash. return NULL if invalid (e.g. too old,
383 * broken.. ). vis hash must be locked outside. is_new is set when the packet
384 * is newer than old entries in the hash. */
385 static struct vis_info *add_packet(struct bat_priv *bat_priv,
386 struct vis_packet *vis_packet,
387 int vis_info_len, int *is_new,
390 struct vis_info *info, *old_info;
391 struct vis_packet *search_packet, *old_packet;
392 struct vis_info search_elem;
393 struct vis_packet *packet;
398 if (!bat_priv->vis_hash)
401 /* see if the packet is already in vis_hash */
402 search_elem.skb_packet = dev_alloc_skb(sizeof(*search_packet));
403 if (!search_elem.skb_packet)
405 search_packet = (struct vis_packet *)skb_put(search_elem.skb_packet,
406 sizeof(*search_packet));
408 memcpy(search_packet->vis_orig, vis_packet->vis_orig, ETH_ALEN);
409 old_info = vis_hash_find(bat_priv, &search_elem);
410 kfree_skb(search_elem.skb_packet);
413 old_packet = (struct vis_packet *)old_info->skb_packet->data;
414 if (!seq_after(ntohl(vis_packet->seqno),
415 ntohl(old_packet->seqno))) {
416 if (old_packet->seqno == vis_packet->seqno) {
417 recv_list_add(bat_priv, &old_info->recv_list,
418 vis_packet->sender_orig);
421 /* newer packet is already in hash. */
425 /* remove old entry */
426 hash_remove(bat_priv->vis_hash, vis_info_cmp, vis_info_choose,
428 send_list_del(old_info);
429 kref_put(&old_info->refcount, free_info);
432 info = kmalloc(sizeof(*info), GFP_ATOMIC);
436 info->skb_packet = dev_alloc_skb(sizeof(*packet) + vis_info_len +
437 sizeof(struct ethhdr));
438 if (!info->skb_packet) {
442 skb_reserve(info->skb_packet, sizeof(struct ethhdr));
443 packet = (struct vis_packet *)skb_put(info->skb_packet, sizeof(*packet)
446 kref_init(&info->refcount);
447 INIT_LIST_HEAD(&info->send_list);
448 INIT_LIST_HEAD(&info->recv_list);
449 info->first_seen = jiffies;
450 info->bat_priv = bat_priv;
451 memcpy(packet, vis_packet, sizeof(*packet) + vis_info_len);
453 /* initialize and add new packet. */
456 /* Make it a broadcast packet, if required */
458 memcpy(packet->target_orig, broadcast_addr, ETH_ALEN);
460 /* repair if entries is longer than packet. */
461 if (packet->entries * sizeof(struct vis_info_entry) > vis_info_len)
462 packet->entries = vis_info_len / sizeof(struct vis_info_entry);
464 recv_list_add(bat_priv, &info->recv_list, packet->sender_orig);
467 hash_added = hash_add(bat_priv->vis_hash, vis_info_cmp, vis_info_choose,
468 info, &info->hash_entry);
469 if (hash_added != 0) {
470 /* did not work (for some reason) */
471 kref_put(&info->refcount, free_info);
478 /* handle the server sync packet, forward if needed. */
479 void receive_server_sync_packet(struct bat_priv *bat_priv,
480 struct vis_packet *vis_packet,
483 struct vis_info *info;
484 int is_new, make_broadcast;
485 int vis_server = atomic_read(&bat_priv->vis_mode);
487 make_broadcast = (vis_server == VIS_TYPE_SERVER_SYNC);
489 spin_lock_bh(&bat_priv->vis_hash_lock);
490 info = add_packet(bat_priv, vis_packet, vis_info_len,
491 &is_new, make_broadcast);
495 /* only if we are server ourselves and packet is newer than the one in
497 if (vis_server == VIS_TYPE_SERVER_SYNC && is_new)
498 send_list_add(bat_priv, info);
500 spin_unlock_bh(&bat_priv->vis_hash_lock);
503 /* handle an incoming client update packet and schedule forward if needed. */
504 void receive_client_update_packet(struct bat_priv *bat_priv,
505 struct vis_packet *vis_packet,
508 struct vis_info *info;
509 struct vis_packet *packet;
511 int vis_server = atomic_read(&bat_priv->vis_mode);
514 /* clients shall not broadcast. */
515 if (is_broadcast_ether_addr(vis_packet->target_orig))
518 /* Are we the target for this VIS packet? */
519 if (vis_server == VIS_TYPE_SERVER_SYNC &&
520 is_my_mac(vis_packet->target_orig))
523 spin_lock_bh(&bat_priv->vis_hash_lock);
524 info = add_packet(bat_priv, vis_packet, vis_info_len,
525 &is_new, are_target);
529 /* note that outdated packets will be dropped at this point. */
531 packet = (struct vis_packet *)info->skb_packet->data;
533 /* send only if we're the target server or ... */
534 if (are_target && is_new) {
535 packet->vis_type = VIS_TYPE_SERVER_SYNC; /* upgrade! */
536 send_list_add(bat_priv, info);
538 /* ... we're not the recipient (and thus need to forward). */
539 } else if (!is_my_mac(packet->target_orig)) {
540 send_list_add(bat_priv, info);
544 spin_unlock_bh(&bat_priv->vis_hash_lock);
547 /* Walk the originators and find the VIS server with the best tq. Set the packet
548 * address to its address and return the best_tq.
550 * Must be called with the originator hash locked */
551 static int find_best_vis_server(struct bat_priv *bat_priv,
552 struct vis_info *info)
554 struct hashtable_t *hash = bat_priv->orig_hash;
555 struct neigh_node *router;
556 struct hlist_node *node;
557 struct hlist_head *head;
558 struct orig_node *orig_node;
559 struct vis_packet *packet;
563 packet = (struct vis_packet *)info->skb_packet->data;
565 for (i = 0; i < hash->size; i++) {
566 head = &hash->table[i];
569 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
570 router = orig_node_get_router(orig_node);
574 if ((orig_node->flags & VIS_SERVER) &&
575 (router->tq_avg > best_tq)) {
576 best_tq = router->tq_avg;
577 memcpy(packet->target_orig, orig_node->orig,
580 neigh_node_free_ref(router);
588 /* Return true if the vis packet is full. */
589 static bool vis_packet_full(const struct vis_info *info)
591 const struct vis_packet *packet;
592 packet = (struct vis_packet *)info->skb_packet->data;
594 if (MAX_VIS_PACKET_SIZE / sizeof(struct vis_info_entry)
595 < packet->entries + 1)
600 /* generates a packet of own vis data,
601 * returns 0 on success, -1 if no packet could be generated */
602 static int generate_vis_packet(struct bat_priv *bat_priv)
604 struct hashtable_t *hash = bat_priv->orig_hash;
605 struct hlist_node *node;
606 struct hlist_head *head;
607 struct orig_node *orig_node;
608 struct neigh_node *router;
609 struct vis_info *info = bat_priv->my_vis_info;
610 struct vis_packet *packet = (struct vis_packet *)info->skb_packet->data;
611 struct vis_info_entry *entry;
612 struct tt_common_entry *tt_common_entry;
616 info->first_seen = jiffies;
617 packet->vis_type = atomic_read(&bat_priv->vis_mode);
619 memcpy(packet->target_orig, broadcast_addr, ETH_ALEN);
620 packet->header.ttl = TTL;
621 packet->seqno = htonl(ntohl(packet->seqno) + 1);
623 skb_trim(info->skb_packet, sizeof(*packet));
625 if (packet->vis_type == VIS_TYPE_CLIENT_UPDATE) {
626 best_tq = find_best_vis_server(bat_priv, info);
632 for (i = 0; i < hash->size; i++) {
633 head = &hash->table[i];
636 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
637 router = orig_node_get_router(orig_node);
641 if (!compare_eth(router->addr, orig_node->orig))
644 if (router->if_incoming->if_status != IF_ACTIVE)
647 if (router->tq_avg < 1)
650 /* fill one entry into buffer. */
651 entry = (struct vis_info_entry *)
652 skb_put(info->skb_packet, sizeof(*entry));
654 router->if_incoming->net_dev->dev_addr,
656 memcpy(entry->dest, orig_node->orig, ETH_ALEN);
657 entry->quality = router->tq_avg;
661 neigh_node_free_ref(router);
663 if (vis_packet_full(info))
669 hash = bat_priv->tt_local_hash;
671 for (i = 0; i < hash->size; i++) {
672 head = &hash->table[i];
675 hlist_for_each_entry_rcu(tt_common_entry, node, head,
677 entry = (struct vis_info_entry *)
678 skb_put(info->skb_packet,
680 memset(entry->src, 0, ETH_ALEN);
681 memcpy(entry->dest, tt_common_entry->addr, ETH_ALEN);
682 entry->quality = 0; /* 0 means TT */
685 if (vis_packet_full(info))
698 /* free old vis packets. Must be called with this vis_hash_lock
700 static void purge_vis_packets(struct bat_priv *bat_priv)
703 struct hashtable_t *hash = bat_priv->vis_hash;
704 struct hlist_node *node, *node_tmp;
705 struct hlist_head *head;
706 struct vis_info *info;
708 for (i = 0; i < hash->size; i++) {
709 head = &hash->table[i];
711 hlist_for_each_entry_safe(info, node, node_tmp,
713 /* never purge own data. */
714 if (info == bat_priv->my_vis_info)
717 if (has_timed_out(info->first_seen, VIS_TIMEOUT)) {
720 kref_put(&info->refcount, free_info);
726 static void broadcast_vis_packet(struct bat_priv *bat_priv,
727 struct vis_info *info)
729 struct neigh_node *router;
730 struct hashtable_t *hash = bat_priv->orig_hash;
731 struct hlist_node *node;
732 struct hlist_head *head;
733 struct orig_node *orig_node;
734 struct vis_packet *packet;
736 struct hard_iface *hard_iface;
737 uint8_t dstaddr[ETH_ALEN];
741 packet = (struct vis_packet *)info->skb_packet->data;
743 /* send to all routers in range. */
744 for (i = 0; i < hash->size; i++) {
745 head = &hash->table[i];
748 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
749 /* if it's a vis server and reachable, send it. */
750 if (!(orig_node->flags & VIS_SERVER))
753 router = orig_node_get_router(orig_node);
757 /* don't send it if we already received the packet from
759 if (recv_list_is_in(bat_priv, &info->recv_list,
761 neigh_node_free_ref(router);
765 memcpy(packet->target_orig, orig_node->orig, ETH_ALEN);
766 hard_iface = router->if_incoming;
767 memcpy(dstaddr, router->addr, ETH_ALEN);
769 neigh_node_free_ref(router);
771 skb = skb_clone(info->skb_packet, GFP_ATOMIC);
773 send_skb_packet(skb, hard_iface, dstaddr);
780 static void unicast_vis_packet(struct bat_priv *bat_priv,
781 struct vis_info *info)
783 struct orig_node *orig_node;
784 struct neigh_node *router = NULL;
786 struct vis_packet *packet;
788 packet = (struct vis_packet *)info->skb_packet->data;
790 orig_node = orig_hash_find(bat_priv, packet->target_orig);
794 router = orig_node_get_router(orig_node);
798 skb = skb_clone(info->skb_packet, GFP_ATOMIC);
800 send_skb_packet(skb, router->if_incoming, router->addr);
804 neigh_node_free_ref(router);
806 orig_node_free_ref(orig_node);
809 /* only send one vis packet. called from send_vis_packets() */
810 static void send_vis_packet(struct bat_priv *bat_priv, struct vis_info *info)
812 struct hard_iface *primary_if;
813 struct vis_packet *packet;
815 primary_if = primary_if_get_selected(bat_priv);
819 packet = (struct vis_packet *)info->skb_packet->data;
820 if (packet->header.ttl < 2) {
821 pr_debug("Error - can't send vis packet: ttl exceeded\n");
825 memcpy(packet->sender_orig, primary_if->net_dev->dev_addr, ETH_ALEN);
826 packet->header.ttl--;
828 if (is_broadcast_ether_addr(packet->target_orig))
829 broadcast_vis_packet(bat_priv, info);
831 unicast_vis_packet(bat_priv, info);
832 packet->header.ttl++; /* restore TTL */
836 hardif_free_ref(primary_if);
839 /* called from timer; send (and maybe generate) vis packet. */
840 static void send_vis_packets(struct work_struct *work)
842 struct delayed_work *delayed_work =
843 container_of(work, struct delayed_work, work);
844 struct bat_priv *bat_priv =
845 container_of(delayed_work, struct bat_priv, vis_work);
846 struct vis_info *info;
848 spin_lock_bh(&bat_priv->vis_hash_lock);
849 purge_vis_packets(bat_priv);
851 if (generate_vis_packet(bat_priv) == 0) {
852 /* schedule if generation was successful */
853 send_list_add(bat_priv, bat_priv->my_vis_info);
856 while (!list_empty(&bat_priv->vis_send_list)) {
857 info = list_first_entry(&bat_priv->vis_send_list,
858 typeof(*info), send_list);
860 kref_get(&info->refcount);
861 spin_unlock_bh(&bat_priv->vis_hash_lock);
863 send_vis_packet(bat_priv, info);
865 spin_lock_bh(&bat_priv->vis_hash_lock);
867 kref_put(&info->refcount, free_info);
869 spin_unlock_bh(&bat_priv->vis_hash_lock);
870 start_vis_timer(bat_priv);
873 /* init the vis server. this may only be called when if_list is already
874 * initialized (e.g. bat0 is initialized, interfaces have been added) */
875 int vis_init(struct bat_priv *bat_priv)
877 struct vis_packet *packet;
880 if (bat_priv->vis_hash)
883 spin_lock_bh(&bat_priv->vis_hash_lock);
885 bat_priv->vis_hash = hash_new(256);
886 if (!bat_priv->vis_hash) {
887 pr_err("Can't initialize vis_hash\n");
891 bat_priv->my_vis_info = kmalloc(MAX_VIS_PACKET_SIZE, GFP_ATOMIC);
892 if (!bat_priv->my_vis_info)
895 bat_priv->my_vis_info->skb_packet = dev_alloc_skb(sizeof(*packet) +
896 MAX_VIS_PACKET_SIZE +
897 sizeof(struct ethhdr));
898 if (!bat_priv->my_vis_info->skb_packet)
901 skb_reserve(bat_priv->my_vis_info->skb_packet, sizeof(struct ethhdr));
902 packet = (struct vis_packet *)skb_put(bat_priv->my_vis_info->skb_packet,
905 /* prefill the vis info */
906 bat_priv->my_vis_info->first_seen = jiffies -
907 msecs_to_jiffies(VIS_INTERVAL);
908 INIT_LIST_HEAD(&bat_priv->my_vis_info->recv_list);
909 INIT_LIST_HEAD(&bat_priv->my_vis_info->send_list);
910 kref_init(&bat_priv->my_vis_info->refcount);
911 bat_priv->my_vis_info->bat_priv = bat_priv;
912 packet->header.version = COMPAT_VERSION;
913 packet->header.packet_type = BAT_VIS;
914 packet->header.ttl = TTL;
918 INIT_LIST_HEAD(&bat_priv->vis_send_list);
920 hash_added = hash_add(bat_priv->vis_hash, vis_info_cmp, vis_info_choose,
921 bat_priv->my_vis_info,
922 &bat_priv->my_vis_info->hash_entry);
923 if (hash_added != 0) {
924 pr_err("Can't add own vis packet into hash\n");
925 /* not in hash, need to remove it manually. */
926 kref_put(&bat_priv->my_vis_info->refcount, free_info);
930 spin_unlock_bh(&bat_priv->vis_hash_lock);
931 start_vis_timer(bat_priv);
935 kfree(bat_priv->my_vis_info);
936 bat_priv->my_vis_info = NULL;
938 spin_unlock_bh(&bat_priv->vis_hash_lock);
943 /* Decrease the reference count on a hash item info */
944 static void free_info_ref(struct hlist_node *node, void *arg)
946 struct vis_info *info;
948 info = container_of(node, struct vis_info, hash_entry);
950 kref_put(&info->refcount, free_info);
953 /* shutdown vis-server */
954 void vis_quit(struct bat_priv *bat_priv)
956 if (!bat_priv->vis_hash)
959 cancel_delayed_work_sync(&bat_priv->vis_work);
961 spin_lock_bh(&bat_priv->vis_hash_lock);
962 /* properly remove, kill timers ... */
963 hash_delete(bat_priv->vis_hash, free_info_ref, NULL);
964 bat_priv->vis_hash = NULL;
965 bat_priv->my_vis_info = NULL;
966 spin_unlock_bh(&bat_priv->vis_hash_lock);
969 /* schedule packets for (re)transmission */
970 static void start_vis_timer(struct bat_priv *bat_priv)
972 INIT_DELAYED_WORK(&bat_priv->vis_work, send_vis_packets);
973 queue_delayed_work(bat_event_workqueue, &bat_priv->vis_work,
974 msecs_to_jiffies(VIS_INTERVAL));