blob: 2f0d42f2f913e74cf10c0c6ce89320434994cac5 [file] [log] [blame]
Sven Eckelmann7db7d9f2017-11-19 15:05:11 +01001// SPDX-License-Identifier: GPL-2.0
Sven Eckelmann6b1aea82018-01-01 00:00:00 +01002/* Copyright (C) 2007-2018 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00003 *
4 * Marek Lindner, Simon Wunderlich
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
Antonio Quartulliebf38fb2013-11-03 20:40:48 +010016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000017 */
18
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000019#include "hard-interface.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020020#include "main.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000021
Sven Eckelmann7a659d52016-01-16 10:29:54 +010022#include <linux/atomic.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020023#include <linux/bug.h>
24#include <linux/byteorder/generic.h>
25#include <linux/errno.h>
Sven Eckelmannb92b94a2017-11-19 17:12:02 +010026#include <linux/gfp.h>
Sven Eckelmannfcafa5e2016-05-15 11:07:42 +020027#include <linux/if.h>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000028#include <linux/if_arp.h>
Antonio Quartulliaf5d4f72012-11-26 00:38:50 +010029#include <linux/if_ether.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020030#include <linux/kernel.h>
Sven Eckelmann7a659d52016-01-16 10:29:54 +010031#include <linux/kref.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020032#include <linux/list.h>
33#include <linux/netdevice.h>
34#include <linux/printk.h>
35#include <linux/rculist.h>
36#include <linux/rtnetlink.h>
37#include <linux/slab.h>
Marek Lindnercef63412015-08-04 21:09:55 +080038#include <linux/spinlock.h>
Andrew Lunn275019d2016-07-03 13:31:33 +020039#include <net/net_namespace.h>
40#include <net/rtnetlink.h>
Sven Eckelmannfec149f2017-12-21 10:17:41 +010041#include <uapi/linux/batadv_packet.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020042
Sven Eckelmanna2d08162016-05-15 11:07:46 +020043#include "bat_v.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020044#include "bridge_loop_avoidance.h"
45#include "debugfs.h"
46#include "distributed-arp-table.h"
47#include "gateway_client.h"
Sven Eckelmannba412082016-05-15 23:48:31 +020048#include "log.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020049#include "originator.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020050#include "send.h"
51#include "soft-interface.h"
52#include "sysfs.h"
53#include "translation-table.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000054
Sven Eckelmann140ed8e2016-01-05 12:06:26 +010055/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +010056 * batadv_hardif_release() - release hard interface from lists and queue for
Sven Eckelmann140ed8e2016-01-05 12:06:26 +010057 * free after rcu grace period
Sven Eckelmann7a659d52016-01-16 10:29:54 +010058 * @ref: kref pointer of the hard interface
Sven Eckelmann140ed8e2016-01-05 12:06:26 +010059 */
Sven Eckelmann7a659d52016-01-16 10:29:54 +010060void batadv_hardif_release(struct kref *ref)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000061{
Sven Eckelmann7a659d52016-01-16 10:29:54 +010062 struct batadv_hard_iface *hard_iface;
63
64 hard_iface = container_of(ref, struct batadv_hard_iface, refcount);
Marek Lindnere6c10f42011-02-18 12:33:20 +000065 dev_put(hard_iface->net_dev);
Sven Eckelmann140ed8e2016-01-05 12:06:26 +010066
67 kfree_rcu(hard_iface, rcu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000068}
69
Sven Eckelmannff15c272017-12-02 19:51:53 +010070/**
71 * batadv_hardif_get_by_netdev() - Get hard interface object of a net_device
72 * @net_dev: net_device to search for
73 *
74 * Return: batadv_hard_iface of net_dev (with increased refcnt), NULL on errors
75 */
Sven Eckelmann56303d32012-06-05 22:31:31 +020076struct batadv_hard_iface *
77batadv_hardif_get_by_netdev(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000078{
Sven Eckelmann56303d32012-06-05 22:31:31 +020079 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000080
81 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +020082 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +000083 if (hard_iface->net_dev == net_dev &&
Sven Eckelmann7a659d52016-01-16 10:29:54 +010084 kref_get_unless_zero(&hard_iface->refcount))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000085 goto out;
86 }
87
Marek Lindnere6c10f42011-02-18 12:33:20 +000088 hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000089
90out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000091 rcu_read_unlock();
Marek Lindnere6c10f42011-02-18 12:33:20 +000092 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000093}
94
Antonio Quartullib7eddd02012-09-09 10:46:46 +020095/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +010096 * batadv_getlink_net() - return link net namespace (of use fallback)
Andrew Lunn275019d2016-07-03 13:31:33 +020097 * @netdev: net_device to check
98 * @fallback_net: return in case get_link_net is not available for @netdev
99 *
100 * Return: result of rtnl_link_ops->get_link_net or @fallback_net
101 */
Sven Eckelmann88ffc7d2016-09-30 15:21:00 +0200102static struct net *batadv_getlink_net(const struct net_device *netdev,
103 struct net *fallback_net)
Andrew Lunn275019d2016-07-03 13:31:33 +0200104{
105 if (!netdev->rtnl_link_ops)
106 return fallback_net;
107
108 if (!netdev->rtnl_link_ops->get_link_net)
109 return fallback_net;
110
111 return netdev->rtnl_link_ops->get_link_net(netdev);
112}
113
114/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100115 * batadv_mutual_parents() - check if two devices are each others parent
Andrew Lunn275019d2016-07-03 13:31:33 +0200116 * @dev1: 1st net dev
117 * @net1: 1st devices netns
118 * @dev2: 2nd net dev
119 * @net2: 2nd devices netns
Andrew Lunn1bc4e2b2016-02-11 22:15:57 +0100120 *
121 * veth devices come in pairs and each is the parent of the other!
122 *
123 * Return: true if the devices are each others parent, otherwise false
124 */
125static bool batadv_mutual_parents(const struct net_device *dev1,
Sven Eckelmann88ffc7d2016-09-30 15:21:00 +0200126 struct net *net1,
Andrew Lunn275019d2016-07-03 13:31:33 +0200127 const struct net_device *dev2,
Sven Eckelmann88ffc7d2016-09-30 15:21:00 +0200128 struct net *net2)
Andrew Lunn1bc4e2b2016-02-11 22:15:57 +0100129{
130 int dev1_parent_iflink = dev_get_iflink(dev1);
131 int dev2_parent_iflink = dev_get_iflink(dev2);
Andrew Lunn275019d2016-07-03 13:31:33 +0200132 const struct net *dev1_parent_net;
133 const struct net *dev2_parent_net;
134
135 dev1_parent_net = batadv_getlink_net(dev1, net1);
136 dev2_parent_net = batadv_getlink_net(dev2, net2);
Andrew Lunn1bc4e2b2016-02-11 22:15:57 +0100137
138 if (!dev1_parent_iflink || !dev2_parent_iflink)
139 return false;
140
141 return (dev1_parent_iflink == dev2->ifindex) &&
Andrew Lunn275019d2016-07-03 13:31:33 +0200142 (dev2_parent_iflink == dev1->ifindex) &&
143 net_eq(dev1_parent_net, net2) &&
144 net_eq(dev2_parent_net, net1);
Andrew Lunn1bc4e2b2016-02-11 22:15:57 +0100145}
146
147/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100148 * batadv_is_on_batman_iface() - check if a device is a batman iface descendant
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200149 * @net_dev: the device to check
150 *
151 * If the user creates any virtual device on top of a batman-adv interface, it
152 * is important to prevent this new interface to be used to create a new mesh
153 * network (this behaviour would lead to a batman-over-batman configuration).
154 * This function recursively checks all the fathers of the device passed as
155 * argument looking for a batman-adv soft interface.
156 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200157 * Return: true if the device is descendant of a batman-adv mesh interface (or
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200158 * if it is a batman-adv interface itself), false otherwise
159 */
160static bool batadv_is_on_batman_iface(const struct net_device *net_dev)
161{
Andrew Lunn2cd45a02016-04-21 12:57:27 +0200162 struct net *net = dev_net(net_dev);
Andrew Lunn275019d2016-07-03 13:31:33 +0200163 struct net_device *parent_dev;
Sven Eckelmann88ffc7d2016-09-30 15:21:00 +0200164 struct net *parent_net;
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200165 bool ret;
166
167 /* check if this is a batman-adv mesh interface */
168 if (batadv_softif_is_valid(net_dev))
169 return true;
170
171 /* no more parents..stop recursion */
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200172 if (dev_get_iflink(net_dev) == 0 ||
173 dev_get_iflink(net_dev) == net_dev->ifindex)
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200174 return false;
175
Andrew Lunn275019d2016-07-03 13:31:33 +0200176 parent_net = batadv_getlink_net(net_dev, net);
177
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200178 /* recurse over the parent device */
Andrew Lunn275019d2016-07-03 13:31:33 +0200179 parent_dev = __dev_get_by_index((struct net *)parent_net,
180 dev_get_iflink(net_dev));
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200181 /* if we got a NULL parent_dev there is something broken.. */
182 if (WARN(!parent_dev, "Cannot find parent device"))
183 return false;
184
Andrew Lunn275019d2016-07-03 13:31:33 +0200185 if (batadv_mutual_parents(net_dev, net, parent_dev, parent_net))
Andrew Lunn1bc4e2b2016-02-11 22:15:57 +0100186 return false;
187
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200188 ret = batadv_is_on_batman_iface(parent_dev);
189
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200190 return ret;
191}
192
Sven Eckelmann4b426b12016-02-22 21:02:39 +0100193static bool batadv_is_valid_iface(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000194{
195 if (net_dev->flags & IFF_LOOPBACK)
Sven Eckelmann4b426b12016-02-22 21:02:39 +0100196 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000197
198 if (net_dev->type != ARPHRD_ETHER)
Sven Eckelmann4b426b12016-02-22 21:02:39 +0100199 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000200
201 if (net_dev->addr_len != ETH_ALEN)
Sven Eckelmann4b426b12016-02-22 21:02:39 +0100202 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000203
204 /* no batman over batman */
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200205 if (batadv_is_on_batman_iface(net_dev))
Sven Eckelmann4b426b12016-02-22 21:02:39 +0100206 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000207
Sven Eckelmann4b426b12016-02-22 21:02:39 +0100208 return true;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000209}
210
Matthias Schifferde68d102013-03-09 23:14:22 +0100211/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100212 * batadv_get_real_netdevice() - check if the given netdev struct is a virtual
Marek Lindner5ed4a462016-09-30 15:21:04 +0200213 * interface on top of another 'real' interface
214 * @netdev: the device to check
215 *
Marek Lindner1942de12016-09-30 15:21:05 +0200216 * Callers must hold the rtnl semaphore. You may want batadv_get_real_netdev()
217 * instead of this.
218 *
Marek Lindner5ed4a462016-09-30 15:21:04 +0200219 * Return: the 'real' net device or the original net device and NULL in case
220 * of an error.
221 */
222static struct net_device *batadv_get_real_netdevice(struct net_device *netdev)
223{
224 struct batadv_hard_iface *hard_iface = NULL;
225 struct net_device *real_netdev = NULL;
226 struct net *real_net;
227 struct net *net;
228 int ifindex;
229
230 ASSERT_RTNL();
231
232 if (!netdev)
233 return NULL;
234
235 if (netdev->ifindex == dev_get_iflink(netdev)) {
236 dev_hold(netdev);
237 return netdev;
238 }
239
240 hard_iface = batadv_hardif_get_by_netdev(netdev);
241 if (!hard_iface || !hard_iface->soft_iface)
242 goto out;
243
244 net = dev_net(hard_iface->soft_iface);
245 ifindex = dev_get_iflink(netdev);
246 real_net = batadv_getlink_net(netdev, net);
247 real_netdev = dev_get_by_index(real_net, ifindex);
248
249out:
250 if (hard_iface)
251 batadv_hardif_put(hard_iface);
252 return real_netdev;
253}
254
255/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100256 * batadv_get_real_netdev() - check if the given net_device struct is a virtual
Marek Lindner1942de12016-09-30 15:21:05 +0200257 * interface on top of another 'real' interface
Matthias Schifferde68d102013-03-09 23:14:22 +0100258 * @net_device: the device to check
259 *
Marek Lindner1942de12016-09-30 15:21:05 +0200260 * Return: the 'real' net device or the original net device and NULL in case
261 * of an error.
Matthias Schifferde68d102013-03-09 23:14:22 +0100262 */
Marek Lindner1942de12016-09-30 15:21:05 +0200263struct net_device *batadv_get_real_netdev(struct net_device *net_device)
264{
265 struct net_device *real_netdev;
266
267 rtnl_lock();
268 real_netdev = batadv_get_real_netdevice(net_device);
269 rtnl_unlock();
270
271 return real_netdev;
272}
273
274/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100275 * batadv_is_wext_netdev() - check if the given net_device struct is a
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200276 * wext wifi interface
Marek Lindnerf44a3ae2016-09-30 15:21:02 +0200277 * @net_device: the device to check
278 *
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200279 * Return: true if the net device is a wext wireless device, false
Marek Lindnerf44a3ae2016-09-30 15:21:02 +0200280 * otherwise.
281 */
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200282static bool batadv_is_wext_netdev(struct net_device *net_device)
Matthias Schifferde68d102013-03-09 23:14:22 +0100283{
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200284 if (!net_device)
285 return false;
286
Matthias Schifferde68d102013-03-09 23:14:22 +0100287#ifdef CONFIG_WIRELESS_EXT
288 /* pre-cfg80211 drivers have to implement WEXT, so it is possible to
289 * check for wireless_handlers != NULL
290 */
291 if (net_device->wireless_handlers)
292 return true;
293#endif
294
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200295 return false;
296}
297
298/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100299 * batadv_is_cfg80211_netdev() - check if the given net_device struct is a
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200300 * cfg80211 wifi interface
301 * @net_device: the device to check
302 *
303 * Return: true if the net device is a cfg80211 wireless device, false
304 * otherwise.
305 */
306static bool batadv_is_cfg80211_netdev(struct net_device *net_device)
307{
308 if (!net_device)
309 return false;
310
Matthias Schifferde68d102013-03-09 23:14:22 +0100311 /* cfg80211 drivers have to set ieee80211_ptr */
312 if (net_device->ieee80211_ptr)
313 return true;
314
315 return false;
316}
317
Linus Lüssing3111bee2016-08-07 12:34:19 +0200318/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100319 * batadv_wifi_flags_evaluate() - calculate wifi flags for net_device
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200320 * @net_device: the device to check
321 *
322 * Return: batadv_hard_iface_wifi_flags flags of the device
323 */
324static u32 batadv_wifi_flags_evaluate(struct net_device *net_device)
325{
326 u32 wifi_flags = 0;
Marek Lindner5ed4a462016-09-30 15:21:04 +0200327 struct net_device *real_netdev;
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200328
329 if (batadv_is_wext_netdev(net_device))
330 wifi_flags |= BATADV_HARDIF_WIFI_WEXT_DIRECT;
331
332 if (batadv_is_cfg80211_netdev(net_device))
333 wifi_flags |= BATADV_HARDIF_WIFI_CFG80211_DIRECT;
334
Marek Lindner5ed4a462016-09-30 15:21:04 +0200335 real_netdev = batadv_get_real_netdevice(net_device);
336 if (!real_netdev)
337 return wifi_flags;
338
339 if (real_netdev == net_device)
340 goto out;
341
342 if (batadv_is_wext_netdev(real_netdev))
343 wifi_flags |= BATADV_HARDIF_WIFI_WEXT_INDIRECT;
344
345 if (batadv_is_cfg80211_netdev(real_netdev))
346 wifi_flags |= BATADV_HARDIF_WIFI_CFG80211_INDIRECT;
347
348out:
349 dev_put(real_netdev);
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200350 return wifi_flags;
351}
352
353/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100354 * batadv_is_cfg80211_hardif() - check if the given hardif is a cfg80211 wifi
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200355 * interface
356 * @hard_iface: the device to check
357 *
358 * Return: true if the net device is a cfg80211 wireless device, false
359 * otherwise.
360 */
361bool batadv_is_cfg80211_hardif(struct batadv_hard_iface *hard_iface)
362{
363 u32 allowed_flags = 0;
364
365 allowed_flags |= BATADV_HARDIF_WIFI_CFG80211_DIRECT;
Marek Lindner5ed4a462016-09-30 15:21:04 +0200366 allowed_flags |= BATADV_HARDIF_WIFI_CFG80211_INDIRECT;
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200367
368 return !!(hard_iface->wifi_flags & allowed_flags);
369}
370
371/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100372 * batadv_is_wifi_hardif() - check if the given hardif is a wifi interface
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200373 * @hard_iface: the device to check
374 *
375 * Return: true if the net device is a 802.11 wireless device, false otherwise.
376 */
377bool batadv_is_wifi_hardif(struct batadv_hard_iface *hard_iface)
378{
379 if (!hard_iface)
380 return false;
381
382 return hard_iface->wifi_flags != 0;
Matthias Schifferde68d102013-03-09 23:14:22 +0100383}
384
Linus Lüssing3111bee2016-08-07 12:34:19 +0200385/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100386 * batadv_hardif_no_broadcast() - check whether (re)broadcast is necessary
Linus Lüssing3111bee2016-08-07 12:34:19 +0200387 * @if_outgoing: the outgoing interface checked and considered for (re)broadcast
388 * @orig_addr: the originator of this packet
389 * @orig_neigh: originator address of the forwarder we just got the packet from
390 * (NULL if we originated)
391 *
392 * Checks whether a packet needs to be (re)broadcasted on the given interface.
393 *
394 * Return:
395 * BATADV_HARDIF_BCAST_NORECIPIENT: No neighbor on interface
396 * BATADV_HARDIF_BCAST_DUPFWD: Just one neighbor, but it is the forwarder
397 * BATADV_HARDIF_BCAST_DUPORIG: Just one neighbor, but it is the originator
398 * BATADV_HARDIF_BCAST_OK: Several neighbors, must broadcast
399 */
400int batadv_hardif_no_broadcast(struct batadv_hard_iface *if_outgoing,
401 u8 *orig_addr, u8 *orig_neigh)
402{
403 struct batadv_hardif_neigh_node *hardif_neigh;
404 struct hlist_node *first;
405 int ret = BATADV_HARDIF_BCAST_OK;
406
407 rcu_read_lock();
408
409 /* 0 neighbors -> no (re)broadcast */
410 first = rcu_dereference(hlist_first_rcu(&if_outgoing->neigh_list));
411 if (!first) {
412 ret = BATADV_HARDIF_BCAST_NORECIPIENT;
413 goto out;
414 }
415
416 /* >1 neighbors -> (re)brodcast */
417 if (rcu_dereference(hlist_next_rcu(first)))
418 goto out;
419
420 hardif_neigh = hlist_entry(first, struct batadv_hardif_neigh_node,
421 list);
422
423 /* 1 neighbor, is the originator -> no rebroadcast */
424 if (orig_addr && batadv_compare_eth(hardif_neigh->orig, orig_addr)) {
425 ret = BATADV_HARDIF_BCAST_DUPORIG;
426 /* 1 neighbor, is the one we received from -> no rebroadcast */
427 } else if (orig_neigh &&
428 batadv_compare_eth(hardif_neigh->orig, orig_neigh)) {
429 ret = BATADV_HARDIF_BCAST_DUPFWD;
430 }
431
432out:
433 rcu_read_unlock();
434 return ret;
435}
436
Sven Eckelmann56303d32012-06-05 22:31:31 +0200437static struct batadv_hard_iface *
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200438batadv_hardif_get_active(const struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000439{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200440 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000441
442 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200443 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +0000444 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000445 continue;
446
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200447 if (hard_iface->if_status == BATADV_IF_ACTIVE &&
Sven Eckelmann7a659d52016-01-16 10:29:54 +0100448 kref_get_unless_zero(&hard_iface->refcount))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000449 goto out;
450 }
451
Marek Lindnere6c10f42011-02-18 12:33:20 +0000452 hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000453
454out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000455 rcu_read_unlock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000456 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000457}
458
Sven Eckelmann56303d32012-06-05 22:31:31 +0200459static void batadv_primary_if_update_addr(struct batadv_priv *bat_priv,
460 struct batadv_hard_iface *oldif)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000461{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200462 struct batadv_hard_iface *primary_if;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200463
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200464 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200465 if (!primary_if)
466 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000467
Antonio Quartulli785ea112011-11-23 11:35:44 +0100468 batadv_dat_init_own_addr(bat_priv, primary_if);
Sven Eckelmann08adf152012-05-12 13:38:47 +0200469 batadv_bla_update_orig_address(bat_priv, primary_if, oldif);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200470out:
471 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100472 batadv_hardif_put(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000473}
474
Sven Eckelmann56303d32012-06-05 22:31:31 +0200475static void batadv_primary_if_select(struct batadv_priv *bat_priv,
476 struct batadv_hard_iface *new_hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000477{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200478 struct batadv_hard_iface *curr_hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000479
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200480 ASSERT_RTNL();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000481
Sven Eckelmann17a86912016-04-11 13:06:40 +0200482 if (new_hard_iface)
483 kref_get(&new_hard_iface->refcount);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000484
Sven Eckelmann728cbc62011-05-15 00:50:21 +0200485 curr_hard_iface = rcu_dereference_protected(bat_priv->primary_if, 1);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200486 rcu_assign_pointer(bat_priv->primary_if, new_hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000487
Marek Lindner32ae9b22011-04-20 15:40:58 +0200488 if (!new_hard_iface)
Simon Wunderlich23721382012-01-22 20:00:19 +0100489 goto out;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200490
Antonio Quartulli29824a52016-05-25 23:27:31 +0800491 bat_priv->algo_ops->iface.primary_set(new_hard_iface);
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200492 batadv_primary_if_update_addr(bat_priv, curr_hard_iface);
Simon Wunderlich23721382012-01-22 20:00:19 +0100493
494out:
495 if (curr_hard_iface)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100496 batadv_hardif_put(curr_hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000497}
498
Sven Eckelmann56303d32012-06-05 22:31:31 +0200499static bool
500batadv_hardif_is_iface_up(const struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000501{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000502 if (hard_iface->net_dev->flags & IFF_UP)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000503 return true;
504
505 return false;
506}
507
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200508static void batadv_check_known_mac_addr(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000509{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200510 const struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000511
512 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200513 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Sven Eckelmann825ffe12017-08-23 21:52:13 +0200514 if (hard_iface->if_status != BATADV_IF_ACTIVE &&
515 hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000516 continue;
517
Marek Lindnere6c10f42011-02-18 12:33:20 +0000518 if (hard_iface->net_dev == net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000519 continue;
520
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200521 if (!batadv_compare_eth(hard_iface->net_dev->dev_addr,
522 net_dev->dev_addr))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000523 continue;
524
Sven Eckelmann67969582012-03-26 16:22:45 +0200525 pr_warn("The newly added mac address (%pM) already exists on: %s\n",
526 net_dev->dev_addr, hard_iface->net_dev->name);
527 pr_warn("It is strongly recommended to keep mac addresses unique to avoid problems!\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000528 }
529 rcu_read_unlock();
530}
531
Sven Eckelmann7bca68c2015-08-07 19:28:42 +0200532/**
533 * batadv_hardif_recalc_extra_skbroom() - Recalculate skbuff extra head/tailroom
534 * @soft_iface: netdev struct of the mesh interface
535 */
536static void batadv_hardif_recalc_extra_skbroom(struct net_device *soft_iface)
537{
538 const struct batadv_hard_iface *hard_iface;
539 unsigned short lower_header_len = ETH_HLEN;
540 unsigned short lower_headroom = 0;
541 unsigned short lower_tailroom = 0;
542 unsigned short needed_headroom;
543
544 rcu_read_lock();
545 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
546 if (hard_iface->if_status == BATADV_IF_NOT_IN_USE)
547 continue;
548
549 if (hard_iface->soft_iface != soft_iface)
550 continue;
551
552 lower_header_len = max_t(unsigned short, lower_header_len,
553 hard_iface->net_dev->hard_header_len);
554
555 lower_headroom = max_t(unsigned short, lower_headroom,
556 hard_iface->net_dev->needed_headroom);
557
558 lower_tailroom = max_t(unsigned short, lower_tailroom,
559 hard_iface->net_dev->needed_tailroom);
560 }
561 rcu_read_unlock();
562
563 needed_headroom = lower_headroom + (lower_header_len - ETH_HLEN);
564 needed_headroom += batadv_max_header_len();
565
566 soft_iface->needed_headroom = needed_headroom;
567 soft_iface->needed_tailroom = lower_tailroom;
568}
569
Sven Eckelmannff15c272017-12-02 19:51:53 +0100570/**
571 * batadv_hardif_min_mtu() - Calculate maximum MTU for soft interface
572 * @soft_iface: netdev struct of the soft interface
573 *
574 * Return: MTU for the soft-interface (limited by the minimal MTU of all active
575 * slave interfaces)
576 */
Sven Eckelmann95638772012-05-12 02:09:31 +0200577int batadv_hardif_min_mtu(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000578{
Marek Lindnera19d3d82013-05-27 15:33:25 +0800579 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200580 const struct batadv_hard_iface *hard_iface;
Antonio Quartulli930cd6e2014-01-21 11:22:05 +0100581 int min_mtu = INT_MAX;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000582
583 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200584 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Sven Eckelmann825ffe12017-08-23 21:52:13 +0200585 if (hard_iface->if_status != BATADV_IF_ACTIVE &&
586 hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000587 continue;
588
Marek Lindnere6c10f42011-02-18 12:33:20 +0000589 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000590 continue;
591
Marek Lindnera19d3d82013-05-27 15:33:25 +0800592 min_mtu = min_t(int, hard_iface->net_dev->mtu, min_mtu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000593 }
594 rcu_read_unlock();
Marek Lindnera19d3d82013-05-27 15:33:25 +0800595
Marek Lindnera19d3d82013-05-27 15:33:25 +0800596 if (atomic_read(&bat_priv->fragmentation) == 0)
597 goto out;
598
599 /* with fragmentation enabled the maximum size of internally generated
600 * packets such as translation table exchanges or tvlv containers, etc
601 * has to be calculated
602 */
603 min_mtu = min_t(int, min_mtu, BATADV_FRAG_MAX_FRAG_SIZE);
604 min_mtu -= sizeof(struct batadv_frag_packet);
605 min_mtu *= BATADV_FRAG_MAX_FRAGMENTS;
Marek Lindnera19d3d82013-05-27 15:33:25 +0800606
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000607out:
Antonio Quartulli930cd6e2014-01-21 11:22:05 +0100608 /* report to the other components the maximum amount of bytes that
609 * batman-adv can send over the wire (without considering the payload
610 * overhead). For example, this value is used by TT to compute the
611 * maximum local table table size
612 */
613 atomic_set(&bat_priv->packet_size_max, min_mtu);
614
615 /* the real soft-interface MTU is computed by removing the payload
616 * overhead from the maximum amount of bytes that was just computed.
617 *
618 * However batman-adv does not support MTUs bigger than ETH_DATA_LEN
619 */
620 return min_t(int, min_mtu - batadv_max_header_len(), ETH_DATA_LEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000621}
622
Sven Eckelmannff15c272017-12-02 19:51:53 +0100623/**
624 * batadv_update_min_mtu() - Adjusts the MTU if a new interface with a smaller
625 * MTU appeared
626 * @soft_iface: netdev struct of the soft interface
627 */
Sven Eckelmann95638772012-05-12 02:09:31 +0200628void batadv_update_min_mtu(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000629{
Marek Lindnera19d3d82013-05-27 15:33:25 +0800630 soft_iface->mtu = batadv_hardif_min_mtu(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000631
Marek Lindnera19d3d82013-05-27 15:33:25 +0800632 /* Check if the local translate table should be cleaned up to match a
633 * new (and smaller) MTU.
634 */
635 batadv_tt_local_resize_to_mtu(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000636}
637
Sven Eckelmann56303d32012-06-05 22:31:31 +0200638static void
639batadv_hardif_activate_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000640{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200641 struct batadv_priv *bat_priv;
642 struct batadv_hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000643
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200644 if (hard_iface->if_status != BATADV_IF_INACTIVE)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200645 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000646
Marek Lindnere6c10f42011-02-18 12:33:20 +0000647 bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000648
Antonio Quartulli29824a52016-05-25 23:27:31 +0800649 bat_priv->algo_ops->iface.update_mac(hard_iface);
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200650 hard_iface->if_status = BATADV_IF_TO_BE_ACTIVATED;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000651
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200652 /* the first active interface becomes our primary interface or
Antonio Quartulli015758d2011-07-09 17:52:13 +0200653 * the next active interface after the old primary interface was removed
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000654 */
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200655 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200656 if (!primary_if)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200657 batadv_primary_if_select(bat_priv, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000658
Sven Eckelmann3e348192012-05-16 20:23:22 +0200659 batadv_info(hard_iface->soft_iface, "Interface activated: %s\n",
660 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000661
Sven Eckelmann95638772012-05-12 02:09:31 +0200662 batadv_update_min_mtu(hard_iface->soft_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200663
Antonio Quartulli29824a52016-05-25 23:27:31 +0800664 if (bat_priv->algo_ops->iface.activate)
665 bat_priv->algo_ops->iface.activate(hard_iface);
Antonio Quartullib6cf5d42016-04-14 09:37:05 +0800666
Marek Lindner32ae9b22011-04-20 15:40:58 +0200667out:
668 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100669 batadv_hardif_put(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000670}
671
Sven Eckelmann56303d32012-06-05 22:31:31 +0200672static void
673batadv_hardif_deactivate_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000674{
Sven Eckelmann825ffe12017-08-23 21:52:13 +0200675 if (hard_iface->if_status != BATADV_IF_ACTIVE &&
676 hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000677 return;
678
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200679 hard_iface->if_status = BATADV_IF_INACTIVE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000680
Sven Eckelmann3e348192012-05-16 20:23:22 +0200681 batadv_info(hard_iface->soft_iface, "Interface deactivated: %s\n",
682 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000683
Sven Eckelmann95638772012-05-12 02:09:31 +0200684 batadv_update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000685}
686
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100687/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100688 * batadv_master_del_slave() - remove hard_iface from the current master iface
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100689 * @slave: the interface enslaved in another master
690 * @master: the master from which slave has to be removed
691 *
692 * Invoke ndo_del_slave on master passing slave as argument. In this way slave
693 * is free'd and master can correctly change its internal state.
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200694 *
695 * Return: 0 on success, a negative value representing the error otherwise
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100696 */
697static int batadv_master_del_slave(struct batadv_hard_iface *slave,
698 struct net_device *master)
699{
700 int ret;
701
702 if (!master)
703 return 0;
704
705 ret = -EBUSY;
706 if (master->netdev_ops->ndo_del_slave)
707 ret = master->netdev_ops->ndo_del_slave(master, slave->net_dev);
708
709 return ret;
710}
711
Sven Eckelmannff15c272017-12-02 19:51:53 +0100712/**
713 * batadv_hardif_enable_interface() - Enslave hard interface to soft interface
714 * @hard_iface: hard interface to add to soft interface
715 * @net: the applicable net namespace
716 * @iface_name: name of the soft interface
717 *
718 * Return: 0 on success or negative error number in case of failure
719 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200720int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface,
Andrew Lunn2cd45a02016-04-21 12:57:27 +0200721 struct net *net, const char *iface_name)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000722{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200723 struct batadv_priv *bat_priv;
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100724 struct net_device *soft_iface, *master;
Antonio Quartulli293e9332013-05-19 12:55:16 +0200725 __be16 ethertype = htons(ETH_P_BATMAN);
Marek Lindner411d6ed2013-05-08 13:31:59 +0800726 int max_header_len = batadv_max_header_len();
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000727 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000728
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200729 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000730 goto out;
731
Sven Eckelmann17a86912016-04-11 13:06:40 +0200732 kref_get(&hard_iface->refcount);
Marek Lindnered75ccb2011-02-10 14:33:51 +0000733
Andrew Lunn2cd45a02016-04-21 12:57:27 +0200734 soft_iface = dev_get_by_name(net, iface_name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000735
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000736 if (!soft_iface) {
Andrew Lunn2cd45a02016-04-21 12:57:27 +0200737 soft_iface = batadv_softif_create(net, iface_name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000738
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000739 if (!soft_iface) {
740 ret = -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000741 goto err;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000742 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000743
744 /* dev_get_by_name() increases the reference counter for us */
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000745 dev_hold(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000746 }
747
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200748 if (!batadv_softif_is_valid(soft_iface)) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100749 pr_err("Can't create batman mesh interface %s: already exists as regular interface\n",
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000750 soft_iface->name);
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000751 ret = -EINVAL;
Marek Lindner77af7572012-02-07 17:20:48 +0800752 goto err_dev;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000753 }
754
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100755 /* check if the interface is enslaved in another virtual one and
756 * in that case unlink it first
757 */
758 master = netdev_master_upper_dev_get(hard_iface->net_dev);
759 ret = batadv_master_del_slave(hard_iface, master);
760 if (ret)
761 goto err_dev;
762
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000763 hard_iface->soft_iface = soft_iface;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000764 bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200765
Sven Eckelmannf22e0892017-12-26 15:14:01 +0100766 if (bat_priv->num_ifaces >= UINT_MAX) {
767 ret = -ENOSPC;
768 goto err_dev;
769 }
770
Jiri Pirko6dffb042015-12-03 12:12:10 +0100771 ret = netdev_master_upper_dev_link(hard_iface->net_dev,
David Ahern42ab19e2017-10-04 17:48:47 -0700772 soft_iface, NULL, NULL, NULL);
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800773 if (ret)
774 goto err_dev;
775
Antonio Quartulli29824a52016-05-25 23:27:31 +0800776 ret = bat_priv->algo_ops->iface.enable(hard_iface);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200777 if (ret < 0)
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800778 goto err_upper;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000779
Marek Lindnere6c10f42011-02-18 12:33:20 +0000780 hard_iface->if_num = bat_priv->num_ifaces;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000781 bat_priv->num_ifaces++;
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200782 hard_iface->if_status = BATADV_IF_INACTIVE;
Simon Wunderlich62446302012-07-01 22:51:55 +0200783 ret = batadv_orig_hash_add_if(hard_iface, bat_priv->num_ifaces);
784 if (ret < 0) {
Antonio Quartulli29824a52016-05-25 23:27:31 +0800785 bat_priv->algo_ops->iface.disable(hard_iface);
Simon Wunderlich62446302012-07-01 22:51:55 +0200786 bat_priv->num_ifaces--;
787 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800788 goto err_upper;
Simon Wunderlich62446302012-07-01 22:51:55 +0200789 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000790
Sven Eckelmannd7d6de92016-03-05 16:09:18 +0100791 kref_get(&hard_iface->refcount);
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200792 hard_iface->batman_adv_ptype.type = ethertype;
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200793 hard_iface->batman_adv_ptype.func = batadv_batman_skb_recv;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000794 hard_iface->batman_adv_ptype.dev = hard_iface->net_dev;
795 dev_add_pack(&hard_iface->batman_adv_ptype);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000796
Sven Eckelmann3e348192012-05-16 20:23:22 +0200797 batadv_info(hard_iface->soft_iface, "Adding interface: %s\n",
798 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000799
Sven Eckelmann0aca2362012-06-19 20:26:30 +0200800 if (atomic_read(&bat_priv->fragmentation) &&
Marek Lindner411d6ed2013-05-08 13:31:59 +0800801 hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
Sven Eckelmann3e348192012-05-16 20:23:22 +0200802 batadv_info(hard_iface->soft_iface,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800803 "The MTU of interface %s is too small (%i) to handle the transport of batman-adv packets. Packets going over this interface will be fragmented on layer2 which could impact the performance. Setting the MTU to %i would solve the problem.\n",
Sven Eckelmann3e348192012-05-16 20:23:22 +0200804 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800805 ETH_DATA_LEN + max_header_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000806
Sven Eckelmann0aca2362012-06-19 20:26:30 +0200807 if (!atomic_read(&bat_priv->fragmentation) &&
Marek Lindner411d6ed2013-05-08 13:31:59 +0800808 hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
Sven Eckelmann3e348192012-05-16 20:23:22 +0200809 batadv_info(hard_iface->soft_iface,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800810 "The MTU of interface %s is too small (%i) to handle the transport of batman-adv packets. If you experience problems getting traffic through try increasing the MTU to %i.\n",
Sven Eckelmann3e348192012-05-16 20:23:22 +0200811 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800812 ETH_DATA_LEN + max_header_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000813
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200814 if (batadv_hardif_is_iface_up(hard_iface))
815 batadv_hardif_activate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000816 else
Sven Eckelmann3e348192012-05-16 20:23:22 +0200817 batadv_err(hard_iface->soft_iface,
818 "Not using interface %s (retrying later): interface not active\n",
819 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000820
Sven Eckelmann7bca68c2015-08-07 19:28:42 +0200821 batadv_hardif_recalc_extra_skbroom(soft_iface);
822
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000823out:
824 return 0;
825
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800826err_upper:
827 netdev_upper_dev_unlink(hard_iface->net_dev, soft_iface);
Marek Lindner77af7572012-02-07 17:20:48 +0800828err_dev:
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800829 hard_iface->soft_iface = NULL;
Marek Lindner77af7572012-02-07 17:20:48 +0800830 dev_put(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000831err:
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100832 batadv_hardif_put(hard_iface);
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000833 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000834}
835
Sven Eckelmannff15c272017-12-02 19:51:53 +0100836/**
837 * batadv_hardif_disable_interface() - Remove hard interface from soft interface
838 * @hard_iface: hard interface to be removed
839 * @autodel: whether to delete soft interface when it doesn't contain any other
840 * slave interfaces
841 */
Sven Eckelmanna15fd362013-02-11 17:10:24 +0800842void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface,
843 enum batadv_hard_if_cleanup autodel)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000844{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200845 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
846 struct batadv_hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000847
Sven Eckelmannf2d23862016-03-19 13:55:21 +0100848 batadv_hardif_deactivate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000849
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200850 if (hard_iface->if_status != BATADV_IF_INACTIVE)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200851 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000852
Sven Eckelmann3e348192012-05-16 20:23:22 +0200853 batadv_info(hard_iface->soft_iface, "Removing interface: %s\n",
854 hard_iface->net_dev->name);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000855 dev_remove_pack(&hard_iface->batman_adv_ptype);
Sven Eckelmannd7d6de92016-03-05 16:09:18 +0100856 batadv_hardif_put(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000857
858 bat_priv->num_ifaces--;
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200859 batadv_orig_hash_del_if(hard_iface, bat_priv->num_ifaces);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000860
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200861 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200862 if (hard_iface == primary_if) {
Sven Eckelmann56303d32012-06-05 22:31:31 +0200863 struct batadv_hard_iface *new_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000864
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200865 new_if = batadv_hardif_get_active(hard_iface->soft_iface);
866 batadv_primary_if_select(bat_priv, new_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000867
868 if (new_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100869 batadv_hardif_put(new_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000870 }
871
Antonio Quartulli29824a52016-05-25 23:27:31 +0800872 bat_priv->algo_ops->iface.disable(hard_iface);
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200873 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000874
Marek Lindnere6c10f42011-02-18 12:33:20 +0000875 /* delete all references to this hard_iface */
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200876 batadv_purge_orig_ref(bat_priv);
Sven Eckelmann9455e342012-05-12 02:09:37 +0200877 batadv_purge_outstanding_packets(bat_priv, hard_iface);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000878 dev_put(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000879
Antonio Quartullia5256f72015-08-04 22:26:19 +0200880 netdev_upper_dev_unlink(hard_iface->net_dev, hard_iface->soft_iface);
Sven Eckelmann7bca68c2015-08-07 19:28:42 +0200881 batadv_hardif_recalc_extra_skbroom(hard_iface->soft_iface);
Antonio Quartullia5256f72015-08-04 22:26:19 +0200882
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000883 /* nobody uses this interface anymore */
Sven Eckelmannf22e0892017-12-26 15:14:01 +0100884 if (bat_priv->num_ifaces == 0) {
Antonio Quartulli8257f552013-08-19 18:39:59 +0200885 batadv_gw_check_client_stop(bat_priv);
886
887 if (autodel == BATADV_IF_CLEANUP_AUTO)
888 batadv_softif_destroy_sysfs(hard_iface->soft_iface);
889 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000890
Sven Eckelmann27915aa2016-11-02 18:14:43 +0100891 hard_iface->soft_iface = NULL;
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100892 batadv_hardif_put(hard_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200893
894out:
895 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100896 batadv_hardif_put(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000897}
898
Sven Eckelmann56303d32012-06-05 22:31:31 +0200899static struct batadv_hard_iface *
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200900batadv_hardif_add_interface(struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000901{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200902 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000903 int ret;
904
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200905 ASSERT_RTNL();
906
Sven Eckelmann4b426b12016-02-22 21:02:39 +0100907 if (!batadv_is_valid_iface(net_dev))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000908 goto out;
909
910 dev_hold(net_dev);
911
Antonio Quartulli7db3fc22013-04-02 12:16:53 +0200912 hard_iface = kzalloc(sizeof(*hard_iface), GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700913 if (!hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000914 goto release_dev;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000915
Sven Eckelmann5853e222012-05-12 02:09:24 +0200916 ret = batadv_sysfs_add_hardif(&hard_iface->hardif_obj, net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000917 if (ret)
918 goto free_if;
919
Sven Eckelmannf22e0892017-12-26 15:14:01 +0100920 hard_iface->if_num = 0;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000921 hard_iface->net_dev = net_dev;
922 hard_iface->soft_iface = NULL;
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200923 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100924
925 ret = batadv_debugfs_add_hardif(hard_iface);
926 if (ret)
927 goto free_sysfs;
928
Marek Lindnere6c10f42011-02-18 12:33:20 +0000929 INIT_LIST_HEAD(&hard_iface->list);
Marek Lindnercef63412015-08-04 21:09:55 +0800930 INIT_HLIST_HEAD(&hard_iface->neigh_list);
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100931
Marek Lindnercef63412015-08-04 21:09:55 +0800932 spin_lock_init(&hard_iface->neigh_list_lock);
Sven Eckelmannb2367e42016-07-15 17:39:28 +0200933 kref_init(&hard_iface->refcount);
Marek Lindnercef63412015-08-04 21:09:55 +0800934
Matthias Schiffercaf65bf2013-03-09 23:14:23 +0100935 hard_iface->num_bcasts = BATADV_NUM_BCASTS_DEFAULT;
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200936 hard_iface->wifi_flags = batadv_wifi_flags_evaluate(net_dev);
937 if (batadv_is_wifi_hardif(hard_iface))
Matthias Schiffercaf65bf2013-03-09 23:14:23 +0100938 hard_iface->num_bcasts = BATADV_NUM_BCASTS_WIRELESS;
939
Marek Lindner7db682d2016-05-10 22:31:59 +0800940 batadv_v_hardif_init(hard_iface);
941
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200942 batadv_check_known_mac_addr(hard_iface->net_dev);
Sven Eckelmannb2367e42016-07-15 17:39:28 +0200943 kref_get(&hard_iface->refcount);
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200944 list_add_tail_rcu(&hard_iface->list, &batadv_hardif_list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000945
Marek Lindnere6c10f42011-02-18 12:33:20 +0000946 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000947
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100948free_sysfs:
949 batadv_sysfs_del_hardif(&hard_iface->hardif_obj);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000950free_if:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000951 kfree(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000952release_dev:
953 dev_put(net_dev);
954out:
955 return NULL;
956}
957
Sven Eckelmann56303d32012-06-05 22:31:31 +0200958static void batadv_hardif_remove_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000959{
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200960 ASSERT_RTNL();
961
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000962 /* first deactivate interface */
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200963 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmanna15fd362013-02-11 17:10:24 +0800964 batadv_hardif_disable_interface(hard_iface,
Sven Eckelmann06d640c2016-07-10 15:47:57 +0200965 BATADV_IF_CLEANUP_KEEP);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000966
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200967 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000968 return;
969
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200970 hard_iface->if_status = BATADV_IF_TO_BE_REMOVED;
Sven Eckelmann569c9852016-06-13 07:41:31 +0200971 batadv_debugfs_del_hardif(hard_iface);
972 batadv_sysfs_del_hardif(&hard_iface->hardif_obj);
973 batadv_hardif_put(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000974}
975
Sven Eckelmannff15c272017-12-02 19:51:53 +0100976/**
977 * batadv_hardif_remove_interfaces() - Remove all hard interfaces
978 */
Sven Eckelmann95638772012-05-12 02:09:31 +0200979void batadv_hardif_remove_interfaces(void)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000980{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200981 struct batadv_hard_iface *hard_iface, *hard_iface_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000982
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200983 rtnl_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000984 list_for_each_entry_safe(hard_iface, hard_iface_tmp,
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200985 &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +0000986 list_del_rcu(&hard_iface->list);
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200987 batadv_hardif_remove_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000988 }
989 rtnl_unlock();
990}
991
Sven Eckelmann6da7be72018-06-01 19:24:24 +0200992/**
993 * batadv_hard_if_event_softif() - Handle events for soft interfaces
994 * @event: NETDEV_* event to handle
995 * @net_dev: net_device which generated an event
996 *
997 * Return: NOTIFY_* result
998 */
999static int batadv_hard_if_event_softif(unsigned long event,
1000 struct net_device *net_dev)
1001{
1002 struct batadv_priv *bat_priv;
1003
1004 switch (event) {
1005 case NETDEV_REGISTER:
1006 batadv_sysfs_add_meshif(net_dev);
1007 bat_priv = netdev_priv(net_dev);
1008 batadv_softif_create_vlan(bat_priv, BATADV_NO_FLAGS);
1009 break;
1010 case NETDEV_CHANGENAME:
1011 batadv_debugfs_rename_meshif(net_dev);
1012 break;
1013 }
1014
1015 return NOTIFY_DONE;
1016}
1017
Sven Eckelmann18a1cb62012-05-12 18:33:57 +02001018static int batadv_hard_if_event(struct notifier_block *this,
1019 unsigned long event, void *ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001020{
Jiri Pirko351638e2013-05-28 01:30:21 +00001021 struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
Sven Eckelmann56303d32012-06-05 22:31:31 +02001022 struct batadv_hard_iface *hard_iface;
1023 struct batadv_hard_iface *primary_if = NULL;
1024 struct batadv_priv *bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001025
Sven Eckelmann6da7be72018-06-01 19:24:24 +02001026 if (batadv_softif_is_valid(net_dev))
1027 return batadv_hard_if_event_softif(event, net_dev);
Sven Eckelmann37130292013-02-11 17:10:22 +08001028
Sven Eckelmann56303d32012-06-05 22:31:31 +02001029 hard_iface = batadv_hardif_get_by_netdev(net_dev);
Andrew Lunna1a66b12015-12-03 21:12:33 +01001030 if (!hard_iface && (event == NETDEV_REGISTER ||
1031 event == NETDEV_POST_TYPE_CHANGE))
Sven Eckelmann18a1cb62012-05-12 18:33:57 +02001032 hard_iface = batadv_hardif_add_interface(net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001033
Marek Lindnere6c10f42011-02-18 12:33:20 +00001034 if (!hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001035 goto out;
1036
1037 switch (event) {
1038 case NETDEV_UP:
Sven Eckelmann18a1cb62012-05-12 18:33:57 +02001039 batadv_hardif_activate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001040 break;
1041 case NETDEV_GOING_DOWN:
1042 case NETDEV_DOWN:
Sven Eckelmann18a1cb62012-05-12 18:33:57 +02001043 batadv_hardif_deactivate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001044 break;
1045 case NETDEV_UNREGISTER:
Andrew Lunna1a66b12015-12-03 21:12:33 +01001046 case NETDEV_PRE_TYPE_CHANGE:
Marek Lindnere6c10f42011-02-18 12:33:20 +00001047 list_del_rcu(&hard_iface->list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001048
Sven Eckelmann18a1cb62012-05-12 18:33:57 +02001049 batadv_hardif_remove_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001050 break;
1051 case NETDEV_CHANGEMTU:
Marek Lindnere6c10f42011-02-18 12:33:20 +00001052 if (hard_iface->soft_iface)
Sven Eckelmann95638772012-05-12 02:09:31 +02001053 batadv_update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001054 break;
1055 case NETDEV_CHANGEADDR:
Sven Eckelmanne9a4f292012-06-03 22:19:19 +02001056 if (hard_iface->if_status == BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001057 goto hardif_put;
1058
Sven Eckelmann18a1cb62012-05-12 18:33:57 +02001059 batadv_check_known_mac_addr(hard_iface->net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001060
Marek Lindnere6c10f42011-02-18 12:33:20 +00001061 bat_priv = netdev_priv(hard_iface->soft_iface);
Antonio Quartulli29824a52016-05-25 23:27:31 +08001062 bat_priv->algo_ops->iface.update_mac(hard_iface);
Marek Lindner01c42242011-11-28 21:31:55 +08001063
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001064 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +02001065 if (!primary_if)
1066 goto hardif_put;
1067
1068 if (hard_iface == primary_if)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +02001069 batadv_primary_if_update_addr(bat_priv, NULL);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001070 break;
Sven Eckelmannee3b5e92016-09-30 15:21:06 +02001071 case NETDEV_CHANGEUPPER:
1072 hard_iface->wifi_flags = batadv_wifi_flags_evaluate(net_dev);
1073 if (batadv_is_wifi_hardif(hard_iface))
1074 hard_iface->num_bcasts = BATADV_NUM_BCASTS_WIRELESS;
1075 break;
Sven Eckelmann36dc6212018-06-01 19:24:23 +02001076 case NETDEV_CHANGENAME:
1077 batadv_debugfs_rename_hardif(hard_iface);
1078 break;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001079 default:
1080 break;
Joe Perchesf81c6222011-06-03 11:51:19 +00001081 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001082
1083hardif_put:
Sven Eckelmann82047ad2016-01-17 11:01:10 +01001084 batadv_hardif_put(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001085out:
Marek Lindner32ae9b22011-04-20 15:40:58 +02001086 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +01001087 batadv_hardif_put(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001088 return NOTIFY_DONE;
1089}
1090
Sven Eckelmann95638772012-05-12 02:09:31 +02001091struct notifier_block batadv_hard_if_notifier = {
Sven Eckelmann18a1cb62012-05-12 18:33:57 +02001092 .notifier_call = batadv_hard_if_event,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001093};