blob: 7b80f6f8d4dcd501c0e753513fea9c56cd1782cf [file] [log] [blame]
Sven Eckelmann7db7d9f2017-11-19 15:05:11 +01001// SPDX-License-Identifier: GPL-2.0
Sven Eckelmann7a79d712018-12-31 23:59:59 +01002/* Copyright (C) 2011-2019 B.A.T.M.A.N. contributors:
Linus Luessingd6f94d92016-01-16 16:40:09 +08003 *
4 * Linus Lüssing, Marek Lindner
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
17 */
18
19#include "bat_v_elp.h"
20#include "main.h"
21
22#include <linux/atomic.h>
Sven Eckelmannd62890882017-06-09 17:06:51 +020023#include <linux/bitops.h>
Linus Luessingd6f94d92016-01-16 16:40:09 +080024#include <linux/byteorder/generic.h>
25#include <linux/errno.h>
26#include <linux/etherdevice.h>
Antonio Quartullic8334842015-11-10 18:50:51 +010027#include <linux/ethtool.h>
Sven Eckelmannb92b94a2017-11-19 17:12:02 +010028#include <linux/gfp.h>
Linus Luessingd6f94d92016-01-16 16:40:09 +080029#include <linux/if_ether.h>
30#include <linux/jiffies.h>
31#include <linux/kernel.h>
Antonio Quartullic8334842015-11-10 18:50:51 +010032#include <linux/kref.h>
Linus Luessingd6f94d92016-01-16 16:40:09 +080033#include <linux/netdevice.h>
Sven Eckelmannd62890882017-06-09 17:06:51 +020034#include <linux/nl80211.h>
Linus Luessingd6f94d92016-01-16 16:40:09 +080035#include <linux/random.h>
36#include <linux/rculist.h>
37#include <linux/rcupdate.h>
Antonio Quartullic8334842015-11-10 18:50:51 +010038#include <linux/rtnetlink.h>
Linus Luessingd6f94d92016-01-16 16:40:09 +080039#include <linux/skbuff.h>
40#include <linux/stddef.h>
41#include <linux/string.h>
42#include <linux/types.h>
43#include <linux/workqueue.h>
Antonio Quartullic8334842015-11-10 18:50:51 +010044#include <net/cfg80211.h>
Sven Eckelmannfec149f2017-12-21 10:17:41 +010045#include <uapi/linux/batadv_packet.h>
Linus Luessingd6f94d92016-01-16 16:40:09 +080046
47#include "bat_algo.h"
Antonio Quartulli93231582016-01-16 16:40:13 +080048#include "bat_v_ogm.h"
Linus Luessingd6f94d92016-01-16 16:40:09 +080049#include "hard-interface.h"
Sven Eckelmannba412082016-05-15 23:48:31 +020050#include "log.h"
Linus Luessing162bd642016-01-16 16:40:10 +080051#include "originator.h"
Linus Luessing162bd642016-01-16 16:40:10 +080052#include "routing.h"
Linus Luessingd6f94d92016-01-16 16:40:09 +080053#include "send.h"
54
55/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +010056 * batadv_v_elp_start_timer() - restart timer for ELP periodic work
Linus Luessingd6f94d92016-01-16 16:40:09 +080057 * @hard_iface: the interface for which the timer has to be reset
58 */
59static void batadv_v_elp_start_timer(struct batadv_hard_iface *hard_iface)
60{
61 unsigned int msecs;
62
63 msecs = atomic_read(&hard_iface->bat_v.elp_interval) - BATADV_JITTER;
64 msecs += prandom_u32() % (2 * BATADV_JITTER);
65
66 queue_delayed_work(batadv_event_workqueue, &hard_iface->bat_v.elp_wq,
67 msecs_to_jiffies(msecs));
68}
69
70/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +010071 * batadv_v_elp_get_throughput() - get the throughput towards a neighbour
Antonio Quartullic8334842015-11-10 18:50:51 +010072 * @neigh: the neighbour for which the throughput has to be obtained
73 *
74 * Return: The throughput towards the given neighbour in multiples of 100kpbs
75 * (a value of '1' equals to 0.1Mbps, '10' equals 1Mbps, etc).
76 */
77static u32 batadv_v_elp_get_throughput(struct batadv_hardif_neigh_node *neigh)
78{
79 struct batadv_hard_iface *hard_iface = neigh->if_incoming;
80 struct ethtool_link_ksettings link_settings;
Marek Lindner1942de12016-09-30 15:21:05 +020081 struct net_device *real_netdev;
Antonio Quartullic8334842015-11-10 18:50:51 +010082 struct station_info sinfo;
83 u32 throughput;
84 int ret;
85
86 /* if the user specified a customised value for this interface, then
87 * return it directly
88 */
89 throughput = atomic_read(&hard_iface->bat_v.throughput_override);
90 if (throughput != 0)
91 return throughput;
92
93 /* if this is a wireless device, then ask its throughput through
94 * cfg80211 API
95 */
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +020096 if (batadv_is_wifi_hardif(hard_iface)) {
97 if (!batadv_is_cfg80211_hardif(hard_iface))
Marek Lindnerf44a3ae2016-09-30 15:21:02 +020098 /* unsupported WiFi driver version */
99 goto default_throughput;
Antonio Quartullic8334842015-11-10 18:50:51 +0100100
Marek Lindner1942de12016-09-30 15:21:05 +0200101 real_netdev = batadv_get_real_netdev(hard_iface->net_dev);
102 if (!real_netdev)
103 goto default_throughput;
104
105 ret = cfg80211_get_station(real_netdev, neigh->addr, &sinfo);
106
107 dev_put(real_netdev);
Marek Lindnerf44a3ae2016-09-30 15:21:02 +0200108 if (ret == -ENOENT) {
109 /* Node is not associated anymore! It would be
110 * possible to delete this neighbor. For now set
111 * the throughput metric to 0.
112 */
113 return 0;
114 }
Sven Eckelmann3f3f8732017-06-09 17:06:50 +0200115 if (ret)
116 goto default_throughput;
Sven Eckelmannd62890882017-06-09 17:06:51 +0200117 if (!(sinfo.filled & BIT(NL80211_STA_INFO_EXPECTED_THROUGHPUT)))
118 goto default_throughput;
Sven Eckelmann3f3f8732017-06-09 17:06:50 +0200119
120 return sinfo.expected_throughput / 100;
Antonio Quartullic8334842015-11-10 18:50:51 +0100121 }
122
123 /* if not a wifi interface, check if this device provides data via
124 * ethtool (e.g. an Ethernet adapter)
125 */
126 memset(&link_settings, 0, sizeof(link_settings));
127 rtnl_lock();
128 ret = __ethtool_get_link_ksettings(hard_iface->net_dev, &link_settings);
129 rtnl_unlock();
Marek Lindner8c46fcd2018-05-14 06:38:49 +0800130
131 /* Virtual interface drivers such as tun / tap interfaces, VLAN, etc
132 * tend to initialize the interface throughput with some value for the
133 * sake of having a throughput number to export via ethtool. This
134 * exported throughput leaves batman-adv to conclude the interface
135 * throughput is genuine (reflecting reality), thus no measurements
136 * are necessary.
137 *
138 * Based on the observation that those interface types also tend to set
139 * the link auto-negotiation to 'off', batman-adv shall check this
140 * setting to differentiate between genuine link throughput information
141 * and placeholders installed by virtual interfaces.
142 */
143 if (ret == 0 && link_settings.base.autoneg == AUTONEG_ENABLE) {
Antonio Quartullic8334842015-11-10 18:50:51 +0100144 /* link characteristics might change over time */
145 if (link_settings.base.duplex == DUPLEX_FULL)
146 hard_iface->bat_v.flags |= BATADV_FULL_DUPLEX;
147 else
148 hard_iface->bat_v.flags &= ~BATADV_FULL_DUPLEX;
149
150 throughput = link_settings.base.speed;
Sven Eckelmann825ffe12017-08-23 21:52:13 +0200151 if (throughput && throughput != SPEED_UNKNOWN)
Antonio Quartullic8334842015-11-10 18:50:51 +0100152 return throughput * 10;
153 }
154
155default_throughput:
156 if (!(hard_iface->bat_v.flags & BATADV_WARNING_DEFAULT)) {
157 batadv_info(hard_iface->soft_iface,
158 "WiFi driver or ethtool info does not provide information about link speeds on interface %s, therefore defaulting to hardcoded throughput values of %u.%1u Mbps. Consider overriding the throughput manually or checking your driver.\n",
159 hard_iface->net_dev->name,
160 BATADV_THROUGHPUT_DEFAULT_VALUE / 10,
161 BATADV_THROUGHPUT_DEFAULT_VALUE % 10);
162 hard_iface->bat_v.flags |= BATADV_WARNING_DEFAULT;
163 }
164
165 /* if none of the above cases apply, return the base_throughput */
166 return BATADV_THROUGHPUT_DEFAULT_VALUE;
167}
168
169/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100170 * batadv_v_elp_throughput_metric_update() - worker updating the throughput
171 * metric of a single hop neighbour
Antonio Quartullic8334842015-11-10 18:50:51 +0100172 * @work: the work queue item
173 */
174void batadv_v_elp_throughput_metric_update(struct work_struct *work)
175{
176 struct batadv_hardif_neigh_node_bat_v *neigh_bat_v;
177 struct batadv_hardif_neigh_node *neigh;
178
179 neigh_bat_v = container_of(work, struct batadv_hardif_neigh_node_bat_v,
180 metric_work);
181 neigh = container_of(neigh_bat_v, struct batadv_hardif_neigh_node,
182 bat_v);
183
184 ewma_throughput_add(&neigh->bat_v.throughput,
185 batadv_v_elp_get_throughput(neigh));
186
187 /* decrement refcounter to balance increment performed before scheduling
188 * this task
189 */
190 batadv_hardif_neigh_put(neigh);
191}
192
193/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100194 * batadv_v_elp_wifi_neigh_probe() - send link probing packets to a neighbour
Antonio Quartulli8d2d4992015-11-10 18:51:22 +0100195 * @neigh: the neighbour to probe
196 *
197 * Sends a predefined number of unicast wifi packets to a given neighbour in
198 * order to trigger the throughput estimation on this link by the RC algorithm.
199 * Packets are sent only if there there is not enough payload unicast traffic
200 * towards this neighbour..
201 *
202 * Return: True on success and false in case of error during skb preparation.
203 */
204static bool
205batadv_v_elp_wifi_neigh_probe(struct batadv_hardif_neigh_node *neigh)
206{
207 struct batadv_hard_iface *hard_iface = neigh->if_incoming;
208 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
209 unsigned long last_tx_diff;
210 struct sk_buff *skb;
211 int probe_len, i;
212 int elp_skb_len;
213
214 /* this probing routine is for Wifi neighbours only */
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200215 if (!batadv_is_wifi_hardif(hard_iface))
Antonio Quartulli8d2d4992015-11-10 18:51:22 +0100216 return true;
217
218 /* probe the neighbor only if no unicast packets have been sent
219 * to it in the last 100 milliseconds: this is the rate control
220 * algorithm sampling interval (minstrel). In this way, if not
221 * enough traffic has been sent to the neighbor, batman-adv can
222 * generate 2 probe packets and push the RC algorithm to perform
223 * the sampling
224 */
225 last_tx_diff = jiffies_to_msecs(jiffies - neigh->bat_v.last_unicast_tx);
226 if (last_tx_diff <= BATADV_ELP_PROBE_MAX_TX_DIFF)
227 return true;
228
229 probe_len = max_t(int, sizeof(struct batadv_elp_packet),
230 BATADV_ELP_MIN_PROBE_SIZE);
231
232 for (i = 0; i < BATADV_ELP_PROBES_PER_NODE; i++) {
233 elp_skb_len = hard_iface->bat_v.elp_skb->len;
234 skb = skb_copy_expand(hard_iface->bat_v.elp_skb, 0,
235 probe_len - elp_skb_len,
236 GFP_ATOMIC);
237 if (!skb)
238 return false;
239
240 /* Tell the skb to get as big as the allocated space (we want
241 * the packet to be exactly of that size to make the link
242 * throughput estimation effective.
243 */
Sven Eckelmann88d08952018-08-31 15:08:44 +0200244 skb_put_zero(skb, probe_len - hard_iface->bat_v.elp_skb->len);
Antonio Quartulli8d2d4992015-11-10 18:51:22 +0100245
246 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
247 "Sending unicast (probe) ELP packet on interface %s to %pM\n",
248 hard_iface->net_dev->name, neigh->addr);
249
250 batadv_send_skb_packet(skb, hard_iface, neigh->addr);
251 }
252
253 return true;
254}
255
256/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100257 * batadv_v_elp_periodic_work() - ELP periodic task per interface
Linus Luessingd6f94d92016-01-16 16:40:09 +0800258 * @work: work queue item
259 *
260 * Emits broadcast ELP message in regular intervals.
261 */
262static void batadv_v_elp_periodic_work(struct work_struct *work)
263{
Antonio Quartullic8334842015-11-10 18:50:51 +0100264 struct batadv_hardif_neigh_node *hardif_neigh;
Linus Luessingd6f94d92016-01-16 16:40:09 +0800265 struct batadv_hard_iface *hard_iface;
266 struct batadv_hard_iface_bat_v *bat_v;
267 struct batadv_elp_packet *elp_packet;
268 struct batadv_priv *bat_priv;
269 struct sk_buff *skb;
270 u32 elp_interval;
Marek Lindner4c4af692018-09-07 05:45:55 +0800271 bool ret;
Linus Luessingd6f94d92016-01-16 16:40:09 +0800272
273 bat_v = container_of(work, struct batadv_hard_iface_bat_v, elp_wq.work);
274 hard_iface = container_of(bat_v, struct batadv_hard_iface, bat_v);
275 bat_priv = netdev_priv(hard_iface->soft_iface);
276
277 if (atomic_read(&bat_priv->mesh_state) == BATADV_MESH_DEACTIVATING)
278 goto out;
279
280 /* we are in the process of shutting this interface down */
Sven Eckelmann825ffe12017-08-23 21:52:13 +0200281 if (hard_iface->if_status == BATADV_IF_NOT_IN_USE ||
282 hard_iface->if_status == BATADV_IF_TO_BE_REMOVED)
Linus Luessingd6f94d92016-01-16 16:40:09 +0800283 goto out;
284
285 /* the interface was enabled but may not be ready yet */
286 if (hard_iface->if_status != BATADV_IF_ACTIVE)
287 goto restart_timer;
288
289 skb = skb_copy(hard_iface->bat_v.elp_skb, GFP_ATOMIC);
290 if (!skb)
291 goto restart_timer;
292
293 elp_packet = (struct batadv_elp_packet *)skb->data;
294 elp_packet->seqno = htonl(atomic_read(&hard_iface->bat_v.elp_seqno));
295 elp_interval = atomic_read(&hard_iface->bat_v.elp_interval);
296 elp_packet->elp_interval = htonl(elp_interval);
297
298 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
299 "Sending broadcast ELP packet on interface %s, seqno %u\n",
300 hard_iface->net_dev->name,
301 atomic_read(&hard_iface->bat_v.elp_seqno));
302
Antonio Quartulli95d39272016-01-16 16:40:15 +0800303 batadv_send_broadcast_skb(skb, hard_iface);
Linus Luessingd6f94d92016-01-16 16:40:09 +0800304
305 atomic_inc(&hard_iface->bat_v.elp_seqno);
306
Antonio Quartullic8334842015-11-10 18:50:51 +0100307 /* The throughput metric is updated on each sent packet. This way, if a
308 * node is dead and no longer sends packets, batman-adv is still able to
309 * react timely to its death.
310 *
311 * The throughput metric is updated by following these steps:
312 * 1) if the hard_iface is wifi => send a number of unicast ELPs for
313 * probing/sampling to each neighbor
314 * 2) update the throughput metric value of each neighbor (note that the
315 * value retrieved in this step might be 100ms old because the
316 * probing packets at point 1) could still be in the HW queue)
317 */
318 rcu_read_lock();
319 hlist_for_each_entry_rcu(hardif_neigh, &hard_iface->neigh_list, list) {
Antonio Quartulli8d2d4992015-11-10 18:51:22 +0100320 if (!batadv_v_elp_wifi_neigh_probe(hardif_neigh))
321 /* if something goes wrong while probing, better to stop
322 * sending packets immediately and reschedule the task
323 */
324 break;
325
Antonio Quartullic8334842015-11-10 18:50:51 +0100326 if (!kref_get_unless_zero(&hardif_neigh->refcount))
327 continue;
328
329 /* Reading the estimated throughput from cfg80211 is a task that
330 * may sleep and that is not allowed in an rcu protected
331 * context. Therefore schedule a task for that.
332 */
Marek Lindner4c4af692018-09-07 05:45:55 +0800333 ret = queue_work(batadv_event_workqueue,
334 &hardif_neigh->bat_v.metric_work);
335
336 if (!ret)
337 batadv_hardif_neigh_put(hardif_neigh);
Antonio Quartullic8334842015-11-10 18:50:51 +0100338 }
339 rcu_read_unlock();
340
Linus Luessingd6f94d92016-01-16 16:40:09 +0800341restart_timer:
342 batadv_v_elp_start_timer(hard_iface);
343out:
344 return;
345}
346
347/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100348 * batadv_v_elp_iface_enable() - setup the ELP interface private resources
Linus Luessingd6f94d92016-01-16 16:40:09 +0800349 * @hard_iface: interface for which the data has to be prepared
350 *
351 * Return: 0 on success or a -ENOMEM in case of failure.
352 */
353int batadv_v_elp_iface_enable(struct batadv_hard_iface *hard_iface)
354{
Sven Eckelmannf4156f92018-10-30 12:17:10 +0100355 static const size_t tvlv_padding = sizeof(__be32);
Linus Luessingd6f94d92016-01-16 16:40:09 +0800356 struct batadv_elp_packet *elp_packet;
357 unsigned char *elp_buff;
358 u32 random_seqno;
359 size_t size;
360 int res = -ENOMEM;
361
Sven Eckelmannf4156f92018-10-30 12:17:10 +0100362 size = ETH_HLEN + NET_IP_ALIGN + BATADV_ELP_HLEN + tvlv_padding;
Linus Luessingd6f94d92016-01-16 16:40:09 +0800363 hard_iface->bat_v.elp_skb = dev_alloc_skb(size);
364 if (!hard_iface->bat_v.elp_skb)
365 goto out;
366
367 skb_reserve(hard_iface->bat_v.elp_skb, ETH_HLEN + NET_IP_ALIGN);
Sven Eckelmannf4156f92018-10-30 12:17:10 +0100368 elp_buff = skb_put_zero(hard_iface->bat_v.elp_skb,
369 BATADV_ELP_HLEN + tvlv_padding);
Linus Luessingd6f94d92016-01-16 16:40:09 +0800370 elp_packet = (struct batadv_elp_packet *)elp_buff;
Linus Luessingd6f94d92016-01-16 16:40:09 +0800371
372 elp_packet->packet_type = BATADV_ELP;
373 elp_packet->version = BATADV_COMPAT_VERSION;
374
375 /* randomize initial seqno to avoid collision */
376 get_random_bytes(&random_seqno, sizeof(random_seqno));
377 atomic_set(&hard_iface->bat_v.elp_seqno, random_seqno);
Linus Luessingd6f94d92016-01-16 16:40:09 +0800378
Antonio Quartullic8334842015-11-10 18:50:51 +0100379 /* assume full-duplex by default */
380 hard_iface->bat_v.flags |= BATADV_FULL_DUPLEX;
381
382 /* warn the user (again) if there is no throughput data is available */
383 hard_iface->bat_v.flags &= ~BATADV_WARNING_DEFAULT;
384
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200385 if (batadv_is_wifi_hardif(hard_iface))
Antonio Quartullic8334842015-11-10 18:50:51 +0100386 hard_iface->bat_v.flags &= ~BATADV_FULL_DUPLEX;
387
Linus Luessingd6f94d92016-01-16 16:40:09 +0800388 INIT_DELAYED_WORK(&hard_iface->bat_v.elp_wq,
389 batadv_v_elp_periodic_work);
390 batadv_v_elp_start_timer(hard_iface);
391 res = 0;
392
393out:
394 return res;
395}
396
397/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100398 * batadv_v_elp_iface_disable() - release ELP interface private resources
Linus Luessingd6f94d92016-01-16 16:40:09 +0800399 * @hard_iface: interface for which the resources have to be released
400 */
401void batadv_v_elp_iface_disable(struct batadv_hard_iface *hard_iface)
402{
403 cancel_delayed_work_sync(&hard_iface->bat_v.elp_wq);
404
405 dev_kfree_skb(hard_iface->bat_v.elp_skb);
406 hard_iface->bat_v.elp_skb = NULL;
407}
408
409/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100410 * batadv_v_elp_iface_activate() - update the ELP buffer belonging to the given
Marek Lindnerebe24ce2016-05-07 19:54:17 +0800411 * hard-interface
412 * @primary_iface: the new primary interface
413 * @hard_iface: interface holding the to-be-updated buffer
414 */
415void batadv_v_elp_iface_activate(struct batadv_hard_iface *primary_iface,
416 struct batadv_hard_iface *hard_iface)
417{
418 struct batadv_elp_packet *elp_packet;
419 struct sk_buff *skb;
420
421 if (!hard_iface->bat_v.elp_skb)
422 return;
423
424 skb = hard_iface->bat_v.elp_skb;
425 elp_packet = (struct batadv_elp_packet *)skb->data;
426 ether_addr_copy(elp_packet->orig,
427 primary_iface->net_dev->dev_addr);
428}
429
430/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100431 * batadv_v_elp_primary_iface_set() - change internal data to reflect the new
Linus Luessingd6f94d92016-01-16 16:40:09 +0800432 * primary interface
433 * @primary_iface: the new primary interface
434 */
435void batadv_v_elp_primary_iface_set(struct batadv_hard_iface *primary_iface)
436{
437 struct batadv_hard_iface *hard_iface;
Linus Luessingd6f94d92016-01-16 16:40:09 +0800438
439 /* update orig field of every elp iface belonging to this mesh */
440 rcu_read_lock();
441 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
442 if (primary_iface->soft_iface != hard_iface->soft_iface)
443 continue;
444
Marek Lindnerebe24ce2016-05-07 19:54:17 +0800445 batadv_v_elp_iface_activate(primary_iface, hard_iface);
Linus Luessingd6f94d92016-01-16 16:40:09 +0800446 }
447 rcu_read_unlock();
448}
Linus Luessing162bd642016-01-16 16:40:10 +0800449
450/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100451 * batadv_v_elp_neigh_update() - update an ELP neighbour node
Linus Luessing162bd642016-01-16 16:40:10 +0800452 * @bat_priv: the bat priv with all the soft interface information
453 * @neigh_addr: the neighbour interface address
454 * @if_incoming: the interface the packet was received through
455 * @elp_packet: the received ELP packet
456 *
457 * Updates the ELP neighbour node state with the data received within the new
458 * ELP packet.
459 */
460static void batadv_v_elp_neigh_update(struct batadv_priv *bat_priv,
461 u8 *neigh_addr,
462 struct batadv_hard_iface *if_incoming,
463 struct batadv_elp_packet *elp_packet)
464
465{
466 struct batadv_neigh_node *neigh;
467 struct batadv_orig_node *orig_neigh;
468 struct batadv_hardif_neigh_node *hardif_neigh;
469 s32 seqno_diff;
470 s32 elp_latest_seqno;
471
472 orig_neigh = batadv_v_ogm_orig_get(bat_priv, elp_packet->orig);
473 if (!orig_neigh)
474 return;
475
Marek Lindner6f0a6b52016-05-03 01:52:08 +0800476 neigh = batadv_neigh_node_get_or_create(orig_neigh,
477 if_incoming, neigh_addr);
Linus Luessing162bd642016-01-16 16:40:10 +0800478 if (!neigh)
479 goto orig_free;
480
481 hardif_neigh = batadv_hardif_neigh_get(if_incoming, neigh_addr);
482 if (!hardif_neigh)
483 goto neigh_free;
484
485 elp_latest_seqno = hardif_neigh->bat_v.elp_latest_seqno;
486 seqno_diff = ntohl(elp_packet->seqno) - elp_latest_seqno;
487
488 /* known or older sequence numbers are ignored. However always adopt
489 * if the router seems to have been restarted.
490 */
491 if (seqno_diff < 1 && seqno_diff > -BATADV_ELP_MAX_AGE)
492 goto hardif_free;
493
494 neigh->last_seen = jiffies;
495 hardif_neigh->last_seen = jiffies;
496 hardif_neigh->bat_v.elp_latest_seqno = ntohl(elp_packet->seqno);
497 hardif_neigh->bat_v.elp_interval = ntohl(elp_packet->elp_interval);
498
499hardif_free:
500 if (hardif_neigh)
501 batadv_hardif_neigh_put(hardif_neigh);
502neigh_free:
503 if (neigh)
504 batadv_neigh_node_put(neigh);
505orig_free:
506 if (orig_neigh)
507 batadv_orig_node_put(orig_neigh);
508}
509
510/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100511 * batadv_v_elp_packet_recv() - main ELP packet handler
Linus Luessing162bd642016-01-16 16:40:10 +0800512 * @skb: the received packet
513 * @if_incoming: the interface this packet was received through
514 *
515 * Return: NET_RX_SUCCESS and consumes the skb if the packet was peoperly
516 * processed or NET_RX_DROP in case of failure.
517 */
518int batadv_v_elp_packet_recv(struct sk_buff *skb,
519 struct batadv_hard_iface *if_incoming)
520{
521 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
522 struct batadv_elp_packet *elp_packet;
523 struct batadv_hard_iface *primary_if;
524 struct ethhdr *ethhdr = (struct ethhdr *)skb_mac_header(skb);
Sven Eckelmannb91a2542016-07-17 21:04:04 +0200525 bool res;
526 int ret = NET_RX_DROP;
Linus Luessing162bd642016-01-16 16:40:10 +0800527
Sven Eckelmannb91a2542016-07-17 21:04:04 +0200528 res = batadv_check_management_packet(skb, if_incoming, BATADV_ELP_HLEN);
529 if (!res)
530 goto free_skb;
Linus Luessing162bd642016-01-16 16:40:10 +0800531
532 if (batadv_is_my_mac(bat_priv, ethhdr->h_source))
Sven Eckelmannb91a2542016-07-17 21:04:04 +0200533 goto free_skb;
Linus Luessing162bd642016-01-16 16:40:10 +0800534
535 /* did we receive a B.A.T.M.A.N. V ELP packet on an interface
536 * that does not have B.A.T.M.A.N. V ELP enabled ?
537 */
Antonio Quartulli29824a52016-05-25 23:27:31 +0800538 if (strcmp(bat_priv->algo_ops->name, "BATMAN_V") != 0)
Sven Eckelmannb91a2542016-07-17 21:04:04 +0200539 goto free_skb;
Linus Luessing162bd642016-01-16 16:40:10 +0800540
541 elp_packet = (struct batadv_elp_packet *)skb->data;
542
543 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
544 "Received ELP packet from %pM seqno %u ORIG: %pM\n",
545 ethhdr->h_source, ntohl(elp_packet->seqno),
546 elp_packet->orig);
547
548 primary_if = batadv_primary_if_get_selected(bat_priv);
549 if (!primary_if)
Sven Eckelmannb91a2542016-07-17 21:04:04 +0200550 goto free_skb;
Linus Luessing162bd642016-01-16 16:40:10 +0800551
552 batadv_v_elp_neigh_update(bat_priv, ethhdr->h_source, if_incoming,
553 elp_packet);
554
Sven Eckelmannb91a2542016-07-17 21:04:04 +0200555 ret = NET_RX_SUCCESS;
556 batadv_hardif_put(primary_if);
557
558free_skb:
559 if (ret == NET_RX_SUCCESS)
560 consume_skb(skb);
561 else
562 kfree_skb(skb);
563
564 return ret;
Linus Luessing162bd642016-01-16 16:40:10 +0800565}