blob: a40cdf273625abb1b53e25ed1aeef4ec5fb25a3c [file] [log] [blame]
Sven Eckelmann0046b042016-01-01 00:01:03 +01001/* Copyright (C) 2007-2016 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
Sven Eckelmanna2d08162016-05-15 11:07:46 +020018#include "bat_iv_ogm.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>
Antonio Quartullif0d97252016-05-03 01:45:34 +080033#include <linux/kernel.h>
Sven Eckelmann77ae32e2016-01-16 10:29:53 +010034#include <linux/kref.h>
Sven Eckelmannfcafa5e2016-05-15 11:07:42 +020035#include <linux/list.h>
Sven Eckelmann64ae74452016-02-22 22:56:34 +010036#include <linux/lockdep.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020037#include <linux/netdevice.h>
38#include <linux/pkt_sched.h>
39#include <linux/printk.h>
40#include <linux/random.h>
41#include <linux/rculist.h>
42#include <linux/rcupdate.h>
43#include <linux/seq_file.h>
44#include <linux/skbuff.h>
45#include <linux/slab.h>
46#include <linux/spinlock.h>
47#include <linux/stddef.h>
48#include <linux/string.h>
49#include <linux/types.h>
50#include <linux/workqueue.h>
51
Sven Eckelmanna2d08162016-05-15 11:07:46 +020052#include "bat_algo.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020053#include "bitarray.h"
Antonio Quartulli34d99cf2016-07-03 12:46:33 +020054#include "gateway_client.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020055#include "hard-interface.h"
56#include "hash.h"
Sven Eckelmannba412082016-05-15 23:48:31 +020057#include "log.h"
Martin Hundebølld56b1702013-01-25 11:12:39 +010058#include "network-coding.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020059#include "originator.h"
60#include "packet.h"
61#include "routing.h"
62#include "send.h"
63#include "translation-table.h"
Markus Pargmann1f8dce42016-05-15 11:07:43 +020064#include "tvlv.h"
Marek Lindnerfc957272011-07-30 12:04:12 +020065
Antonio Quartullif0d97252016-05-03 01:45:34 +080066static void batadv_iv_send_outstanding_bat_ogm_packet(struct work_struct *work);
67
Antonio Quartulli791c2a22013-08-17 12:44:44 +020068/**
Martin Hundebøll95298a92014-07-15 09:41:05 +020069 * enum batadv_dup_status - duplicate status
Markus Pargmann9f52ee12014-12-26 12:41:34 +010070 * @BATADV_NO_DUP: the packet is no duplicate
Antonio Quartulli791c2a22013-08-17 12:44:44 +020071 * @BATADV_ORIG_DUP: OGM is a duplicate in the originator (but not for the
72 * neighbor)
73 * @BATADV_NEIGH_DUP: OGM is a duplicate for the neighbor
74 * @BATADV_PROTECTED: originator is currently protected (after reboot)
75 */
76enum batadv_dup_status {
77 BATADV_NO_DUP = 0,
78 BATADV_ORIG_DUP,
79 BATADV_NEIGH_DUP,
80 BATADV_PROTECTED,
81};
82
Antonio Quartulli24a5dee2013-04-08 09:38:12 +020083/**
84 * batadv_ring_buffer_set - update the ring buffer with the given value
85 * @lq_recv: pointer to the ring buffer
86 * @lq_index: index to store the value at
87 * @value: value to store in the ring buffer
88 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020089static void batadv_ring_buffer_set(u8 lq_recv[], u8 *lq_index, u8 value)
Antonio Quartulli24a5dee2013-04-08 09:38:12 +020090{
91 lq_recv[*lq_index] = value;
92 *lq_index = (*lq_index + 1) % BATADV_TQ_GLOBAL_WINDOW_SIZE;
93}
94
95/**
Markus Pargmannd491dbb2014-12-26 12:41:36 +010096 * batadv_ring_buffer_avg - compute the average of all non-zero values stored
Antonio Quartulli24a5dee2013-04-08 09:38:12 +020097 * in the given ring buffer
98 * @lq_recv: pointer to the ring buffer
99 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200100 * Return: computed average value.
Antonio Quartulli24a5dee2013-04-08 09:38:12 +0200101 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200102static u8 batadv_ring_buffer_avg(const u8 lq_recv[])
Antonio Quartulli24a5dee2013-04-08 09:38:12 +0200103{
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200104 const u8 *ptr;
105 u16 count = 0;
106 u16 i = 0;
107 u16 sum = 0;
Antonio Quartulli24a5dee2013-04-08 09:38:12 +0200108
109 ptr = lq_recv;
110
111 while (i < BATADV_TQ_GLOBAL_WINDOW_SIZE) {
112 if (*ptr != 0) {
113 count++;
114 sum += *ptr;
115 }
116
117 i++;
118 ptr++;
119 }
120
121 if (count == 0)
122 return 0;
123
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200124 return (u8)(sum / count);
Antonio Quartulli24a5dee2013-04-08 09:38:12 +0200125}
David S. Millerd98cae64e2013-06-19 16:49:39 -0700126
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200127/**
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200128 * batadv_iv_ogm_orig_free - free the private resources allocated for this
129 * orig_node
130 * @orig_node: the orig_node for which the resources have to be free'd
131 */
132static void batadv_iv_ogm_orig_free(struct batadv_orig_node *orig_node)
133{
134 kfree(orig_node->bat_iv.bcast_own);
135 kfree(orig_node->bat_iv.bcast_own_sum);
136}
137
138/**
139 * batadv_iv_ogm_orig_add_if - change the private structures of the orig_node to
140 * include the new hard-interface
141 * @orig_node: the orig_node that has to be changed
142 * @max_if_num: the current amount of interfaces
143 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200144 * Return: 0 on success, a negative error code otherwise.
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200145 */
146static int batadv_iv_ogm_orig_add_if(struct batadv_orig_node *orig_node,
147 int max_if_num)
148{
149 void *data_ptr;
Antonio Quartulli0185dda2014-05-24 06:43:47 +0200150 size_t old_size;
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200151 int ret = -ENOMEM;
152
153 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
154
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200155 old_size = (max_if_num - 1) * sizeof(unsigned long) * BATADV_NUM_WORDS;
Antonio Quartulli0185dda2014-05-24 06:43:47 +0200156 data_ptr = kmalloc_array(max_if_num,
157 BATADV_NUM_WORDS * sizeof(unsigned long),
158 GFP_ATOMIC);
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200159 if (!data_ptr)
160 goto unlock;
161
162 memcpy(data_ptr, orig_node->bat_iv.bcast_own, old_size);
163 kfree(orig_node->bat_iv.bcast_own);
164 orig_node->bat_iv.bcast_own = data_ptr;
165
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200166 data_ptr = kmalloc_array(max_if_num, sizeof(u8), GFP_ATOMIC);
Sven Eckelmannf7dcdf52016-02-22 22:56:33 +0100167 if (!data_ptr)
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200168 goto unlock;
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200169
170 memcpy(data_ptr, orig_node->bat_iv.bcast_own_sum,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200171 (max_if_num - 1) * sizeof(u8));
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200172 kfree(orig_node->bat_iv.bcast_own_sum);
173 orig_node->bat_iv.bcast_own_sum = data_ptr;
174
175 ret = 0;
176
177unlock:
178 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
179
180 return ret;
181}
182
183/**
Sven Eckelmann64ae74452016-02-22 22:56:34 +0100184 * batadv_iv_ogm_drop_bcast_own_entry - drop section of bcast_own
185 * @orig_node: the orig_node that has to be changed
186 * @max_if_num: the current amount of interfaces
187 * @del_if_num: the index of the interface being removed
188 */
189static void
190batadv_iv_ogm_drop_bcast_own_entry(struct batadv_orig_node *orig_node,
191 int max_if_num, int del_if_num)
192{
193 size_t chunk_size;
194 size_t if_offset;
195 void *data_ptr;
196
197 lockdep_assert_held(&orig_node->bat_iv.ogm_cnt_lock);
198
199 chunk_size = sizeof(unsigned long) * BATADV_NUM_WORDS;
200 data_ptr = kmalloc_array(max_if_num, chunk_size, GFP_ATOMIC);
201 if (!data_ptr)
202 /* use old buffer when new one could not be allocated */
203 data_ptr = orig_node->bat_iv.bcast_own;
204
205 /* copy first part */
206 memmove(data_ptr, orig_node->bat_iv.bcast_own, del_if_num * chunk_size);
207
208 /* copy second part */
209 if_offset = (del_if_num + 1) * chunk_size;
210 memmove((char *)data_ptr + del_if_num * chunk_size,
211 (uint8_t *)orig_node->bat_iv.bcast_own + if_offset,
212 (max_if_num - del_if_num) * chunk_size);
213
214 /* bcast_own was shrunk down in new buffer; free old one */
215 if (orig_node->bat_iv.bcast_own != data_ptr) {
216 kfree(orig_node->bat_iv.bcast_own);
217 orig_node->bat_iv.bcast_own = data_ptr;
218 }
219}
220
221/**
222 * batadv_iv_ogm_drop_bcast_own_sum_entry - drop section of bcast_own_sum
223 * @orig_node: the orig_node that has to be changed
224 * @max_if_num: the current amount of interfaces
225 * @del_if_num: the index of the interface being removed
226 */
227static void
228batadv_iv_ogm_drop_bcast_own_sum_entry(struct batadv_orig_node *orig_node,
229 int max_if_num, int del_if_num)
230{
231 size_t if_offset;
232 void *data_ptr;
233
234 lockdep_assert_held(&orig_node->bat_iv.ogm_cnt_lock);
235
236 data_ptr = kmalloc_array(max_if_num, sizeof(u8), GFP_ATOMIC);
237 if (!data_ptr)
238 /* use old buffer when new one could not be allocated */
239 data_ptr = orig_node->bat_iv.bcast_own_sum;
240
241 memmove(data_ptr, orig_node->bat_iv.bcast_own_sum,
242 del_if_num * sizeof(u8));
243
244 if_offset = (del_if_num + 1) * sizeof(u8);
245 memmove((char *)data_ptr + del_if_num * sizeof(u8),
246 orig_node->bat_iv.bcast_own_sum + if_offset,
247 (max_if_num - del_if_num) * sizeof(u8));
248
249 /* bcast_own_sum was shrunk down in new buffer; free old one */
250 if (orig_node->bat_iv.bcast_own_sum != data_ptr) {
251 kfree(orig_node->bat_iv.bcast_own_sum);
252 orig_node->bat_iv.bcast_own_sum = data_ptr;
253 }
254}
255
256/**
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200257 * batadv_iv_ogm_orig_del_if - change the private structures of the orig_node to
258 * exclude the removed interface
259 * @orig_node: the orig_node that has to be changed
260 * @max_if_num: the current amount of interfaces
261 * @del_if_num: the index of the interface being removed
262 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200263 * Return: 0 on success, a negative error code otherwise.
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200264 */
265static int batadv_iv_ogm_orig_del_if(struct batadv_orig_node *orig_node,
266 int max_if_num, int del_if_num)
267{
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200268 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
269
Sven Eckelmann64ae74452016-02-22 22:56:34 +0100270 if (max_if_num == 0) {
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200271 kfree(orig_node->bat_iv.bcast_own);
Sven Eckelmann64ae74452016-02-22 22:56:34 +0100272 kfree(orig_node->bat_iv.bcast_own_sum);
273 orig_node->bat_iv.bcast_own = NULL;
274 orig_node->bat_iv.bcast_own_sum = NULL;
275 } else {
276 batadv_iv_ogm_drop_bcast_own_entry(orig_node, max_if_num,
277 del_if_num);
278 batadv_iv_ogm_drop_bcast_own_sum_entry(orig_node, max_if_num,
279 del_if_num);
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200280 }
281
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200282 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
283
Sven Eckelmann64ae74452016-02-22 22:56:34 +0100284 return 0;
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200285}
286
287/**
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200288 * batadv_iv_ogm_orig_get - retrieve or create (if does not exist) an originator
289 * @bat_priv: the bat priv with all the soft interface information
290 * @addr: mac address of the originator
291 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200292 * Return: the originator object corresponding to the passed mac address or NULL
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200293 * on failure.
294 * If the object does not exists it is created an initialised.
295 */
296static struct batadv_orig_node *
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200297batadv_iv_ogm_orig_get(struct batadv_priv *bat_priv, const u8 *addr)
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200298{
299 struct batadv_orig_node *orig_node;
300 int size, hash_added;
301
302 orig_node = batadv_orig_hash_find(bat_priv, addr);
303 if (orig_node)
304 return orig_node;
305
306 orig_node = batadv_orig_node_new(bat_priv, addr);
307 if (!orig_node)
308 return NULL;
309
310 spin_lock_init(&orig_node->bat_iv.ogm_cnt_lock);
311
312 size = bat_priv->num_ifaces * sizeof(unsigned long) * BATADV_NUM_WORDS;
313 orig_node->bat_iv.bcast_own = kzalloc(size, GFP_ATOMIC);
314 if (!orig_node->bat_iv.bcast_own)
315 goto free_orig_node;
316
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200317 size = bat_priv->num_ifaces * sizeof(u8);
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200318 orig_node->bat_iv.bcast_own_sum = kzalloc(size, GFP_ATOMIC);
319 if (!orig_node->bat_iv.bcast_own_sum)
Antonio Quartullia5a5cb82014-02-15 02:17:20 +0100320 goto free_orig_node;
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200321
322 hash_added = batadv_hash_add(bat_priv->orig_hash, batadv_compare_orig,
323 batadv_choose_orig, orig_node,
324 &orig_node->hash_entry);
325 if (hash_added != 0)
Antonio Quartullia5a5cb82014-02-15 02:17:20 +0100326 goto free_orig_node;
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200327
328 return orig_node;
329
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200330free_orig_node:
Simon Wunderlichb2262df2014-02-08 16:45:06 +0100331 /* free twice, as batadv_orig_node_new sets refcount to 2 */
Sven Eckelmann5d967312016-01-17 11:01:09 +0100332 batadv_orig_node_put(orig_node);
333 batadv_orig_node_put(orig_node);
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200334
335 return NULL;
336}
337
Sven Eckelmann56303d32012-06-05 22:31:31 +0200338static struct batadv_neigh_node *
339batadv_iv_ogm_neigh_new(struct batadv_hard_iface *hard_iface,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200340 const u8 *neigh_addr,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200341 struct batadv_orig_node *orig_node,
Antonio Quartulli863dd7a2013-03-25 13:49:46 +0100342 struct batadv_orig_node *orig_neigh)
Marek Lindner7ae8b282012-03-01 15:35:21 +0800343{
Marek Lindner741aa062015-07-26 04:57:43 +0800344 struct batadv_neigh_node *neigh_node;
Marek Lindner7ae8b282012-03-01 15:35:21 +0800345
Marek Lindner6f0a6b52016-05-03 01:52:08 +0800346 neigh_node = batadv_neigh_node_get_or_create(orig_node,
347 hard_iface, neigh_addr);
Marek Lindner7ae8b282012-03-01 15:35:21 +0800348 if (!neigh_node)
349 goto out;
350
Simon Wunderlich89652332013-11-13 19:14:46 +0100351 neigh_node->orig_node = orig_neigh;
Marek Lindner7ae8b282012-03-01 15:35:21 +0800352
Marek Lindner7ae8b282012-03-01 15:35:21 +0800353out:
354 return neigh_node;
355}
356
Sven Eckelmann56303d32012-06-05 22:31:31 +0200357static int batadv_iv_ogm_iface_enable(struct batadv_hard_iface *hard_iface)
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200358{
Sven Eckelmann96412692012-06-05 22:31:30 +0200359 struct batadv_ogm_packet *batadv_ogm_packet;
Marek Lindner14511512012-08-02 17:20:26 +0200360 unsigned char *ogm_buff;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200361 u32 random_seqno;
Marek Lindnerd7d32ec2012-02-07 17:20:46 +0800362
363 /* randomize initial seqno to avoid collision */
364 get_random_bytes(&random_seqno, sizeof(random_seqno));
Marek Lindner14511512012-08-02 17:20:26 +0200365 atomic_set(&hard_iface->bat_iv.ogm_seqno, random_seqno);
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200366
Marek Lindner14511512012-08-02 17:20:26 +0200367 hard_iface->bat_iv.ogm_buff_len = BATADV_OGM_HLEN;
368 ogm_buff = kmalloc(hard_iface->bat_iv.ogm_buff_len, GFP_ATOMIC);
369 if (!ogm_buff)
Markus Pargmann42d9f2c2014-12-26 12:41:26 +0100370 return -ENOMEM;
Marek Lindner77af7572012-02-07 17:20:48 +0800371
Marek Lindner14511512012-08-02 17:20:26 +0200372 hard_iface->bat_iv.ogm_buff = ogm_buff;
373
374 batadv_ogm_packet = (struct batadv_ogm_packet *)ogm_buff;
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100375 batadv_ogm_packet->packet_type = BATADV_IV_OGM;
376 batadv_ogm_packet->version = BATADV_COMPAT_VERSION;
377 batadv_ogm_packet->ttl = 2;
Sven Eckelmann96412692012-06-05 22:31:30 +0200378 batadv_ogm_packet->flags = BATADV_NO_FLAGS;
Marek Lindner414254e2013-04-23 21:39:58 +0800379 batadv_ogm_packet->reserved = 0;
Sven Eckelmann96412692012-06-05 22:31:30 +0200380 batadv_ogm_packet->tq = BATADV_TQ_MAX_VALUE;
Marek Lindner77af7572012-02-07 17:20:48 +0800381
Markus Pargmann42d9f2c2014-12-26 12:41:26 +0100382 return 0;
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200383}
384
Sven Eckelmann56303d32012-06-05 22:31:31 +0200385static void batadv_iv_ogm_iface_disable(struct batadv_hard_iface *hard_iface)
Marek Lindner00a50072012-02-07 17:20:47 +0800386{
Marek Lindner14511512012-08-02 17:20:26 +0200387 kfree(hard_iface->bat_iv.ogm_buff);
388 hard_iface->bat_iv.ogm_buff = NULL;
Marek Lindner00a50072012-02-07 17:20:47 +0800389}
390
Sven Eckelmann56303d32012-06-05 22:31:31 +0200391static void batadv_iv_ogm_iface_update_mac(struct batadv_hard_iface *hard_iface)
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200392{
Sven Eckelmann96412692012-06-05 22:31:30 +0200393 struct batadv_ogm_packet *batadv_ogm_packet;
Marek Lindner14511512012-08-02 17:20:26 +0200394 unsigned char *ogm_buff = hard_iface->bat_iv.ogm_buff;
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200395
Marek Lindner14511512012-08-02 17:20:26 +0200396 batadv_ogm_packet = (struct batadv_ogm_packet *)ogm_buff;
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100397 ether_addr_copy(batadv_ogm_packet->orig,
398 hard_iface->net_dev->dev_addr);
399 ether_addr_copy(batadv_ogm_packet->prev_sender,
400 hard_iface->net_dev->dev_addr);
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200401}
402
Sven Eckelmann56303d32012-06-05 22:31:31 +0200403static void
404batadv_iv_ogm_primary_iface_set(struct batadv_hard_iface *hard_iface)
Marek Lindnerc3229392012-03-11 06:17:50 +0800405{
Sven Eckelmann96412692012-06-05 22:31:30 +0200406 struct batadv_ogm_packet *batadv_ogm_packet;
Marek Lindner14511512012-08-02 17:20:26 +0200407 unsigned char *ogm_buff = hard_iface->bat_iv.ogm_buff;
Marek Lindnerc3229392012-03-11 06:17:50 +0800408
Marek Lindner14511512012-08-02 17:20:26 +0200409 batadv_ogm_packet = (struct batadv_ogm_packet *)ogm_buff;
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100410 batadv_ogm_packet->ttl = BATADV_TTL;
Marek Lindnerc3229392012-03-11 06:17:50 +0800411}
412
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200413/* when do we schedule our own ogm to be sent */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200414static unsigned long
Sven Eckelmann56303d32012-06-05 22:31:31 +0200415batadv_iv_ogm_emit_send_time(const struct batadv_priv *bat_priv)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200416{
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200417 unsigned int msecs;
418
419 msecs = atomic_read(&bat_priv->orig_interval) - BATADV_JITTER;
Akinobu Mitae76e4322012-12-24 11:14:07 +0900420 msecs += prandom_u32() % (2 * BATADV_JITTER);
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200421
422 return jiffies + msecs_to_jiffies(msecs);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200423}
424
425/* when do we schedule a ogm packet to be sent */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200426static unsigned long batadv_iv_ogm_fwd_send_time(void)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200427{
Akinobu Mitae76e4322012-12-24 11:14:07 +0900428 return jiffies + msecs_to_jiffies(prandom_u32() % (BATADV_JITTER / 2));
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200429}
430
431/* apply hop penalty for a normal link */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200432static u8 batadv_hop_penalty(u8 tq, const struct batadv_priv *bat_priv)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200433{
434 int hop_penalty = atomic_read(&bat_priv->hop_penalty);
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200435 int new_tq;
436
437 new_tq = tq * (BATADV_TQ_MAX_VALUE - hop_penalty);
438 new_tq /= BATADV_TQ_MAX_VALUE;
439
440 return new_tq;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200441}
442
Simon Wunderlich600184b2015-11-23 19:57:21 +0100443/**
444 * batadv_iv_ogm_aggr_packet - checks if there is another OGM attached
445 * @buff_pos: current position in the skb
446 * @packet_len: total length of the skb
447 * @tvlv_len: tvlv length of the previously considered OGM
448 *
449 * Return: true if there is enough space for another OGM, false otherwise.
450 */
Markus Pargmann9fd9b192014-12-26 12:41:27 +0100451static bool batadv_iv_ogm_aggr_packet(int buff_pos, int packet_len,
452 __be16 tvlv_len)
Marek Lindnerfc957272011-07-30 12:04:12 +0200453{
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200454 int next_buff_pos = 0;
455
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200456 next_buff_pos += buff_pos + BATADV_OGM_HLEN;
Marek Lindneref261572013-04-23 21:39:57 +0800457 next_buff_pos += ntohs(tvlv_len);
Marek Lindnerfc957272011-07-30 12:04:12 +0200458
459 return (next_buff_pos <= packet_len) &&
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200460 (next_buff_pos <= BATADV_MAX_AGGREGATION_BYTES);
Marek Lindnerfc957272011-07-30 12:04:12 +0200461}
462
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200463/* send a batman ogm to a given interface */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200464static void batadv_iv_ogm_send_to_if(struct batadv_forw_packet *forw_packet,
465 struct batadv_hard_iface *hard_iface)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200466{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200467 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Markus Pargmannde12bae2014-12-26 12:41:28 +0100468 const char *fwd_str;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200469 u8 packet_num;
470 s16 buff_pos;
Sven Eckelmann96412692012-06-05 22:31:30 +0200471 struct batadv_ogm_packet *batadv_ogm_packet;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200472 struct sk_buff *skb;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200473 u8 *packet_pos;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200474
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200475 if (hard_iface->if_status != BATADV_IF_ACTIVE)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200476 return;
477
478 packet_num = 0;
479 buff_pos = 0;
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200480 packet_pos = forw_packet->skb->data;
481 batadv_ogm_packet = (struct batadv_ogm_packet *)packet_pos;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200482
483 /* adjust all flags and log packets */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200484 while (batadv_iv_ogm_aggr_packet(buff_pos, forw_packet->packet_len,
Marek Lindneref261572013-04-23 21:39:57 +0800485 batadv_ogm_packet->tvlv_len)) {
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200486 /* we might have aggregated direct link packets with an
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200487 * ordinary base packet
488 */
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200489 if (forw_packet->direct_link_flags & BIT(packet_num) &&
490 forw_packet->if_incoming == hard_iface)
Sven Eckelmann96412692012-06-05 22:31:30 +0200491 batadv_ogm_packet->flags |= BATADV_DIRECTLINK;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200492 else
Sven Eckelmann96412692012-06-05 22:31:30 +0200493 batadv_ogm_packet->flags &= ~BATADV_DIRECTLINK;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200494
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200495 if (packet_num > 0 || !forw_packet->own)
496 fwd_str = "Forwarding";
497 else
498 fwd_str = "Sending own";
499
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200500 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800501 "%s %spacket (originator %pM, seqno %u, TQ %d, TTL %d, IDF %s) on interface %s [%pM]\n",
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200502 fwd_str, (packet_num > 0 ? "aggregated " : ""),
Sven Eckelmann96412692012-06-05 22:31:30 +0200503 batadv_ogm_packet->orig,
504 ntohl(batadv_ogm_packet->seqno),
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100505 batadv_ogm_packet->tq, batadv_ogm_packet->ttl,
Sven Eckelmanna2f2b6c2015-04-23 18:22:24 +0200506 ((batadv_ogm_packet->flags & BATADV_DIRECTLINK) ?
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200507 "on" : "off"),
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800508 hard_iface->net_dev->name,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200509 hard_iface->net_dev->dev_addr);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200510
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200511 buff_pos += BATADV_OGM_HLEN;
Marek Lindneref261572013-04-23 21:39:57 +0800512 buff_pos += ntohs(batadv_ogm_packet->tvlv_len);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200513 packet_num++;
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200514 packet_pos = forw_packet->skb->data + buff_pos;
515 batadv_ogm_packet = (struct batadv_ogm_packet *)packet_pos;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200516 }
517
518 /* create clone because function is called more than once */
519 skb = skb_clone(forw_packet->skb, GFP_ATOMIC);
Martin Hundebøllf8214862012-04-20 17:02:45 +0200520 if (skb) {
Sven Eckelmannd69909d2012-06-03 22:19:20 +0200521 batadv_inc_counter(bat_priv, BATADV_CNT_MGMT_TX);
522 batadv_add_counter(bat_priv, BATADV_CNT_MGMT_TX_BYTES,
Martin Hundebøllf8214862012-04-20 17:02:45 +0200523 skb->len + ETH_HLEN);
Antonio Quartulli95d39272016-01-16 16:40:15 +0800524 batadv_send_broadcast_skb(skb, hard_iface);
Martin Hundebøllf8214862012-04-20 17:02:45 +0200525 }
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200526}
527
528/* send a batman ogm packet */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200529static void batadv_iv_ogm_emit(struct batadv_forw_packet *forw_packet)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200530{
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200531 struct net_device *soft_iface;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200532
533 if (!forw_packet->if_incoming) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100534 pr_err("Error - can't forward packet: incoming iface not specified\n");
Linus LĂĽssingf55a2e82016-06-14 22:56:50 +0200535 return;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200536 }
537
538 soft_iface = forw_packet->if_incoming->soft_iface;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200539
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100540 if (WARN_ON(!forw_packet->if_outgoing))
Linus LĂĽssingf55a2e82016-06-14 22:56:50 +0200541 return;
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100542
543 if (WARN_ON(forw_packet->if_outgoing->soft_iface != soft_iface))
Linus LĂĽssingf55a2e82016-06-14 22:56:50 +0200544 return;
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100545
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200546 if (forw_packet->if_incoming->if_status != BATADV_IF_ACTIVE)
Linus LĂĽssingf55a2e82016-06-14 22:56:50 +0200547 return;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200548
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100549 /* only for one specific outgoing interface */
550 batadv_iv_ogm_send_to_if(forw_packet, forw_packet->if_outgoing);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200551}
552
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100553/**
554 * batadv_iv_ogm_can_aggregate - find out if an OGM can be aggregated on an
555 * existing forward packet
556 * @new_bat_ogm_packet: OGM packet to be aggregated
557 * @bat_priv: the bat priv with all the soft interface information
558 * @packet_len: (total) length of the OGM
559 * @send_time: timestamp (jiffies) when the packet is to be sent
Martin Hundebøll95298a92014-07-15 09:41:05 +0200560 * @directlink: true if this is a direct link packet
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100561 * @if_incoming: interface where the packet was received
562 * @if_outgoing: interface for which the retransmission should be considered
563 * @forw_packet: the forwarded packet which should be checked
564 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200565 * Return: true if new_packet can be aggregated with forw_packet
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100566 */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200567static bool
Sven Eckelmann96412692012-06-05 22:31:30 +0200568batadv_iv_ogm_can_aggregate(const struct batadv_ogm_packet *new_bat_ogm_packet,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200569 struct batadv_priv *bat_priv,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200570 int packet_len, unsigned long send_time,
571 bool directlink,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200572 const struct batadv_hard_iface *if_incoming,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100573 const struct batadv_hard_iface *if_outgoing,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200574 const struct batadv_forw_packet *forw_packet)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200575{
Sven Eckelmann96412692012-06-05 22:31:30 +0200576 struct batadv_ogm_packet *batadv_ogm_packet;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200577 int aggregated_bytes = forw_packet->packet_len + packet_len;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200578 struct batadv_hard_iface *primary_if = NULL;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200579 bool res = false;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200580 unsigned long aggregation_end_time;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200581
Sven Eckelmann96412692012-06-05 22:31:30 +0200582 batadv_ogm_packet = (struct batadv_ogm_packet *)forw_packet->skb->data;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200583 aggregation_end_time = send_time;
584 aggregation_end_time += msecs_to_jiffies(BATADV_MAX_AGGREGATION_MS);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200585
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200586 /* we can aggregate the current packet to this aggregated packet
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200587 * if:
588 *
589 * - the send time is within our MAX_AGGREGATION_MS time
590 * - the resulting packet wont be bigger than
591 * MAX_AGGREGATION_BYTES
Markus Pargmann8f34b382014-12-26 12:41:29 +0100592 * otherwise aggregation is not possible
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200593 */
Markus Pargmann8f34b382014-12-26 12:41:29 +0100594 if (!time_before(send_time, forw_packet->send_time) ||
595 !time_after_eq(aggregation_end_time, forw_packet->send_time))
596 return false;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200597
Markus Pargmann8f34b382014-12-26 12:41:29 +0100598 if (aggregated_bytes > BATADV_MAX_AGGREGATION_BYTES)
599 return false;
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100600
Markus Pargmann8f34b382014-12-26 12:41:29 +0100601 /* packet is not leaving on the same interface. */
602 if (forw_packet->if_outgoing != if_outgoing)
603 return false;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200604
Markus Pargmann8f34b382014-12-26 12:41:29 +0100605 /* check aggregation compatibility
606 * -> direct link packets are broadcasted on
607 * their interface only
608 * -> aggregate packet if the current packet is
609 * a "global" packet as well as the base
610 * packet
611 */
612 primary_if = batadv_primary_if_get_selected(bat_priv);
613 if (!primary_if)
614 return false;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200615
Markus Pargmann8f34b382014-12-26 12:41:29 +0100616 /* packets without direct link flag and high TTL
617 * are flooded through the net
618 */
619 if (!directlink &&
620 !(batadv_ogm_packet->flags & BATADV_DIRECTLINK) &&
621 batadv_ogm_packet->ttl != 1 &&
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200622
Markus Pargmann8f34b382014-12-26 12:41:29 +0100623 /* own packets originating non-primary
624 * interfaces leave only that interface
625 */
626 (!forw_packet->own ||
627 forw_packet->if_incoming == primary_if)) {
628 res = true;
629 goto out;
630 }
631
632 /* if the incoming packet is sent via this one
633 * interface only - we still can aggregate
634 */
635 if (directlink &&
636 new_bat_ogm_packet->ttl == 1 &&
637 forw_packet->if_incoming == if_incoming &&
638
639 /* packets from direct neighbors or
640 * own secondary interface packets
641 * (= secondary interface packets in general)
642 */
643 (batadv_ogm_packet->flags & BATADV_DIRECTLINK ||
644 (forw_packet->own &&
645 forw_packet->if_incoming != primary_if))) {
646 res = true;
647 goto out;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200648 }
649
650out:
651 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100652 batadv_hardif_put(primary_if);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200653 return res;
654}
655
Simon Wunderlich1b371d12014-01-15 21:17:54 +0100656/**
657 * batadv_iv_ogm_aggregate_new - create a new aggregated packet and add this
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100658 * packet to it.
659 * @packet_buff: pointer to the OGM
660 * @packet_len: (total) length of the OGM
661 * @send_time: timestamp (jiffies) when the packet is to be sent
662 * @direct_link: whether this OGM has direct link status
663 * @if_incoming: interface where the packet was received
664 * @if_outgoing: interface for which the retransmission should be considered
665 * @own_packet: true if it is a self-generated ogm
666 */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200667static void batadv_iv_ogm_aggregate_new(const unsigned char *packet_buff,
668 int packet_len, unsigned long send_time,
669 bool direct_link,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200670 struct batadv_hard_iface *if_incoming,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100671 struct batadv_hard_iface *if_outgoing,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200672 int own_packet)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200673{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200674 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
675 struct batadv_forw_packet *forw_packet_aggr;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200676 unsigned char *skb_buff;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200677 unsigned int skb_size;
Linus LĂĽssinga65e5482016-06-20 21:39:54 +0200678 atomic_t *queue_left = own_packet ? NULL : &bat_priv->batman_queue_left;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200679
Linus LĂĽssinga65e5482016-06-20 21:39:54 +0200680 forw_packet_aggr = batadv_forw_packet_alloc(if_incoming, if_outgoing,
681 queue_left, bat_priv);
Markus Pargmann940d1562014-12-26 12:41:31 +0100682 if (!forw_packet_aggr)
Linus LĂĽssinga65e5482016-06-20 21:39:54 +0200683 return;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200684
Markus Pargmann940d1562014-12-26 12:41:31 +0100685 if (atomic_read(&bat_priv->aggregated_ogms) &&
686 packet_len < BATADV_MAX_AGGREGATION_BYTES)
Sven Eckelmann5b246572012-11-04 17:11:45 +0100687 skb_size = BATADV_MAX_AGGREGATION_BYTES;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200688 else
Sven Eckelmann5b246572012-11-04 17:11:45 +0100689 skb_size = packet_len;
690
Antonio Quartulli41ab6c42013-04-02 22:28:44 +0200691 skb_size += ETH_HLEN;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200692
Antonio Quartulli41ab6c42013-04-02 22:28:44 +0200693 forw_packet_aggr->skb = netdev_alloc_skb_ip_align(NULL, skb_size);
Linus LĂĽssinga65e5482016-06-20 21:39:54 +0200694 if (!forw_packet_aggr->skb) {
695 batadv_forw_packet_free(forw_packet_aggr);
696 return;
697 }
698
Simon Wunderlichc54f38c2013-07-29 17:56:44 +0200699 forw_packet_aggr->skb->priority = TC_PRIO_CONTROL;
Antonio Quartulli41ab6c42013-04-02 22:28:44 +0200700 skb_reserve(forw_packet_aggr->skb, ETH_HLEN);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200701
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200702 skb_buff = skb_put(forw_packet_aggr->skb, packet_len);
703 forw_packet_aggr->packet_len = packet_len;
704 memcpy(skb_buff, packet_buff, packet_len);
705
706 forw_packet_aggr->own = own_packet;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200707 forw_packet_aggr->direct_link_flags = BATADV_NO_FLAGS;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200708 forw_packet_aggr->send_time = send_time;
709
710 /* save packet direct link flag status */
711 if (direct_link)
712 forw_packet_aggr->direct_link_flags |= 1;
713
714 /* add new packet to packet list */
715 spin_lock_bh(&bat_priv->forw_bat_list_lock);
716 hlist_add_head(&forw_packet_aggr->list, &bat_priv->forw_bat_list);
717 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
718
719 /* start timer for this packet */
720 INIT_DELAYED_WORK(&forw_packet_aggr->delayed_work,
Antonio Quartullif0d97252016-05-03 01:45:34 +0800721 batadv_iv_send_outstanding_bat_ogm_packet);
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200722 queue_delayed_work(batadv_event_workqueue,
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200723 &forw_packet_aggr->delayed_work,
724 send_time - jiffies);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200725}
726
727/* aggregate a new packet into the existing ogm packet */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200728static void batadv_iv_ogm_aggregate(struct batadv_forw_packet *forw_packet_aggr,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200729 const unsigned char *packet_buff,
730 int packet_len, bool direct_link)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200731{
732 unsigned char *skb_buff;
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200733 unsigned long new_direct_link_flag;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200734
735 skb_buff = skb_put(forw_packet_aggr->skb, packet_len);
736 memcpy(skb_buff, packet_buff, packet_len);
737 forw_packet_aggr->packet_len += packet_len;
738 forw_packet_aggr->num_packets++;
739
740 /* save packet direct link flag status */
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200741 if (direct_link) {
742 new_direct_link_flag = BIT(forw_packet_aggr->num_packets);
743 forw_packet_aggr->direct_link_flags |= new_direct_link_flag;
744 }
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200745}
746
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100747/**
748 * batadv_iv_ogm_queue_add - queue up an OGM for transmission
749 * @bat_priv: the bat priv with all the soft interface information
750 * @packet_buff: pointer to the OGM
751 * @packet_len: (total) length of the OGM
752 * @if_incoming: interface where the packet was received
753 * @if_outgoing: interface for which the retransmission should be considered
754 * @own_packet: true if it is a self-generated ogm
755 * @send_time: timestamp (jiffies) when the packet is to be sent
756 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200757static void batadv_iv_ogm_queue_add(struct batadv_priv *bat_priv,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200758 unsigned char *packet_buff,
759 int packet_len,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200760 struct batadv_hard_iface *if_incoming,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100761 struct batadv_hard_iface *if_outgoing,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200762 int own_packet, unsigned long send_time)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200763{
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200764 /* _aggr -> pointer to the packet we want to aggregate with
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200765 * _pos -> pointer to the position in the queue
766 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200767 struct batadv_forw_packet *forw_packet_aggr = NULL;
768 struct batadv_forw_packet *forw_packet_pos = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +0200769 struct batadv_ogm_packet *batadv_ogm_packet;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200770 bool direct_link;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200771 unsigned long max_aggregation_jiffies;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200772
Sven Eckelmann96412692012-06-05 22:31:30 +0200773 batadv_ogm_packet = (struct batadv_ogm_packet *)packet_buff;
Markus Pargmann56489152014-12-26 12:41:32 +0100774 direct_link = !!(batadv_ogm_packet->flags & BATADV_DIRECTLINK);
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200775 max_aggregation_jiffies = msecs_to_jiffies(BATADV_MAX_AGGREGATION_MS);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200776
777 /* find position for the packet in the forward queue */
778 spin_lock_bh(&bat_priv->forw_bat_list_lock);
779 /* own packets are not to be aggregated */
Markus Pargmann56489152014-12-26 12:41:32 +0100780 if (atomic_read(&bat_priv->aggregated_ogms) && !own_packet) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800781 hlist_for_each_entry(forw_packet_pos,
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200782 &bat_priv->forw_bat_list, list) {
Sven Eckelmann96412692012-06-05 22:31:30 +0200783 if (batadv_iv_ogm_can_aggregate(batadv_ogm_packet,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200784 bat_priv, packet_len,
785 send_time, direct_link,
786 if_incoming,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100787 if_outgoing,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200788 forw_packet_pos)) {
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200789 forw_packet_aggr = forw_packet_pos;
790 break;
791 }
792 }
793 }
794
795 /* nothing to aggregate with - either aggregation disabled or no
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200796 * suitable aggregation packet found
797 */
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200798 if (!forw_packet_aggr) {
799 /* the following section can run without the lock */
800 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
801
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200802 /* if we could not aggregate this packet with one of the others
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200803 * we hold it back for a while, so that it might be aggregated
804 * later on
805 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200806 if (!own_packet && atomic_read(&bat_priv->aggregated_ogms))
807 send_time += max_aggregation_jiffies;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200808
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200809 batadv_iv_ogm_aggregate_new(packet_buff, packet_len,
810 send_time, direct_link,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100811 if_incoming, if_outgoing,
812 own_packet);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200813 } else {
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200814 batadv_iv_ogm_aggregate(forw_packet_aggr, packet_buff,
815 packet_len, direct_link);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200816 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
817 }
818}
819
Sven Eckelmann56303d32012-06-05 22:31:31 +0200820static void batadv_iv_ogm_forward(struct batadv_orig_node *orig_node,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200821 const struct ethhdr *ethhdr,
Sven Eckelmann96412692012-06-05 22:31:30 +0200822 struct batadv_ogm_packet *batadv_ogm_packet,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200823 bool is_single_hop_neigh,
824 bool is_from_best_next_hop,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100825 struct batadv_hard_iface *if_incoming,
826 struct batadv_hard_iface *if_outgoing)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200827{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200828 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200829 u16 tvlv_len;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200830
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100831 if (batadv_ogm_packet->ttl <= 1) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200832 batadv_dbg(BATADV_DBG_BATMAN, bat_priv, "ttl exceeded\n");
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200833 return;
834 }
835
Marek Lindner13b25412012-03-11 06:17:53 +0800836 if (!is_from_best_next_hop) {
837 /* Mark the forwarded packet when it is not coming from our
838 * best next hop. We still need to forward the packet for our
839 * neighbor link quality detection to work in case the packet
840 * originated from a single hop neighbor. Otherwise we can
841 * simply drop the ogm.
842 */
843 if (is_single_hop_neigh)
Sven Eckelmann96412692012-06-05 22:31:30 +0200844 batadv_ogm_packet->flags |= BATADV_NOT_BEST_NEXT_HOP;
Marek Lindner13b25412012-03-11 06:17:53 +0800845 else
846 return;
847 }
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200848
Marek Lindneref261572013-04-23 21:39:57 +0800849 tvlv_len = ntohs(batadv_ogm_packet->tvlv_len);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200850
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100851 batadv_ogm_packet->ttl--;
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100852 ether_addr_copy(batadv_ogm_packet->prev_sender, ethhdr->h_source);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200853
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200854 /* apply hop penalty */
Sven Eckelmann96412692012-06-05 22:31:30 +0200855 batadv_ogm_packet->tq = batadv_hop_penalty(batadv_ogm_packet->tq,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200856 bat_priv);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200857
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200858 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200859 "Forwarding packet: tq: %i, ttl: %i\n",
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100860 batadv_ogm_packet->tq, batadv_ogm_packet->ttl);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200861
Marek Lindner75cd33f2012-03-01 15:35:16 +0800862 if (is_single_hop_neigh)
Sven Eckelmann96412692012-06-05 22:31:30 +0200863 batadv_ogm_packet->flags |= BATADV_DIRECTLINK;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200864 else
Sven Eckelmann96412692012-06-05 22:31:30 +0200865 batadv_ogm_packet->flags &= ~BATADV_DIRECTLINK;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200866
Sven Eckelmann96412692012-06-05 22:31:30 +0200867 batadv_iv_ogm_queue_add(bat_priv, (unsigned char *)batadv_ogm_packet,
Marek Lindneref261572013-04-23 21:39:57 +0800868 BATADV_OGM_HLEN + tvlv_len,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100869 if_incoming, if_outgoing, 0,
870 batadv_iv_ogm_fwd_send_time());
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200871}
872
Antonio Quartullid9896612013-04-17 17:44:43 +0200873/**
874 * batadv_iv_ogm_slide_own_bcast_window - bitshift own OGM broadcast windows for
875 * the given interface
876 * @hard_iface: the interface for which the windows have to be shifted
877 */
878static void
879batadv_iv_ogm_slide_own_bcast_window(struct batadv_hard_iface *hard_iface)
880{
881 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
882 struct batadv_hashtable *hash = bat_priv->orig_hash;
883 struct hlist_head *head;
884 struct batadv_orig_node *orig_node;
885 unsigned long *word;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200886 u32 i;
Antonio Quartullid9896612013-04-17 17:44:43 +0200887 size_t word_index;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200888 u8 *w;
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200889 int if_num;
Antonio Quartullid9896612013-04-17 17:44:43 +0200890
891 for (i = 0; i < hash->size; i++) {
892 head = &hash->table[i];
893
894 rcu_read_lock();
895 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200896 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
Antonio Quartullid9896612013-04-17 17:44:43 +0200897 word_index = hard_iface->if_num * BATADV_NUM_WORDS;
Antonio Quartulli32db6aa2014-09-01 14:37:29 +0200898 word = &orig_node->bat_iv.bcast_own[word_index];
Antonio Quartullid9896612013-04-17 17:44:43 +0200899
900 batadv_bit_get_packet(bat_priv, word, 1, 0);
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200901 if_num = hard_iface->if_num;
902 w = &orig_node->bat_iv.bcast_own_sum[if_num];
Antonio Quartullid9896612013-04-17 17:44:43 +0200903 *w = bitmap_weight(word, BATADV_TQ_LOCAL_WINDOW_SIZE);
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200904 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
Antonio Quartullid9896612013-04-17 17:44:43 +0200905 }
906 rcu_read_unlock();
907 }
908}
909
Sven Eckelmann56303d32012-06-05 22:31:31 +0200910static void batadv_iv_ogm_schedule(struct batadv_hard_iface *hard_iface)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200911{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200912 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindner14511512012-08-02 17:20:26 +0200913 unsigned char **ogm_buff = &hard_iface->bat_iv.ogm_buff;
Sven Eckelmann96412692012-06-05 22:31:30 +0200914 struct batadv_ogm_packet *batadv_ogm_packet;
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100915 struct batadv_hard_iface *primary_if, *tmp_hard_iface;
Marek Lindner14511512012-08-02 17:20:26 +0200916 int *ogm_buff_len = &hard_iface->bat_iv.ogm_buff_len;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200917 u32 seqno;
918 u16 tvlv_len = 0;
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100919 unsigned long send_time;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200920
Antonio Quartullif0d97252016-05-03 01:45:34 +0800921 if ((hard_iface->if_status == BATADV_IF_NOT_IN_USE) ||
922 (hard_iface->if_status == BATADV_IF_TO_BE_REMOVED))
923 return;
924
925 /* the interface gets activated here to avoid race conditions between
926 * the moment of activating the interface in
927 * hardif_activate_interface() where the originator mac is set and
928 * outdated packets (especially uninitialized mac addresses) in the
929 * packet queue
930 */
931 if (hard_iface->if_status == BATADV_IF_TO_BE_ACTIVATED)
932 hard_iface->if_status = BATADV_IF_ACTIVE;
933
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200934 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200935
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800936 if (hard_iface == primary_if) {
937 /* tt changes have to be committed before the tvlv data is
938 * appended as it may alter the tt tvlv container
939 */
940 batadv_tt_local_commit_changes(bat_priv);
Marek Lindneref261572013-04-23 21:39:57 +0800941 tvlv_len = batadv_tvlv_container_ogm_append(bat_priv, ogm_buff,
942 ogm_buff_len,
943 BATADV_OGM_HLEN);
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800944 }
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800945
Marek Lindner14511512012-08-02 17:20:26 +0200946 batadv_ogm_packet = (struct batadv_ogm_packet *)(*ogm_buff);
Marek Lindneref261572013-04-23 21:39:57 +0800947 batadv_ogm_packet->tvlv_len = htons(tvlv_len);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200948
949 /* change sequence number to network order */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200950 seqno = (u32)atomic_read(&hard_iface->bat_iv.ogm_seqno);
Sven Eckelmannbbb1f902012-07-08 17:13:15 +0200951 batadv_ogm_packet->seqno = htonl(seqno);
Marek Lindner14511512012-08-02 17:20:26 +0200952 atomic_inc(&hard_iface->bat_iv.ogm_seqno);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200953
Antonio Quartullid9896612013-04-17 17:44:43 +0200954 batadv_iv_ogm_slide_own_bcast_window(hard_iface);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200955
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100956 send_time = batadv_iv_ogm_emit_send_time(bat_priv);
957
958 if (hard_iface != primary_if) {
959 /* OGMs from secondary interfaces are only scheduled on their
960 * respective interfaces.
961 */
962 batadv_iv_ogm_queue_add(bat_priv, *ogm_buff, *ogm_buff_len,
963 hard_iface, hard_iface, 1, send_time);
964 goto out;
965 }
966
967 /* OGMs from primary interfaces are scheduled on all
968 * interfaces.
969 */
970 rcu_read_lock();
971 list_for_each_entry_rcu(tmp_hard_iface, &batadv_hardif_list, list) {
972 if (tmp_hard_iface->soft_iface != hard_iface->soft_iface)
Sven Eckelmann87b40f52015-07-17 10:03:42 +0200973 continue;
Sven Eckelmann27353442016-03-05 16:09:16 +0100974
975 if (!kref_get_unless_zero(&tmp_hard_iface->refcount))
976 continue;
977
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100978 batadv_iv_ogm_queue_add(bat_priv, *ogm_buff,
979 *ogm_buff_len, hard_iface,
980 tmp_hard_iface, 1, send_time);
Sven Eckelmann27353442016-03-05 16:09:16 +0100981
982 batadv_hardif_put(tmp_hard_iface);
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100983 }
984 rcu_read_unlock();
985
986out:
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200987 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100988 batadv_hardif_put(primary_if);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200989}
990
Simon Wunderlich89652332013-11-13 19:14:46 +0100991/**
992 * batadv_iv_ogm_orig_update - use OGM to update corresponding data in an
993 * originator
994 * @bat_priv: the bat priv with all the soft interface information
995 * @orig_node: the orig node who originally emitted the ogm packet
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100996 * @orig_ifinfo: ifinfo for the outgoing interface of the orig_node
Simon Wunderlich89652332013-11-13 19:14:46 +0100997 * @ethhdr: Ethernet header of the OGM
998 * @batadv_ogm_packet: the ogm packet
999 * @if_incoming: interface where the packet was received
1000 * @if_outgoing: interface for which the retransmission should be considered
Simon Wunderlich89652332013-11-13 19:14:46 +01001001 * @dup_status: the duplicate status of this ogm packet.
1002 */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001003static void
Sven Eckelmann56303d32012-06-05 22:31:31 +02001004batadv_iv_ogm_orig_update(struct batadv_priv *bat_priv,
1005 struct batadv_orig_node *orig_node,
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001006 struct batadv_orig_ifinfo *orig_ifinfo,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001007 const struct ethhdr *ethhdr,
Sven Eckelmann96412692012-06-05 22:31:30 +02001008 const struct batadv_ogm_packet *batadv_ogm_packet,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001009 struct batadv_hard_iface *if_incoming,
Simon Wunderlich89652332013-11-13 19:14:46 +01001010 struct batadv_hard_iface *if_outgoing,
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001011 enum batadv_dup_status dup_status)
Marek Lindnerfc957272011-07-30 12:04:12 +02001012{
Simon Wunderlich89652332013-11-13 19:14:46 +01001013 struct batadv_neigh_ifinfo *neigh_ifinfo = NULL;
1014 struct batadv_neigh_ifinfo *router_ifinfo = NULL;
Sven Eckelmann4f248cf2015-06-09 20:50:49 +02001015 struct batadv_neigh_node *neigh_node = NULL;
1016 struct batadv_neigh_node *tmp_neigh_node = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001017 struct batadv_neigh_node *router = NULL;
1018 struct batadv_orig_node *orig_node_tmp;
Linus LĂĽssing7caf69f2012-09-18 03:01:08 +02001019 int if_num;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001020 u8 sum_orig, sum_neigh;
1021 u8 *neigh_addr;
1022 u8 tq_avg;
Marek Lindnerfc957272011-07-30 12:04:12 +02001023
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001024 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001025 "update_originator(): Searching and updating originator entry of received packet\n");
Marek Lindnerfc957272011-07-30 12:04:12 +02001026
1027 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001028 hlist_for_each_entry_rcu(tmp_neigh_node,
Marek Lindnerfc957272011-07-30 12:04:12 +02001029 &orig_node->neigh_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001030 neigh_addr = tmp_neigh_node->addr;
1031 if (batadv_compare_eth(neigh_addr, ethhdr->h_source) &&
1032 tmp_neigh_node->if_incoming == if_incoming &&
Sven Eckelmann77ae32e2016-01-16 10:29:53 +01001033 kref_get_unless_zero(&tmp_neigh_node->refcount)) {
Antonio Quartulli38dc40e2013-03-30 17:22:00 +01001034 if (WARN(neigh_node, "too many matching neigh_nodes"))
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001035 batadv_neigh_node_put(neigh_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001036 neigh_node = tmp_neigh_node;
1037 continue;
1038 }
1039
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001040 if (dup_status != BATADV_NO_DUP)
Marek Lindnerfc957272011-07-30 12:04:12 +02001041 continue;
1042
Simon Wunderlich89652332013-11-13 19:14:46 +01001043 /* only update the entry for this outgoing interface */
1044 neigh_ifinfo = batadv_neigh_ifinfo_get(tmp_neigh_node,
1045 if_outgoing);
1046 if (!neigh_ifinfo)
1047 continue;
1048
1049 spin_lock_bh(&tmp_neigh_node->ifinfo_lock);
1050 batadv_ring_buffer_set(neigh_ifinfo->bat_iv.tq_recv,
1051 &neigh_ifinfo->bat_iv.tq_index, 0);
1052 tq_avg = batadv_ring_buffer_avg(neigh_ifinfo->bat_iv.tq_recv);
1053 neigh_ifinfo->bat_iv.tq_avg = tq_avg;
1054 spin_unlock_bh(&tmp_neigh_node->ifinfo_lock);
1055
Sven Eckelmann044fa3a2016-01-17 11:01:12 +01001056 batadv_neigh_ifinfo_put(neigh_ifinfo);
Simon Wunderlich89652332013-11-13 19:14:46 +01001057 neigh_ifinfo = NULL;
Marek Lindnerfc957272011-07-30 12:04:12 +02001058 }
1059
1060 if (!neigh_node) {
Sven Eckelmann56303d32012-06-05 22:31:31 +02001061 struct batadv_orig_node *orig_tmp;
Marek Lindnerfc957272011-07-30 12:04:12 +02001062
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001063 orig_tmp = batadv_iv_ogm_orig_get(bat_priv, ethhdr->h_source);
Marek Lindnerfc957272011-07-30 12:04:12 +02001064 if (!orig_tmp)
1065 goto unlock;
1066
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001067 neigh_node = batadv_iv_ogm_neigh_new(if_incoming,
1068 ethhdr->h_source,
Antonio Quartulli863dd7a2013-03-25 13:49:46 +01001069 orig_node, orig_tmp);
Marek Lindnerfc957272011-07-30 12:04:12 +02001070
Sven Eckelmann5d967312016-01-17 11:01:09 +01001071 batadv_orig_node_put(orig_tmp);
Marek Lindnerfc957272011-07-30 12:04:12 +02001072 if (!neigh_node)
1073 goto unlock;
Markus Pargmann23badd62014-12-26 12:41:33 +01001074 } else {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001075 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001076 "Updating existing last-hop neighbor of originator\n");
Markus Pargmann23badd62014-12-26 12:41:33 +01001077 }
Marek Lindnerfc957272011-07-30 12:04:12 +02001078
1079 rcu_read_unlock();
Simon Wunderlich89652332013-11-13 19:14:46 +01001080 neigh_ifinfo = batadv_neigh_ifinfo_new(neigh_node, if_outgoing);
1081 if (!neigh_ifinfo)
1082 goto out;
Marek Lindnerfc957272011-07-30 12:04:12 +02001083
Marek Lindnerd7b2a972012-03-01 15:35:19 +08001084 neigh_node->last_seen = jiffies;
Marek Lindnerfc957272011-07-30 12:04:12 +02001085
Simon Wunderlich89652332013-11-13 19:14:46 +01001086 spin_lock_bh(&neigh_node->ifinfo_lock);
1087 batadv_ring_buffer_set(neigh_ifinfo->bat_iv.tq_recv,
1088 &neigh_ifinfo->bat_iv.tq_index,
Sven Eckelmann96412692012-06-05 22:31:30 +02001089 batadv_ogm_packet->tq);
Simon Wunderlich89652332013-11-13 19:14:46 +01001090 tq_avg = batadv_ring_buffer_avg(neigh_ifinfo->bat_iv.tq_recv);
1091 neigh_ifinfo->bat_iv.tq_avg = tq_avg;
1092 spin_unlock_bh(&neigh_node->ifinfo_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +02001093
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001094 if (dup_status == BATADV_NO_DUP) {
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001095 orig_ifinfo->last_ttl = batadv_ogm_packet->ttl;
Simon Wunderlich89652332013-11-13 19:14:46 +01001096 neigh_ifinfo->last_ttl = batadv_ogm_packet->ttl;
Marek Lindnerfc957272011-07-30 12:04:12 +02001097 }
1098
Marek Lindnerfc957272011-07-30 12:04:12 +02001099 /* if this neighbor already is our next hop there is nothing
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001100 * to change
1101 */
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001102 router = batadv_orig_router_get(orig_node, if_outgoing);
Marek Lindnerfc957272011-07-30 12:04:12 +02001103 if (router == neigh_node)
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001104 goto out;
Marek Lindnerfc957272011-07-30 12:04:12 +02001105
Simon Wunderlich89652332013-11-13 19:14:46 +01001106 if (router) {
1107 router_ifinfo = batadv_neigh_ifinfo_get(router, if_outgoing);
1108 if (!router_ifinfo)
1109 goto out;
1110
1111 /* if this neighbor does not offer a better TQ we won't
1112 * consider it
1113 */
1114 if (router_ifinfo->bat_iv.tq_avg > neigh_ifinfo->bat_iv.tq_avg)
1115 goto out;
1116 }
Marek Lindnerfc957272011-07-30 12:04:12 +02001117
1118 /* if the TQ is the same and the link not more symmetric we
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001119 * won't consider it either
1120 */
Simon Wunderlich89652332013-11-13 19:14:46 +01001121 if (router_ifinfo &&
Markus Pargmann01b97a32014-12-26 12:41:30 +01001122 neigh_ifinfo->bat_iv.tq_avg == router_ifinfo->bat_iv.tq_avg) {
Marek Lindnerfc957272011-07-30 12:04:12 +02001123 orig_node_tmp = router->orig_node;
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001124 spin_lock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock);
Linus LĂĽssing7caf69f2012-09-18 03:01:08 +02001125 if_num = router->if_incoming->if_num;
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001126 sum_orig = orig_node_tmp->bat_iv.bcast_own_sum[if_num];
1127 spin_unlock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +02001128
1129 orig_node_tmp = neigh_node->orig_node;
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001130 spin_lock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock);
Linus LĂĽssing7caf69f2012-09-18 03:01:08 +02001131 if_num = neigh_node->if_incoming->if_num;
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001132 sum_neigh = orig_node_tmp->bat_iv.bcast_own_sum[if_num];
1133 spin_unlock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +02001134
Sven Eckelmannbbb1f902012-07-08 17:13:15 +02001135 if (sum_orig >= sum_neigh)
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001136 goto out;
Marek Lindnerfc957272011-07-30 12:04:12 +02001137 }
1138
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001139 batadv_update_route(bat_priv, orig_node, if_outgoing, neigh_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001140 goto out;
1141
1142unlock:
1143 rcu_read_unlock();
1144out:
1145 if (neigh_node)
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001146 batadv_neigh_node_put(neigh_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001147 if (router)
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001148 batadv_neigh_node_put(router);
Simon Wunderlich89652332013-11-13 19:14:46 +01001149 if (neigh_ifinfo)
Sven Eckelmann044fa3a2016-01-17 11:01:12 +01001150 batadv_neigh_ifinfo_put(neigh_ifinfo);
Simon Wunderlich89652332013-11-13 19:14:46 +01001151 if (router_ifinfo)
Sven Eckelmann044fa3a2016-01-17 11:01:12 +01001152 batadv_neigh_ifinfo_put(router_ifinfo);
Marek Lindnerfc957272011-07-30 12:04:12 +02001153}
1154
Simon Wunderlich89652332013-11-13 19:14:46 +01001155/**
1156 * batadv_iv_ogm_calc_tq - calculate tq for current received ogm packet
1157 * @orig_node: the orig node who originally emitted the ogm packet
1158 * @orig_neigh_node: the orig node struct of the neighbor who sent the packet
1159 * @batadv_ogm_packet: the ogm packet
1160 * @if_incoming: interface where the packet was received
1161 * @if_outgoing: interface for which the retransmission should be considered
1162 *
Sven Eckelmann4b426b12016-02-22 21:02:39 +01001163 * Return: true if the link can be considered bidirectional, false otherwise
Simon Wunderlich89652332013-11-13 19:14:46 +01001164 */
Sven Eckelmann4b426b12016-02-22 21:02:39 +01001165static bool batadv_iv_ogm_calc_tq(struct batadv_orig_node *orig_node,
1166 struct batadv_orig_node *orig_neigh_node,
1167 struct batadv_ogm_packet *batadv_ogm_packet,
1168 struct batadv_hard_iface *if_incoming,
1169 struct batadv_hard_iface *if_outgoing)
Marek Lindnerfc957272011-07-30 12:04:12 +02001170{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001171 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
1172 struct batadv_neigh_node *neigh_node = NULL, *tmp_neigh_node;
Simon Wunderlich89652332013-11-13 19:14:46 +01001173 struct batadv_neigh_ifinfo *neigh_ifinfo;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001174 u8 total_count;
1175 u8 orig_eq_count, neigh_rq_count, neigh_rq_inv, tq_own;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001176 unsigned int neigh_rq_inv_cube, neigh_rq_max_cube;
Sven Eckelmannd285f522016-02-16 10:47:07 +01001177 int if_num;
1178 unsigned int tq_asym_penalty, inv_asym_penalty;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001179 unsigned int combined_tq;
Sven Eckelmannd285f522016-02-16 10:47:07 +01001180 unsigned int tq_iface_penalty;
Sven Eckelmann4b426b12016-02-22 21:02:39 +01001181 bool ret = false;
Marek Lindnerfc957272011-07-30 12:04:12 +02001182
1183 /* find corresponding one hop neighbor */
1184 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001185 hlist_for_each_entry_rcu(tmp_neigh_node,
Marek Lindnerfc957272011-07-30 12:04:12 +02001186 &orig_neigh_node->neigh_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001187 if (!batadv_compare_eth(tmp_neigh_node->addr,
1188 orig_neigh_node->orig))
Marek Lindnerfc957272011-07-30 12:04:12 +02001189 continue;
1190
1191 if (tmp_neigh_node->if_incoming != if_incoming)
1192 continue;
1193
Sven Eckelmann77ae32e2016-01-16 10:29:53 +01001194 if (!kref_get_unless_zero(&tmp_neigh_node->refcount))
Marek Lindnerfc957272011-07-30 12:04:12 +02001195 continue;
1196
1197 neigh_node = tmp_neigh_node;
1198 break;
1199 }
1200 rcu_read_unlock();
1201
1202 if (!neigh_node)
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001203 neigh_node = batadv_iv_ogm_neigh_new(if_incoming,
1204 orig_neigh_node->orig,
1205 orig_neigh_node,
Antonio Quartulli863dd7a2013-03-25 13:49:46 +01001206 orig_neigh_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001207
1208 if (!neigh_node)
1209 goto out;
1210
Marek Lindnerd7b2a972012-03-01 15:35:19 +08001211 /* if orig_node is direct neighbor update neigh_node last_seen */
Marek Lindnerfc957272011-07-30 12:04:12 +02001212 if (orig_node == orig_neigh_node)
Marek Lindnerd7b2a972012-03-01 15:35:19 +08001213 neigh_node->last_seen = jiffies;
Marek Lindnerfc957272011-07-30 12:04:12 +02001214
Marek Lindnerd7b2a972012-03-01 15:35:19 +08001215 orig_node->last_seen = jiffies;
Marek Lindnerfc957272011-07-30 12:04:12 +02001216
1217 /* find packet count of corresponding one hop neighbor */
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001218 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
1219 if_num = if_incoming->if_num;
1220 orig_eq_count = orig_neigh_node->bat_iv.bcast_own_sum[if_num];
Simon Wunderlich89652332013-11-13 19:14:46 +01001221 neigh_ifinfo = batadv_neigh_ifinfo_new(neigh_node, if_outgoing);
1222 if (neigh_ifinfo) {
1223 neigh_rq_count = neigh_ifinfo->bat_iv.real_packet_count;
Sven Eckelmann044fa3a2016-01-17 11:01:12 +01001224 batadv_neigh_ifinfo_put(neigh_ifinfo);
Simon Wunderlich89652332013-11-13 19:14:46 +01001225 } else {
1226 neigh_rq_count = 0;
1227 }
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001228 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +02001229
1230 /* pay attention to not get a value bigger than 100 % */
Sven Eckelmannc67893d2012-07-08 18:33:51 +02001231 if (orig_eq_count > neigh_rq_count)
1232 total_count = neigh_rq_count;
1233 else
1234 total_count = orig_eq_count;
Marek Lindnerfc957272011-07-30 12:04:12 +02001235
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001236 /* if we have too few packets (too less data) we set tq_own to zero
1237 * if we receive too few packets it is not considered bidirectional
1238 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001239 if (total_count < BATADV_TQ_LOCAL_BIDRECT_SEND_MINIMUM ||
1240 neigh_rq_count < BATADV_TQ_LOCAL_BIDRECT_RECV_MINIMUM)
Marek Lindnerfc957272011-07-30 12:04:12 +02001241 tq_own = 0;
1242 else
1243 /* neigh_node->real_packet_count is never zero as we
1244 * only purge old information when getting new
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001245 * information
1246 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001247 tq_own = (BATADV_TQ_MAX_VALUE * total_count) / neigh_rq_count;
Marek Lindnerfc957272011-07-30 12:04:12 +02001248
Sven Eckelmann21a12362012-03-07 09:07:46 +01001249 /* 1 - ((1-x) ** 3), normalized to TQ_MAX_VALUE this does
Marek Lindnerfc957272011-07-30 12:04:12 +02001250 * affect the nearly-symmetric links only a little, but
1251 * punishes asymmetric links more. This will give a value
1252 * between 0 and TQ_MAX_VALUE
1253 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001254 neigh_rq_inv = BATADV_TQ_LOCAL_WINDOW_SIZE - neigh_rq_count;
1255 neigh_rq_inv_cube = neigh_rq_inv * neigh_rq_inv * neigh_rq_inv;
1256 neigh_rq_max_cube = BATADV_TQ_LOCAL_WINDOW_SIZE *
1257 BATADV_TQ_LOCAL_WINDOW_SIZE *
1258 BATADV_TQ_LOCAL_WINDOW_SIZE;
1259 inv_asym_penalty = BATADV_TQ_MAX_VALUE * neigh_rq_inv_cube;
1260 inv_asym_penalty /= neigh_rq_max_cube;
1261 tq_asym_penalty = BATADV_TQ_MAX_VALUE - inv_asym_penalty;
Marek Lindnerfc957272011-07-30 12:04:12 +02001262
Simon Wunderlichc0398762013-11-13 19:14:48 +01001263 /* penalize if the OGM is forwarded on the same interface. WiFi
1264 * interfaces and other half duplex devices suffer from throughput
1265 * drops as they can't send and receive at the same time.
1266 */
1267 tq_iface_penalty = BATADV_TQ_MAX_VALUE;
1268 if (if_outgoing && (if_incoming == if_outgoing) &&
1269 batadv_is_wifi_netdev(if_outgoing->net_dev))
1270 tq_iface_penalty = batadv_hop_penalty(BATADV_TQ_MAX_VALUE,
1271 bat_priv);
1272
1273 combined_tq = batadv_ogm_packet->tq *
1274 tq_own *
1275 tq_asym_penalty *
1276 tq_iface_penalty;
1277 combined_tq /= BATADV_TQ_MAX_VALUE *
1278 BATADV_TQ_MAX_VALUE *
1279 BATADV_TQ_MAX_VALUE;
Sven Eckelmann96412692012-06-05 22:31:30 +02001280 batadv_ogm_packet->tq = combined_tq;
Marek Lindnerfc957272011-07-30 12:04:12 +02001281
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001282 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Simon Wunderlichc0398762013-11-13 19:14:48 +01001283 "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 +02001284 orig_node->orig, orig_neigh_node->orig, total_count,
Simon Wunderlichc0398762013-11-13 19:14:48 +01001285 neigh_rq_count, tq_own, tq_asym_penalty, tq_iface_penalty,
1286 batadv_ogm_packet->tq, if_incoming->net_dev->name,
1287 if_outgoing ? if_outgoing->net_dev->name : "DEFAULT");
Marek Lindnerfc957272011-07-30 12:04:12 +02001288
1289 /* if link has the minimum required transmission quality
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001290 * consider it bidirectional
1291 */
Sven Eckelmann96412692012-06-05 22:31:30 +02001292 if (batadv_ogm_packet->tq >= BATADV_TQ_TOTAL_BIDRECT_LIMIT)
Sven Eckelmann4b426b12016-02-22 21:02:39 +01001293 ret = true;
Marek Lindnerfc957272011-07-30 12:04:12 +02001294
1295out:
1296 if (neigh_node)
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001297 batadv_neigh_node_put(neigh_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001298 return ret;
1299}
1300
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001301/**
1302 * batadv_iv_ogm_update_seqnos - process a batman packet for all interfaces,
1303 * adjust the sequence number and find out whether it is a duplicate
1304 * @ethhdr: ethernet header of the packet
1305 * @batadv_ogm_packet: OGM packet to be considered
1306 * @if_incoming: interface on which the OGM packet was received
Simon Wunderlich89652332013-11-13 19:14:46 +01001307 * @if_outgoing: interface for which the retransmission should be considered
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001308 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02001309 * Return: duplicate status as enum batadv_dup_status
Marek Lindnerfc957272011-07-30 12:04:12 +02001310 */
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001311static enum batadv_dup_status
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001312batadv_iv_ogm_update_seqnos(const struct ethhdr *ethhdr,
Sven Eckelmann96412692012-06-05 22:31:30 +02001313 const struct batadv_ogm_packet *batadv_ogm_packet,
Simon Wunderlich89652332013-11-13 19:14:46 +01001314 const struct batadv_hard_iface *if_incoming,
1315 struct batadv_hard_iface *if_outgoing)
Marek Lindnerfc957272011-07-30 12:04:12 +02001316{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001317 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
1318 struct batadv_orig_node *orig_node;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001319 struct batadv_orig_ifinfo *orig_ifinfo = NULL;
Simon Wunderlich89652332013-11-13 19:14:46 +01001320 struct batadv_neigh_node *neigh_node;
1321 struct batadv_neigh_ifinfo *neigh_ifinfo;
Sven Eckelmann4b426b12016-02-22 21:02:39 +01001322 bool is_dup;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001323 s32 seq_diff;
Sven Eckelmann4b426b12016-02-22 21:02:39 +01001324 bool need_update = false;
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001325 int set_mark;
1326 enum batadv_dup_status ret = BATADV_NO_DUP;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001327 u32 seqno = ntohl(batadv_ogm_packet->seqno);
1328 u8 *neigh_addr;
1329 u8 packet_count;
Antonio Quartulli0538f752013-09-02 12:15:01 +02001330 unsigned long *bitmap;
Marek Lindnerfc957272011-07-30 12:04:12 +02001331
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001332 orig_node = batadv_iv_ogm_orig_get(bat_priv, batadv_ogm_packet->orig);
Marek Lindnerfc957272011-07-30 12:04:12 +02001333 if (!orig_node)
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001334 return BATADV_NO_DUP;
Marek Lindnerfc957272011-07-30 12:04:12 +02001335
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001336 orig_ifinfo = batadv_orig_ifinfo_new(orig_node, if_outgoing);
1337 if (WARN_ON(!orig_ifinfo)) {
Sven Eckelmann5d967312016-01-17 11:01:09 +01001338 batadv_orig_node_put(orig_node);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001339 return 0;
1340 }
1341
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001342 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001343 seq_diff = seqno - orig_ifinfo->last_real_seqno;
Marek Lindnerfc957272011-07-30 12:04:12 +02001344
1345 /* signalize caller that the packet is to be dropped. */
Antonio Quartulli1e5cc262012-02-26 15:39:42 +01001346 if (!hlist_empty(&orig_node->neigh_list) &&
Sven Eckelmann30d3c512012-05-12 02:09:36 +02001347 batadv_window_protected(bat_priv, seq_diff,
Simon Wunderlich81f02682015-11-23 19:57:22 +01001348 BATADV_TQ_LOCAL_WINDOW_SIZE,
1349 &orig_ifinfo->batman_seqno_reset, NULL)) {
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001350 ret = BATADV_PROTECTED;
Marek Lindnerfc957272011-07-30 12:04:12 +02001351 goto out;
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001352 }
Marek Lindnerfc957272011-07-30 12:04:12 +02001353
1354 rcu_read_lock();
Simon Wunderlich89652332013-11-13 19:14:46 +01001355 hlist_for_each_entry_rcu(neigh_node, &orig_node->neigh_list, list) {
1356 neigh_ifinfo = batadv_neigh_ifinfo_new(neigh_node,
1357 if_outgoing);
1358 if (!neigh_ifinfo)
1359 continue;
1360
1361 neigh_addr = neigh_node->addr;
1362 is_dup = batadv_test_bit(neigh_ifinfo->bat_iv.real_bits,
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001363 orig_ifinfo->last_real_seqno,
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001364 seqno);
1365
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001366 if (batadv_compare_eth(neigh_addr, ethhdr->h_source) &&
Simon Wunderlich89652332013-11-13 19:14:46 +01001367 neigh_node->if_incoming == if_incoming) {
Marek Lindnerfc957272011-07-30 12:04:12 +02001368 set_mark = 1;
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001369 if (is_dup)
1370 ret = BATADV_NEIGH_DUP;
1371 } else {
Marek Lindnerfc957272011-07-30 12:04:12 +02001372 set_mark = 0;
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001373 if (is_dup && (ret != BATADV_NEIGH_DUP))
1374 ret = BATADV_ORIG_DUP;
1375 }
Marek Lindnerfc957272011-07-30 12:04:12 +02001376
1377 /* if the window moved, set the update flag. */
Simon Wunderlich89652332013-11-13 19:14:46 +01001378 bitmap = neigh_ifinfo->bat_iv.real_bits;
Antonio Quartulli0538f752013-09-02 12:15:01 +02001379 need_update |= batadv_bit_get_packet(bat_priv, bitmap,
Sven Eckelmann0f5f9322012-05-12 02:09:25 +02001380 seq_diff, set_mark);
Marek Lindnerfc957272011-07-30 12:04:12 +02001381
Simon Wunderlich89652332013-11-13 19:14:46 +01001382 packet_count = bitmap_weight(bitmap,
Sven Eckelmannbbb1f902012-07-08 17:13:15 +02001383 BATADV_TQ_LOCAL_WINDOW_SIZE);
Simon Wunderlich89652332013-11-13 19:14:46 +01001384 neigh_ifinfo->bat_iv.real_packet_count = packet_count;
Sven Eckelmann044fa3a2016-01-17 11:01:12 +01001385 batadv_neigh_ifinfo_put(neigh_ifinfo);
Marek Lindnerfc957272011-07-30 12:04:12 +02001386 }
1387 rcu_read_unlock();
1388
1389 if (need_update) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001390 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001391 "%s updating last_seqno: old %u, new %u\n",
1392 if_outgoing ? if_outgoing->net_dev->name : "DEFAULT",
1393 orig_ifinfo->last_real_seqno, seqno);
1394 orig_ifinfo->last_real_seqno = seqno;
Marek Lindnerfc957272011-07-30 12:04:12 +02001395 }
1396
Marek Lindnerfc957272011-07-30 12:04:12 +02001397out:
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001398 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
Sven Eckelmann5d967312016-01-17 11:01:09 +01001399 batadv_orig_node_put(orig_node);
Sven Eckelmann35f94772016-01-17 11:01:13 +01001400 batadv_orig_ifinfo_put(orig_ifinfo);
Marek Lindnerfc957272011-07-30 12:04:12 +02001401 return ret;
1402}
1403
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001404/**
1405 * batadv_iv_ogm_process_per_outif - process a batman iv OGM for an outgoing if
1406 * @skb: the skb containing the OGM
Martin Hundebøll95298a92014-07-15 09:41:05 +02001407 * @ogm_offset: offset from skb->data to start of ogm header
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001408 * @orig_node: the (cached) orig node for the originator of this OGM
1409 * @if_incoming: the interface where this packet was received
1410 * @if_outgoing: the interface for which the packet should be considered
1411 */
1412static void
1413batadv_iv_ogm_process_per_outif(const struct sk_buff *skb, int ogm_offset,
1414 struct batadv_orig_node *orig_node,
1415 struct batadv_hard_iface *if_incoming,
1416 struct batadv_hard_iface *if_outgoing)
1417{
1418 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
Marek Lindner4ff1e2a2015-08-04 21:09:58 +08001419 struct batadv_hardif_neigh_node *hardif_neigh = NULL;
Sven Eckelmann4f248cf2015-06-09 20:50:49 +02001420 struct batadv_neigh_node *router = NULL;
1421 struct batadv_neigh_node *router_router = NULL;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001422 struct batadv_orig_node *orig_neigh_node;
1423 struct batadv_orig_ifinfo *orig_ifinfo;
1424 struct batadv_neigh_node *orig_neigh_router = NULL;
1425 struct batadv_neigh_ifinfo *router_ifinfo = NULL;
1426 struct batadv_ogm_packet *ogm_packet;
1427 enum batadv_dup_status dup_status;
1428 bool is_from_best_next_hop = false;
1429 bool is_single_hop_neigh = false;
1430 bool sameseq, similar_ttl;
1431 struct sk_buff *skb_priv;
1432 struct ethhdr *ethhdr;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001433 u8 *prev_sender;
Sven Eckelmann4b426b12016-02-22 21:02:39 +01001434 bool is_bidirect;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001435
1436 /* create a private copy of the skb, as some functions change tq value
1437 * and/or flags.
1438 */
1439 skb_priv = skb_copy(skb, GFP_ATOMIC);
1440 if (!skb_priv)
1441 return;
1442
1443 ethhdr = eth_hdr(skb_priv);
1444 ogm_packet = (struct batadv_ogm_packet *)(skb_priv->data + ogm_offset);
1445
1446 dup_status = batadv_iv_ogm_update_seqnos(ethhdr, ogm_packet,
1447 if_incoming, if_outgoing);
1448 if (batadv_compare_eth(ethhdr->h_source, ogm_packet->orig))
1449 is_single_hop_neigh = true;
1450
1451 if (dup_status == BATADV_PROTECTED) {
1452 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1453 "Drop packet: packet within seqno protection time (sender: %pM)\n",
1454 ethhdr->h_source);
1455 goto out;
1456 }
1457
1458 if (ogm_packet->tq == 0) {
1459 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1460 "Drop packet: originator packet with tq equal 0\n");
1461 goto out;
1462 }
1463
Marek Lindner4ff1e2a2015-08-04 21:09:58 +08001464 if (is_single_hop_neigh) {
1465 hardif_neigh = batadv_hardif_neigh_get(if_incoming,
1466 ethhdr->h_source);
1467 if (hardif_neigh)
1468 hardif_neigh->last_seen = jiffies;
1469 }
1470
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001471 router = batadv_orig_router_get(orig_node, if_outgoing);
1472 if (router) {
1473 router_router = batadv_orig_router_get(router->orig_node,
1474 if_outgoing);
1475 router_ifinfo = batadv_neigh_ifinfo_get(router, if_outgoing);
1476 }
1477
1478 if ((router_ifinfo && router_ifinfo->bat_iv.tq_avg != 0) &&
1479 (batadv_compare_eth(router->addr, ethhdr->h_source)))
1480 is_from_best_next_hop = true;
1481
1482 prev_sender = ogm_packet->prev_sender;
1483 /* avoid temporary routing loops */
1484 if (router && router_router &&
1485 (batadv_compare_eth(router->addr, prev_sender)) &&
1486 !(batadv_compare_eth(ogm_packet->orig, prev_sender)) &&
1487 (batadv_compare_eth(router->addr, router_router->addr))) {
1488 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1489 "Drop packet: ignoring all rebroadcast packets that may make me loop (sender: %pM)\n",
1490 ethhdr->h_source);
1491 goto out;
1492 }
1493
1494 if (if_outgoing == BATADV_IF_DEFAULT)
1495 batadv_tvlv_ogm_receive(bat_priv, ogm_packet, orig_node);
1496
1497 /* if sender is a direct neighbor the sender mac equals
1498 * originator mac
1499 */
1500 if (is_single_hop_neigh)
1501 orig_neigh_node = orig_node;
1502 else
1503 orig_neigh_node = batadv_iv_ogm_orig_get(bat_priv,
1504 ethhdr->h_source);
1505
1506 if (!orig_neigh_node)
1507 goto out;
1508
1509 /* Update nc_nodes of the originator */
1510 batadv_nc_update_nc_node(bat_priv, orig_node, orig_neigh_node,
1511 ogm_packet, is_single_hop_neigh);
1512
1513 orig_neigh_router = batadv_orig_router_get(orig_neigh_node,
1514 if_outgoing);
1515
1516 /* drop packet if sender is not a direct neighbor and if we
1517 * don't route towards it
1518 */
1519 if (!is_single_hop_neigh && (!orig_neigh_router)) {
1520 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1521 "Drop packet: OGM via unknown neighbor!\n");
1522 goto out_neigh;
1523 }
1524
1525 is_bidirect = batadv_iv_ogm_calc_tq(orig_node, orig_neigh_node,
1526 ogm_packet, if_incoming,
1527 if_outgoing);
1528
1529 /* update ranking if it is not a duplicate or has the same
1530 * seqno and similar ttl as the non-duplicate
1531 */
1532 orig_ifinfo = batadv_orig_ifinfo_new(orig_node, if_outgoing);
1533 if (!orig_ifinfo)
1534 goto out_neigh;
1535
1536 sameseq = orig_ifinfo->last_real_seqno == ntohl(ogm_packet->seqno);
1537 similar_ttl = (orig_ifinfo->last_ttl - 3) <= ogm_packet->ttl;
1538
1539 if (is_bidirect && ((dup_status == BATADV_NO_DUP) ||
1540 (sameseq && similar_ttl))) {
1541 batadv_iv_ogm_orig_update(bat_priv, orig_node,
1542 orig_ifinfo, ethhdr,
1543 ogm_packet, if_incoming,
1544 if_outgoing, dup_status);
1545 }
Sven Eckelmann35f94772016-01-17 11:01:13 +01001546 batadv_orig_ifinfo_put(orig_ifinfo);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001547
Simon Wunderlichef0a9372013-11-13 19:14:49 +01001548 /* only forward for specific interface, not for the default one. */
1549 if (if_outgoing == BATADV_IF_DEFAULT)
1550 goto out_neigh;
1551
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001552 /* is single hop (direct) neighbor */
1553 if (is_single_hop_neigh) {
1554 /* OGMs from secondary interfaces should only scheduled once
1555 * per interface where it has been received, not multiple times
1556 */
1557 if ((ogm_packet->ttl <= 2) &&
1558 (if_incoming != if_outgoing)) {
1559 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1560 "Drop packet: OGM from secondary interface and wrong outgoing interface\n");
1561 goto out_neigh;
1562 }
1563 /* mark direct link on incoming interface */
1564 batadv_iv_ogm_forward(orig_node, ethhdr, ogm_packet,
1565 is_single_hop_neigh,
Simon Wunderlichef0a9372013-11-13 19:14:49 +01001566 is_from_best_next_hop, if_incoming,
1567 if_outgoing);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001568
1569 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1570 "Forwarding packet: rebroadcast neighbor packet with direct link flag\n");
1571 goto out_neigh;
1572 }
1573
1574 /* multihop originator */
1575 if (!is_bidirect) {
1576 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1577 "Drop packet: not received via bidirectional link\n");
1578 goto out_neigh;
1579 }
1580
1581 if (dup_status == BATADV_NEIGH_DUP) {
1582 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1583 "Drop packet: duplicate packet received\n");
1584 goto out_neigh;
1585 }
1586
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001587 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1588 "Forwarding packet: rebroadcast originator packet\n");
1589 batadv_iv_ogm_forward(orig_node, ethhdr, ogm_packet,
1590 is_single_hop_neigh, is_from_best_next_hop,
Simon Wunderlichef0a9372013-11-13 19:14:49 +01001591 if_incoming, if_outgoing);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001592
1593out_neigh:
1594 if ((orig_neigh_node) && (!is_single_hop_neigh))
Sven Eckelmann5d967312016-01-17 11:01:09 +01001595 batadv_orig_node_put(orig_neigh_node);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001596out:
Simon Wunderlichc1e517f2014-03-26 15:46:21 +01001597 if (router_ifinfo)
Sven Eckelmann044fa3a2016-01-17 11:01:12 +01001598 batadv_neigh_ifinfo_put(router_ifinfo);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001599 if (router)
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001600 batadv_neigh_node_put(router);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001601 if (router_router)
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001602 batadv_neigh_node_put(router_router);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001603 if (orig_neigh_router)
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001604 batadv_neigh_node_put(orig_neigh_router);
Marek Lindner4ff1e2a2015-08-04 21:09:58 +08001605 if (hardif_neigh)
Sven Eckelmannaccadc32016-01-17 11:01:14 +01001606 batadv_hardif_neigh_put(hardif_neigh);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001607
1608 kfree_skb(skb_priv);
1609}
1610
1611/**
1612 * batadv_iv_ogm_process - process an incoming batman iv OGM
1613 * @skb: the skb containing the OGM
1614 * @ogm_offset: offset to the OGM which should be processed (for aggregates)
1615 * @if_incoming: the interface where this packet was receved
1616 */
1617static void batadv_iv_ogm_process(const struct sk_buff *skb, int ogm_offset,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001618 struct batadv_hard_iface *if_incoming)
Marek Lindnerfc957272011-07-30 12:04:12 +02001619{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001620 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001621 struct batadv_orig_node *orig_neigh_node, *orig_node;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001622 struct batadv_hard_iface *hard_iface;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001623 struct batadv_ogm_packet *ogm_packet;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001624 u32 if_incoming_seqno;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001625 bool has_directlink_flag;
1626 struct ethhdr *ethhdr;
1627 bool is_my_oldorig = false;
1628 bool is_my_addr = false;
1629 bool is_my_orig = false;
1630
1631 ogm_packet = (struct batadv_ogm_packet *)(skb->data + ogm_offset);
1632 ethhdr = eth_hdr(skb);
Marek Lindnerfc957272011-07-30 12:04:12 +02001633
1634 /* Silently drop when the batman packet is actually not a
1635 * correct packet.
1636 *
1637 * This might happen if a packet is padded (e.g. Ethernet has a
1638 * minimum frame length of 64 byte) and the aggregation interprets
1639 * it as an additional length.
1640 *
1641 * TODO: A more sane solution would be to have a bit in the
Sven Eckelmann96412692012-06-05 22:31:30 +02001642 * batadv_ogm_packet to detect whether the packet is the last
Marek Lindnerfc957272011-07-30 12:04:12 +02001643 * packet in an aggregation. Here we expect that the padding
1644 * is always zero (or not 0x01)
1645 */
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001646 if (ogm_packet->packet_type != BATADV_IV_OGM)
Marek Lindnerfc957272011-07-30 12:04:12 +02001647 return;
1648
1649 /* could be changed by schedule_own_packet() */
Marek Lindner14511512012-08-02 17:20:26 +02001650 if_incoming_seqno = atomic_read(&if_incoming->bat_iv.ogm_seqno);
Marek Lindnerfc957272011-07-30 12:04:12 +02001651
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001652 if (ogm_packet->flags & BATADV_DIRECTLINK)
1653 has_directlink_flag = true;
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001654 else
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001655 has_directlink_flag = false;
Marek Lindnerfc957272011-07-30 12:04:12 +02001656
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001657 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001658 "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 +02001659 ethhdr->h_source, if_incoming->net_dev->name,
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001660 if_incoming->net_dev->dev_addr, ogm_packet->orig,
1661 ogm_packet->prev_sender, ntohl(ogm_packet->seqno),
1662 ogm_packet->tq, ogm_packet->ttl,
1663 ogm_packet->version, has_directlink_flag);
Marek Lindnerfc957272011-07-30 12:04:12 +02001664
1665 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +02001666 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Sven Eckelmanne9a4f292012-06-03 22:19:19 +02001667 if (hard_iface->if_status != BATADV_IF_ACTIVE)
Marek Lindnerfc957272011-07-30 12:04:12 +02001668 continue;
1669
1670 if (hard_iface->soft_iface != if_incoming->soft_iface)
1671 continue;
1672
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001673 if (batadv_compare_eth(ethhdr->h_source,
1674 hard_iface->net_dev->dev_addr))
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001675 is_my_addr = true;
Marek Lindnerfc957272011-07-30 12:04:12 +02001676
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001677 if (batadv_compare_eth(ogm_packet->orig,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001678 hard_iface->net_dev->dev_addr))
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001679 is_my_orig = true;
Marek Lindnerfc957272011-07-30 12:04:12 +02001680
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001681 if (batadv_compare_eth(ogm_packet->prev_sender,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001682 hard_iface->net_dev->dev_addr))
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001683 is_my_oldorig = true;
Marek Lindnerfc957272011-07-30 12:04:12 +02001684 }
1685 rcu_read_unlock();
1686
Marek Lindnerfc957272011-07-30 12:04:12 +02001687 if (is_my_addr) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001688 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001689 "Drop packet: received my own broadcast (sender: %pM)\n",
1690 ethhdr->h_source);
Marek Lindnerfc957272011-07-30 12:04:12 +02001691 return;
1692 }
1693
Marek Lindnerfc957272011-07-30 12:04:12 +02001694 if (is_my_orig) {
1695 unsigned long *word;
1696 int offset;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001697 s32 bit_pos;
1698 s16 if_num;
1699 u8 *weight;
Marek Lindnerfc957272011-07-30 12:04:12 +02001700
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001701 orig_neigh_node = batadv_iv_ogm_orig_get(bat_priv,
1702 ethhdr->h_source);
Marek Lindnerfc957272011-07-30 12:04:12 +02001703 if (!orig_neigh_node)
1704 return;
1705
1706 /* neighbor has to indicate direct link and it has to
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001707 * come via the corresponding interface
1708 * save packet seqno for bidirectional check
1709 */
Marek Lindnerfc957272011-07-30 12:04:12 +02001710 if (has_directlink_flag &&
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001711 batadv_compare_eth(if_incoming->net_dev->dev_addr,
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001712 ogm_packet->orig)) {
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001713 if_num = if_incoming->if_num;
1714 offset = if_num * BATADV_NUM_WORDS;
Marek Lindnerfc957272011-07-30 12:04:12 +02001715
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001716 spin_lock_bh(&orig_neigh_node->bat_iv.ogm_cnt_lock);
Antonio Quartulli32db6aa2014-09-01 14:37:29 +02001717 word = &orig_neigh_node->bat_iv.bcast_own[offset];
Sven Eckelmann9b4a1152012-05-12 13:48:53 +02001718 bit_pos = if_incoming_seqno - 2;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001719 bit_pos -= ntohl(ogm_packet->seqno);
Sven Eckelmann9b4a1152012-05-12 13:48:53 +02001720 batadv_set_bit(word, bit_pos);
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001721 weight = &orig_neigh_node->bat_iv.bcast_own_sum[if_num];
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001722 *weight = bitmap_weight(word,
1723 BATADV_TQ_LOCAL_WINDOW_SIZE);
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001724 spin_unlock_bh(&orig_neigh_node->bat_iv.ogm_cnt_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +02001725 }
1726
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001727 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001728 "Drop packet: originator packet from myself (via neighbor)\n");
Sven Eckelmann5d967312016-01-17 11:01:09 +01001729 batadv_orig_node_put(orig_neigh_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001730 return;
1731 }
1732
1733 if (is_my_oldorig) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001734 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001735 "Drop packet: ignoring all rebroadcast echos (sender: %pM)\n",
1736 ethhdr->h_source);
Marek Lindnerfc957272011-07-30 12:04:12 +02001737 return;
1738 }
1739
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001740 if (ogm_packet->flags & BATADV_NOT_BEST_NEXT_HOP) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001741 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001742 "Drop packet: ignoring all packets not forwarded from the best next hop (sender: %pM)\n",
1743 ethhdr->h_source);
Marek Lindner13b25412012-03-11 06:17:53 +08001744 return;
1745 }
1746
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001747 orig_node = batadv_iv_ogm_orig_get(bat_priv, ogm_packet->orig);
Marek Lindnerfc957272011-07-30 12:04:12 +02001748 if (!orig_node)
1749 return;
1750
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001751 batadv_iv_ogm_process_per_outif(skb, ogm_offset, orig_node,
1752 if_incoming, BATADV_IF_DEFAULT);
Marek Lindnerfc957272011-07-30 12:04:12 +02001753
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001754 rcu_read_lock();
1755 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
1756 if (hard_iface->if_status != BATADV_IF_ACTIVE)
1757 continue;
1758
1759 if (hard_iface->soft_iface != bat_priv->soft_iface)
1760 continue;
1761
Sven Eckelmann27353442016-03-05 16:09:16 +01001762 if (!kref_get_unless_zero(&hard_iface->refcount))
1763 continue;
1764
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001765 batadv_iv_ogm_process_per_outif(skb, ogm_offset, orig_node,
1766 if_incoming, hard_iface);
Sven Eckelmann27353442016-03-05 16:09:16 +01001767
1768 batadv_hardif_put(hard_iface);
Marek Lindnerfc957272011-07-30 12:04:12 +02001769 }
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001770 rcu_read_unlock();
Marek Lindnerfc957272011-07-30 12:04:12 +02001771
Sven Eckelmann5d967312016-01-17 11:01:09 +01001772 batadv_orig_node_put(orig_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001773}
1774
Antonio Quartullif0d97252016-05-03 01:45:34 +08001775static void batadv_iv_send_outstanding_bat_ogm_packet(struct work_struct *work)
1776{
1777 struct delayed_work *delayed_work;
1778 struct batadv_forw_packet *forw_packet;
1779 struct batadv_priv *bat_priv;
1780
1781 delayed_work = to_delayed_work(work);
1782 forw_packet = container_of(delayed_work, struct batadv_forw_packet,
1783 delayed_work);
1784 bat_priv = netdev_priv(forw_packet->if_incoming->soft_iface);
1785 spin_lock_bh(&bat_priv->forw_bat_list_lock);
1786 hlist_del(&forw_packet->list);
1787 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
1788
1789 if (atomic_read(&bat_priv->mesh_state) == BATADV_MESH_DEACTIVATING)
1790 goto out;
1791
1792 batadv_iv_ogm_emit(forw_packet);
1793
1794 /* we have to have at least one packet in the queue to determine the
1795 * queues wake up time unless we are shutting down.
1796 *
1797 * only re-schedule if this is the "original" copy, e.g. the OGM of the
1798 * primary interface should only be rescheduled once per period, but
1799 * this function will be called for the forw_packet instances of the
1800 * other secondary interfaces as well.
1801 */
1802 if (forw_packet->own &&
1803 forw_packet->if_incoming == forw_packet->if_outgoing)
1804 batadv_iv_ogm_schedule(forw_packet->if_incoming);
1805
1806out:
Antonio Quartullif0d97252016-05-03 01:45:34 +08001807 batadv_forw_packet_free(forw_packet);
1808}
1809
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001810static int batadv_iv_ogm_receive(struct sk_buff *skb,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001811 struct batadv_hard_iface *if_incoming)
Marek Lindnerfc957272011-07-30 12:04:12 +02001812{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001813 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001814 struct batadv_ogm_packet *ogm_packet;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001815 u8 *packet_pos;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001816 int ogm_offset;
Marek Lindneref261572013-04-23 21:39:57 +08001817 bool ret;
Marek Lindnerc3e29312012-03-04 16:56:25 +08001818
Sven Eckelmann7e071c72012-06-03 22:19:13 +02001819 ret = batadv_check_management_packet(skb, if_incoming, BATADV_OGM_HLEN);
Marek Lindnerc3e29312012-03-04 16:56:25 +08001820 if (!ret)
1821 return NET_RX_DROP;
Marek Lindnerfc957272011-07-30 12:04:12 +02001822
Marek Lindneredbf12b2012-03-11 06:17:49 +08001823 /* did we receive a B.A.T.M.A.N. IV OGM packet on an interface
1824 * that does not have B.A.T.M.A.N. IV enabled ?
1825 */
Antonio Quartulli29824a52016-05-25 23:27:31 +08001826 if (bat_priv->algo_ops->iface.enable != batadv_iv_ogm_iface_enable)
Marek Lindneredbf12b2012-03-11 06:17:49 +08001827 return NET_RX_DROP;
1828
Sven Eckelmannd69909d2012-06-03 22:19:20 +02001829 batadv_inc_counter(bat_priv, BATADV_CNT_MGMT_RX);
1830 batadv_add_counter(bat_priv, BATADV_CNT_MGMT_RX_BYTES,
Martin Hundebøllf8214862012-04-20 17:02:45 +02001831 skb->len + ETH_HLEN);
1832
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001833 ogm_offset = 0;
1834 ogm_packet = (struct batadv_ogm_packet *)skb->data;
Marek Lindnerfc957272011-07-30 12:04:12 +02001835
1836 /* unpack the aggregated packets and process them one by one */
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001837 while (batadv_iv_ogm_aggr_packet(ogm_offset, skb_headlen(skb),
1838 ogm_packet->tvlv_len)) {
1839 batadv_iv_ogm_process(skb, ogm_offset, if_incoming);
Marek Lindnerfc957272011-07-30 12:04:12 +02001840
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001841 ogm_offset += BATADV_OGM_HLEN;
1842 ogm_offset += ntohs(ogm_packet->tvlv_len);
Marek Lindnerfc957272011-07-30 12:04:12 +02001843
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001844 packet_pos = skb->data + ogm_offset;
1845 ogm_packet = (struct batadv_ogm_packet *)packet_pos;
Marek Lindnerb47506d2013-03-04 10:39:49 +08001846 }
Marek Lindnerc3e29312012-03-04 16:56:25 +08001847
1848 kfree_skb(skb);
1849 return NET_RX_SUCCESS;
Marek Lindnerfc957272011-07-30 12:04:12 +02001850}
Marek Lindner1c280472011-11-28 17:40:17 +08001851
Simon Wunderlich1b371d12014-01-15 21:17:54 +01001852/**
1853 * batadv_iv_ogm_orig_print_neigh - print neighbors for the originator table
Simon Wunderlich89652332013-11-13 19:14:46 +01001854 * @orig_node: the orig_node for which the neighbors are printed
1855 * @if_outgoing: outgoing interface for these entries
1856 * @seq: debugfs table seq_file struct
1857 *
1858 * Must be called while holding an rcu lock.
1859 */
1860static void
1861batadv_iv_ogm_orig_print_neigh(struct batadv_orig_node *orig_node,
1862 struct batadv_hard_iface *if_outgoing,
1863 struct seq_file *seq)
1864{
1865 struct batadv_neigh_node *neigh_node;
1866 struct batadv_neigh_ifinfo *n_ifinfo;
1867
1868 hlist_for_each_entry_rcu(neigh_node, &orig_node->neigh_list, list) {
1869 n_ifinfo = batadv_neigh_ifinfo_get(neigh_node, if_outgoing);
1870 if (!n_ifinfo)
1871 continue;
1872
1873 seq_printf(seq, " %pM (%3i)",
1874 neigh_node->addr,
1875 n_ifinfo->bat_iv.tq_avg);
1876
Sven Eckelmann044fa3a2016-01-17 11:01:12 +01001877 batadv_neigh_ifinfo_put(n_ifinfo);
Simon Wunderlich89652332013-11-13 19:14:46 +01001878 }
1879}
1880
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001881/**
1882 * batadv_iv_ogm_orig_print - print the originator table
1883 * @bat_priv: the bat priv with all the soft interface information
1884 * @seq: debugfs table seq_file struct
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +01001885 * @if_outgoing: the outgoing interface for which this should be printed
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001886 */
1887static void batadv_iv_ogm_orig_print(struct batadv_priv *bat_priv,
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +01001888 struct seq_file *seq,
1889 struct batadv_hard_iface *if_outgoing)
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001890{
Simon Wunderlich89652332013-11-13 19:14:46 +01001891 struct batadv_neigh_node *neigh_node;
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001892 struct batadv_hashtable *hash = bat_priv->orig_hash;
1893 int last_seen_msecs, last_seen_secs;
1894 struct batadv_orig_node *orig_node;
Simon Wunderlich89652332013-11-13 19:14:46 +01001895 struct batadv_neigh_ifinfo *n_ifinfo;
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001896 unsigned long last_seen_jiffies;
1897 struct hlist_head *head;
1898 int batman_count = 0;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001899 u32 i;
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001900
Antonio Quartulli925a6f32016-03-12 10:30:18 +01001901 seq_puts(seq,
1902 " Originator last-seen (#/255) Nexthop [outgoingIF]: Potential nexthops ...\n");
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001903
1904 for (i = 0; i < hash->size; i++) {
1905 head = &hash->table[i];
1906
1907 rcu_read_lock();
1908 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001909 neigh_node = batadv_orig_router_get(orig_node,
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +01001910 if_outgoing);
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001911 if (!neigh_node)
1912 continue;
1913
Simon Wunderlich89652332013-11-13 19:14:46 +01001914 n_ifinfo = batadv_neigh_ifinfo_get(neigh_node,
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +01001915 if_outgoing);
Simon Wunderlich89652332013-11-13 19:14:46 +01001916 if (!n_ifinfo)
1917 goto next;
1918
1919 if (n_ifinfo->bat_iv.tq_avg == 0)
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001920 goto next;
1921
1922 last_seen_jiffies = jiffies - orig_node->last_seen;
1923 last_seen_msecs = jiffies_to_msecs(last_seen_jiffies);
1924 last_seen_secs = last_seen_msecs / 1000;
1925 last_seen_msecs = last_seen_msecs % 1000;
1926
1927 seq_printf(seq, "%pM %4i.%03is (%3i) %pM [%10s]:",
1928 orig_node->orig, last_seen_secs,
Simon Wunderlich89652332013-11-13 19:14:46 +01001929 last_seen_msecs, n_ifinfo->bat_iv.tq_avg,
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001930 neigh_node->addr,
1931 neigh_node->if_incoming->net_dev->name);
1932
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +01001933 batadv_iv_ogm_orig_print_neigh(orig_node, if_outgoing,
1934 seq);
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001935 seq_puts(seq, "\n");
1936 batman_count++;
1937
1938next:
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001939 batadv_neigh_node_put(neigh_node);
Simon Wunderlich89652332013-11-13 19:14:46 +01001940 if (n_ifinfo)
Sven Eckelmann044fa3a2016-01-17 11:01:12 +01001941 batadv_neigh_ifinfo_put(n_ifinfo);
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001942 }
1943 rcu_read_unlock();
1944 }
1945
1946 if (batman_count == 0)
1947 seq_puts(seq, "No batman nodes in range ...\n");
1948}
1949
Antonio Quartullia3285a82013-09-02 12:15:04 +02001950/**
Marek Lindner75874052015-08-04 21:09:57 +08001951 * batadv_iv_hardif_neigh_print - print a single hop neighbour node
1952 * @seq: neighbour table seq_file struct
1953 * @hardif_neigh: hardif neighbour information
1954 */
1955static void
1956batadv_iv_hardif_neigh_print(struct seq_file *seq,
1957 struct batadv_hardif_neigh_node *hardif_neigh)
1958{
1959 int last_secs, last_msecs;
1960
1961 last_secs = jiffies_to_msecs(jiffies - hardif_neigh->last_seen) / 1000;
1962 last_msecs = jiffies_to_msecs(jiffies - hardif_neigh->last_seen) % 1000;
1963
1964 seq_printf(seq, " %10s %pM %4i.%03is\n",
1965 hardif_neigh->if_incoming->net_dev->name,
1966 hardif_neigh->addr, last_secs, last_msecs);
1967}
1968
1969/**
1970 * batadv_iv_ogm_neigh_print - print the single hop neighbour list
1971 * @bat_priv: the bat priv with all the soft interface information
1972 * @seq: neighbour table seq_file struct
1973 */
1974static void batadv_iv_neigh_print(struct batadv_priv *bat_priv,
1975 struct seq_file *seq)
1976{
1977 struct net_device *net_dev = (struct net_device *)seq->private;
1978 struct batadv_hardif_neigh_node *hardif_neigh;
1979 struct batadv_hard_iface *hard_iface;
1980 int batman_count = 0;
1981
Antonio Quartulli925a6f32016-03-12 10:30:18 +01001982 seq_puts(seq, " IF Neighbor last-seen\n");
Marek Lindner75874052015-08-04 21:09:57 +08001983
1984 rcu_read_lock();
1985 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
1986 if (hard_iface->soft_iface != net_dev)
1987 continue;
1988
1989 hlist_for_each_entry_rcu(hardif_neigh,
1990 &hard_iface->neigh_list, list) {
1991 batadv_iv_hardif_neigh_print(seq, hardif_neigh);
1992 batman_count++;
1993 }
1994 }
1995 rcu_read_unlock();
1996
1997 if (batman_count == 0)
1998 seq_puts(seq, "No batman nodes in range ...\n");
1999}
2000
2001/**
Markus Pargmann57b12502016-07-03 11:07:14 +02002002 * batadv_iv_ogm_neigh_diff - calculate tq difference of two neighbors
2003 * @neigh1: the first neighbor object of the comparison
2004 * @if_outgoing1: outgoing interface for the first neighbor
2005 * @neigh2: the second neighbor object of the comparison
2006 * @if_outgoing2: outgoing interface for the second neighbor
2007 * @diff: pointer to integer receiving the calculated difference
2008 *
2009 * The content of *@diff is only valid when this function returns true.
2010 * It is less, equal to or greater than 0 if the metric via neigh1 is lower,
2011 * the same as or higher than the metric via neigh2
2012 *
2013 * Return: true when the difference could be calculated, false otherwise
2014 */
2015static bool batadv_iv_ogm_neigh_diff(struct batadv_neigh_node *neigh1,
2016 struct batadv_hard_iface *if_outgoing1,
2017 struct batadv_neigh_node *neigh2,
2018 struct batadv_hard_iface *if_outgoing2,
2019 int *diff)
2020{
2021 struct batadv_neigh_ifinfo *neigh1_ifinfo, *neigh2_ifinfo;
2022 u8 tq1, tq2;
2023 bool ret = true;
2024
2025 neigh1_ifinfo = batadv_neigh_ifinfo_get(neigh1, if_outgoing1);
2026 neigh2_ifinfo = batadv_neigh_ifinfo_get(neigh2, if_outgoing2);
2027
2028 if (!neigh1_ifinfo || !neigh2_ifinfo) {
2029 ret = false;
2030 goto out;
2031 }
2032
2033 tq1 = neigh1_ifinfo->bat_iv.tq_avg;
2034 tq2 = neigh2_ifinfo->bat_iv.tq_avg;
2035 *diff = (int)tq1 - (int)tq2;
2036
2037out:
2038 if (neigh1_ifinfo)
2039 batadv_neigh_ifinfo_put(neigh1_ifinfo);
2040 if (neigh2_ifinfo)
2041 batadv_neigh_ifinfo_put(neigh2_ifinfo);
2042
2043 return ret;
2044}
2045
2046/**
Antonio Quartullia3285a82013-09-02 12:15:04 +02002047 * batadv_iv_ogm_neigh_cmp - compare the metrics of two neighbors
2048 * @neigh1: the first neighbor object of the comparison
Simon Wunderlich89652332013-11-13 19:14:46 +01002049 * @if_outgoing1: outgoing interface for the first neighbor
Antonio Quartullia3285a82013-09-02 12:15:04 +02002050 * @neigh2: the second neighbor object of the comparison
Simon Wunderlich89652332013-11-13 19:14:46 +01002051 * @if_outgoing2: outgoing interface for the second neighbor
Antonio Quartullia3285a82013-09-02 12:15:04 +02002052 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02002053 * Return: a value less, equal to or greater than 0 if the metric via neigh1 is
Antonio Quartullia3285a82013-09-02 12:15:04 +02002054 * lower, the same as or higher than the metric via neigh2
2055 */
2056static int batadv_iv_ogm_neigh_cmp(struct batadv_neigh_node *neigh1,
Simon Wunderlich89652332013-11-13 19:14:46 +01002057 struct batadv_hard_iface *if_outgoing1,
2058 struct batadv_neigh_node *neigh2,
2059 struct batadv_hard_iface *if_outgoing2)
Antonio Quartullia3285a82013-09-02 12:15:04 +02002060{
Markus Pargmann57b12502016-07-03 11:07:14 +02002061 bool ret;
Simon Wunderlich89652332013-11-13 19:14:46 +01002062 int diff;
Antonio Quartullia3285a82013-09-02 12:15:04 +02002063
Markus Pargmann57b12502016-07-03 11:07:14 +02002064 ret = batadv_iv_ogm_neigh_diff(neigh1, if_outgoing1, neigh2,
2065 if_outgoing2, &diff);
2066 if (!ret)
2067 return 0;
Simon Wunderlich89652332013-11-13 19:14:46 +01002068
2069 return diff;
Antonio Quartullia3285a82013-09-02 12:15:04 +02002070}
2071
Antonio Quartullic43c9812013-09-02 12:15:05 +02002072/**
Simon Wunderlich18165f62015-08-08 02:01:50 +02002073 * batadv_iv_ogm_neigh_is_sob - check if neigh1 is similarly good or better
2074 * than neigh2 from the metric prospective
Antonio Quartullic43c9812013-09-02 12:15:05 +02002075 * @neigh1: the first neighbor object of the comparison
Martin Hundebøll95298a92014-07-15 09:41:05 +02002076 * @if_outgoing1: outgoing interface for the first neighbor
Antonio Quartullic43c9812013-09-02 12:15:05 +02002077 * @neigh2: the second neighbor object of the comparison
Simon Wunderlich89652332013-11-13 19:14:46 +01002078 * @if_outgoing2: outgoing interface for the second neighbor
Martin Hundebøll95298a92014-07-15 09:41:05 +02002079 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02002080 * Return: true if the metric via neigh1 is equally good or better than
Simon Wunderlich89652332013-11-13 19:14:46 +01002081 * the metric via neigh2, false otherwise.
2082 */
2083static bool
Simon Wunderlich18165f62015-08-08 02:01:50 +02002084batadv_iv_ogm_neigh_is_sob(struct batadv_neigh_node *neigh1,
Simon Wunderlich89652332013-11-13 19:14:46 +01002085 struct batadv_hard_iface *if_outgoing1,
2086 struct batadv_neigh_node *neigh2,
2087 struct batadv_hard_iface *if_outgoing2)
2088{
Simon Wunderlich89652332013-11-13 19:14:46 +01002089 bool ret;
Markus Pargmann57b12502016-07-03 11:07:14 +02002090 int diff;
Simon Wunderlich89652332013-11-13 19:14:46 +01002091
Markus Pargmann57b12502016-07-03 11:07:14 +02002092 ret = batadv_iv_ogm_neigh_diff(neigh1, if_outgoing1, neigh2,
2093 if_outgoing2, &diff);
2094 if (!ret)
2095 return false;
Simon Wunderlich89652332013-11-13 19:14:46 +01002096
Markus Pargmann57b12502016-07-03 11:07:14 +02002097 ret = diff > -BATADV_TQ_SIMILARITY_THRESHOLD;
Simon Wunderlich89652332013-11-13 19:14:46 +01002098 return ret;
Antonio Quartullic43c9812013-09-02 12:15:05 +02002099}
2100
Antonio Quartullif0d97252016-05-03 01:45:34 +08002101static void batadv_iv_iface_activate(struct batadv_hard_iface *hard_iface)
2102{
2103 /* begin scheduling originator messages on that interface */
2104 batadv_iv_ogm_schedule(hard_iface);
2105}
2106
Antonio Quartulli34d99cf2016-07-03 12:46:33 +02002107static struct batadv_gw_node *
2108batadv_iv_gw_get_best_gw_node(struct batadv_priv *bat_priv)
2109{
2110 struct batadv_neigh_node *router;
2111 struct batadv_neigh_ifinfo *router_ifinfo;
2112 struct batadv_gw_node *gw_node, *curr_gw = NULL;
2113 u64 max_gw_factor = 0;
2114 u64 tmp_gw_factor = 0;
2115 u8 max_tq = 0;
2116 u8 tq_avg;
2117 struct batadv_orig_node *orig_node;
2118
2119 rcu_read_lock();
2120 hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) {
2121 orig_node = gw_node->orig_node;
2122 router = batadv_orig_router_get(orig_node, BATADV_IF_DEFAULT);
2123 if (!router)
2124 continue;
2125
2126 router_ifinfo = batadv_neigh_ifinfo_get(router,
2127 BATADV_IF_DEFAULT);
2128 if (!router_ifinfo)
2129 goto next;
2130
2131 if (!kref_get_unless_zero(&gw_node->refcount))
2132 goto next;
2133
2134 tq_avg = router_ifinfo->bat_iv.tq_avg;
2135
2136 switch (atomic_read(&bat_priv->gw.sel_class)) {
2137 case 1: /* fast connection */
2138 tmp_gw_factor = tq_avg * tq_avg;
2139 tmp_gw_factor *= gw_node->bandwidth_down;
2140 tmp_gw_factor *= 100 * 100;
2141 tmp_gw_factor >>= 18;
2142
2143 if ((tmp_gw_factor > max_gw_factor) ||
2144 ((tmp_gw_factor == max_gw_factor) &&
2145 (tq_avg > max_tq))) {
2146 if (curr_gw)
2147 batadv_gw_node_put(curr_gw);
2148 curr_gw = gw_node;
2149 kref_get(&curr_gw->refcount);
2150 }
2151 break;
2152
2153 default: /* 2: stable connection (use best statistic)
2154 * 3: fast-switch (use best statistic but change as
2155 * soon as a better gateway appears)
2156 * XX: late-switch (use best statistic but change as
2157 * soon as a better gateway appears which has
2158 * $routing_class more tq points)
2159 */
2160 if (tq_avg > max_tq) {
2161 if (curr_gw)
2162 batadv_gw_node_put(curr_gw);
2163 curr_gw = gw_node;
2164 kref_get(&curr_gw->refcount);
2165 }
2166 break;
2167 }
2168
2169 if (tq_avg > max_tq)
2170 max_tq = tq_avg;
2171
2172 if (tmp_gw_factor > max_gw_factor)
2173 max_gw_factor = tmp_gw_factor;
2174
2175 batadv_gw_node_put(gw_node);
2176
2177next:
2178 batadv_neigh_node_put(router);
2179 if (router_ifinfo)
2180 batadv_neigh_ifinfo_put(router_ifinfo);
2181 }
2182 rcu_read_unlock();
2183
2184 return curr_gw;
2185}
2186
2187static bool batadv_iv_gw_is_eligible(struct batadv_priv *bat_priv,
2188 struct batadv_orig_node *curr_gw_orig,
2189 struct batadv_orig_node *orig_node)
2190{
2191 struct batadv_neigh_ifinfo *router_orig_ifinfo = NULL;
2192 struct batadv_neigh_ifinfo *router_gw_ifinfo = NULL;
2193 struct batadv_neigh_node *router_gw = NULL;
2194 struct batadv_neigh_node *router_orig = NULL;
2195 u8 gw_tq_avg, orig_tq_avg;
2196 bool ret = false;
2197
2198 /* dynamic re-election is performed only on fast or late switch */
2199 if (atomic_read(&bat_priv->gw.sel_class) <= 2)
2200 return false;
2201
2202 router_gw = batadv_orig_router_get(curr_gw_orig, BATADV_IF_DEFAULT);
2203 if (!router_gw) {
2204 ret = true;
2205 goto out;
2206 }
2207
2208 router_gw_ifinfo = batadv_neigh_ifinfo_get(router_gw,
2209 BATADV_IF_DEFAULT);
2210 if (!router_gw_ifinfo) {
2211 ret = true;
2212 goto out;
2213 }
2214
2215 router_orig = batadv_orig_router_get(orig_node, BATADV_IF_DEFAULT);
2216 if (!router_orig)
2217 goto out;
2218
2219 router_orig_ifinfo = batadv_neigh_ifinfo_get(router_orig,
2220 BATADV_IF_DEFAULT);
2221 if (!router_orig_ifinfo)
2222 goto out;
2223
2224 gw_tq_avg = router_gw_ifinfo->bat_iv.tq_avg;
2225 orig_tq_avg = router_orig_ifinfo->bat_iv.tq_avg;
2226
2227 /* the TQ value has to be better */
2228 if (orig_tq_avg < gw_tq_avg)
2229 goto out;
2230
2231 /* if the routing class is greater than 3 the value tells us how much
2232 * greater the TQ value of the new gateway must be
2233 */
2234 if ((atomic_read(&bat_priv->gw.sel_class) > 3) &&
2235 (orig_tq_avg - gw_tq_avg < atomic_read(&bat_priv->gw.sel_class)))
2236 goto out;
2237
2238 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
2239 "Restarting gateway selection: better gateway found (tq curr: %i, tq new: %i)\n",
2240 gw_tq_avg, orig_tq_avg);
2241
2242 ret = true;
2243out:
2244 if (router_gw_ifinfo)
2245 batadv_neigh_ifinfo_put(router_gw_ifinfo);
2246 if (router_orig_ifinfo)
2247 batadv_neigh_ifinfo_put(router_orig_ifinfo);
2248 if (router_gw)
2249 batadv_neigh_node_put(router_gw);
2250 if (router_orig)
2251 batadv_neigh_node_put(router_orig);
2252
2253 return ret;
2254}
2255
2256/* fails if orig_node has no router */
2257static int batadv_iv_gw_write_buffer_text(struct batadv_priv *bat_priv,
2258 struct seq_file *seq,
2259 const struct batadv_gw_node *gw_node)
2260{
2261 struct batadv_gw_node *curr_gw;
2262 struct batadv_neigh_node *router;
2263 struct batadv_neigh_ifinfo *router_ifinfo = NULL;
2264 int ret = -1;
2265
2266 router = batadv_orig_router_get(gw_node->orig_node, BATADV_IF_DEFAULT);
2267 if (!router)
2268 goto out;
2269
2270 router_ifinfo = batadv_neigh_ifinfo_get(router, BATADV_IF_DEFAULT);
2271 if (!router_ifinfo)
2272 goto out;
2273
2274 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
2275
2276 seq_printf(seq, "%s %pM (%3i) %pM [%10s]: %u.%u/%u.%u MBit\n",
2277 (curr_gw == gw_node ? "=>" : " "),
2278 gw_node->orig_node->orig,
2279 router_ifinfo->bat_iv.tq_avg, router->addr,
2280 router->if_incoming->net_dev->name,
2281 gw_node->bandwidth_down / 10,
2282 gw_node->bandwidth_down % 10,
2283 gw_node->bandwidth_up / 10,
2284 gw_node->bandwidth_up % 10);
2285 ret = seq_has_overflowed(seq) ? -1 : 0;
2286
2287 if (curr_gw)
2288 batadv_gw_node_put(curr_gw);
2289out:
2290 if (router_ifinfo)
2291 batadv_neigh_ifinfo_put(router_ifinfo);
2292 if (router)
2293 batadv_neigh_node_put(router);
2294 return ret;
2295}
2296
2297static void batadv_iv_gw_print(struct batadv_priv *bat_priv,
2298 struct seq_file *seq)
2299{
2300 struct batadv_gw_node *gw_node;
2301 int gw_count = 0;
2302
2303 seq_puts(seq,
2304 " Gateway (#/255) Nexthop [outgoingIF]: advertised uplink bandwidth\n");
2305
2306 rcu_read_lock();
2307 hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) {
2308 /* fails if orig_node has no router */
2309 if (batadv_iv_gw_write_buffer_text(bat_priv, seq, gw_node) < 0)
2310 continue;
2311
2312 gw_count++;
2313 }
2314 rcu_read_unlock();
2315
2316 if (gw_count == 0)
2317 seq_puts(seq, "No gateways in range ...\n");
2318}
2319
Sven Eckelmann56303d32012-06-05 22:31:31 +02002320static struct batadv_algo_ops batadv_batman_iv __read_mostly = {
Marek Lindner519d3492012-04-18 17:15:57 +08002321 .name = "BATMAN_IV",
Antonio Quartulli29824a52016-05-25 23:27:31 +08002322 .iface = {
2323 .activate = batadv_iv_iface_activate,
2324 .enable = batadv_iv_ogm_iface_enable,
2325 .disable = batadv_iv_ogm_iface_disable,
2326 .update_mac = batadv_iv_ogm_iface_update_mac,
2327 .primary_set = batadv_iv_ogm_primary_iface_set,
2328 },
2329 .neigh = {
2330 .cmp = batadv_iv_ogm_neigh_cmp,
2331 .is_similar_or_better = batadv_iv_ogm_neigh_is_sob,
2332 .print = batadv_iv_neigh_print,
2333 },
2334 .orig = {
2335 .print = batadv_iv_ogm_orig_print,
2336 .free = batadv_iv_ogm_orig_free,
2337 .add_if = batadv_iv_ogm_orig_add_if,
2338 .del_if = batadv_iv_ogm_orig_del_if,
2339 },
Antonio Quartulli34d99cf2016-07-03 12:46:33 +02002340 .gw = {
2341 .get_best_gw_node = batadv_iv_gw_get_best_gw_node,
2342 .is_eligible = batadv_iv_gw_is_eligible,
2343 .print = batadv_iv_gw_print,
2344 },
Marek Lindner1c280472011-11-28 17:40:17 +08002345};
2346
Sven Eckelmann81c524f2012-05-12 02:09:22 +02002347int __init batadv_iv_init(void)
Marek Lindner1c280472011-11-28 17:40:17 +08002348{
Marek Lindnerc3e29312012-03-04 16:56:25 +08002349 int ret;
2350
2351 /* batman originator packet */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002352 ret = batadv_recv_handler_register(BATADV_IV_OGM,
2353 batadv_iv_ogm_receive);
Marek Lindnerc3e29312012-03-04 16:56:25 +08002354 if (ret < 0)
2355 goto out;
2356
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02002357 ret = batadv_algo_register(&batadv_batman_iv);
Marek Lindnerc3e29312012-03-04 16:56:25 +08002358 if (ret < 0)
2359 goto handler_unregister;
2360
2361 goto out;
2362
2363handler_unregister:
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002364 batadv_recv_handler_unregister(BATADV_IV_OGM);
Marek Lindnerc3e29312012-03-04 16:56:25 +08002365out:
2366 return ret;
Marek Lindner1c280472011-11-28 17:40:17 +08002367}