blob: 780700fcbe63eb7f3811559f2d9cfe6546847c25 [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>
Matthias Schiffer024f99c2016-07-03 13:31:40 +020038#include <linux/netlink.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020039#include <linux/pkt_sched.h>
40#include <linux/printk.h>
41#include <linux/random.h>
42#include <linux/rculist.h>
43#include <linux/rcupdate.h>
44#include <linux/seq_file.h>
45#include <linux/skbuff.h>
46#include <linux/slab.h>
47#include <linux/spinlock.h>
48#include <linux/stddef.h>
49#include <linux/string.h>
50#include <linux/types.h>
51#include <linux/workqueue.h>
Matthias Schiffer024f99c2016-07-03 13:31:40 +020052#include <net/genetlink.h>
53#include <net/netlink.h>
54#include <uapi/linux/batman_adv.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020055
Sven Eckelmanna2d08162016-05-15 11:07:46 +020056#include "bat_algo.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020057#include "bitarray.h"
Antonio Quartulli34d99cf2016-07-03 12:46:33 +020058#include "gateway_client.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020059#include "hard-interface.h"
60#include "hash.h"
Sven Eckelmannba412082016-05-15 23:48:31 +020061#include "log.h"
Matthias Schiffer024f99c2016-07-03 13:31:40 +020062#include "netlink.h"
Martin Hundebølld56b1702013-01-25 11:12:39 +010063#include "network-coding.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020064#include "originator.h"
65#include "packet.h"
66#include "routing.h"
67#include "send.h"
68#include "translation-table.h"
Markus Pargmann1f8dce42016-05-15 11:07:43 +020069#include "tvlv.h"
Marek Lindnerfc957272011-07-30 12:04:12 +020070
Antonio Quartullif0d97252016-05-03 01:45:34 +080071static void batadv_iv_send_outstanding_bat_ogm_packet(struct work_struct *work);
72
Antonio Quartulli791c2a22013-08-17 12:44:44 +020073/**
Martin Hundebøll95298a92014-07-15 09:41:05 +020074 * enum batadv_dup_status - duplicate status
Markus Pargmann9f52ee12014-12-26 12:41:34 +010075 * @BATADV_NO_DUP: the packet is no duplicate
Antonio Quartulli791c2a22013-08-17 12:44:44 +020076 * @BATADV_ORIG_DUP: OGM is a duplicate in the originator (but not for the
77 * neighbor)
78 * @BATADV_NEIGH_DUP: OGM is a duplicate for the neighbor
79 * @BATADV_PROTECTED: originator is currently protected (after reboot)
80 */
81enum batadv_dup_status {
82 BATADV_NO_DUP = 0,
83 BATADV_ORIG_DUP,
84 BATADV_NEIGH_DUP,
85 BATADV_PROTECTED,
86};
87
Antonio Quartulli24a5dee2013-04-08 09:38:12 +020088/**
89 * batadv_ring_buffer_set - update the ring buffer with the given value
90 * @lq_recv: pointer to the ring buffer
91 * @lq_index: index to store the value at
92 * @value: value to store in the ring buffer
93 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020094static void batadv_ring_buffer_set(u8 lq_recv[], u8 *lq_index, u8 value)
Antonio Quartulli24a5dee2013-04-08 09:38:12 +020095{
96 lq_recv[*lq_index] = value;
97 *lq_index = (*lq_index + 1) % BATADV_TQ_GLOBAL_WINDOW_SIZE;
98}
99
100/**
Markus Pargmannd491dbb2014-12-26 12:41:36 +0100101 * batadv_ring_buffer_avg - compute the average of all non-zero values stored
Antonio Quartulli24a5dee2013-04-08 09:38:12 +0200102 * in the given ring buffer
103 * @lq_recv: pointer to the ring buffer
104 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200105 * Return: computed average value.
Antonio Quartulli24a5dee2013-04-08 09:38:12 +0200106 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200107static u8 batadv_ring_buffer_avg(const u8 lq_recv[])
Antonio Quartulli24a5dee2013-04-08 09:38:12 +0200108{
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200109 const u8 *ptr;
110 u16 count = 0;
111 u16 i = 0;
112 u16 sum = 0;
Antonio Quartulli24a5dee2013-04-08 09:38:12 +0200113
114 ptr = lq_recv;
115
116 while (i < BATADV_TQ_GLOBAL_WINDOW_SIZE) {
117 if (*ptr != 0) {
118 count++;
119 sum += *ptr;
120 }
121
122 i++;
123 ptr++;
124 }
125
126 if (count == 0)
127 return 0;
128
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200129 return (u8)(sum / count);
Antonio Quartulli24a5dee2013-04-08 09:38:12 +0200130}
David S. Millerd98cae64e2013-06-19 16:49:39 -0700131
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200132/**
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200133 * batadv_iv_ogm_orig_free - free the private resources allocated for this
134 * orig_node
135 * @orig_node: the orig_node for which the resources have to be free'd
136 */
137static void batadv_iv_ogm_orig_free(struct batadv_orig_node *orig_node)
138{
139 kfree(orig_node->bat_iv.bcast_own);
140 kfree(orig_node->bat_iv.bcast_own_sum);
141}
142
143/**
144 * batadv_iv_ogm_orig_add_if - change the private structures of the orig_node to
145 * include the new hard-interface
146 * @orig_node: the orig_node that has to be changed
147 * @max_if_num: the current amount of interfaces
148 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200149 * Return: 0 on success, a negative error code otherwise.
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200150 */
151static int batadv_iv_ogm_orig_add_if(struct batadv_orig_node *orig_node,
152 int max_if_num)
153{
154 void *data_ptr;
Antonio Quartulli0185dda2014-05-24 06:43:47 +0200155 size_t old_size;
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200156 int ret = -ENOMEM;
157
158 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
159
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200160 old_size = (max_if_num - 1) * sizeof(unsigned long) * BATADV_NUM_WORDS;
Antonio Quartulli0185dda2014-05-24 06:43:47 +0200161 data_ptr = kmalloc_array(max_if_num,
162 BATADV_NUM_WORDS * sizeof(unsigned long),
163 GFP_ATOMIC);
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200164 if (!data_ptr)
165 goto unlock;
166
167 memcpy(data_ptr, orig_node->bat_iv.bcast_own, old_size);
168 kfree(orig_node->bat_iv.bcast_own);
169 orig_node->bat_iv.bcast_own = data_ptr;
170
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200171 data_ptr = kmalloc_array(max_if_num, sizeof(u8), GFP_ATOMIC);
Sven Eckelmannf7dcdf52016-02-22 22:56:33 +0100172 if (!data_ptr)
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200173 goto unlock;
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200174
175 memcpy(data_ptr, orig_node->bat_iv.bcast_own_sum,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200176 (max_if_num - 1) * sizeof(u8));
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200177 kfree(orig_node->bat_iv.bcast_own_sum);
178 orig_node->bat_iv.bcast_own_sum = data_ptr;
179
180 ret = 0;
181
182unlock:
183 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
184
185 return ret;
186}
187
188/**
Sven Eckelmann64ae74452016-02-22 22:56:34 +0100189 * batadv_iv_ogm_drop_bcast_own_entry - drop section of bcast_own
190 * @orig_node: the orig_node that has to be changed
191 * @max_if_num: the current amount of interfaces
192 * @del_if_num: the index of the interface being removed
193 */
194static void
195batadv_iv_ogm_drop_bcast_own_entry(struct batadv_orig_node *orig_node,
196 int max_if_num, int del_if_num)
197{
198 size_t chunk_size;
199 size_t if_offset;
200 void *data_ptr;
201
202 lockdep_assert_held(&orig_node->bat_iv.ogm_cnt_lock);
203
204 chunk_size = sizeof(unsigned long) * BATADV_NUM_WORDS;
205 data_ptr = kmalloc_array(max_if_num, chunk_size, GFP_ATOMIC);
206 if (!data_ptr)
207 /* use old buffer when new one could not be allocated */
208 data_ptr = orig_node->bat_iv.bcast_own;
209
210 /* copy first part */
211 memmove(data_ptr, orig_node->bat_iv.bcast_own, del_if_num * chunk_size);
212
213 /* copy second part */
214 if_offset = (del_if_num + 1) * chunk_size;
215 memmove((char *)data_ptr + del_if_num * chunk_size,
216 (uint8_t *)orig_node->bat_iv.bcast_own + if_offset,
217 (max_if_num - del_if_num) * chunk_size);
218
219 /* bcast_own was shrunk down in new buffer; free old one */
220 if (orig_node->bat_iv.bcast_own != data_ptr) {
221 kfree(orig_node->bat_iv.bcast_own);
222 orig_node->bat_iv.bcast_own = data_ptr;
223 }
224}
225
226/**
227 * batadv_iv_ogm_drop_bcast_own_sum_entry - drop section of bcast_own_sum
228 * @orig_node: the orig_node that has to be changed
229 * @max_if_num: the current amount of interfaces
230 * @del_if_num: the index of the interface being removed
231 */
232static void
233batadv_iv_ogm_drop_bcast_own_sum_entry(struct batadv_orig_node *orig_node,
234 int max_if_num, int del_if_num)
235{
236 size_t if_offset;
237 void *data_ptr;
238
239 lockdep_assert_held(&orig_node->bat_iv.ogm_cnt_lock);
240
241 data_ptr = kmalloc_array(max_if_num, sizeof(u8), GFP_ATOMIC);
242 if (!data_ptr)
243 /* use old buffer when new one could not be allocated */
244 data_ptr = orig_node->bat_iv.bcast_own_sum;
245
246 memmove(data_ptr, orig_node->bat_iv.bcast_own_sum,
247 del_if_num * sizeof(u8));
248
249 if_offset = (del_if_num + 1) * sizeof(u8);
250 memmove((char *)data_ptr + del_if_num * sizeof(u8),
251 orig_node->bat_iv.bcast_own_sum + if_offset,
252 (max_if_num - del_if_num) * sizeof(u8));
253
254 /* bcast_own_sum was shrunk down in new buffer; free old one */
255 if (orig_node->bat_iv.bcast_own_sum != data_ptr) {
256 kfree(orig_node->bat_iv.bcast_own_sum);
257 orig_node->bat_iv.bcast_own_sum = data_ptr;
258 }
259}
260
261/**
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200262 * batadv_iv_ogm_orig_del_if - change the private structures of the orig_node to
263 * exclude the removed interface
264 * @orig_node: the orig_node that has to be changed
265 * @max_if_num: the current amount of interfaces
266 * @del_if_num: the index of the interface being removed
267 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200268 * Return: 0 on success, a negative error code otherwise.
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200269 */
270static int batadv_iv_ogm_orig_del_if(struct batadv_orig_node *orig_node,
271 int max_if_num, int del_if_num)
272{
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200273 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
274
Sven Eckelmann64ae74452016-02-22 22:56:34 +0100275 if (max_if_num == 0) {
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200276 kfree(orig_node->bat_iv.bcast_own);
Sven Eckelmann64ae74452016-02-22 22:56:34 +0100277 kfree(orig_node->bat_iv.bcast_own_sum);
278 orig_node->bat_iv.bcast_own = NULL;
279 orig_node->bat_iv.bcast_own_sum = NULL;
280 } else {
281 batadv_iv_ogm_drop_bcast_own_entry(orig_node, max_if_num,
282 del_if_num);
283 batadv_iv_ogm_drop_bcast_own_sum_entry(orig_node, max_if_num,
284 del_if_num);
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200285 }
286
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200287 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
288
Sven Eckelmann64ae74452016-02-22 22:56:34 +0100289 return 0;
Antonio Quartullid0015fd2013-09-03 11:10:23 +0200290}
291
292/**
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200293 * batadv_iv_ogm_orig_get - retrieve or create (if does not exist) an originator
294 * @bat_priv: the bat priv with all the soft interface information
295 * @addr: mac address of the originator
296 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200297 * Return: the originator object corresponding to the passed mac address or NULL
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200298 * on failure.
299 * If the object does not exists it is created an initialised.
300 */
301static struct batadv_orig_node *
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200302batadv_iv_ogm_orig_get(struct batadv_priv *bat_priv, const u8 *addr)
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200303{
304 struct batadv_orig_node *orig_node;
305 int size, hash_added;
306
307 orig_node = batadv_orig_hash_find(bat_priv, addr);
308 if (orig_node)
309 return orig_node;
310
311 orig_node = batadv_orig_node_new(bat_priv, addr);
312 if (!orig_node)
313 return NULL;
314
315 spin_lock_init(&orig_node->bat_iv.ogm_cnt_lock);
316
317 size = bat_priv->num_ifaces * sizeof(unsigned long) * BATADV_NUM_WORDS;
318 orig_node->bat_iv.bcast_own = kzalloc(size, GFP_ATOMIC);
319 if (!orig_node->bat_iv.bcast_own)
320 goto free_orig_node;
321
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200322 size = bat_priv->num_ifaces * sizeof(u8);
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200323 orig_node->bat_iv.bcast_own_sum = kzalloc(size, GFP_ATOMIC);
324 if (!orig_node->bat_iv.bcast_own_sum)
Antonio Quartullia5a5cb82014-02-15 02:17:20 +0100325 goto free_orig_node;
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200326
Sven Eckelmann55db2d52016-07-15 17:39:21 +0200327 kref_get(&orig_node->refcount);
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200328 hash_added = batadv_hash_add(bat_priv->orig_hash, batadv_compare_orig,
329 batadv_choose_orig, orig_node,
330 &orig_node->hash_entry);
331 if (hash_added != 0)
Sven Eckelmann55db2d52016-07-15 17:39:21 +0200332 goto free_orig_node_hash;
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200333
334 return orig_node;
335
Sven Eckelmann55db2d52016-07-15 17:39:21 +0200336free_orig_node_hash:
Sven Eckelmann5d967312016-01-17 11:01:09 +0100337 batadv_orig_node_put(orig_node);
Sven Eckelmann55db2d52016-07-15 17:39:21 +0200338free_orig_node:
Sven Eckelmann5d967312016-01-17 11:01:09 +0100339 batadv_orig_node_put(orig_node);
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200340
341 return NULL;
342}
343
Sven Eckelmann56303d32012-06-05 22:31:31 +0200344static struct batadv_neigh_node *
345batadv_iv_ogm_neigh_new(struct batadv_hard_iface *hard_iface,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200346 const u8 *neigh_addr,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200347 struct batadv_orig_node *orig_node,
Antonio Quartulli863dd7a2013-03-25 13:49:46 +0100348 struct batadv_orig_node *orig_neigh)
Marek Lindner7ae8b282012-03-01 15:35:21 +0800349{
Marek Lindner741aa062015-07-26 04:57:43 +0800350 struct batadv_neigh_node *neigh_node;
Marek Lindner7ae8b282012-03-01 15:35:21 +0800351
Marek Lindner6f0a6b52016-05-03 01:52:08 +0800352 neigh_node = batadv_neigh_node_get_or_create(orig_node,
353 hard_iface, neigh_addr);
Marek Lindner7ae8b282012-03-01 15:35:21 +0800354 if (!neigh_node)
355 goto out;
356
Simon Wunderlich89652332013-11-13 19:14:46 +0100357 neigh_node->orig_node = orig_neigh;
Marek Lindner7ae8b282012-03-01 15:35:21 +0800358
Marek Lindner7ae8b282012-03-01 15:35:21 +0800359out:
360 return neigh_node;
361}
362
Sven Eckelmann56303d32012-06-05 22:31:31 +0200363static int batadv_iv_ogm_iface_enable(struct batadv_hard_iface *hard_iface)
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200364{
Sven Eckelmann96412692012-06-05 22:31:30 +0200365 struct batadv_ogm_packet *batadv_ogm_packet;
Marek Lindner14511512012-08-02 17:20:26 +0200366 unsigned char *ogm_buff;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200367 u32 random_seqno;
Marek Lindnerd7d32ec2012-02-07 17:20:46 +0800368
369 /* randomize initial seqno to avoid collision */
370 get_random_bytes(&random_seqno, sizeof(random_seqno));
Marek Lindner14511512012-08-02 17:20:26 +0200371 atomic_set(&hard_iface->bat_iv.ogm_seqno, random_seqno);
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200372
Marek Lindner14511512012-08-02 17:20:26 +0200373 hard_iface->bat_iv.ogm_buff_len = BATADV_OGM_HLEN;
374 ogm_buff = kmalloc(hard_iface->bat_iv.ogm_buff_len, GFP_ATOMIC);
375 if (!ogm_buff)
Markus Pargmann42d9f2c2014-12-26 12:41:26 +0100376 return -ENOMEM;
Marek Lindner77af7572012-02-07 17:20:48 +0800377
Marek Lindner14511512012-08-02 17:20:26 +0200378 hard_iface->bat_iv.ogm_buff = ogm_buff;
379
380 batadv_ogm_packet = (struct batadv_ogm_packet *)ogm_buff;
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100381 batadv_ogm_packet->packet_type = BATADV_IV_OGM;
382 batadv_ogm_packet->version = BATADV_COMPAT_VERSION;
383 batadv_ogm_packet->ttl = 2;
Sven Eckelmann96412692012-06-05 22:31:30 +0200384 batadv_ogm_packet->flags = BATADV_NO_FLAGS;
Marek Lindner414254e2013-04-23 21:39:58 +0800385 batadv_ogm_packet->reserved = 0;
Sven Eckelmann96412692012-06-05 22:31:30 +0200386 batadv_ogm_packet->tq = BATADV_TQ_MAX_VALUE;
Marek Lindner77af7572012-02-07 17:20:48 +0800387
Markus Pargmann42d9f2c2014-12-26 12:41:26 +0100388 return 0;
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200389}
390
Sven Eckelmann56303d32012-06-05 22:31:31 +0200391static void batadv_iv_ogm_iface_disable(struct batadv_hard_iface *hard_iface)
Marek Lindner00a50072012-02-07 17:20:47 +0800392{
Marek Lindner14511512012-08-02 17:20:26 +0200393 kfree(hard_iface->bat_iv.ogm_buff);
394 hard_iface->bat_iv.ogm_buff = NULL;
Marek Lindner00a50072012-02-07 17:20:47 +0800395}
396
Sven Eckelmann56303d32012-06-05 22:31:31 +0200397static void batadv_iv_ogm_iface_update_mac(struct batadv_hard_iface *hard_iface)
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200398{
Sven Eckelmann96412692012-06-05 22:31:30 +0200399 struct batadv_ogm_packet *batadv_ogm_packet;
Marek Lindner14511512012-08-02 17:20:26 +0200400 unsigned char *ogm_buff = hard_iface->bat_iv.ogm_buff;
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200401
Marek Lindner14511512012-08-02 17:20:26 +0200402 batadv_ogm_packet = (struct batadv_ogm_packet *)ogm_buff;
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100403 ether_addr_copy(batadv_ogm_packet->orig,
404 hard_iface->net_dev->dev_addr);
405 ether_addr_copy(batadv_ogm_packet->prev_sender,
406 hard_iface->net_dev->dev_addr);
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200407}
408
Sven Eckelmann56303d32012-06-05 22:31:31 +0200409static void
410batadv_iv_ogm_primary_iface_set(struct batadv_hard_iface *hard_iface)
Marek Lindnerc3229392012-03-11 06:17:50 +0800411{
Sven Eckelmann96412692012-06-05 22:31:30 +0200412 struct batadv_ogm_packet *batadv_ogm_packet;
Marek Lindner14511512012-08-02 17:20:26 +0200413 unsigned char *ogm_buff = hard_iface->bat_iv.ogm_buff;
Marek Lindnerc3229392012-03-11 06:17:50 +0800414
Marek Lindner14511512012-08-02 17:20:26 +0200415 batadv_ogm_packet = (struct batadv_ogm_packet *)ogm_buff;
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100416 batadv_ogm_packet->ttl = BATADV_TTL;
Marek Lindnerc3229392012-03-11 06:17:50 +0800417}
418
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200419/* when do we schedule our own ogm to be sent */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200420static unsigned long
Sven Eckelmann56303d32012-06-05 22:31:31 +0200421batadv_iv_ogm_emit_send_time(const struct batadv_priv *bat_priv)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200422{
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200423 unsigned int msecs;
424
425 msecs = atomic_read(&bat_priv->orig_interval) - BATADV_JITTER;
Akinobu Mitae76e4322012-12-24 11:14:07 +0900426 msecs += prandom_u32() % (2 * BATADV_JITTER);
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200427
428 return jiffies + msecs_to_jiffies(msecs);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200429}
430
431/* when do we schedule a ogm packet to be sent */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200432static unsigned long batadv_iv_ogm_fwd_send_time(void)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200433{
Akinobu Mitae76e4322012-12-24 11:14:07 +0900434 return jiffies + msecs_to_jiffies(prandom_u32() % (BATADV_JITTER / 2));
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200435}
436
437/* apply hop penalty for a normal link */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200438static u8 batadv_hop_penalty(u8 tq, const struct batadv_priv *bat_priv)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200439{
440 int hop_penalty = atomic_read(&bat_priv->hop_penalty);
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200441 int new_tq;
442
443 new_tq = tq * (BATADV_TQ_MAX_VALUE - hop_penalty);
444 new_tq /= BATADV_TQ_MAX_VALUE;
445
446 return new_tq;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200447}
448
Simon Wunderlich600184b2015-11-23 19:57:21 +0100449/**
450 * batadv_iv_ogm_aggr_packet - checks if there is another OGM attached
451 * @buff_pos: current position in the skb
452 * @packet_len: total length of the skb
Sven Eckelmann6c59cb12019-08-22 08:55:36 +0200453 * @ogm_packet: potential OGM in buffer
Simon Wunderlich600184b2015-11-23 19:57:21 +0100454 *
455 * Return: true if there is enough space for another OGM, false otherwise.
456 */
Sven Eckelmann6c59cb12019-08-22 08:55:36 +0200457static bool
458batadv_iv_ogm_aggr_packet(int buff_pos, int packet_len,
459 const struct batadv_ogm_packet *ogm_packet)
Marek Lindnerfc957272011-07-30 12:04:12 +0200460{
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200461 int next_buff_pos = 0;
462
Sven Eckelmann6c59cb12019-08-22 08:55:36 +0200463 /* check if there is enough space for the header */
464 next_buff_pos += buff_pos + sizeof(*ogm_packet);
465 if (next_buff_pos > packet_len)
466 return false;
467
468 /* check if there is enough space for the optional TVLV */
469 next_buff_pos += ntohs(ogm_packet->tvlv_len);
Marek Lindnerfc957272011-07-30 12:04:12 +0200470
471 return (next_buff_pos <= packet_len) &&
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200472 (next_buff_pos <= BATADV_MAX_AGGREGATION_BYTES);
Marek Lindnerfc957272011-07-30 12:04:12 +0200473}
474
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200475/* send a batman ogm to a given interface */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200476static void batadv_iv_ogm_send_to_if(struct batadv_forw_packet *forw_packet,
477 struct batadv_hard_iface *hard_iface)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200478{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200479 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Markus Pargmannde12bae2014-12-26 12:41:28 +0100480 const char *fwd_str;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200481 u8 packet_num;
482 s16 buff_pos;
Sven Eckelmann96412692012-06-05 22:31:30 +0200483 struct batadv_ogm_packet *batadv_ogm_packet;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200484 struct sk_buff *skb;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200485 u8 *packet_pos;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200486
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200487 if (hard_iface->if_status != BATADV_IF_ACTIVE)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200488 return;
489
490 packet_num = 0;
491 buff_pos = 0;
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200492 packet_pos = forw_packet->skb->data;
493 batadv_ogm_packet = (struct batadv_ogm_packet *)packet_pos;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200494
495 /* adjust all flags and log packets */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200496 while (batadv_iv_ogm_aggr_packet(buff_pos, forw_packet->packet_len,
Sven Eckelmann6c59cb12019-08-22 08:55:36 +0200497 batadv_ogm_packet)) {
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200498 /* we might have aggregated direct link packets with an
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200499 * ordinary base packet
500 */
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200501 if (forw_packet->direct_link_flags & BIT(packet_num) &&
502 forw_packet->if_incoming == hard_iface)
Sven Eckelmann96412692012-06-05 22:31:30 +0200503 batadv_ogm_packet->flags |= BATADV_DIRECTLINK;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200504 else
Sven Eckelmann96412692012-06-05 22:31:30 +0200505 batadv_ogm_packet->flags &= ~BATADV_DIRECTLINK;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200506
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200507 if (packet_num > 0 || !forw_packet->own)
508 fwd_str = "Forwarding";
509 else
510 fwd_str = "Sending own";
511
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200512 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800513 "%s %spacket (originator %pM, seqno %u, TQ %d, TTL %d, IDF %s) on interface %s [%pM]\n",
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200514 fwd_str, (packet_num > 0 ? "aggregated " : ""),
Sven Eckelmann96412692012-06-05 22:31:30 +0200515 batadv_ogm_packet->orig,
516 ntohl(batadv_ogm_packet->seqno),
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100517 batadv_ogm_packet->tq, batadv_ogm_packet->ttl,
Sven Eckelmanna2f2b6c2015-04-23 18:22:24 +0200518 ((batadv_ogm_packet->flags & BATADV_DIRECTLINK) ?
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200519 "on" : "off"),
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800520 hard_iface->net_dev->name,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200521 hard_iface->net_dev->dev_addr);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200522
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200523 buff_pos += BATADV_OGM_HLEN;
Marek Lindneref261572013-04-23 21:39:57 +0800524 buff_pos += ntohs(batadv_ogm_packet->tvlv_len);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200525 packet_num++;
Sven Eckelmannc67893d2012-07-08 18:33:51 +0200526 packet_pos = forw_packet->skb->data + buff_pos;
527 batadv_ogm_packet = (struct batadv_ogm_packet *)packet_pos;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200528 }
529
530 /* create clone because function is called more than once */
531 skb = skb_clone(forw_packet->skb, GFP_ATOMIC);
Martin Hundebøllf8214862012-04-20 17:02:45 +0200532 if (skb) {
Sven Eckelmannd69909d2012-06-03 22:19:20 +0200533 batadv_inc_counter(bat_priv, BATADV_CNT_MGMT_TX);
534 batadv_add_counter(bat_priv, BATADV_CNT_MGMT_TX_BYTES,
Martin Hundebøllf8214862012-04-20 17:02:45 +0200535 skb->len + ETH_HLEN);
Antonio Quartulli95d39272016-01-16 16:40:15 +0800536 batadv_send_broadcast_skb(skb, hard_iface);
Martin Hundebøllf8214862012-04-20 17:02:45 +0200537 }
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200538}
539
540/* send a batman ogm packet */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200541static void batadv_iv_ogm_emit(struct batadv_forw_packet *forw_packet)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200542{
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200543 struct net_device *soft_iface;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200544
545 if (!forw_packet->if_incoming) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100546 pr_err("Error - can't forward packet: incoming iface not specified\n");
Linus LĂĽssingf55a2e82016-06-14 22:56:50 +0200547 return;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200548 }
549
550 soft_iface = forw_packet->if_incoming->soft_iface;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200551
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100552 if (WARN_ON(!forw_packet->if_outgoing))
Linus LĂĽssingf55a2e82016-06-14 22:56:50 +0200553 return;
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100554
555 if (WARN_ON(forw_packet->if_outgoing->soft_iface != soft_iface))
Linus LĂĽssingf55a2e82016-06-14 22:56:50 +0200556 return;
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100557
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200558 if (forw_packet->if_incoming->if_status != BATADV_IF_ACTIVE)
Linus LĂĽssingf55a2e82016-06-14 22:56:50 +0200559 return;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200560
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100561 /* only for one specific outgoing interface */
562 batadv_iv_ogm_send_to_if(forw_packet, forw_packet->if_outgoing);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200563}
564
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100565/**
566 * batadv_iv_ogm_can_aggregate - find out if an OGM can be aggregated on an
567 * existing forward packet
568 * @new_bat_ogm_packet: OGM packet to be aggregated
569 * @bat_priv: the bat priv with all the soft interface information
570 * @packet_len: (total) length of the OGM
571 * @send_time: timestamp (jiffies) when the packet is to be sent
Martin Hundebøll95298a92014-07-15 09:41:05 +0200572 * @directlink: true if this is a direct link packet
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100573 * @if_incoming: interface where the packet was received
574 * @if_outgoing: interface for which the retransmission should be considered
575 * @forw_packet: the forwarded packet which should be checked
576 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200577 * Return: true if new_packet can be aggregated with forw_packet
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100578 */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200579static bool
Sven Eckelmann96412692012-06-05 22:31:30 +0200580batadv_iv_ogm_can_aggregate(const struct batadv_ogm_packet *new_bat_ogm_packet,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200581 struct batadv_priv *bat_priv,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200582 int packet_len, unsigned long send_time,
583 bool directlink,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200584 const struct batadv_hard_iface *if_incoming,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100585 const struct batadv_hard_iface *if_outgoing,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200586 const struct batadv_forw_packet *forw_packet)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200587{
Sven Eckelmann96412692012-06-05 22:31:30 +0200588 struct batadv_ogm_packet *batadv_ogm_packet;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200589 int aggregated_bytes = forw_packet->packet_len + packet_len;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200590 struct batadv_hard_iface *primary_if = NULL;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200591 bool res = false;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200592 unsigned long aggregation_end_time;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200593
Sven Eckelmann96412692012-06-05 22:31:30 +0200594 batadv_ogm_packet = (struct batadv_ogm_packet *)forw_packet->skb->data;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200595 aggregation_end_time = send_time;
596 aggregation_end_time += msecs_to_jiffies(BATADV_MAX_AGGREGATION_MS);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200597
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200598 /* we can aggregate the current packet to this aggregated packet
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200599 * if:
600 *
601 * - the send time is within our MAX_AGGREGATION_MS time
602 * - the resulting packet wont be bigger than
603 * MAX_AGGREGATION_BYTES
Markus Pargmann8f34b382014-12-26 12:41:29 +0100604 * otherwise aggregation is not possible
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200605 */
Markus Pargmann8f34b382014-12-26 12:41:29 +0100606 if (!time_before(send_time, forw_packet->send_time) ||
607 !time_after_eq(aggregation_end_time, forw_packet->send_time))
608 return false;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200609
Markus Pargmann8f34b382014-12-26 12:41:29 +0100610 if (aggregated_bytes > BATADV_MAX_AGGREGATION_BYTES)
611 return false;
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100612
Markus Pargmann8f34b382014-12-26 12:41:29 +0100613 /* packet is not leaving on the same interface. */
614 if (forw_packet->if_outgoing != if_outgoing)
615 return false;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200616
Markus Pargmann8f34b382014-12-26 12:41:29 +0100617 /* check aggregation compatibility
618 * -> direct link packets are broadcasted on
619 * their interface only
620 * -> aggregate packet if the current packet is
621 * a "global" packet as well as the base
622 * packet
623 */
624 primary_if = batadv_primary_if_get_selected(bat_priv);
625 if (!primary_if)
626 return false;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200627
Markus Pargmann8f34b382014-12-26 12:41:29 +0100628 /* packets without direct link flag and high TTL
629 * are flooded through the net
630 */
631 if (!directlink &&
632 !(batadv_ogm_packet->flags & BATADV_DIRECTLINK) &&
633 batadv_ogm_packet->ttl != 1 &&
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200634
Markus Pargmann8f34b382014-12-26 12:41:29 +0100635 /* own packets originating non-primary
636 * interfaces leave only that interface
637 */
638 (!forw_packet->own ||
639 forw_packet->if_incoming == primary_if)) {
640 res = true;
641 goto out;
642 }
643
644 /* if the incoming packet is sent via this one
645 * interface only - we still can aggregate
646 */
647 if (directlink &&
648 new_bat_ogm_packet->ttl == 1 &&
649 forw_packet->if_incoming == if_incoming &&
650
651 /* packets from direct neighbors or
652 * own secondary interface packets
653 * (= secondary interface packets in general)
654 */
655 (batadv_ogm_packet->flags & BATADV_DIRECTLINK ||
656 (forw_packet->own &&
657 forw_packet->if_incoming != primary_if))) {
658 res = true;
659 goto out;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200660 }
661
662out:
663 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100664 batadv_hardif_put(primary_if);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200665 return res;
666}
667
Simon Wunderlich1b371d12014-01-15 21:17:54 +0100668/**
669 * batadv_iv_ogm_aggregate_new - create a new aggregated packet and add this
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100670 * packet to it.
671 * @packet_buff: pointer to the OGM
672 * @packet_len: (total) length of the OGM
673 * @send_time: timestamp (jiffies) when the packet is to be sent
674 * @direct_link: whether this OGM has direct link status
675 * @if_incoming: interface where the packet was received
676 * @if_outgoing: interface for which the retransmission should be considered
677 * @own_packet: true if it is a self-generated ogm
678 */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200679static void batadv_iv_ogm_aggregate_new(const unsigned char *packet_buff,
680 int packet_len, unsigned long send_time,
681 bool direct_link,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200682 struct batadv_hard_iface *if_incoming,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100683 struct batadv_hard_iface *if_outgoing,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200684 int own_packet)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200685{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200686 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
687 struct batadv_forw_packet *forw_packet_aggr;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200688 unsigned char *skb_buff;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200689 unsigned int skb_size;
Linus LĂĽssinga65e5482016-06-20 21:39:54 +0200690 atomic_t *queue_left = own_packet ? NULL : &bat_priv->batman_queue_left;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200691
Linus LĂĽssinga65e5482016-06-20 21:39:54 +0200692 forw_packet_aggr = batadv_forw_packet_alloc(if_incoming, if_outgoing,
693 queue_left, bat_priv);
Markus Pargmann940d1562014-12-26 12:41:31 +0100694 if (!forw_packet_aggr)
Linus LĂĽssinga65e5482016-06-20 21:39:54 +0200695 return;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200696
Markus Pargmann940d1562014-12-26 12:41:31 +0100697 if (atomic_read(&bat_priv->aggregated_ogms) &&
698 packet_len < BATADV_MAX_AGGREGATION_BYTES)
Sven Eckelmann5b246572012-11-04 17:11:45 +0100699 skb_size = BATADV_MAX_AGGREGATION_BYTES;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200700 else
Sven Eckelmann5b246572012-11-04 17:11:45 +0100701 skb_size = packet_len;
702
Antonio Quartulli41ab6c42013-04-02 22:28:44 +0200703 skb_size += ETH_HLEN;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200704
Antonio Quartulli41ab6c42013-04-02 22:28:44 +0200705 forw_packet_aggr->skb = netdev_alloc_skb_ip_align(NULL, skb_size);
Linus LĂĽssinga65e5482016-06-20 21:39:54 +0200706 if (!forw_packet_aggr->skb) {
707 batadv_forw_packet_free(forw_packet_aggr);
708 return;
709 }
710
Simon Wunderlichc54f38c2013-07-29 17:56:44 +0200711 forw_packet_aggr->skb->priority = TC_PRIO_CONTROL;
Antonio Quartulli41ab6c42013-04-02 22:28:44 +0200712 skb_reserve(forw_packet_aggr->skb, ETH_HLEN);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200713
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200714 skb_buff = skb_put(forw_packet_aggr->skb, packet_len);
715 forw_packet_aggr->packet_len = packet_len;
716 memcpy(skb_buff, packet_buff, packet_len);
717
718 forw_packet_aggr->own = own_packet;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200719 forw_packet_aggr->direct_link_flags = BATADV_NO_FLAGS;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200720 forw_packet_aggr->send_time = send_time;
721
722 /* save packet direct link flag status */
723 if (direct_link)
724 forw_packet_aggr->direct_link_flags |= 1;
725
726 /* add new packet to packet list */
727 spin_lock_bh(&bat_priv->forw_bat_list_lock);
728 hlist_add_head(&forw_packet_aggr->list, &bat_priv->forw_bat_list);
729 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
730
731 /* start timer for this packet */
732 INIT_DELAYED_WORK(&forw_packet_aggr->delayed_work,
Antonio Quartullif0d97252016-05-03 01:45:34 +0800733 batadv_iv_send_outstanding_bat_ogm_packet);
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200734 queue_delayed_work(batadv_event_workqueue,
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200735 &forw_packet_aggr->delayed_work,
736 send_time - jiffies);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200737}
738
739/* aggregate a new packet into the existing ogm packet */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200740static void batadv_iv_ogm_aggregate(struct batadv_forw_packet *forw_packet_aggr,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200741 const unsigned char *packet_buff,
742 int packet_len, bool direct_link)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200743{
744 unsigned char *skb_buff;
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200745 unsigned long new_direct_link_flag;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200746
747 skb_buff = skb_put(forw_packet_aggr->skb, packet_len);
748 memcpy(skb_buff, packet_buff, packet_len);
749 forw_packet_aggr->packet_len += packet_len;
750 forw_packet_aggr->num_packets++;
751
752 /* save packet direct link flag status */
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200753 if (direct_link) {
754 new_direct_link_flag = BIT(forw_packet_aggr->num_packets);
755 forw_packet_aggr->direct_link_flags |= new_direct_link_flag;
756 }
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200757}
758
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100759/**
760 * batadv_iv_ogm_queue_add - queue up an OGM for transmission
761 * @bat_priv: the bat priv with all the soft interface information
762 * @packet_buff: pointer to the OGM
763 * @packet_len: (total) length of the OGM
764 * @if_incoming: interface where the packet was received
765 * @if_outgoing: interface for which the retransmission should be considered
766 * @own_packet: true if it is a self-generated ogm
767 * @send_time: timestamp (jiffies) when the packet is to be sent
768 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200769static void batadv_iv_ogm_queue_add(struct batadv_priv *bat_priv,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200770 unsigned char *packet_buff,
771 int packet_len,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200772 struct batadv_hard_iface *if_incoming,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100773 struct batadv_hard_iface *if_outgoing,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200774 int own_packet, unsigned long send_time)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200775{
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200776 /* _aggr -> pointer to the packet we want to aggregate with
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200777 * _pos -> pointer to the position in the queue
778 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200779 struct batadv_forw_packet *forw_packet_aggr = NULL;
780 struct batadv_forw_packet *forw_packet_pos = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +0200781 struct batadv_ogm_packet *batadv_ogm_packet;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200782 bool direct_link;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200783 unsigned long max_aggregation_jiffies;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200784
Sven Eckelmann96412692012-06-05 22:31:30 +0200785 batadv_ogm_packet = (struct batadv_ogm_packet *)packet_buff;
Markus Pargmann56489152014-12-26 12:41:32 +0100786 direct_link = !!(batadv_ogm_packet->flags & BATADV_DIRECTLINK);
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200787 max_aggregation_jiffies = msecs_to_jiffies(BATADV_MAX_AGGREGATION_MS);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200788
789 /* find position for the packet in the forward queue */
790 spin_lock_bh(&bat_priv->forw_bat_list_lock);
791 /* own packets are not to be aggregated */
Markus Pargmann56489152014-12-26 12:41:32 +0100792 if (atomic_read(&bat_priv->aggregated_ogms) && !own_packet) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800793 hlist_for_each_entry(forw_packet_pos,
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200794 &bat_priv->forw_bat_list, list) {
Sven Eckelmann96412692012-06-05 22:31:30 +0200795 if (batadv_iv_ogm_can_aggregate(batadv_ogm_packet,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200796 bat_priv, packet_len,
797 send_time, direct_link,
798 if_incoming,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100799 if_outgoing,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200800 forw_packet_pos)) {
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200801 forw_packet_aggr = forw_packet_pos;
802 break;
803 }
804 }
805 }
806
807 /* nothing to aggregate with - either aggregation disabled or no
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200808 * suitable aggregation packet found
809 */
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200810 if (!forw_packet_aggr) {
811 /* the following section can run without the lock */
812 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
813
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200814 /* if we could not aggregate this packet with one of the others
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200815 * we hold it back for a while, so that it might be aggregated
816 * later on
817 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200818 if (!own_packet && atomic_read(&bat_priv->aggregated_ogms))
819 send_time += max_aggregation_jiffies;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200820
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200821 batadv_iv_ogm_aggregate_new(packet_buff, packet_len,
822 send_time, direct_link,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100823 if_incoming, if_outgoing,
824 own_packet);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200825 } else {
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200826 batadv_iv_ogm_aggregate(forw_packet_aggr, packet_buff,
827 packet_len, direct_link);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200828 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
829 }
830}
831
Sven Eckelmann56303d32012-06-05 22:31:31 +0200832static void batadv_iv_ogm_forward(struct batadv_orig_node *orig_node,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200833 const struct ethhdr *ethhdr,
Sven Eckelmann96412692012-06-05 22:31:30 +0200834 struct batadv_ogm_packet *batadv_ogm_packet,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200835 bool is_single_hop_neigh,
836 bool is_from_best_next_hop,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100837 struct batadv_hard_iface *if_incoming,
838 struct batadv_hard_iface *if_outgoing)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200839{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200840 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200841 u16 tvlv_len;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200842
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100843 if (batadv_ogm_packet->ttl <= 1) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200844 batadv_dbg(BATADV_DBG_BATMAN, bat_priv, "ttl exceeded\n");
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200845 return;
846 }
847
Marek Lindner13b25412012-03-11 06:17:53 +0800848 if (!is_from_best_next_hop) {
849 /* Mark the forwarded packet when it is not coming from our
850 * best next hop. We still need to forward the packet for our
851 * neighbor link quality detection to work in case the packet
852 * originated from a single hop neighbor. Otherwise we can
853 * simply drop the ogm.
854 */
855 if (is_single_hop_neigh)
Sven Eckelmann96412692012-06-05 22:31:30 +0200856 batadv_ogm_packet->flags |= BATADV_NOT_BEST_NEXT_HOP;
Marek Lindner13b25412012-03-11 06:17:53 +0800857 else
858 return;
859 }
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200860
Marek Lindneref261572013-04-23 21:39:57 +0800861 tvlv_len = ntohs(batadv_ogm_packet->tvlv_len);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200862
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100863 batadv_ogm_packet->ttl--;
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100864 ether_addr_copy(batadv_ogm_packet->prev_sender, ethhdr->h_source);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200865
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200866 /* apply hop penalty */
Sven Eckelmann96412692012-06-05 22:31:30 +0200867 batadv_ogm_packet->tq = batadv_hop_penalty(batadv_ogm_packet->tq,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +0200868 bat_priv);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200869
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200870 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200871 "Forwarding packet: tq: %i, ttl: %i\n",
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100872 batadv_ogm_packet->tq, batadv_ogm_packet->ttl);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200873
Marek Lindner75cd33f2012-03-01 15:35:16 +0800874 if (is_single_hop_neigh)
Sven Eckelmann96412692012-06-05 22:31:30 +0200875 batadv_ogm_packet->flags |= BATADV_DIRECTLINK;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200876 else
Sven Eckelmann96412692012-06-05 22:31:30 +0200877 batadv_ogm_packet->flags &= ~BATADV_DIRECTLINK;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200878
Sven Eckelmann96412692012-06-05 22:31:30 +0200879 batadv_iv_ogm_queue_add(bat_priv, (unsigned char *)batadv_ogm_packet,
Marek Lindneref261572013-04-23 21:39:57 +0800880 BATADV_OGM_HLEN + tvlv_len,
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100881 if_incoming, if_outgoing, 0,
882 batadv_iv_ogm_fwd_send_time());
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200883}
884
Antonio Quartullid9896612013-04-17 17:44:43 +0200885/**
886 * batadv_iv_ogm_slide_own_bcast_window - bitshift own OGM broadcast windows for
887 * the given interface
888 * @hard_iface: the interface for which the windows have to be shifted
889 */
890static void
891batadv_iv_ogm_slide_own_bcast_window(struct batadv_hard_iface *hard_iface)
892{
893 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
894 struct batadv_hashtable *hash = bat_priv->orig_hash;
895 struct hlist_head *head;
896 struct batadv_orig_node *orig_node;
897 unsigned long *word;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200898 u32 i;
Antonio Quartullid9896612013-04-17 17:44:43 +0200899 size_t word_index;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200900 u8 *w;
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200901 int if_num;
Antonio Quartullid9896612013-04-17 17:44:43 +0200902
903 for (i = 0; i < hash->size; i++) {
904 head = &hash->table[i];
905
906 rcu_read_lock();
907 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200908 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
Antonio Quartullid9896612013-04-17 17:44:43 +0200909 word_index = hard_iface->if_num * BATADV_NUM_WORDS;
Antonio Quartulli32db6aa2014-09-01 14:37:29 +0200910 word = &orig_node->bat_iv.bcast_own[word_index];
Antonio Quartullid9896612013-04-17 17:44:43 +0200911
912 batadv_bit_get_packet(bat_priv, word, 1, 0);
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200913 if_num = hard_iface->if_num;
914 w = &orig_node->bat_iv.bcast_own_sum[if_num];
Antonio Quartullid9896612013-04-17 17:44:43 +0200915 *w = bitmap_weight(word, BATADV_TQ_LOCAL_WINDOW_SIZE);
Antonio Quartullibbad0a52013-09-02 12:15:02 +0200916 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
Antonio Quartullid9896612013-04-17 17:44:43 +0200917 }
918 rcu_read_unlock();
919 }
920}
921
Sven Eckelmann56303d32012-06-05 22:31:31 +0200922static void batadv_iv_ogm_schedule(struct batadv_hard_iface *hard_iface)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200923{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200924 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindner14511512012-08-02 17:20:26 +0200925 unsigned char **ogm_buff = &hard_iface->bat_iv.ogm_buff;
Sven Eckelmann96412692012-06-05 22:31:30 +0200926 struct batadv_ogm_packet *batadv_ogm_packet;
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100927 struct batadv_hard_iface *primary_if, *tmp_hard_iface;
Marek Lindner14511512012-08-02 17:20:26 +0200928 int *ogm_buff_len = &hard_iface->bat_iv.ogm_buff_len;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200929 u32 seqno;
930 u16 tvlv_len = 0;
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100931 unsigned long send_time;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200932
Antonio Quartullif0d97252016-05-03 01:45:34 +0800933 if ((hard_iface->if_status == BATADV_IF_NOT_IN_USE) ||
934 (hard_iface->if_status == BATADV_IF_TO_BE_REMOVED))
935 return;
936
937 /* the interface gets activated here to avoid race conditions between
938 * the moment of activating the interface in
939 * hardif_activate_interface() where the originator mac is set and
940 * outdated packets (especially uninitialized mac addresses) in the
941 * packet queue
942 */
943 if (hard_iface->if_status == BATADV_IF_TO_BE_ACTIVATED)
944 hard_iface->if_status = BATADV_IF_ACTIVE;
945
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200946 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200947
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800948 if (hard_iface == primary_if) {
949 /* tt changes have to be committed before the tvlv data is
950 * appended as it may alter the tt tvlv container
951 */
952 batadv_tt_local_commit_changes(bat_priv);
Marek Lindneref261572013-04-23 21:39:57 +0800953 tvlv_len = batadv_tvlv_container_ogm_append(bat_priv, ogm_buff,
954 ogm_buff_len,
955 BATADV_OGM_HLEN);
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800956 }
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800957
Marek Lindner14511512012-08-02 17:20:26 +0200958 batadv_ogm_packet = (struct batadv_ogm_packet *)(*ogm_buff);
Marek Lindneref261572013-04-23 21:39:57 +0800959 batadv_ogm_packet->tvlv_len = htons(tvlv_len);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200960
961 /* change sequence number to network order */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200962 seqno = (u32)atomic_read(&hard_iface->bat_iv.ogm_seqno);
Sven Eckelmannbbb1f902012-07-08 17:13:15 +0200963 batadv_ogm_packet->seqno = htonl(seqno);
Marek Lindner14511512012-08-02 17:20:26 +0200964 atomic_inc(&hard_iface->bat_iv.ogm_seqno);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200965
Antonio Quartullid9896612013-04-17 17:44:43 +0200966 batadv_iv_ogm_slide_own_bcast_window(hard_iface);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200967
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100968 send_time = batadv_iv_ogm_emit_send_time(bat_priv);
969
970 if (hard_iface != primary_if) {
971 /* OGMs from secondary interfaces are only scheduled on their
972 * respective interfaces.
973 */
974 batadv_iv_ogm_queue_add(bat_priv, *ogm_buff, *ogm_buff_len,
975 hard_iface, hard_iface, 1, send_time);
976 goto out;
977 }
978
979 /* OGMs from primary interfaces are scheduled on all
980 * interfaces.
981 */
982 rcu_read_lock();
983 list_for_each_entry_rcu(tmp_hard_iface, &batadv_hardif_list, list) {
984 if (tmp_hard_iface->soft_iface != hard_iface->soft_iface)
Sven Eckelmann87b40f52015-07-17 10:03:42 +0200985 continue;
Sven Eckelmann27353442016-03-05 16:09:16 +0100986
987 if (!kref_get_unless_zero(&tmp_hard_iface->refcount))
988 continue;
989
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100990 batadv_iv_ogm_queue_add(bat_priv, *ogm_buff,
991 *ogm_buff_len, hard_iface,
992 tmp_hard_iface, 1, send_time);
Sven Eckelmann27353442016-03-05 16:09:16 +0100993
994 batadv_hardif_put(tmp_hard_iface);
Simon Wunderlichef0a9372013-11-13 19:14:49 +0100995 }
996 rcu_read_unlock();
997
998out:
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200999 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +01001000 batadv_hardif_put(primary_if);
Marek Lindnerb9dacc52011-08-03 09:09:30 +02001001}
1002
Simon Wunderlich89652332013-11-13 19:14:46 +01001003/**
1004 * batadv_iv_ogm_orig_update - use OGM to update corresponding data in an
1005 * originator
1006 * @bat_priv: the bat priv with all the soft interface information
1007 * @orig_node: the orig node who originally emitted the ogm packet
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001008 * @orig_ifinfo: ifinfo for the outgoing interface of the orig_node
Simon Wunderlich89652332013-11-13 19:14:46 +01001009 * @ethhdr: Ethernet header of the OGM
1010 * @batadv_ogm_packet: the ogm packet
1011 * @if_incoming: interface where the packet was received
1012 * @if_outgoing: interface for which the retransmission should be considered
Simon Wunderlich89652332013-11-13 19:14:46 +01001013 * @dup_status: the duplicate status of this ogm packet.
1014 */
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001015static void
Sven Eckelmann56303d32012-06-05 22:31:31 +02001016batadv_iv_ogm_orig_update(struct batadv_priv *bat_priv,
1017 struct batadv_orig_node *orig_node,
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001018 struct batadv_orig_ifinfo *orig_ifinfo,
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001019 const struct ethhdr *ethhdr,
Sven Eckelmann96412692012-06-05 22:31:30 +02001020 const struct batadv_ogm_packet *batadv_ogm_packet,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001021 struct batadv_hard_iface *if_incoming,
Simon Wunderlich89652332013-11-13 19:14:46 +01001022 struct batadv_hard_iface *if_outgoing,
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001023 enum batadv_dup_status dup_status)
Marek Lindnerfc957272011-07-30 12:04:12 +02001024{
Simon Wunderlich89652332013-11-13 19:14:46 +01001025 struct batadv_neigh_ifinfo *neigh_ifinfo = NULL;
1026 struct batadv_neigh_ifinfo *router_ifinfo = NULL;
Sven Eckelmann4f248cf2015-06-09 20:50:49 +02001027 struct batadv_neigh_node *neigh_node = NULL;
1028 struct batadv_neigh_node *tmp_neigh_node = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001029 struct batadv_neigh_node *router = NULL;
1030 struct batadv_orig_node *orig_node_tmp;
Linus LĂĽssing7caf69f2012-09-18 03:01:08 +02001031 int if_num;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001032 u8 sum_orig, sum_neigh;
1033 u8 *neigh_addr;
1034 u8 tq_avg;
Marek Lindnerfc957272011-07-30 12:04:12 +02001035
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001036 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001037 "update_originator(): Searching and updating originator entry of received packet\n");
Marek Lindnerfc957272011-07-30 12:04:12 +02001038
1039 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001040 hlist_for_each_entry_rcu(tmp_neigh_node,
Marek Lindnerfc957272011-07-30 12:04:12 +02001041 &orig_node->neigh_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001042 neigh_addr = tmp_neigh_node->addr;
1043 if (batadv_compare_eth(neigh_addr, ethhdr->h_source) &&
1044 tmp_neigh_node->if_incoming == if_incoming &&
Sven Eckelmann77ae32e2016-01-16 10:29:53 +01001045 kref_get_unless_zero(&tmp_neigh_node->refcount)) {
Antonio Quartulli38dc40e2013-03-30 17:22:00 +01001046 if (WARN(neigh_node, "too many matching neigh_nodes"))
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001047 batadv_neigh_node_put(neigh_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001048 neigh_node = tmp_neigh_node;
1049 continue;
1050 }
1051
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001052 if (dup_status != BATADV_NO_DUP)
Marek Lindnerfc957272011-07-30 12:04:12 +02001053 continue;
1054
Simon Wunderlich89652332013-11-13 19:14:46 +01001055 /* only update the entry for this outgoing interface */
1056 neigh_ifinfo = batadv_neigh_ifinfo_get(tmp_neigh_node,
1057 if_outgoing);
1058 if (!neigh_ifinfo)
1059 continue;
1060
1061 spin_lock_bh(&tmp_neigh_node->ifinfo_lock);
1062 batadv_ring_buffer_set(neigh_ifinfo->bat_iv.tq_recv,
1063 &neigh_ifinfo->bat_iv.tq_index, 0);
1064 tq_avg = batadv_ring_buffer_avg(neigh_ifinfo->bat_iv.tq_recv);
1065 neigh_ifinfo->bat_iv.tq_avg = tq_avg;
1066 spin_unlock_bh(&tmp_neigh_node->ifinfo_lock);
1067
Sven Eckelmann044fa3a2016-01-17 11:01:12 +01001068 batadv_neigh_ifinfo_put(neigh_ifinfo);
Simon Wunderlich89652332013-11-13 19:14:46 +01001069 neigh_ifinfo = NULL;
Marek Lindnerfc957272011-07-30 12:04:12 +02001070 }
1071
1072 if (!neigh_node) {
Sven Eckelmann56303d32012-06-05 22:31:31 +02001073 struct batadv_orig_node *orig_tmp;
Marek Lindnerfc957272011-07-30 12:04:12 +02001074
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001075 orig_tmp = batadv_iv_ogm_orig_get(bat_priv, ethhdr->h_source);
Marek Lindnerfc957272011-07-30 12:04:12 +02001076 if (!orig_tmp)
1077 goto unlock;
1078
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001079 neigh_node = batadv_iv_ogm_neigh_new(if_incoming,
1080 ethhdr->h_source,
Antonio Quartulli863dd7a2013-03-25 13:49:46 +01001081 orig_node, orig_tmp);
Marek Lindnerfc957272011-07-30 12:04:12 +02001082
Sven Eckelmann5d967312016-01-17 11:01:09 +01001083 batadv_orig_node_put(orig_tmp);
Marek Lindnerfc957272011-07-30 12:04:12 +02001084 if (!neigh_node)
1085 goto unlock;
Markus Pargmann23badd62014-12-26 12:41:33 +01001086 } else {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001087 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001088 "Updating existing last-hop neighbor of originator\n");
Markus Pargmann23badd62014-12-26 12:41:33 +01001089 }
Marek Lindnerfc957272011-07-30 12:04:12 +02001090
1091 rcu_read_unlock();
Simon Wunderlich89652332013-11-13 19:14:46 +01001092 neigh_ifinfo = batadv_neigh_ifinfo_new(neigh_node, if_outgoing);
1093 if (!neigh_ifinfo)
1094 goto out;
Marek Lindnerfc957272011-07-30 12:04:12 +02001095
Marek Lindnerd7b2a972012-03-01 15:35:19 +08001096 neigh_node->last_seen = jiffies;
Marek Lindnerfc957272011-07-30 12:04:12 +02001097
Simon Wunderlich89652332013-11-13 19:14:46 +01001098 spin_lock_bh(&neigh_node->ifinfo_lock);
1099 batadv_ring_buffer_set(neigh_ifinfo->bat_iv.tq_recv,
1100 &neigh_ifinfo->bat_iv.tq_index,
Sven Eckelmann96412692012-06-05 22:31:30 +02001101 batadv_ogm_packet->tq);
Simon Wunderlich89652332013-11-13 19:14:46 +01001102 tq_avg = batadv_ring_buffer_avg(neigh_ifinfo->bat_iv.tq_recv);
1103 neigh_ifinfo->bat_iv.tq_avg = tq_avg;
1104 spin_unlock_bh(&neigh_node->ifinfo_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +02001105
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001106 if (dup_status == BATADV_NO_DUP) {
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001107 orig_ifinfo->last_ttl = batadv_ogm_packet->ttl;
Simon Wunderlich89652332013-11-13 19:14:46 +01001108 neigh_ifinfo->last_ttl = batadv_ogm_packet->ttl;
Marek Lindnerfc957272011-07-30 12:04:12 +02001109 }
1110
Marek Lindnerfc957272011-07-30 12:04:12 +02001111 /* if this neighbor already is our next hop there is nothing
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001112 * to change
1113 */
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001114 router = batadv_orig_router_get(orig_node, if_outgoing);
Marek Lindnerfc957272011-07-30 12:04:12 +02001115 if (router == neigh_node)
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001116 goto out;
Marek Lindnerfc957272011-07-30 12:04:12 +02001117
Simon Wunderlich89652332013-11-13 19:14:46 +01001118 if (router) {
1119 router_ifinfo = batadv_neigh_ifinfo_get(router, if_outgoing);
1120 if (!router_ifinfo)
1121 goto out;
1122
1123 /* if this neighbor does not offer a better TQ we won't
1124 * consider it
1125 */
1126 if (router_ifinfo->bat_iv.tq_avg > neigh_ifinfo->bat_iv.tq_avg)
1127 goto out;
1128 }
Marek Lindnerfc957272011-07-30 12:04:12 +02001129
1130 /* if the TQ is the same and the link not more symmetric we
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001131 * won't consider it either
1132 */
Simon Wunderlich89652332013-11-13 19:14:46 +01001133 if (router_ifinfo &&
Markus Pargmann01b97a32014-12-26 12:41:30 +01001134 neigh_ifinfo->bat_iv.tq_avg == router_ifinfo->bat_iv.tq_avg) {
Marek Lindnerfc957272011-07-30 12:04:12 +02001135 orig_node_tmp = router->orig_node;
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001136 spin_lock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock);
Linus LĂĽssing7caf69f2012-09-18 03:01:08 +02001137 if_num = router->if_incoming->if_num;
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001138 sum_orig = orig_node_tmp->bat_iv.bcast_own_sum[if_num];
1139 spin_unlock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +02001140
1141 orig_node_tmp = neigh_node->orig_node;
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001142 spin_lock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock);
Linus LĂĽssing7caf69f2012-09-18 03:01:08 +02001143 if_num = neigh_node->if_incoming->if_num;
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001144 sum_neigh = orig_node_tmp->bat_iv.bcast_own_sum[if_num];
1145 spin_unlock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +02001146
Sven Eckelmannbbb1f902012-07-08 17:13:15 +02001147 if (sum_orig >= sum_neigh)
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001148 goto out;
Marek Lindnerfc957272011-07-30 12:04:12 +02001149 }
1150
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001151 batadv_update_route(bat_priv, orig_node, if_outgoing, neigh_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001152 goto out;
1153
1154unlock:
1155 rcu_read_unlock();
1156out:
1157 if (neigh_node)
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001158 batadv_neigh_node_put(neigh_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001159 if (router)
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001160 batadv_neigh_node_put(router);
Simon Wunderlich89652332013-11-13 19:14:46 +01001161 if (neigh_ifinfo)
Sven Eckelmann044fa3a2016-01-17 11:01:12 +01001162 batadv_neigh_ifinfo_put(neigh_ifinfo);
Simon Wunderlich89652332013-11-13 19:14:46 +01001163 if (router_ifinfo)
Sven Eckelmann044fa3a2016-01-17 11:01:12 +01001164 batadv_neigh_ifinfo_put(router_ifinfo);
Marek Lindnerfc957272011-07-30 12:04:12 +02001165}
1166
Simon Wunderlich89652332013-11-13 19:14:46 +01001167/**
1168 * batadv_iv_ogm_calc_tq - calculate tq for current received ogm packet
1169 * @orig_node: the orig node who originally emitted the ogm packet
1170 * @orig_neigh_node: the orig node struct of the neighbor who sent the packet
1171 * @batadv_ogm_packet: the ogm packet
1172 * @if_incoming: interface where the packet was received
1173 * @if_outgoing: interface for which the retransmission should be considered
1174 *
Sven Eckelmann4b426b12016-02-22 21:02:39 +01001175 * Return: true if the link can be considered bidirectional, false otherwise
Simon Wunderlich89652332013-11-13 19:14:46 +01001176 */
Sven Eckelmann4b426b12016-02-22 21:02:39 +01001177static bool batadv_iv_ogm_calc_tq(struct batadv_orig_node *orig_node,
1178 struct batadv_orig_node *orig_neigh_node,
1179 struct batadv_ogm_packet *batadv_ogm_packet,
1180 struct batadv_hard_iface *if_incoming,
1181 struct batadv_hard_iface *if_outgoing)
Marek Lindnerfc957272011-07-30 12:04:12 +02001182{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001183 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
1184 struct batadv_neigh_node *neigh_node = NULL, *tmp_neigh_node;
Simon Wunderlich89652332013-11-13 19:14:46 +01001185 struct batadv_neigh_ifinfo *neigh_ifinfo;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001186 u8 total_count;
1187 u8 orig_eq_count, neigh_rq_count, neigh_rq_inv, tq_own;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001188 unsigned int neigh_rq_inv_cube, neigh_rq_max_cube;
Sven Eckelmannd285f522016-02-16 10:47:07 +01001189 int if_num;
1190 unsigned int tq_asym_penalty, inv_asym_penalty;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001191 unsigned int combined_tq;
Sven Eckelmannd285f522016-02-16 10:47:07 +01001192 unsigned int tq_iface_penalty;
Sven Eckelmann4b426b12016-02-22 21:02:39 +01001193 bool ret = false;
Marek Lindnerfc957272011-07-30 12:04:12 +02001194
1195 /* find corresponding one hop neighbor */
1196 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001197 hlist_for_each_entry_rcu(tmp_neigh_node,
Marek Lindnerfc957272011-07-30 12:04:12 +02001198 &orig_neigh_node->neigh_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001199 if (!batadv_compare_eth(tmp_neigh_node->addr,
1200 orig_neigh_node->orig))
Marek Lindnerfc957272011-07-30 12:04:12 +02001201 continue;
1202
1203 if (tmp_neigh_node->if_incoming != if_incoming)
1204 continue;
1205
Sven Eckelmann77ae32e2016-01-16 10:29:53 +01001206 if (!kref_get_unless_zero(&tmp_neigh_node->refcount))
Marek Lindnerfc957272011-07-30 12:04:12 +02001207 continue;
1208
1209 neigh_node = tmp_neigh_node;
1210 break;
1211 }
1212 rcu_read_unlock();
1213
1214 if (!neigh_node)
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001215 neigh_node = batadv_iv_ogm_neigh_new(if_incoming,
1216 orig_neigh_node->orig,
1217 orig_neigh_node,
Antonio Quartulli863dd7a2013-03-25 13:49:46 +01001218 orig_neigh_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001219
1220 if (!neigh_node)
1221 goto out;
1222
Marek Lindnerd7b2a972012-03-01 15:35:19 +08001223 /* if orig_node is direct neighbor update neigh_node last_seen */
Marek Lindnerfc957272011-07-30 12:04:12 +02001224 if (orig_node == orig_neigh_node)
Marek Lindnerd7b2a972012-03-01 15:35:19 +08001225 neigh_node->last_seen = jiffies;
Marek Lindnerfc957272011-07-30 12:04:12 +02001226
Marek Lindnerd7b2a972012-03-01 15:35:19 +08001227 orig_node->last_seen = jiffies;
Marek Lindnerfc957272011-07-30 12:04:12 +02001228
1229 /* find packet count of corresponding one hop neighbor */
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001230 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
1231 if_num = if_incoming->if_num;
1232 orig_eq_count = orig_neigh_node->bat_iv.bcast_own_sum[if_num];
Simon Wunderlich89652332013-11-13 19:14:46 +01001233 neigh_ifinfo = batadv_neigh_ifinfo_new(neigh_node, if_outgoing);
1234 if (neigh_ifinfo) {
1235 neigh_rq_count = neigh_ifinfo->bat_iv.real_packet_count;
Sven Eckelmann044fa3a2016-01-17 11:01:12 +01001236 batadv_neigh_ifinfo_put(neigh_ifinfo);
Simon Wunderlich89652332013-11-13 19:14:46 +01001237 } else {
1238 neigh_rq_count = 0;
1239 }
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001240 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +02001241
1242 /* pay attention to not get a value bigger than 100 % */
Sven Eckelmannc67893d2012-07-08 18:33:51 +02001243 if (orig_eq_count > neigh_rq_count)
1244 total_count = neigh_rq_count;
1245 else
1246 total_count = orig_eq_count;
Marek Lindnerfc957272011-07-30 12:04:12 +02001247
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001248 /* if we have too few packets (too less data) we set tq_own to zero
1249 * if we receive too few packets it is not considered bidirectional
1250 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001251 if (total_count < BATADV_TQ_LOCAL_BIDRECT_SEND_MINIMUM ||
1252 neigh_rq_count < BATADV_TQ_LOCAL_BIDRECT_RECV_MINIMUM)
Marek Lindnerfc957272011-07-30 12:04:12 +02001253 tq_own = 0;
1254 else
1255 /* neigh_node->real_packet_count is never zero as we
1256 * only purge old information when getting new
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001257 * information
1258 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001259 tq_own = (BATADV_TQ_MAX_VALUE * total_count) / neigh_rq_count;
Marek Lindnerfc957272011-07-30 12:04:12 +02001260
Sven Eckelmann21a12362012-03-07 09:07:46 +01001261 /* 1 - ((1-x) ** 3), normalized to TQ_MAX_VALUE this does
Marek Lindnerfc957272011-07-30 12:04:12 +02001262 * affect the nearly-symmetric links only a little, but
1263 * punishes asymmetric links more. This will give a value
1264 * between 0 and TQ_MAX_VALUE
1265 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001266 neigh_rq_inv = BATADV_TQ_LOCAL_WINDOW_SIZE - neigh_rq_count;
1267 neigh_rq_inv_cube = neigh_rq_inv * neigh_rq_inv * neigh_rq_inv;
1268 neigh_rq_max_cube = BATADV_TQ_LOCAL_WINDOW_SIZE *
1269 BATADV_TQ_LOCAL_WINDOW_SIZE *
1270 BATADV_TQ_LOCAL_WINDOW_SIZE;
1271 inv_asym_penalty = BATADV_TQ_MAX_VALUE * neigh_rq_inv_cube;
1272 inv_asym_penalty /= neigh_rq_max_cube;
1273 tq_asym_penalty = BATADV_TQ_MAX_VALUE - inv_asym_penalty;
Marek Lindnerfc957272011-07-30 12:04:12 +02001274
Simon Wunderlichc0398762013-11-13 19:14:48 +01001275 /* penalize if the OGM is forwarded on the same interface. WiFi
1276 * interfaces and other half duplex devices suffer from throughput
1277 * drops as they can't send and receive at the same time.
1278 */
1279 tq_iface_penalty = BATADV_TQ_MAX_VALUE;
1280 if (if_outgoing && (if_incoming == if_outgoing) &&
1281 batadv_is_wifi_netdev(if_outgoing->net_dev))
1282 tq_iface_penalty = batadv_hop_penalty(BATADV_TQ_MAX_VALUE,
1283 bat_priv);
1284
1285 combined_tq = batadv_ogm_packet->tq *
1286 tq_own *
1287 tq_asym_penalty *
1288 tq_iface_penalty;
1289 combined_tq /= BATADV_TQ_MAX_VALUE *
1290 BATADV_TQ_MAX_VALUE *
1291 BATADV_TQ_MAX_VALUE;
Sven Eckelmann96412692012-06-05 22:31:30 +02001292 batadv_ogm_packet->tq = combined_tq;
Marek Lindnerfc957272011-07-30 12:04:12 +02001293
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001294 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Simon Wunderlichc0398762013-11-13 19:14:48 +01001295 "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 +02001296 orig_node->orig, orig_neigh_node->orig, total_count,
Simon Wunderlichc0398762013-11-13 19:14:48 +01001297 neigh_rq_count, tq_own, tq_asym_penalty, tq_iface_penalty,
1298 batadv_ogm_packet->tq, if_incoming->net_dev->name,
1299 if_outgoing ? if_outgoing->net_dev->name : "DEFAULT");
Marek Lindnerfc957272011-07-30 12:04:12 +02001300
1301 /* if link has the minimum required transmission quality
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001302 * consider it bidirectional
1303 */
Sven Eckelmann96412692012-06-05 22:31:30 +02001304 if (batadv_ogm_packet->tq >= BATADV_TQ_TOTAL_BIDRECT_LIMIT)
Sven Eckelmann4b426b12016-02-22 21:02:39 +01001305 ret = true;
Marek Lindnerfc957272011-07-30 12:04:12 +02001306
1307out:
1308 if (neigh_node)
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001309 batadv_neigh_node_put(neigh_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001310 return ret;
1311}
1312
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001313/**
1314 * batadv_iv_ogm_update_seqnos - process a batman packet for all interfaces,
1315 * adjust the sequence number and find out whether it is a duplicate
1316 * @ethhdr: ethernet header of the packet
1317 * @batadv_ogm_packet: OGM packet to be considered
1318 * @if_incoming: interface on which the OGM packet was received
Simon Wunderlich89652332013-11-13 19:14:46 +01001319 * @if_outgoing: interface for which the retransmission should be considered
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001320 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02001321 * Return: duplicate status as enum batadv_dup_status
Marek Lindnerfc957272011-07-30 12:04:12 +02001322 */
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001323static enum batadv_dup_status
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001324batadv_iv_ogm_update_seqnos(const struct ethhdr *ethhdr,
Sven Eckelmann96412692012-06-05 22:31:30 +02001325 const struct batadv_ogm_packet *batadv_ogm_packet,
Simon Wunderlich89652332013-11-13 19:14:46 +01001326 const struct batadv_hard_iface *if_incoming,
1327 struct batadv_hard_iface *if_outgoing)
Marek Lindnerfc957272011-07-30 12:04:12 +02001328{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001329 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
1330 struct batadv_orig_node *orig_node;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001331 struct batadv_orig_ifinfo *orig_ifinfo = NULL;
Simon Wunderlich89652332013-11-13 19:14:46 +01001332 struct batadv_neigh_node *neigh_node;
1333 struct batadv_neigh_ifinfo *neigh_ifinfo;
Sven Eckelmann4b426b12016-02-22 21:02:39 +01001334 bool is_dup;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001335 s32 seq_diff;
Sven Eckelmann4b426b12016-02-22 21:02:39 +01001336 bool need_update = false;
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001337 int set_mark;
1338 enum batadv_dup_status ret = BATADV_NO_DUP;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001339 u32 seqno = ntohl(batadv_ogm_packet->seqno);
1340 u8 *neigh_addr;
1341 u8 packet_count;
Antonio Quartulli0538f752013-09-02 12:15:01 +02001342 unsigned long *bitmap;
Marek Lindnerfc957272011-07-30 12:04:12 +02001343
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001344 orig_node = batadv_iv_ogm_orig_get(bat_priv, batadv_ogm_packet->orig);
Marek Lindnerfc957272011-07-30 12:04:12 +02001345 if (!orig_node)
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001346 return BATADV_NO_DUP;
Marek Lindnerfc957272011-07-30 12:04:12 +02001347
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001348 orig_ifinfo = batadv_orig_ifinfo_new(orig_node, if_outgoing);
1349 if (WARN_ON(!orig_ifinfo)) {
Sven Eckelmann5d967312016-01-17 11:01:09 +01001350 batadv_orig_node_put(orig_node);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001351 return 0;
1352 }
1353
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001354 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001355 seq_diff = seqno - orig_ifinfo->last_real_seqno;
Marek Lindnerfc957272011-07-30 12:04:12 +02001356
1357 /* signalize caller that the packet is to be dropped. */
Antonio Quartulli1e5cc262012-02-26 15:39:42 +01001358 if (!hlist_empty(&orig_node->neigh_list) &&
Sven Eckelmann30d3c512012-05-12 02:09:36 +02001359 batadv_window_protected(bat_priv, seq_diff,
Simon Wunderlich81f02682015-11-23 19:57:22 +01001360 BATADV_TQ_LOCAL_WINDOW_SIZE,
1361 &orig_ifinfo->batman_seqno_reset, NULL)) {
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001362 ret = BATADV_PROTECTED;
Marek Lindnerfc957272011-07-30 12:04:12 +02001363 goto out;
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001364 }
Marek Lindnerfc957272011-07-30 12:04:12 +02001365
1366 rcu_read_lock();
Simon Wunderlich89652332013-11-13 19:14:46 +01001367 hlist_for_each_entry_rcu(neigh_node, &orig_node->neigh_list, list) {
1368 neigh_ifinfo = batadv_neigh_ifinfo_new(neigh_node,
1369 if_outgoing);
1370 if (!neigh_ifinfo)
1371 continue;
1372
1373 neigh_addr = neigh_node->addr;
1374 is_dup = batadv_test_bit(neigh_ifinfo->bat_iv.real_bits,
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001375 orig_ifinfo->last_real_seqno,
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001376 seqno);
1377
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001378 if (batadv_compare_eth(neigh_addr, ethhdr->h_source) &&
Simon Wunderlich89652332013-11-13 19:14:46 +01001379 neigh_node->if_incoming == if_incoming) {
Marek Lindnerfc957272011-07-30 12:04:12 +02001380 set_mark = 1;
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001381 if (is_dup)
1382 ret = BATADV_NEIGH_DUP;
1383 } else {
Marek Lindnerfc957272011-07-30 12:04:12 +02001384 set_mark = 0;
Simon Wunderlich7c24bbb2013-05-23 13:07:42 +02001385 if (is_dup && (ret != BATADV_NEIGH_DUP))
1386 ret = BATADV_ORIG_DUP;
1387 }
Marek Lindnerfc957272011-07-30 12:04:12 +02001388
1389 /* if the window moved, set the update flag. */
Simon Wunderlich89652332013-11-13 19:14:46 +01001390 bitmap = neigh_ifinfo->bat_iv.real_bits;
Antonio Quartulli0538f752013-09-02 12:15:01 +02001391 need_update |= batadv_bit_get_packet(bat_priv, bitmap,
Sven Eckelmann0f5f9322012-05-12 02:09:25 +02001392 seq_diff, set_mark);
Marek Lindnerfc957272011-07-30 12:04:12 +02001393
Simon Wunderlich89652332013-11-13 19:14:46 +01001394 packet_count = bitmap_weight(bitmap,
Sven Eckelmannbbb1f902012-07-08 17:13:15 +02001395 BATADV_TQ_LOCAL_WINDOW_SIZE);
Simon Wunderlich89652332013-11-13 19:14:46 +01001396 neigh_ifinfo->bat_iv.real_packet_count = packet_count;
Sven Eckelmann044fa3a2016-01-17 11:01:12 +01001397 batadv_neigh_ifinfo_put(neigh_ifinfo);
Marek Lindnerfc957272011-07-30 12:04:12 +02001398 }
1399 rcu_read_unlock();
1400
1401 if (need_update) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001402 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001403 "%s updating last_seqno: old %u, new %u\n",
1404 if_outgoing ? if_outgoing->net_dev->name : "DEFAULT",
1405 orig_ifinfo->last_real_seqno, seqno);
1406 orig_ifinfo->last_real_seqno = seqno;
Marek Lindnerfc957272011-07-30 12:04:12 +02001407 }
1408
Marek Lindnerfc957272011-07-30 12:04:12 +02001409out:
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001410 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
Sven Eckelmann5d967312016-01-17 11:01:09 +01001411 batadv_orig_node_put(orig_node);
Sven Eckelmann35f94772016-01-17 11:01:13 +01001412 batadv_orig_ifinfo_put(orig_ifinfo);
Marek Lindnerfc957272011-07-30 12:04:12 +02001413 return ret;
1414}
1415
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001416/**
1417 * batadv_iv_ogm_process_per_outif - process a batman iv OGM for an outgoing if
1418 * @skb: the skb containing the OGM
Martin Hundebøll95298a92014-07-15 09:41:05 +02001419 * @ogm_offset: offset from skb->data to start of ogm header
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001420 * @orig_node: the (cached) orig node for the originator of this OGM
1421 * @if_incoming: the interface where this packet was received
1422 * @if_outgoing: the interface for which the packet should be considered
1423 */
1424static void
1425batadv_iv_ogm_process_per_outif(const struct sk_buff *skb, int ogm_offset,
1426 struct batadv_orig_node *orig_node,
1427 struct batadv_hard_iface *if_incoming,
1428 struct batadv_hard_iface *if_outgoing)
1429{
1430 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
Marek Lindner4ff1e2a2015-08-04 21:09:58 +08001431 struct batadv_hardif_neigh_node *hardif_neigh = NULL;
Sven Eckelmann4f248cf2015-06-09 20:50:49 +02001432 struct batadv_neigh_node *router = NULL;
1433 struct batadv_neigh_node *router_router = NULL;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001434 struct batadv_orig_node *orig_neigh_node;
1435 struct batadv_orig_ifinfo *orig_ifinfo;
1436 struct batadv_neigh_node *orig_neigh_router = NULL;
1437 struct batadv_neigh_ifinfo *router_ifinfo = NULL;
1438 struct batadv_ogm_packet *ogm_packet;
1439 enum batadv_dup_status dup_status;
1440 bool is_from_best_next_hop = false;
1441 bool is_single_hop_neigh = false;
1442 bool sameseq, similar_ttl;
1443 struct sk_buff *skb_priv;
1444 struct ethhdr *ethhdr;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001445 u8 *prev_sender;
Sven Eckelmann4b426b12016-02-22 21:02:39 +01001446 bool is_bidirect;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001447
1448 /* create a private copy of the skb, as some functions change tq value
1449 * and/or flags.
1450 */
1451 skb_priv = skb_copy(skb, GFP_ATOMIC);
1452 if (!skb_priv)
1453 return;
1454
1455 ethhdr = eth_hdr(skb_priv);
1456 ogm_packet = (struct batadv_ogm_packet *)(skb_priv->data + ogm_offset);
1457
1458 dup_status = batadv_iv_ogm_update_seqnos(ethhdr, ogm_packet,
1459 if_incoming, if_outgoing);
1460 if (batadv_compare_eth(ethhdr->h_source, ogm_packet->orig))
1461 is_single_hop_neigh = true;
1462
1463 if (dup_status == BATADV_PROTECTED) {
1464 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1465 "Drop packet: packet within seqno protection time (sender: %pM)\n",
1466 ethhdr->h_source);
1467 goto out;
1468 }
1469
1470 if (ogm_packet->tq == 0) {
1471 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1472 "Drop packet: originator packet with tq equal 0\n");
1473 goto out;
1474 }
1475
Marek Lindner4ff1e2a2015-08-04 21:09:58 +08001476 if (is_single_hop_neigh) {
1477 hardif_neigh = batadv_hardif_neigh_get(if_incoming,
1478 ethhdr->h_source);
1479 if (hardif_neigh)
1480 hardif_neigh->last_seen = jiffies;
1481 }
1482
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001483 router = batadv_orig_router_get(orig_node, if_outgoing);
1484 if (router) {
1485 router_router = batadv_orig_router_get(router->orig_node,
1486 if_outgoing);
1487 router_ifinfo = batadv_neigh_ifinfo_get(router, if_outgoing);
1488 }
1489
1490 if ((router_ifinfo && router_ifinfo->bat_iv.tq_avg != 0) &&
1491 (batadv_compare_eth(router->addr, ethhdr->h_source)))
1492 is_from_best_next_hop = true;
1493
1494 prev_sender = ogm_packet->prev_sender;
1495 /* avoid temporary routing loops */
1496 if (router && router_router &&
1497 (batadv_compare_eth(router->addr, prev_sender)) &&
1498 !(batadv_compare_eth(ogm_packet->orig, prev_sender)) &&
1499 (batadv_compare_eth(router->addr, router_router->addr))) {
1500 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1501 "Drop packet: ignoring all rebroadcast packets that may make me loop (sender: %pM)\n",
1502 ethhdr->h_source);
1503 goto out;
1504 }
1505
1506 if (if_outgoing == BATADV_IF_DEFAULT)
1507 batadv_tvlv_ogm_receive(bat_priv, ogm_packet, orig_node);
1508
1509 /* if sender is a direct neighbor the sender mac equals
1510 * originator mac
1511 */
1512 if (is_single_hop_neigh)
1513 orig_neigh_node = orig_node;
1514 else
1515 orig_neigh_node = batadv_iv_ogm_orig_get(bat_priv,
1516 ethhdr->h_source);
1517
1518 if (!orig_neigh_node)
1519 goto out;
1520
1521 /* Update nc_nodes of the originator */
1522 batadv_nc_update_nc_node(bat_priv, orig_node, orig_neigh_node,
1523 ogm_packet, is_single_hop_neigh);
1524
1525 orig_neigh_router = batadv_orig_router_get(orig_neigh_node,
1526 if_outgoing);
1527
1528 /* drop packet if sender is not a direct neighbor and if we
1529 * don't route towards it
1530 */
1531 if (!is_single_hop_neigh && (!orig_neigh_router)) {
1532 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1533 "Drop packet: OGM via unknown neighbor!\n");
1534 goto out_neigh;
1535 }
1536
1537 is_bidirect = batadv_iv_ogm_calc_tq(orig_node, orig_neigh_node,
1538 ogm_packet, if_incoming,
1539 if_outgoing);
1540
1541 /* update ranking if it is not a duplicate or has the same
1542 * seqno and similar ttl as the non-duplicate
1543 */
1544 orig_ifinfo = batadv_orig_ifinfo_new(orig_node, if_outgoing);
1545 if (!orig_ifinfo)
1546 goto out_neigh;
1547
1548 sameseq = orig_ifinfo->last_real_seqno == ntohl(ogm_packet->seqno);
1549 similar_ttl = (orig_ifinfo->last_ttl - 3) <= ogm_packet->ttl;
1550
1551 if (is_bidirect && ((dup_status == BATADV_NO_DUP) ||
1552 (sameseq && similar_ttl))) {
1553 batadv_iv_ogm_orig_update(bat_priv, orig_node,
1554 orig_ifinfo, ethhdr,
1555 ogm_packet, if_incoming,
1556 if_outgoing, dup_status);
1557 }
Sven Eckelmann35f94772016-01-17 11:01:13 +01001558 batadv_orig_ifinfo_put(orig_ifinfo);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001559
Simon Wunderlichef0a9372013-11-13 19:14:49 +01001560 /* only forward for specific interface, not for the default one. */
1561 if (if_outgoing == BATADV_IF_DEFAULT)
1562 goto out_neigh;
1563
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001564 /* is single hop (direct) neighbor */
1565 if (is_single_hop_neigh) {
1566 /* OGMs from secondary interfaces should only scheduled once
1567 * per interface where it has been received, not multiple times
1568 */
1569 if ((ogm_packet->ttl <= 2) &&
1570 (if_incoming != if_outgoing)) {
1571 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1572 "Drop packet: OGM from secondary interface and wrong outgoing interface\n");
1573 goto out_neigh;
1574 }
1575 /* mark direct link on incoming interface */
1576 batadv_iv_ogm_forward(orig_node, ethhdr, ogm_packet,
1577 is_single_hop_neigh,
Simon Wunderlichef0a9372013-11-13 19:14:49 +01001578 is_from_best_next_hop, if_incoming,
1579 if_outgoing);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001580
1581 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1582 "Forwarding packet: rebroadcast neighbor packet with direct link flag\n");
1583 goto out_neigh;
1584 }
1585
1586 /* multihop originator */
1587 if (!is_bidirect) {
1588 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1589 "Drop packet: not received via bidirectional link\n");
1590 goto out_neigh;
1591 }
1592
1593 if (dup_status == BATADV_NEIGH_DUP) {
1594 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1595 "Drop packet: duplicate packet received\n");
1596 goto out_neigh;
1597 }
1598
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001599 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1600 "Forwarding packet: rebroadcast originator packet\n");
1601 batadv_iv_ogm_forward(orig_node, ethhdr, ogm_packet,
1602 is_single_hop_neigh, is_from_best_next_hop,
Simon Wunderlichef0a9372013-11-13 19:14:49 +01001603 if_incoming, if_outgoing);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001604
1605out_neigh:
1606 if ((orig_neigh_node) && (!is_single_hop_neigh))
Sven Eckelmann5d967312016-01-17 11:01:09 +01001607 batadv_orig_node_put(orig_neigh_node);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001608out:
Simon Wunderlichc1e517f2014-03-26 15:46:21 +01001609 if (router_ifinfo)
Sven Eckelmann044fa3a2016-01-17 11:01:12 +01001610 batadv_neigh_ifinfo_put(router_ifinfo);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001611 if (router)
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001612 batadv_neigh_node_put(router);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001613 if (router_router)
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001614 batadv_neigh_node_put(router_router);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001615 if (orig_neigh_router)
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001616 batadv_neigh_node_put(orig_neigh_router);
Marek Lindner4ff1e2a2015-08-04 21:09:58 +08001617 if (hardif_neigh)
Sven Eckelmannaccadc32016-01-17 11:01:14 +01001618 batadv_hardif_neigh_put(hardif_neigh);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001619
1620 kfree_skb(skb_priv);
1621}
1622
1623/**
1624 * batadv_iv_ogm_process - process an incoming batman iv OGM
1625 * @skb: the skb containing the OGM
1626 * @ogm_offset: offset to the OGM which should be processed (for aggregates)
1627 * @if_incoming: the interface where this packet was receved
1628 */
1629static void batadv_iv_ogm_process(const struct sk_buff *skb, int ogm_offset,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001630 struct batadv_hard_iface *if_incoming)
Marek Lindnerfc957272011-07-30 12:04:12 +02001631{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001632 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001633 struct batadv_orig_node *orig_neigh_node, *orig_node;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001634 struct batadv_hard_iface *hard_iface;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001635 struct batadv_ogm_packet *ogm_packet;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001636 u32 if_incoming_seqno;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001637 bool has_directlink_flag;
1638 struct ethhdr *ethhdr;
1639 bool is_my_oldorig = false;
1640 bool is_my_addr = false;
1641 bool is_my_orig = false;
1642
1643 ogm_packet = (struct batadv_ogm_packet *)(skb->data + ogm_offset);
1644 ethhdr = eth_hdr(skb);
Marek Lindnerfc957272011-07-30 12:04:12 +02001645
1646 /* Silently drop when the batman packet is actually not a
1647 * correct packet.
1648 *
1649 * This might happen if a packet is padded (e.g. Ethernet has a
1650 * minimum frame length of 64 byte) and the aggregation interprets
1651 * it as an additional length.
1652 *
1653 * TODO: A more sane solution would be to have a bit in the
Sven Eckelmann96412692012-06-05 22:31:30 +02001654 * batadv_ogm_packet to detect whether the packet is the last
Marek Lindnerfc957272011-07-30 12:04:12 +02001655 * packet in an aggregation. Here we expect that the padding
1656 * is always zero (or not 0x01)
1657 */
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001658 if (ogm_packet->packet_type != BATADV_IV_OGM)
Marek Lindnerfc957272011-07-30 12:04:12 +02001659 return;
1660
1661 /* could be changed by schedule_own_packet() */
Marek Lindner14511512012-08-02 17:20:26 +02001662 if_incoming_seqno = atomic_read(&if_incoming->bat_iv.ogm_seqno);
Marek Lindnerfc957272011-07-30 12:04:12 +02001663
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001664 if (ogm_packet->flags & BATADV_DIRECTLINK)
1665 has_directlink_flag = true;
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001666 else
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001667 has_directlink_flag = false;
Marek Lindnerfc957272011-07-30 12:04:12 +02001668
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001669 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Marek Lindnere1bf0c12013-04-23 21:40:01 +08001670 "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 +02001671 ethhdr->h_source, if_incoming->net_dev->name,
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001672 if_incoming->net_dev->dev_addr, ogm_packet->orig,
1673 ogm_packet->prev_sender, ntohl(ogm_packet->seqno),
1674 ogm_packet->tq, ogm_packet->ttl,
1675 ogm_packet->version, has_directlink_flag);
Marek Lindnerfc957272011-07-30 12:04:12 +02001676
1677 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +02001678 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Sven Eckelmanne9a4f292012-06-03 22:19:19 +02001679 if (hard_iface->if_status != BATADV_IF_ACTIVE)
Marek Lindnerfc957272011-07-30 12:04:12 +02001680 continue;
1681
1682 if (hard_iface->soft_iface != if_incoming->soft_iface)
1683 continue;
1684
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001685 if (batadv_compare_eth(ethhdr->h_source,
1686 hard_iface->net_dev->dev_addr))
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001687 is_my_addr = true;
Marek Lindnerfc957272011-07-30 12:04:12 +02001688
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001689 if (batadv_compare_eth(ogm_packet->orig,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001690 hard_iface->net_dev->dev_addr))
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001691 is_my_orig = true;
Marek Lindnerfc957272011-07-30 12:04:12 +02001692
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001693 if (batadv_compare_eth(ogm_packet->prev_sender,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001694 hard_iface->net_dev->dev_addr))
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001695 is_my_oldorig = true;
Marek Lindnerfc957272011-07-30 12:04:12 +02001696 }
1697 rcu_read_unlock();
1698
Marek Lindnerfc957272011-07-30 12:04:12 +02001699 if (is_my_addr) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001700 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001701 "Drop packet: received my own broadcast (sender: %pM)\n",
1702 ethhdr->h_source);
Marek Lindnerfc957272011-07-30 12:04:12 +02001703 return;
1704 }
1705
Marek Lindnerfc957272011-07-30 12:04:12 +02001706 if (is_my_orig) {
1707 unsigned long *word;
1708 int offset;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001709 s32 bit_pos;
1710 s16 if_num;
1711 u8 *weight;
Marek Lindnerfc957272011-07-30 12:04:12 +02001712
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001713 orig_neigh_node = batadv_iv_ogm_orig_get(bat_priv,
1714 ethhdr->h_source);
Marek Lindnerfc957272011-07-30 12:04:12 +02001715 if (!orig_neigh_node)
1716 return;
1717
1718 /* neighbor has to indicate direct link and it has to
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001719 * come via the corresponding interface
1720 * save packet seqno for bidirectional check
1721 */
Marek Lindnerfc957272011-07-30 12:04:12 +02001722 if (has_directlink_flag &&
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001723 batadv_compare_eth(if_incoming->net_dev->dev_addr,
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001724 ogm_packet->orig)) {
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001725 if_num = if_incoming->if_num;
1726 offset = if_num * BATADV_NUM_WORDS;
Marek Lindnerfc957272011-07-30 12:04:12 +02001727
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001728 spin_lock_bh(&orig_neigh_node->bat_iv.ogm_cnt_lock);
Antonio Quartulli32db6aa2014-09-01 14:37:29 +02001729 word = &orig_neigh_node->bat_iv.bcast_own[offset];
Sven Eckelmann9b4a1152012-05-12 13:48:53 +02001730 bit_pos = if_incoming_seqno - 2;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001731 bit_pos -= ntohl(ogm_packet->seqno);
Sven Eckelmann9b4a1152012-05-12 13:48:53 +02001732 batadv_set_bit(word, bit_pos);
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001733 weight = &orig_neigh_node->bat_iv.bcast_own_sum[if_num];
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001734 *weight = bitmap_weight(word,
1735 BATADV_TQ_LOCAL_WINDOW_SIZE);
Antonio Quartullibbad0a52013-09-02 12:15:02 +02001736 spin_unlock_bh(&orig_neigh_node->bat_iv.ogm_cnt_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +02001737 }
1738
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001739 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001740 "Drop packet: originator packet from myself (via neighbor)\n");
Sven Eckelmann5d967312016-01-17 11:01:09 +01001741 batadv_orig_node_put(orig_neigh_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001742 return;
1743 }
1744
1745 if (is_my_oldorig) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001746 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001747 "Drop packet: ignoring all rebroadcast echos (sender: %pM)\n",
1748 ethhdr->h_source);
Marek Lindnerfc957272011-07-30 12:04:12 +02001749 return;
1750 }
1751
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001752 if (ogm_packet->flags & BATADV_NOT_BEST_NEXT_HOP) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001753 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001754 "Drop packet: ignoring all packets not forwarded from the best next hop (sender: %pM)\n",
1755 ethhdr->h_source);
Marek Lindner13b25412012-03-11 06:17:53 +08001756 return;
1757 }
1758
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001759 orig_node = batadv_iv_ogm_orig_get(bat_priv, ogm_packet->orig);
Marek Lindnerfc957272011-07-30 12:04:12 +02001760 if (!orig_node)
1761 return;
1762
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001763 batadv_iv_ogm_process_per_outif(skb, ogm_offset, orig_node,
1764 if_incoming, BATADV_IF_DEFAULT);
Marek Lindnerfc957272011-07-30 12:04:12 +02001765
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001766 rcu_read_lock();
1767 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
1768 if (hard_iface->if_status != BATADV_IF_ACTIVE)
1769 continue;
1770
1771 if (hard_iface->soft_iface != bat_priv->soft_iface)
1772 continue;
1773
Sven Eckelmann27353442016-03-05 16:09:16 +01001774 if (!kref_get_unless_zero(&hard_iface->refcount))
1775 continue;
1776
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001777 batadv_iv_ogm_process_per_outif(skb, ogm_offset, orig_node,
1778 if_incoming, hard_iface);
Sven Eckelmann27353442016-03-05 16:09:16 +01001779
1780 batadv_hardif_put(hard_iface);
Marek Lindnerfc957272011-07-30 12:04:12 +02001781 }
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001782 rcu_read_unlock();
Marek Lindnerfc957272011-07-30 12:04:12 +02001783
Sven Eckelmann5d967312016-01-17 11:01:09 +01001784 batadv_orig_node_put(orig_node);
Marek Lindnerfc957272011-07-30 12:04:12 +02001785}
1786
Antonio Quartullif0d97252016-05-03 01:45:34 +08001787static void batadv_iv_send_outstanding_bat_ogm_packet(struct work_struct *work)
1788{
1789 struct delayed_work *delayed_work;
1790 struct batadv_forw_packet *forw_packet;
1791 struct batadv_priv *bat_priv;
1792
1793 delayed_work = to_delayed_work(work);
1794 forw_packet = container_of(delayed_work, struct batadv_forw_packet,
1795 delayed_work);
1796 bat_priv = netdev_priv(forw_packet->if_incoming->soft_iface);
1797 spin_lock_bh(&bat_priv->forw_bat_list_lock);
1798 hlist_del(&forw_packet->list);
1799 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
1800
1801 if (atomic_read(&bat_priv->mesh_state) == BATADV_MESH_DEACTIVATING)
1802 goto out;
1803
1804 batadv_iv_ogm_emit(forw_packet);
1805
1806 /* we have to have at least one packet in the queue to determine the
1807 * queues wake up time unless we are shutting down.
1808 *
1809 * only re-schedule if this is the "original" copy, e.g. the OGM of the
1810 * primary interface should only be rescheduled once per period, but
1811 * this function will be called for the forw_packet instances of the
1812 * other secondary interfaces as well.
1813 */
1814 if (forw_packet->own &&
1815 forw_packet->if_incoming == forw_packet->if_outgoing)
1816 batadv_iv_ogm_schedule(forw_packet->if_incoming);
1817
1818out:
Antonio Quartullif0d97252016-05-03 01:45:34 +08001819 batadv_forw_packet_free(forw_packet);
1820}
1821
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02001822static int batadv_iv_ogm_receive(struct sk_buff *skb,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001823 struct batadv_hard_iface *if_incoming)
Marek Lindnerfc957272011-07-30 12:04:12 +02001824{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001825 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001826 struct batadv_ogm_packet *ogm_packet;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001827 u8 *packet_pos;
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001828 int ogm_offset;
Marek Lindneref261572013-04-23 21:39:57 +08001829 bool ret;
Marek Lindnerc3e29312012-03-04 16:56:25 +08001830
Sven Eckelmann7e071c72012-06-03 22:19:13 +02001831 ret = batadv_check_management_packet(skb, if_incoming, BATADV_OGM_HLEN);
Marek Lindnerc3e29312012-03-04 16:56:25 +08001832 if (!ret)
1833 return NET_RX_DROP;
Marek Lindnerfc957272011-07-30 12:04:12 +02001834
Marek Lindneredbf12b2012-03-11 06:17:49 +08001835 /* did we receive a B.A.T.M.A.N. IV OGM packet on an interface
1836 * that does not have B.A.T.M.A.N. IV enabled ?
1837 */
Antonio Quartulli29824a52016-05-25 23:27:31 +08001838 if (bat_priv->algo_ops->iface.enable != batadv_iv_ogm_iface_enable)
Marek Lindneredbf12b2012-03-11 06:17:49 +08001839 return NET_RX_DROP;
1840
Sven Eckelmannd69909d2012-06-03 22:19:20 +02001841 batadv_inc_counter(bat_priv, BATADV_CNT_MGMT_RX);
1842 batadv_add_counter(bat_priv, BATADV_CNT_MGMT_RX_BYTES,
Martin Hundebøllf8214862012-04-20 17:02:45 +02001843 skb->len + ETH_HLEN);
1844
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001845 ogm_offset = 0;
1846 ogm_packet = (struct batadv_ogm_packet *)skb->data;
Marek Lindnerfc957272011-07-30 12:04:12 +02001847
1848 /* unpack the aggregated packets and process them one by one */
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001849 while (batadv_iv_ogm_aggr_packet(ogm_offset, skb_headlen(skb),
Sven Eckelmann6c59cb12019-08-22 08:55:36 +02001850 ogm_packet)) {
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001851 batadv_iv_ogm_process(skb, ogm_offset, if_incoming);
Marek Lindnerfc957272011-07-30 12:04:12 +02001852
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001853 ogm_offset += BATADV_OGM_HLEN;
1854 ogm_offset += ntohs(ogm_packet->tvlv_len);
Marek Lindnerfc957272011-07-30 12:04:12 +02001855
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001856 packet_pos = skb->data + ogm_offset;
1857 ogm_packet = (struct batadv_ogm_packet *)packet_pos;
Marek Lindnerb47506d2013-03-04 10:39:49 +08001858 }
Marek Lindnerc3e29312012-03-04 16:56:25 +08001859
1860 kfree_skb(skb);
1861 return NET_RX_SUCCESS;
Marek Lindnerfc957272011-07-30 12:04:12 +02001862}
Marek Lindner1c280472011-11-28 17:40:17 +08001863
Sven Eckelmanndc1cbd12016-07-16 09:31:20 +02001864#ifdef CONFIG_BATMAN_ADV_DEBUGFS
Simon Wunderlich1b371d12014-01-15 21:17:54 +01001865/**
1866 * batadv_iv_ogm_orig_print_neigh - print neighbors for the originator table
Simon Wunderlich89652332013-11-13 19:14:46 +01001867 * @orig_node: the orig_node for which the neighbors are printed
1868 * @if_outgoing: outgoing interface for these entries
1869 * @seq: debugfs table seq_file struct
1870 *
1871 * Must be called while holding an rcu lock.
1872 */
1873static void
1874batadv_iv_ogm_orig_print_neigh(struct batadv_orig_node *orig_node,
1875 struct batadv_hard_iface *if_outgoing,
1876 struct seq_file *seq)
1877{
1878 struct batadv_neigh_node *neigh_node;
1879 struct batadv_neigh_ifinfo *n_ifinfo;
1880
1881 hlist_for_each_entry_rcu(neigh_node, &orig_node->neigh_list, list) {
1882 n_ifinfo = batadv_neigh_ifinfo_get(neigh_node, if_outgoing);
1883 if (!n_ifinfo)
1884 continue;
1885
1886 seq_printf(seq, " %pM (%3i)",
1887 neigh_node->addr,
1888 n_ifinfo->bat_iv.tq_avg);
1889
Sven Eckelmann044fa3a2016-01-17 11:01:12 +01001890 batadv_neigh_ifinfo_put(n_ifinfo);
Simon Wunderlich89652332013-11-13 19:14:46 +01001891 }
1892}
1893
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001894/**
1895 * batadv_iv_ogm_orig_print - print the originator table
1896 * @bat_priv: the bat priv with all the soft interface information
1897 * @seq: debugfs table seq_file struct
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +01001898 * @if_outgoing: the outgoing interface for which this should be printed
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001899 */
1900static void batadv_iv_ogm_orig_print(struct batadv_priv *bat_priv,
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +01001901 struct seq_file *seq,
1902 struct batadv_hard_iface *if_outgoing)
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001903{
Simon Wunderlich89652332013-11-13 19:14:46 +01001904 struct batadv_neigh_node *neigh_node;
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001905 struct batadv_hashtable *hash = bat_priv->orig_hash;
1906 int last_seen_msecs, last_seen_secs;
1907 struct batadv_orig_node *orig_node;
Simon Wunderlich89652332013-11-13 19:14:46 +01001908 struct batadv_neigh_ifinfo *n_ifinfo;
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001909 unsigned long last_seen_jiffies;
1910 struct hlist_head *head;
1911 int batman_count = 0;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001912 u32 i;
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001913
Antonio Quartulli925a6f32016-03-12 10:30:18 +01001914 seq_puts(seq,
1915 " Originator last-seen (#/255) Nexthop [outgoingIF]: Potential nexthops ...\n");
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001916
1917 for (i = 0; i < hash->size; i++) {
1918 head = &hash->table[i];
1919
1920 rcu_read_lock();
1921 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
Simon Wunderlich7351a4822013-11-13 19:14:47 +01001922 neigh_node = batadv_orig_router_get(orig_node,
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +01001923 if_outgoing);
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001924 if (!neigh_node)
1925 continue;
1926
Simon Wunderlich89652332013-11-13 19:14:46 +01001927 n_ifinfo = batadv_neigh_ifinfo_get(neigh_node,
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +01001928 if_outgoing);
Simon Wunderlich89652332013-11-13 19:14:46 +01001929 if (!n_ifinfo)
1930 goto next;
1931
1932 if (n_ifinfo->bat_iv.tq_avg == 0)
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001933 goto next;
1934
1935 last_seen_jiffies = jiffies - orig_node->last_seen;
1936 last_seen_msecs = jiffies_to_msecs(last_seen_jiffies);
1937 last_seen_secs = last_seen_msecs / 1000;
1938 last_seen_msecs = last_seen_msecs % 1000;
1939
1940 seq_printf(seq, "%pM %4i.%03is (%3i) %pM [%10s]:",
1941 orig_node->orig, last_seen_secs,
Simon Wunderlich89652332013-11-13 19:14:46 +01001942 last_seen_msecs, n_ifinfo->bat_iv.tq_avg,
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001943 neigh_node->addr,
1944 neigh_node->if_incoming->net_dev->name);
1945
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +01001946 batadv_iv_ogm_orig_print_neigh(orig_node, if_outgoing,
1947 seq);
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001948 seq_puts(seq, "\n");
1949 batman_count++;
1950
1951next:
Sven Eckelmann25bb2502016-01-17 11:01:11 +01001952 batadv_neigh_node_put(neigh_node);
Simon Wunderlich89652332013-11-13 19:14:46 +01001953 if (n_ifinfo)
Sven Eckelmann044fa3a2016-01-17 11:01:12 +01001954 batadv_neigh_ifinfo_put(n_ifinfo);
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001955 }
1956 rcu_read_unlock();
1957 }
1958
1959 if (batman_count == 0)
1960 seq_puts(seq, "No batman nodes in range ...\n");
1961}
Sven Eckelmanndc1cbd12016-07-16 09:31:20 +02001962#endif
Antonio Quartulli737a2a222013-09-02 12:15:03 +02001963
Antonio Quartullia3285a82013-09-02 12:15:04 +02001964/**
Matthias Schiffer024f99c2016-07-03 13:31:40 +02001965 * batadv_iv_ogm_neigh_get_tq_avg - Get the TQ average for a neighbour on a
1966 * given outgoing interface.
1967 * @neigh_node: Neighbour of interest
1968 * @if_outgoing: Outgoing interface of interest
1969 * @tq_avg: Pointer of where to store the TQ average
1970 *
1971 * Return: False if no average TQ available, otherwise true.
1972 */
1973static bool
1974batadv_iv_ogm_neigh_get_tq_avg(struct batadv_neigh_node *neigh_node,
1975 struct batadv_hard_iface *if_outgoing,
1976 u8 *tq_avg)
1977{
1978 struct batadv_neigh_ifinfo *n_ifinfo;
1979
1980 n_ifinfo = batadv_neigh_ifinfo_get(neigh_node, if_outgoing);
1981 if (!n_ifinfo)
1982 return false;
1983
1984 *tq_avg = n_ifinfo->bat_iv.tq_avg;
1985 batadv_neigh_ifinfo_put(n_ifinfo);
1986
1987 return true;
1988}
1989
1990/**
1991 * batadv_iv_ogm_orig_dump_subentry - Dump an originator subentry into a
1992 * message
1993 * @msg: Netlink message to dump into
1994 * @portid: Port making netlink request
1995 * @seq: Sequence number of netlink message
1996 * @bat_priv: The bat priv with all the soft interface information
1997 * @if_outgoing: Limit dump to entries with this outgoing interface
1998 * @orig_node: Originator to dump
1999 * @neigh_node: Single hops neighbour
2000 * @best: Is the best originator
2001 *
2002 * Return: Error code, or 0 on success
2003 */
2004static int
2005batadv_iv_ogm_orig_dump_subentry(struct sk_buff *msg, u32 portid, u32 seq,
2006 struct batadv_priv *bat_priv,
2007 struct batadv_hard_iface *if_outgoing,
2008 struct batadv_orig_node *orig_node,
2009 struct batadv_neigh_node *neigh_node,
2010 bool best)
2011{
2012 void *hdr;
2013 u8 tq_avg;
2014 unsigned int last_seen_msecs;
2015
2016 last_seen_msecs = jiffies_to_msecs(jiffies - orig_node->last_seen);
2017
2018 if (!batadv_iv_ogm_neigh_get_tq_avg(neigh_node, if_outgoing, &tq_avg))
2019 return 0;
2020
2021 if (if_outgoing != BATADV_IF_DEFAULT &&
2022 if_outgoing != neigh_node->if_incoming)
2023 return 0;
2024
2025 hdr = genlmsg_put(msg, portid, seq, &batadv_netlink_family,
2026 NLM_F_MULTI, BATADV_CMD_GET_ORIGINATORS);
2027 if (!hdr)
2028 return -ENOBUFS;
2029
2030 if (nla_put(msg, BATADV_ATTR_ORIG_ADDRESS, ETH_ALEN,
2031 orig_node->orig) ||
2032 nla_put(msg, BATADV_ATTR_NEIGH_ADDRESS, ETH_ALEN,
2033 neigh_node->addr) ||
2034 nla_put_u32(msg, BATADV_ATTR_HARD_IFINDEX,
2035 neigh_node->if_incoming->net_dev->ifindex) ||
2036 nla_put_u8(msg, BATADV_ATTR_TQ, tq_avg) ||
2037 nla_put_u32(msg, BATADV_ATTR_LAST_SEEN_MSECS,
2038 last_seen_msecs))
2039 goto nla_put_failure;
2040
2041 if (best && nla_put_flag(msg, BATADV_ATTR_FLAG_BEST))
2042 goto nla_put_failure;
2043
2044 genlmsg_end(msg, hdr);
2045 return 0;
2046
2047 nla_put_failure:
2048 genlmsg_cancel(msg, hdr);
2049 return -EMSGSIZE;
2050}
2051
2052/**
2053 * batadv_iv_ogm_orig_dump_entry - Dump an originator entry into a message
2054 * @msg: Netlink message to dump into
2055 * @portid: Port making netlink request
2056 * @seq: Sequence number of netlink message
2057 * @bat_priv: The bat priv with all the soft interface information
2058 * @if_outgoing: Limit dump to entries with this outgoing interface
2059 * @orig_node: Originator to dump
2060 * @sub_s: Number of sub entries to skip
2061 *
2062 * This function assumes the caller holds rcu_read_lock().
2063 *
2064 * Return: Error code, or 0 on success
2065 */
2066static int
2067batadv_iv_ogm_orig_dump_entry(struct sk_buff *msg, u32 portid, u32 seq,
2068 struct batadv_priv *bat_priv,
2069 struct batadv_hard_iface *if_outgoing,
2070 struct batadv_orig_node *orig_node, int *sub_s)
2071{
2072 struct batadv_neigh_node *neigh_node_best;
2073 struct batadv_neigh_node *neigh_node;
2074 int sub = 0;
2075 bool best;
2076 u8 tq_avg_best;
2077
2078 neigh_node_best = batadv_orig_router_get(orig_node, if_outgoing);
2079 if (!neigh_node_best)
2080 goto out;
2081
2082 if (!batadv_iv_ogm_neigh_get_tq_avg(neigh_node_best, if_outgoing,
2083 &tq_avg_best))
2084 goto out;
2085
2086 if (tq_avg_best == 0)
2087 goto out;
2088
2089 hlist_for_each_entry_rcu(neigh_node, &orig_node->neigh_list, list) {
2090 if (sub++ < *sub_s)
2091 continue;
2092
2093 best = (neigh_node == neigh_node_best);
2094
2095 if (batadv_iv_ogm_orig_dump_subentry(msg, portid, seq,
2096 bat_priv, if_outgoing,
2097 orig_node, neigh_node,
2098 best)) {
2099 batadv_neigh_node_put(neigh_node_best);
2100
2101 *sub_s = sub - 1;
2102 return -EMSGSIZE;
2103 }
2104 }
2105
2106 out:
2107 if (neigh_node_best)
2108 batadv_neigh_node_put(neigh_node_best);
2109
2110 *sub_s = 0;
2111 return 0;
2112}
2113
2114/**
2115 * batadv_iv_ogm_orig_dump_bucket - Dump an originator bucket into a
2116 * message
2117 * @msg: Netlink message to dump into
2118 * @portid: Port making netlink request
2119 * @seq: Sequence number of netlink message
2120 * @bat_priv: The bat priv with all the soft interface information
2121 * @if_outgoing: Limit dump to entries with this outgoing interface
2122 * @head: Bucket to be dumped
2123 * @idx_s: Number of entries to be skipped
2124 * @sub: Number of sub entries to be skipped
2125 *
2126 * Return: Error code, or 0 on success
2127 */
2128static int
2129batadv_iv_ogm_orig_dump_bucket(struct sk_buff *msg, u32 portid, u32 seq,
2130 struct batadv_priv *bat_priv,
2131 struct batadv_hard_iface *if_outgoing,
2132 struct hlist_head *head, int *idx_s, int *sub)
2133{
2134 struct batadv_orig_node *orig_node;
2135 int idx = 0;
2136
2137 rcu_read_lock();
2138 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
2139 if (idx++ < *idx_s)
2140 continue;
2141
2142 if (batadv_iv_ogm_orig_dump_entry(msg, portid, seq, bat_priv,
2143 if_outgoing, orig_node,
2144 sub)) {
2145 rcu_read_unlock();
2146 *idx_s = idx - 1;
2147 return -EMSGSIZE;
2148 }
2149 }
2150 rcu_read_unlock();
2151
2152 *idx_s = 0;
2153 *sub = 0;
2154 return 0;
2155}
2156
2157/**
2158 * batadv_iv_ogm_orig_dump - Dump the originators into a message
2159 * @msg: Netlink message to dump into
2160 * @cb: Control block containing additional options
2161 * @bat_priv: The bat priv with all the soft interface information
2162 * @if_outgoing: Limit dump to entries with this outgoing interface
2163 */
2164static void
2165batadv_iv_ogm_orig_dump(struct sk_buff *msg, struct netlink_callback *cb,
2166 struct batadv_priv *bat_priv,
2167 struct batadv_hard_iface *if_outgoing)
2168{
2169 struct batadv_hashtable *hash = bat_priv->orig_hash;
2170 struct hlist_head *head;
2171 int bucket = cb->args[0];
2172 int idx = cb->args[1];
2173 int sub = cb->args[2];
2174 int portid = NETLINK_CB(cb->skb).portid;
2175
2176 while (bucket < hash->size) {
2177 head = &hash->table[bucket];
2178
2179 if (batadv_iv_ogm_orig_dump_bucket(msg, portid,
2180 cb->nlh->nlmsg_seq,
2181 bat_priv, if_outgoing, head,
2182 &idx, &sub))
2183 break;
2184
2185 bucket++;
2186 }
2187
2188 cb->args[0] = bucket;
2189 cb->args[1] = idx;
2190 cb->args[2] = sub;
2191}
2192
Sven Eckelmanndc1cbd12016-07-16 09:31:20 +02002193#ifdef CONFIG_BATMAN_ADV_DEBUGFS
Matthias Schiffer024f99c2016-07-03 13:31:40 +02002194/**
Marek Lindner75874052015-08-04 21:09:57 +08002195 * batadv_iv_hardif_neigh_print - print a single hop neighbour node
2196 * @seq: neighbour table seq_file struct
2197 * @hardif_neigh: hardif neighbour information
2198 */
2199static void
2200batadv_iv_hardif_neigh_print(struct seq_file *seq,
2201 struct batadv_hardif_neigh_node *hardif_neigh)
2202{
2203 int last_secs, last_msecs;
2204
2205 last_secs = jiffies_to_msecs(jiffies - hardif_neigh->last_seen) / 1000;
2206 last_msecs = jiffies_to_msecs(jiffies - hardif_neigh->last_seen) % 1000;
2207
2208 seq_printf(seq, " %10s %pM %4i.%03is\n",
2209 hardif_neigh->if_incoming->net_dev->name,
2210 hardif_neigh->addr, last_secs, last_msecs);
2211}
2212
2213/**
2214 * batadv_iv_ogm_neigh_print - print the single hop neighbour list
2215 * @bat_priv: the bat priv with all the soft interface information
2216 * @seq: neighbour table seq_file struct
2217 */
2218static void batadv_iv_neigh_print(struct batadv_priv *bat_priv,
2219 struct seq_file *seq)
2220{
2221 struct net_device *net_dev = (struct net_device *)seq->private;
2222 struct batadv_hardif_neigh_node *hardif_neigh;
2223 struct batadv_hard_iface *hard_iface;
2224 int batman_count = 0;
2225
Antonio Quartulli925a6f32016-03-12 10:30:18 +01002226 seq_puts(seq, " IF Neighbor last-seen\n");
Marek Lindner75874052015-08-04 21:09:57 +08002227
2228 rcu_read_lock();
2229 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
2230 if (hard_iface->soft_iface != net_dev)
2231 continue;
2232
2233 hlist_for_each_entry_rcu(hardif_neigh,
2234 &hard_iface->neigh_list, list) {
2235 batadv_iv_hardif_neigh_print(seq, hardif_neigh);
2236 batman_count++;
2237 }
2238 }
2239 rcu_read_unlock();
2240
2241 if (batman_count == 0)
2242 seq_puts(seq, "No batman nodes in range ...\n");
2243}
Sven Eckelmanndc1cbd12016-07-16 09:31:20 +02002244#endif
Marek Lindner75874052015-08-04 21:09:57 +08002245
2246/**
Markus Pargmann57b12502016-07-03 11:07:14 +02002247 * batadv_iv_ogm_neigh_diff - calculate tq difference of two neighbors
2248 * @neigh1: the first neighbor object of the comparison
2249 * @if_outgoing1: outgoing interface for the first neighbor
2250 * @neigh2: the second neighbor object of the comparison
2251 * @if_outgoing2: outgoing interface for the second neighbor
2252 * @diff: pointer to integer receiving the calculated difference
2253 *
2254 * The content of *@diff is only valid when this function returns true.
2255 * It is less, equal to or greater than 0 if the metric via neigh1 is lower,
2256 * the same as or higher than the metric via neigh2
2257 *
2258 * Return: true when the difference could be calculated, false otherwise
2259 */
2260static bool batadv_iv_ogm_neigh_diff(struct batadv_neigh_node *neigh1,
2261 struct batadv_hard_iface *if_outgoing1,
2262 struct batadv_neigh_node *neigh2,
2263 struct batadv_hard_iface *if_outgoing2,
2264 int *diff)
2265{
2266 struct batadv_neigh_ifinfo *neigh1_ifinfo, *neigh2_ifinfo;
2267 u8 tq1, tq2;
2268 bool ret = true;
2269
2270 neigh1_ifinfo = batadv_neigh_ifinfo_get(neigh1, if_outgoing1);
2271 neigh2_ifinfo = batadv_neigh_ifinfo_get(neigh2, if_outgoing2);
2272
2273 if (!neigh1_ifinfo || !neigh2_ifinfo) {
2274 ret = false;
2275 goto out;
2276 }
2277
2278 tq1 = neigh1_ifinfo->bat_iv.tq_avg;
2279 tq2 = neigh2_ifinfo->bat_iv.tq_avg;
2280 *diff = (int)tq1 - (int)tq2;
2281
2282out:
2283 if (neigh1_ifinfo)
2284 batadv_neigh_ifinfo_put(neigh1_ifinfo);
2285 if (neigh2_ifinfo)
2286 batadv_neigh_ifinfo_put(neigh2_ifinfo);
2287
2288 return ret;
2289}
2290
2291/**
Matthias Schiffer024f99c2016-07-03 13:31:40 +02002292 * batadv_iv_ogm_neigh_dump_neigh - Dump a neighbour into a netlink message
2293 * @msg: Netlink message to dump into
2294 * @portid: Port making netlink request
2295 * @seq: Sequence number of netlink message
2296 * @hardif_neigh: Neighbour to be dumped
2297 *
2298 * Return: Error code, or 0 on success
2299 */
2300static int
2301batadv_iv_ogm_neigh_dump_neigh(struct sk_buff *msg, u32 portid, u32 seq,
2302 struct batadv_hardif_neigh_node *hardif_neigh)
2303{
2304 void *hdr;
2305 unsigned int last_seen_msecs;
2306
2307 last_seen_msecs = jiffies_to_msecs(jiffies - hardif_neigh->last_seen);
2308
2309 hdr = genlmsg_put(msg, portid, seq, &batadv_netlink_family,
2310 NLM_F_MULTI, BATADV_CMD_GET_NEIGHBORS);
2311 if (!hdr)
2312 return -ENOBUFS;
2313
2314 if (nla_put(msg, BATADV_ATTR_NEIGH_ADDRESS, ETH_ALEN,
2315 hardif_neigh->addr) ||
2316 nla_put_u32(msg, BATADV_ATTR_HARD_IFINDEX,
2317 hardif_neigh->if_incoming->net_dev->ifindex) ||
2318 nla_put_u32(msg, BATADV_ATTR_LAST_SEEN_MSECS,
2319 last_seen_msecs))
2320 goto nla_put_failure;
2321
2322 genlmsg_end(msg, hdr);
2323 return 0;
2324
2325 nla_put_failure:
2326 genlmsg_cancel(msg, hdr);
2327 return -EMSGSIZE;
2328}
2329
2330/**
2331 * batadv_iv_ogm_neigh_dump_hardif - Dump the neighbours of a hard interface
2332 * into a message
2333 * @msg: Netlink message to dump into
2334 * @portid: Port making netlink request
2335 * @seq: Sequence number of netlink message
2336 * @bat_priv: The bat priv with all the soft interface information
2337 * @hard_iface: Hard interface to dump the neighbours for
2338 * @idx_s: Number of entries to skip
2339 *
2340 * This function assumes the caller holds rcu_read_lock().
2341 *
2342 * Return: Error code, or 0 on success
2343 */
2344static int
2345batadv_iv_ogm_neigh_dump_hardif(struct sk_buff *msg, u32 portid, u32 seq,
2346 struct batadv_priv *bat_priv,
2347 struct batadv_hard_iface *hard_iface,
2348 int *idx_s)
2349{
2350 struct batadv_hardif_neigh_node *hardif_neigh;
2351 int idx = 0;
2352
2353 hlist_for_each_entry_rcu(hardif_neigh,
2354 &hard_iface->neigh_list, list) {
2355 if (idx++ < *idx_s)
2356 continue;
2357
2358 if (batadv_iv_ogm_neigh_dump_neigh(msg, portid, seq,
2359 hardif_neigh)) {
2360 *idx_s = idx - 1;
2361 return -EMSGSIZE;
2362 }
2363 }
2364
2365 *idx_s = 0;
2366 return 0;
2367}
2368
2369/**
2370 * batadv_iv_ogm_neigh_dump - Dump the neighbours into a message
2371 * @msg: Netlink message to dump into
2372 * @cb: Control block containing additional options
2373 * @bat_priv: The bat priv with all the soft interface information
2374 * @single_hardif: Limit dump to this hard interfaace
2375 */
2376static void
2377batadv_iv_ogm_neigh_dump(struct sk_buff *msg, struct netlink_callback *cb,
2378 struct batadv_priv *bat_priv,
2379 struct batadv_hard_iface *single_hardif)
2380{
2381 struct batadv_hard_iface *hard_iface;
2382 int i_hardif = 0;
2383 int i_hardif_s = cb->args[0];
2384 int idx = cb->args[1];
2385 int portid = NETLINK_CB(cb->skb).portid;
2386
2387 rcu_read_lock();
2388 if (single_hardif) {
2389 if (i_hardif_s == 0) {
2390 if (batadv_iv_ogm_neigh_dump_hardif(msg, portid,
2391 cb->nlh->nlmsg_seq,
2392 bat_priv,
2393 single_hardif,
2394 &idx) == 0)
2395 i_hardif++;
2396 }
2397 } else {
2398 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list,
2399 list) {
2400 if (hard_iface->soft_iface != bat_priv->soft_iface)
2401 continue;
2402
2403 if (i_hardif++ < i_hardif_s)
2404 continue;
2405
2406 if (batadv_iv_ogm_neigh_dump_hardif(msg, portid,
2407 cb->nlh->nlmsg_seq,
2408 bat_priv,
2409 hard_iface, &idx)) {
2410 i_hardif--;
2411 break;
2412 }
2413 }
2414 }
2415 rcu_read_unlock();
2416
2417 cb->args[0] = i_hardif;
2418 cb->args[1] = idx;
2419}
2420
2421/**
Antonio Quartullia3285a82013-09-02 12:15:04 +02002422 * batadv_iv_ogm_neigh_cmp - compare the metrics of two neighbors
2423 * @neigh1: the first neighbor object of the comparison
Simon Wunderlich89652332013-11-13 19:14:46 +01002424 * @if_outgoing1: outgoing interface for the first neighbor
Antonio Quartullia3285a82013-09-02 12:15:04 +02002425 * @neigh2: the second neighbor object of the comparison
Simon Wunderlich89652332013-11-13 19:14:46 +01002426 * @if_outgoing2: outgoing interface for the second neighbor
Antonio Quartullia3285a82013-09-02 12:15:04 +02002427 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02002428 * Return: a value less, equal to or greater than 0 if the metric via neigh1 is
Antonio Quartullia3285a82013-09-02 12:15:04 +02002429 * lower, the same as or higher than the metric via neigh2
2430 */
2431static int batadv_iv_ogm_neigh_cmp(struct batadv_neigh_node *neigh1,
Simon Wunderlich89652332013-11-13 19:14:46 +01002432 struct batadv_hard_iface *if_outgoing1,
2433 struct batadv_neigh_node *neigh2,
2434 struct batadv_hard_iface *if_outgoing2)
Antonio Quartullia3285a82013-09-02 12:15:04 +02002435{
Markus Pargmann57b12502016-07-03 11:07:14 +02002436 bool ret;
Simon Wunderlich89652332013-11-13 19:14:46 +01002437 int diff;
Antonio Quartullia3285a82013-09-02 12:15:04 +02002438
Markus Pargmann57b12502016-07-03 11:07:14 +02002439 ret = batadv_iv_ogm_neigh_diff(neigh1, if_outgoing1, neigh2,
2440 if_outgoing2, &diff);
2441 if (!ret)
2442 return 0;
Simon Wunderlich89652332013-11-13 19:14:46 +01002443
2444 return diff;
Antonio Quartullia3285a82013-09-02 12:15:04 +02002445}
2446
Antonio Quartullic43c9812013-09-02 12:15:05 +02002447/**
Simon Wunderlich18165f62015-08-08 02:01:50 +02002448 * batadv_iv_ogm_neigh_is_sob - check if neigh1 is similarly good or better
2449 * than neigh2 from the metric prospective
Antonio Quartullic43c9812013-09-02 12:15:05 +02002450 * @neigh1: the first neighbor object of the comparison
Martin Hundebøll95298a92014-07-15 09:41:05 +02002451 * @if_outgoing1: outgoing interface for the first neighbor
Antonio Quartullic43c9812013-09-02 12:15:05 +02002452 * @neigh2: the second neighbor object of the comparison
Simon Wunderlich89652332013-11-13 19:14:46 +01002453 * @if_outgoing2: outgoing interface for the second neighbor
Martin Hundebøll95298a92014-07-15 09:41:05 +02002454 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02002455 * Return: true if the metric via neigh1 is equally good or better than
Simon Wunderlich89652332013-11-13 19:14:46 +01002456 * the metric via neigh2, false otherwise.
2457 */
2458static bool
Simon Wunderlich18165f62015-08-08 02:01:50 +02002459batadv_iv_ogm_neigh_is_sob(struct batadv_neigh_node *neigh1,
Simon Wunderlich89652332013-11-13 19:14:46 +01002460 struct batadv_hard_iface *if_outgoing1,
2461 struct batadv_neigh_node *neigh2,
2462 struct batadv_hard_iface *if_outgoing2)
2463{
Simon Wunderlich89652332013-11-13 19:14:46 +01002464 bool ret;
Markus Pargmann57b12502016-07-03 11:07:14 +02002465 int diff;
Simon Wunderlich89652332013-11-13 19:14:46 +01002466
Markus Pargmann57b12502016-07-03 11:07:14 +02002467 ret = batadv_iv_ogm_neigh_diff(neigh1, if_outgoing1, neigh2,
2468 if_outgoing2, &diff);
2469 if (!ret)
2470 return false;
Simon Wunderlich89652332013-11-13 19:14:46 +01002471
Markus Pargmann57b12502016-07-03 11:07:14 +02002472 ret = diff > -BATADV_TQ_SIMILARITY_THRESHOLD;
Simon Wunderlich89652332013-11-13 19:14:46 +01002473 return ret;
Antonio Quartullic43c9812013-09-02 12:15:05 +02002474}
2475
Antonio Quartullif0d97252016-05-03 01:45:34 +08002476static void batadv_iv_iface_activate(struct batadv_hard_iface *hard_iface)
2477{
2478 /* begin scheduling originator messages on that interface */
2479 batadv_iv_ogm_schedule(hard_iface);
2480}
2481
Antonio Quartulli34d99cf2016-07-03 12:46:33 +02002482static struct batadv_gw_node *
2483batadv_iv_gw_get_best_gw_node(struct batadv_priv *bat_priv)
2484{
2485 struct batadv_neigh_node *router;
2486 struct batadv_neigh_ifinfo *router_ifinfo;
2487 struct batadv_gw_node *gw_node, *curr_gw = NULL;
2488 u64 max_gw_factor = 0;
2489 u64 tmp_gw_factor = 0;
2490 u8 max_tq = 0;
2491 u8 tq_avg;
2492 struct batadv_orig_node *orig_node;
2493
2494 rcu_read_lock();
2495 hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) {
2496 orig_node = gw_node->orig_node;
2497 router = batadv_orig_router_get(orig_node, BATADV_IF_DEFAULT);
2498 if (!router)
2499 continue;
2500
2501 router_ifinfo = batadv_neigh_ifinfo_get(router,
2502 BATADV_IF_DEFAULT);
2503 if (!router_ifinfo)
2504 goto next;
2505
2506 if (!kref_get_unless_zero(&gw_node->refcount))
2507 goto next;
2508
2509 tq_avg = router_ifinfo->bat_iv.tq_avg;
2510
2511 switch (atomic_read(&bat_priv->gw.sel_class)) {
2512 case 1: /* fast connection */
2513 tmp_gw_factor = tq_avg * tq_avg;
2514 tmp_gw_factor *= gw_node->bandwidth_down;
2515 tmp_gw_factor *= 100 * 100;
2516 tmp_gw_factor >>= 18;
2517
2518 if ((tmp_gw_factor > max_gw_factor) ||
2519 ((tmp_gw_factor == max_gw_factor) &&
2520 (tq_avg > max_tq))) {
2521 if (curr_gw)
2522 batadv_gw_node_put(curr_gw);
2523 curr_gw = gw_node;
2524 kref_get(&curr_gw->refcount);
2525 }
2526 break;
2527
2528 default: /* 2: stable connection (use best statistic)
2529 * 3: fast-switch (use best statistic but change as
2530 * soon as a better gateway appears)
2531 * XX: late-switch (use best statistic but change as
2532 * soon as a better gateway appears which has
2533 * $routing_class more tq points)
2534 */
2535 if (tq_avg > max_tq) {
2536 if (curr_gw)
2537 batadv_gw_node_put(curr_gw);
2538 curr_gw = gw_node;
2539 kref_get(&curr_gw->refcount);
2540 }
2541 break;
2542 }
2543
2544 if (tq_avg > max_tq)
2545 max_tq = tq_avg;
2546
2547 if (tmp_gw_factor > max_gw_factor)
2548 max_gw_factor = tmp_gw_factor;
2549
2550 batadv_gw_node_put(gw_node);
2551
2552next:
2553 batadv_neigh_node_put(router);
2554 if (router_ifinfo)
2555 batadv_neigh_ifinfo_put(router_ifinfo);
2556 }
2557 rcu_read_unlock();
2558
2559 return curr_gw;
2560}
2561
2562static bool batadv_iv_gw_is_eligible(struct batadv_priv *bat_priv,
2563 struct batadv_orig_node *curr_gw_orig,
2564 struct batadv_orig_node *orig_node)
2565{
2566 struct batadv_neigh_ifinfo *router_orig_ifinfo = NULL;
2567 struct batadv_neigh_ifinfo *router_gw_ifinfo = NULL;
2568 struct batadv_neigh_node *router_gw = NULL;
2569 struct batadv_neigh_node *router_orig = NULL;
2570 u8 gw_tq_avg, orig_tq_avg;
2571 bool ret = false;
2572
2573 /* dynamic re-election is performed only on fast or late switch */
2574 if (atomic_read(&bat_priv->gw.sel_class) <= 2)
2575 return false;
2576
2577 router_gw = batadv_orig_router_get(curr_gw_orig, BATADV_IF_DEFAULT);
2578 if (!router_gw) {
2579 ret = true;
2580 goto out;
2581 }
2582
2583 router_gw_ifinfo = batadv_neigh_ifinfo_get(router_gw,
2584 BATADV_IF_DEFAULT);
2585 if (!router_gw_ifinfo) {
2586 ret = true;
2587 goto out;
2588 }
2589
2590 router_orig = batadv_orig_router_get(orig_node, BATADV_IF_DEFAULT);
2591 if (!router_orig)
2592 goto out;
2593
2594 router_orig_ifinfo = batadv_neigh_ifinfo_get(router_orig,
2595 BATADV_IF_DEFAULT);
2596 if (!router_orig_ifinfo)
2597 goto out;
2598
2599 gw_tq_avg = router_gw_ifinfo->bat_iv.tq_avg;
2600 orig_tq_avg = router_orig_ifinfo->bat_iv.tq_avg;
2601
2602 /* the TQ value has to be better */
2603 if (orig_tq_avg < gw_tq_avg)
2604 goto out;
2605
2606 /* if the routing class is greater than 3 the value tells us how much
2607 * greater the TQ value of the new gateway must be
2608 */
2609 if ((atomic_read(&bat_priv->gw.sel_class) > 3) &&
2610 (orig_tq_avg - gw_tq_avg < atomic_read(&bat_priv->gw.sel_class)))
2611 goto out;
2612
2613 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
2614 "Restarting gateway selection: better gateway found (tq curr: %i, tq new: %i)\n",
2615 gw_tq_avg, orig_tq_avg);
2616
2617 ret = true;
2618out:
2619 if (router_gw_ifinfo)
2620 batadv_neigh_ifinfo_put(router_gw_ifinfo);
2621 if (router_orig_ifinfo)
2622 batadv_neigh_ifinfo_put(router_orig_ifinfo);
2623 if (router_gw)
2624 batadv_neigh_node_put(router_gw);
2625 if (router_orig)
2626 batadv_neigh_node_put(router_orig);
2627
2628 return ret;
2629}
2630
Sven Eckelmanndc1cbd12016-07-16 09:31:20 +02002631#ifdef CONFIG_BATMAN_ADV_DEBUGFS
Antonio Quartulli34d99cf2016-07-03 12:46:33 +02002632/* fails if orig_node has no router */
2633static int batadv_iv_gw_write_buffer_text(struct batadv_priv *bat_priv,
2634 struct seq_file *seq,
2635 const struct batadv_gw_node *gw_node)
2636{
2637 struct batadv_gw_node *curr_gw;
2638 struct batadv_neigh_node *router;
2639 struct batadv_neigh_ifinfo *router_ifinfo = NULL;
2640 int ret = -1;
2641
2642 router = batadv_orig_router_get(gw_node->orig_node, BATADV_IF_DEFAULT);
2643 if (!router)
2644 goto out;
2645
2646 router_ifinfo = batadv_neigh_ifinfo_get(router, BATADV_IF_DEFAULT);
2647 if (!router_ifinfo)
2648 goto out;
2649
2650 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
2651
2652 seq_printf(seq, "%s %pM (%3i) %pM [%10s]: %u.%u/%u.%u MBit\n",
2653 (curr_gw == gw_node ? "=>" : " "),
2654 gw_node->orig_node->orig,
2655 router_ifinfo->bat_iv.tq_avg, router->addr,
2656 router->if_incoming->net_dev->name,
2657 gw_node->bandwidth_down / 10,
2658 gw_node->bandwidth_down % 10,
2659 gw_node->bandwidth_up / 10,
2660 gw_node->bandwidth_up % 10);
2661 ret = seq_has_overflowed(seq) ? -1 : 0;
2662
2663 if (curr_gw)
2664 batadv_gw_node_put(curr_gw);
2665out:
2666 if (router_ifinfo)
2667 batadv_neigh_ifinfo_put(router_ifinfo);
2668 if (router)
2669 batadv_neigh_node_put(router);
2670 return ret;
2671}
2672
2673static void batadv_iv_gw_print(struct batadv_priv *bat_priv,
2674 struct seq_file *seq)
2675{
2676 struct batadv_gw_node *gw_node;
2677 int gw_count = 0;
2678
2679 seq_puts(seq,
2680 " Gateway (#/255) Nexthop [outgoingIF]: advertised uplink bandwidth\n");
2681
2682 rcu_read_lock();
2683 hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) {
2684 /* fails if orig_node has no router */
2685 if (batadv_iv_gw_write_buffer_text(bat_priv, seq, gw_node) < 0)
2686 continue;
2687
2688 gw_count++;
2689 }
2690 rcu_read_unlock();
2691
2692 if (gw_count == 0)
2693 seq_puts(seq, "No gateways in range ...\n");
2694}
Sven Eckelmanndc1cbd12016-07-16 09:31:20 +02002695#endif
Antonio Quartulli34d99cf2016-07-03 12:46:33 +02002696
Andrew Lunnefb766a2016-07-03 13:31:43 +02002697/**
2698 * batadv_iv_gw_dump_entry - Dump a gateway into a message
2699 * @msg: Netlink message to dump into
2700 * @portid: Port making netlink request
2701 * @seq: Sequence number of netlink message
2702 * @bat_priv: The bat priv with all the soft interface information
2703 * @gw_node: Gateway to be dumped
2704 *
2705 * Return: Error code, or 0 on success
2706 */
2707static int batadv_iv_gw_dump_entry(struct sk_buff *msg, u32 portid, u32 seq,
2708 struct batadv_priv *bat_priv,
2709 struct batadv_gw_node *gw_node)
2710{
2711 struct batadv_neigh_ifinfo *router_ifinfo = NULL;
2712 struct batadv_neigh_node *router;
Sven Eckelmannb5f6a0a2018-06-02 17:26:34 +02002713 struct batadv_gw_node *curr_gw = NULL;
Sven Eckelmann280a7b62018-02-19 14:08:52 +01002714 int ret = 0;
Andrew Lunnefb766a2016-07-03 13:31:43 +02002715 void *hdr;
2716
2717 router = batadv_orig_router_get(gw_node->orig_node, BATADV_IF_DEFAULT);
2718 if (!router)
2719 goto out;
2720
2721 router_ifinfo = batadv_neigh_ifinfo_get(router, BATADV_IF_DEFAULT);
2722 if (!router_ifinfo)
2723 goto out;
2724
2725 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
2726
2727 hdr = genlmsg_put(msg, portid, seq, &batadv_netlink_family,
2728 NLM_F_MULTI, BATADV_CMD_GET_GATEWAYS);
2729 if (!hdr) {
2730 ret = -ENOBUFS;
2731 goto out;
2732 }
2733
2734 ret = -EMSGSIZE;
2735
2736 if (curr_gw == gw_node)
2737 if (nla_put_flag(msg, BATADV_ATTR_FLAG_BEST)) {
2738 genlmsg_cancel(msg, hdr);
2739 goto out;
2740 }
2741
2742 if (nla_put(msg, BATADV_ATTR_ORIG_ADDRESS, ETH_ALEN,
2743 gw_node->orig_node->orig) ||
2744 nla_put_u8(msg, BATADV_ATTR_TQ, router_ifinfo->bat_iv.tq_avg) ||
2745 nla_put(msg, BATADV_ATTR_ROUTER, ETH_ALEN,
2746 router->addr) ||
2747 nla_put_string(msg, BATADV_ATTR_HARD_IFNAME,
2748 router->if_incoming->net_dev->name) ||
2749 nla_put_u32(msg, BATADV_ATTR_BANDWIDTH_DOWN,
2750 gw_node->bandwidth_down) ||
2751 nla_put_u32(msg, BATADV_ATTR_BANDWIDTH_UP,
2752 gw_node->bandwidth_up)) {
2753 genlmsg_cancel(msg, hdr);
2754 goto out;
2755 }
2756
2757 genlmsg_end(msg, hdr);
2758 ret = 0;
2759
2760out:
Sven Eckelmannb5f6a0a2018-06-02 17:26:34 +02002761 if (curr_gw)
2762 batadv_gw_node_put(curr_gw);
Andrew Lunnefb766a2016-07-03 13:31:43 +02002763 if (router_ifinfo)
2764 batadv_neigh_ifinfo_put(router_ifinfo);
2765 if (router)
2766 batadv_neigh_node_put(router);
2767 return ret;
2768}
2769
2770/**
2771 * batadv_iv_gw_dump - Dump gateways into a message
2772 * @msg: Netlink message to dump into
2773 * @cb: Control block containing additional options
2774 * @bat_priv: The bat priv with all the soft interface information
2775 */
2776static void batadv_iv_gw_dump(struct sk_buff *msg, struct netlink_callback *cb,
2777 struct batadv_priv *bat_priv)
2778{
2779 int portid = NETLINK_CB(cb->skb).portid;
2780 struct batadv_gw_node *gw_node;
2781 int idx_skip = cb->args[0];
2782 int idx = 0;
2783
2784 rcu_read_lock();
2785 hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) {
2786 if (idx++ < idx_skip)
2787 continue;
2788
2789 if (batadv_iv_gw_dump_entry(msg, portid, cb->nlh->nlmsg_seq,
2790 bat_priv, gw_node)) {
2791 idx_skip = idx - 1;
2792 goto unlock;
2793 }
2794 }
2795
2796 idx_skip = idx;
2797unlock:
2798 rcu_read_unlock();
2799
2800 cb->args[0] = idx_skip;
2801}
2802
Sven Eckelmann56303d32012-06-05 22:31:31 +02002803static struct batadv_algo_ops batadv_batman_iv __read_mostly = {
Marek Lindner519d3492012-04-18 17:15:57 +08002804 .name = "BATMAN_IV",
Antonio Quartulli29824a52016-05-25 23:27:31 +08002805 .iface = {
2806 .activate = batadv_iv_iface_activate,
2807 .enable = batadv_iv_ogm_iface_enable,
2808 .disable = batadv_iv_ogm_iface_disable,
2809 .update_mac = batadv_iv_ogm_iface_update_mac,
2810 .primary_set = batadv_iv_ogm_primary_iface_set,
2811 },
2812 .neigh = {
2813 .cmp = batadv_iv_ogm_neigh_cmp,
2814 .is_similar_or_better = batadv_iv_ogm_neigh_is_sob,
Sven Eckelmanndc1cbd12016-07-16 09:31:20 +02002815#ifdef CONFIG_BATMAN_ADV_DEBUGFS
Antonio Quartulli29824a52016-05-25 23:27:31 +08002816 .print = batadv_iv_neigh_print,
Sven Eckelmanndc1cbd12016-07-16 09:31:20 +02002817#endif
Matthias Schiffer024f99c2016-07-03 13:31:40 +02002818 .dump = batadv_iv_ogm_neigh_dump,
Antonio Quartulli29824a52016-05-25 23:27:31 +08002819 },
2820 .orig = {
Sven Eckelmanndc1cbd12016-07-16 09:31:20 +02002821#ifdef CONFIG_BATMAN_ADV_DEBUGFS
Antonio Quartulli29824a52016-05-25 23:27:31 +08002822 .print = batadv_iv_ogm_orig_print,
Sven Eckelmanndc1cbd12016-07-16 09:31:20 +02002823#endif
Matthias Schiffer024f99c2016-07-03 13:31:40 +02002824 .dump = batadv_iv_ogm_orig_dump,
Antonio Quartulli29824a52016-05-25 23:27:31 +08002825 .free = batadv_iv_ogm_orig_free,
2826 .add_if = batadv_iv_ogm_orig_add_if,
2827 .del_if = batadv_iv_ogm_orig_del_if,
2828 },
Antonio Quartulli34d99cf2016-07-03 12:46:33 +02002829 .gw = {
2830 .get_best_gw_node = batadv_iv_gw_get_best_gw_node,
2831 .is_eligible = batadv_iv_gw_is_eligible,
Sven Eckelmanndc1cbd12016-07-16 09:31:20 +02002832#ifdef CONFIG_BATMAN_ADV_DEBUGFS
Antonio Quartulli34d99cf2016-07-03 12:46:33 +02002833 .print = batadv_iv_gw_print,
Sven Eckelmanndc1cbd12016-07-16 09:31:20 +02002834#endif
Andrew Lunnefb766a2016-07-03 13:31:43 +02002835 .dump = batadv_iv_gw_dump,
Antonio Quartulli34d99cf2016-07-03 12:46:33 +02002836 },
Marek Lindner1c280472011-11-28 17:40:17 +08002837};
2838
Sven Eckelmann81c524f2012-05-12 02:09:22 +02002839int __init batadv_iv_init(void)
Marek Lindner1c280472011-11-28 17:40:17 +08002840{
Marek Lindnerc3e29312012-03-04 16:56:25 +08002841 int ret;
2842
2843 /* batman originator packet */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002844 ret = batadv_recv_handler_register(BATADV_IV_OGM,
2845 batadv_iv_ogm_receive);
Marek Lindnerc3e29312012-03-04 16:56:25 +08002846 if (ret < 0)
2847 goto out;
2848
Sven Eckelmannfe8bc392012-05-12 18:33:51 +02002849 ret = batadv_algo_register(&batadv_batman_iv);
Marek Lindnerc3e29312012-03-04 16:56:25 +08002850 if (ret < 0)
2851 goto handler_unregister;
2852
2853 goto out;
2854
2855handler_unregister:
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002856 batadv_recv_handler_unregister(BATADV_IV_OGM);
Marek Lindnerc3e29312012-03-04 16:56:25 +08002857out:
2858 return ret;
Marek Lindner1c280472011-11-28 17:40:17 +08002859}