blob: 33425a022026260aafccce3508004b2d54b9ccd6 [file] [log] [blame]
Sven Eckelmann7db7d9f2017-11-19 15:05:11 +01001// SPDX-License-Identifier: GPL-2.0
Sven Eckelmannac79cbb2017-01-01 00:00:00 +01002/* Copyright (C) 2007-2017 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 Eckelmann1e2c2a42015-04-17 19:40:28 +020041
Sven Eckelmanna2d08162016-05-15 11:07:46 +020042#include "bat_v.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020043#include "bridge_loop_avoidance.h"
44#include "debugfs.h"
45#include "distributed-arp-table.h"
46#include "gateway_client.h"
Sven Eckelmannba412082016-05-15 23:48:31 +020047#include "log.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020048#include "originator.h"
49#include "packet.h"
50#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 Eckelmann56303d32012-06-05 22:31:31 +020070struct batadv_hard_iface *
71batadv_hardif_get_by_netdev(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000072{
Sven Eckelmann56303d32012-06-05 22:31:31 +020073 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000074
75 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +020076 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +000077 if (hard_iface->net_dev == net_dev &&
Sven Eckelmann7a659d52016-01-16 10:29:54 +010078 kref_get_unless_zero(&hard_iface->refcount))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000079 goto out;
80 }
81
Marek Lindnere6c10f42011-02-18 12:33:20 +000082 hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000083
84out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000085 rcu_read_unlock();
Marek Lindnere6c10f42011-02-18 12:33:20 +000086 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000087}
88
Antonio Quartullib7eddd02012-09-09 10:46:46 +020089/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +010090 * batadv_getlink_net() - return link net namespace (of use fallback)
Andrew Lunn275019d2016-07-03 13:31:33 +020091 * @netdev: net_device to check
92 * @fallback_net: return in case get_link_net is not available for @netdev
93 *
94 * Return: result of rtnl_link_ops->get_link_net or @fallback_net
95 */
Sven Eckelmann88ffc7d2016-09-30 15:21:00 +020096static struct net *batadv_getlink_net(const struct net_device *netdev,
97 struct net *fallback_net)
Andrew Lunn275019d2016-07-03 13:31:33 +020098{
99 if (!netdev->rtnl_link_ops)
100 return fallback_net;
101
102 if (!netdev->rtnl_link_ops->get_link_net)
103 return fallback_net;
104
105 return netdev->rtnl_link_ops->get_link_net(netdev);
106}
107
108/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100109 * batadv_mutual_parents() - check if two devices are each others parent
Andrew Lunn275019d2016-07-03 13:31:33 +0200110 * @dev1: 1st net dev
111 * @net1: 1st devices netns
112 * @dev2: 2nd net dev
113 * @net2: 2nd devices netns
Andrew Lunn1bc4e2b2016-02-11 22:15:57 +0100114 *
115 * veth devices come in pairs and each is the parent of the other!
116 *
117 * Return: true if the devices are each others parent, otherwise false
118 */
119static bool batadv_mutual_parents(const struct net_device *dev1,
Sven Eckelmann88ffc7d2016-09-30 15:21:00 +0200120 struct net *net1,
Andrew Lunn275019d2016-07-03 13:31:33 +0200121 const struct net_device *dev2,
Sven Eckelmann88ffc7d2016-09-30 15:21:00 +0200122 struct net *net2)
Andrew Lunn1bc4e2b2016-02-11 22:15:57 +0100123{
124 int dev1_parent_iflink = dev_get_iflink(dev1);
125 int dev2_parent_iflink = dev_get_iflink(dev2);
Andrew Lunn275019d2016-07-03 13:31:33 +0200126 const struct net *dev1_parent_net;
127 const struct net *dev2_parent_net;
128
129 dev1_parent_net = batadv_getlink_net(dev1, net1);
130 dev2_parent_net = batadv_getlink_net(dev2, net2);
Andrew Lunn1bc4e2b2016-02-11 22:15:57 +0100131
132 if (!dev1_parent_iflink || !dev2_parent_iflink)
133 return false;
134
135 return (dev1_parent_iflink == dev2->ifindex) &&
Andrew Lunn275019d2016-07-03 13:31:33 +0200136 (dev2_parent_iflink == dev1->ifindex) &&
137 net_eq(dev1_parent_net, net2) &&
138 net_eq(dev2_parent_net, net1);
Andrew Lunn1bc4e2b2016-02-11 22:15:57 +0100139}
140
141/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100142 * batadv_is_on_batman_iface() - check if a device is a batman iface descendant
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200143 * @net_dev: the device to check
144 *
145 * If the user creates any virtual device on top of a batman-adv interface, it
146 * is important to prevent this new interface to be used to create a new mesh
147 * network (this behaviour would lead to a batman-over-batman configuration).
148 * This function recursively checks all the fathers of the device passed as
149 * argument looking for a batman-adv soft interface.
150 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200151 * Return: true if the device is descendant of a batman-adv mesh interface (or
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200152 * if it is a batman-adv interface itself), false otherwise
153 */
154static bool batadv_is_on_batman_iface(const struct net_device *net_dev)
155{
Andrew Lunn2cd45a02016-04-21 12:57:27 +0200156 struct net *net = dev_net(net_dev);
Andrew Lunn275019d2016-07-03 13:31:33 +0200157 struct net_device *parent_dev;
Sven Eckelmann88ffc7d2016-09-30 15:21:00 +0200158 struct net *parent_net;
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200159 bool ret;
160
161 /* check if this is a batman-adv mesh interface */
162 if (batadv_softif_is_valid(net_dev))
163 return true;
164
165 /* no more parents..stop recursion */
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200166 if (dev_get_iflink(net_dev) == 0 ||
167 dev_get_iflink(net_dev) == net_dev->ifindex)
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200168 return false;
169
Andrew Lunn275019d2016-07-03 13:31:33 +0200170 parent_net = batadv_getlink_net(net_dev, net);
171
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200172 /* recurse over the parent device */
Andrew Lunn275019d2016-07-03 13:31:33 +0200173 parent_dev = __dev_get_by_index((struct net *)parent_net,
174 dev_get_iflink(net_dev));
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200175 /* if we got a NULL parent_dev there is something broken.. */
176 if (WARN(!parent_dev, "Cannot find parent device"))
177 return false;
178
Andrew Lunn275019d2016-07-03 13:31:33 +0200179 if (batadv_mutual_parents(net_dev, net, parent_dev, parent_net))
Andrew Lunn1bc4e2b2016-02-11 22:15:57 +0100180 return false;
181
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200182 ret = batadv_is_on_batman_iface(parent_dev);
183
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200184 return ret;
185}
186
Sven Eckelmann4b426b12016-02-22 21:02:39 +0100187static bool batadv_is_valid_iface(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000188{
189 if (net_dev->flags & IFF_LOOPBACK)
Sven Eckelmann4b426b12016-02-22 21:02:39 +0100190 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000191
192 if (net_dev->type != ARPHRD_ETHER)
Sven Eckelmann4b426b12016-02-22 21:02:39 +0100193 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000194
195 if (net_dev->addr_len != ETH_ALEN)
Sven Eckelmann4b426b12016-02-22 21:02:39 +0100196 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000197
198 /* no batman over batman */
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200199 if (batadv_is_on_batman_iface(net_dev))
Sven Eckelmann4b426b12016-02-22 21:02:39 +0100200 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000201
Sven Eckelmann4b426b12016-02-22 21:02:39 +0100202 return true;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000203}
204
Matthias Schifferde68d102013-03-09 23:14:22 +0100205/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100206 * batadv_get_real_netdevice() - check if the given netdev struct is a virtual
Marek Lindner5ed4a462016-09-30 15:21:04 +0200207 * interface on top of another 'real' interface
208 * @netdev: the device to check
209 *
Marek Lindner1942de12016-09-30 15:21:05 +0200210 * Callers must hold the rtnl semaphore. You may want batadv_get_real_netdev()
211 * instead of this.
212 *
Marek Lindner5ed4a462016-09-30 15:21:04 +0200213 * Return: the 'real' net device or the original net device and NULL in case
214 * of an error.
215 */
216static struct net_device *batadv_get_real_netdevice(struct net_device *netdev)
217{
218 struct batadv_hard_iface *hard_iface = NULL;
219 struct net_device *real_netdev = NULL;
220 struct net *real_net;
221 struct net *net;
222 int ifindex;
223
224 ASSERT_RTNL();
225
226 if (!netdev)
227 return NULL;
228
229 if (netdev->ifindex == dev_get_iflink(netdev)) {
230 dev_hold(netdev);
231 return netdev;
232 }
233
234 hard_iface = batadv_hardif_get_by_netdev(netdev);
235 if (!hard_iface || !hard_iface->soft_iface)
236 goto out;
237
238 net = dev_net(hard_iface->soft_iface);
239 ifindex = dev_get_iflink(netdev);
240 real_net = batadv_getlink_net(netdev, net);
241 real_netdev = dev_get_by_index(real_net, ifindex);
242
243out:
244 if (hard_iface)
245 batadv_hardif_put(hard_iface);
246 return real_netdev;
247}
248
249/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100250 * batadv_get_real_netdev() - check if the given net_device struct is a virtual
Marek Lindner1942de12016-09-30 15:21:05 +0200251 * interface on top of another 'real' interface
Matthias Schifferde68d102013-03-09 23:14:22 +0100252 * @net_device: the device to check
253 *
Marek Lindner1942de12016-09-30 15:21:05 +0200254 * Return: the 'real' net device or the original net device and NULL in case
255 * of an error.
Matthias Schifferde68d102013-03-09 23:14:22 +0100256 */
Marek Lindner1942de12016-09-30 15:21:05 +0200257struct net_device *batadv_get_real_netdev(struct net_device *net_device)
258{
259 struct net_device *real_netdev;
260
261 rtnl_lock();
262 real_netdev = batadv_get_real_netdevice(net_device);
263 rtnl_unlock();
264
265 return real_netdev;
266}
267
268/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100269 * batadv_is_wext_netdev() - check if the given net_device struct is a
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200270 * wext wifi interface
Marek Lindnerf44a3ae2016-09-30 15:21:02 +0200271 * @net_device: the device to check
272 *
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200273 * Return: true if the net device is a wext wireless device, false
Marek Lindnerf44a3ae2016-09-30 15:21:02 +0200274 * otherwise.
275 */
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200276static bool batadv_is_wext_netdev(struct net_device *net_device)
Matthias Schifferde68d102013-03-09 23:14:22 +0100277{
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200278 if (!net_device)
279 return false;
280
Matthias Schifferde68d102013-03-09 23:14:22 +0100281#ifdef CONFIG_WIRELESS_EXT
282 /* pre-cfg80211 drivers have to implement WEXT, so it is possible to
283 * check for wireless_handlers != NULL
284 */
285 if (net_device->wireless_handlers)
286 return true;
287#endif
288
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200289 return false;
290}
291
292/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100293 * batadv_is_cfg80211_netdev() - check if the given net_device struct is a
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200294 * cfg80211 wifi interface
295 * @net_device: the device to check
296 *
297 * Return: true if the net device is a cfg80211 wireless device, false
298 * otherwise.
299 */
300static bool batadv_is_cfg80211_netdev(struct net_device *net_device)
301{
302 if (!net_device)
303 return false;
304
Matthias Schifferde68d102013-03-09 23:14:22 +0100305 /* cfg80211 drivers have to set ieee80211_ptr */
306 if (net_device->ieee80211_ptr)
307 return true;
308
309 return false;
310}
311
Linus Lüssing3111bee2016-08-07 12:34:19 +0200312/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100313 * batadv_wifi_flags_evaluate() - calculate wifi flags for net_device
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200314 * @net_device: the device to check
315 *
316 * Return: batadv_hard_iface_wifi_flags flags of the device
317 */
318static u32 batadv_wifi_flags_evaluate(struct net_device *net_device)
319{
320 u32 wifi_flags = 0;
Marek Lindner5ed4a462016-09-30 15:21:04 +0200321 struct net_device *real_netdev;
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200322
323 if (batadv_is_wext_netdev(net_device))
324 wifi_flags |= BATADV_HARDIF_WIFI_WEXT_DIRECT;
325
326 if (batadv_is_cfg80211_netdev(net_device))
327 wifi_flags |= BATADV_HARDIF_WIFI_CFG80211_DIRECT;
328
Marek Lindner5ed4a462016-09-30 15:21:04 +0200329 real_netdev = batadv_get_real_netdevice(net_device);
330 if (!real_netdev)
331 return wifi_flags;
332
333 if (real_netdev == net_device)
334 goto out;
335
336 if (batadv_is_wext_netdev(real_netdev))
337 wifi_flags |= BATADV_HARDIF_WIFI_WEXT_INDIRECT;
338
339 if (batadv_is_cfg80211_netdev(real_netdev))
340 wifi_flags |= BATADV_HARDIF_WIFI_CFG80211_INDIRECT;
341
342out:
343 dev_put(real_netdev);
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200344 return wifi_flags;
345}
346
347/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100348 * batadv_is_cfg80211_hardif() - check if the given hardif is a cfg80211 wifi
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200349 * interface
350 * @hard_iface: the device to check
351 *
352 * Return: true if the net device is a cfg80211 wireless device, false
353 * otherwise.
354 */
355bool batadv_is_cfg80211_hardif(struct batadv_hard_iface *hard_iface)
356{
357 u32 allowed_flags = 0;
358
359 allowed_flags |= BATADV_HARDIF_WIFI_CFG80211_DIRECT;
Marek Lindner5ed4a462016-09-30 15:21:04 +0200360 allowed_flags |= BATADV_HARDIF_WIFI_CFG80211_INDIRECT;
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200361
362 return !!(hard_iface->wifi_flags & allowed_flags);
363}
364
365/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100366 * batadv_is_wifi_hardif() - check if the given hardif is a wifi interface
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200367 * @hard_iface: the device to check
368 *
369 * Return: true if the net device is a 802.11 wireless device, false otherwise.
370 */
371bool batadv_is_wifi_hardif(struct batadv_hard_iface *hard_iface)
372{
373 if (!hard_iface)
374 return false;
375
376 return hard_iface->wifi_flags != 0;
Matthias Schifferde68d102013-03-09 23:14:22 +0100377}
378
Linus Lüssing3111bee2016-08-07 12:34:19 +0200379/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100380 * batadv_hardif_no_broadcast() - check whether (re)broadcast is necessary
Linus Lüssing3111bee2016-08-07 12:34:19 +0200381 * @if_outgoing: the outgoing interface checked and considered for (re)broadcast
382 * @orig_addr: the originator of this packet
383 * @orig_neigh: originator address of the forwarder we just got the packet from
384 * (NULL if we originated)
385 *
386 * Checks whether a packet needs to be (re)broadcasted on the given interface.
387 *
388 * Return:
389 * BATADV_HARDIF_BCAST_NORECIPIENT: No neighbor on interface
390 * BATADV_HARDIF_BCAST_DUPFWD: Just one neighbor, but it is the forwarder
391 * BATADV_HARDIF_BCAST_DUPORIG: Just one neighbor, but it is the originator
392 * BATADV_HARDIF_BCAST_OK: Several neighbors, must broadcast
393 */
394int batadv_hardif_no_broadcast(struct batadv_hard_iface *if_outgoing,
395 u8 *orig_addr, u8 *orig_neigh)
396{
397 struct batadv_hardif_neigh_node *hardif_neigh;
398 struct hlist_node *first;
399 int ret = BATADV_HARDIF_BCAST_OK;
400
401 rcu_read_lock();
402
403 /* 0 neighbors -> no (re)broadcast */
404 first = rcu_dereference(hlist_first_rcu(&if_outgoing->neigh_list));
405 if (!first) {
406 ret = BATADV_HARDIF_BCAST_NORECIPIENT;
407 goto out;
408 }
409
410 /* >1 neighbors -> (re)brodcast */
411 if (rcu_dereference(hlist_next_rcu(first)))
412 goto out;
413
414 hardif_neigh = hlist_entry(first, struct batadv_hardif_neigh_node,
415 list);
416
417 /* 1 neighbor, is the originator -> no rebroadcast */
418 if (orig_addr && batadv_compare_eth(hardif_neigh->orig, orig_addr)) {
419 ret = BATADV_HARDIF_BCAST_DUPORIG;
420 /* 1 neighbor, is the one we received from -> no rebroadcast */
421 } else if (orig_neigh &&
422 batadv_compare_eth(hardif_neigh->orig, orig_neigh)) {
423 ret = BATADV_HARDIF_BCAST_DUPFWD;
424 }
425
426out:
427 rcu_read_unlock();
428 return ret;
429}
430
Sven Eckelmann56303d32012-06-05 22:31:31 +0200431static struct batadv_hard_iface *
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200432batadv_hardif_get_active(const struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000433{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200434 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000435
436 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200437 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +0000438 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000439 continue;
440
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200441 if (hard_iface->if_status == BATADV_IF_ACTIVE &&
Sven Eckelmann7a659d52016-01-16 10:29:54 +0100442 kref_get_unless_zero(&hard_iface->refcount))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000443 goto out;
444 }
445
Marek Lindnere6c10f42011-02-18 12:33:20 +0000446 hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000447
448out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000449 rcu_read_unlock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000450 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000451}
452
Sven Eckelmann56303d32012-06-05 22:31:31 +0200453static void batadv_primary_if_update_addr(struct batadv_priv *bat_priv,
454 struct batadv_hard_iface *oldif)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000455{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200456 struct batadv_hard_iface *primary_if;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200457
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200458 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200459 if (!primary_if)
460 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000461
Antonio Quartulli785ea112011-11-23 11:35:44 +0100462 batadv_dat_init_own_addr(bat_priv, primary_if);
Sven Eckelmann08adf152012-05-12 13:38:47 +0200463 batadv_bla_update_orig_address(bat_priv, primary_if, oldif);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200464out:
465 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100466 batadv_hardif_put(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000467}
468
Sven Eckelmann56303d32012-06-05 22:31:31 +0200469static void batadv_primary_if_select(struct batadv_priv *bat_priv,
470 struct batadv_hard_iface *new_hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000471{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200472 struct batadv_hard_iface *curr_hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000473
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200474 ASSERT_RTNL();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000475
Sven Eckelmann17a86912016-04-11 13:06:40 +0200476 if (new_hard_iface)
477 kref_get(&new_hard_iface->refcount);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000478
Sven Eckelmann728cbc62011-05-15 00:50:21 +0200479 curr_hard_iface = rcu_dereference_protected(bat_priv->primary_if, 1);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200480 rcu_assign_pointer(bat_priv->primary_if, new_hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000481
Marek Lindner32ae9b22011-04-20 15:40:58 +0200482 if (!new_hard_iface)
Simon Wunderlich23721382012-01-22 20:00:19 +0100483 goto out;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200484
Antonio Quartulli29824a52016-05-25 23:27:31 +0800485 bat_priv->algo_ops->iface.primary_set(new_hard_iface);
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200486 batadv_primary_if_update_addr(bat_priv, curr_hard_iface);
Simon Wunderlich23721382012-01-22 20:00:19 +0100487
488out:
489 if (curr_hard_iface)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100490 batadv_hardif_put(curr_hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000491}
492
Sven Eckelmann56303d32012-06-05 22:31:31 +0200493static bool
494batadv_hardif_is_iface_up(const struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000495{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000496 if (hard_iface->net_dev->flags & IFF_UP)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000497 return true;
498
499 return false;
500}
501
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200502static void batadv_check_known_mac_addr(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000503{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200504 const struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000505
506 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200507 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Sven Eckelmann825ffe12017-08-23 21:52:13 +0200508 if (hard_iface->if_status != BATADV_IF_ACTIVE &&
509 hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000510 continue;
511
Marek Lindnere6c10f42011-02-18 12:33:20 +0000512 if (hard_iface->net_dev == net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000513 continue;
514
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200515 if (!batadv_compare_eth(hard_iface->net_dev->dev_addr,
516 net_dev->dev_addr))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000517 continue;
518
Sven Eckelmann67969582012-03-26 16:22:45 +0200519 pr_warn("The newly added mac address (%pM) already exists on: %s\n",
520 net_dev->dev_addr, hard_iface->net_dev->name);
521 pr_warn("It is strongly recommended to keep mac addresses unique to avoid problems!\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000522 }
523 rcu_read_unlock();
524}
525
Sven Eckelmann7bca68c2015-08-07 19:28:42 +0200526/**
527 * batadv_hardif_recalc_extra_skbroom() - Recalculate skbuff extra head/tailroom
528 * @soft_iface: netdev struct of the mesh interface
529 */
530static void batadv_hardif_recalc_extra_skbroom(struct net_device *soft_iface)
531{
532 const struct batadv_hard_iface *hard_iface;
533 unsigned short lower_header_len = ETH_HLEN;
534 unsigned short lower_headroom = 0;
535 unsigned short lower_tailroom = 0;
536 unsigned short needed_headroom;
537
538 rcu_read_lock();
539 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
540 if (hard_iface->if_status == BATADV_IF_NOT_IN_USE)
541 continue;
542
543 if (hard_iface->soft_iface != soft_iface)
544 continue;
545
546 lower_header_len = max_t(unsigned short, lower_header_len,
547 hard_iface->net_dev->hard_header_len);
548
549 lower_headroom = max_t(unsigned short, lower_headroom,
550 hard_iface->net_dev->needed_headroom);
551
552 lower_tailroom = max_t(unsigned short, lower_tailroom,
553 hard_iface->net_dev->needed_tailroom);
554 }
555 rcu_read_unlock();
556
557 needed_headroom = lower_headroom + (lower_header_len - ETH_HLEN);
558 needed_headroom += batadv_max_header_len();
559
560 soft_iface->needed_headroom = needed_headroom;
561 soft_iface->needed_tailroom = lower_tailroom;
562}
563
Sven Eckelmann95638772012-05-12 02:09:31 +0200564int batadv_hardif_min_mtu(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000565{
Marek Lindnera19d3d82013-05-27 15:33:25 +0800566 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200567 const struct batadv_hard_iface *hard_iface;
Antonio Quartulli930cd6e2014-01-21 11:22:05 +0100568 int min_mtu = INT_MAX;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000569
570 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200571 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Sven Eckelmann825ffe12017-08-23 21:52:13 +0200572 if (hard_iface->if_status != BATADV_IF_ACTIVE &&
573 hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000574 continue;
575
Marek Lindnere6c10f42011-02-18 12:33:20 +0000576 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000577 continue;
578
Marek Lindnera19d3d82013-05-27 15:33:25 +0800579 min_mtu = min_t(int, hard_iface->net_dev->mtu, min_mtu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000580 }
581 rcu_read_unlock();
Marek Lindnera19d3d82013-05-27 15:33:25 +0800582
Marek Lindnera19d3d82013-05-27 15:33:25 +0800583 if (atomic_read(&bat_priv->fragmentation) == 0)
584 goto out;
585
586 /* with fragmentation enabled the maximum size of internally generated
587 * packets such as translation table exchanges or tvlv containers, etc
588 * has to be calculated
589 */
590 min_mtu = min_t(int, min_mtu, BATADV_FRAG_MAX_FRAG_SIZE);
591 min_mtu -= sizeof(struct batadv_frag_packet);
592 min_mtu *= BATADV_FRAG_MAX_FRAGMENTS;
Marek Lindnera19d3d82013-05-27 15:33:25 +0800593
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000594out:
Antonio Quartulli930cd6e2014-01-21 11:22:05 +0100595 /* report to the other components the maximum amount of bytes that
596 * batman-adv can send over the wire (without considering the payload
597 * overhead). For example, this value is used by TT to compute the
598 * maximum local table table size
599 */
600 atomic_set(&bat_priv->packet_size_max, min_mtu);
601
602 /* the real soft-interface MTU is computed by removing the payload
603 * overhead from the maximum amount of bytes that was just computed.
604 *
605 * However batman-adv does not support MTUs bigger than ETH_DATA_LEN
606 */
607 return min_t(int, min_mtu - batadv_max_header_len(), ETH_DATA_LEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000608}
609
610/* adjusts the MTU if a new interface with a smaller MTU appeared. */
Sven Eckelmann95638772012-05-12 02:09:31 +0200611void batadv_update_min_mtu(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000612{
Marek Lindnera19d3d82013-05-27 15:33:25 +0800613 soft_iface->mtu = batadv_hardif_min_mtu(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000614
Marek Lindnera19d3d82013-05-27 15:33:25 +0800615 /* Check if the local translate table should be cleaned up to match a
616 * new (and smaller) MTU.
617 */
618 batadv_tt_local_resize_to_mtu(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000619}
620
Sven Eckelmann56303d32012-06-05 22:31:31 +0200621static void
622batadv_hardif_activate_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000623{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200624 struct batadv_priv *bat_priv;
625 struct batadv_hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000626
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200627 if (hard_iface->if_status != BATADV_IF_INACTIVE)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200628 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000629
Marek Lindnere6c10f42011-02-18 12:33:20 +0000630 bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000631
Antonio Quartulli29824a52016-05-25 23:27:31 +0800632 bat_priv->algo_ops->iface.update_mac(hard_iface);
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200633 hard_iface->if_status = BATADV_IF_TO_BE_ACTIVATED;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000634
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200635 /* the first active interface becomes our primary interface or
Antonio Quartulli015758d2011-07-09 17:52:13 +0200636 * the next active interface after the old primary interface was removed
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000637 */
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200638 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200639 if (!primary_if)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200640 batadv_primary_if_select(bat_priv, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000641
Sven Eckelmann3e348192012-05-16 20:23:22 +0200642 batadv_info(hard_iface->soft_iface, "Interface activated: %s\n",
643 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000644
Sven Eckelmann95638772012-05-12 02:09:31 +0200645 batadv_update_min_mtu(hard_iface->soft_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200646
Antonio Quartulli29824a52016-05-25 23:27:31 +0800647 if (bat_priv->algo_ops->iface.activate)
648 bat_priv->algo_ops->iface.activate(hard_iface);
Antonio Quartullib6cf5d42016-04-14 09:37:05 +0800649
Marek Lindner32ae9b22011-04-20 15:40:58 +0200650out:
651 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100652 batadv_hardif_put(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000653}
654
Sven Eckelmann56303d32012-06-05 22:31:31 +0200655static void
656batadv_hardif_deactivate_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000657{
Sven Eckelmann825ffe12017-08-23 21:52:13 +0200658 if (hard_iface->if_status != BATADV_IF_ACTIVE &&
659 hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000660 return;
661
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200662 hard_iface->if_status = BATADV_IF_INACTIVE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000663
Sven Eckelmann3e348192012-05-16 20:23:22 +0200664 batadv_info(hard_iface->soft_iface, "Interface deactivated: %s\n",
665 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000666
Sven Eckelmann95638772012-05-12 02:09:31 +0200667 batadv_update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000668}
669
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100670/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100671 * batadv_master_del_slave() - remove hard_iface from the current master iface
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100672 * @slave: the interface enslaved in another master
673 * @master: the master from which slave has to be removed
674 *
675 * Invoke ndo_del_slave on master passing slave as argument. In this way slave
676 * is free'd and master can correctly change its internal state.
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200677 *
678 * Return: 0 on success, a negative value representing the error otherwise
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100679 */
680static int batadv_master_del_slave(struct batadv_hard_iface *slave,
681 struct net_device *master)
682{
683 int ret;
684
685 if (!master)
686 return 0;
687
688 ret = -EBUSY;
689 if (master->netdev_ops->ndo_del_slave)
690 ret = master->netdev_ops->ndo_del_slave(master, slave->net_dev);
691
692 return ret;
693}
694
Sven Eckelmann56303d32012-06-05 22:31:31 +0200695int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface,
Andrew Lunn2cd45a02016-04-21 12:57:27 +0200696 struct net *net, const char *iface_name)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000697{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200698 struct batadv_priv *bat_priv;
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100699 struct net_device *soft_iface, *master;
Antonio Quartulli293e9332013-05-19 12:55:16 +0200700 __be16 ethertype = htons(ETH_P_BATMAN);
Marek Lindner411d6ed2013-05-08 13:31:59 +0800701 int max_header_len = batadv_max_header_len();
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000702 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000703
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200704 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000705 goto out;
706
Sven Eckelmann17a86912016-04-11 13:06:40 +0200707 kref_get(&hard_iface->refcount);
Marek Lindnered75ccb2011-02-10 14:33:51 +0000708
Andrew Lunn2cd45a02016-04-21 12:57:27 +0200709 soft_iface = dev_get_by_name(net, iface_name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000710
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000711 if (!soft_iface) {
Andrew Lunn2cd45a02016-04-21 12:57:27 +0200712 soft_iface = batadv_softif_create(net, iface_name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000713
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000714 if (!soft_iface) {
715 ret = -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000716 goto err;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000717 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000718
719 /* dev_get_by_name() increases the reference counter for us */
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000720 dev_hold(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000721 }
722
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200723 if (!batadv_softif_is_valid(soft_iface)) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100724 pr_err("Can't create batman mesh interface %s: already exists as regular interface\n",
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000725 soft_iface->name);
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000726 ret = -EINVAL;
Marek Lindner77af7572012-02-07 17:20:48 +0800727 goto err_dev;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000728 }
729
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100730 /* check if the interface is enslaved in another virtual one and
731 * in that case unlink it first
732 */
733 master = netdev_master_upper_dev_get(hard_iface->net_dev);
734 ret = batadv_master_del_slave(hard_iface, master);
735 if (ret)
736 goto err_dev;
737
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000738 hard_iface->soft_iface = soft_iface;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000739 bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200740
Jiri Pirko6dffb042015-12-03 12:12:10 +0100741 ret = netdev_master_upper_dev_link(hard_iface->net_dev,
David Ahern42ab19e2017-10-04 17:48:47 -0700742 soft_iface, NULL, NULL, NULL);
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800743 if (ret)
744 goto err_dev;
745
Antonio Quartulli29824a52016-05-25 23:27:31 +0800746 ret = bat_priv->algo_ops->iface.enable(hard_iface);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200747 if (ret < 0)
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800748 goto err_upper;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000749
Marek Lindnere6c10f42011-02-18 12:33:20 +0000750 hard_iface->if_num = bat_priv->num_ifaces;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000751 bat_priv->num_ifaces++;
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200752 hard_iface->if_status = BATADV_IF_INACTIVE;
Simon Wunderlich62446302012-07-01 22:51:55 +0200753 ret = batadv_orig_hash_add_if(hard_iface, bat_priv->num_ifaces);
754 if (ret < 0) {
Antonio Quartulli29824a52016-05-25 23:27:31 +0800755 bat_priv->algo_ops->iface.disable(hard_iface);
Simon Wunderlich62446302012-07-01 22:51:55 +0200756 bat_priv->num_ifaces--;
757 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800758 goto err_upper;
Simon Wunderlich62446302012-07-01 22:51:55 +0200759 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000760
Sven Eckelmannd7d6de92016-03-05 16:09:18 +0100761 kref_get(&hard_iface->refcount);
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200762 hard_iface->batman_adv_ptype.type = ethertype;
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200763 hard_iface->batman_adv_ptype.func = batadv_batman_skb_recv;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000764 hard_iface->batman_adv_ptype.dev = hard_iface->net_dev;
765 dev_add_pack(&hard_iface->batman_adv_ptype);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000766
Sven Eckelmann3e348192012-05-16 20:23:22 +0200767 batadv_info(hard_iface->soft_iface, "Adding interface: %s\n",
768 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000769
Sven Eckelmann0aca2362012-06-19 20:26:30 +0200770 if (atomic_read(&bat_priv->fragmentation) &&
Marek Lindner411d6ed2013-05-08 13:31:59 +0800771 hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
Sven Eckelmann3e348192012-05-16 20:23:22 +0200772 batadv_info(hard_iface->soft_iface,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800773 "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 +0200774 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800775 ETH_DATA_LEN + max_header_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000776
Sven Eckelmann0aca2362012-06-19 20:26:30 +0200777 if (!atomic_read(&bat_priv->fragmentation) &&
Marek Lindner411d6ed2013-05-08 13:31:59 +0800778 hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
Sven Eckelmann3e348192012-05-16 20:23:22 +0200779 batadv_info(hard_iface->soft_iface,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800780 "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 +0200781 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800782 ETH_DATA_LEN + max_header_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000783
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200784 if (batadv_hardif_is_iface_up(hard_iface))
785 batadv_hardif_activate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000786 else
Sven Eckelmann3e348192012-05-16 20:23:22 +0200787 batadv_err(hard_iface->soft_iface,
788 "Not using interface %s (retrying later): interface not active\n",
789 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000790
Sven Eckelmann7bca68c2015-08-07 19:28:42 +0200791 batadv_hardif_recalc_extra_skbroom(soft_iface);
792
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000793out:
794 return 0;
795
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800796err_upper:
797 netdev_upper_dev_unlink(hard_iface->net_dev, soft_iface);
Marek Lindner77af7572012-02-07 17:20:48 +0800798err_dev:
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800799 hard_iface->soft_iface = NULL;
Marek Lindner77af7572012-02-07 17:20:48 +0800800 dev_put(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000801err:
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100802 batadv_hardif_put(hard_iface);
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000803 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000804}
805
Sven Eckelmanna15fd362013-02-11 17:10:24 +0800806void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface,
807 enum batadv_hard_if_cleanup autodel)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000808{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200809 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
810 struct batadv_hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000811
Sven Eckelmannf2d23862016-03-19 13:55:21 +0100812 batadv_hardif_deactivate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000813
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200814 if (hard_iface->if_status != BATADV_IF_INACTIVE)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200815 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000816
Sven Eckelmann3e348192012-05-16 20:23:22 +0200817 batadv_info(hard_iface->soft_iface, "Removing interface: %s\n",
818 hard_iface->net_dev->name);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000819 dev_remove_pack(&hard_iface->batman_adv_ptype);
Sven Eckelmannd7d6de92016-03-05 16:09:18 +0100820 batadv_hardif_put(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000821
822 bat_priv->num_ifaces--;
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200823 batadv_orig_hash_del_if(hard_iface, bat_priv->num_ifaces);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000824
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200825 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200826 if (hard_iface == primary_if) {
Sven Eckelmann56303d32012-06-05 22:31:31 +0200827 struct batadv_hard_iface *new_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000828
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200829 new_if = batadv_hardif_get_active(hard_iface->soft_iface);
830 batadv_primary_if_select(bat_priv, new_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000831
832 if (new_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100833 batadv_hardif_put(new_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000834 }
835
Antonio Quartulli29824a52016-05-25 23:27:31 +0800836 bat_priv->algo_ops->iface.disable(hard_iface);
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200837 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000838
Marek Lindnere6c10f42011-02-18 12:33:20 +0000839 /* delete all references to this hard_iface */
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200840 batadv_purge_orig_ref(bat_priv);
Sven Eckelmann9455e342012-05-12 02:09:37 +0200841 batadv_purge_outstanding_packets(bat_priv, hard_iface);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000842 dev_put(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000843
Antonio Quartullia5256f72015-08-04 22:26:19 +0200844 netdev_upper_dev_unlink(hard_iface->net_dev, hard_iface->soft_iface);
Sven Eckelmann7bca68c2015-08-07 19:28:42 +0200845 batadv_hardif_recalc_extra_skbroom(hard_iface->soft_iface);
Antonio Quartullia5256f72015-08-04 22:26:19 +0200846
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000847 /* nobody uses this interface anymore */
Antonio Quartulli8257f552013-08-19 18:39:59 +0200848 if (!bat_priv->num_ifaces) {
849 batadv_gw_check_client_stop(bat_priv);
850
851 if (autodel == BATADV_IF_CLEANUP_AUTO)
852 batadv_softif_destroy_sysfs(hard_iface->soft_iface);
853 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000854
Sven Eckelmann27915aa2016-11-02 18:14:43 +0100855 hard_iface->soft_iface = NULL;
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100856 batadv_hardif_put(hard_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200857
858out:
859 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100860 batadv_hardif_put(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000861}
862
Sven Eckelmann56303d32012-06-05 22:31:31 +0200863static struct batadv_hard_iface *
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200864batadv_hardif_add_interface(struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000865{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200866 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000867 int ret;
868
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200869 ASSERT_RTNL();
870
Sven Eckelmann4b426b12016-02-22 21:02:39 +0100871 if (!batadv_is_valid_iface(net_dev))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000872 goto out;
873
874 dev_hold(net_dev);
875
Antonio Quartulli7db3fc22013-04-02 12:16:53 +0200876 hard_iface = kzalloc(sizeof(*hard_iface), GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700877 if (!hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000878 goto release_dev;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000879
Sven Eckelmann5853e222012-05-12 02:09:24 +0200880 ret = batadv_sysfs_add_hardif(&hard_iface->hardif_obj, net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000881 if (ret)
882 goto free_if;
883
Marek Lindnere6c10f42011-02-18 12:33:20 +0000884 hard_iface->if_num = -1;
885 hard_iface->net_dev = net_dev;
886 hard_iface->soft_iface = NULL;
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200887 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100888
889 ret = batadv_debugfs_add_hardif(hard_iface);
890 if (ret)
891 goto free_sysfs;
892
Marek Lindnere6c10f42011-02-18 12:33:20 +0000893 INIT_LIST_HEAD(&hard_iface->list);
Marek Lindnercef63412015-08-04 21:09:55 +0800894 INIT_HLIST_HEAD(&hard_iface->neigh_list);
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100895
Marek Lindnercef63412015-08-04 21:09:55 +0800896 spin_lock_init(&hard_iface->neigh_list_lock);
Sven Eckelmannb2367e42016-07-15 17:39:28 +0200897 kref_init(&hard_iface->refcount);
Marek Lindnercef63412015-08-04 21:09:55 +0800898
Matthias Schiffercaf65bf2013-03-09 23:14:23 +0100899 hard_iface->num_bcasts = BATADV_NUM_BCASTS_DEFAULT;
Sven Eckelmann10b1bbb2016-09-30 15:21:03 +0200900 hard_iface->wifi_flags = batadv_wifi_flags_evaluate(net_dev);
901 if (batadv_is_wifi_hardif(hard_iface))
Matthias Schiffercaf65bf2013-03-09 23:14:23 +0100902 hard_iface->num_bcasts = BATADV_NUM_BCASTS_WIRELESS;
903
Marek Lindner7db682d2016-05-10 22:31:59 +0800904 batadv_v_hardif_init(hard_iface);
905
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200906 batadv_check_known_mac_addr(hard_iface->net_dev);
Sven Eckelmannb2367e42016-07-15 17:39:28 +0200907 kref_get(&hard_iface->refcount);
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200908 list_add_tail_rcu(&hard_iface->list, &batadv_hardif_list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000909
Marek Lindnere6c10f42011-02-18 12:33:20 +0000910 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000911
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100912free_sysfs:
913 batadv_sysfs_del_hardif(&hard_iface->hardif_obj);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000914free_if:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000915 kfree(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000916release_dev:
917 dev_put(net_dev);
918out:
919 return NULL;
920}
921
Sven Eckelmann56303d32012-06-05 22:31:31 +0200922static void batadv_hardif_remove_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000923{
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200924 ASSERT_RTNL();
925
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000926 /* first deactivate interface */
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200927 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmanna15fd362013-02-11 17:10:24 +0800928 batadv_hardif_disable_interface(hard_iface,
Sven Eckelmann06d640c2016-07-10 15:47:57 +0200929 BATADV_IF_CLEANUP_KEEP);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000930
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200931 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000932 return;
933
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200934 hard_iface->if_status = BATADV_IF_TO_BE_REMOVED;
Sven Eckelmann569c9852016-06-13 07:41:31 +0200935 batadv_debugfs_del_hardif(hard_iface);
936 batadv_sysfs_del_hardif(&hard_iface->hardif_obj);
937 batadv_hardif_put(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000938}
939
Sven Eckelmann95638772012-05-12 02:09:31 +0200940void batadv_hardif_remove_interfaces(void)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000941{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200942 struct batadv_hard_iface *hard_iface, *hard_iface_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000943
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200944 rtnl_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000945 list_for_each_entry_safe(hard_iface, hard_iface_tmp,
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200946 &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +0000947 list_del_rcu(&hard_iface->list);
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200948 batadv_hardif_remove_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000949 }
950 rtnl_unlock();
951}
952
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200953static int batadv_hard_if_event(struct notifier_block *this,
954 unsigned long event, void *ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000955{
Jiri Pirko351638e2013-05-28 01:30:21 +0000956 struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200957 struct batadv_hard_iface *hard_iface;
958 struct batadv_hard_iface *primary_if = NULL;
959 struct batadv_priv *bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000960
Sven Eckelmann37130292013-02-11 17:10:22 +0800961 if (batadv_softif_is_valid(net_dev) && event == NETDEV_REGISTER) {
962 batadv_sysfs_add_meshif(net_dev);
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200963 bat_priv = netdev_priv(net_dev);
964 batadv_softif_create_vlan(bat_priv, BATADV_NO_FLAGS);
Sven Eckelmann37130292013-02-11 17:10:22 +0800965 return NOTIFY_DONE;
966 }
967
Sven Eckelmann56303d32012-06-05 22:31:31 +0200968 hard_iface = batadv_hardif_get_by_netdev(net_dev);
Andrew Lunna1a66b12015-12-03 21:12:33 +0100969 if (!hard_iface && (event == NETDEV_REGISTER ||
970 event == NETDEV_POST_TYPE_CHANGE))
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200971 hard_iface = batadv_hardif_add_interface(net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000972
Marek Lindnere6c10f42011-02-18 12:33:20 +0000973 if (!hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000974 goto out;
975
976 switch (event) {
977 case NETDEV_UP:
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200978 batadv_hardif_activate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000979 break;
980 case NETDEV_GOING_DOWN:
981 case NETDEV_DOWN:
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200982 batadv_hardif_deactivate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000983 break;
984 case NETDEV_UNREGISTER:
Andrew Lunna1a66b12015-12-03 21:12:33 +0100985 case NETDEV_PRE_TYPE_CHANGE:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000986 list_del_rcu(&hard_iface->list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000987
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200988 batadv_hardif_remove_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000989 break;
990 case NETDEV_CHANGEMTU:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000991 if (hard_iface->soft_iface)
Sven Eckelmann95638772012-05-12 02:09:31 +0200992 batadv_update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000993 break;
994 case NETDEV_CHANGEADDR:
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200995 if (hard_iface->if_status == BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000996 goto hardif_put;
997
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200998 batadv_check_known_mac_addr(hard_iface->net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000999
Marek Lindnere6c10f42011-02-18 12:33:20 +00001000 bat_priv = netdev_priv(hard_iface->soft_iface);
Antonio Quartulli29824a52016-05-25 23:27:31 +08001001 bat_priv->algo_ops->iface.update_mac(hard_iface);
Marek Lindner01c42242011-11-28 21:31:55 +08001002
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001003 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +02001004 if (!primary_if)
1005 goto hardif_put;
1006
1007 if (hard_iface == primary_if)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +02001008 batadv_primary_if_update_addr(bat_priv, NULL);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001009 break;
Sven Eckelmannee3b5e92016-09-30 15:21:06 +02001010 case NETDEV_CHANGEUPPER:
1011 hard_iface->wifi_flags = batadv_wifi_flags_evaluate(net_dev);
1012 if (batadv_is_wifi_hardif(hard_iface))
1013 hard_iface->num_bcasts = BATADV_NUM_BCASTS_WIRELESS;
1014 break;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001015 default:
1016 break;
Joe Perchesf81c6222011-06-03 11:51:19 +00001017 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001018
1019hardif_put:
Sven Eckelmann82047ad2016-01-17 11:01:10 +01001020 batadv_hardif_put(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001021out:
Marek Lindner32ae9b22011-04-20 15:40:58 +02001022 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +01001023 batadv_hardif_put(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001024 return NOTIFY_DONE;
1025}
1026
Sven Eckelmann95638772012-05-12 02:09:31 +02001027struct notifier_block batadv_hard_if_notifier = {
Sven Eckelmann18a1cb62012-05-12 18:33:57 +02001028 .notifier_call = batadv_hard_if_event,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001029};