blob: f550a6ab77bbf4d90e25f505f090ffacd73f3396 [file] [log] [blame]
Sven Eckelmann9f6446c2015-04-23 13:16:35 +02001/* Copyright (C) 2007-2015 B.A.T.M.A.N. contributors:
Marek Lindnerfc957272011-07-30 12:04:12 +02002 *
3 * Marek Lindner, 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
Antonio Quartulliebf38fb2013-11-03 20:40:48 +010015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Marek Lindnerfc957272011-07-30 12:04:12 +020016 */
17
Marek Lindner1c280472011-11-28 17:40:17 +080018#include "bat_algo.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020019#include "main.h"
20
21#include <linux/atomic.h>
22#include <linux/bitmap.h>
23#include <linux/bitops.h>
24#include <linux/bug.h>
25#include <linux/byteorder/generic.h>
26#include <linux/cache.h>
27#include <linux/errno.h>
28#include <linux/etherdevice.h>
29#include <linux/fs.h>
30#include <linux/if_ether.h>
31#include <linux/init.h>
32#include <linux/jiffies.h>
33#include <linux/list.h>
34#include <linux/netdevice.h>
35#include <linux/pkt_sched.h>
36#include <linux/printk.h>
37#include <linux/random.h>
38#include <linux/rculist.h>
39#include <linux/rcupdate.h>
40#include <linux/seq_file.h>
41#include <linux/skbuff.h>
42#include <linux/slab.h>
43#include <linux/spinlock.h>
44#include <linux/stddef.h>
45#include <linux/string.h>
46#include <linux/types.h>
47#include <linux/workqueue.h>
48
49#include "bitarray.h"
50#include "hard-interface.h"
51#include "hash.h"
Martin Hundebølld56b1702013-01-25 11:12:39 +010052#include "network-coding.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020053#include "originator.h"
54#include "packet.h"
55#include "routing.h"
56#include "send.h"
57#include "translation-table.h"
Marek Lindnerfc957272011-07-30 12:04:12 +020058
Antonio Quartulli791c2a22013-08-17 12:44:44 +020059/**
Martin Hundebøll95298a92014-07-15 09:41:05 +020060 * enum batadv_dup_status - duplicate status
Markus Pargmann9f52ee12014-12-26 12:41:34 +010061 * @BATADV_NO_DUP: the packet is no duplicate
Antonio Quartulli791c2a22013-08-17 12:44:44 +020062 * @BATADV_ORIG_DUP: OGM is a duplicate in the originator (but not for the
63 * neighbor)
64 * @BATADV_NEIGH_DUP: OGM is a duplicate for the neighbor
65 * @BATADV_PROTECTED: originator is currently protected (after reboot)
66 */
67enum batadv_dup_status {
68 BATADV_NO_DUP = 0,
69 BATADV_ORIG_DUP,
70 BATADV_NEIGH_DUP,
71 BATADV_PROTECTED,
72};
73
Antonio Quartulli24a5dee2013-04-08 09:38:12 +020074/**
75 * batadv_ring_buffer_set - update the ring buffer with the given value
76 * @lq_recv: pointer to the ring buffer
77 * @lq_index: index to store the value at
78 * @value: value to store in the ring buffer
79 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020080static void batadv_ring_buffer_set(u8 lq_recv[], u8 *lq_index, u8 value)
Antonio Quartulli24a5dee2013-04-08 09:38:12 +020081{
82 lq_recv[*lq_index] = value;
83 *lq_index = (*lq_index + 1) % BATADV_TQ_GLOBAL_WINDOW_SIZE;
84}
85
86/**
Markus Pargmannd491dbb2014-12-26 12:41:36 +010087 * batadv_ring_buffer_avg - compute the average of all non-zero values stored
Antonio Quartulli24a5dee2013-04-08 09:38:12 +020088 * in the given ring buffer
89 * @lq_recv: pointer to the ring buffer
90 *
91 * Returns computed average value.
92 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020093static u8 batadv_ring_buffer_avg(const u8 lq_recv[])
Antonio Quartulli24a5dee2013-04-08 09:38:12 +020094{
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020095 const u8 *ptr;
96 u16 count = 0;
97 u16 i = 0;
98 u16 sum = 0;
Antonio Quartulli24a5dee2013-04-08 09:38:12 +020099
100 ptr = lq_recv;
101
102 while (i < BATADV_TQ_GLOBAL_WINDOW_SIZE) {
103 if (*ptr != 0) {
104 count++;
105 sum += *ptr;
106 }
107
108 i++;
109 ptr++;
110 }
111
112 if (count == 0)
113 return 0;
114
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200115 return (u8)(sum / count);
Antonio Quartulli24a5dee2013-04-08 09:38:12 +0200116}
David S. Millerd98cae64e2013-06-19 16:49:39 -0700117
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200118/**
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200119 * batadv_iv_ogm_orig_free - free the private resources allocated for this
120 * orig_node
121 * @orig_node: the orig_node for which the resources have to be free'd
122 */
123static void batadv_iv_ogm_orig_free(struct batadv_orig_node *orig_node)
124{
125 kfree(orig_node->bat_iv.bcast_own);
126 kfree(orig_node->bat_iv.bcast_own_sum);
127}
128
129/**
130 * batadv_iv_ogm_orig_add_if - change the private structures of the orig_node to
131 * include the new hard-interface
132 * @orig_node: the orig_node that has to be changed
133 * @max_if_num: the current amount of interfaces
134 *
135 * Returns 0 on success, a negative error code otherwise.
136 */
137static int batadv_iv_ogm_orig_add_if(struct batadv_orig_node *orig_node,
138 int max_if_num)
139{
140 void *data_ptr;
Antonio Quartulli0185dda2014-05-24 06:43:47 +0200141 size_t old_size;
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200142 int ret = -ENOMEM;
143
144 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
145
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200146 old_size = (max_if_num - 1) * sizeof(unsigned long) * BATADV_NUM_WORDS;
Antonio Quartulli0185dda2014-05-24 06:43:47 +0200147 data_ptr = kmalloc_array(max_if_num,
148 BATADV_NUM_WORDS * sizeof(unsigned long),
149 GFP_ATOMIC);
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200150 if (!data_ptr)
151 goto unlock;
152
153 memcpy(data_ptr, orig_node->bat_iv.bcast_own, old_size);
154 kfree(orig_node->bat_iv.bcast_own);
155 orig_node->bat_iv.bcast_own = data_ptr;
156
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200157 data_ptr = kmalloc_array(max_if_num, sizeof(u8), GFP_ATOMIC);
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200158 if (!data_ptr) {
159 kfree(orig_node->bat_iv.bcast_own);
160 goto unlock;
161 }
162
163 memcpy(data_ptr, orig_node->bat_iv.bcast_own_sum,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200164 (max_if_num - 1) * sizeof(u8));
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200165 kfree(orig_node->bat_iv.bcast_own_sum);
166 orig_node->bat_iv.bcast_own_sum = data_ptr;
167
168 ret = 0;
169
170unlock:
171 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
172
173 return ret;
174}
175
176/**
177 * batadv_iv_ogm_orig_del_if - change the private structures of the orig_node to
178 * exclude the removed interface
179 * @orig_node: the orig_node that has to be changed
180 * @max_if_num: the current amount of interfaces
181 * @del_if_num: the index of the interface being removed
182 *
183 * Returns 0 on success, a negative error code otherwise.
184 */
185static int batadv_iv_ogm_orig_del_if(struct batadv_orig_node *orig_node,
186 int max_if_num, int del_if_num)
187{
188 int chunk_size, ret = -ENOMEM, if_offset;
189 void *data_ptr = NULL;
190
191 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
192
193 /* last interface was removed */
194 if (max_if_num == 0)
195 goto free_bcast_own;
196
197 chunk_size = sizeof(unsigned long) * BATADV_NUM_WORDS;
Antonio Quartulli0185dda2014-05-24 06:43:47 +0200198 data_ptr = kmalloc_array(max_if_num, chunk_size, GFP_ATOMIC);
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200199 if (!data_ptr)
200 goto unlock;
201
202 /* copy first part */
203 memcpy(data_ptr, orig_node->bat_iv.bcast_own, del_if_num * chunk_size);
204
205 /* copy second part */
206 memcpy((char *)data_ptr + del_if_num * chunk_size,
207 orig_node->bat_iv.bcast_own + ((del_if_num + 1) * chunk_size),
208 (max_if_num - del_if_num) * chunk_size);
209
210free_bcast_own:
211 kfree(orig_node->bat_iv.bcast_own);
212 orig_node->bat_iv.bcast_own = data_ptr;
213
214 if (max_if_num == 0)
215 goto free_own_sum;
216
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200217 data_ptr = kmalloc_array(max_if_num, sizeof(u8), GFP_ATOMIC);
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200218 if (!data_ptr) {
219 kfree(orig_node->bat_iv.bcast_own);
220 goto unlock;
221 }
222
223 memcpy(data_ptr, orig_node->bat_iv.bcast_own_sum,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200224 del_if_num * sizeof(u8));
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200225
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200226 if_offset = (del_if_num + 1) * sizeof(u8);
227 memcpy((char *)data_ptr + del_if_num * sizeof(u8),
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200228 orig_node->bat_iv.bcast_own_sum + if_offset,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200229 (max_if_num - del_if_num) * sizeof(u8));
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200230
231free_own_sum:
232 kfree(orig_node->bat_iv.bcast_own_sum);
233 orig_node->bat_iv.bcast_own_sum = data_ptr;
234
235 ret = 0;
236unlock:
237 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
238
239 return ret;
240}
241
242/**
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200243 * batadv_iv_ogm_orig_get - retrieve or create (if does not exist) an originator
244 * @bat_priv: the bat priv with all the soft interface information
245 * @addr: mac address of the originator
246 *
247 * Returns the originator object corresponding to the passed mac address or NULL
248 * on failure.
249 * If the object does not exists it is created an initialised.
250 */
251static struct batadv_orig_node *
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200252batadv_iv_ogm_orig_get(struct batadv_priv *bat_priv, const u8 *addr)
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200253{
254 struct batadv_orig_node *orig_node;
255 int size, hash_added;
256
257 orig_node = batadv_orig_hash_find(bat_priv, addr);
258 if (orig_node)
259 return orig_node;
260
261 orig_node = batadv_orig_node_new(bat_priv, addr);
262 if (!orig_node)
263 return NULL;
264
265 spin_lock_init(&orig_node->bat_iv.ogm_cnt_lock);
266
267 size = bat_priv->num_ifaces * sizeof(unsigned long) * BATADV_NUM_WORDS;
268 orig_node->bat_iv.bcast_own = kzalloc(size, GFP_ATOMIC);
269 if (!orig_node->bat_iv.bcast_own)
270 goto free_orig_node;
271
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200272 size = bat_priv->num_ifaces * sizeof(u8);
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200273 orig_node->bat_iv.bcast_own_sum = kzalloc(size, GFP_ATOMIC);
274 if (!orig_node->bat_iv.bcast_own_sum)
Antonio Quartullia5a5cb82014-02-15 02:17:20 +0100275 goto free_orig_node;
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200276
277 hash_added = batadv_hash_add(bat_priv->orig_hash, batadv_compare_orig,
278 batadv_choose_orig, orig_node,
279 &orig_node->hash_entry);
280 if (hash_added != 0)
Antonio Quartullia5a5cb82014-02-15 02:17:20 +0100281 goto free_orig_node;
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200282
283 return orig_node;
284
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200285free_orig_node:
Simon Wunderlichb2262df2014-02-08 16:45:06 +0100286 /* free twice, as batadv_orig_node_new sets refcount to 2 */
287 batadv_orig_node_free_ref(orig_node);
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200288 batadv_orig_node_free_ref(orig_node);
289
290 return NULL;
291}
292
Sven Eckelmann56303d32012-06-05 22:31:31 +0200293static struct batadv_neigh_node *
294batadv_iv_ogm_neigh_new(struct batadv_hard_iface *hard_iface,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200295 const u8 *neigh_addr,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200296 struct batadv_orig_node *orig_node,
Antonio Quartulli863dd7a2013-03-25 13:49:46 +0100297 struct batadv_orig_node *orig_neigh)
Marek Lindner7ae8b282012-03-01 15:35:21 +0800298{
Antonio Quartulli0538f752013-09-02 12:15:01 +0200299 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Antonio Quartulli08bf0ed2014-01-29 11:25:12 +0100300 struct batadv_neigh_node *neigh_node, *tmp_neigh_node;
Marek Lindner7ae8b282012-03-01 15:35:21 +0800301
Antonio Quartulli0538f752013-09-02 12:15:01 +0200302 neigh_node = batadv_neigh_node_new(hard_iface, neigh_addr, orig_node);
Marek Lindner7ae8b282012-03-01 15:35:21 +0800303 if (!neigh_node)
304 goto out;
305
Simon Wunderlich89652332013-11-13 19:14:46 +0100306 if (!atomic_inc_not_zero(&hard_iface->refcount)) {
307 kfree(neigh_node);
308 neigh_node = NULL;
309 goto out;
310 }
311
312 neigh_node->orig_node = orig_neigh;
313 neigh_node->if_incoming = hard_iface;
Marek Lindner7ae8b282012-03-01 15:35:21 +0800314
Marek Lindner7ae8b282012-03-01 15:35:21 +0800315 spin_lock_bh(&orig_node->neigh_list_lock);
Antonio Quartulli08bf0ed2014-01-29 11:25:12 +0100316 tmp_neigh_node = batadv_neigh_node_get(orig_node, hard_iface,
317 neigh_addr);
318 if (!tmp_neigh_node) {
319 hlist_add_head_rcu(&neigh_node->list, &orig_node->neigh_list);
320 } else {
321 kfree(neigh_node);
322 batadv_hardif_free_ref(hard_iface);
323 neigh_node = tmp_neigh_node;
324 }
Marek Lindner7ae8b282012-03-01 15:35:21 +0800325 spin_unlock_bh(&orig_node->neigh_list_lock);
326
Antonio Quartulli08bf0ed2014-01-29 11:25:12 +0100327 if (!tmp_neigh_node)
328 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
329 "Creating new neighbor %pM for orig_node %pM on interface %s\n",
330 neigh_addr, orig_node->orig,
331 hard_iface->net_dev->name);
332
Marek Lindner7ae8b282012-03-01 15:35:21 +0800333out:
334 return neigh_node;
335}
336
Sven Eckelmann56303d32012-06-05 22:31:31 +0200337static int batadv_iv_ogm_iface_enable(struct batadv_hard_iface *hard_iface)
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200338{
Sven Eckelmann96412692012-06-05 22:31:30 +0200339 struct batadv_ogm_packet *batadv_ogm_packet;
Marek Lindner14511512012-08-02 17:20:26 +0200340 unsigned char *ogm_buff;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200341 u32 random_seqno;
Marek Lindnerd7d32ec2012-02-07 17:20:46 +0800342
343 /* randomize initial seqno to avoid collision */
344 get_random_bytes(&random_seqno, sizeof(random_seqno));
Marek Lindner14511512012-08-02 17:20:26 +0200345 atomic_set(&hard_iface->bat_iv.ogm_seqno, random_seqno);
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200346
Marek Lindner14511512012-08-02 17:20:26 +0200347 hard_iface->bat_iv.ogm_buff_len = BATADV_OGM_HLEN;
348 ogm_buff = kmalloc(hard_iface->bat_iv.ogm_buff_len, GFP_ATOMIC);
349 if (!ogm_buff)
Markus Pargmann42d9f2c2014-12-26 12:41:26 +0100350 return -ENOMEM;
Marek Lindner77af7572012-02-07 17:20:48 +0800351
Marek Lindner14511512012-08-02 17:20:26 +0200352 hard_iface->bat_iv.ogm_buff = ogm_buff;
353
354 batadv_ogm_packet = (struct batadv_ogm_packet *)ogm_buff;
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100355 batadv_ogm_packet->packet_type = BATADV_IV_OGM;
356 batadv_ogm_packet->version = BATADV_COMPAT_VERSION;
357 batadv_ogm_packet->ttl = 2;
Sven Eckelmann96412692012-06-05 22:31:30 +0200358 batadv_ogm_packet->flags = BATADV_NO_FLAGS;
Marek Lindner414254e2013-04-23 21:39:58 +0800359 batadv_ogm_packet->reserved = 0;
Sven Eckelmann96412692012-06-05 22:31:30 +0200360 batadv_ogm_packet->tq = BATADV_TQ_MAX_VALUE;
Marek Lindner77af7572012-02-07 17:20:48 +0800361
Markus Pargmann42d9f2c2014-12-26 12:41:26 +0100362 return 0;
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200363}
364
Sven Eckelmann56303d32012-06-05 22:31:31 +0200365static void batadv_iv_ogm_iface_disable(struct batadv_hard_iface *hard_iface)
Marek Lindner00a50072012-02-07 17:20:47 +0800366{
Marek Lindner14511512012-08-02 17:20:26 +0200367 kfree(hard_iface->bat_iv.ogm_buff);
368 hard_iface->bat_iv.ogm_buff = NULL;
Marek Lindner00a50072012-02-07 17:20:47 +0800369}
370
Sven Eckelmann56303d32012-06-05 22:31:31 +0200371static void batadv_iv_ogm_iface_update_mac(struct batadv_hard_iface *hard_iface)
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200372{
Sven Eckelmann96412692012-06-05 22:31:30 +0200373 struct batadv_ogm_packet *batadv_ogm_packet;
Marek Lindner14511512012-08-02 17:20:26 +0200374 unsigned char *ogm_buff = hard_iface->bat_iv.ogm_buff;
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200375
Marek Lindner14511512012-08-02 17:20:26 +0200376 batadv_ogm_packet = (struct batadv_ogm_packet *)ogm_buff;
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100377 ether_addr_copy(batadv_ogm_packet->orig,
378 hard_iface->net_dev->dev_addr);
379 ether_addr_copy(batadv_ogm_packet->prev_sender,
380 hard_iface->net_dev->dev_addr);
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200381}
382
Sven Eckelmann56303d32012-06-05 22:31:31 +0200383static void
384batadv_iv_ogm_primary_iface_set(struct batadv_hard_iface *hard_iface)
Marek Lindnerc3229392012-03-11 06:17:50 +0800385{
Sven Eckelmann96412692012-06-05 22:31:30 +0200386 struct batadv_ogm_packet *batadv_ogm_packet;
Marek Lindner14511512012-08-02 17:20:26 +0200387 unsigned char *ogm_buff = hard_iface->bat_iv.ogm_buff;
Marek Lindnerc3229392012-03-11 06:17:50 +0800388
Marek Lindner14511512012-08-02 17:20:26 +0200389 batadv_ogm_packet = (struct batadv_ogm_packet *)ogm_buff;
Sven Eckelmann96412692012-06-05 22:31:30 +0200390 batadv_ogm_packet->flags = BATADV_PRIMARIES_FIRST_HOP;
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100391 batadv_ogm_packet->ttl = BATADV_TTL;
Marek Lindnerc3229392012-03-11 06:17:50 +0800392}
393
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200394/* when do we schedule our own ogm to be sent */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200395static unsigned long
Sven Eckelmann56303d32012-06-05 22:31:31 +0200396batadv_iv_ogm_emit_send_time(const struct batadv_priv *bat_priv)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200397{
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200398 unsigned int msecs;
399
400 msecs = atomic_read(&bat_priv->orig_interval) - BATADV_JITTER;
Akinobu Mitae76e4322012-12-24 11:14:07 +0900401 msecs += prandom_u32() % (2 * BATADV_JITTER);
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200402
403 return jiffies + msecs_to_jiffies(msecs);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200404}
405
406/* when do we schedule a ogm packet to be sent */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200407static unsigned long batadv_iv_ogm_fwd_send_time(void)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200408{
Akinobu Mitae76e4322012-12-24 11:14:07 +0900409 return jiffies + msecs_to_jiffies(prandom_u32() % (BATADV_JITTER / 2));
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200410}
411
412/* apply hop penalty for a normal link */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200413static u8 batadv_hop_penalty(u8 tq, const struct batadv_priv *bat_priv)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200414{
415 int hop_penalty = atomic_read(&bat_priv->hop_penalty);
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200416 int new_tq;
417
418 new_tq = tq * (BATADV_TQ_MAX_VALUE - hop_penalty);
419 new_tq /= BATADV_TQ_MAX_VALUE;
420
421 return new_tq;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200422}
423
Marek Lindnerfc957272011-07-30 12:04:12 +0200424/* is there another aggregated packet here? */
Markus Pargmann9fd9b192014-12-26 12:41:27 +0100425static bool batadv_iv_ogm_aggr_packet(int buff_pos, int packet_len,
426 __be16 tvlv_len)
Marek Lindnerfc957272011-07-30 12:04:12 +0200427{
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200428 int next_buff_pos = 0;
429
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200430 next_buff_pos += buff_pos + BATADV_OGM_HLEN;
Marek Lindneref261572013-04-23 21:39:57 +0800431 next_buff_pos += ntohs(tvlv_len);
Marek Lindnerfc957272011-07-30 12:04:12 +0200432
433 return (next_buff_pos <= packet_len) &&
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200434 (next_buff_pos <= BATADV_MAX_AGGREGATION_BYTES);
Marek Lindnerfc957272011-07-30 12:04:12 +0200435}
436
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200437/* send a batman ogm to a given interface */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200438static void batadv_iv_ogm_send_to_if(struct batadv_forw_packet *forw_packet,
439 struct batadv_hard_iface *hard_iface)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200440{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200441 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Markus Pargmannde12bae2014-12-26 12:41:28 +0100442 const char *fwd_str;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200443 u8 packet_num;
444 s16 buff_pos;
Sven Eckelmann96412692012-06-05 22:31:30 +0200445 struct batadv_ogm_packet *batadv_ogm_packet;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200446 struct sk_buff *skb;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200447 u8 *packet_pos;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200448
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200449 if (hard_iface->if_status != BATADV_IF_ACTIVE)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200450 return;
451
452 packet_num = 0;
453 buff_pos = 0;
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200454 packet_pos = forw_packet->skb->data;
455 batadv_ogm_packet = (struct batadv_ogm_packet *)packet_pos;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200456
457 /* adjust all flags and log packets */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200458 while (batadv_iv_ogm_aggr_packet(buff_pos, forw_packet->packet_len,
Marek Lindneref261572013-04-23 21:39:57 +0800459 batadv_ogm_packet->tvlv_len)) {
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200460 /* we might have aggregated direct link packets with an
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200461 * ordinary base packet
462 */
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200463 if (forw_packet->direct_link_flags & BIT(packet_num) &&
464 forw_packet->if_incoming == hard_iface)
Sven Eckelmann96412692012-06-05 22:31:30 +0200465 batadv_ogm_packet->flags |= BATADV_DIRECTLINK;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200466 else
Sven Eckelmann96412692012-06-05 22:31:30 +0200467 batadv_ogm_packet->flags &= ~BATADV_DIRECTLINK;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200468
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200469 if (packet_num > 0 || !forw_packet->own)
470 fwd_str = "Forwarding";
471 else
472 fwd_str = "Sending own";
473
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200474 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800475 "%s %spacket (originator %pM, seqno %u, TQ %d, TTL %d, IDF %s) on interface %s [%pM]\n",
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200476 fwd_str, (packet_num > 0 ? "aggregated " : ""),
Sven Eckelmann96412692012-06-05 22:31:30 +0200477 batadv_ogm_packet->orig,
478 ntohl(batadv_ogm_packet->seqno),
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100479 batadv_ogm_packet->tq, batadv_ogm_packet->ttl,
Sven Eckelmanna2f2b6c2015-04-23 18:22:24 +0200480 ((batadv_ogm_packet->flags & BATADV_DIRECTLINK) ?
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200481 "on" : "off"),
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800482 hard_iface->net_dev->name,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200483 hard_iface->net_dev->dev_addr);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200484
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200485 buff_pos += BATADV_OGM_HLEN;
Marek Lindneref261572013-04-23 21:39:57 +0800486 buff_pos += ntohs(batadv_ogm_packet->tvlv_len);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200487 packet_num++;
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200488 packet_pos = forw_packet->skb->data + buff_pos;
489 batadv_ogm_packet = (struct batadv_ogm_packet *)packet_pos;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200490 }
491
492 /* create clone because function is called more than once */
493 skb = skb_clone(forw_packet->skb, GFP_ATOMIC);
Martin Hundebøllf8214862012-04-20 17:02:45 +0200494 if (skb) {
Sven Eckelmannd69909d2012-06-03 22:19:20 +0200495 batadv_inc_counter(bat_priv, BATADV_CNT_MGMT_TX);
496 batadv_add_counter(bat_priv, BATADV_CNT_MGMT_TX_BYTES,
Martin Hundebøllf8214862012-04-20 17:02:45 +0200497 skb->len + ETH_HLEN);
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200498 batadv_send_skb_packet(skb, hard_iface, batadv_broadcast_addr);
Martin Hundebøllf8214862012-04-20 17:02:45 +0200499 }
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200500}
501
502/* send a batman ogm packet */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200503static void batadv_iv_ogm_emit(struct batadv_forw_packet *forw_packet)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200504{
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200505 struct net_device *soft_iface;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200506 struct batadv_priv *bat_priv;
507 struct batadv_hard_iface *primary_if = NULL;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200508
509 if (!forw_packet->if_incoming) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100510 pr_err("Error - can't forward packet: incoming iface not specified\n");
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200511 goto out;
512 }
513
514 soft_iface = forw_packet->if_incoming->soft_iface;
515 bat_priv = netdev_priv(soft_iface);
516
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100517 if (WARN_ON(!forw_packet->if_outgoing))
518 goto out;
519
520 if (WARN_ON(forw_packet->if_outgoing->soft_iface != soft_iface))
521 goto out;
522
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200523 if (forw_packet->if_incoming->if_status != BATADV_IF_ACTIVE)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200524 goto out;
525
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200526 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200527 if (!primary_if)
528 goto out;
529
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100530 /* only for one specific outgoing interface */
531 batadv_iv_ogm_send_to_if(forw_packet, forw_packet->if_outgoing);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200532
533out:
534 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200535 batadv_hardif_free_ref(primary_if);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200536}
537
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100538/**
539 * batadv_iv_ogm_can_aggregate - find out if an OGM can be aggregated on an
540 * existing forward packet
541 * @new_bat_ogm_packet: OGM packet to be aggregated
542 * @bat_priv: the bat priv with all the soft interface information
543 * @packet_len: (total) length of the OGM
544 * @send_time: timestamp (jiffies) when the packet is to be sent
Martin Hundebøll95298a92014-07-15 09:41:05 +0200545 * @directlink: true if this is a direct link packet
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100546 * @if_incoming: interface where the packet was received
547 * @if_outgoing: interface for which the retransmission should be considered
548 * @forw_packet: the forwarded packet which should be checked
549 *
550 * Returns true if new_packet can be aggregated with forw_packet
551 */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200552static bool
Sven Eckelmann96412692012-06-05 22:31:30 +0200553batadv_iv_ogm_can_aggregate(const struct batadv_ogm_packet *new_bat_ogm_packet,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200554 struct batadv_priv *bat_priv,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200555 int packet_len, unsigned long send_time,
556 bool directlink,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200557 const struct batadv_hard_iface *if_incoming,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100558 const struct batadv_hard_iface *if_outgoing,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200559 const struct batadv_forw_packet *forw_packet)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200560{
Sven Eckelmann96412692012-06-05 22:31:30 +0200561 struct batadv_ogm_packet *batadv_ogm_packet;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200562 int aggregated_bytes = forw_packet->packet_len + packet_len;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200563 struct batadv_hard_iface *primary_if = NULL;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200564 bool res = false;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200565 unsigned long aggregation_end_time;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200566
Sven Eckelmann96412692012-06-05 22:31:30 +0200567 batadv_ogm_packet = (struct batadv_ogm_packet *)forw_packet->skb->data;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200568 aggregation_end_time = send_time;
569 aggregation_end_time += msecs_to_jiffies(BATADV_MAX_AGGREGATION_MS);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200570
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200571 /* we can aggregate the current packet to this aggregated packet
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200572 * if:
573 *
574 * - the send time is within our MAX_AGGREGATION_MS time
575 * - the resulting packet wont be bigger than
576 * MAX_AGGREGATION_BYTES
Markus Pargmann8f34b382014-12-26 12:41:29 +0100577 * otherwise aggregation is not possible
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200578 */
Markus Pargmann8f34b382014-12-26 12:41:29 +0100579 if (!time_before(send_time, forw_packet->send_time) ||
580 !time_after_eq(aggregation_end_time, forw_packet->send_time))
581 return false;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200582
Markus Pargmann8f34b382014-12-26 12:41:29 +0100583 if (aggregated_bytes > BATADV_MAX_AGGREGATION_BYTES)
584 return false;
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100585
Markus Pargmann8f34b382014-12-26 12:41:29 +0100586 /* packet is not leaving on the same interface. */
587 if (forw_packet->if_outgoing != if_outgoing)
588 return false;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200589
Markus Pargmann8f34b382014-12-26 12:41:29 +0100590 /* check aggregation compatibility
591 * -> direct link packets are broadcasted on
592 * their interface only
593 * -> aggregate packet if the current packet is
594 * a "global" packet as well as the base
595 * packet
596 */
597 primary_if = batadv_primary_if_get_selected(bat_priv);
598 if (!primary_if)
599 return false;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200600
Markus Pargmann8f34b382014-12-26 12:41:29 +0100601 /* packets without direct link flag and high TTL
602 * are flooded through the net
603 */
604 if (!directlink &&
605 !(batadv_ogm_packet->flags & BATADV_DIRECTLINK) &&
606 batadv_ogm_packet->ttl != 1 &&
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200607
Markus Pargmann8f34b382014-12-26 12:41:29 +0100608 /* own packets originating non-primary
609 * interfaces leave only that interface
610 */
611 (!forw_packet->own ||
612 forw_packet->if_incoming == primary_if)) {
613 res = true;
614 goto out;
615 }
616
617 /* if the incoming packet is sent via this one
618 * interface only - we still can aggregate
619 */
620 if (directlink &&
621 new_bat_ogm_packet->ttl == 1 &&
622 forw_packet->if_incoming == if_incoming &&
623
624 /* packets from direct neighbors or
625 * own secondary interface packets
626 * (= secondary interface packets in general)
627 */
628 (batadv_ogm_packet->flags & BATADV_DIRECTLINK ||
629 (forw_packet->own &&
630 forw_packet->if_incoming != primary_if))) {
631 res = true;
632 goto out;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200633 }
634
635out:
636 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200637 batadv_hardif_free_ref(primary_if);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200638 return res;
639}
640
Simon Wunderlich1b371d12014-01-15 21:17:54 +0100641/**
642 * batadv_iv_ogm_aggregate_new - create a new aggregated packet and add this
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100643 * packet to it.
644 * @packet_buff: pointer to the OGM
645 * @packet_len: (total) length of the OGM
646 * @send_time: timestamp (jiffies) when the packet is to be sent
647 * @direct_link: whether this OGM has direct link status
648 * @if_incoming: interface where the packet was received
649 * @if_outgoing: interface for which the retransmission should be considered
650 * @own_packet: true if it is a self-generated ogm
651 */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200652static void batadv_iv_ogm_aggregate_new(const unsigned char *packet_buff,
653 int packet_len, unsigned long send_time,
654 bool direct_link,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200655 struct batadv_hard_iface *if_incoming,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100656 struct batadv_hard_iface *if_outgoing,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200657 int own_packet)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200658{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200659 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
660 struct batadv_forw_packet *forw_packet_aggr;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200661 unsigned char *skb_buff;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200662 unsigned int skb_size;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200663
664 if (!atomic_inc_not_zero(&if_incoming->refcount))
665 return;
666
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100667 if (!atomic_inc_not_zero(&if_outgoing->refcount))
668 goto out_free_incoming;
669
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200670 /* own packet should always be scheduled */
671 if (!own_packet) {
Sven Eckelmann3e348192012-05-16 20:23:22 +0200672 if (!batadv_atomic_dec_not_zero(&bat_priv->batman_queue_left)) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200673 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200674 "batman packet queue full\n");
Markus Pargmann940d1562014-12-26 12:41:31 +0100675 goto out_free_outgoing;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200676 }
677 }
678
679 forw_packet_aggr = kmalloc(sizeof(*forw_packet_aggr), GFP_ATOMIC);
Markus Pargmann940d1562014-12-26 12:41:31 +0100680 if (!forw_packet_aggr)
681 goto out_nomem;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200682
Markus Pargmann940d1562014-12-26 12:41:31 +0100683 if (atomic_read(&bat_priv->aggregated_ogms) &&
684 packet_len < BATADV_MAX_AGGREGATION_BYTES)
Sven Eckelmann5b246572012-11-04 17:11:45 +0100685 skb_size = BATADV_MAX_AGGREGATION_BYTES;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200686 else
Sven Eckelmann5b246572012-11-04 17:11:45 +0100687 skb_size = packet_len;
688
Antonio Quartulli41ab6c42013-04-02 22:28:44 +0200689 skb_size += ETH_HLEN;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200690
Antonio Quartulli41ab6c42013-04-02 22:28:44 +0200691 forw_packet_aggr->skb = netdev_alloc_skb_ip_align(NULL, skb_size);
Markus Pargmann940d1562014-12-26 12:41:31 +0100692 if (!forw_packet_aggr->skb)
693 goto out_free_forw_packet;
Simon Wunderlichc54f38c2013-07-29 17:56:44 +0200694 forw_packet_aggr->skb->priority = TC_PRIO_CONTROL;
Antonio Quartulli41ab6c42013-04-02 22:28:44 +0200695 skb_reserve(forw_packet_aggr->skb, ETH_HLEN);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200696
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200697 skb_buff = skb_put(forw_packet_aggr->skb, packet_len);
698 forw_packet_aggr->packet_len = packet_len;
699 memcpy(skb_buff, packet_buff, packet_len);
700
701 forw_packet_aggr->own = own_packet;
702 forw_packet_aggr->if_incoming = if_incoming;
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100703 forw_packet_aggr->if_outgoing = if_outgoing;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200704 forw_packet_aggr->num_packets = 0;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200705 forw_packet_aggr->direct_link_flags = BATADV_NO_FLAGS;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200706 forw_packet_aggr->send_time = send_time;
707
708 /* save packet direct link flag status */
709 if (direct_link)
710 forw_packet_aggr->direct_link_flags |= 1;
711
712 /* add new packet to packet list */
713 spin_lock_bh(&bat_priv->forw_bat_list_lock);
714 hlist_add_head(&forw_packet_aggr->list, &bat_priv->forw_bat_list);
715 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
716
717 /* start timer for this packet */
718 INIT_DELAYED_WORK(&forw_packet_aggr->delayed_work,
Sven Eckelmann9455e342012-05-12 02:09:37 +0200719 batadv_send_outstanding_bat_ogm_packet);
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200720 queue_delayed_work(batadv_event_workqueue,
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200721 &forw_packet_aggr->delayed_work,
722 send_time - jiffies);
723
724 return;
Markus Pargmann940d1562014-12-26 12:41:31 +0100725out_free_forw_packet:
726 kfree(forw_packet_aggr);
727out_nomem:
728 if (!own_packet)
729 atomic_inc(&bat_priv->batman_queue_left);
730out_free_outgoing:
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100731 batadv_hardif_free_ref(if_outgoing);
732out_free_incoming:
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200733 batadv_hardif_free_ref(if_incoming);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200734}
735
736/* aggregate a new packet into the existing ogm packet */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200737static void batadv_iv_ogm_aggregate(struct batadv_forw_packet *forw_packet_aggr,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200738 const unsigned char *packet_buff,
739 int packet_len, bool direct_link)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200740{
741 unsigned char *skb_buff;
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200742 unsigned long new_direct_link_flag;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200743
744 skb_buff = skb_put(forw_packet_aggr->skb, packet_len);
745 memcpy(skb_buff, packet_buff, packet_len);
746 forw_packet_aggr->packet_len += packet_len;
747 forw_packet_aggr->num_packets++;
748
749 /* save packet direct link flag status */
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200750 if (direct_link) {
751 new_direct_link_flag = BIT(forw_packet_aggr->num_packets);
752 forw_packet_aggr->direct_link_flags |= new_direct_link_flag;
753 }
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200754}
755
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100756/**
757 * batadv_iv_ogm_queue_add - queue up an OGM for transmission
758 * @bat_priv: the bat priv with all the soft interface information
759 * @packet_buff: pointer to the OGM
760 * @packet_len: (total) length of the OGM
761 * @if_incoming: interface where the packet was received
762 * @if_outgoing: interface for which the retransmission should be considered
763 * @own_packet: true if it is a self-generated ogm
764 * @send_time: timestamp (jiffies) when the packet is to be sent
765 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200766static void batadv_iv_ogm_queue_add(struct batadv_priv *bat_priv,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200767 unsigned char *packet_buff,
768 int packet_len,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200769 struct batadv_hard_iface *if_incoming,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100770 struct batadv_hard_iface *if_outgoing,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200771 int own_packet, unsigned long send_time)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200772{
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200773 /* _aggr -> pointer to the packet we want to aggregate with
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200774 * _pos -> pointer to the position in the queue
775 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200776 struct batadv_forw_packet *forw_packet_aggr = NULL;
777 struct batadv_forw_packet *forw_packet_pos = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +0200778 struct batadv_ogm_packet *batadv_ogm_packet;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200779 bool direct_link;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200780 unsigned long max_aggregation_jiffies;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200781
Sven Eckelmann96412692012-06-05 22:31:30 +0200782 batadv_ogm_packet = (struct batadv_ogm_packet *)packet_buff;
Markus Pargmann56489152014-12-26 12:41:32 +0100783 direct_link = !!(batadv_ogm_packet->flags & BATADV_DIRECTLINK);
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200784 max_aggregation_jiffies = msecs_to_jiffies(BATADV_MAX_AGGREGATION_MS);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200785
786 /* find position for the packet in the forward queue */
787 spin_lock_bh(&bat_priv->forw_bat_list_lock);
788 /* own packets are not to be aggregated */
Markus Pargmann56489152014-12-26 12:41:32 +0100789 if (atomic_read(&bat_priv->aggregated_ogms) && !own_packet) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800790 hlist_for_each_entry(forw_packet_pos,
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200791 &bat_priv->forw_bat_list, list) {
Sven Eckelmann96412692012-06-05 22:31:30 +0200792 if (batadv_iv_ogm_can_aggregate(batadv_ogm_packet,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200793 bat_priv, packet_len,
794 send_time, direct_link,
795 if_incoming,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100796 if_outgoing,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200797 forw_packet_pos)) {
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200798 forw_packet_aggr = forw_packet_pos;
799 break;
800 }
801 }
802 }
803
804 /* nothing to aggregate with - either aggregation disabled or no
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200805 * suitable aggregation packet found
806 */
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200807 if (!forw_packet_aggr) {
808 /* the following section can run without the lock */
809 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
810
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200811 /* if we could not aggregate this packet with one of the others
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200812 * we hold it back for a while, so that it might be aggregated
813 * later on
814 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200815 if (!own_packet && atomic_read(&bat_priv->aggregated_ogms))
816 send_time += max_aggregation_jiffies;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200817
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200818 batadv_iv_ogm_aggregate_new(packet_buff, packet_len,
819 send_time, direct_link,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100820 if_incoming, if_outgoing,
821 own_packet);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200822 } else {
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200823 batadv_iv_ogm_aggregate(forw_packet_aggr, packet_buff,
824 packet_len, direct_link);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200825 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
826 }
827}
828
Sven Eckelmann56303d32012-06-05 22:31:31 +0200829static void batadv_iv_ogm_forward(struct batadv_orig_node *orig_node,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200830 const struct ethhdr *ethhdr,
Sven Eckelmann96412692012-06-05 22:31:30 +0200831 struct batadv_ogm_packet *batadv_ogm_packet,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200832 bool is_single_hop_neigh,
833 bool is_from_best_next_hop,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100834 struct batadv_hard_iface *if_incoming,
835 struct batadv_hard_iface *if_outgoing)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200836{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200837 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200838 u16 tvlv_len;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200839
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100840 if (batadv_ogm_packet->ttl <= 1) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200841 batadv_dbg(BATADV_DBG_BATMAN, bat_priv, "ttl exceeded\n");
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200842 return;
843 }
844
Marek Lindner13b25412012-03-11 06:17:53 +0800845 if (!is_from_best_next_hop) {
846 /* Mark the forwarded packet when it is not coming from our
847 * best next hop. We still need to forward the packet for our
848 * neighbor link quality detection to work in case the packet
849 * originated from a single hop neighbor. Otherwise we can
850 * simply drop the ogm.
851 */
852 if (is_single_hop_neigh)
Sven Eckelmann96412692012-06-05 22:31:30 +0200853 batadv_ogm_packet->flags |= BATADV_NOT_BEST_NEXT_HOP;
Marek Lindner13b25412012-03-11 06:17:53 +0800854 else
855 return;
856 }
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200857
Marek Lindneref261572013-04-23 21:39:57 +0800858 tvlv_len = ntohs(batadv_ogm_packet->tvlv_len);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200859
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100860 batadv_ogm_packet->ttl--;
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100861 ether_addr_copy(batadv_ogm_packet->prev_sender, ethhdr->h_source);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200862
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200863 /* apply hop penalty */
Sven Eckelmann96412692012-06-05 22:31:30 +0200864 batadv_ogm_packet->tq = batadv_hop_penalty(batadv_ogm_packet->tq,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200865 bat_priv);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200866
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200867 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200868 "Forwarding packet: tq: %i, ttl: %i\n",
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100869 batadv_ogm_packet->tq, batadv_ogm_packet->ttl);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200870
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200871 /* switch of primaries first hop flag when forwarding */
Sven Eckelmann96412692012-06-05 22:31:30 +0200872 batadv_ogm_packet->flags &= ~BATADV_PRIMARIES_FIRST_HOP;
Marek Lindner75cd33f2012-03-01 15:35:16 +0800873 if (is_single_hop_neigh)
Sven Eckelmann96412692012-06-05 22:31:30 +0200874 batadv_ogm_packet->flags |= BATADV_DIRECTLINK;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200875 else
Sven Eckelmann96412692012-06-05 22:31:30 +0200876 batadv_ogm_packet->flags &= ~BATADV_DIRECTLINK;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200877
Sven Eckelmann96412692012-06-05 22:31:30 +0200878 batadv_iv_ogm_queue_add(bat_priv, (unsigned char *)batadv_ogm_packet,
Marek Lindneref261572013-04-23 21:39:57 +0800879 BATADV_OGM_HLEN + tvlv_len,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100880 if_incoming, if_outgoing, 0,
881 batadv_iv_ogm_fwd_send_time());
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200882}
883
Antonio Quartullid9896612013-04-17 17:44:43 +0200884/**
885 * batadv_iv_ogm_slide_own_bcast_window - bitshift own OGM broadcast windows for
886 * the given interface
887 * @hard_iface: the interface for which the windows have to be shifted
888 */
889static void
890batadv_iv_ogm_slide_own_bcast_window(struct batadv_hard_iface *hard_iface)
891{
892 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
893 struct batadv_hashtable *hash = bat_priv->orig_hash;
894 struct hlist_head *head;
895 struct batadv_orig_node *orig_node;
896 unsigned long *word;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200897 u32 i;
Antonio Quartullid9896612013-04-17 17:44:43 +0200898 size_t word_index;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200899 u8 *w;
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200900 int if_num;
Antonio Quartullid9896612013-04-17 17:44:43 +0200901
902 for (i = 0; i < hash->size; i++) {
903 head = &hash->table[i];
904
905 rcu_read_lock();
906 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200907 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
Antonio Quartullid9896612013-04-17 17:44:43 +0200908 word_index = hard_iface->if_num * BATADV_NUM_WORDS;
Antonio Quartulli32db6aa2014-09-01 14:37:29 +0200909 word = &orig_node->bat_iv.bcast_own[word_index];
Antonio Quartullid9896612013-04-17 17:44:43 +0200910
911 batadv_bit_get_packet(bat_priv, word, 1, 0);
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200912 if_num = hard_iface->if_num;
913 w = &orig_node->bat_iv.bcast_own_sum[if_num];
Antonio Quartullid9896612013-04-17 17:44:43 +0200914 *w = bitmap_weight(word, BATADV_TQ_LOCAL_WINDOW_SIZE);
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200915 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
Antonio Quartullid9896612013-04-17 17:44:43 +0200916 }
917 rcu_read_unlock();
918 }
919}
920
Sven Eckelmann56303d32012-06-05 22:31:31 +0200921static void batadv_iv_ogm_schedule(struct batadv_hard_iface *hard_iface)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200922{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200923 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindner14511512012-08-02 17:20:26 +0200924 unsigned char **ogm_buff = &hard_iface->bat_iv.ogm_buff;
Sven Eckelmann96412692012-06-05 22:31:30 +0200925 struct batadv_ogm_packet *batadv_ogm_packet;
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100926 struct batadv_hard_iface *primary_if, *tmp_hard_iface;
Marek Lindner14511512012-08-02 17:20:26 +0200927 int *ogm_buff_len = &hard_iface->bat_iv.ogm_buff_len;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200928 u32 seqno;
929 u16 tvlv_len = 0;
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100930 unsigned long send_time;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200931
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200932 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200933
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800934 if (hard_iface == primary_if) {
935 /* tt changes have to be committed before the tvlv data is
936 * appended as it may alter the tt tvlv container
937 */
938 batadv_tt_local_commit_changes(bat_priv);
Marek Lindneref261572013-04-23 21:39:57 +0800939 tvlv_len = batadv_tvlv_container_ogm_append(bat_priv, ogm_buff,
940 ogm_buff_len,
941 BATADV_OGM_HLEN);
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800942 }
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800943
Marek Lindner14511512012-08-02 17:20:26 +0200944 batadv_ogm_packet = (struct batadv_ogm_packet *)(*ogm_buff);
Marek Lindneref261572013-04-23 21:39:57 +0800945 batadv_ogm_packet->tvlv_len = htons(tvlv_len);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200946
947 /* change sequence number to network order */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200948 seqno = (u32)atomic_read(&hard_iface->bat_iv.ogm_seqno);
Sven Eckelmannbbb1f902012-07-08 17:13:15 +0200949 batadv_ogm_packet->seqno = htonl(seqno);
Marek Lindner14511512012-08-02 17:20:26 +0200950 atomic_inc(&hard_iface->bat_iv.ogm_seqno);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200951
Antonio Quartullid9896612013-04-17 17:44:43 +0200952 batadv_iv_ogm_slide_own_bcast_window(hard_iface);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200953
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100954 send_time = batadv_iv_ogm_emit_send_time(bat_priv);
955
956 if (hard_iface != primary_if) {
957 /* OGMs from secondary interfaces are only scheduled on their
958 * respective interfaces.
959 */
960 batadv_iv_ogm_queue_add(bat_priv, *ogm_buff, *ogm_buff_len,
961 hard_iface, hard_iface, 1, send_time);
962 goto out;
963 }
964
965 /* OGMs from primary interfaces are scheduled on all
966 * interfaces.
967 */
968 rcu_read_lock();
969 list_for_each_entry_rcu(tmp_hard_iface, &batadv_hardif_list, list) {
970 if (tmp_hard_iface->soft_iface != hard_iface->soft_iface)
971 continue;
972 batadv_iv_ogm_queue_add(bat_priv, *ogm_buff,
973 *ogm_buff_len, hard_iface,
974 tmp_hard_iface, 1, send_time);
975 }
976 rcu_read_unlock();
977
978out:
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200979 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200980 batadv_hardif_free_ref(primary_if);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200981}
982
Simon Wunderlich89652332013-11-13 19:14:46 +0100983/**
984 * batadv_iv_ogm_orig_update - use OGM to update corresponding data in an
985 * originator
986 * @bat_priv: the bat priv with all the soft interface information
987 * @orig_node: the orig node who originally emitted the ogm packet
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100988 * @orig_ifinfo: ifinfo for the outgoing interface of the orig_node
Simon Wunderlich89652332013-11-13 19:14:46 +0100989 * @ethhdr: Ethernet header of the OGM
990 * @batadv_ogm_packet: the ogm packet
991 * @if_incoming: interface where the packet was received
992 * @if_outgoing: interface for which the retransmission should be considered
Simon Wunderlich89652332013-11-13 19:14:46 +0100993 * @dup_status: the duplicate status of this ogm packet.
994 */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200995static void
Sven Eckelmann56303d32012-06-05 22:31:31 +0200996batadv_iv_ogm_orig_update(struct batadv_priv *bat_priv,
997 struct batadv_orig_node *orig_node,
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100998 struct batadv_orig_ifinfo *orig_ifinfo,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200999 const struct ethhdr *ethhdr,
Sven Eckelmann96412692012-06-05 22:31:30 +02001000 const struct batadv_ogm_packet *batadv_ogm_packet,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001001 struct batadv_hard_iface *if_incoming,
Simon Wunderlich89652332013-11-13 19:14:46 +01001002 struct batadv_hard_iface *if_outgoing,
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001003 enum batadv_dup_status dup_status)
Marek Lindnerfc957272011-07-30 12:04:12 +02001004{
Simon Wunderlich89652332013-11-13 19:14:46 +01001005 struct batadv_neigh_ifinfo *neigh_ifinfo = NULL;
1006 struct batadv_neigh_ifinfo *router_ifinfo = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001007 struct batadv_neigh_node *neigh_node = NULL, *tmp_neigh_node = NULL;
1008 struct batadv_neigh_node *router = NULL;
1009 struct batadv_orig_node *orig_node_tmp;
Linus Lüssing7caf69f2012-09-18 03:01:08 +02001010 int if_num;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001011 u8 sum_orig, sum_neigh;
1012 u8 *neigh_addr;
1013 u8 tq_avg;
Marek Lindnerfc957272011-07-30 12:04:12 +02001014
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001015 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001016 "update_originator(): Searching and updating originator entry of received packet\n");
Marek Lindnerfc957272011-07-30 12:04:12 +02001017
1018 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001019 hlist_for_each_entry_rcu(tmp_neigh_node,
Marek Lindnerfc957272011-07-30 12:04:12 +02001020 &orig_node->neigh_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001021 neigh_addr = tmp_neigh_node->addr;
1022 if (batadv_compare_eth(neigh_addr, ethhdr->h_source) &&
1023 tmp_neigh_node->if_incoming == if_incoming &&
1024 atomic_inc_not_zero(&tmp_neigh_node->refcount)) {
Antonio Quartulli38dc40e2013-03-30 17:22:00 +01001025 if (WARN(neigh_node, "too many matching neigh_nodes"))
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001026 batadv_neigh_node_free_ref(neigh_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001027 neigh_node = tmp_neigh_node;
1028 continue;
1029 }
1030
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001031 if (dup_status != BATADV_NO_DUP)
Marek Lindnerfc957272011-07-30 12:04:12 +02001032 continue;
1033
Simon Wunderlich89652332013-11-13 19:14:46 +01001034 /* only update the entry for this outgoing interface */
1035 neigh_ifinfo = batadv_neigh_ifinfo_get(tmp_neigh_node,
1036 if_outgoing);
1037 if (!neigh_ifinfo)
1038 continue;
1039
1040 spin_lock_bh(&tmp_neigh_node->ifinfo_lock);
1041 batadv_ring_buffer_set(neigh_ifinfo->bat_iv.tq_recv,
1042 &neigh_ifinfo->bat_iv.tq_index, 0);
1043 tq_avg = batadv_ring_buffer_avg(neigh_ifinfo->bat_iv.tq_recv);
1044 neigh_ifinfo->bat_iv.tq_avg = tq_avg;
1045 spin_unlock_bh(&tmp_neigh_node->ifinfo_lock);
1046
1047 batadv_neigh_ifinfo_free_ref(neigh_ifinfo);
1048 neigh_ifinfo = NULL;
Marek Lindnerfc957272011-07-30 12:04:12 +02001049 }
1050
1051 if (!neigh_node) {
Sven Eckelmann56303d32012-06-05 22:31:31 +02001052 struct batadv_orig_node *orig_tmp;
Marek Lindnerfc957272011-07-30 12:04:12 +02001053
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001054 orig_tmp = batadv_iv_ogm_orig_get(bat_priv, ethhdr->h_source);
Marek Lindnerfc957272011-07-30 12:04:12 +02001055 if (!orig_tmp)
1056 goto unlock;
1057
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001058 neigh_node = batadv_iv_ogm_neigh_new(if_incoming,
1059 ethhdr->h_source,
Antonio Quartulli863dd7a2013-03-25 13:49:46 +01001060 orig_node, orig_tmp);
Marek Lindnerfc957272011-07-30 12:04:12 +02001061
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001062 batadv_orig_node_free_ref(orig_tmp);
Marek Lindnerfc957272011-07-30 12:04:12 +02001063 if (!neigh_node)
1064 goto unlock;
Markus Pargmann23badd62014-12-26 12:41:33 +01001065 } else {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001066 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001067 "Updating existing last-hop neighbor of originator\n");
Markus Pargmann23badd62014-12-26 12:41:33 +01001068 }
Marek Lindnerfc957272011-07-30 12:04:12 +02001069
1070 rcu_read_unlock();
Simon Wunderlich89652332013-11-13 19:14:46 +01001071 neigh_ifinfo = batadv_neigh_ifinfo_new(neigh_node, if_outgoing);
1072 if (!neigh_ifinfo)
1073 goto out;
Marek Lindnerfc957272011-07-30 12:04:12 +02001074
Marek Lindnerd7b2a972012-03-01 15:35:19 +08001075 neigh_node->last_seen = jiffies;
Marek Lindnerfc957272011-07-30 12:04:12 +02001076
Simon Wunderlich89652332013-11-13 19:14:46 +01001077 spin_lock_bh(&neigh_node->ifinfo_lock);
1078 batadv_ring_buffer_set(neigh_ifinfo->bat_iv.tq_recv,
1079 &neigh_ifinfo->bat_iv.tq_index,
Sven Eckelmann96412692012-06-05 22:31:30 +02001080 batadv_ogm_packet->tq);
Simon Wunderlich89652332013-11-13 19:14:46 +01001081 tq_avg = batadv_ring_buffer_avg(neigh_ifinfo->bat_iv.tq_recv);
1082 neigh_ifinfo->bat_iv.tq_avg = tq_avg;
1083 spin_unlock_bh(&neigh_node->ifinfo_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +02001084
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001085 if (dup_status == BATADV_NO_DUP) {
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001086 orig_ifinfo->last_ttl = batadv_ogm_packet->ttl;
Simon Wunderlich89652332013-11-13 19:14:46 +01001087 neigh_ifinfo->last_ttl = batadv_ogm_packet->ttl;
Marek Lindnerfc957272011-07-30 12:04:12 +02001088 }
1089
Marek Lindnerfc957272011-07-30 12:04:12 +02001090 /* if this neighbor already is our next hop there is nothing
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001091 * to change
1092 */
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001093 router = batadv_orig_router_get(orig_node, if_outgoing);
Marek Lindnerfc957272011-07-30 12:04:12 +02001094 if (router == neigh_node)
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001095 goto out;
Marek Lindnerfc957272011-07-30 12:04:12 +02001096
Simon Wunderlich89652332013-11-13 19:14:46 +01001097 if (router) {
1098 router_ifinfo = batadv_neigh_ifinfo_get(router, if_outgoing);
1099 if (!router_ifinfo)
1100 goto out;
1101
1102 /* if this neighbor does not offer a better TQ we won't
1103 * consider it
1104 */
1105 if (router_ifinfo->bat_iv.tq_avg > neigh_ifinfo->bat_iv.tq_avg)
1106 goto out;
1107 }
Marek Lindnerfc957272011-07-30 12:04:12 +02001108
1109 /* if the TQ is the same and the link not more symmetric we
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001110 * won't consider it either
1111 */
Simon Wunderlich89652332013-11-13 19:14:46 +01001112 if (router_ifinfo &&
Markus Pargmann01b97a32014-12-26 12:41:30 +01001113 neigh_ifinfo->bat_iv.tq_avg == router_ifinfo->bat_iv.tq_avg) {
Marek Lindnerfc957272011-07-30 12:04:12 +02001114 orig_node_tmp = router->orig_node;
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001115 spin_lock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock);
Linus Lüssing7caf69f2012-09-18 03:01:08 +02001116 if_num = router->if_incoming->if_num;
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001117 sum_orig = orig_node_tmp->bat_iv.bcast_own_sum[if_num];
1118 spin_unlock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +02001119
1120 orig_node_tmp = neigh_node->orig_node;
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001121 spin_lock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock);
Linus Lüssing7caf69f2012-09-18 03:01:08 +02001122 if_num = neigh_node->if_incoming->if_num;
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001123 sum_neigh = orig_node_tmp->bat_iv.bcast_own_sum[if_num];
1124 spin_unlock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +02001125
Sven Eckelmannbbb1f902012-07-08 17:13:15 +02001126 if (sum_orig >= sum_neigh)
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001127 goto out;
Marek Lindnerfc957272011-07-30 12:04:12 +02001128 }
1129
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001130 batadv_update_route(bat_priv, orig_node, if_outgoing, neigh_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001131 goto out;
1132
1133unlock:
1134 rcu_read_unlock();
1135out:
1136 if (neigh_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001137 batadv_neigh_node_free_ref(neigh_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001138 if (router)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001139 batadv_neigh_node_free_ref(router);
Simon Wunderlich89652332013-11-13 19:14:46 +01001140 if (neigh_ifinfo)
1141 batadv_neigh_ifinfo_free_ref(neigh_ifinfo);
1142 if (router_ifinfo)
1143 batadv_neigh_ifinfo_free_ref(router_ifinfo);
Marek Lindnerfc957272011-07-30 12:04:12 +02001144}
1145
Simon Wunderlich89652332013-11-13 19:14:46 +01001146/**
1147 * batadv_iv_ogm_calc_tq - calculate tq for current received ogm packet
1148 * @orig_node: the orig node who originally emitted the ogm packet
1149 * @orig_neigh_node: the orig node struct of the neighbor who sent the packet
1150 * @batadv_ogm_packet: the ogm packet
1151 * @if_incoming: interface where the packet was received
1152 * @if_outgoing: interface for which the retransmission should be considered
1153 *
1154 * Returns 1 if the link can be considered bidirectional, 0 otherwise
1155 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001156static int batadv_iv_ogm_calc_tq(struct batadv_orig_node *orig_node,
1157 struct batadv_orig_node *orig_neigh_node,
Sven Eckelmann96412692012-06-05 22:31:30 +02001158 struct batadv_ogm_packet *batadv_ogm_packet,
Simon Wunderlich89652332013-11-13 19:14:46 +01001159 struct batadv_hard_iface *if_incoming,
1160 struct batadv_hard_iface *if_outgoing)
Marek Lindnerfc957272011-07-30 12:04:12 +02001161{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001162 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
1163 struct batadv_neigh_node *neigh_node = NULL, *tmp_neigh_node;
Simon Wunderlich89652332013-11-13 19:14:46 +01001164 struct batadv_neigh_ifinfo *neigh_ifinfo;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001165 u8 total_count;
1166 u8 orig_eq_count, neigh_rq_count, neigh_rq_inv, tq_own;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001167 unsigned int neigh_rq_inv_cube, neigh_rq_max_cube;
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001168 int tq_asym_penalty, inv_asym_penalty, if_num, ret = 0;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001169 unsigned int combined_tq;
Simon Wunderlichc0398762013-11-13 19:14:48 +01001170 int tq_iface_penalty;
Marek Lindnerfc957272011-07-30 12:04:12 +02001171
1172 /* find corresponding one hop neighbor */
1173 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001174 hlist_for_each_entry_rcu(tmp_neigh_node,
Marek Lindnerfc957272011-07-30 12:04:12 +02001175 &orig_neigh_node->neigh_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001176 if (!batadv_compare_eth(tmp_neigh_node->addr,
1177 orig_neigh_node->orig))
Marek Lindnerfc957272011-07-30 12:04:12 +02001178 continue;
1179
1180 if (tmp_neigh_node->if_incoming != if_incoming)
1181 continue;
1182
1183 if (!atomic_inc_not_zero(&tmp_neigh_node->refcount))
1184 continue;
1185
1186 neigh_node = tmp_neigh_node;
1187 break;
1188 }
1189 rcu_read_unlock();
1190
1191 if (!neigh_node)
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001192 neigh_node = batadv_iv_ogm_neigh_new(if_incoming,
1193 orig_neigh_node->orig,
1194 orig_neigh_node,
Antonio Quartulli863dd7a2013-03-25 13:49:46 +01001195 orig_neigh_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001196
1197 if (!neigh_node)
1198 goto out;
1199
Marek Lindnerd7b2a972012-03-01 15:35:19 +08001200 /* if orig_node is direct neighbor update neigh_node last_seen */
Marek Lindnerfc957272011-07-30 12:04:12 +02001201 if (orig_node == orig_neigh_node)
Marek Lindnerd7b2a972012-03-01 15:35:19 +08001202 neigh_node->last_seen = jiffies;
Marek Lindnerfc957272011-07-30 12:04:12 +02001203
Marek Lindnerd7b2a972012-03-01 15:35:19 +08001204 orig_node->last_seen = jiffies;
Marek Lindnerfc957272011-07-30 12:04:12 +02001205
1206 /* find packet count of corresponding one hop neighbor */
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001207 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
1208 if_num = if_incoming->if_num;
1209 orig_eq_count = orig_neigh_node->bat_iv.bcast_own_sum[if_num];
Simon Wunderlich89652332013-11-13 19:14:46 +01001210 neigh_ifinfo = batadv_neigh_ifinfo_new(neigh_node, if_outgoing);
1211 if (neigh_ifinfo) {
1212 neigh_rq_count = neigh_ifinfo->bat_iv.real_packet_count;
1213 batadv_neigh_ifinfo_free_ref(neigh_ifinfo);
1214 } else {
1215 neigh_rq_count = 0;
1216 }
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001217 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +02001218
1219 /* pay attention to not get a value bigger than 100 % */
Sven Eckelmannc67893d2012-07-08 18:33:51 +02001220 if (orig_eq_count > neigh_rq_count)
1221 total_count = neigh_rq_count;
1222 else
1223 total_count = orig_eq_count;
Marek Lindnerfc957272011-07-30 12:04:12 +02001224
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001225 /* if we have too few packets (too less data) we set tq_own to zero
1226 * if we receive too few packets it is not considered bidirectional
1227 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001228 if (total_count < BATADV_TQ_LOCAL_BIDRECT_SEND_MINIMUM ||
1229 neigh_rq_count < BATADV_TQ_LOCAL_BIDRECT_RECV_MINIMUM)
Marek Lindnerfc957272011-07-30 12:04:12 +02001230 tq_own = 0;
1231 else
1232 /* neigh_node->real_packet_count is never zero as we
1233 * only purge old information when getting new
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001234 * information
1235 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001236 tq_own = (BATADV_TQ_MAX_VALUE * total_count) / neigh_rq_count;
Marek Lindnerfc957272011-07-30 12:04:12 +02001237
Sven Eckelmann21a12362012-03-07 09:07:46 +01001238 /* 1 - ((1-x) ** 3), normalized to TQ_MAX_VALUE this does
Marek Lindnerfc957272011-07-30 12:04:12 +02001239 * affect the nearly-symmetric links only a little, but
1240 * punishes asymmetric links more. This will give a value
1241 * between 0 and TQ_MAX_VALUE
1242 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001243 neigh_rq_inv = BATADV_TQ_LOCAL_WINDOW_SIZE - neigh_rq_count;
1244 neigh_rq_inv_cube = neigh_rq_inv * neigh_rq_inv * neigh_rq_inv;
1245 neigh_rq_max_cube = BATADV_TQ_LOCAL_WINDOW_SIZE *
1246 BATADV_TQ_LOCAL_WINDOW_SIZE *
1247 BATADV_TQ_LOCAL_WINDOW_SIZE;
1248 inv_asym_penalty = BATADV_TQ_MAX_VALUE * neigh_rq_inv_cube;
1249 inv_asym_penalty /= neigh_rq_max_cube;
1250 tq_asym_penalty = BATADV_TQ_MAX_VALUE - inv_asym_penalty;
Marek Lindnerfc957272011-07-30 12:04:12 +02001251
Simon Wunderlichc0398762013-11-13 19:14:48 +01001252 /* penalize if the OGM is forwarded on the same interface. WiFi
1253 * interfaces and other half duplex devices suffer from throughput
1254 * drops as they can't send and receive at the same time.
1255 */
1256 tq_iface_penalty = BATADV_TQ_MAX_VALUE;
1257 if (if_outgoing && (if_incoming == if_outgoing) &&
1258 batadv_is_wifi_netdev(if_outgoing->net_dev))
1259 tq_iface_penalty = batadv_hop_penalty(BATADV_TQ_MAX_VALUE,
1260 bat_priv);
1261
1262 combined_tq = batadv_ogm_packet->tq *
1263 tq_own *
1264 tq_asym_penalty *
1265 tq_iface_penalty;
1266 combined_tq /= BATADV_TQ_MAX_VALUE *
1267 BATADV_TQ_MAX_VALUE *
1268 BATADV_TQ_MAX_VALUE;
Sven Eckelmann96412692012-06-05 22:31:30 +02001269 batadv_ogm_packet->tq = combined_tq;
Marek Lindnerfc957272011-07-30 12:04:12 +02001270
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001271 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Simon Wunderlichc0398762013-11-13 19:14:48 +01001272 "bidirectional: orig = %-15pM neigh = %-15pM => own_bcast = %2i, real recv = %2i, local tq: %3i, asym_penalty: %3i, iface_penalty: %3i, total tq: %3i, if_incoming = %s, if_outgoing = %s\n",
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001273 orig_node->orig, orig_neigh_node->orig, total_count,
Simon Wunderlichc0398762013-11-13 19:14:48 +01001274 neigh_rq_count, tq_own, tq_asym_penalty, tq_iface_penalty,
1275 batadv_ogm_packet->tq, if_incoming->net_dev->name,
1276 if_outgoing ? if_outgoing->net_dev->name : "DEFAULT");
Marek Lindnerfc957272011-07-30 12:04:12 +02001277
1278 /* if link has the minimum required transmission quality
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001279 * consider it bidirectional
1280 */
Sven Eckelmann96412692012-06-05 22:31:30 +02001281 if (batadv_ogm_packet->tq >= BATADV_TQ_TOTAL_BIDRECT_LIMIT)
Marek Lindnerfc957272011-07-30 12:04:12 +02001282 ret = 1;
1283
1284out:
1285 if (neigh_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001286 batadv_neigh_node_free_ref(neigh_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001287 return ret;
1288}
1289
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001290/**
1291 * batadv_iv_ogm_update_seqnos - process a batman packet for all interfaces,
1292 * adjust the sequence number and find out whether it is a duplicate
1293 * @ethhdr: ethernet header of the packet
1294 * @batadv_ogm_packet: OGM packet to be considered
1295 * @if_incoming: interface on which the OGM packet was received
Simon Wunderlich89652332013-11-13 19:14:46 +01001296 * @if_outgoing: interface for which the retransmission should be considered
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001297 *
1298 * Returns duplicate status as enum batadv_dup_status
Marek Lindnerfc957272011-07-30 12:04:12 +02001299 */
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001300static enum batadv_dup_status
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001301batadv_iv_ogm_update_seqnos(const struct ethhdr *ethhdr,
Sven Eckelmann96412692012-06-05 22:31:30 +02001302 const struct batadv_ogm_packet *batadv_ogm_packet,
Simon Wunderlich89652332013-11-13 19:14:46 +01001303 const struct batadv_hard_iface *if_incoming,
1304 struct batadv_hard_iface *if_outgoing)
Marek Lindnerfc957272011-07-30 12:04:12 +02001305{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001306 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
1307 struct batadv_orig_node *orig_node;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001308 struct batadv_orig_ifinfo *orig_ifinfo = NULL;
Simon Wunderlich89652332013-11-13 19:14:46 +01001309 struct batadv_neigh_node *neigh_node;
1310 struct batadv_neigh_ifinfo *neigh_ifinfo;
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001311 int is_dup;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001312 s32 seq_diff;
Marek Lindnerfc957272011-07-30 12:04:12 +02001313 int need_update = 0;
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001314 int set_mark;
1315 enum batadv_dup_status ret = BATADV_NO_DUP;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001316 u32 seqno = ntohl(batadv_ogm_packet->seqno);
1317 u8 *neigh_addr;
1318 u8 packet_count;
Antonio Quartulli0538f752013-09-02 12:15:01 +02001319 unsigned long *bitmap;
Marek Lindnerfc957272011-07-30 12:04:12 +02001320
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001321 orig_node = batadv_iv_ogm_orig_get(bat_priv, batadv_ogm_packet->orig);
Marek Lindnerfc957272011-07-30 12:04:12 +02001322 if (!orig_node)
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001323 return BATADV_NO_DUP;
Marek Lindnerfc957272011-07-30 12:04:12 +02001324
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001325 orig_ifinfo = batadv_orig_ifinfo_new(orig_node, if_outgoing);
1326 if (WARN_ON(!orig_ifinfo)) {
1327 batadv_orig_node_free_ref(orig_node);
1328 return 0;
1329 }
1330
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001331 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001332 seq_diff = seqno - orig_ifinfo->last_real_seqno;
Marek Lindnerfc957272011-07-30 12:04:12 +02001333
1334 /* signalize caller that the packet is to be dropped. */
Antonio Quartulli1e5cc262012-02-26 15:39:42 +01001335 if (!hlist_empty(&orig_node->neigh_list) &&
Sven Eckelmann30d3c512012-05-12 02:09:36 +02001336 batadv_window_protected(bat_priv, seq_diff,
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001337 &orig_ifinfo->batman_seqno_reset)) {
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001338 ret = BATADV_PROTECTED;
Marek Lindnerfc957272011-07-30 12:04:12 +02001339 goto out;
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001340 }
Marek Lindnerfc957272011-07-30 12:04:12 +02001341
1342 rcu_read_lock();
Simon Wunderlich89652332013-11-13 19:14:46 +01001343 hlist_for_each_entry_rcu(neigh_node, &orig_node->neigh_list, list) {
1344 neigh_ifinfo = batadv_neigh_ifinfo_new(neigh_node,
1345 if_outgoing);
1346 if (!neigh_ifinfo)
1347 continue;
1348
1349 neigh_addr = neigh_node->addr;
1350 is_dup = batadv_test_bit(neigh_ifinfo->bat_iv.real_bits,
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001351 orig_ifinfo->last_real_seqno,
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001352 seqno);
1353
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001354 if (batadv_compare_eth(neigh_addr, ethhdr->h_source) &&
Simon Wunderlich89652332013-11-13 19:14:46 +01001355 neigh_node->if_incoming == if_incoming) {
Marek Lindnerfc957272011-07-30 12:04:12 +02001356 set_mark = 1;
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001357 if (is_dup)
1358 ret = BATADV_NEIGH_DUP;
1359 } else {
Marek Lindnerfc957272011-07-30 12:04:12 +02001360 set_mark = 0;
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001361 if (is_dup && (ret != BATADV_NEIGH_DUP))
1362 ret = BATADV_ORIG_DUP;
1363 }
Marek Lindnerfc957272011-07-30 12:04:12 +02001364
1365 /* if the window moved, set the update flag. */
Simon Wunderlich89652332013-11-13 19:14:46 +01001366 bitmap = neigh_ifinfo->bat_iv.real_bits;
Antonio Quartulli0538f752013-09-02 12:15:01 +02001367 need_update |= batadv_bit_get_packet(bat_priv, bitmap,
Sven Eckelmann0f5f9322012-05-12 02:09:25 +02001368 seq_diff, set_mark);
Marek Lindnerfc957272011-07-30 12:04:12 +02001369
Simon Wunderlich89652332013-11-13 19:14:46 +01001370 packet_count = bitmap_weight(bitmap,
Sven Eckelmannbbb1f902012-07-08 17:13:15 +02001371 BATADV_TQ_LOCAL_WINDOW_SIZE);
Simon Wunderlich89652332013-11-13 19:14:46 +01001372 neigh_ifinfo->bat_iv.real_packet_count = packet_count;
1373 batadv_neigh_ifinfo_free_ref(neigh_ifinfo);
Marek Lindnerfc957272011-07-30 12:04:12 +02001374 }
1375 rcu_read_unlock();
1376
1377 if (need_update) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001378 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001379 "%s updating last_seqno: old %u, new %u\n",
1380 if_outgoing ? if_outgoing->net_dev->name : "DEFAULT",
1381 orig_ifinfo->last_real_seqno, seqno);
1382 orig_ifinfo->last_real_seqno = seqno;
Marek Lindnerfc957272011-07-30 12:04:12 +02001383 }
1384
Marek Lindnerfc957272011-07-30 12:04:12 +02001385out:
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001386 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001387 batadv_orig_node_free_ref(orig_node);
Sven Eckelmanna0c77222015-03-01 16:56:26 +01001388 batadv_orig_ifinfo_free_ref(orig_ifinfo);
Marek Lindnerfc957272011-07-30 12:04:12 +02001389 return ret;
1390}
1391
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001392/**
1393 * batadv_iv_ogm_process_per_outif - process a batman iv OGM for an outgoing if
1394 * @skb: the skb containing the OGM
Martin Hundebøll95298a92014-07-15 09:41:05 +02001395 * @ogm_offset: offset from skb->data to start of ogm header
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001396 * @orig_node: the (cached) orig node for the originator of this OGM
1397 * @if_incoming: the interface where this packet was received
1398 * @if_outgoing: the interface for which the packet should be considered
1399 */
1400static void
1401batadv_iv_ogm_process_per_outif(const struct sk_buff *skb, int ogm_offset,
1402 struct batadv_orig_node *orig_node,
1403 struct batadv_hard_iface *if_incoming,
1404 struct batadv_hard_iface *if_outgoing)
1405{
1406 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
1407 struct batadv_neigh_node *router = NULL, *router_router = NULL;
1408 struct batadv_orig_node *orig_neigh_node;
1409 struct batadv_orig_ifinfo *orig_ifinfo;
1410 struct batadv_neigh_node *orig_neigh_router = NULL;
1411 struct batadv_neigh_ifinfo *router_ifinfo = NULL;
1412 struct batadv_ogm_packet *ogm_packet;
1413 enum batadv_dup_status dup_status;
1414 bool is_from_best_next_hop = false;
1415 bool is_single_hop_neigh = false;
1416 bool sameseq, similar_ttl;
1417 struct sk_buff *skb_priv;
1418 struct ethhdr *ethhdr;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001419 u8 *prev_sender;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001420 int is_bidirect;
1421
1422 /* create a private copy of the skb, as some functions change tq value
1423 * and/or flags.
1424 */
1425 skb_priv = skb_copy(skb, GFP_ATOMIC);
1426 if (!skb_priv)
1427 return;
1428
1429 ethhdr = eth_hdr(skb_priv);
1430 ogm_packet = (struct batadv_ogm_packet *)(skb_priv->data + ogm_offset);
1431
1432 dup_status = batadv_iv_ogm_update_seqnos(ethhdr, ogm_packet,
1433 if_incoming, if_outgoing);
1434 if (batadv_compare_eth(ethhdr->h_source, ogm_packet->orig))
1435 is_single_hop_neigh = true;
1436
1437 if (dup_status == BATADV_PROTECTED) {
1438 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1439 "Drop packet: packet within seqno protection time (sender: %pM)\n",
1440 ethhdr->h_source);
1441 goto out;
1442 }
1443
1444 if (ogm_packet->tq == 0) {
1445 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1446 "Drop packet: originator packet with tq equal 0\n");
1447 goto out;
1448 }
1449
1450 router = batadv_orig_router_get(orig_node, if_outgoing);
1451 if (router) {
1452 router_router = batadv_orig_router_get(router->orig_node,
1453 if_outgoing);
1454 router_ifinfo = batadv_neigh_ifinfo_get(router, if_outgoing);
1455 }
1456
1457 if ((router_ifinfo && router_ifinfo->bat_iv.tq_avg != 0) &&
1458 (batadv_compare_eth(router->addr, ethhdr->h_source)))
1459 is_from_best_next_hop = true;
1460
1461 prev_sender = ogm_packet->prev_sender;
1462 /* avoid temporary routing loops */
1463 if (router && router_router &&
1464 (batadv_compare_eth(router->addr, prev_sender)) &&
1465 !(batadv_compare_eth(ogm_packet->orig, prev_sender)) &&
1466 (batadv_compare_eth(router->addr, router_router->addr))) {
1467 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1468 "Drop packet: ignoring all rebroadcast packets that may make me loop (sender: %pM)\n",
1469 ethhdr->h_source);
1470 goto out;
1471 }
1472
1473 if (if_outgoing == BATADV_IF_DEFAULT)
1474 batadv_tvlv_ogm_receive(bat_priv, ogm_packet, orig_node);
1475
1476 /* if sender is a direct neighbor the sender mac equals
1477 * originator mac
1478 */
1479 if (is_single_hop_neigh)
1480 orig_neigh_node = orig_node;
1481 else
1482 orig_neigh_node = batadv_iv_ogm_orig_get(bat_priv,
1483 ethhdr->h_source);
1484
1485 if (!orig_neigh_node)
1486 goto out;
1487
1488 /* Update nc_nodes of the originator */
1489 batadv_nc_update_nc_node(bat_priv, orig_node, orig_neigh_node,
1490 ogm_packet, is_single_hop_neigh);
1491
1492 orig_neigh_router = batadv_orig_router_get(orig_neigh_node,
1493 if_outgoing);
1494
1495 /* drop packet if sender is not a direct neighbor and if we
1496 * don't route towards it
1497 */
1498 if (!is_single_hop_neigh && (!orig_neigh_router)) {
1499 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1500 "Drop packet: OGM via unknown neighbor!\n");
1501 goto out_neigh;
1502 }
1503
1504 is_bidirect = batadv_iv_ogm_calc_tq(orig_node, orig_neigh_node,
1505 ogm_packet, if_incoming,
1506 if_outgoing);
1507
1508 /* update ranking if it is not a duplicate or has the same
1509 * seqno and similar ttl as the non-duplicate
1510 */
1511 orig_ifinfo = batadv_orig_ifinfo_new(orig_node, if_outgoing);
1512 if (!orig_ifinfo)
1513 goto out_neigh;
1514
1515 sameseq = orig_ifinfo->last_real_seqno == ntohl(ogm_packet->seqno);
1516 similar_ttl = (orig_ifinfo->last_ttl - 3) <= ogm_packet->ttl;
1517
1518 if (is_bidirect && ((dup_status == BATADV_NO_DUP) ||
1519 (sameseq && similar_ttl))) {
1520 batadv_iv_ogm_orig_update(bat_priv, orig_node,
1521 orig_ifinfo, ethhdr,
1522 ogm_packet, if_incoming,
1523 if_outgoing, dup_status);
1524 }
1525 batadv_orig_ifinfo_free_ref(orig_ifinfo);
1526
Simon Wunderlichef0a9372013-11-13 19:14:49 +01001527 /* only forward for specific interface, not for the default one. */
1528 if (if_outgoing == BATADV_IF_DEFAULT)
1529 goto out_neigh;
1530
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001531 /* is single hop (direct) neighbor */
1532 if (is_single_hop_neigh) {
1533 /* OGMs from secondary interfaces should only scheduled once
1534 * per interface where it has been received, not multiple times
1535 */
1536 if ((ogm_packet->ttl <= 2) &&
1537 (if_incoming != if_outgoing)) {
1538 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1539 "Drop packet: OGM from secondary interface and wrong outgoing interface\n");
1540 goto out_neigh;
1541 }
1542 /* mark direct link on incoming interface */
1543 batadv_iv_ogm_forward(orig_node, ethhdr, ogm_packet,
1544 is_single_hop_neigh,
Simon Wunderlichef0a9372013-11-13 19:14:49 +01001545 is_from_best_next_hop, if_incoming,
1546 if_outgoing);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001547
1548 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1549 "Forwarding packet: rebroadcast neighbor packet with direct link flag\n");
1550 goto out_neigh;
1551 }
1552
1553 /* multihop originator */
1554 if (!is_bidirect) {
1555 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1556 "Drop packet: not received via bidirectional link\n");
1557 goto out_neigh;
1558 }
1559
1560 if (dup_status == BATADV_NEIGH_DUP) {
1561 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1562 "Drop packet: duplicate packet received\n");
1563 goto out_neigh;
1564 }
1565
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001566 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1567 "Forwarding packet: rebroadcast originator packet\n");
1568 batadv_iv_ogm_forward(orig_node, ethhdr, ogm_packet,
1569 is_single_hop_neigh, is_from_best_next_hop,
Simon Wunderlichef0a9372013-11-13 19:14:49 +01001570 if_incoming, if_outgoing);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001571
1572out_neigh:
1573 if ((orig_neigh_node) && (!is_single_hop_neigh))
1574 batadv_orig_node_free_ref(orig_neigh_node);
1575out:
Simon Wunderlichc1e517f2014-03-26 15:46:21 +01001576 if (router_ifinfo)
1577 batadv_neigh_ifinfo_free_ref(router_ifinfo);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001578 if (router)
1579 batadv_neigh_node_free_ref(router);
1580 if (router_router)
1581 batadv_neigh_node_free_ref(router_router);
1582 if (orig_neigh_router)
1583 batadv_neigh_node_free_ref(orig_neigh_router);
1584
1585 kfree_skb(skb_priv);
1586}
1587
1588/**
1589 * batadv_iv_ogm_process - process an incoming batman iv OGM
1590 * @skb: the skb containing the OGM
1591 * @ogm_offset: offset to the OGM which should be processed (for aggregates)
1592 * @if_incoming: the interface where this packet was receved
1593 */
1594static void batadv_iv_ogm_process(const struct sk_buff *skb, int ogm_offset,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001595 struct batadv_hard_iface *if_incoming)
Marek Lindnerfc957272011-07-30 12:04:12 +02001596{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001597 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001598 struct batadv_orig_node *orig_neigh_node, *orig_node;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001599 struct batadv_hard_iface *hard_iface;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001600 struct batadv_ogm_packet *ogm_packet;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001601 u32 if_incoming_seqno;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001602 bool has_directlink_flag;
1603 struct ethhdr *ethhdr;
1604 bool is_my_oldorig = false;
1605 bool is_my_addr = false;
1606 bool is_my_orig = false;
1607
1608 ogm_packet = (struct batadv_ogm_packet *)(skb->data + ogm_offset);
1609 ethhdr = eth_hdr(skb);
Marek Lindnerfc957272011-07-30 12:04:12 +02001610
1611 /* Silently drop when the batman packet is actually not a
1612 * correct packet.
1613 *
1614 * This might happen if a packet is padded (e.g. Ethernet has a
1615 * minimum frame length of 64 byte) and the aggregation interprets
1616 * it as an additional length.
1617 *
1618 * TODO: A more sane solution would be to have a bit in the
Sven Eckelmann96412692012-06-05 22:31:30 +02001619 * batadv_ogm_packet to detect whether the packet is the last
Marek Lindnerfc957272011-07-30 12:04:12 +02001620 * packet in an aggregation. Here we expect that the padding
1621 * is always zero (or not 0x01)
1622 */
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001623 if (ogm_packet->packet_type != BATADV_IV_OGM)
Marek Lindnerfc957272011-07-30 12:04:12 +02001624 return;
1625
1626 /* could be changed by schedule_own_packet() */
Marek Lindner14511512012-08-02 17:20:26 +02001627 if_incoming_seqno = atomic_read(&if_incoming->bat_iv.ogm_seqno);
Marek Lindnerfc957272011-07-30 12:04:12 +02001628
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001629 if (ogm_packet->flags & BATADV_DIRECTLINK)
1630 has_directlink_flag = true;
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001631 else
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001632 has_directlink_flag = false;
Marek Lindnerfc957272011-07-30 12:04:12 +02001633
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001634 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001635 "Received BATMAN packet via NB: %pM, IF: %s [%pM] (from OG: %pM, via prev OG: %pM, seqno %u, tq %d, TTL %d, V %d, IDF %d)\n",
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001636 ethhdr->h_source, if_incoming->net_dev->name,
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001637 if_incoming->net_dev->dev_addr, ogm_packet->orig,
1638 ogm_packet->prev_sender, ntohl(ogm_packet->seqno),
1639 ogm_packet->tq, ogm_packet->ttl,
1640 ogm_packet->version, has_directlink_flag);
Marek Lindnerfc957272011-07-30 12:04:12 +02001641
1642 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +02001643 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Sven Eckelmanne9a4f292012-06-03 22:19:19 +02001644 if (hard_iface->if_status != BATADV_IF_ACTIVE)
Marek Lindnerfc957272011-07-30 12:04:12 +02001645 continue;
1646
1647 if (hard_iface->soft_iface != if_incoming->soft_iface)
1648 continue;
1649
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001650 if (batadv_compare_eth(ethhdr->h_source,
1651 hard_iface->net_dev->dev_addr))
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001652 is_my_addr = true;
Marek Lindnerfc957272011-07-30 12:04:12 +02001653
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001654 if (batadv_compare_eth(ogm_packet->orig,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001655 hard_iface->net_dev->dev_addr))
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001656 is_my_orig = true;
Marek Lindnerfc957272011-07-30 12:04:12 +02001657
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001658 if (batadv_compare_eth(ogm_packet->prev_sender,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001659 hard_iface->net_dev->dev_addr))
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001660 is_my_oldorig = true;
Marek Lindnerfc957272011-07-30 12:04:12 +02001661 }
1662 rcu_read_unlock();
1663
Marek Lindnerfc957272011-07-30 12:04:12 +02001664 if (is_my_addr) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001665 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001666 "Drop packet: received my own broadcast (sender: %pM)\n",
1667 ethhdr->h_source);
Marek Lindnerfc957272011-07-30 12:04:12 +02001668 return;
1669 }
1670
Marek Lindnerfc957272011-07-30 12:04:12 +02001671 if (is_my_orig) {
1672 unsigned long *word;
1673 int offset;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001674 s32 bit_pos;
1675 s16 if_num;
1676 u8 *weight;
Marek Lindnerfc957272011-07-30 12:04:12 +02001677
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001678 orig_neigh_node = batadv_iv_ogm_orig_get(bat_priv,
1679 ethhdr->h_source);
Marek Lindnerfc957272011-07-30 12:04:12 +02001680 if (!orig_neigh_node)
1681 return;
1682
1683 /* neighbor has to indicate direct link and it has to
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001684 * come via the corresponding interface
1685 * save packet seqno for bidirectional check
1686 */
Marek Lindnerfc957272011-07-30 12:04:12 +02001687 if (has_directlink_flag &&
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001688 batadv_compare_eth(if_incoming->net_dev->dev_addr,
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001689 ogm_packet->orig)) {
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001690 if_num = if_incoming->if_num;
1691 offset = if_num * BATADV_NUM_WORDS;
Marek Lindnerfc957272011-07-30 12:04:12 +02001692
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001693 spin_lock_bh(&orig_neigh_node->bat_iv.ogm_cnt_lock);
Antonio Quartulli32db6aa2014-09-01 14:37:29 +02001694 word = &orig_neigh_node->bat_iv.bcast_own[offset];
Sven Eckelmann9b4a1152012-05-12 13:48:53 +02001695 bit_pos = if_incoming_seqno - 2;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001696 bit_pos -= ntohl(ogm_packet->seqno);
Sven Eckelmann9b4a1152012-05-12 13:48:53 +02001697 batadv_set_bit(word, bit_pos);
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001698 weight = &orig_neigh_node->bat_iv.bcast_own_sum[if_num];
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001699 *weight = bitmap_weight(word,
1700 BATADV_TQ_LOCAL_WINDOW_SIZE);
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001701 spin_unlock_bh(&orig_neigh_node->bat_iv.ogm_cnt_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +02001702 }
1703
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001704 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001705 "Drop packet: originator packet from myself (via neighbor)\n");
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001706 batadv_orig_node_free_ref(orig_neigh_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001707 return;
1708 }
1709
1710 if (is_my_oldorig) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001711 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001712 "Drop packet: ignoring all rebroadcast echos (sender: %pM)\n",
1713 ethhdr->h_source);
Marek Lindnerfc957272011-07-30 12:04:12 +02001714 return;
1715 }
1716
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001717 if (ogm_packet->flags & BATADV_NOT_BEST_NEXT_HOP) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001718 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001719 "Drop packet: ignoring all packets not forwarded from the best next hop (sender: %pM)\n",
1720 ethhdr->h_source);
Marek Lindner13b25412012-03-11 06:17:53 +08001721 return;
1722 }
1723
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001724 orig_node = batadv_iv_ogm_orig_get(bat_priv, ogm_packet->orig);
Marek Lindnerfc957272011-07-30 12:04:12 +02001725 if (!orig_node)
1726 return;
1727
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001728 batadv_iv_ogm_process_per_outif(skb, ogm_offset, orig_node,
1729 if_incoming, BATADV_IF_DEFAULT);
Marek Lindnerfc957272011-07-30 12:04:12 +02001730
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001731 rcu_read_lock();
1732 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
1733 if (hard_iface->if_status != BATADV_IF_ACTIVE)
1734 continue;
1735
1736 if (hard_iface->soft_iface != bat_priv->soft_iface)
1737 continue;
1738
1739 batadv_iv_ogm_process_per_outif(skb, ogm_offset, orig_node,
1740 if_incoming, hard_iface);
Marek Lindnerfc957272011-07-30 12:04:12 +02001741 }
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001742 rcu_read_unlock();
Marek Lindnerfc957272011-07-30 12:04:12 +02001743
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001744 batadv_orig_node_free_ref(orig_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001745}
1746
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001747static int batadv_iv_ogm_receive(struct sk_buff *skb,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001748 struct batadv_hard_iface *if_incoming)
Marek Lindnerfc957272011-07-30 12:04:12 +02001749{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001750 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001751 struct batadv_ogm_packet *ogm_packet;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001752 u8 *packet_pos;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001753 int ogm_offset;
Marek Lindneref261572013-04-23 21:39:57 +08001754 bool ret;
Marek Lindnerc3e29312012-03-04 16:56:25 +08001755
Sven Eckelmann7e071c72012-06-03 22:19:13 +02001756 ret = batadv_check_management_packet(skb, if_incoming, BATADV_OGM_HLEN);
Marek Lindnerc3e29312012-03-04 16:56:25 +08001757 if (!ret)
1758 return NET_RX_DROP;
Marek Lindnerfc957272011-07-30 12:04:12 +02001759
Marek Lindneredbf12b2012-03-11 06:17:49 +08001760 /* did we receive a B.A.T.M.A.N. IV OGM packet on an interface
1761 * that does not have B.A.T.M.A.N. IV enabled ?
1762 */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001763 if (bat_priv->bat_algo_ops->bat_ogm_emit != batadv_iv_ogm_emit)
Marek Lindneredbf12b2012-03-11 06:17:49 +08001764 return NET_RX_DROP;
1765
Sven Eckelmannd69909d2012-06-03 22:19:20 +02001766 batadv_inc_counter(bat_priv, BATADV_CNT_MGMT_RX);
1767 batadv_add_counter(bat_priv, BATADV_CNT_MGMT_RX_BYTES,
Martin Hundebøllf8214862012-04-20 17:02:45 +02001768 skb->len + ETH_HLEN);
1769
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001770 ogm_offset = 0;
1771 ogm_packet = (struct batadv_ogm_packet *)skb->data;
Marek Lindnerfc957272011-07-30 12:04:12 +02001772
1773 /* unpack the aggregated packets and process them one by one */
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001774 while (batadv_iv_ogm_aggr_packet(ogm_offset, skb_headlen(skb),
1775 ogm_packet->tvlv_len)) {
1776 batadv_iv_ogm_process(skb, ogm_offset, if_incoming);
Marek Lindnerfc957272011-07-30 12:04:12 +02001777
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001778 ogm_offset += BATADV_OGM_HLEN;
1779 ogm_offset += ntohs(ogm_packet->tvlv_len);
Marek Lindnerfc957272011-07-30 12:04:12 +02001780
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001781 packet_pos = skb->data + ogm_offset;
1782 ogm_packet = (struct batadv_ogm_packet *)packet_pos;
Marek Lindnerb47506d2013-03-04 10:39:49 +08001783 }
Marek Lindnerc3e29312012-03-04 16:56:25 +08001784
1785 kfree_skb(skb);
1786 return NET_RX_SUCCESS;
Marek Lindnerfc957272011-07-30 12:04:12 +02001787}
Marek Lindner1c280472011-11-28 17:40:17 +08001788
Simon Wunderlich1b371d12014-01-15 21:17:54 +01001789/**
1790 * batadv_iv_ogm_orig_print_neigh - print neighbors for the originator table
Simon Wunderlich89652332013-11-13 19:14:46 +01001791 * @orig_node: the orig_node for which the neighbors are printed
1792 * @if_outgoing: outgoing interface for these entries
1793 * @seq: debugfs table seq_file struct
1794 *
1795 * Must be called while holding an rcu lock.
1796 */
1797static void
1798batadv_iv_ogm_orig_print_neigh(struct batadv_orig_node *orig_node,
1799 struct batadv_hard_iface *if_outgoing,
1800 struct seq_file *seq)
1801{
1802 struct batadv_neigh_node *neigh_node;
1803 struct batadv_neigh_ifinfo *n_ifinfo;
1804
1805 hlist_for_each_entry_rcu(neigh_node, &orig_node->neigh_list, list) {
1806 n_ifinfo = batadv_neigh_ifinfo_get(neigh_node, if_outgoing);
1807 if (!n_ifinfo)
1808 continue;
1809
1810 seq_printf(seq, " %pM (%3i)",
1811 neigh_node->addr,
1812 n_ifinfo->bat_iv.tq_avg);
1813
1814 batadv_neigh_ifinfo_free_ref(n_ifinfo);
1815 }
1816}
1817
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001818/**
1819 * batadv_iv_ogm_orig_print - print the originator table
1820 * @bat_priv: the bat priv with all the soft interface information
1821 * @seq: debugfs table seq_file struct
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +01001822 * @if_outgoing: the outgoing interface for which this should be printed
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001823 */
1824static void batadv_iv_ogm_orig_print(struct batadv_priv *bat_priv,
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +01001825 struct seq_file *seq,
1826 struct batadv_hard_iface *if_outgoing)
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001827{
Simon Wunderlich89652332013-11-13 19:14:46 +01001828 struct batadv_neigh_node *neigh_node;
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001829 struct batadv_hashtable *hash = bat_priv->orig_hash;
1830 int last_seen_msecs, last_seen_secs;
1831 struct batadv_orig_node *orig_node;
Simon Wunderlich89652332013-11-13 19:14:46 +01001832 struct batadv_neigh_ifinfo *n_ifinfo;
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001833 unsigned long last_seen_jiffies;
1834 struct hlist_head *head;
1835 int batman_count = 0;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001836 u32 i;
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001837
1838 seq_printf(seq, " %-15s %s (%s/%i) %17s [%10s]: %20s ...\n",
1839 "Originator", "last-seen", "#", BATADV_TQ_MAX_VALUE,
1840 "Nexthop", "outgoingIF", "Potential nexthops");
1841
1842 for (i = 0; i < hash->size; i++) {
1843 head = &hash->table[i];
1844
1845 rcu_read_lock();
1846 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001847 neigh_node = batadv_orig_router_get(orig_node,
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +01001848 if_outgoing);
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001849 if (!neigh_node)
1850 continue;
1851
Simon Wunderlich89652332013-11-13 19:14:46 +01001852 n_ifinfo = batadv_neigh_ifinfo_get(neigh_node,
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +01001853 if_outgoing);
Simon Wunderlich89652332013-11-13 19:14:46 +01001854 if (!n_ifinfo)
1855 goto next;
1856
1857 if (n_ifinfo->bat_iv.tq_avg == 0)
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001858 goto next;
1859
1860 last_seen_jiffies = jiffies - orig_node->last_seen;
1861 last_seen_msecs = jiffies_to_msecs(last_seen_jiffies);
1862 last_seen_secs = last_seen_msecs / 1000;
1863 last_seen_msecs = last_seen_msecs % 1000;
1864
1865 seq_printf(seq, "%pM %4i.%03is (%3i) %pM [%10s]:",
1866 orig_node->orig, last_seen_secs,
Simon Wunderlich89652332013-11-13 19:14:46 +01001867 last_seen_msecs, n_ifinfo->bat_iv.tq_avg,
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001868 neigh_node->addr,
1869 neigh_node->if_incoming->net_dev->name);
1870
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +01001871 batadv_iv_ogm_orig_print_neigh(orig_node, if_outgoing,
1872 seq);
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001873 seq_puts(seq, "\n");
1874 batman_count++;
1875
1876next:
1877 batadv_neigh_node_free_ref(neigh_node);
Simon Wunderlich89652332013-11-13 19:14:46 +01001878 if (n_ifinfo)
1879 batadv_neigh_ifinfo_free_ref(n_ifinfo);
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001880 }
1881 rcu_read_unlock();
1882 }
1883
1884 if (batman_count == 0)
1885 seq_puts(seq, "No batman nodes in range ...\n");
1886}
1887
Antonio Quartullia3285a82013-09-02 12:15:04 +02001888/**
1889 * batadv_iv_ogm_neigh_cmp - compare the metrics of two neighbors
1890 * @neigh1: the first neighbor object of the comparison
Simon Wunderlich89652332013-11-13 19:14:46 +01001891 * @if_outgoing1: outgoing interface for the first neighbor
Antonio Quartullia3285a82013-09-02 12:15:04 +02001892 * @neigh2: the second neighbor object of the comparison
Simon Wunderlich89652332013-11-13 19:14:46 +01001893 * @if_outgoing2: outgoing interface for the second neighbor
Antonio Quartullia3285a82013-09-02 12:15:04 +02001894 *
1895 * Returns a value less, equal to or greater than 0 if the metric via neigh1 is
1896 * lower, the same as or higher than the metric via neigh2
1897 */
1898static int batadv_iv_ogm_neigh_cmp(struct batadv_neigh_node *neigh1,
Simon Wunderlich89652332013-11-13 19:14:46 +01001899 struct batadv_hard_iface *if_outgoing1,
1900 struct batadv_neigh_node *neigh2,
1901 struct batadv_hard_iface *if_outgoing2)
Antonio Quartullia3285a82013-09-02 12:15:04 +02001902{
Simon Wunderlich89652332013-11-13 19:14:46 +01001903 struct batadv_neigh_ifinfo *neigh1_ifinfo, *neigh2_ifinfo;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001904 u8 tq1, tq2;
Simon Wunderlich89652332013-11-13 19:14:46 +01001905 int diff;
Antonio Quartullia3285a82013-09-02 12:15:04 +02001906
Simon Wunderlich89652332013-11-13 19:14:46 +01001907 neigh1_ifinfo = batadv_neigh_ifinfo_get(neigh1, if_outgoing1);
1908 neigh2_ifinfo = batadv_neigh_ifinfo_get(neigh2, if_outgoing2);
Antonio Quartullia3285a82013-09-02 12:15:04 +02001909
Simon Wunderlich89652332013-11-13 19:14:46 +01001910 if (!neigh1_ifinfo || !neigh2_ifinfo) {
1911 diff = 0;
1912 goto out;
1913 }
1914
1915 tq1 = neigh1_ifinfo->bat_iv.tq_avg;
1916 tq2 = neigh2_ifinfo->bat_iv.tq_avg;
1917 diff = tq1 - tq2;
1918
1919out:
1920 if (neigh1_ifinfo)
1921 batadv_neigh_ifinfo_free_ref(neigh1_ifinfo);
1922 if (neigh2_ifinfo)
1923 batadv_neigh_ifinfo_free_ref(neigh2_ifinfo);
1924
1925 return diff;
Antonio Quartullia3285a82013-09-02 12:15:04 +02001926}
1927
Antonio Quartullic43c9812013-09-02 12:15:05 +02001928/**
1929 * batadv_iv_ogm_neigh_is_eob - check if neigh1 is equally good or better than
1930 * neigh2 from the metric prospective
1931 * @neigh1: the first neighbor object of the comparison
Martin Hundebøll95298a92014-07-15 09:41:05 +02001932 * @if_outgoing1: outgoing interface for the first neighbor
Antonio Quartullic43c9812013-09-02 12:15:05 +02001933 * @neigh2: the second neighbor object of the comparison
Simon Wunderlich89652332013-11-13 19:14:46 +01001934 * @if_outgoing2: outgoing interface for the second neighbor
Martin Hundebøll95298a92014-07-15 09:41:05 +02001935 *
Simon Wunderlich89652332013-11-13 19:14:46 +01001936 * Returns true if the metric via neigh1 is equally good or better than
1937 * the metric via neigh2, false otherwise.
1938 */
1939static bool
1940batadv_iv_ogm_neigh_is_eob(struct batadv_neigh_node *neigh1,
1941 struct batadv_hard_iface *if_outgoing1,
1942 struct batadv_neigh_node *neigh2,
1943 struct batadv_hard_iface *if_outgoing2)
1944{
1945 struct batadv_neigh_ifinfo *neigh1_ifinfo, *neigh2_ifinfo;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001946 u8 tq1, tq2;
Simon Wunderlich89652332013-11-13 19:14:46 +01001947 bool ret;
1948
1949 neigh1_ifinfo = batadv_neigh_ifinfo_get(neigh1, if_outgoing1);
1950 neigh2_ifinfo = batadv_neigh_ifinfo_get(neigh2, if_outgoing2);
1951
1952 /* we can't say that the metric is better */
1953 if (!neigh1_ifinfo || !neigh2_ifinfo) {
1954 ret = false;
1955 goto out;
1956 }
1957
1958 tq1 = neigh1_ifinfo->bat_iv.tq_avg;
1959 tq2 = neigh2_ifinfo->bat_iv.tq_avg;
1960 ret = (tq1 - tq2) > -BATADV_TQ_SIMILARITY_THRESHOLD;
1961
1962out:
1963 if (neigh1_ifinfo)
1964 batadv_neigh_ifinfo_free_ref(neigh1_ifinfo);
1965 if (neigh2_ifinfo)
1966 batadv_neigh_ifinfo_free_ref(neigh2_ifinfo);
1967
1968 return ret;
Antonio Quartullic43c9812013-09-02 12:15:05 +02001969}
1970
Sven Eckelmann56303d32012-06-05 22:31:31 +02001971static struct batadv_algo_ops batadv_batman_iv __read_mostly = {
Marek Lindner519d3492012-04-18 17:15:57 +08001972 .name = "BATMAN_IV",
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001973 .bat_iface_enable = batadv_iv_ogm_iface_enable,
1974 .bat_iface_disable = batadv_iv_ogm_iface_disable,
1975 .bat_iface_update_mac = batadv_iv_ogm_iface_update_mac,
1976 .bat_primary_iface_set = batadv_iv_ogm_primary_iface_set,
1977 .bat_ogm_schedule = batadv_iv_ogm_schedule,
1978 .bat_ogm_emit = batadv_iv_ogm_emit,
Antonio Quartullia3285a82013-09-02 12:15:04 +02001979 .bat_neigh_cmp = batadv_iv_ogm_neigh_cmp,
Antonio Quartullic43c9812013-09-02 12:15:05 +02001980 .bat_neigh_is_equiv_or_better = batadv_iv_ogm_neigh_is_eob,
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001981 .bat_orig_print = batadv_iv_ogm_orig_print,
Antonio Quartullid0015fd2013-09-03 11:10:23 +02001982 .bat_orig_free = batadv_iv_ogm_orig_free,
1983 .bat_orig_add_if = batadv_iv_ogm_orig_add_if,
1984 .bat_orig_del_if = batadv_iv_ogm_orig_del_if,
Marek Lindner1c280472011-11-28 17:40:17 +08001985};
1986
Sven Eckelmann81c524f2012-05-12 02:09:22 +02001987int __init batadv_iv_init(void)
Marek Lindner1c280472011-11-28 17:40:17 +08001988{
Marek Lindnerc3e29312012-03-04 16:56:25 +08001989 int ret;
1990
1991 /* batman originator packet */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001992 ret = batadv_recv_handler_register(BATADV_IV_OGM,
1993 batadv_iv_ogm_receive);
Marek Lindnerc3e29312012-03-04 16:56:25 +08001994 if (ret < 0)
1995 goto out;
1996
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001997 ret = batadv_algo_register(&batadv_batman_iv);
Marek Lindnerc3e29312012-03-04 16:56:25 +08001998 if (ret < 0)
1999 goto handler_unregister;
2000
2001 goto out;
2002
2003handler_unregister:
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002004 batadv_recv_handler_unregister(BATADV_IV_OGM);
Marek Lindnerc3e29312012-03-04 16:56:25 +08002005out:
2006 return ret;
Marek Lindner1c280472011-11-28 17:40:17 +08002007}