blob: 24040c300636999bb87717e7305b58aa3230198a [file] [log] [blame]
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001/*
Sven Eckelmann567db7b2012-01-01 00:41:38 +01002 * Copyright (C) 2008-2012 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00003 *
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
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000033static 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);
Sven Eckelmanndda9fc62011-01-28 18:34:06 +010051 kfree(info);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000052}
53
54/* Compare two vis packets, used by the hashing algorithm */
Sven Eckelmann747e4222011-05-14 23:14:50 +020055static int vis_info_cmp(const struct hlist_node *node, const void *data2)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000056{
Sven Eckelmann747e4222011-05-14 23:14:50 +020057 const struct vis_info *d1, *d2;
58 const struct vis_packet *p1, *p2;
Marek Lindner7aadf882011-02-18 12:28:09 +000059
60 d1 = container_of(node, struct vis_info, hash_entry);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000061 d2 = data2;
62 p1 = (struct vis_packet *)d1->skb_packet->data;
63 p2 = (struct vis_packet *)d2->skb_packet->data;
Marek Lindner39901e72011-02-18 12:28:08 +000064 return compare_eth(p1->vis_orig, p2->vis_orig);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000065}
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 */
Antonio Quartullic90681b2011-10-05 17:05:25 +020069static uint32_t vis_info_choose(const void *data, uint32_t size)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000070{
Sven Eckelmann747e4222011-05-14 23:14:50 +020071 const struct vis_info *vis_info = data;
72 const struct vis_packet *packet;
73 const unsigned char *key;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000074 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
Marek Lindner7aadf882011-02-18 12:28:09 +000092static struct vis_info *vis_hash_find(struct bat_priv *bat_priv,
Sven Eckelmann747e4222011-05-14 23:14:50 +020093 const void *data)
Marek Lindner7aadf882011-02-18 12:28:09 +000094{
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;
Antonio Quartullic90681b2011-10-05 17:05:25 +020099 uint32_t index;
Marek Lindner7aadf882011-02-18 12:28:09 +0000100
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
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000120/* 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) {
Sven Eckelmann747e4222011-05-14 23:14:50 +0200130 if (compare_eth(entry->addr, interface))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000131 return;
132 }
133
Antonio Quartulli015758d2011-07-09 17:52:13 +0200134 /* it's a new address, add it to the list */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000135 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
Sven Eckelmann747e4222011-05-14 23:14:50 +0200143static ssize_t vis_data_read_prim_sec(char *buff,
144 const struct hlist_head *if_list)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000145{
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 */
Sven Eckelmann747e4222011-05-14 23:14:50 +0200177static ssize_t vis_data_read_entry(char *buff,
178 const struct vis_info_entry *entry,
179 const uint8_t *src, bool primary)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000180{
181 /* maximal length: max(4+17+2, 3+17+1+3+2) == 26 */
182 if (primary && entry->quality == 0)
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200183 return sprintf(buff, "TT %pM, ", entry->dest);
Marek Lindner39901e72011-02-18 12:28:08 +0000184 else if (compare_eth(entry->src, src))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000185 return sprintf(buff, "TQ %pM %d, ", entry->dest,
186 entry->quality);
187
188 return 0;
189}
190
Sven Eckelmannd0f714f2012-05-12 02:09:41 +0200191int batadv_vis_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000192{
Marek Lindner32ae9b22011-04-20 15:40:58 +0200193 struct hard_iface *primary_if;
Marek Lindner7aadf882011-02-18 12:28:09 +0000194 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000195 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000196 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;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200205 uint32_t i;
206 int j, ret = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000207 int vis_server = atomic_read(&bat_priv->vis_mode);
208 size_t buff_pos, buf_size;
209 char *buff;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000210
Marek Lindner32ae9b22011-04-20 15:40:58 +0200211 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;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000217
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
Marek Lindner7aadf882011-02-18 12:28:09 +0000224 rcu_read_lock();
225 hlist_for_each_entry_rcu(info, node, head, hash_entry) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000226 packet = (struct vis_packet *)info->skb_packet->data;
227 entries = (struct vis_info_entry *)
Sven Eckelmann704509b2011-05-14 23:14:54 +0200228 ((char *)packet + sizeof(*packet));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000229
Matthias Schifferbeeb96a2012-05-05 17:51:53 +0200230 vis_data_insert_interface(packet->vis_orig,
231 &vis_if_list, true);
232
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000233 for (j = 0; j < packet->entries; j++) {
234 if (entries[j].quality == 0)
235 continue;
Matthias Schifferbeeb96a2012-05-05 17:51:53 +0200236 if (compare_eth(entries[j].src,
237 packet->vis_orig))
238 continue;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000239 vis_data_insert_interface(entries[j].src,
240 &vis_if_list,
Matthias Schifferbeeb96a2012-05-05 17:51:53 +0200241 false);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000242 }
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 */
Marek Lindner39901e72011-02-18 12:28:08 +0000248 if (compare_eth(entry->addr, packet->vis_orig))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000249 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 }
Marek Lindner7aadf882011-02-18 12:28:09 +0000261 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000262 }
263
264 buff = kmalloc(buf_size, GFP_ATOMIC);
265 if (!buff) {
266 spin_unlock_bh(&bat_priv->vis_hash_lock);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200267 ret = -ENOMEM;
268 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000269 }
270 buff[0] = '\0';
271 buff_pos = 0;
272
273 for (i = 0; i < hash->size; i++) {
274 head = &hash->table[i];
275
Marek Lindner7aadf882011-02-18 12:28:09 +0000276 rcu_read_lock();
277 hlist_for_each_entry_rcu(info, node, head, hash_entry) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000278 packet = (struct vis_packet *)info->skb_packet->data;
279 entries = (struct vis_info_entry *)
Sven Eckelmann704509b2011-05-14 23:14:54 +0200280 ((char *)packet + sizeof(*packet));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000281
Matthias Schifferbeeb96a2012-05-05 17:51:53 +0200282 vis_data_insert_interface(packet->vis_orig,
283 &vis_if_list, true);
284
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000285 for (j = 0; j < packet->entries; j++) {
286 if (entries[j].quality == 0)
287 continue;
Matthias Schifferbeeb96a2012-05-05 17:51:53 +0200288 if (compare_eth(entries[j].src,
289 packet->vis_orig))
290 continue;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000291 vis_data_insert_interface(entries[j].src,
292 &vis_if_list,
Matthias Schifferbeeb96a2012-05-05 17:51:53 +0200293 false);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000294 }
295
296 hlist_for_each_entry(entry, pos, &vis_if_list, list) {
297 buff_pos += sprintf(buff + buff_pos, "%pM,",
298 entry->addr);
299
Linus Lüssingdd58ddc2011-01-25 21:56:16 +0000300 for (j = 0; j < packet->entries; j++)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000301 buff_pos += vis_data_read_entry(
302 buff + buff_pos,
Linus Lüssingdd58ddc2011-01-25 21:56:16 +0000303 &entries[j],
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000304 entry->addr,
305 entry->primary);
306
307 /* add primary/secondary records */
Marek Lindner39901e72011-02-18 12:28:08 +0000308 if (compare_eth(entry->addr, packet->vis_orig))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000309 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 }
Marek Lindner7aadf882011-02-18 12:28:09 +0000322 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000323 }
324
325 spin_unlock_bh(&bat_priv->vis_hash_lock);
326
327 seq_printf(seq, "%s", buff);
328 kfree(buff);
329
Marek Lindner32ae9b22011-04-20 15:40:58 +0200330out:
331 if (primary_if)
332 hardif_free_ref(primary_if);
333 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000334}
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,
Sven Eckelmann747e4222011-05-14 23:14:50 +0200358 struct list_head *recv_list, const char *mac)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000359{
360 struct recvlist_node *entry;
361
Sven Eckelmann704509b2011-05-14 23:14:54 +0200362 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000363 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,
Sven Eckelmann747e4222011-05-14 23:14:50 +0200374 const struct list_head *recv_list, const char *mac)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000375{
Sven Eckelmann747e4222011-05-14 23:14:50 +0200376 const struct recvlist_node *entry;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000377
378 spin_lock_bh(&bat_priv->vis_list_lock);
379 list_for_each_entry(entry, recv_list, list) {
Marek Lindner39901e72011-02-18 12:28:08 +0000380 if (compare_eth(entry->mac, mac)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000381 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 */
Sven Eckelmann704509b2011-05-14 23:14:54 +0200409 search_elem.skb_packet = dev_alloc_skb(sizeof(*search_packet));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000410 if (!search_elem.skb_packet)
411 return NULL;
412 search_packet = (struct vis_packet *)skb_put(search_elem.skb_packet,
Sven Eckelmann704509b2011-05-14 23:14:54 +0200413 sizeof(*search_packet));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000414
415 memcpy(search_packet->vis_orig, vis_packet->vis_orig, ETH_ALEN);
Marek Lindner7aadf882011-02-18 12:28:09 +0000416 old_info = vis_hash_find(bat_priv, &search_elem);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000417 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
Sven Eckelmann704509b2011-05-14 23:14:54 +0200439 info = kmalloc(sizeof(*info), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000440 if (!info)
441 return NULL;
442
Sven Eckelmann704509b2011-05-14 23:14:54 +0200443 info->skb_packet = dev_alloc_skb(sizeof(*packet) + vis_info_len +
Antonio Quartulli0d125072012-02-18 11:27:34 +0100444 ETH_HLEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000445 if (!info->skb_packet) {
446 kfree(info);
447 return NULL;
448 }
Antonio Quartulli0d125072012-02-18 11:27:34 +0100449 skb_reserve(info->skb_packet, ETH_HLEN);
Sven Eckelmann704509b2011-05-14 23:14:54 +0200450 packet = (struct vis_packet *)skb_put(info->skb_packet, sizeof(*packet)
451 + vis_info_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000452
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;
Sven Eckelmann704509b2011-05-14 23:14:54 +0200458 memcpy(packet, vis_packet, sizeof(*packet) + vis_info_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000459
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,
Marek Lindner7aadf882011-02-18 12:28:09 +0000475 info, &info->hash_entry);
Antonio Quartulli1a1f37d2011-07-10 00:36:36 +0200476 if (hash_added != 0) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000477 /* did not work (for some reason) */
Sven Eckelmann2674c152011-01-28 18:34:05 +0100478 kref_put(&info->refcount, free_info);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000479 info = NULL;
480 }
481
482 return info;
483}
484
485/* handle the server sync packet, forward if needed. */
Sven Eckelmannd0f714f2012-05-12 02:09:41 +0200486void batadv_receive_server_sync_packet(struct bat_priv *bat_priv,
487 struct vis_packet *vis_packet,
488 int vis_info_len)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000489{
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. */
Sven Eckelmannd0f714f2012-05-12 02:09:41 +0200511void batadv_receive_client_update_packet(struct bat_priv *bat_priv,
512 struct vis_packet *vis_packet,
513 int vis_info_len)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000514{
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;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000562 struct neigh_node *router;
Marek Lindner7aadf882011-02-18 12:28:09 +0000563 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000564 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000565 struct orig_node *orig_node;
566 struct vis_packet *packet;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200567 int best_tq = -1;
568 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000569
570 packet = (struct vis_packet *)info->skb_packet->data;
571
572 for (i = 0; i < hash->size; i++) {
573 head = &hash->table[i];
574
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000575 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000576 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200577 router = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000578 if (!router)
579 continue;
580
581 if ((orig_node->flags & VIS_SERVER) &&
582 (router->tq_avg > best_tq)) {
583 best_tq = router->tq_avg;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000584 memcpy(packet->target_orig, orig_node->orig,
585 ETH_ALEN);
586 }
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200587 batadv_neigh_node_free_ref(router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000588 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000589 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000590 }
591
592 return best_tq;
593}
594
595/* Return true if the vis packet is full. */
Sven Eckelmann747e4222011-05-14 23:14:50 +0200596static bool vis_packet_full(const struct vis_info *info)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000597{
Sven Eckelmann747e4222011-05-14 23:14:50 +0200598 const struct vis_packet *packet;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000599 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;
Marek Lindner7aadf882011-02-18 12:28:09 +0000612 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000613 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000614 struct orig_node *orig_node;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000615 struct neigh_node *router;
Sven Eckelmann958ca592011-05-14 23:14:53 +0200616 struct vis_info *info = bat_priv->my_vis_info;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000617 struct vis_packet *packet = (struct vis_packet *)info->skb_packet->data;
618 struct vis_info_entry *entry;
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100619 struct tt_common_entry *tt_common_entry;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200620 int best_tq = -1;
621 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000622
623 info->first_seen = jiffies;
624 packet->vis_type = atomic_read(&bat_priv->vis_mode);
625
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000626 memcpy(packet->target_orig, broadcast_addr, ETH_ALEN);
Sven Eckelmann76543d12011-11-20 15:47:38 +0100627 packet->header.ttl = TTL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000628 packet->seqno = htonl(ntohl(packet->seqno) + 1);
629 packet->entries = 0;
Sven Eckelmann704509b2011-05-14 23:14:54 +0200630 skb_trim(info->skb_packet, sizeof(*packet));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000631
632 if (packet->vis_type == VIS_TYPE_CLIENT_UPDATE) {
633 best_tq = find_best_vis_server(bat_priv, info);
634
Marek Lindnerd0072602011-01-19 20:01:44 +0000635 if (best_tq < 0)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200636 return best_tq;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000637 }
638
639 for (i = 0; i < hash->size; i++) {
640 head = &hash->table[i];
641
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000642 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000643 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200644 router = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000645 if (!router)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000646 continue;
647
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000648 if (!compare_eth(router->addr, orig_node->orig))
649 goto next;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000650
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000651 if (router->if_incoming->if_status != IF_ACTIVE)
652 goto next;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000653
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000654 if (router->tq_avg < 1)
655 goto next;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000656
657 /* fill one entry into buffer. */
658 entry = (struct vis_info_entry *)
659 skb_put(info->skb_packet, sizeof(*entry));
660 memcpy(entry->src,
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000661 router->if_incoming->net_dev->dev_addr,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000662 ETH_ALEN);
663 memcpy(entry->dest, orig_node->orig, ETH_ALEN);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000664 entry->quality = router->tq_avg;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000665 packet->entries++;
666
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000667next:
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200668 batadv_neigh_node_free_ref(router);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000669
Marek Lindnerd0072602011-01-19 20:01:44 +0000670 if (vis_packet_full(info))
671 goto unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000672 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000673 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000674 }
675
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200676 hash = bat_priv->tt_local_hash;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000677
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000678 for (i = 0; i < hash->size; i++) {
679 head = &hash->table[i];
680
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200681 rcu_read_lock();
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100682 hlist_for_each_entry_rcu(tt_common_entry, node, head,
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200683 hash_entry) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000684 entry = (struct vis_info_entry *)
685 skb_put(info->skb_packet,
686 sizeof(*entry));
687 memset(entry->src, 0, ETH_ALEN);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100688 memcpy(entry->dest, tt_common_entry->addr, ETH_ALEN);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200689 entry->quality = 0; /* 0 means TT */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000690 packet->entries++;
691
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200692 if (vis_packet_full(info))
693 goto unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000694 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200695 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000696 }
697
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000698 return 0;
Marek Lindnerd0072602011-01-19 20:01:44 +0000699
700unlock:
701 rcu_read_unlock();
702 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000703}
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{
Antonio Quartullic90681b2011-10-05 17:05:25 +0200709 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000710 struct hashtable_t *hash = bat_priv->vis_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000711 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000712 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000713 struct vis_info *info;
714
715 for (i = 0; i < hash->size; i++) {
716 head = &hash->table[i];
717
Marek Lindner7aadf882011-02-18 12:28:09 +0000718 hlist_for_each_entry_safe(info, node, node_tmp,
719 head, hash_entry) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000720 /* never purge own data. */
721 if (info == bat_priv->my_vis_info)
722 continue;
723
Marek Lindner032b7962011-12-20 19:30:40 +0800724 if (has_timed_out(info->first_seen, VIS_TIMEOUT)) {
Marek Lindner7aadf882011-02-18 12:28:09 +0000725 hlist_del(node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000726 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{
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000736 struct neigh_node *router;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000737 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000738 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000739 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000740 struct orig_node *orig_node;
741 struct vis_packet *packet;
742 struct sk_buff *skb;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000743 struct hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000744 uint8_t dstaddr[ETH_ALEN];
Antonio Quartullic90681b2011-10-05 17:05:25 +0200745 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000746
747
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000748 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
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000754 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000755 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000756 /* if it's a vis server and reachable, send it. */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000757 if (!(orig_node->flags & VIS_SERVER))
758 continue;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000759
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200760 router = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000761 if (!router)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000762 continue;
763
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000764 /* don't send it if we already received the packet from
765 * this node. */
766 if (recv_list_is_in(bat_priv, &info->recv_list,
767 orig_node->orig)) {
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200768 batadv_neigh_node_free_ref(router);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000769 continue;
770 }
771
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000772 memcpy(packet->target_orig, orig_node->orig, ETH_ALEN);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000773 hard_iface = router->if_incoming;
774 memcpy(dstaddr, router->addr, ETH_ALEN);
775
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200776 batadv_neigh_node_free_ref(router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000777
778 skb = skb_clone(info->skb_packet, GFP_ATOMIC);
779 if (skb)
Sven Eckelmann9455e342012-05-12 02:09:37 +0200780 batadv_send_skb_packet(skb, hard_iface,
781 dstaddr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000782
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000783 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000784 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000785 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000786}
787
788static void unicast_vis_packet(struct bat_priv *bat_priv,
789 struct vis_info *info)
790{
791 struct orig_node *orig_node;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000792 struct neigh_node *router = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000793 struct sk_buff *skb;
794 struct vis_packet *packet;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000795
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000796 packet = (struct vis_packet *)info->skb_packet->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000797
Marek Lindner7aadf882011-02-18 12:28:09 +0000798 orig_node = orig_hash_find(bat_priv, packet->target_orig);
Marek Lindner44524fc2011-02-10 14:33:53 +0000799 if (!orig_node)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000800 goto out;
Marek Lindner44524fc2011-02-10 14:33:53 +0000801
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200802 router = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000803 if (!router)
804 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000805
806 skb = skb_clone(info->skb_packet, GFP_ATOMIC);
807 if (skb)
Sven Eckelmann9455e342012-05-12 02:09:37 +0200808 batadv_send_skb_packet(skb, router->if_incoming, router->addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000809
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000810out:
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000811 if (router)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200812 batadv_neigh_node_free_ref(router);
Marek Lindner44524fc2011-02-10 14:33:53 +0000813 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200814 batadv_orig_node_free_ref(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000815}
816
817/* only send one vis packet. called from send_vis_packets() */
818static void send_vis_packet(struct bat_priv *bat_priv, struct vis_info *info)
819{
Marek Lindner32ae9b22011-04-20 15:40:58 +0200820 struct hard_iface *primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000821 struct vis_packet *packet;
822
Marek Lindner32ae9b22011-04-20 15:40:58 +0200823 primary_if = primary_if_get_selected(bat_priv);
824 if (!primary_if)
825 goto out;
826
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000827 packet = (struct vis_packet *)info->skb_packet->data;
Sven Eckelmann76543d12011-11-20 15:47:38 +0100828 if (packet->header.ttl < 2) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000829 pr_debug("Error - can't send vis packet: ttl exceeded\n");
Marek Lindner32ae9b22011-04-20 15:40:58 +0200830 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000831 }
832
Marek Lindner32ae9b22011-04-20 15:40:58 +0200833 memcpy(packet->sender_orig, primary_if->net_dev->dev_addr, ETH_ALEN);
Sven Eckelmann76543d12011-11-20 15:47:38 +0100834 packet->header.ttl--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000835
836 if (is_broadcast_ether_addr(packet->target_orig))
837 broadcast_vis_packet(bat_priv, info);
838 else
839 unicast_vis_packet(bat_priv, info);
Sven Eckelmann76543d12011-11-20 15:47:38 +0100840 packet->header.ttl++; /* restore TTL */
Marek Lindner32ae9b22011-04-20 15:40:58 +0200841
842out:
843 if (primary_if)
844 hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000845}
846
847/* called from timer; send (and maybe generate) vis packet. */
848static void send_vis_packets(struct work_struct *work)
849{
850 struct delayed_work *delayed_work =
851 container_of(work, struct delayed_work, work);
852 struct bat_priv *bat_priv =
853 container_of(delayed_work, struct bat_priv, vis_work);
Sven Eckelmann1181e1d2011-01-28 18:34:07 +0100854 struct vis_info *info;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000855
856 spin_lock_bh(&bat_priv->vis_hash_lock);
857 purge_vis_packets(bat_priv);
858
859 if (generate_vis_packet(bat_priv) == 0) {
860 /* schedule if generation was successful */
861 send_list_add(bat_priv, bat_priv->my_vis_info);
862 }
863
Sven Eckelmann1181e1d2011-01-28 18:34:07 +0100864 while (!list_empty(&bat_priv->vis_send_list)) {
865 info = list_first_entry(&bat_priv->vis_send_list,
866 typeof(*info), send_list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000867
868 kref_get(&info->refcount);
869 spin_unlock_bh(&bat_priv->vis_hash_lock);
870
Marek Lindner32ae9b22011-04-20 15:40:58 +0200871 send_vis_packet(bat_priv, info);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000872
873 spin_lock_bh(&bat_priv->vis_hash_lock);
874 send_list_del(info);
875 kref_put(&info->refcount, free_info);
876 }
877 spin_unlock_bh(&bat_priv->vis_hash_lock);
878 start_vis_timer(bat_priv);
879}
880
881/* init the vis server. this may only be called when if_list is already
882 * initialized (e.g. bat0 is initialized, interfaces have been added) */
Sven Eckelmannd0f714f2012-05-12 02:09:41 +0200883int batadv_vis_init(struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000884{
885 struct vis_packet *packet;
886 int hash_added;
887
888 if (bat_priv->vis_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200889 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000890
891 spin_lock_bh(&bat_priv->vis_hash_lock);
892
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +0200893 bat_priv->vis_hash = batadv_hash_new(256);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000894 if (!bat_priv->vis_hash) {
895 pr_err("Can't initialize vis_hash\n");
896 goto err;
897 }
898
899 bat_priv->my_vis_info = kmalloc(MAX_VIS_PACKET_SIZE, GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700900 if (!bat_priv->my_vis_info)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000901 goto err;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000902
Sven Eckelmann704509b2011-05-14 23:14:54 +0200903 bat_priv->my_vis_info->skb_packet = dev_alloc_skb(sizeof(*packet) +
904 MAX_VIS_PACKET_SIZE +
Antonio Quartulli0d125072012-02-18 11:27:34 +0100905 ETH_HLEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000906 if (!bat_priv->my_vis_info->skb_packet)
907 goto free_info;
908
Antonio Quartulli0d125072012-02-18 11:27:34 +0100909 skb_reserve(bat_priv->my_vis_info->skb_packet, ETH_HLEN);
Sven Eckelmann704509b2011-05-14 23:14:54 +0200910 packet = (struct vis_packet *)skb_put(bat_priv->my_vis_info->skb_packet,
911 sizeof(*packet));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000912
913 /* prefill the vis info */
914 bat_priv->my_vis_info->first_seen = jiffies -
915 msecs_to_jiffies(VIS_INTERVAL);
916 INIT_LIST_HEAD(&bat_priv->my_vis_info->recv_list);
917 INIT_LIST_HEAD(&bat_priv->my_vis_info->send_list);
918 kref_init(&bat_priv->my_vis_info->refcount);
919 bat_priv->my_vis_info->bat_priv = bat_priv;
Sven Eckelmann76543d12011-11-20 15:47:38 +0100920 packet->header.version = COMPAT_VERSION;
921 packet->header.packet_type = BAT_VIS;
922 packet->header.ttl = TTL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000923 packet->seqno = 0;
924 packet->entries = 0;
925
926 INIT_LIST_HEAD(&bat_priv->vis_send_list);
927
928 hash_added = hash_add(bat_priv->vis_hash, vis_info_cmp, vis_info_choose,
Marek Lindner7aadf882011-02-18 12:28:09 +0000929 bat_priv->my_vis_info,
930 &bat_priv->my_vis_info->hash_entry);
Antonio Quartulli1a1f37d2011-07-10 00:36:36 +0200931 if (hash_added != 0) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000932 pr_err("Can't add own vis packet into hash\n");
933 /* not in hash, need to remove it manually. */
934 kref_put(&bat_priv->my_vis_info->refcount, free_info);
935 goto err;
936 }
937
938 spin_unlock_bh(&bat_priv->vis_hash_lock);
939 start_vis_timer(bat_priv);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200940 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000941
942free_info:
943 kfree(bat_priv->my_vis_info);
944 bat_priv->my_vis_info = NULL;
945err:
946 spin_unlock_bh(&bat_priv->vis_hash_lock);
Sven Eckelmannd0f714f2012-05-12 02:09:41 +0200947 batadv_vis_quit(bat_priv);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200948 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000949}
950
951/* Decrease the reference count on a hash item info */
Marek Lindner7aadf882011-02-18 12:28:09 +0000952static void free_info_ref(struct hlist_node *node, void *arg)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000953{
Marek Lindner7aadf882011-02-18 12:28:09 +0000954 struct vis_info *info;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000955
Marek Lindner7aadf882011-02-18 12:28:09 +0000956 info = container_of(node, struct vis_info, hash_entry);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000957 send_list_del(info);
958 kref_put(&info->refcount, free_info);
959}
960
961/* shutdown vis-server */
Sven Eckelmannd0f714f2012-05-12 02:09:41 +0200962void batadv_vis_quit(struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000963{
964 if (!bat_priv->vis_hash)
965 return;
966
967 cancel_delayed_work_sync(&bat_priv->vis_work);
968
969 spin_lock_bh(&bat_priv->vis_hash_lock);
970 /* properly remove, kill timers ... */
971 hash_delete(bat_priv->vis_hash, free_info_ref, NULL);
972 bat_priv->vis_hash = NULL;
973 bat_priv->my_vis_info = NULL;
974 spin_unlock_bh(&bat_priv->vis_hash_lock);
975}
976
977/* schedule packets for (re)transmission */
978static void start_vis_timer(struct bat_priv *bat_priv)
979{
980 INIT_DELAYED_WORK(&bat_priv->vis_work, send_vis_packets);
981 queue_delayed_work(bat_event_workqueue, &bat_priv->vis_work,
982 msecs_to_jiffies(VIS_INTERVAL));
983}