]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/batman-adv/vis.c
batman-adv: Prefix icmp-socket non-static functions with batadv_
[mirror_ubuntu-artful-kernel.git] / net / batman-adv / vis.c
CommitLineData
c6c8fea2 1/*
567db7b0 2 * Copyright (C) 2008-2012 B.A.T.M.A.N. contributors:
c6c8fea2
SE
3 *
4 * Simon Wunderlich
5 *
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.
9 *
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.
14 *
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
18 * 02110-1301, USA
19 *
20 */
21
22#include "main.h"
23#include "send.h"
24#include "translation-table.h"
25#include "vis.h"
26#include "soft-interface.h"
27#include "hard-interface.h"
28#include "hash.h"
29#include "originator.h"
30
31#define MAX_VIS_PACKET_SIZE 1000
32
c6c8fea2
SE
33static void start_vis_timer(struct bat_priv *bat_priv);
34
35/* free the info */
36static void free_info(struct kref *ref)
37{
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;
41
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);
46 kfree(entry);
47 }
48
49 spin_unlock_bh(&bat_priv->vis_list_lock);
50 kfree_skb(info->skb_packet);
dda9fc6b 51 kfree(info);
c6c8fea2
SE
52}
53
54/* Compare two vis packets, used by the hashing algorithm */
747e4221 55static int vis_info_cmp(const struct hlist_node *node, const void *data2)
c6c8fea2 56{
747e4221
SE
57 const struct vis_info *d1, *d2;
58 const struct vis_packet *p1, *p2;
7aadf889
ML
59
60 d1 = container_of(node, struct vis_info, hash_entry);
c6c8fea2
SE
61 d2 = data2;
62 p1 = (struct vis_packet *)d1->skb_packet->data;
63 p2 = (struct vis_packet *)d2->skb_packet->data;
39901e71 64 return compare_eth(p1->vis_orig, p2->vis_orig);
c6c8fea2
SE
65}
66
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 */
c90681b8 69static uint32_t vis_info_choose(const void *data, uint32_t size)
c6c8fea2 70{
747e4221
SE
71 const struct vis_info *vis_info = data;
72 const struct vis_packet *packet;
73 const unsigned char *key;
c6c8fea2
SE
74 uint32_t hash = 0;
75 size_t i;
76
77 packet = (struct vis_packet *)vis_info->skb_packet->data;
78 key = packet->vis_orig;
79 for (i = 0; i < ETH_ALEN; i++) {
80 hash += key[i];
81 hash += (hash << 10);
82 hash ^= (hash >> 6);
83 }
84
85 hash += (hash << 3);
86 hash ^= (hash >> 11);
87 hash += (hash << 15);
88
89 return hash % size;
90}
91
7aadf889 92static struct vis_info *vis_hash_find(struct bat_priv *bat_priv,
747e4221 93 const void *data)
7aadf889
ML
94{
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;
c90681b8 99 uint32_t index;
7aadf889
ML
100
101 if (!hash)
102 return NULL;
103
104 index = vis_info_choose(data, hash->size);
105 head = &hash->table[index];
106
107 rcu_read_lock();
108 hlist_for_each_entry_rcu(vis_info, node, head, hash_entry) {
109 if (!vis_info_cmp(node, data))
110 continue;
111
112 vis_info_tmp = vis_info;
113 break;
114 }
115 rcu_read_unlock();
116
117 return vis_info_tmp;
118}
119
c6c8fea2
SE
120/* insert interface to the list of interfaces of one originator, if it
121 * does not already exist in the list */
122static void vis_data_insert_interface(const uint8_t *interface,
123 struct hlist_head *if_list,
124 bool primary)
125{
126 struct if_list_entry *entry;
127 struct hlist_node *pos;
128
129 hlist_for_each_entry(entry, pos, if_list, list) {
747e4221 130 if (compare_eth(entry->addr, interface))
c6c8fea2
SE
131 return;
132 }
133
015758d0 134 /* it's a new address, add it to the list */
c6c8fea2
SE
135 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
136 if (!entry)
137 return;
138 memcpy(entry->addr, interface, ETH_ALEN);
139 entry->primary = primary;
140 hlist_add_head(&entry->list, if_list);
141}
142
747e4221
SE
143static ssize_t vis_data_read_prim_sec(char *buff,
144 const struct hlist_head *if_list)
c6c8fea2
SE
145{
146 struct if_list_entry *entry;
147 struct hlist_node *pos;
148 size_t len = 0;
149
150 hlist_for_each_entry(entry, pos, if_list, list) {
151 if (entry->primary)
152 len += sprintf(buff + len, "PRIMARY, ");
153 else
154 len += sprintf(buff + len, "SEC %pM, ", entry->addr);
155 }
156
157 return len;
158}
159
160static size_t vis_data_count_prim_sec(struct hlist_head *if_list)
161{
162 struct if_list_entry *entry;
163 struct hlist_node *pos;
164 size_t count = 0;
165
166 hlist_for_each_entry(entry, pos, if_list, list) {
167 if (entry->primary)
168 count += 9;
169 else
170 count += 23;
171 }
172
173 return count;
174}
175
176/* read an entry */
747e4221
SE
177static ssize_t vis_data_read_entry(char *buff,
178 const struct vis_info_entry *entry,
179 const uint8_t *src, bool primary)
c6c8fea2
SE
180{
181 /* maximal length: max(4+17+2, 3+17+1+3+2) == 26 */
182 if (primary && entry->quality == 0)
2dafb49d 183 return sprintf(buff, "TT %pM, ", entry->dest);
39901e71 184 else if (compare_eth(entry->src, src))
c6c8fea2
SE
185 return sprintf(buff, "TQ %pM %d, ", entry->dest,
186 entry->quality);
187
188 return 0;
189}
190
191int vis_seq_print_text(struct seq_file *seq, void *offset)
192{
32ae9b22 193 struct hard_iface *primary_if;
7aadf889 194 struct hlist_node *node;
c6c8fea2 195 struct hlist_head *head;
c6c8fea2
SE
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;
c90681b8
AQ
205 uint32_t i;
206 int j, ret = 0;
c6c8fea2
SE
207 int vis_server = atomic_read(&bat_priv->vis_mode);
208 size_t buff_pos, buf_size;
209 char *buff;
c6c8fea2 210
32ae9b22
ML
211 primary_if = primary_if_get_selected(bat_priv);
212 if (!primary_if)
213 goto out;
214
215 if (vis_server == VIS_TYPE_CLIENT_UPDATE)
216 goto out;
c6c8fea2
SE
217
218 buf_size = 1;
219 /* Estimate length */
220 spin_lock_bh(&bat_priv->vis_hash_lock);
221 for (i = 0; i < hash->size; i++) {
222 head = &hash->table[i];
223
7aadf889
ML
224 rcu_read_lock();
225 hlist_for_each_entry_rcu(info, node, head, hash_entry) {
c6c8fea2
SE
226 packet = (struct vis_packet *)info->skb_packet->data;
227 entries = (struct vis_info_entry *)
704509b8 228 ((char *)packet + sizeof(*packet));
c6c8fea2 229
beeb96a4
MS
230 vis_data_insert_interface(packet->vis_orig,
231 &vis_if_list, true);
232
c6c8fea2
SE
233 for (j = 0; j < packet->entries; j++) {
234 if (entries[j].quality == 0)
235 continue;
beeb96a4
MS
236 if (compare_eth(entries[j].src,
237 packet->vis_orig))
238 continue;
c6c8fea2
SE
239 vis_data_insert_interface(entries[j].src,
240 &vis_if_list,
beeb96a4 241 false);
c6c8fea2
SE
242 }
243
244 hlist_for_each_entry(entry, pos, &vis_if_list, list) {
245 buf_size += 18 + 26 * packet->entries;
246
247 /* add primary/secondary records */
39901e71 248 if (compare_eth(entry->addr, packet->vis_orig))
c6c8fea2
SE
249 buf_size +=
250 vis_data_count_prim_sec(&vis_if_list);
251
252 buf_size += 1;
253 }
254
255 hlist_for_each_entry_safe(entry, pos, n, &vis_if_list,
256 list) {
257 hlist_del(&entry->list);
258 kfree(entry);
259 }
260 }
7aadf889 261 rcu_read_unlock();
c6c8fea2
SE
262 }
263
264 buff = kmalloc(buf_size, GFP_ATOMIC);
265 if (!buff) {
266 spin_unlock_bh(&bat_priv->vis_hash_lock);
32ae9b22
ML
267 ret = -ENOMEM;
268 goto out;
c6c8fea2
SE
269 }
270 buff[0] = '\0';
271 buff_pos = 0;
272
273 for (i = 0; i < hash->size; i++) {
274 head = &hash->table[i];
275
7aadf889
ML
276 rcu_read_lock();
277 hlist_for_each_entry_rcu(info, node, head, hash_entry) {
c6c8fea2
SE
278 packet = (struct vis_packet *)info->skb_packet->data;
279 entries = (struct vis_info_entry *)
704509b8 280 ((char *)packet + sizeof(*packet));
c6c8fea2 281
beeb96a4
MS
282 vis_data_insert_interface(packet->vis_orig,
283 &vis_if_list, true);
284
c6c8fea2
SE
285 for (j = 0; j < packet->entries; j++) {
286 if (entries[j].quality == 0)
287 continue;
beeb96a4
MS
288 if (compare_eth(entries[j].src,
289 packet->vis_orig))
290 continue;
c6c8fea2
SE
291 vis_data_insert_interface(entries[j].src,
292 &vis_if_list,
beeb96a4 293 false);
c6c8fea2
SE
294 }
295
296 hlist_for_each_entry(entry, pos, &vis_if_list, list) {
297 buff_pos += sprintf(buff + buff_pos, "%pM,",
298 entry->addr);
299
dd58ddc6 300 for (j = 0; j < packet->entries; j++)
c6c8fea2
SE
301 buff_pos += vis_data_read_entry(
302 buff + buff_pos,
dd58ddc6 303 &entries[j],
c6c8fea2
SE
304 entry->addr,
305 entry->primary);
306
307 /* add primary/secondary records */
39901e71 308 if (compare_eth(entry->addr, packet->vis_orig))
c6c8fea2
SE
309 buff_pos +=
310 vis_data_read_prim_sec(buff + buff_pos,
311 &vis_if_list);
312
313 buff_pos += sprintf(buff + buff_pos, "\n");
314 }
315
316 hlist_for_each_entry_safe(entry, pos, n, &vis_if_list,
317 list) {
318 hlist_del(&entry->list);
319 kfree(entry);
320 }
321 }
7aadf889 322 rcu_read_unlock();
c6c8fea2
SE
323 }
324
325 spin_unlock_bh(&bat_priv->vis_hash_lock);
326
327 seq_printf(seq, "%s", buff);
328 kfree(buff);
329
32ae9b22
ML
330out:
331 if (primary_if)
332 hardif_free_ref(primary_if);
333 return ret;
c6c8fea2
SE
334}
335
336/* add the info packet to the send list, if it was not
337 * already linked in. */
338static void send_list_add(struct bat_priv *bat_priv, struct vis_info *info)
339{
340 if (list_empty(&info->send_list)) {
341 kref_get(&info->refcount);
342 list_add_tail(&info->send_list, &bat_priv->vis_send_list);
343 }
344}
345
346/* delete the info packet from the send list, if it was
347 * linked in. */
348static void send_list_del(struct vis_info *info)
349{
350 if (!list_empty(&info->send_list)) {
351 list_del_init(&info->send_list);
352 kref_put(&info->refcount, free_info);
353 }
354}
355
356/* tries to add one entry to the receive list. */
357static void recv_list_add(struct bat_priv *bat_priv,
747e4221 358 struct list_head *recv_list, const char *mac)
c6c8fea2
SE
359{
360 struct recvlist_node *entry;
361
704509b8 362 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
c6c8fea2
SE
363 if (!entry)
364 return;
365
366 memcpy(entry->mac, mac, ETH_ALEN);
367 spin_lock_bh(&bat_priv->vis_list_lock);
368 list_add_tail(&entry->list, recv_list);
369 spin_unlock_bh(&bat_priv->vis_list_lock);
370}
371
372/* returns 1 if this mac is in the recv_list */
373static int recv_list_is_in(struct bat_priv *bat_priv,
747e4221 374 const struct list_head *recv_list, const char *mac)
c6c8fea2 375{
747e4221 376 const struct recvlist_node *entry;
c6c8fea2
SE
377
378 spin_lock_bh(&bat_priv->vis_list_lock);
379 list_for_each_entry(entry, recv_list, list) {
39901e71 380 if (compare_eth(entry->mac, mac)) {
c6c8fea2
SE
381 spin_unlock_bh(&bat_priv->vis_list_lock);
382 return 1;
383 }
384 }
385 spin_unlock_bh(&bat_priv->vis_list_lock);
386 return 0;
387}
388
389/* try to add the packet to the vis_hash. return NULL if invalid (e.g. too old,
390 * broken.. ). vis hash must be locked outside. is_new is set when the packet
391 * is newer than old entries in the hash. */
392static struct vis_info *add_packet(struct bat_priv *bat_priv,
393 struct vis_packet *vis_packet,
394 int vis_info_len, int *is_new,
395 int make_broadcast)
396{
397 struct vis_info *info, *old_info;
398 struct vis_packet *search_packet, *old_packet;
399 struct vis_info search_elem;
400 struct vis_packet *packet;
401 int hash_added;
402
403 *is_new = 0;
404 /* sanity check */
405 if (!bat_priv->vis_hash)
406 return NULL;
407
408 /* see if the packet is already in vis_hash */
704509b8 409 search_elem.skb_packet = dev_alloc_skb(sizeof(*search_packet));
c6c8fea2
SE
410 if (!search_elem.skb_packet)
411 return NULL;
412 search_packet = (struct vis_packet *)skb_put(search_elem.skb_packet,
704509b8 413 sizeof(*search_packet));
c6c8fea2
SE
414
415 memcpy(search_packet->vis_orig, vis_packet->vis_orig, ETH_ALEN);
7aadf889 416 old_info = vis_hash_find(bat_priv, &search_elem);
c6c8fea2
SE
417 kfree_skb(search_elem.skb_packet);
418
419 if (old_info) {
420 old_packet = (struct vis_packet *)old_info->skb_packet->data;
421 if (!seq_after(ntohl(vis_packet->seqno),
422 ntohl(old_packet->seqno))) {
423 if (old_packet->seqno == vis_packet->seqno) {
424 recv_list_add(bat_priv, &old_info->recv_list,
425 vis_packet->sender_orig);
426 return old_info;
427 } else {
428 /* newer packet is already in hash. */
429 return NULL;
430 }
431 }
432 /* remove old entry */
433 hash_remove(bat_priv->vis_hash, vis_info_cmp, vis_info_choose,
434 old_info);
435 send_list_del(old_info);
436 kref_put(&old_info->refcount, free_info);
437 }
438
704509b8 439 info = kmalloc(sizeof(*info), GFP_ATOMIC);
c6c8fea2
SE
440 if (!info)
441 return NULL;
442
704509b8 443 info->skb_packet = dev_alloc_skb(sizeof(*packet) + vis_info_len +
0d125074 444 ETH_HLEN);
c6c8fea2
SE
445 if (!info->skb_packet) {
446 kfree(info);
447 return NULL;
448 }
0d125074 449 skb_reserve(info->skb_packet, ETH_HLEN);
704509b8
SE
450 packet = (struct vis_packet *)skb_put(info->skb_packet, sizeof(*packet)
451 + vis_info_len);
c6c8fea2
SE
452
453 kref_init(&info->refcount);
454 INIT_LIST_HEAD(&info->send_list);
455 INIT_LIST_HEAD(&info->recv_list);
456 info->first_seen = jiffies;
457 info->bat_priv = bat_priv;
704509b8 458 memcpy(packet, vis_packet, sizeof(*packet) + vis_info_len);
c6c8fea2
SE
459
460 /* initialize and add new packet. */
461 *is_new = 1;
462
463 /* Make it a broadcast packet, if required */
464 if (make_broadcast)
465 memcpy(packet->target_orig, broadcast_addr, ETH_ALEN);
466
467 /* repair if entries is longer than packet. */
468 if (packet->entries * sizeof(struct vis_info_entry) > vis_info_len)
469 packet->entries = vis_info_len / sizeof(struct vis_info_entry);
470
471 recv_list_add(bat_priv, &info->recv_list, packet->sender_orig);
472
473 /* try to add it */
474 hash_added = hash_add(bat_priv->vis_hash, vis_info_cmp, vis_info_choose,
7aadf889 475 info, &info->hash_entry);
1a1f37d9 476 if (hash_added != 0) {
c6c8fea2 477 /* did not work (for some reason) */
2674c158 478 kref_put(&info->refcount, free_info);
c6c8fea2
SE
479 info = NULL;
480 }
481
482 return info;
483}
484
485/* handle the server sync packet, forward if needed. */
486void receive_server_sync_packet(struct bat_priv *bat_priv,
487 struct vis_packet *vis_packet,
488 int vis_info_len)
489{
490 struct vis_info *info;
491 int is_new, make_broadcast;
492 int vis_server = atomic_read(&bat_priv->vis_mode);
493
494 make_broadcast = (vis_server == VIS_TYPE_SERVER_SYNC);
495
496 spin_lock_bh(&bat_priv->vis_hash_lock);
497 info = add_packet(bat_priv, vis_packet, vis_info_len,
498 &is_new, make_broadcast);
499 if (!info)
500 goto end;
501
502 /* only if we are server ourselves and packet is newer than the one in
503 * hash.*/
504 if (vis_server == VIS_TYPE_SERVER_SYNC && is_new)
505 send_list_add(bat_priv, info);
506end:
507 spin_unlock_bh(&bat_priv->vis_hash_lock);
508}
509
510/* handle an incoming client update packet and schedule forward if needed. */
511void receive_client_update_packet(struct bat_priv *bat_priv,
512 struct vis_packet *vis_packet,
513 int vis_info_len)
514{
515 struct vis_info *info;
516 struct vis_packet *packet;
517 int is_new;
518 int vis_server = atomic_read(&bat_priv->vis_mode);
519 int are_target = 0;
520
521 /* clients shall not broadcast. */
522 if (is_broadcast_ether_addr(vis_packet->target_orig))
523 return;
524
525 /* Are we the target for this VIS packet? */
526 if (vis_server == VIS_TYPE_SERVER_SYNC &&
527 is_my_mac(vis_packet->target_orig))
528 are_target = 1;
529
530 spin_lock_bh(&bat_priv->vis_hash_lock);
531 info = add_packet(bat_priv, vis_packet, vis_info_len,
532 &is_new, are_target);
533
534 if (!info)
535 goto end;
536 /* note that outdated packets will be dropped at this point. */
537
538 packet = (struct vis_packet *)info->skb_packet->data;
539
540 /* send only if we're the target server or ... */
541 if (are_target && is_new) {
542 packet->vis_type = VIS_TYPE_SERVER_SYNC; /* upgrade! */
543 send_list_add(bat_priv, info);
544
545 /* ... we're not the recipient (and thus need to forward). */
546 } else if (!is_my_mac(packet->target_orig)) {
547 send_list_add(bat_priv, info);
548 }
549
550end:
551 spin_unlock_bh(&bat_priv->vis_hash_lock);
552}
553
554/* Walk the originators and find the VIS server with the best tq. Set the packet
555 * address to its address and return the best_tq.
556 *
557 * Must be called with the originator hash locked */
558static int find_best_vis_server(struct bat_priv *bat_priv,
559 struct vis_info *info)
560{
561 struct hashtable_t *hash = bat_priv->orig_hash;
e1a5382f 562 struct neigh_node *router;
7aadf889 563 struct hlist_node *node;
c6c8fea2 564 struct hlist_head *head;
c6c8fea2
SE
565 struct orig_node *orig_node;
566 struct vis_packet *packet;
c90681b8
AQ
567 int best_tq = -1;
568 uint32_t i;
c6c8fea2
SE
569
570 packet = (struct vis_packet *)info->skb_packet->data;
571
572 for (i = 0; i < hash->size; i++) {
573 head = &hash->table[i];
574
fb778ea1 575 rcu_read_lock();
7aadf889 576 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
e1a5382f
LL
577 router = orig_node_get_router(orig_node);
578 if (!router)
579 continue;
580
581 if ((orig_node->flags & VIS_SERVER) &&
582 (router->tq_avg > best_tq)) {
583 best_tq = router->tq_avg;
c6c8fea2
SE
584 memcpy(packet->target_orig, orig_node->orig,
585 ETH_ALEN);
586 }
e1a5382f 587 neigh_node_free_ref(router);
c6c8fea2 588 }
fb778ea1 589 rcu_read_unlock();
c6c8fea2
SE
590 }
591
592 return best_tq;
593}
594
595/* Return true if the vis packet is full. */
747e4221 596static bool vis_packet_full(const struct vis_info *info)
c6c8fea2 597{
747e4221 598 const struct vis_packet *packet;
c6c8fea2
SE
599 packet = (struct vis_packet *)info->skb_packet->data;
600
601 if (MAX_VIS_PACKET_SIZE / sizeof(struct vis_info_entry)
602 < packet->entries + 1)
603 return true;
604 return false;
605}
606
607/* generates a packet of own vis data,
608 * returns 0 on success, -1 if no packet could be generated */
609static int generate_vis_packet(struct bat_priv *bat_priv)
610{
611 struct hashtable_t *hash = bat_priv->orig_hash;
7aadf889 612 struct hlist_node *node;
c6c8fea2 613 struct hlist_head *head;
c6c8fea2 614 struct orig_node *orig_node;
e1a5382f 615 struct neigh_node *router;
958ca598 616 struct vis_info *info = bat_priv->my_vis_info;
c6c8fea2
SE
617 struct vis_packet *packet = (struct vis_packet *)info->skb_packet->data;
618 struct vis_info_entry *entry;
48100bac 619 struct tt_common_entry *tt_common_entry;
c90681b8
AQ
620 int best_tq = -1;
621 uint32_t i;
c6c8fea2
SE
622
623 info->first_seen = jiffies;
624 packet->vis_type = atomic_read(&bat_priv->vis_mode);
625
c6c8fea2 626 memcpy(packet->target_orig, broadcast_addr, ETH_ALEN);
76543d14 627 packet->header.ttl = TTL;
c6c8fea2
SE
628 packet->seqno = htonl(ntohl(packet->seqno) + 1);
629 packet->entries = 0;
704509b8 630 skb_trim(info->skb_packet, sizeof(*packet));
c6c8fea2
SE
631
632 if (packet->vis_type == VIS_TYPE_CLIENT_UPDATE) {
633 best_tq = find_best_vis_server(bat_priv, info);
634
d0072609 635 if (best_tq < 0)
5346c35e 636 return best_tq;
c6c8fea2
SE
637 }
638
639 for (i = 0; i < hash->size; i++) {
640 head = &hash->table[i];
641
fb778ea1 642 rcu_read_lock();
7aadf889 643 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
e1a5382f
LL
644 router = orig_node_get_router(orig_node);
645 if (!router)
c6c8fea2
SE
646 continue;
647
e1a5382f
LL
648 if (!compare_eth(router->addr, orig_node->orig))
649 goto next;
c6c8fea2 650
e1a5382f
LL
651 if (router->if_incoming->if_status != IF_ACTIVE)
652 goto next;
c6c8fea2 653
e1a5382f
LL
654 if (router->tq_avg < 1)
655 goto next;
c6c8fea2
SE
656
657 /* fill one entry into buffer. */
658 entry = (struct vis_info_entry *)
659 skb_put(info->skb_packet, sizeof(*entry));
660 memcpy(entry->src,
e1a5382f 661 router->if_incoming->net_dev->dev_addr,
c6c8fea2
SE
662 ETH_ALEN);
663 memcpy(entry->dest, orig_node->orig, ETH_ALEN);
e1a5382f 664 entry->quality = router->tq_avg;
c6c8fea2
SE
665 packet->entries++;
666
e1a5382f
LL
667next:
668 neigh_node_free_ref(router);
669
d0072609
ML
670 if (vis_packet_full(info))
671 goto unlock;
c6c8fea2 672 }
fb778ea1 673 rcu_read_unlock();
c6c8fea2
SE
674 }
675
2dafb49d 676 hash = bat_priv->tt_local_hash;
c6c8fea2 677
c6c8fea2
SE
678 for (i = 0; i < hash->size; i++) {
679 head = &hash->table[i];
680
7683fdc1 681 rcu_read_lock();
48100bac 682 hlist_for_each_entry_rcu(tt_common_entry, node, head,
7683fdc1 683 hash_entry) {
c6c8fea2
SE
684 entry = (struct vis_info_entry *)
685 skb_put(info->skb_packet,
686 sizeof(*entry));
687 memset(entry->src, 0, ETH_ALEN);
48100bac 688 memcpy(entry->dest, tt_common_entry->addr, ETH_ALEN);
2dafb49d 689 entry->quality = 0; /* 0 means TT */
c6c8fea2
SE
690 packet->entries++;
691
7683fdc1
AQ
692 if (vis_packet_full(info))
693 goto unlock;
c6c8fea2 694 }
7683fdc1 695 rcu_read_unlock();
c6c8fea2
SE
696 }
697
c6c8fea2 698 return 0;
d0072609
ML
699
700unlock:
701 rcu_read_unlock();
702 return 0;
c6c8fea2
SE
703}
704
705/* free old vis packets. Must be called with this vis_hash_lock
706 * held */
707static void purge_vis_packets(struct bat_priv *bat_priv)
708{
c90681b8 709 uint32_t i;
c6c8fea2 710 struct hashtable_t *hash = bat_priv->vis_hash;
7aadf889 711 struct hlist_node *node, *node_tmp;
c6c8fea2 712 struct hlist_head *head;
c6c8fea2
SE
713 struct vis_info *info;
714
715 for (i = 0; i < hash->size; i++) {
716 head = &hash->table[i];
717
7aadf889
ML
718 hlist_for_each_entry_safe(info, node, node_tmp,
719 head, hash_entry) {
c6c8fea2
SE
720 /* never purge own data. */
721 if (info == bat_priv->my_vis_info)
722 continue;
723
032b7969 724 if (has_timed_out(info->first_seen, VIS_TIMEOUT)) {
7aadf889 725 hlist_del(node);
c6c8fea2
SE
726 send_list_del(info);
727 kref_put(&info->refcount, free_info);
728 }
729 }
730 }
731}
732
733static void broadcast_vis_packet(struct bat_priv *bat_priv,
734 struct vis_info *info)
735{
e1a5382f 736 struct neigh_node *router;
c6c8fea2 737 struct hashtable_t *hash = bat_priv->orig_hash;
7aadf889 738 struct hlist_node *node;
c6c8fea2 739 struct hlist_head *head;
c6c8fea2
SE
740 struct orig_node *orig_node;
741 struct vis_packet *packet;
742 struct sk_buff *skb;
e6c10f43 743 struct hard_iface *hard_iface;
c6c8fea2 744 uint8_t dstaddr[ETH_ALEN];
c90681b8 745 uint32_t i;
c6c8fea2
SE
746
747
c6c8fea2
SE
748 packet = (struct vis_packet *)info->skb_packet->data;
749
750 /* send to all routers in range. */
751 for (i = 0; i < hash->size; i++) {
752 head = &hash->table[i];
753
fb778ea1 754 rcu_read_lock();
7aadf889 755 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
c6c8fea2 756 /* if it's a vis server and reachable, send it. */
c6c8fea2
SE
757 if (!(orig_node->flags & VIS_SERVER))
758 continue;
e1a5382f
LL
759
760 router = orig_node_get_router(orig_node);
761 if (!router)
762 continue;
763
c6c8fea2 764 /* don't send it if we already received the packet from
e1a5382f 765 * this node. */
c6c8fea2 766 if (recv_list_is_in(bat_priv, &info->recv_list,
e1a5382f
LL
767 orig_node->orig)) {
768 neigh_node_free_ref(router);
c6c8fea2 769 continue;
e1a5382f 770 }
c6c8fea2
SE
771
772 memcpy(packet->target_orig, orig_node->orig, ETH_ALEN);
e1a5382f
LL
773 hard_iface = router->if_incoming;
774 memcpy(dstaddr, router->addr, ETH_ALEN);
775
776 neigh_node_free_ref(router);
c6c8fea2
SE
777
778 skb = skb_clone(info->skb_packet, GFP_ATOMIC);
779 if (skb)
e6c10f43 780 send_skb_packet(skb, hard_iface, dstaddr);
c6c8fea2 781
c6c8fea2 782 }
fb778ea1 783 rcu_read_unlock();
c6c8fea2 784 }
c6c8fea2
SE
785}
786
787static void unicast_vis_packet(struct bat_priv *bat_priv,
788 struct vis_info *info)
789{
790 struct orig_node *orig_node;
e1a5382f 791 struct neigh_node *router = NULL;
c6c8fea2
SE
792 struct sk_buff *skb;
793 struct vis_packet *packet;
c6c8fea2 794
c6c8fea2 795 packet = (struct vis_packet *)info->skb_packet->data;
c6c8fea2 796
7aadf889 797 orig_node = orig_hash_find(bat_priv, packet->target_orig);
44524fcd 798 if (!orig_node)
e1a5382f 799 goto out;
44524fcd 800
e1a5382f
LL
801 router = orig_node_get_router(orig_node);
802 if (!router)
803 goto out;
c6c8fea2
SE
804
805 skb = skb_clone(info->skb_packet, GFP_ATOMIC);
806 if (skb)
e1a5382f 807 send_skb_packet(skb, router->if_incoming, router->addr);
c6c8fea2
SE
808
809out:
e1a5382f
LL
810 if (router)
811 neigh_node_free_ref(router);
44524fcd 812 if (orig_node)
7b36e8ee 813 orig_node_free_ref(orig_node);
c6c8fea2
SE
814}
815
816/* only send one vis packet. called from send_vis_packets() */
817static void send_vis_packet(struct bat_priv *bat_priv, struct vis_info *info)
818{
32ae9b22 819 struct hard_iface *primary_if;
c6c8fea2
SE
820 struct vis_packet *packet;
821
32ae9b22
ML
822 primary_if = primary_if_get_selected(bat_priv);
823 if (!primary_if)
824 goto out;
825
c6c8fea2 826 packet = (struct vis_packet *)info->skb_packet->data;
76543d14 827 if (packet->header.ttl < 2) {
c6c8fea2 828 pr_debug("Error - can't send vis packet: ttl exceeded\n");
32ae9b22 829 goto out;
c6c8fea2
SE
830 }
831
32ae9b22 832 memcpy(packet->sender_orig, primary_if->net_dev->dev_addr, ETH_ALEN);
76543d14 833 packet->header.ttl--;
c6c8fea2
SE
834
835 if (is_broadcast_ether_addr(packet->target_orig))
836 broadcast_vis_packet(bat_priv, info);
837 else
838 unicast_vis_packet(bat_priv, info);
76543d14 839 packet->header.ttl++; /* restore TTL */
32ae9b22
ML
840
841out:
842 if (primary_if)
843 hardif_free_ref(primary_if);
c6c8fea2
SE
844}
845
846/* called from timer; send (and maybe generate) vis packet. */
847static void send_vis_packets(struct work_struct *work)
848{
849 struct delayed_work *delayed_work =
850 container_of(work, struct delayed_work, work);
851 struct bat_priv *bat_priv =
852 container_of(delayed_work, struct bat_priv, vis_work);
1181e1da 853 struct vis_info *info;
c6c8fea2
SE
854
855 spin_lock_bh(&bat_priv->vis_hash_lock);
856 purge_vis_packets(bat_priv);
857
858 if (generate_vis_packet(bat_priv) == 0) {
859 /* schedule if generation was successful */
860 send_list_add(bat_priv, bat_priv->my_vis_info);
861 }
862
1181e1da
SE
863 while (!list_empty(&bat_priv->vis_send_list)) {
864 info = list_first_entry(&bat_priv->vis_send_list,
865 typeof(*info), send_list);
c6c8fea2
SE
866
867 kref_get(&info->refcount);
868 spin_unlock_bh(&bat_priv->vis_hash_lock);
869
32ae9b22 870 send_vis_packet(bat_priv, info);
c6c8fea2
SE
871
872 spin_lock_bh(&bat_priv->vis_hash_lock);
873 send_list_del(info);
874 kref_put(&info->refcount, free_info);
875 }
876 spin_unlock_bh(&bat_priv->vis_hash_lock);
877 start_vis_timer(bat_priv);
878}
879
880/* init the vis server. this may only be called when if_list is already
881 * initialized (e.g. bat0 is initialized, interfaces have been added) */
882int vis_init(struct bat_priv *bat_priv)
883{
884 struct vis_packet *packet;
885 int hash_added;
886
887 if (bat_priv->vis_hash)
5346c35e 888 return 0;
c6c8fea2
SE
889
890 spin_lock_bh(&bat_priv->vis_hash_lock);
891
1a8eaf07 892 bat_priv->vis_hash = batadv_hash_new(256);
c6c8fea2
SE
893 if (!bat_priv->vis_hash) {
894 pr_err("Can't initialize vis_hash\n");
895 goto err;
896 }
897
898 bat_priv->my_vis_info = kmalloc(MAX_VIS_PACKET_SIZE, GFP_ATOMIC);
320f422f 899 if (!bat_priv->my_vis_info)
c6c8fea2 900 goto err;
c6c8fea2 901
704509b8
SE
902 bat_priv->my_vis_info->skb_packet = dev_alloc_skb(sizeof(*packet) +
903 MAX_VIS_PACKET_SIZE +
0d125074 904 ETH_HLEN);
c6c8fea2
SE
905 if (!bat_priv->my_vis_info->skb_packet)
906 goto free_info;
907
0d125074 908 skb_reserve(bat_priv->my_vis_info->skb_packet, ETH_HLEN);
704509b8
SE
909 packet = (struct vis_packet *)skb_put(bat_priv->my_vis_info->skb_packet,
910 sizeof(*packet));
c6c8fea2
SE
911
912 /* prefill the vis info */
913 bat_priv->my_vis_info->first_seen = jiffies -
914 msecs_to_jiffies(VIS_INTERVAL);
915 INIT_LIST_HEAD(&bat_priv->my_vis_info->recv_list);
916 INIT_LIST_HEAD(&bat_priv->my_vis_info->send_list);
917 kref_init(&bat_priv->my_vis_info->refcount);
918 bat_priv->my_vis_info->bat_priv = bat_priv;
76543d14
SE
919 packet->header.version = COMPAT_VERSION;
920 packet->header.packet_type = BAT_VIS;
921 packet->header.ttl = TTL;
c6c8fea2
SE
922 packet->seqno = 0;
923 packet->entries = 0;
924
925 INIT_LIST_HEAD(&bat_priv->vis_send_list);
926
927 hash_added = hash_add(bat_priv->vis_hash, vis_info_cmp, vis_info_choose,
7aadf889
ML
928 bat_priv->my_vis_info,
929 &bat_priv->my_vis_info->hash_entry);
1a1f37d9 930 if (hash_added != 0) {
c6c8fea2
SE
931 pr_err("Can't add own vis packet into hash\n");
932 /* not in hash, need to remove it manually. */
933 kref_put(&bat_priv->my_vis_info->refcount, free_info);
934 goto err;
935 }
936
937 spin_unlock_bh(&bat_priv->vis_hash_lock);
938 start_vis_timer(bat_priv);
5346c35e 939 return 0;
c6c8fea2
SE
940
941free_info:
942 kfree(bat_priv->my_vis_info);
943 bat_priv->my_vis_info = NULL;
944err:
945 spin_unlock_bh(&bat_priv->vis_hash_lock);
946 vis_quit(bat_priv);
5346c35e 947 return -ENOMEM;
c6c8fea2
SE
948}
949
950/* Decrease the reference count on a hash item info */
7aadf889 951static void free_info_ref(struct hlist_node *node, void *arg)
c6c8fea2 952{
7aadf889 953 struct vis_info *info;
c6c8fea2 954
7aadf889 955 info = container_of(node, struct vis_info, hash_entry);
c6c8fea2
SE
956 send_list_del(info);
957 kref_put(&info->refcount, free_info);
958}
959
960/* shutdown vis-server */
961void vis_quit(struct bat_priv *bat_priv)
962{
963 if (!bat_priv->vis_hash)
964 return;
965
966 cancel_delayed_work_sync(&bat_priv->vis_work);
967
968 spin_lock_bh(&bat_priv->vis_hash_lock);
969 /* properly remove, kill timers ... */
970 hash_delete(bat_priv->vis_hash, free_info_ref, NULL);
971 bat_priv->vis_hash = NULL;
972 bat_priv->my_vis_info = NULL;
973 spin_unlock_bh(&bat_priv->vis_hash_lock);
974}
975
976/* schedule packets for (re)transmission */
977static void start_vis_timer(struct bat_priv *bat_priv)
978{
979 INIT_DELAYED_WORK(&bat_priv->vis_work, send_vis_packets);
980 queue_delayed_work(bat_event_workqueue, &bat_priv->vis_work,
981 msecs_to_jiffies(VIS_INTERVAL));
982}