blob: baf1f9843f2c42a78c7df31b0c60b3012d7fe22d [file] [log] [blame]
Simon Wunderliche19f9752014-01-04 18:04:25 +01001/* Copyright (C) 2007-2014 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
18#include "main.h"
Antonio Quartulli785ea112011-11-23 11:35:44 +010019#include "distributed-arp-table.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000020#include "hard-interface.h"
21#include "soft-interface.h"
22#include "send.h"
23#include "translation-table.h"
24#include "routing.h"
Sven Eckelmannb706b132012-06-10 23:58:51 +020025#include "sysfs.h"
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +010026#include "debugfs.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000027#include "originator.h"
28#include "hash.h"
Simon Wunderlich23721382012-01-22 20:00:19 +010029#include "bridge_loop_avoidance.h"
Antonio Quartulli8257f552013-08-19 18:39:59 +020030#include "gateway_client.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000031
32#include <linux/if_arp.h>
Antonio Quartulliaf5d4f72012-11-26 00:38:50 +010033#include <linux/if_ether.h>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000034
Sven Eckelmann95638772012-05-12 02:09:31 +020035void batadv_hardif_free_rcu(struct rcu_head *rcu)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000036{
Sven Eckelmann56303d32012-06-05 22:31:31 +020037 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000038
Sven Eckelmann56303d32012-06-05 22:31:31 +020039 hard_iface = container_of(rcu, struct batadv_hard_iface, rcu);
Marek Lindnere6c10f42011-02-18 12:33:20 +000040 dev_put(hard_iface->net_dev);
41 kfree(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000042}
43
Sven Eckelmann56303d32012-06-05 22:31:31 +020044struct batadv_hard_iface *
45batadv_hardif_get_by_netdev(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000046{
Sven Eckelmann56303d32012-06-05 22:31:31 +020047 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000048
49 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +020050 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +000051 if (hard_iface->net_dev == net_dev &&
52 atomic_inc_not_zero(&hard_iface->refcount))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000053 goto out;
54 }
55
Marek Lindnere6c10f42011-02-18 12:33:20 +000056 hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000057
58out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000059 rcu_read_unlock();
Marek Lindnere6c10f42011-02-18 12:33:20 +000060 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000061}
62
Antonio Quartullib7eddd02012-09-09 10:46:46 +020063/**
64 * batadv_is_on_batman_iface - check if a device is a batman iface descendant
65 * @net_dev: the device to check
66 *
67 * If the user creates any virtual device on top of a batman-adv interface, it
68 * is important to prevent this new interface to be used to create a new mesh
69 * network (this behaviour would lead to a batman-over-batman configuration).
70 * This function recursively checks all the fathers of the device passed as
71 * argument looking for a batman-adv soft interface.
72 *
73 * Returns true if the device is descendant of a batman-adv mesh interface (or
74 * if it is a batman-adv interface itself), false otherwise
75 */
76static bool batadv_is_on_batman_iface(const struct net_device *net_dev)
77{
78 struct net_device *parent_dev;
79 bool ret;
80
81 /* check if this is a batman-adv mesh interface */
82 if (batadv_softif_is_valid(net_dev))
83 return true;
84
85 /* no more parents..stop recursion */
Nicolas Dichtela54acb32015-04-02 17:07:00 +020086 if (dev_get_iflink(net_dev) == 0 ||
87 dev_get_iflink(net_dev) == net_dev->ifindex)
Antonio Quartullib7eddd02012-09-09 10:46:46 +020088 return false;
89
90 /* recurse over the parent device */
Nicolas Dichtela54acb32015-04-02 17:07:00 +020091 parent_dev = __dev_get_by_index(&init_net, dev_get_iflink(net_dev));
Antonio Quartullib7eddd02012-09-09 10:46:46 +020092 /* if we got a NULL parent_dev there is something broken.. */
93 if (WARN(!parent_dev, "Cannot find parent device"))
94 return false;
95
96 ret = batadv_is_on_batman_iface(parent_dev);
97
Antonio Quartullib7eddd02012-09-09 10:46:46 +020098 return ret;
99}
100
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200101static int batadv_is_valid_iface(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000102{
103 if (net_dev->flags & IFF_LOOPBACK)
104 return 0;
105
106 if (net_dev->type != ARPHRD_ETHER)
107 return 0;
108
109 if (net_dev->addr_len != ETH_ALEN)
110 return 0;
111
112 /* no batman over batman */
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200113 if (batadv_is_on_batman_iface(net_dev))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000114 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000115
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000116 return 1;
117}
118
Matthias Schifferde68d102013-03-09 23:14:22 +0100119/**
120 * batadv_is_wifi_netdev - check if the given net_device struct is a wifi
121 * interface
122 * @net_device: the device to check
123 *
124 * Returns true if the net device is a 802.11 wireless device, false otherwise.
125 */
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200126bool batadv_is_wifi_netdev(struct net_device *net_device)
Matthias Schifferde68d102013-03-09 23:14:22 +0100127{
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200128 if (!net_device)
129 return false;
130
Matthias Schifferde68d102013-03-09 23:14:22 +0100131#ifdef CONFIG_WIRELESS_EXT
132 /* pre-cfg80211 drivers have to implement WEXT, so it is possible to
133 * check for wireless_handlers != NULL
134 */
135 if (net_device->wireless_handlers)
136 return true;
137#endif
138
139 /* cfg80211 drivers have to set ieee80211_ptr */
140 if (net_device->ieee80211_ptr)
141 return true;
142
143 return false;
144}
145
Sven Eckelmann56303d32012-06-05 22:31:31 +0200146static struct batadv_hard_iface *
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200147batadv_hardif_get_active(const struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000148{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200149 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000150
151 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200152 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +0000153 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000154 continue;
155
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200156 if (hard_iface->if_status == BATADV_IF_ACTIVE &&
Marek Lindnere6c10f42011-02-18 12:33:20 +0000157 atomic_inc_not_zero(&hard_iface->refcount))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000158 goto out;
159 }
160
Marek Lindnere6c10f42011-02-18 12:33:20 +0000161 hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000162
163out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000164 rcu_read_unlock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000165 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000166}
167
Sven Eckelmann56303d32012-06-05 22:31:31 +0200168static void batadv_primary_if_update_addr(struct batadv_priv *bat_priv,
169 struct batadv_hard_iface *oldif)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000170{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200171 struct batadv_hard_iface *primary_if;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200172
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200173 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200174 if (!primary_if)
175 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000176
Antonio Quartulli785ea112011-11-23 11:35:44 +0100177 batadv_dat_init_own_addr(bat_priv, primary_if);
Sven Eckelmann08adf152012-05-12 13:38:47 +0200178 batadv_bla_update_orig_address(bat_priv, primary_if, oldif);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200179out:
180 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200181 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000182}
183
Sven Eckelmann56303d32012-06-05 22:31:31 +0200184static void batadv_primary_if_select(struct batadv_priv *bat_priv,
185 struct batadv_hard_iface *new_hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000186{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200187 struct batadv_hard_iface *curr_hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000188
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200189 ASSERT_RTNL();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000190
Marek Lindner32ae9b22011-04-20 15:40:58 +0200191 if (new_hard_iface && !atomic_inc_not_zero(&new_hard_iface->refcount))
192 new_hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000193
Sven Eckelmann728cbc62011-05-15 00:50:21 +0200194 curr_hard_iface = rcu_dereference_protected(bat_priv->primary_if, 1);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200195 rcu_assign_pointer(bat_priv->primary_if, new_hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000196
Marek Lindner32ae9b22011-04-20 15:40:58 +0200197 if (!new_hard_iface)
Simon Wunderlich23721382012-01-22 20:00:19 +0100198 goto out;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200199
Marek Lindnercd8b78e2012-02-07 17:20:49 +0800200 bat_priv->bat_algo_ops->bat_primary_iface_set(new_hard_iface);
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200201 batadv_primary_if_update_addr(bat_priv, curr_hard_iface);
Simon Wunderlich23721382012-01-22 20:00:19 +0100202
203out:
204 if (curr_hard_iface)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200205 batadv_hardif_free_ref(curr_hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000206}
207
Sven Eckelmann56303d32012-06-05 22:31:31 +0200208static bool
209batadv_hardif_is_iface_up(const struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000210{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000211 if (hard_iface->net_dev->flags & IFF_UP)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000212 return true;
213
214 return false;
215}
216
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200217static void batadv_check_known_mac_addr(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000218{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200219 const struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000220
221 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200222 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200223 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
224 (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000225 continue;
226
Marek Lindnere6c10f42011-02-18 12:33:20 +0000227 if (hard_iface->net_dev == net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000228 continue;
229
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200230 if (!batadv_compare_eth(hard_iface->net_dev->dev_addr,
231 net_dev->dev_addr))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000232 continue;
233
Sven Eckelmann67969582012-03-26 16:22:45 +0200234 pr_warn("The newly added mac address (%pM) already exists on: %s\n",
235 net_dev->dev_addr, hard_iface->net_dev->name);
236 pr_warn("It is strongly recommended to keep mac addresses unique to avoid problems!\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000237 }
238 rcu_read_unlock();
239}
240
Sven Eckelmann95638772012-05-12 02:09:31 +0200241int batadv_hardif_min_mtu(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000242{
Marek Lindnera19d3d82013-05-27 15:33:25 +0800243 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200244 const struct batadv_hard_iface *hard_iface;
Antonio Quartulli930cd6e2014-01-21 11:22:05 +0100245 int min_mtu = INT_MAX;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000246
247 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200248 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200249 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
250 (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000251 continue;
252
Marek Lindnere6c10f42011-02-18 12:33:20 +0000253 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000254 continue;
255
Marek Lindnera19d3d82013-05-27 15:33:25 +0800256 min_mtu = min_t(int, hard_iface->net_dev->mtu, min_mtu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000257 }
258 rcu_read_unlock();
Marek Lindnera19d3d82013-05-27 15:33:25 +0800259
Marek Lindnera19d3d82013-05-27 15:33:25 +0800260 if (atomic_read(&bat_priv->fragmentation) == 0)
261 goto out;
262
263 /* with fragmentation enabled the maximum size of internally generated
264 * packets such as translation table exchanges or tvlv containers, etc
265 * has to be calculated
266 */
267 min_mtu = min_t(int, min_mtu, BATADV_FRAG_MAX_FRAG_SIZE);
268 min_mtu -= sizeof(struct batadv_frag_packet);
269 min_mtu *= BATADV_FRAG_MAX_FRAGMENTS;
Marek Lindnera19d3d82013-05-27 15:33:25 +0800270
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000271out:
Antonio Quartulli930cd6e2014-01-21 11:22:05 +0100272 /* report to the other components the maximum amount of bytes that
273 * batman-adv can send over the wire (without considering the payload
274 * overhead). For example, this value is used by TT to compute the
275 * maximum local table table size
276 */
277 atomic_set(&bat_priv->packet_size_max, min_mtu);
278
279 /* the real soft-interface MTU is computed by removing the payload
280 * overhead from the maximum amount of bytes that was just computed.
281 *
282 * However batman-adv does not support MTUs bigger than ETH_DATA_LEN
283 */
284 return min_t(int, min_mtu - batadv_max_header_len(), ETH_DATA_LEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000285}
286
287/* adjusts the MTU if a new interface with a smaller MTU appeared. */
Sven Eckelmann95638772012-05-12 02:09:31 +0200288void batadv_update_min_mtu(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000289{
Marek Lindnera19d3d82013-05-27 15:33:25 +0800290 soft_iface->mtu = batadv_hardif_min_mtu(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000291
Marek Lindnera19d3d82013-05-27 15:33:25 +0800292 /* Check if the local translate table should be cleaned up to match a
293 * new (and smaller) MTU.
294 */
295 batadv_tt_local_resize_to_mtu(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000296}
297
Sven Eckelmann56303d32012-06-05 22:31:31 +0200298static void
299batadv_hardif_activate_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000300{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200301 struct batadv_priv *bat_priv;
302 struct batadv_hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000303
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200304 if (hard_iface->if_status != BATADV_IF_INACTIVE)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200305 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000306
Marek Lindnere6c10f42011-02-18 12:33:20 +0000307 bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000308
Marek Lindnerc3229392012-03-11 06:17:50 +0800309 bat_priv->bat_algo_ops->bat_iface_update_mac(hard_iface);
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200310 hard_iface->if_status = BATADV_IF_TO_BE_ACTIVATED;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000311
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200312 /* the first active interface becomes our primary interface or
Antonio Quartulli015758d2011-07-09 17:52:13 +0200313 * the next active interface after the old primary interface was removed
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000314 */
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200315 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200316 if (!primary_if)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200317 batadv_primary_if_select(bat_priv, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000318
Sven Eckelmann3e348192012-05-16 20:23:22 +0200319 batadv_info(hard_iface->soft_iface, "Interface activated: %s\n",
320 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000321
Sven Eckelmann95638772012-05-12 02:09:31 +0200322 batadv_update_min_mtu(hard_iface->soft_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200323
324out:
325 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200326 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000327}
328
Sven Eckelmann56303d32012-06-05 22:31:31 +0200329static void
330batadv_hardif_deactivate_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000331{
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200332 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
333 (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000334 return;
335
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200336 hard_iface->if_status = BATADV_IF_INACTIVE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000337
Sven Eckelmann3e348192012-05-16 20:23:22 +0200338 batadv_info(hard_iface->soft_iface, "Interface deactivated: %s\n",
339 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000340
Sven Eckelmann95638772012-05-12 02:09:31 +0200341 batadv_update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000342}
343
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100344/**
345 * batadv_master_del_slave - remove hard_iface from the current master interface
346 * @slave: the interface enslaved in another master
347 * @master: the master from which slave has to be removed
348 *
349 * Invoke ndo_del_slave on master passing slave as argument. In this way slave
350 * is free'd and master can correctly change its internal state.
351 * Return 0 on success, a negative value representing the error otherwise
352 */
353static int batadv_master_del_slave(struct batadv_hard_iface *slave,
354 struct net_device *master)
355{
356 int ret;
357
358 if (!master)
359 return 0;
360
361 ret = -EBUSY;
362 if (master->netdev_ops->ndo_del_slave)
363 ret = master->netdev_ops->ndo_del_slave(master, slave->net_dev);
364
365 return ret;
366}
367
Sven Eckelmann56303d32012-06-05 22:31:31 +0200368int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface,
Sven Eckelmann95638772012-05-12 02:09:31 +0200369 const char *iface_name)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000370{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200371 struct batadv_priv *bat_priv;
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100372 struct net_device *soft_iface, *master;
Antonio Quartulli293e9332013-05-19 12:55:16 +0200373 __be16 ethertype = htons(ETH_P_BATMAN);
Marek Lindner411d6ed2013-05-08 13:31:59 +0800374 int max_header_len = batadv_max_header_len();
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000375 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000376
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200377 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000378 goto out;
379
Marek Lindnere6c10f42011-02-18 12:33:20 +0000380 if (!atomic_inc_not_zero(&hard_iface->refcount))
Marek Lindnered75ccb2011-02-10 14:33:51 +0000381 goto out;
382
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000383 soft_iface = dev_get_by_name(&init_net, iface_name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000384
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000385 if (!soft_iface) {
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200386 soft_iface = batadv_softif_create(iface_name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000387
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000388 if (!soft_iface) {
389 ret = -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000390 goto err;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000391 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000392
393 /* dev_get_by_name() increases the reference counter for us */
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000394 dev_hold(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000395 }
396
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200397 if (!batadv_softif_is_valid(soft_iface)) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100398 pr_err("Can't create batman mesh interface %s: already exists as regular interface\n",
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000399 soft_iface->name);
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000400 ret = -EINVAL;
Marek Lindner77af7572012-02-07 17:20:48 +0800401 goto err_dev;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000402 }
403
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100404 /* check if the interface is enslaved in another virtual one and
405 * in that case unlink it first
406 */
407 master = netdev_master_upper_dev_get(hard_iface->net_dev);
408 ret = batadv_master_del_slave(hard_iface, master);
409 if (ret)
410 goto err_dev;
411
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000412 hard_iface->soft_iface = soft_iface;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000413 bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200414
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800415 ret = netdev_master_upper_dev_link(hard_iface->net_dev, soft_iface);
416 if (ret)
417 goto err_dev;
418
Marek Lindner77af7572012-02-07 17:20:48 +0800419 ret = bat_priv->bat_algo_ops->bat_iface_enable(hard_iface);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200420 if (ret < 0)
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800421 goto err_upper;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000422
Marek Lindnere6c10f42011-02-18 12:33:20 +0000423 hard_iface->if_num = bat_priv->num_ifaces;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000424 bat_priv->num_ifaces++;
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200425 hard_iface->if_status = BATADV_IF_INACTIVE;
Simon Wunderlich62446302012-07-01 22:51:55 +0200426 ret = batadv_orig_hash_add_if(hard_iface, bat_priv->num_ifaces);
427 if (ret < 0) {
428 bat_priv->bat_algo_ops->bat_iface_disable(hard_iface);
429 bat_priv->num_ifaces--;
430 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800431 goto err_upper;
Simon Wunderlich62446302012-07-01 22:51:55 +0200432 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000433
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200434 hard_iface->batman_adv_ptype.type = ethertype;
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200435 hard_iface->batman_adv_ptype.func = batadv_batman_skb_recv;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000436 hard_iface->batman_adv_ptype.dev = hard_iface->net_dev;
437 dev_add_pack(&hard_iface->batman_adv_ptype);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000438
Sven Eckelmann3e348192012-05-16 20:23:22 +0200439 batadv_info(hard_iface->soft_iface, "Adding interface: %s\n",
440 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000441
Sven Eckelmann0aca2362012-06-19 20:26:30 +0200442 if (atomic_read(&bat_priv->fragmentation) &&
Marek Lindner411d6ed2013-05-08 13:31:59 +0800443 hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
Sven Eckelmann3e348192012-05-16 20:23:22 +0200444 batadv_info(hard_iface->soft_iface,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800445 "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 +0200446 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800447 ETH_DATA_LEN + max_header_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000448
Sven Eckelmann0aca2362012-06-19 20:26:30 +0200449 if (!atomic_read(&bat_priv->fragmentation) &&
Marek Lindner411d6ed2013-05-08 13:31:59 +0800450 hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
Sven Eckelmann3e348192012-05-16 20:23:22 +0200451 batadv_info(hard_iface->soft_iface,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800452 "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 +0200453 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800454 ETH_DATA_LEN + max_header_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000455
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200456 if (batadv_hardif_is_iface_up(hard_iface))
457 batadv_hardif_activate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000458 else
Sven Eckelmann3e348192012-05-16 20:23:22 +0200459 batadv_err(hard_iface->soft_iface,
460 "Not using interface %s (retrying later): interface not active\n",
461 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000462
463 /* begin scheduling originator messages on that interface */
Sven Eckelmann9455e342012-05-12 02:09:37 +0200464 batadv_schedule_bat_ogm(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000465
466out:
467 return 0;
468
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800469err_upper:
470 netdev_upper_dev_unlink(hard_iface->net_dev, soft_iface);
Marek Lindner77af7572012-02-07 17:20:48 +0800471err_dev:
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800472 hard_iface->soft_iface = NULL;
Marek Lindner77af7572012-02-07 17:20:48 +0800473 dev_put(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000474err:
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200475 batadv_hardif_free_ref(hard_iface);
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000476 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000477}
478
Sven Eckelmanna15fd362013-02-11 17:10:24 +0800479void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface,
480 enum batadv_hard_if_cleanup autodel)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000481{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200482 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
483 struct batadv_hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000484
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200485 if (hard_iface->if_status == BATADV_IF_ACTIVE)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200486 batadv_hardif_deactivate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000487
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200488 if (hard_iface->if_status != BATADV_IF_INACTIVE)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200489 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000490
Sven Eckelmann3e348192012-05-16 20:23:22 +0200491 batadv_info(hard_iface->soft_iface, "Removing interface: %s\n",
492 hard_iface->net_dev->name);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000493 dev_remove_pack(&hard_iface->batman_adv_ptype);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000494
495 bat_priv->num_ifaces--;
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200496 batadv_orig_hash_del_if(hard_iface, bat_priv->num_ifaces);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000497
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200498 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200499 if (hard_iface == primary_if) {
Sven Eckelmann56303d32012-06-05 22:31:31 +0200500 struct batadv_hard_iface *new_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000501
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200502 new_if = batadv_hardif_get_active(hard_iface->soft_iface);
503 batadv_primary_if_select(bat_priv, new_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000504
505 if (new_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200506 batadv_hardif_free_ref(new_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000507 }
508
Marek Lindner00a50072012-02-07 17:20:47 +0800509 bat_priv->bat_algo_ops->bat_iface_disable(hard_iface);
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200510 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000511
Marek Lindnere6c10f42011-02-18 12:33:20 +0000512 /* delete all references to this hard_iface */
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200513 batadv_purge_orig_ref(bat_priv);
Sven Eckelmann9455e342012-05-12 02:09:37 +0200514 batadv_purge_outstanding_packets(bat_priv, hard_iface);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000515 dev_put(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000516
517 /* nobody uses this interface anymore */
Antonio Quartulli8257f552013-08-19 18:39:59 +0200518 if (!bat_priv->num_ifaces) {
519 batadv_gw_check_client_stop(bat_priv);
520
521 if (autodel == BATADV_IF_CLEANUP_AUTO)
522 batadv_softif_destroy_sysfs(hard_iface->soft_iface);
523 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000524
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800525 netdev_upper_dev_unlink(hard_iface->net_dev, hard_iface->soft_iface);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000526 hard_iface->soft_iface = NULL;
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200527 batadv_hardif_free_ref(hard_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200528
529out:
530 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200531 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000532}
533
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100534/**
535 * batadv_hardif_remove_interface_finish - cleans up the remains of a hardif
536 * @work: work queue item
537 *
538 * Free the parts of the hard interface which can not be removed under
539 * rtnl lock (to prevent deadlock situations).
540 */
541static void batadv_hardif_remove_interface_finish(struct work_struct *work)
542{
543 struct batadv_hard_iface *hard_iface;
544
545 hard_iface = container_of(work, struct batadv_hard_iface,
546 cleanup_work);
547
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100548 batadv_debugfs_del_hardif(hard_iface);
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100549 batadv_sysfs_del_hardif(&hard_iface->hardif_obj);
550 batadv_hardif_free_ref(hard_iface);
551}
552
Sven Eckelmann56303d32012-06-05 22:31:31 +0200553static struct batadv_hard_iface *
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200554batadv_hardif_add_interface(struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000555{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200556 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000557 int ret;
558
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200559 ASSERT_RTNL();
560
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200561 ret = batadv_is_valid_iface(net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000562 if (ret != 1)
563 goto out;
564
565 dev_hold(net_dev);
566
Antonio Quartulli7db3fc22013-04-02 12:16:53 +0200567 hard_iface = kzalloc(sizeof(*hard_iface), GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700568 if (!hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000569 goto release_dev;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000570
Sven Eckelmann5853e222012-05-12 02:09:24 +0200571 ret = batadv_sysfs_add_hardif(&hard_iface->hardif_obj, net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000572 if (ret)
573 goto free_if;
574
Marek Lindnere6c10f42011-02-18 12:33:20 +0000575 hard_iface->if_num = -1;
576 hard_iface->net_dev = net_dev;
577 hard_iface->soft_iface = NULL;
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200578 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100579
580 ret = batadv_debugfs_add_hardif(hard_iface);
581 if (ret)
582 goto free_sysfs;
583
Marek Lindnere6c10f42011-02-18 12:33:20 +0000584 INIT_LIST_HEAD(&hard_iface->list);
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100585 INIT_WORK(&hard_iface->cleanup_work,
586 batadv_hardif_remove_interface_finish);
587
Matthias Schiffercaf65bf2013-03-09 23:14:23 +0100588 hard_iface->num_bcasts = BATADV_NUM_BCASTS_DEFAULT;
589 if (batadv_is_wifi_netdev(net_dev))
590 hard_iface->num_bcasts = BATADV_NUM_BCASTS_WIRELESS;
591
Marek Lindnered75ccb2011-02-10 14:33:51 +0000592 /* extra reference for return */
Marek Lindnere6c10f42011-02-18 12:33:20 +0000593 atomic_set(&hard_iface->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000594
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200595 batadv_check_known_mac_addr(hard_iface->net_dev);
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200596 list_add_tail_rcu(&hard_iface->list, &batadv_hardif_list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000597
Marek Lindnere6c10f42011-02-18 12:33:20 +0000598 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000599
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100600free_sysfs:
601 batadv_sysfs_del_hardif(&hard_iface->hardif_obj);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000602free_if:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000603 kfree(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000604release_dev:
605 dev_put(net_dev);
606out:
607 return NULL;
608}
609
Sven Eckelmann56303d32012-06-05 22:31:31 +0200610static void batadv_hardif_remove_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000611{
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200612 ASSERT_RTNL();
613
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000614 /* first deactivate interface */
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200615 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmanna15fd362013-02-11 17:10:24 +0800616 batadv_hardif_disable_interface(hard_iface,
617 BATADV_IF_CLEANUP_AUTO);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000618
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200619 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000620 return;
621
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200622 hard_iface->if_status = BATADV_IF_TO_BE_REMOVED;
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100623 queue_work(batadv_event_workqueue, &hard_iface->cleanup_work);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000624}
625
Sven Eckelmann95638772012-05-12 02:09:31 +0200626void batadv_hardif_remove_interfaces(void)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000627{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200628 struct batadv_hard_iface *hard_iface, *hard_iface_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000629
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200630 rtnl_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000631 list_for_each_entry_safe(hard_iface, hard_iface_tmp,
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200632 &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +0000633 list_del_rcu(&hard_iface->list);
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200634 batadv_hardif_remove_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000635 }
636 rtnl_unlock();
637}
638
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200639static int batadv_hard_if_event(struct notifier_block *this,
640 unsigned long event, void *ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000641{
Jiri Pirko351638e2013-05-28 01:30:21 +0000642 struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200643 struct batadv_hard_iface *hard_iface;
644 struct batadv_hard_iface *primary_if = NULL;
645 struct batadv_priv *bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000646
Sven Eckelmann37130292013-02-11 17:10:22 +0800647 if (batadv_softif_is_valid(net_dev) && event == NETDEV_REGISTER) {
648 batadv_sysfs_add_meshif(net_dev);
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200649 bat_priv = netdev_priv(net_dev);
650 batadv_softif_create_vlan(bat_priv, BATADV_NO_FLAGS);
Sven Eckelmann37130292013-02-11 17:10:22 +0800651 return NOTIFY_DONE;
652 }
653
Sven Eckelmann56303d32012-06-05 22:31:31 +0200654 hard_iface = batadv_hardif_get_by_netdev(net_dev);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000655 if (!hard_iface && event == NETDEV_REGISTER)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200656 hard_iface = batadv_hardif_add_interface(net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000657
Marek Lindnere6c10f42011-02-18 12:33:20 +0000658 if (!hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000659 goto out;
660
661 switch (event) {
662 case NETDEV_UP:
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200663 batadv_hardif_activate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000664 break;
665 case NETDEV_GOING_DOWN:
666 case NETDEV_DOWN:
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200667 batadv_hardif_deactivate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000668 break;
669 case NETDEV_UNREGISTER:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000670 list_del_rcu(&hard_iface->list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000671
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200672 batadv_hardif_remove_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000673 break;
674 case NETDEV_CHANGEMTU:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000675 if (hard_iface->soft_iface)
Sven Eckelmann95638772012-05-12 02:09:31 +0200676 batadv_update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000677 break;
678 case NETDEV_CHANGEADDR:
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200679 if (hard_iface->if_status == BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000680 goto hardif_put;
681
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200682 batadv_check_known_mac_addr(hard_iface->net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000683
Marek Lindnere6c10f42011-02-18 12:33:20 +0000684 bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindnerc3229392012-03-11 06:17:50 +0800685 bat_priv->bat_algo_ops->bat_iface_update_mac(hard_iface);
Marek Lindner01c42242011-11-28 21:31:55 +0800686
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200687 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200688 if (!primary_if)
689 goto hardif_put;
690
691 if (hard_iface == primary_if)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200692 batadv_primary_if_update_addr(bat_priv, NULL);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000693 break;
694 default:
695 break;
Joe Perchesf81c6222011-06-03 11:51:19 +0000696 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000697
698hardif_put:
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200699 batadv_hardif_free_ref(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000700out:
Marek Lindner32ae9b22011-04-20 15:40:58 +0200701 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200702 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000703 return NOTIFY_DONE;
704}
705
Sven Eckelmann95638772012-05-12 02:09:31 +0200706struct notifier_block batadv_hard_if_notifier = {
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200707 .notifier_call = batadv_hard_if_event,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000708};