blob: 2a2ea06814695f4356f38de38c83cd3465184630 [file] [log] [blame]
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001/* Copyright (C) 2008-2012 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002 *
3 * Simon Wunderlich
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018 */
19
20#include "main.h"
21#include "send.h"
22#include "translation-table.h"
23#include "vis.h"
24#include "soft-interface.h"
25#include "hard-interface.h"
26#include "hash.h"
27#include "originator.h"
28
Sven Eckelmann347c80f2012-06-03 22:19:07 +020029#define BATADV_MAX_VIS_PACKET_SIZE 1000
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000030
Sven Eckelmann56303d32012-06-05 22:31:31 +020031static void batadv_start_vis_timer(struct batadv_priv *bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000032
33/* free the info */
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +020034static void batadv_free_info(struct kref *ref)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000035{
Sven Eckelmann56303d32012-06-05 22:31:31 +020036 struct batadv_vis_info *info;
37 struct batadv_priv *bat_priv;
38 struct batadv_recvlist_node *entry, *tmp;
39
40 info = container_of(ref, struct batadv_vis_info, refcount);
41 bat_priv = info->bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000042
43 list_del_init(&info->send_list);
44 spin_lock_bh(&bat_priv->vis_list_lock);
45 list_for_each_entry_safe(entry, tmp, &info->recv_list, list) {
46 list_del(&entry->list);
47 kfree(entry);
48 }
49
50 spin_unlock_bh(&bat_priv->vis_list_lock);
51 kfree_skb(info->skb_packet);
Sven Eckelmanndda9fc62011-01-28 18:34:06 +010052 kfree(info);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000053}
54
55/* Compare two vis packets, used by the hashing algorithm */
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +020056static int batadv_vis_info_cmp(const struct hlist_node *node, const void *data2)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000057{
Sven Eckelmann56303d32012-06-05 22:31:31 +020058 const struct batadv_vis_info *d1, *d2;
Sven Eckelmann96412692012-06-05 22:31:30 +020059 const struct batadv_vis_packet *p1, *p2;
Marek Lindner7aadf882011-02-18 12:28:09 +000060
Sven Eckelmann56303d32012-06-05 22:31:31 +020061 d1 = container_of(node, struct batadv_vis_info, hash_entry);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000062 d2 = data2;
Sven Eckelmann96412692012-06-05 22:31:30 +020063 p1 = (struct batadv_vis_packet *)d1->skb_packet->data;
64 p2 = (struct batadv_vis_packet *)d2->skb_packet->data;
Sven Eckelmann1eda58b2012-05-12 13:48:58 +020065 return batadv_compare_eth(p1->vis_orig, p2->vis_orig);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000066}
67
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020068/* hash function to choose an entry in a hash table of given size
69 * hash algorithm from http://en.wikipedia.org/wiki/Hash_table
70 */
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +020071static uint32_t batadv_vis_info_choose(const void *data, uint32_t size)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000072{
Sven Eckelmann56303d32012-06-05 22:31:31 +020073 const struct batadv_vis_info *vis_info = data;
Sven Eckelmann96412692012-06-05 22:31:30 +020074 const struct batadv_vis_packet *packet;
Sven Eckelmann747e4222011-05-14 23:14:50 +020075 const unsigned char *key;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000076 uint32_t hash = 0;
77 size_t i;
78
Sven Eckelmann96412692012-06-05 22:31:30 +020079 packet = (struct batadv_vis_packet *)vis_info->skb_packet->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000080 key = packet->vis_orig;
81 for (i = 0; i < ETH_ALEN; i++) {
82 hash += key[i];
83 hash += (hash << 10);
84 hash ^= (hash >> 6);
85 }
86
87 hash += (hash << 3);
88 hash ^= (hash >> 11);
89 hash += (hash << 15);
90
91 return hash % size;
92}
93
Sven Eckelmann56303d32012-06-05 22:31:31 +020094static struct batadv_vis_info *
95batadv_vis_hash_find(struct batadv_priv *bat_priv, const void *data)
Marek Lindner7aadf882011-02-18 12:28:09 +000096{
Sven Eckelmann5bf74e92012-06-05 22:31:28 +020097 struct batadv_hashtable *hash = bat_priv->vis_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +000098 struct hlist_head *head;
99 struct hlist_node *node;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200100 struct batadv_vis_info *vis_info, *vis_info_tmp = NULL;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200101 uint32_t index;
Marek Lindner7aadf882011-02-18 12:28:09 +0000102
103 if (!hash)
104 return NULL;
105
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200106 index = batadv_vis_info_choose(data, hash->size);
Marek Lindner7aadf882011-02-18 12:28:09 +0000107 head = &hash->table[index];
108
109 rcu_read_lock();
110 hlist_for_each_entry_rcu(vis_info, node, head, hash_entry) {
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200111 if (!batadv_vis_info_cmp(node, data))
Marek Lindner7aadf882011-02-18 12:28:09 +0000112 continue;
113
114 vis_info_tmp = vis_info;
115 break;
116 }
117 rcu_read_unlock();
118
119 return vis_info_tmp;
120}
121
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000122/* insert interface to the list of interfaces of one originator, if it
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200123 * does not already exist in the list
124 */
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200125static void batadv_vis_data_insert_interface(const uint8_t *interface,
126 struct hlist_head *if_list,
127 bool primary)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000128{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200129 struct batadv_if_list_entry *entry;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000130 struct hlist_node *pos;
131
132 hlist_for_each_entry(entry, pos, if_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200133 if (batadv_compare_eth(entry->addr, interface))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000134 return;
135 }
136
Antonio Quartulli015758d2011-07-09 17:52:13 +0200137 /* it's a new address, add it to the list */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000138 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
139 if (!entry)
140 return;
141 memcpy(entry->addr, interface, ETH_ALEN);
142 entry->primary = primary;
143 hlist_add_head(&entry->list, if_list);
144}
145
Sven Eckelmann28afd3c2012-05-16 20:23:23 +0200146static void batadv_vis_data_read_prim_sec(struct seq_file *seq,
147 const struct hlist_head *if_list)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000148{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200149 struct batadv_if_list_entry *entry;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000150 struct hlist_node *pos;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000151
152 hlist_for_each_entry(entry, pos, if_list, list) {
153 if (entry->primary)
Sven Eckelmann28afd3c2012-05-16 20:23:23 +0200154 seq_printf(seq, "PRIMARY, ");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000155 else
Sven Eckelmann28afd3c2012-05-16 20:23:23 +0200156 seq_printf(seq, "SEC %pM, ", entry->addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000157 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000158}
159
160/* read an entry */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200161static ssize_t
162batadv_vis_data_read_entry(struct seq_file *seq,
163 const struct batadv_vis_info_entry *entry,
164 const uint8_t *src, bool primary)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000165{
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000166 if (primary && entry->quality == 0)
Sven Eckelmann28afd3c2012-05-16 20:23:23 +0200167 return seq_printf(seq, "TT %pM, ", entry->dest);
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200168 else if (batadv_compare_eth(entry->src, src))
Sven Eckelmann28afd3c2012-05-16 20:23:23 +0200169 return seq_printf(seq, "TQ %pM %d, ", entry->dest,
170 entry->quality);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000171
172 return 0;
173}
174
Sven Eckelmann56303d32012-06-05 22:31:31 +0200175static void
176batadv_vis_data_insert_interfaces(struct hlist_head *list,
177 struct batadv_vis_packet *packet,
178 struct batadv_vis_info_entry *entries)
Sven Eckelmann28afd3c2012-05-16 20:23:23 +0200179{
180 int i;
181
182 for (i = 0; i < packet->entries; i++) {
183 if (entries[i].quality == 0)
184 continue;
185
186 if (batadv_compare_eth(entries[i].src, packet->vis_orig))
187 continue;
188
189 batadv_vis_data_insert_interface(entries[i].src, list, false);
190 }
191}
192
193static void batadv_vis_data_read_entries(struct seq_file *seq,
194 struct hlist_head *list,
Sven Eckelmann96412692012-06-05 22:31:30 +0200195 struct batadv_vis_packet *packet,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200196 struct batadv_vis_info_entry *entries)
Sven Eckelmann28afd3c2012-05-16 20:23:23 +0200197{
198 int i;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200199 struct batadv_if_list_entry *entry;
Sven Eckelmann28afd3c2012-05-16 20:23:23 +0200200 struct hlist_node *pos;
201
202 hlist_for_each_entry(entry, pos, list, list) {
203 seq_printf(seq, "%pM,", entry->addr);
204
205 for (i = 0; i < packet->entries; i++)
206 batadv_vis_data_read_entry(seq, &entries[i],
207 entry->addr, entry->primary);
208
209 /* add primary/secondary records */
210 if (batadv_compare_eth(entry->addr, packet->vis_orig))
211 batadv_vis_data_read_prim_sec(seq, list);
212
213 seq_printf(seq, "\n");
214 }
215}
216
217static void batadv_vis_seq_print_text_bucket(struct seq_file *seq,
218 const struct hlist_head *head)
219{
220 struct hlist_node *node;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200221 struct batadv_vis_info *info;
Sven Eckelmann96412692012-06-05 22:31:30 +0200222 struct batadv_vis_packet *packet;
Sven Eckelmann28afd3c2012-05-16 20:23:23 +0200223 uint8_t *entries_pos;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200224 struct batadv_vis_info_entry *entries;
225 struct batadv_if_list_entry *entry;
Sven Eckelmann28afd3c2012-05-16 20:23:23 +0200226 struct hlist_node *pos, *n;
227
228 HLIST_HEAD(vis_if_list);
229
230 hlist_for_each_entry_rcu(info, node, head, hash_entry) {
Sven Eckelmann96412692012-06-05 22:31:30 +0200231 packet = (struct batadv_vis_packet *)info->skb_packet->data;
Sven Eckelmann28afd3c2012-05-16 20:23:23 +0200232 entries_pos = (uint8_t *)packet + sizeof(*packet);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200233 entries = (struct batadv_vis_info_entry *)entries_pos;
Sven Eckelmann28afd3c2012-05-16 20:23:23 +0200234
235 batadv_vis_data_insert_interface(packet->vis_orig, &vis_if_list,
236 true);
237 batadv_vis_data_insert_interfaces(&vis_if_list, packet,
238 entries);
239 batadv_vis_data_read_entries(seq, &vis_if_list, packet,
240 entries);
241
242 hlist_for_each_entry_safe(entry, pos, n, &vis_if_list, list) {
243 hlist_del(&entry->list);
244 kfree(entry);
245 }
246 }
247}
248
Sven Eckelmannd0f714f2012-05-12 02:09:41 +0200249int batadv_vis_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000250{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200251 struct batadv_hard_iface *primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000252 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000253 struct net_device *net_dev = (struct net_device *)seq->private;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200254 struct batadv_priv *bat_priv = netdev_priv(net_dev);
Sven Eckelmann5bf74e92012-06-05 22:31:28 +0200255 struct batadv_hashtable *hash = bat_priv->vis_hash;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200256 uint32_t i;
Sven Eckelmann28afd3c2012-05-16 20:23:23 +0200257 int ret = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000258 int vis_server = atomic_read(&bat_priv->vis_mode);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000259
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200260 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200261 if (!primary_if)
262 goto out;
263
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200264 if (vis_server == BATADV_VIS_TYPE_CLIENT_UPDATE)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200265 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000266
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000267 spin_lock_bh(&bat_priv->vis_hash_lock);
268 for (i = 0; i < hash->size; i++) {
269 head = &hash->table[i];
Sven Eckelmann28afd3c2012-05-16 20:23:23 +0200270 batadv_vis_seq_print_text_bucket(seq, head);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000271 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000272 spin_unlock_bh(&bat_priv->vis_hash_lock);
273
Marek Lindner32ae9b22011-04-20 15:40:58 +0200274out:
275 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200276 batadv_hardif_free_ref(primary_if);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200277 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000278}
279
280/* add the info packet to the send list, if it was not
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200281 * already linked in.
282 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200283static void batadv_send_list_add(struct batadv_priv *bat_priv,
284 struct batadv_vis_info *info)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000285{
286 if (list_empty(&info->send_list)) {
287 kref_get(&info->refcount);
288 list_add_tail(&info->send_list, &bat_priv->vis_send_list);
289 }
290}
291
292/* delete the info packet from the send list, if it was
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200293 * linked in.
294 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200295static void batadv_send_list_del(struct batadv_vis_info *info)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000296{
297 if (!list_empty(&info->send_list)) {
298 list_del_init(&info->send_list);
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200299 kref_put(&info->refcount, batadv_free_info);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000300 }
301}
302
303/* tries to add one entry to the receive list. */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200304static void batadv_recv_list_add(struct batadv_priv *bat_priv,
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200305 struct list_head *recv_list, const char *mac)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000306{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200307 struct batadv_recvlist_node *entry;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000308
Sven Eckelmann704509b2011-05-14 23:14:54 +0200309 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000310 if (!entry)
311 return;
312
313 memcpy(entry->mac, mac, ETH_ALEN);
314 spin_lock_bh(&bat_priv->vis_list_lock);
315 list_add_tail(&entry->list, recv_list);
316 spin_unlock_bh(&bat_priv->vis_list_lock);
317}
318
319/* returns 1 if this mac is in the recv_list */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200320static int batadv_recv_list_is_in(struct batadv_priv *bat_priv,
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200321 const struct list_head *recv_list,
322 const char *mac)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000323{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200324 const struct batadv_recvlist_node *entry;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000325
326 spin_lock_bh(&bat_priv->vis_list_lock);
327 list_for_each_entry(entry, recv_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200328 if (batadv_compare_eth(entry->mac, mac)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000329 spin_unlock_bh(&bat_priv->vis_list_lock);
330 return 1;
331 }
332 }
333 spin_unlock_bh(&bat_priv->vis_list_lock);
334 return 0;
335}
336
337/* try to add the packet to the vis_hash. return NULL if invalid (e.g. too old,
338 * broken.. ). vis hash must be locked outside. is_new is set when the packet
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200339 * is newer than old entries in the hash.
340 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200341static struct batadv_vis_info *
342batadv_add_packet(struct batadv_priv *bat_priv,
343 struct batadv_vis_packet *vis_packet, int vis_info_len,
344 int *is_new, int make_broadcast)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000345{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200346 struct batadv_vis_info *info, *old_info;
Sven Eckelmann96412692012-06-05 22:31:30 +0200347 struct batadv_vis_packet *search_packet, *old_packet;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200348 struct batadv_vis_info search_elem;
Sven Eckelmann96412692012-06-05 22:31:30 +0200349 struct batadv_vis_packet *packet;
350 struct sk_buff *tmp_skb;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000351 int hash_added;
Sven Eckelmann96412692012-06-05 22:31:30 +0200352 size_t len;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200353 size_t max_entries;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000354
355 *is_new = 0;
356 /* sanity check */
357 if (!bat_priv->vis_hash)
358 return NULL;
359
360 /* see if the packet is already in vis_hash */
Sven Eckelmann704509b2011-05-14 23:14:54 +0200361 search_elem.skb_packet = dev_alloc_skb(sizeof(*search_packet));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000362 if (!search_elem.skb_packet)
363 return NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +0200364 len = sizeof(*search_packet);
365 tmp_skb = search_elem.skb_packet;
366 search_packet = (struct batadv_vis_packet *)skb_put(tmp_skb, len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000367
368 memcpy(search_packet->vis_orig, vis_packet->vis_orig, ETH_ALEN);
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200369 old_info = batadv_vis_hash_find(bat_priv, &search_elem);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000370 kfree_skb(search_elem.skb_packet);
371
372 if (old_info) {
Sven Eckelmann96412692012-06-05 22:31:30 +0200373 tmp_skb = old_info->skb_packet;
374 old_packet = (struct batadv_vis_packet *)tmp_skb->data;
Sven Eckelmann3e348192012-05-16 20:23:22 +0200375 if (!batadv_seq_after(ntohl(vis_packet->seqno),
376 ntohl(old_packet->seqno))) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000377 if (old_packet->seqno == vis_packet->seqno) {
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200378 batadv_recv_list_add(bat_priv,
379 &old_info->recv_list,
380 vis_packet->sender_orig);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000381 return old_info;
382 } else {
383 /* newer packet is already in hash. */
384 return NULL;
385 }
386 }
387 /* remove old entry */
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200388 batadv_hash_remove(bat_priv->vis_hash, batadv_vis_info_cmp,
389 batadv_vis_info_choose, old_info);
390 batadv_send_list_del(old_info);
391 kref_put(&old_info->refcount, batadv_free_info);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000392 }
393
Sven Eckelmann704509b2011-05-14 23:14:54 +0200394 info = kmalloc(sizeof(*info), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000395 if (!info)
396 return NULL;
397
Sven Eckelmann96412692012-06-05 22:31:30 +0200398 len = sizeof(*packet) + vis_info_len;
399 info->skb_packet = dev_alloc_skb(len + ETH_HLEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000400 if (!info->skb_packet) {
401 kfree(info);
402 return NULL;
403 }
Antonio Quartulli0d125072012-02-18 11:27:34 +0100404 skb_reserve(info->skb_packet, ETH_HLEN);
Sven Eckelmann96412692012-06-05 22:31:30 +0200405 packet = (struct batadv_vis_packet *)skb_put(info->skb_packet, len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000406
407 kref_init(&info->refcount);
408 INIT_LIST_HEAD(&info->send_list);
409 INIT_LIST_HEAD(&info->recv_list);
410 info->first_seen = jiffies;
411 info->bat_priv = bat_priv;
Sven Eckelmann96412692012-06-05 22:31:30 +0200412 memcpy(packet, vis_packet, len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000413
414 /* initialize and add new packet. */
415 *is_new = 1;
416
417 /* Make it a broadcast packet, if required */
418 if (make_broadcast)
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200419 memcpy(packet->target_orig, batadv_broadcast_addr, ETH_ALEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000420
421 /* repair if entries is longer than packet. */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200422 max_entries = vis_info_len / sizeof(struct batadv_vis_info_entry);
423 if (packet->entries > max_entries)
424 packet->entries = max_entries;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000425
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200426 batadv_recv_list_add(bat_priv, &info->recv_list, packet->sender_orig);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000427
428 /* try to add it */
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200429 hash_added = batadv_hash_add(bat_priv->vis_hash, batadv_vis_info_cmp,
430 batadv_vis_info_choose, info,
431 &info->hash_entry);
Antonio Quartulli1a1f37d2011-07-10 00:36:36 +0200432 if (hash_added != 0) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000433 /* did not work (for some reason) */
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200434 kref_put(&info->refcount, batadv_free_info);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000435 info = NULL;
436 }
437
438 return info;
439}
440
441/* handle the server sync packet, forward if needed. */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200442void batadv_receive_server_sync_packet(struct batadv_priv *bat_priv,
Sven Eckelmann96412692012-06-05 22:31:30 +0200443 struct batadv_vis_packet *vis_packet,
Sven Eckelmannd0f714f2012-05-12 02:09:41 +0200444 int vis_info_len)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000445{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200446 struct batadv_vis_info *info;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000447 int is_new, make_broadcast;
448 int vis_server = atomic_read(&bat_priv->vis_mode);
449
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200450 make_broadcast = (vis_server == BATADV_VIS_TYPE_SERVER_SYNC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000451
452 spin_lock_bh(&bat_priv->vis_hash_lock);
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200453 info = batadv_add_packet(bat_priv, vis_packet, vis_info_len,
454 &is_new, make_broadcast);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000455 if (!info)
456 goto end;
457
458 /* only if we are server ourselves and packet is newer than the one in
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200459 * hash.
460 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200461 if (vis_server == BATADV_VIS_TYPE_SERVER_SYNC && is_new)
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200462 batadv_send_list_add(bat_priv, info);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000463end:
464 spin_unlock_bh(&bat_priv->vis_hash_lock);
465}
466
467/* handle an incoming client update packet and schedule forward if needed. */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200468void batadv_receive_client_update_packet(struct batadv_priv *bat_priv,
Sven Eckelmann96412692012-06-05 22:31:30 +0200469 struct batadv_vis_packet *vis_packet,
Sven Eckelmannd0f714f2012-05-12 02:09:41 +0200470 int vis_info_len)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000471{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200472 struct batadv_vis_info *info;
Sven Eckelmann96412692012-06-05 22:31:30 +0200473 struct batadv_vis_packet *packet;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000474 int is_new;
475 int vis_server = atomic_read(&bat_priv->vis_mode);
476 int are_target = 0;
477
478 /* clients shall not broadcast. */
479 if (is_broadcast_ether_addr(vis_packet->target_orig))
480 return;
481
482 /* Are we the target for this VIS packet? */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200483 if (vis_server == BATADV_VIS_TYPE_SERVER_SYNC &&
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200484 batadv_is_my_mac(vis_packet->target_orig))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000485 are_target = 1;
486
487 spin_lock_bh(&bat_priv->vis_hash_lock);
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200488 info = batadv_add_packet(bat_priv, vis_packet, vis_info_len,
489 &is_new, are_target);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000490
491 if (!info)
492 goto end;
493 /* note that outdated packets will be dropped at this point. */
494
Sven Eckelmann96412692012-06-05 22:31:30 +0200495 packet = (struct batadv_vis_packet *)info->skb_packet->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000496
497 /* send only if we're the target server or ... */
498 if (are_target && is_new) {
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200499 packet->vis_type = BATADV_VIS_TYPE_SERVER_SYNC; /* upgrade! */
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200500 batadv_send_list_add(bat_priv, info);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000501
502 /* ... we're not the recipient (and thus need to forward). */
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200503 } else if (!batadv_is_my_mac(packet->target_orig)) {
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200504 batadv_send_list_add(bat_priv, info);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000505 }
506
507end:
508 spin_unlock_bh(&bat_priv->vis_hash_lock);
509}
510
511/* Walk the originators and find the VIS server with the best tq. Set the packet
512 * address to its address and return the best_tq.
513 *
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200514 * Must be called with the originator hash locked
515 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200516static int batadv_find_best_vis_server(struct batadv_priv *bat_priv,
517 struct batadv_vis_info *info)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000518{
Sven Eckelmann5bf74e92012-06-05 22:31:28 +0200519 struct batadv_hashtable *hash = bat_priv->orig_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200520 struct batadv_neigh_node *router;
Marek Lindner7aadf882011-02-18 12:28:09 +0000521 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000522 struct hlist_head *head;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200523 struct batadv_orig_node *orig_node;
Sven Eckelmann96412692012-06-05 22:31:30 +0200524 struct batadv_vis_packet *packet;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200525 int best_tq = -1;
526 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000527
Sven Eckelmann96412692012-06-05 22:31:30 +0200528 packet = (struct batadv_vis_packet *)info->skb_packet->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000529
530 for (i = 0; i < hash->size; i++) {
531 head = &hash->table[i];
532
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000533 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000534 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200535 router = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000536 if (!router)
537 continue;
538
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200539 if ((orig_node->flags & BATADV_VIS_SERVER) &&
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000540 (router->tq_avg > best_tq)) {
541 best_tq = router->tq_avg;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000542 memcpy(packet->target_orig, orig_node->orig,
543 ETH_ALEN);
544 }
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200545 batadv_neigh_node_free_ref(router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000546 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000547 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000548 }
549
550 return best_tq;
551}
552
553/* Return true if the vis packet is full. */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200554static bool batadv_vis_packet_full(const struct batadv_vis_info *info)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000555{
Sven Eckelmann96412692012-06-05 22:31:30 +0200556 const struct batadv_vis_packet *packet;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200557 size_t num;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000558
Sven Eckelmann96412692012-06-05 22:31:30 +0200559 packet = (struct batadv_vis_packet *)info->skb_packet->data;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200560 num = BATADV_MAX_VIS_PACKET_SIZE / sizeof(struct batadv_vis_info_entry);
Sven Eckelmann347c80f2012-06-03 22:19:07 +0200561
Sven Eckelmann56303d32012-06-05 22:31:31 +0200562 if (num < packet->entries + 1)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000563 return true;
564 return false;
565}
566
567/* generates a packet of own vis data,
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200568 * returns 0 on success, -1 if no packet could be generated
569 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200570static int batadv_generate_vis_packet(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000571{
Sven Eckelmann5bf74e92012-06-05 22:31:28 +0200572 struct batadv_hashtable *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000573 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000574 struct hlist_head *head;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200575 struct batadv_orig_node *orig_node;
576 struct batadv_neigh_node *router;
577 struct batadv_vis_info *info = bat_priv->my_vis_info;
Sven Eckelmann96412692012-06-05 22:31:30 +0200578 struct batadv_vis_packet *packet;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200579 struct batadv_vis_info_entry *entry;
580 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200581 int best_tq = -1;
582 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000583
584 info->first_seen = jiffies;
Sven Eckelmann96412692012-06-05 22:31:30 +0200585 packet = (struct batadv_vis_packet *)info->skb_packet->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000586 packet->vis_type = atomic_read(&bat_priv->vis_mode);
587
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200588 memcpy(packet->target_orig, batadv_broadcast_addr, ETH_ALEN);
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200589 packet->header.ttl = BATADV_TTL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000590 packet->seqno = htonl(ntohl(packet->seqno) + 1);
591 packet->entries = 0;
Sven Eckelmann162d5492012-06-28 11:56:52 +0200592 packet->reserved = 0;
Sven Eckelmann704509b2011-05-14 23:14:54 +0200593 skb_trim(info->skb_packet, sizeof(*packet));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000594
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200595 if (packet->vis_type == BATADV_VIS_TYPE_CLIENT_UPDATE) {
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200596 best_tq = batadv_find_best_vis_server(bat_priv, info);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000597
Marek Lindnerd0072602011-01-19 20:01:44 +0000598 if (best_tq < 0)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200599 return best_tq;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000600 }
601
602 for (i = 0; i < hash->size; i++) {
603 head = &hash->table[i];
604
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000605 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000606 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200607 router = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000608 if (!router)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000609 continue;
610
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200611 if (!batadv_compare_eth(router->addr, orig_node->orig))
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000612 goto next;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000613
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200614 if (router->if_incoming->if_status != BATADV_IF_ACTIVE)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000615 goto next;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000616
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000617 if (router->tq_avg < 1)
618 goto next;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000619
620 /* fill one entry into buffer. */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200621 entry = (struct batadv_vis_info_entry *)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000622 skb_put(info->skb_packet, sizeof(*entry));
623 memcpy(entry->src,
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000624 router->if_incoming->net_dev->dev_addr,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000625 ETH_ALEN);
626 memcpy(entry->dest, orig_node->orig, ETH_ALEN);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000627 entry->quality = router->tq_avg;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000628 packet->entries++;
629
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000630next:
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200631 batadv_neigh_node_free_ref(router);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000632
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200633 if (batadv_vis_packet_full(info))
Marek Lindnerd0072602011-01-19 20:01:44 +0000634 goto unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000635 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000636 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000637 }
638
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200639 hash = bat_priv->tt_local_hash;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000640
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000641 for (i = 0; i < hash->size; i++) {
642 head = &hash->table[i];
643
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200644 rcu_read_lock();
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100645 hlist_for_each_entry_rcu(tt_common_entry, node, head,
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200646 hash_entry) {
Sven Eckelmann56303d32012-06-05 22:31:31 +0200647 entry = (struct batadv_vis_info_entry *)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000648 skb_put(info->skb_packet,
649 sizeof(*entry));
650 memset(entry->src, 0, ETH_ALEN);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100651 memcpy(entry->dest, tt_common_entry->addr, ETH_ALEN);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200652 entry->quality = 0; /* 0 means TT */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000653 packet->entries++;
654
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200655 if (batadv_vis_packet_full(info))
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200656 goto unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000657 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200658 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000659 }
660
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000661 return 0;
Marek Lindnerd0072602011-01-19 20:01:44 +0000662
663unlock:
664 rcu_read_unlock();
665 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000666}
667
668/* free old vis packets. Must be called with this vis_hash_lock
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200669 * held
670 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200671static void batadv_purge_vis_packets(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000672{
Antonio Quartullic90681b2011-10-05 17:05:25 +0200673 uint32_t i;
Sven Eckelmann5bf74e92012-06-05 22:31:28 +0200674 struct batadv_hashtable *hash = bat_priv->vis_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000675 struct hlist_node *node, *node_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000676 struct hlist_head *head;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200677 struct batadv_vis_info *info;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000678
679 for (i = 0; i < hash->size; i++) {
680 head = &hash->table[i];
681
Marek Lindner7aadf882011-02-18 12:28:09 +0000682 hlist_for_each_entry_safe(info, node, node_tmp,
683 head, hash_entry) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000684 /* never purge own data. */
685 if (info == bat_priv->my_vis_info)
686 continue;
687
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200688 if (batadv_has_timed_out(info->first_seen,
Sven Eckelmannedbf7ff2012-06-03 22:19:16 +0200689 BATADV_VIS_TIMEOUT)) {
Marek Lindner7aadf882011-02-18 12:28:09 +0000690 hlist_del(node);
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200691 batadv_send_list_del(info);
692 kref_put(&info->refcount, batadv_free_info);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000693 }
694 }
695 }
696}
697
Sven Eckelmann56303d32012-06-05 22:31:31 +0200698static void batadv_broadcast_vis_packet(struct batadv_priv *bat_priv,
699 struct batadv_vis_info *info)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000700{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200701 struct batadv_neigh_node *router;
Sven Eckelmann5bf74e92012-06-05 22:31:28 +0200702 struct batadv_hashtable *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +0000703 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000704 struct hlist_head *head;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200705 struct batadv_orig_node *orig_node;
Sven Eckelmann96412692012-06-05 22:31:30 +0200706 struct batadv_vis_packet *packet;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000707 struct sk_buff *skb;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200708 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000709 uint8_t dstaddr[ETH_ALEN];
Antonio Quartullic90681b2011-10-05 17:05:25 +0200710 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000711
712
Sven Eckelmann96412692012-06-05 22:31:30 +0200713 packet = (struct batadv_vis_packet *)info->skb_packet->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000714
715 /* send to all routers in range. */
716 for (i = 0; i < hash->size; i++) {
717 head = &hash->table[i];
718
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000719 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000720 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000721 /* if it's a vis server and reachable, send it. */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200722 if (!(orig_node->flags & BATADV_VIS_SERVER))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000723 continue;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000724
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200725 router = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000726 if (!router)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000727 continue;
728
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000729 /* don't send it if we already received the packet from
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200730 * this node.
731 */
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200732 if (batadv_recv_list_is_in(bat_priv, &info->recv_list,
733 orig_node->orig)) {
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200734 batadv_neigh_node_free_ref(router);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000735 continue;
736 }
737
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000738 memcpy(packet->target_orig, orig_node->orig, ETH_ALEN);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000739 hard_iface = router->if_incoming;
740 memcpy(dstaddr, router->addr, ETH_ALEN);
741
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200742 batadv_neigh_node_free_ref(router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000743
744 skb = skb_clone(info->skb_packet, GFP_ATOMIC);
745 if (skb)
Sven Eckelmann9455e342012-05-12 02:09:37 +0200746 batadv_send_skb_packet(skb, hard_iface,
747 dstaddr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000748
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000749 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000750 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000751 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000752}
753
Sven Eckelmann56303d32012-06-05 22:31:31 +0200754static void batadv_unicast_vis_packet(struct batadv_priv *bat_priv,
755 struct batadv_vis_info *info)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000756{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200757 struct batadv_orig_node *orig_node;
758 struct batadv_neigh_node *router = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000759 struct sk_buff *skb;
Sven Eckelmann96412692012-06-05 22:31:30 +0200760 struct batadv_vis_packet *packet;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000761
Sven Eckelmann96412692012-06-05 22:31:30 +0200762 packet = (struct batadv_vis_packet *)info->skb_packet->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000763
Sven Eckelmannda641192012-05-12 13:48:56 +0200764 orig_node = batadv_orig_hash_find(bat_priv, packet->target_orig);
Marek Lindner44524fc2011-02-10 14:33:53 +0000765 if (!orig_node)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000766 goto out;
Marek Lindner44524fc2011-02-10 14:33:53 +0000767
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200768 router = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000769 if (!router)
770 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000771
772 skb = skb_clone(info->skb_packet, GFP_ATOMIC);
773 if (skb)
Sven Eckelmann9455e342012-05-12 02:09:37 +0200774 batadv_send_skb_packet(skb, router->if_incoming, router->addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000775
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000776out:
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000777 if (router)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200778 batadv_neigh_node_free_ref(router);
Marek Lindner44524fc2011-02-10 14:33:53 +0000779 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200780 batadv_orig_node_free_ref(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000781}
782
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200783/* only send one vis packet. called from batadv_send_vis_packets() */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200784static void batadv_send_vis_packet(struct batadv_priv *bat_priv,
785 struct batadv_vis_info *info)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000786{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200787 struct batadv_hard_iface *primary_if;
Sven Eckelmann96412692012-06-05 22:31:30 +0200788 struct batadv_vis_packet *packet;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000789
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200790 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200791 if (!primary_if)
792 goto out;
793
Sven Eckelmann96412692012-06-05 22:31:30 +0200794 packet = (struct batadv_vis_packet *)info->skb_packet->data;
Sven Eckelmann76543d12011-11-20 15:47:38 +0100795 if (packet->header.ttl < 2) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000796 pr_debug("Error - can't send vis packet: ttl exceeded\n");
Marek Lindner32ae9b22011-04-20 15:40:58 +0200797 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000798 }
799
Marek Lindner32ae9b22011-04-20 15:40:58 +0200800 memcpy(packet->sender_orig, primary_if->net_dev->dev_addr, ETH_ALEN);
Sven Eckelmann76543d12011-11-20 15:47:38 +0100801 packet->header.ttl--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000802
803 if (is_broadcast_ether_addr(packet->target_orig))
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200804 batadv_broadcast_vis_packet(bat_priv, info);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000805 else
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200806 batadv_unicast_vis_packet(bat_priv, info);
Sven Eckelmann76543d12011-11-20 15:47:38 +0100807 packet->header.ttl++; /* restore TTL */
Marek Lindner32ae9b22011-04-20 15:40:58 +0200808
809out:
810 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200811 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000812}
813
814/* called from timer; send (and maybe generate) vis packet. */
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200815static void batadv_send_vis_packets(struct work_struct *work)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000816{
817 struct delayed_work *delayed_work =
818 container_of(work, struct delayed_work, work);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200819 struct batadv_priv *bat_priv;
820 struct batadv_vis_info *info;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000821
Sven Eckelmann56303d32012-06-05 22:31:31 +0200822 bat_priv = container_of(delayed_work, struct batadv_priv, vis_work);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000823 spin_lock_bh(&bat_priv->vis_hash_lock);
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200824 batadv_purge_vis_packets(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000825
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200826 if (batadv_generate_vis_packet(bat_priv) == 0) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000827 /* schedule if generation was successful */
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200828 batadv_send_list_add(bat_priv, bat_priv->my_vis_info);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000829 }
830
Sven Eckelmann1181e1d2011-01-28 18:34:07 +0100831 while (!list_empty(&bat_priv->vis_send_list)) {
832 info = list_first_entry(&bat_priv->vis_send_list,
833 typeof(*info), send_list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000834
835 kref_get(&info->refcount);
836 spin_unlock_bh(&bat_priv->vis_hash_lock);
837
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200838 batadv_send_vis_packet(bat_priv, info);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000839
840 spin_lock_bh(&bat_priv->vis_hash_lock);
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200841 batadv_send_list_del(info);
842 kref_put(&info->refcount, batadv_free_info);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000843 }
844 spin_unlock_bh(&bat_priv->vis_hash_lock);
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200845 batadv_start_vis_timer(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000846}
847
848/* init the vis server. this may only be called when if_list is already
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200849 * initialized (e.g. bat0 is initialized, interfaces have been added)
850 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200851int batadv_vis_init(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000852{
Sven Eckelmann96412692012-06-05 22:31:30 +0200853 struct batadv_vis_packet *packet;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000854 int hash_added;
Sven Eckelmann347c80f2012-06-03 22:19:07 +0200855 unsigned int len;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200856 unsigned long first_seen;
Sven Eckelmann96412692012-06-05 22:31:30 +0200857 struct sk_buff *tmp_skb;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000858
859 if (bat_priv->vis_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200860 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000861
862 spin_lock_bh(&bat_priv->vis_hash_lock);
863
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +0200864 bat_priv->vis_hash = batadv_hash_new(256);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000865 if (!bat_priv->vis_hash) {
866 pr_err("Can't initialize vis_hash\n");
867 goto err;
868 }
869
Sven Eckelmann347c80f2012-06-03 22:19:07 +0200870 bat_priv->my_vis_info = kmalloc(BATADV_MAX_VIS_PACKET_SIZE, GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700871 if (!bat_priv->my_vis_info)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000872 goto err;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000873
Sven Eckelmann347c80f2012-06-03 22:19:07 +0200874 len = sizeof(*packet) + BATADV_MAX_VIS_PACKET_SIZE + ETH_HLEN;
875 bat_priv->my_vis_info->skb_packet = dev_alloc_skb(len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000876 if (!bat_priv->my_vis_info->skb_packet)
877 goto free_info;
878
Antonio Quartulli0d125072012-02-18 11:27:34 +0100879 skb_reserve(bat_priv->my_vis_info->skb_packet, ETH_HLEN);
Sven Eckelmann96412692012-06-05 22:31:30 +0200880 tmp_skb = bat_priv->my_vis_info->skb_packet;
881 packet = (struct batadv_vis_packet *)skb_put(tmp_skb, sizeof(*packet));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000882
883 /* prefill the vis info */
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200884 first_seen = jiffies - msecs_to_jiffies(BATADV_VIS_INTERVAL);
885 bat_priv->my_vis_info->first_seen = first_seen;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000886 INIT_LIST_HEAD(&bat_priv->my_vis_info->recv_list);
887 INIT_LIST_HEAD(&bat_priv->my_vis_info->send_list);
888 kref_init(&bat_priv->my_vis_info->refcount);
889 bat_priv->my_vis_info->bat_priv = bat_priv;
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200890 packet->header.version = BATADV_COMPAT_VERSION;
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200891 packet->header.packet_type = BATADV_VIS;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200892 packet->header.ttl = BATADV_TTL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000893 packet->seqno = 0;
Sven Eckelmann162d5492012-06-28 11:56:52 +0200894 packet->reserved = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000895 packet->entries = 0;
896
897 INIT_LIST_HEAD(&bat_priv->vis_send_list);
898
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200899 hash_added = batadv_hash_add(bat_priv->vis_hash, batadv_vis_info_cmp,
900 batadv_vis_info_choose,
901 bat_priv->my_vis_info,
Sven Eckelmannc0a55922012-05-12 13:48:55 +0200902 &bat_priv->my_vis_info->hash_entry);
Antonio Quartulli1a1f37d2011-07-10 00:36:36 +0200903 if (hash_added != 0) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000904 pr_err("Can't add own vis packet into hash\n");
905 /* not in hash, need to remove it manually. */
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200906 kref_put(&bat_priv->my_vis_info->refcount, batadv_free_info);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000907 goto err;
908 }
909
910 spin_unlock_bh(&bat_priv->vis_hash_lock);
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200911 batadv_start_vis_timer(bat_priv);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200912 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000913
914free_info:
915 kfree(bat_priv->my_vis_info);
916 bat_priv->my_vis_info = NULL;
917err:
918 spin_unlock_bh(&bat_priv->vis_hash_lock);
Sven Eckelmannd0f714f2012-05-12 02:09:41 +0200919 batadv_vis_quit(bat_priv);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200920 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000921}
922
923/* Decrease the reference count on a hash item info */
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200924static void batadv_free_info_ref(struct hlist_node *node, void *arg)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000925{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200926 struct batadv_vis_info *info;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000927
Sven Eckelmann56303d32012-06-05 22:31:31 +0200928 info = container_of(node, struct batadv_vis_info, hash_entry);
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200929 batadv_send_list_del(info);
930 kref_put(&info->refcount, batadv_free_info);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000931}
932
933/* shutdown vis-server */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200934void batadv_vis_quit(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000935{
936 if (!bat_priv->vis_hash)
937 return;
938
939 cancel_delayed_work_sync(&bat_priv->vis_work);
940
941 spin_lock_bh(&bat_priv->vis_hash_lock);
942 /* properly remove, kill timers ... */
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200943 batadv_hash_delete(bat_priv->vis_hash, batadv_free_info_ref, NULL);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000944 bat_priv->vis_hash = NULL;
945 bat_priv->my_vis_info = NULL;
946 spin_unlock_bh(&bat_priv->vis_hash_lock);
947}
948
949/* schedule packets for (re)transmission */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200950static void batadv_start_vis_timer(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000951{
Sven Eckelmanneaad8ad2012-05-16 20:23:18 +0200952 INIT_DELAYED_WORK(&bat_priv->vis_work, batadv_send_vis_packets);
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200953 queue_delayed_work(batadv_event_workqueue, &bat_priv->vis_work,
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200954 msecs_to_jiffies(BATADV_VIS_INTERVAL));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000955}