blob: f11345e163d7f58bc853310d681bf03229675e65 [file] [log] [blame]
Sven Eckelmann9f6446c2015-04-23 13:16:35 +02001/* Copyright (C) 2007-2015 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002 *
3 * Marek Lindner, Simon Wunderlich
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
Antonio Quartulliebf38fb2013-11-03 20:40:48 +010015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000016 */
17
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018#include "hard-interface.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020019#include "main.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000020
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020021#include <linux/bug.h>
22#include <linux/byteorder/generic.h>
23#include <linux/errno.h>
24#include <linux/fs.h>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000025#include <linux/if_arp.h>
Antonio Quartulliaf5d4f72012-11-26 00:38:50 +010026#include <linux/if_ether.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020027#include <linux/if.h>
28#include <linux/kernel.h>
29#include <linux/list.h>
30#include <linux/netdevice.h>
31#include <linux/printk.h>
32#include <linux/rculist.h>
33#include <linux/rtnetlink.h>
34#include <linux/slab.h>
35#include <linux/workqueue.h>
36#include <net/net_namespace.h>
37
38#include "bridge_loop_avoidance.h"
39#include "debugfs.h"
40#include "distributed-arp-table.h"
41#include "gateway_client.h"
42#include "originator.h"
43#include "packet.h"
44#include "send.h"
45#include "soft-interface.h"
46#include "sysfs.h"
47#include "translation-table.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000048
Sven Eckelmann95638772012-05-12 02:09:31 +020049void batadv_hardif_free_rcu(struct rcu_head *rcu)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000050{
Sven Eckelmann56303d32012-06-05 22:31:31 +020051 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000052
Sven Eckelmann56303d32012-06-05 22:31:31 +020053 hard_iface = container_of(rcu, struct batadv_hard_iface, rcu);
Marek Lindnere6c10f42011-02-18 12:33:20 +000054 dev_put(hard_iface->net_dev);
55 kfree(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000056}
57
Sven Eckelmann56303d32012-06-05 22:31:31 +020058struct batadv_hard_iface *
59batadv_hardif_get_by_netdev(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000060{
Sven Eckelmann56303d32012-06-05 22:31:31 +020061 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000062
63 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +020064 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +000065 if (hard_iface->net_dev == net_dev &&
66 atomic_inc_not_zero(&hard_iface->refcount))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000067 goto out;
68 }
69
Marek Lindnere6c10f42011-02-18 12:33:20 +000070 hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000071
72out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000073 rcu_read_unlock();
Marek Lindnere6c10f42011-02-18 12:33:20 +000074 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000075}
76
Antonio Quartullib7eddd02012-09-09 10:46:46 +020077/**
78 * batadv_is_on_batman_iface - check if a device is a batman iface descendant
79 * @net_dev: the device to check
80 *
81 * If the user creates any virtual device on top of a batman-adv interface, it
82 * is important to prevent this new interface to be used to create a new mesh
83 * network (this behaviour would lead to a batman-over-batman configuration).
84 * This function recursively checks all the fathers of the device passed as
85 * argument looking for a batman-adv soft interface.
86 *
87 * Returns true if the device is descendant of a batman-adv mesh interface (or
88 * if it is a batman-adv interface itself), false otherwise
89 */
90static bool batadv_is_on_batman_iface(const struct net_device *net_dev)
91{
92 struct net_device *parent_dev;
93 bool ret;
94
95 /* check if this is a batman-adv mesh interface */
96 if (batadv_softif_is_valid(net_dev))
97 return true;
98
99 /* no more parents..stop recursion */
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200100 if (dev_get_iflink(net_dev) == 0 ||
101 dev_get_iflink(net_dev) == net_dev->ifindex)
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200102 return false;
103
104 /* recurse over the parent device */
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200105 parent_dev = __dev_get_by_index(&init_net, dev_get_iflink(net_dev));
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200106 /* if we got a NULL parent_dev there is something broken.. */
107 if (WARN(!parent_dev, "Cannot find parent device"))
108 return false;
109
110 ret = batadv_is_on_batman_iface(parent_dev);
111
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200112 return ret;
113}
114
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200115static int batadv_is_valid_iface(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000116{
117 if (net_dev->flags & IFF_LOOPBACK)
118 return 0;
119
120 if (net_dev->type != ARPHRD_ETHER)
121 return 0;
122
123 if (net_dev->addr_len != ETH_ALEN)
124 return 0;
125
126 /* no batman over batman */
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200127 if (batadv_is_on_batman_iface(net_dev))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000128 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000129
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000130 return 1;
131}
132
Matthias Schifferde68d102013-03-09 23:14:22 +0100133/**
134 * batadv_is_wifi_netdev - check if the given net_device struct is a wifi
135 * interface
136 * @net_device: the device to check
137 *
138 * Returns true if the net device is a 802.11 wireless device, false otherwise.
139 */
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200140bool batadv_is_wifi_netdev(struct net_device *net_device)
Matthias Schifferde68d102013-03-09 23:14:22 +0100141{
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200142 if (!net_device)
143 return false;
144
Matthias Schifferde68d102013-03-09 23:14:22 +0100145#ifdef CONFIG_WIRELESS_EXT
146 /* pre-cfg80211 drivers have to implement WEXT, so it is possible to
147 * check for wireless_handlers != NULL
148 */
149 if (net_device->wireless_handlers)
150 return true;
151#endif
152
153 /* cfg80211 drivers have to set ieee80211_ptr */
154 if (net_device->ieee80211_ptr)
155 return true;
156
157 return false;
158}
159
Sven Eckelmann56303d32012-06-05 22:31:31 +0200160static struct batadv_hard_iface *
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200161batadv_hardif_get_active(const struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000162{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200163 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000164
165 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200166 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +0000167 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000168 continue;
169
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200170 if (hard_iface->if_status == BATADV_IF_ACTIVE &&
Marek Lindnere6c10f42011-02-18 12:33:20 +0000171 atomic_inc_not_zero(&hard_iface->refcount))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000172 goto out;
173 }
174
Marek Lindnere6c10f42011-02-18 12:33:20 +0000175 hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000176
177out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000178 rcu_read_unlock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000179 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000180}
181
Sven Eckelmann56303d32012-06-05 22:31:31 +0200182static void batadv_primary_if_update_addr(struct batadv_priv *bat_priv,
183 struct batadv_hard_iface *oldif)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000184{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200185 struct batadv_hard_iface *primary_if;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200186
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200187 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200188 if (!primary_if)
189 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000190
Antonio Quartulli785ea112011-11-23 11:35:44 +0100191 batadv_dat_init_own_addr(bat_priv, primary_if);
Sven Eckelmann08adf152012-05-12 13:38:47 +0200192 batadv_bla_update_orig_address(bat_priv, primary_if, oldif);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200193out:
194 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200195 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000196}
197
Sven Eckelmann56303d32012-06-05 22:31:31 +0200198static void batadv_primary_if_select(struct batadv_priv *bat_priv,
199 struct batadv_hard_iface *new_hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000200{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200201 struct batadv_hard_iface *curr_hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000202
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200203 ASSERT_RTNL();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000204
Marek Lindner32ae9b22011-04-20 15:40:58 +0200205 if (new_hard_iface && !atomic_inc_not_zero(&new_hard_iface->refcount))
206 new_hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000207
Sven Eckelmann728cbc62011-05-15 00:50:21 +0200208 curr_hard_iface = rcu_dereference_protected(bat_priv->primary_if, 1);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200209 rcu_assign_pointer(bat_priv->primary_if, new_hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000210
Marek Lindner32ae9b22011-04-20 15:40:58 +0200211 if (!new_hard_iface)
Simon Wunderlich23721382012-01-22 20:00:19 +0100212 goto out;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200213
Marek Lindnercd8b78e2012-02-07 17:20:49 +0800214 bat_priv->bat_algo_ops->bat_primary_iface_set(new_hard_iface);
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200215 batadv_primary_if_update_addr(bat_priv, curr_hard_iface);
Simon Wunderlich23721382012-01-22 20:00:19 +0100216
217out:
218 if (curr_hard_iface)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200219 batadv_hardif_free_ref(curr_hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000220}
221
Sven Eckelmann56303d32012-06-05 22:31:31 +0200222static bool
223batadv_hardif_is_iface_up(const struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000224{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000225 if (hard_iface->net_dev->flags & IFF_UP)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000226 return true;
227
228 return false;
229}
230
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200231static void batadv_check_known_mac_addr(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000232{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200233 const struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000234
235 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200236 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200237 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
238 (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000239 continue;
240
Marek Lindnere6c10f42011-02-18 12:33:20 +0000241 if (hard_iface->net_dev == net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000242 continue;
243
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200244 if (!batadv_compare_eth(hard_iface->net_dev->dev_addr,
245 net_dev->dev_addr))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000246 continue;
247
Sven Eckelmann67969582012-03-26 16:22:45 +0200248 pr_warn("The newly added mac address (%pM) already exists on: %s\n",
249 net_dev->dev_addr, hard_iface->net_dev->name);
250 pr_warn("It is strongly recommended to keep mac addresses unique to avoid problems!\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000251 }
252 rcu_read_unlock();
253}
254
Sven Eckelmann7bca68c2015-08-07 19:28:42 +0200255/**
256 * batadv_hardif_recalc_extra_skbroom() - Recalculate skbuff extra head/tailroom
257 * @soft_iface: netdev struct of the mesh interface
258 */
259static void batadv_hardif_recalc_extra_skbroom(struct net_device *soft_iface)
260{
261 const struct batadv_hard_iface *hard_iface;
262 unsigned short lower_header_len = ETH_HLEN;
263 unsigned short lower_headroom = 0;
264 unsigned short lower_tailroom = 0;
265 unsigned short needed_headroom;
266
267 rcu_read_lock();
268 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
269 if (hard_iface->if_status == BATADV_IF_NOT_IN_USE)
270 continue;
271
272 if (hard_iface->soft_iface != soft_iface)
273 continue;
274
275 lower_header_len = max_t(unsigned short, lower_header_len,
276 hard_iface->net_dev->hard_header_len);
277
278 lower_headroom = max_t(unsigned short, lower_headroom,
279 hard_iface->net_dev->needed_headroom);
280
281 lower_tailroom = max_t(unsigned short, lower_tailroom,
282 hard_iface->net_dev->needed_tailroom);
283 }
284 rcu_read_unlock();
285
286 needed_headroom = lower_headroom + (lower_header_len - ETH_HLEN);
287 needed_headroom += batadv_max_header_len();
288
289 soft_iface->needed_headroom = needed_headroom;
290 soft_iface->needed_tailroom = lower_tailroom;
291}
292
Sven Eckelmann95638772012-05-12 02:09:31 +0200293int batadv_hardif_min_mtu(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000294{
Marek Lindnera19d3d82013-05-27 15:33:25 +0800295 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200296 const struct batadv_hard_iface *hard_iface;
Antonio Quartulli930cd6e2014-01-21 11:22:05 +0100297 int min_mtu = INT_MAX;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000298
299 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200300 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200301 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
302 (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000303 continue;
304
Marek Lindnere6c10f42011-02-18 12:33:20 +0000305 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000306 continue;
307
Marek Lindnera19d3d82013-05-27 15:33:25 +0800308 min_mtu = min_t(int, hard_iface->net_dev->mtu, min_mtu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000309 }
310 rcu_read_unlock();
Marek Lindnera19d3d82013-05-27 15:33:25 +0800311
Marek Lindnera19d3d82013-05-27 15:33:25 +0800312 if (atomic_read(&bat_priv->fragmentation) == 0)
313 goto out;
314
315 /* with fragmentation enabled the maximum size of internally generated
316 * packets such as translation table exchanges or tvlv containers, etc
317 * has to be calculated
318 */
319 min_mtu = min_t(int, min_mtu, BATADV_FRAG_MAX_FRAG_SIZE);
320 min_mtu -= sizeof(struct batadv_frag_packet);
321 min_mtu *= BATADV_FRAG_MAX_FRAGMENTS;
Marek Lindnera19d3d82013-05-27 15:33:25 +0800322
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000323out:
Antonio Quartulli930cd6e2014-01-21 11:22:05 +0100324 /* report to the other components the maximum amount of bytes that
325 * batman-adv can send over the wire (without considering the payload
326 * overhead). For example, this value is used by TT to compute the
327 * maximum local table table size
328 */
329 atomic_set(&bat_priv->packet_size_max, min_mtu);
330
331 /* the real soft-interface MTU is computed by removing the payload
332 * overhead from the maximum amount of bytes that was just computed.
333 *
334 * However batman-adv does not support MTUs bigger than ETH_DATA_LEN
335 */
336 return min_t(int, min_mtu - batadv_max_header_len(), ETH_DATA_LEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000337}
338
339/* adjusts the MTU if a new interface with a smaller MTU appeared. */
Sven Eckelmann95638772012-05-12 02:09:31 +0200340void batadv_update_min_mtu(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000341{
Marek Lindnera19d3d82013-05-27 15:33:25 +0800342 soft_iface->mtu = batadv_hardif_min_mtu(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000343
Marek Lindnera19d3d82013-05-27 15:33:25 +0800344 /* Check if the local translate table should be cleaned up to match a
345 * new (and smaller) MTU.
346 */
347 batadv_tt_local_resize_to_mtu(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000348}
349
Sven Eckelmann56303d32012-06-05 22:31:31 +0200350static void
351batadv_hardif_activate_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000352{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200353 struct batadv_priv *bat_priv;
354 struct batadv_hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000355
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200356 if (hard_iface->if_status != BATADV_IF_INACTIVE)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200357 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000358
Marek Lindnere6c10f42011-02-18 12:33:20 +0000359 bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000360
Marek Lindnerc3229392012-03-11 06:17:50 +0800361 bat_priv->bat_algo_ops->bat_iface_update_mac(hard_iface);
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200362 hard_iface->if_status = BATADV_IF_TO_BE_ACTIVATED;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000363
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200364 /* the first active interface becomes our primary interface or
Antonio Quartulli015758d2011-07-09 17:52:13 +0200365 * the next active interface after the old primary interface was removed
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000366 */
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200367 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200368 if (!primary_if)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200369 batadv_primary_if_select(bat_priv, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000370
Sven Eckelmann3e348192012-05-16 20:23:22 +0200371 batadv_info(hard_iface->soft_iface, "Interface activated: %s\n",
372 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000373
Sven Eckelmann95638772012-05-12 02:09:31 +0200374 batadv_update_min_mtu(hard_iface->soft_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200375
376out:
377 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200378 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000379}
380
Sven Eckelmann56303d32012-06-05 22:31:31 +0200381static void
382batadv_hardif_deactivate_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000383{
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200384 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
385 (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000386 return;
387
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200388 hard_iface->if_status = BATADV_IF_INACTIVE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000389
Sven Eckelmann3e348192012-05-16 20:23:22 +0200390 batadv_info(hard_iface->soft_iface, "Interface deactivated: %s\n",
391 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000392
Sven Eckelmann95638772012-05-12 02:09:31 +0200393 batadv_update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000394}
395
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100396/**
397 * batadv_master_del_slave - remove hard_iface from the current master interface
398 * @slave: the interface enslaved in another master
399 * @master: the master from which slave has to be removed
400 *
401 * Invoke ndo_del_slave on master passing slave as argument. In this way slave
402 * is free'd and master can correctly change its internal state.
403 * Return 0 on success, a negative value representing the error otherwise
404 */
405static int batadv_master_del_slave(struct batadv_hard_iface *slave,
406 struct net_device *master)
407{
408 int ret;
409
410 if (!master)
411 return 0;
412
413 ret = -EBUSY;
414 if (master->netdev_ops->ndo_del_slave)
415 ret = master->netdev_ops->ndo_del_slave(master, slave->net_dev);
416
417 return ret;
418}
419
Sven Eckelmann56303d32012-06-05 22:31:31 +0200420int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface,
Sven Eckelmann95638772012-05-12 02:09:31 +0200421 const char *iface_name)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000422{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200423 struct batadv_priv *bat_priv;
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100424 struct net_device *soft_iface, *master;
Antonio Quartulli293e9332013-05-19 12:55:16 +0200425 __be16 ethertype = htons(ETH_P_BATMAN);
Marek Lindner411d6ed2013-05-08 13:31:59 +0800426 int max_header_len = batadv_max_header_len();
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000427 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000428
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200429 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000430 goto out;
431
Marek Lindnere6c10f42011-02-18 12:33:20 +0000432 if (!atomic_inc_not_zero(&hard_iface->refcount))
Marek Lindnered75ccb2011-02-10 14:33:51 +0000433 goto out;
434
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000435 soft_iface = dev_get_by_name(&init_net, iface_name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000436
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000437 if (!soft_iface) {
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200438 soft_iface = batadv_softif_create(iface_name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000439
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000440 if (!soft_iface) {
441 ret = -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000442 goto err;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000443 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000444
445 /* dev_get_by_name() increases the reference counter for us */
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000446 dev_hold(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000447 }
448
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200449 if (!batadv_softif_is_valid(soft_iface)) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100450 pr_err("Can't create batman mesh interface %s: already exists as regular interface\n",
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000451 soft_iface->name);
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000452 ret = -EINVAL;
Marek Lindner77af7572012-02-07 17:20:48 +0800453 goto err_dev;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000454 }
455
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100456 /* check if the interface is enslaved in another virtual one and
457 * in that case unlink it first
458 */
459 master = netdev_master_upper_dev_get(hard_iface->net_dev);
460 ret = batadv_master_del_slave(hard_iface, master);
461 if (ret)
462 goto err_dev;
463
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000464 hard_iface->soft_iface = soft_iface;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000465 bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200466
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800467 ret = netdev_master_upper_dev_link(hard_iface->net_dev, soft_iface);
468 if (ret)
469 goto err_dev;
470
Marek Lindner77af7572012-02-07 17:20:48 +0800471 ret = bat_priv->bat_algo_ops->bat_iface_enable(hard_iface);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200472 if (ret < 0)
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800473 goto err_upper;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000474
Marek Lindnere6c10f42011-02-18 12:33:20 +0000475 hard_iface->if_num = bat_priv->num_ifaces;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000476 bat_priv->num_ifaces++;
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200477 hard_iface->if_status = BATADV_IF_INACTIVE;
Simon Wunderlich62446302012-07-01 22:51:55 +0200478 ret = batadv_orig_hash_add_if(hard_iface, bat_priv->num_ifaces);
479 if (ret < 0) {
480 bat_priv->bat_algo_ops->bat_iface_disable(hard_iface);
481 bat_priv->num_ifaces--;
482 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800483 goto err_upper;
Simon Wunderlich62446302012-07-01 22:51:55 +0200484 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000485
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200486 hard_iface->batman_adv_ptype.type = ethertype;
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200487 hard_iface->batman_adv_ptype.func = batadv_batman_skb_recv;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000488 hard_iface->batman_adv_ptype.dev = hard_iface->net_dev;
489 dev_add_pack(&hard_iface->batman_adv_ptype);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000490
Sven Eckelmann3e348192012-05-16 20:23:22 +0200491 batadv_info(hard_iface->soft_iface, "Adding interface: %s\n",
492 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000493
Sven Eckelmann0aca2362012-06-19 20:26:30 +0200494 if (atomic_read(&bat_priv->fragmentation) &&
Marek Lindner411d6ed2013-05-08 13:31:59 +0800495 hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
Sven Eckelmann3e348192012-05-16 20:23:22 +0200496 batadv_info(hard_iface->soft_iface,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800497 "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 +0200498 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800499 ETH_DATA_LEN + max_header_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000500
Sven Eckelmann0aca2362012-06-19 20:26:30 +0200501 if (!atomic_read(&bat_priv->fragmentation) &&
Marek Lindner411d6ed2013-05-08 13:31:59 +0800502 hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
Sven Eckelmann3e348192012-05-16 20:23:22 +0200503 batadv_info(hard_iface->soft_iface,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800504 "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 +0200505 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800506 ETH_DATA_LEN + max_header_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000507
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200508 if (batadv_hardif_is_iface_up(hard_iface))
509 batadv_hardif_activate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000510 else
Sven Eckelmann3e348192012-05-16 20:23:22 +0200511 batadv_err(hard_iface->soft_iface,
512 "Not using interface %s (retrying later): interface not active\n",
513 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000514
Sven Eckelmann7bca68c2015-08-07 19:28:42 +0200515 batadv_hardif_recalc_extra_skbroom(soft_iface);
516
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000517 /* begin scheduling originator messages on that interface */
Sven Eckelmann9455e342012-05-12 02:09:37 +0200518 batadv_schedule_bat_ogm(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000519
520out:
521 return 0;
522
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800523err_upper:
524 netdev_upper_dev_unlink(hard_iface->net_dev, soft_iface);
Marek Lindner77af7572012-02-07 17:20:48 +0800525err_dev:
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800526 hard_iface->soft_iface = NULL;
Marek Lindner77af7572012-02-07 17:20:48 +0800527 dev_put(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000528err:
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200529 batadv_hardif_free_ref(hard_iface);
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000530 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000531}
532
Sven Eckelmanna15fd362013-02-11 17:10:24 +0800533void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface,
534 enum batadv_hard_if_cleanup autodel)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000535{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200536 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
537 struct batadv_hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000538
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200539 if (hard_iface->if_status == BATADV_IF_ACTIVE)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200540 batadv_hardif_deactivate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000541
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200542 if (hard_iface->if_status != BATADV_IF_INACTIVE)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200543 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000544
Sven Eckelmann3e348192012-05-16 20:23:22 +0200545 batadv_info(hard_iface->soft_iface, "Removing interface: %s\n",
546 hard_iface->net_dev->name);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000547 dev_remove_pack(&hard_iface->batman_adv_ptype);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000548
549 bat_priv->num_ifaces--;
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200550 batadv_orig_hash_del_if(hard_iface, bat_priv->num_ifaces);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000551
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200552 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200553 if (hard_iface == primary_if) {
Sven Eckelmann56303d32012-06-05 22:31:31 +0200554 struct batadv_hard_iface *new_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000555
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200556 new_if = batadv_hardif_get_active(hard_iface->soft_iface);
557 batadv_primary_if_select(bat_priv, new_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000558
559 if (new_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200560 batadv_hardif_free_ref(new_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000561 }
562
Marek Lindner00a50072012-02-07 17:20:47 +0800563 bat_priv->bat_algo_ops->bat_iface_disable(hard_iface);
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200564 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000565
Marek Lindnere6c10f42011-02-18 12:33:20 +0000566 /* delete all references to this hard_iface */
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200567 batadv_purge_orig_ref(bat_priv);
Sven Eckelmann9455e342012-05-12 02:09:37 +0200568 batadv_purge_outstanding_packets(bat_priv, hard_iface);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000569 dev_put(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000570
Antonio Quartullia5256f72015-08-04 22:26:19 +0200571 netdev_upper_dev_unlink(hard_iface->net_dev, hard_iface->soft_iface);
Sven Eckelmann7bca68c2015-08-07 19:28:42 +0200572 batadv_hardif_recalc_extra_skbroom(hard_iface->soft_iface);
Antonio Quartullia5256f72015-08-04 22:26:19 +0200573
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000574 /* nobody uses this interface anymore */
Antonio Quartulli8257f552013-08-19 18:39:59 +0200575 if (!bat_priv->num_ifaces) {
576 batadv_gw_check_client_stop(bat_priv);
577
578 if (autodel == BATADV_IF_CLEANUP_AUTO)
579 batadv_softif_destroy_sysfs(hard_iface->soft_iface);
580 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000581
Marek Lindnere6c10f42011-02-18 12:33:20 +0000582 hard_iface->soft_iface = NULL;
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200583 batadv_hardif_free_ref(hard_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200584
585out:
586 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200587 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000588}
589
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100590/**
591 * batadv_hardif_remove_interface_finish - cleans up the remains of a hardif
592 * @work: work queue item
593 *
594 * Free the parts of the hard interface which can not be removed under
595 * rtnl lock (to prevent deadlock situations).
596 */
597static void batadv_hardif_remove_interface_finish(struct work_struct *work)
598{
599 struct batadv_hard_iface *hard_iface;
600
601 hard_iface = container_of(work, struct batadv_hard_iface,
602 cleanup_work);
603
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100604 batadv_debugfs_del_hardif(hard_iface);
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100605 batadv_sysfs_del_hardif(&hard_iface->hardif_obj);
606 batadv_hardif_free_ref(hard_iface);
607}
608
Sven Eckelmann56303d32012-06-05 22:31:31 +0200609static struct batadv_hard_iface *
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200610batadv_hardif_add_interface(struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000611{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200612 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000613 int ret;
614
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200615 ASSERT_RTNL();
616
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200617 ret = batadv_is_valid_iface(net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000618 if (ret != 1)
619 goto out;
620
621 dev_hold(net_dev);
622
Antonio Quartulli7db3fc22013-04-02 12:16:53 +0200623 hard_iface = kzalloc(sizeof(*hard_iface), GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700624 if (!hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000625 goto release_dev;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000626
Sven Eckelmann5853e222012-05-12 02:09:24 +0200627 ret = batadv_sysfs_add_hardif(&hard_iface->hardif_obj, net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000628 if (ret)
629 goto free_if;
630
Marek Lindnere6c10f42011-02-18 12:33:20 +0000631 hard_iface->if_num = -1;
632 hard_iface->net_dev = net_dev;
633 hard_iface->soft_iface = NULL;
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200634 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100635
636 ret = batadv_debugfs_add_hardif(hard_iface);
637 if (ret)
638 goto free_sysfs;
639
Marek Lindnere6c10f42011-02-18 12:33:20 +0000640 INIT_LIST_HEAD(&hard_iface->list);
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100641 INIT_WORK(&hard_iface->cleanup_work,
642 batadv_hardif_remove_interface_finish);
643
Matthias Schiffercaf65bf2013-03-09 23:14:23 +0100644 hard_iface->num_bcasts = BATADV_NUM_BCASTS_DEFAULT;
645 if (batadv_is_wifi_netdev(net_dev))
646 hard_iface->num_bcasts = BATADV_NUM_BCASTS_WIRELESS;
647
Marek Lindnered75ccb2011-02-10 14:33:51 +0000648 /* extra reference for return */
Marek Lindnere6c10f42011-02-18 12:33:20 +0000649 atomic_set(&hard_iface->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000650
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200651 batadv_check_known_mac_addr(hard_iface->net_dev);
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200652 list_add_tail_rcu(&hard_iface->list, &batadv_hardif_list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000653
Marek Lindnere6c10f42011-02-18 12:33:20 +0000654 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000655
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100656free_sysfs:
657 batadv_sysfs_del_hardif(&hard_iface->hardif_obj);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000658free_if:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000659 kfree(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000660release_dev:
661 dev_put(net_dev);
662out:
663 return NULL;
664}
665
Sven Eckelmann56303d32012-06-05 22:31:31 +0200666static void batadv_hardif_remove_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000667{
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200668 ASSERT_RTNL();
669
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000670 /* first deactivate interface */
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200671 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmanna15fd362013-02-11 17:10:24 +0800672 batadv_hardif_disable_interface(hard_iface,
673 BATADV_IF_CLEANUP_AUTO);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000674
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200675 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000676 return;
677
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200678 hard_iface->if_status = BATADV_IF_TO_BE_REMOVED;
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100679 queue_work(batadv_event_workqueue, &hard_iface->cleanup_work);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000680}
681
Sven Eckelmann95638772012-05-12 02:09:31 +0200682void batadv_hardif_remove_interfaces(void)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000683{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200684 struct batadv_hard_iface *hard_iface, *hard_iface_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000685
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200686 rtnl_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000687 list_for_each_entry_safe(hard_iface, hard_iface_tmp,
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200688 &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +0000689 list_del_rcu(&hard_iface->list);
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200690 batadv_hardif_remove_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000691 }
692 rtnl_unlock();
693}
694
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200695static int batadv_hard_if_event(struct notifier_block *this,
696 unsigned long event, void *ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000697{
Jiri Pirko351638e2013-05-28 01:30:21 +0000698 struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200699 struct batadv_hard_iface *hard_iface;
700 struct batadv_hard_iface *primary_if = NULL;
701 struct batadv_priv *bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000702
Sven Eckelmann37130292013-02-11 17:10:22 +0800703 if (batadv_softif_is_valid(net_dev) && event == NETDEV_REGISTER) {
704 batadv_sysfs_add_meshif(net_dev);
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200705 bat_priv = netdev_priv(net_dev);
706 batadv_softif_create_vlan(bat_priv, BATADV_NO_FLAGS);
Sven Eckelmann37130292013-02-11 17:10:22 +0800707 return NOTIFY_DONE;
708 }
709
Sven Eckelmann56303d32012-06-05 22:31:31 +0200710 hard_iface = batadv_hardif_get_by_netdev(net_dev);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000711 if (!hard_iface && event == NETDEV_REGISTER)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200712 hard_iface = batadv_hardif_add_interface(net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000713
Marek Lindnere6c10f42011-02-18 12:33:20 +0000714 if (!hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000715 goto out;
716
717 switch (event) {
718 case NETDEV_UP:
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200719 batadv_hardif_activate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000720 break;
721 case NETDEV_GOING_DOWN:
722 case NETDEV_DOWN:
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200723 batadv_hardif_deactivate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000724 break;
725 case NETDEV_UNREGISTER:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000726 list_del_rcu(&hard_iface->list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000727
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200728 batadv_hardif_remove_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000729 break;
730 case NETDEV_CHANGEMTU:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000731 if (hard_iface->soft_iface)
Sven Eckelmann95638772012-05-12 02:09:31 +0200732 batadv_update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000733 break;
734 case NETDEV_CHANGEADDR:
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200735 if (hard_iface->if_status == BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000736 goto hardif_put;
737
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200738 batadv_check_known_mac_addr(hard_iface->net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000739
Marek Lindnere6c10f42011-02-18 12:33:20 +0000740 bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindnerc3229392012-03-11 06:17:50 +0800741 bat_priv->bat_algo_ops->bat_iface_update_mac(hard_iface);
Marek Lindner01c42242011-11-28 21:31:55 +0800742
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200743 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200744 if (!primary_if)
745 goto hardif_put;
746
747 if (hard_iface == primary_if)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200748 batadv_primary_if_update_addr(bat_priv, NULL);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000749 break;
750 default:
751 break;
Joe Perchesf81c6222011-06-03 11:51:19 +0000752 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000753
754hardif_put:
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200755 batadv_hardif_free_ref(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000756out:
Marek Lindner32ae9b22011-04-20 15:40:58 +0200757 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200758 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000759 return NOTIFY_DONE;
760}
761
Sven Eckelmann95638772012-05-12 02:09:31 +0200762struct notifier_block batadv_hard_if_notifier = {
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200763 .notifier_call = batadv_hard_if_event,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000764};