blob: 1ba8a552b62b33fe058d0532c4f3d9f6369c57b9 [file] [log] [blame]
Antonio Quartulli0b873932013-01-04 03:05:31 +01001/* Copyright (C) 2007-2013 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
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018 */
19
20#include "main.h"
Antonio Quartulli785ea112011-11-23 11:35:44 +010021#include "distributed-arp-table.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000022#include "hard-interface.h"
23#include "soft-interface.h"
24#include "send.h"
25#include "translation-table.h"
26#include "routing.h"
Sven Eckelmannb706b132012-06-10 23:58:51 +020027#include "sysfs.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000028#include "originator.h"
29#include "hash.h"
Simon Wunderlich23721382012-01-22 20:00:19 +010030#include "bridge_loop_avoidance.h"
Antonio Quartulli8257f552013-08-19 18:39:59 +020031#include "gateway_client.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000032
33#include <linux/if_arp.h>
Antonio Quartulliaf5d4f72012-11-26 00:38:50 +010034#include <linux/if_ether.h>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000035
Sven Eckelmann95638772012-05-12 02:09:31 +020036void batadv_hardif_free_rcu(struct rcu_head *rcu)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000037{
Sven Eckelmann56303d32012-06-05 22:31:31 +020038 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000039
Sven Eckelmann56303d32012-06-05 22:31:31 +020040 hard_iface = container_of(rcu, struct batadv_hard_iface, rcu);
Marek Lindnere6c10f42011-02-18 12:33:20 +000041 dev_put(hard_iface->net_dev);
42 kfree(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000043}
44
Sven Eckelmann56303d32012-06-05 22:31:31 +020045struct batadv_hard_iface *
46batadv_hardif_get_by_netdev(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000047{
Sven Eckelmann56303d32012-06-05 22:31:31 +020048 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000049
50 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +020051 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +000052 if (hard_iface->net_dev == net_dev &&
53 atomic_inc_not_zero(&hard_iface->refcount))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000054 goto out;
55 }
56
Marek Lindnere6c10f42011-02-18 12:33:20 +000057 hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000058
59out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000060 rcu_read_unlock();
Marek Lindnere6c10f42011-02-18 12:33:20 +000061 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000062}
63
Antonio Quartullib7eddd02012-09-09 10:46:46 +020064/**
65 * batadv_is_on_batman_iface - check if a device is a batman iface descendant
66 * @net_dev: the device to check
67 *
68 * If the user creates any virtual device on top of a batman-adv interface, it
69 * is important to prevent this new interface to be used to create a new mesh
70 * network (this behaviour would lead to a batman-over-batman configuration).
71 * This function recursively checks all the fathers of the device passed as
72 * argument looking for a batman-adv soft interface.
73 *
74 * Returns true if the device is descendant of a batman-adv mesh interface (or
75 * if it is a batman-adv interface itself), false otherwise
76 */
77static bool batadv_is_on_batman_iface(const struct net_device *net_dev)
78{
79 struct net_device *parent_dev;
80 bool ret;
81
82 /* check if this is a batman-adv mesh interface */
83 if (batadv_softif_is_valid(net_dev))
84 return true;
85
86 /* no more parents..stop recursion */
87 if (net_dev->iflink == net_dev->ifindex)
88 return false;
89
90 /* recurse over the parent device */
91 parent_dev = dev_get_by_index(&init_net, net_dev->iflink);
92 /* 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
98 if (parent_dev)
99 dev_put(parent_dev);
100 return ret;
101}
102
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200103static int batadv_is_valid_iface(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000104{
105 if (net_dev->flags & IFF_LOOPBACK)
106 return 0;
107
108 if (net_dev->type != ARPHRD_ETHER)
109 return 0;
110
111 if (net_dev->addr_len != ETH_ALEN)
112 return 0;
113
114 /* no batman over batman */
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200115 if (batadv_is_on_batman_iface(net_dev))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000116 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000117
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000118 return 1;
119}
120
Matthias Schifferde68d102013-03-09 23:14:22 +0100121/**
122 * batadv_is_wifi_netdev - check if the given net_device struct is a wifi
123 * interface
124 * @net_device: the device to check
125 *
126 * Returns true if the net device is a 802.11 wireless device, false otherwise.
127 */
128static bool batadv_is_wifi_netdev(struct net_device *net_device)
129{
130#ifdef CONFIG_WIRELESS_EXT
131 /* pre-cfg80211 drivers have to implement WEXT, so it is possible to
132 * check for wireless_handlers != NULL
133 */
134 if (net_device->wireless_handlers)
135 return true;
136#endif
137
138 /* cfg80211 drivers have to set ieee80211_ptr */
139 if (net_device->ieee80211_ptr)
140 return true;
141
142 return false;
143}
144
145/**
146 * batadv_is_wifi_iface - check if the given interface represented by ifindex
147 * is a wifi interface
148 * @ifindex: interface index to check
149 *
150 * Returns true if the interface represented by ifindex is a 802.11 wireless
151 * device, false otherwise.
152 */
153bool batadv_is_wifi_iface(int ifindex)
154{
155 struct net_device *net_device = NULL;
156 bool ret = false;
157
158 if (ifindex == BATADV_NULL_IFINDEX)
159 goto out;
160
161 net_device = dev_get_by_index(&init_net, ifindex);
162 if (!net_device)
163 goto out;
164
165 ret = batadv_is_wifi_netdev(net_device);
166
167out:
168 if (net_device)
169 dev_put(net_device);
170 return ret;
171}
172
Sven Eckelmann56303d32012-06-05 22:31:31 +0200173static struct batadv_hard_iface *
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200174batadv_hardif_get_active(const struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000175{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200176 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000177
178 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200179 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +0000180 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000181 continue;
182
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200183 if (hard_iface->if_status == BATADV_IF_ACTIVE &&
Marek Lindnere6c10f42011-02-18 12:33:20 +0000184 atomic_inc_not_zero(&hard_iface->refcount))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000185 goto out;
186 }
187
Marek Lindnere6c10f42011-02-18 12:33:20 +0000188 hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000189
190out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000191 rcu_read_unlock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000192 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000193}
194
Sven Eckelmann56303d32012-06-05 22:31:31 +0200195static void batadv_primary_if_update_addr(struct batadv_priv *bat_priv,
196 struct batadv_hard_iface *oldif)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000197{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200198 struct batadv_hard_iface *primary_if;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200199
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200200 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200201 if (!primary_if)
202 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000203
Antonio Quartulli785ea112011-11-23 11:35:44 +0100204 batadv_dat_init_own_addr(bat_priv, primary_if);
Sven Eckelmann08adf152012-05-12 13:38:47 +0200205 batadv_bla_update_orig_address(bat_priv, primary_if, oldif);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200206out:
207 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200208 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000209}
210
Sven Eckelmann56303d32012-06-05 22:31:31 +0200211static void batadv_primary_if_select(struct batadv_priv *bat_priv,
212 struct batadv_hard_iface *new_hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000213{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200214 struct batadv_hard_iface *curr_hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000215
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200216 ASSERT_RTNL();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000217
Marek Lindner32ae9b22011-04-20 15:40:58 +0200218 if (new_hard_iface && !atomic_inc_not_zero(&new_hard_iface->refcount))
219 new_hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000220
Sven Eckelmann728cbc62011-05-15 00:50:21 +0200221 curr_hard_iface = rcu_dereference_protected(bat_priv->primary_if, 1);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200222 rcu_assign_pointer(bat_priv->primary_if, new_hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000223
Marek Lindner32ae9b22011-04-20 15:40:58 +0200224 if (!new_hard_iface)
Simon Wunderlich23721382012-01-22 20:00:19 +0100225 goto out;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200226
Marek Lindnercd8b78e2012-02-07 17:20:49 +0800227 bat_priv->bat_algo_ops->bat_primary_iface_set(new_hard_iface);
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200228 batadv_primary_if_update_addr(bat_priv, curr_hard_iface);
Simon Wunderlich23721382012-01-22 20:00:19 +0100229
230out:
231 if (curr_hard_iface)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200232 batadv_hardif_free_ref(curr_hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000233}
234
Sven Eckelmann56303d32012-06-05 22:31:31 +0200235static bool
236batadv_hardif_is_iface_up(const struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000237{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000238 if (hard_iface->net_dev->flags & IFF_UP)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000239 return true;
240
241 return false;
242}
243
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200244static void batadv_check_known_mac_addr(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000245{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200246 const struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000247
248 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200249 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200250 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
251 (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000252 continue;
253
Marek Lindnere6c10f42011-02-18 12:33:20 +0000254 if (hard_iface->net_dev == net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000255 continue;
256
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200257 if (!batadv_compare_eth(hard_iface->net_dev->dev_addr,
258 net_dev->dev_addr))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000259 continue;
260
Sven Eckelmann67969582012-03-26 16:22:45 +0200261 pr_warn("The newly added mac address (%pM) already exists on: %s\n",
262 net_dev->dev_addr, hard_iface->net_dev->name);
263 pr_warn("It is strongly recommended to keep mac addresses unique to avoid problems!\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000264 }
265 rcu_read_unlock();
266}
267
Sven Eckelmann95638772012-05-12 02:09:31 +0200268int batadv_hardif_min_mtu(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000269{
Marek Lindnera19d3d82013-05-27 15:33:25 +0800270 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200271 const struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000272 int min_mtu = ETH_DATA_LEN;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000273
274 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200275 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200276 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
277 (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000278 continue;
279
Marek Lindnere6c10f42011-02-18 12:33:20 +0000280 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000281 continue;
282
Marek Lindnera19d3d82013-05-27 15:33:25 +0800283 min_mtu = min_t(int, hard_iface->net_dev->mtu, min_mtu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000284 }
285 rcu_read_unlock();
Marek Lindnera19d3d82013-05-27 15:33:25 +0800286
287 atomic_set(&bat_priv->packet_size_max, min_mtu);
288
289 if (atomic_read(&bat_priv->fragmentation) == 0)
290 goto out;
291
292 /* with fragmentation enabled the maximum size of internally generated
293 * packets such as translation table exchanges or tvlv containers, etc
294 * has to be calculated
295 */
296 min_mtu = min_t(int, min_mtu, BATADV_FRAG_MAX_FRAG_SIZE);
297 min_mtu -= sizeof(struct batadv_frag_packet);
298 min_mtu *= BATADV_FRAG_MAX_FRAGMENTS;
299 atomic_set(&bat_priv->packet_size_max, min_mtu);
300
301 /* with fragmentation enabled we can fragment external packets easily */
302 min_mtu = min_t(int, min_mtu, ETH_DATA_LEN);
303
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000304out:
Marek Lindnera19d3d82013-05-27 15:33:25 +0800305 return min_mtu - batadv_max_header_len();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000306}
307
308/* adjusts the MTU if a new interface with a smaller MTU appeared. */
Sven Eckelmann95638772012-05-12 02:09:31 +0200309void batadv_update_min_mtu(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000310{
Marek Lindnera19d3d82013-05-27 15:33:25 +0800311 soft_iface->mtu = batadv_hardif_min_mtu(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000312
Marek Lindnera19d3d82013-05-27 15:33:25 +0800313 /* Check if the local translate table should be cleaned up to match a
314 * new (and smaller) MTU.
315 */
316 batadv_tt_local_resize_to_mtu(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000317}
318
Sven Eckelmann56303d32012-06-05 22:31:31 +0200319static void
320batadv_hardif_activate_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000321{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200322 struct batadv_priv *bat_priv;
323 struct batadv_hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000324
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200325 if (hard_iface->if_status != BATADV_IF_INACTIVE)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200326 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000327
Marek Lindnere6c10f42011-02-18 12:33:20 +0000328 bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000329
Marek Lindnerc3229392012-03-11 06:17:50 +0800330 bat_priv->bat_algo_ops->bat_iface_update_mac(hard_iface);
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200331 hard_iface->if_status = BATADV_IF_TO_BE_ACTIVATED;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000332
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200333 /* the first active interface becomes our primary interface or
Antonio Quartulli015758d2011-07-09 17:52:13 +0200334 * the next active interface after the old primary interface was removed
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000335 */
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200336 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200337 if (!primary_if)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200338 batadv_primary_if_select(bat_priv, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000339
Sven Eckelmann3e348192012-05-16 20:23:22 +0200340 batadv_info(hard_iface->soft_iface, "Interface activated: %s\n",
341 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000342
Sven Eckelmann95638772012-05-12 02:09:31 +0200343 batadv_update_min_mtu(hard_iface->soft_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200344
345out:
346 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200347 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000348}
349
Sven Eckelmann56303d32012-06-05 22:31:31 +0200350static void
351batadv_hardif_deactivate_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000352{
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200353 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
354 (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000355 return;
356
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200357 hard_iface->if_status = BATADV_IF_INACTIVE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000358
Sven Eckelmann3e348192012-05-16 20:23:22 +0200359 batadv_info(hard_iface->soft_iface, "Interface deactivated: %s\n",
360 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000361
Sven Eckelmann95638772012-05-12 02:09:31 +0200362 batadv_update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000363}
364
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100365/**
366 * batadv_master_del_slave - remove hard_iface from the current master interface
367 * @slave: the interface enslaved in another master
368 * @master: the master from which slave has to be removed
369 *
370 * Invoke ndo_del_slave on master passing slave as argument. In this way slave
371 * is free'd and master can correctly change its internal state.
372 * Return 0 on success, a negative value representing the error otherwise
373 */
374static int batadv_master_del_slave(struct batadv_hard_iface *slave,
375 struct net_device *master)
376{
377 int ret;
378
379 if (!master)
380 return 0;
381
382 ret = -EBUSY;
383 if (master->netdev_ops->ndo_del_slave)
384 ret = master->netdev_ops->ndo_del_slave(master, slave->net_dev);
385
386 return ret;
387}
388
Sven Eckelmann56303d32012-06-05 22:31:31 +0200389int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface,
Sven Eckelmann95638772012-05-12 02:09:31 +0200390 const char *iface_name)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000391{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200392 struct batadv_priv *bat_priv;
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100393 struct net_device *soft_iface, *master;
Antonio Quartulli293e9332013-05-19 12:55:16 +0200394 __be16 ethertype = htons(ETH_P_BATMAN);
Marek Lindner411d6ed2013-05-08 13:31:59 +0800395 int max_header_len = batadv_max_header_len();
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000396 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000397
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200398 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000399 goto out;
400
Marek Lindnere6c10f42011-02-18 12:33:20 +0000401 if (!atomic_inc_not_zero(&hard_iface->refcount))
Marek Lindnered75ccb2011-02-10 14:33:51 +0000402 goto out;
403
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000404 soft_iface = dev_get_by_name(&init_net, iface_name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000405
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000406 if (!soft_iface) {
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200407 soft_iface = batadv_softif_create(iface_name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000408
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000409 if (!soft_iface) {
410 ret = -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000411 goto err;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000412 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000413
414 /* dev_get_by_name() increases the reference counter for us */
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000415 dev_hold(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000416 }
417
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200418 if (!batadv_softif_is_valid(soft_iface)) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100419 pr_err("Can't create batman mesh interface %s: already exists as regular interface\n",
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000420 soft_iface->name);
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000421 ret = -EINVAL;
Marek Lindner77af7572012-02-07 17:20:48 +0800422 goto err_dev;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000423 }
424
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100425 /* check if the interface is enslaved in another virtual one and
426 * in that case unlink it first
427 */
428 master = netdev_master_upper_dev_get(hard_iface->net_dev);
429 ret = batadv_master_del_slave(hard_iface, master);
430 if (ret)
431 goto err_dev;
432
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000433 hard_iface->soft_iface = soft_iface;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000434 bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200435
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800436 ret = netdev_master_upper_dev_link(hard_iface->net_dev, soft_iface);
437 if (ret)
438 goto err_dev;
439
Marek Lindner77af7572012-02-07 17:20:48 +0800440 ret = bat_priv->bat_algo_ops->bat_iface_enable(hard_iface);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200441 if (ret < 0)
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800442 goto err_upper;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000443
Marek Lindnere6c10f42011-02-18 12:33:20 +0000444 hard_iface->if_num = bat_priv->num_ifaces;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000445 bat_priv->num_ifaces++;
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200446 hard_iface->if_status = BATADV_IF_INACTIVE;
Simon Wunderlich62446302012-07-01 22:51:55 +0200447 ret = batadv_orig_hash_add_if(hard_iface, bat_priv->num_ifaces);
448 if (ret < 0) {
449 bat_priv->bat_algo_ops->bat_iface_disable(hard_iface);
450 bat_priv->num_ifaces--;
451 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800452 goto err_upper;
Simon Wunderlich62446302012-07-01 22:51:55 +0200453 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000454
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200455 hard_iface->batman_adv_ptype.type = ethertype;
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200456 hard_iface->batman_adv_ptype.func = batadv_batman_skb_recv;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000457 hard_iface->batman_adv_ptype.dev = hard_iface->net_dev;
458 dev_add_pack(&hard_iface->batman_adv_ptype);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000459
Sven Eckelmann3e348192012-05-16 20:23:22 +0200460 batadv_info(hard_iface->soft_iface, "Adding interface: %s\n",
461 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000462
Sven Eckelmann0aca2362012-06-19 20:26:30 +0200463 if (atomic_read(&bat_priv->fragmentation) &&
Marek Lindner411d6ed2013-05-08 13:31:59 +0800464 hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
Sven Eckelmann3e348192012-05-16 20:23:22 +0200465 batadv_info(hard_iface->soft_iface,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800466 "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 +0200467 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800468 ETH_DATA_LEN + max_header_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000469
Sven Eckelmann0aca2362012-06-19 20:26:30 +0200470 if (!atomic_read(&bat_priv->fragmentation) &&
Marek Lindner411d6ed2013-05-08 13:31:59 +0800471 hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
Sven Eckelmann3e348192012-05-16 20:23:22 +0200472 batadv_info(hard_iface->soft_iface,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800473 "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 +0200474 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800475 ETH_DATA_LEN + max_header_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000476
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200477 if (batadv_hardif_is_iface_up(hard_iface))
478 batadv_hardif_activate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000479 else
Sven Eckelmann3e348192012-05-16 20:23:22 +0200480 batadv_err(hard_iface->soft_iface,
481 "Not using interface %s (retrying later): interface not active\n",
482 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000483
484 /* begin scheduling originator messages on that interface */
Sven Eckelmann9455e342012-05-12 02:09:37 +0200485 batadv_schedule_bat_ogm(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000486
487out:
488 return 0;
489
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800490err_upper:
491 netdev_upper_dev_unlink(hard_iface->net_dev, soft_iface);
Marek Lindner77af7572012-02-07 17:20:48 +0800492err_dev:
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800493 hard_iface->soft_iface = NULL;
Marek Lindner77af7572012-02-07 17:20:48 +0800494 dev_put(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000495err:
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200496 batadv_hardif_free_ref(hard_iface);
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000497 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000498}
499
Sven Eckelmanna15fd362013-02-11 17:10:24 +0800500void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface,
501 enum batadv_hard_if_cleanup autodel)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000502{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200503 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
504 struct batadv_hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000505
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200506 if (hard_iface->if_status == BATADV_IF_ACTIVE)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200507 batadv_hardif_deactivate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000508
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200509 if (hard_iface->if_status != BATADV_IF_INACTIVE)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200510 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000511
Sven Eckelmann3e348192012-05-16 20:23:22 +0200512 batadv_info(hard_iface->soft_iface, "Removing interface: %s\n",
513 hard_iface->net_dev->name);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000514 dev_remove_pack(&hard_iface->batman_adv_ptype);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000515
516 bat_priv->num_ifaces--;
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200517 batadv_orig_hash_del_if(hard_iface, bat_priv->num_ifaces);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000518
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200519 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200520 if (hard_iface == primary_if) {
Sven Eckelmann56303d32012-06-05 22:31:31 +0200521 struct batadv_hard_iface *new_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000522
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200523 new_if = batadv_hardif_get_active(hard_iface->soft_iface);
524 batadv_primary_if_select(bat_priv, new_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000525
526 if (new_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200527 batadv_hardif_free_ref(new_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000528 }
529
Marek Lindner00a50072012-02-07 17:20:47 +0800530 bat_priv->bat_algo_ops->bat_iface_disable(hard_iface);
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200531 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000532
Marek Lindnere6c10f42011-02-18 12:33:20 +0000533 /* delete all references to this hard_iface */
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200534 batadv_purge_orig_ref(bat_priv);
Sven Eckelmann9455e342012-05-12 02:09:37 +0200535 batadv_purge_outstanding_packets(bat_priv, hard_iface);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000536 dev_put(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000537
538 /* nobody uses this interface anymore */
Antonio Quartulli8257f552013-08-19 18:39:59 +0200539 if (!bat_priv->num_ifaces) {
540 batadv_gw_check_client_stop(bat_priv);
541
542 if (autodel == BATADV_IF_CLEANUP_AUTO)
543 batadv_softif_destroy_sysfs(hard_iface->soft_iface);
544 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000545
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800546 netdev_upper_dev_unlink(hard_iface->net_dev, hard_iface->soft_iface);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000547 hard_iface->soft_iface = NULL;
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200548 batadv_hardif_free_ref(hard_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200549
550out:
551 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200552 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000553}
554
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100555/**
556 * batadv_hardif_remove_interface_finish - cleans up the remains of a hardif
557 * @work: work queue item
558 *
559 * Free the parts of the hard interface which can not be removed under
560 * rtnl lock (to prevent deadlock situations).
561 */
562static void batadv_hardif_remove_interface_finish(struct work_struct *work)
563{
564 struct batadv_hard_iface *hard_iface;
565
566 hard_iface = container_of(work, struct batadv_hard_iface,
567 cleanup_work);
568
569 batadv_sysfs_del_hardif(&hard_iface->hardif_obj);
570 batadv_hardif_free_ref(hard_iface);
571}
572
Sven Eckelmann56303d32012-06-05 22:31:31 +0200573static struct batadv_hard_iface *
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200574batadv_hardif_add_interface(struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000575{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200576 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000577 int ret;
578
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200579 ASSERT_RTNL();
580
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200581 ret = batadv_is_valid_iface(net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000582 if (ret != 1)
583 goto out;
584
585 dev_hold(net_dev);
586
Antonio Quartulli7db3fc22013-04-02 12:16:53 +0200587 hard_iface = kzalloc(sizeof(*hard_iface), GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700588 if (!hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000589 goto release_dev;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000590
Sven Eckelmann5853e222012-05-12 02:09:24 +0200591 ret = batadv_sysfs_add_hardif(&hard_iface->hardif_obj, net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000592 if (ret)
593 goto free_if;
594
Marek Lindnere6c10f42011-02-18 12:33:20 +0000595 hard_iface->if_num = -1;
596 hard_iface->net_dev = net_dev;
597 hard_iface->soft_iface = NULL;
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200598 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000599 INIT_LIST_HEAD(&hard_iface->list);
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100600 INIT_WORK(&hard_iface->cleanup_work,
601 batadv_hardif_remove_interface_finish);
602
Matthias Schiffercaf65bf2013-03-09 23:14:23 +0100603 hard_iface->num_bcasts = BATADV_NUM_BCASTS_DEFAULT;
604 if (batadv_is_wifi_netdev(net_dev))
605 hard_iface->num_bcasts = BATADV_NUM_BCASTS_WIRELESS;
606
Marek Lindnered75ccb2011-02-10 14:33:51 +0000607 /* extra reference for return */
Marek Lindnere6c10f42011-02-18 12:33:20 +0000608 atomic_set(&hard_iface->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000609
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200610 batadv_check_known_mac_addr(hard_iface->net_dev);
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200611 list_add_tail_rcu(&hard_iface->list, &batadv_hardif_list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000612
Marek Lindnere6c10f42011-02-18 12:33:20 +0000613 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000614
615free_if:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000616 kfree(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000617release_dev:
618 dev_put(net_dev);
619out:
620 return NULL;
621}
622
Sven Eckelmann56303d32012-06-05 22:31:31 +0200623static void batadv_hardif_remove_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000624{
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200625 ASSERT_RTNL();
626
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000627 /* first deactivate interface */
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200628 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmanna15fd362013-02-11 17:10:24 +0800629 batadv_hardif_disable_interface(hard_iface,
630 BATADV_IF_CLEANUP_AUTO);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000631
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200632 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000633 return;
634
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200635 hard_iface->if_status = BATADV_IF_TO_BE_REMOVED;
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100636 queue_work(batadv_event_workqueue, &hard_iface->cleanup_work);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000637}
638
Sven Eckelmann95638772012-05-12 02:09:31 +0200639void batadv_hardif_remove_interfaces(void)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000640{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200641 struct batadv_hard_iface *hard_iface, *hard_iface_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000642
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200643 rtnl_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000644 list_for_each_entry_safe(hard_iface, hard_iface_tmp,
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200645 &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +0000646 list_del_rcu(&hard_iface->list);
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200647 batadv_hardif_remove_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000648 }
649 rtnl_unlock();
650}
651
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200652static int batadv_hard_if_event(struct notifier_block *this,
653 unsigned long event, void *ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000654{
Jiri Pirko351638e2013-05-28 01:30:21 +0000655 struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200656 struct batadv_hard_iface *hard_iface;
657 struct batadv_hard_iface *primary_if = NULL;
658 struct batadv_priv *bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000659
Sven Eckelmann37130292013-02-11 17:10:22 +0800660 if (batadv_softif_is_valid(net_dev) && event == NETDEV_REGISTER) {
661 batadv_sysfs_add_meshif(net_dev);
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200662 bat_priv = netdev_priv(net_dev);
663 batadv_softif_create_vlan(bat_priv, BATADV_NO_FLAGS);
Sven Eckelmann37130292013-02-11 17:10:22 +0800664 return NOTIFY_DONE;
665 }
666
Sven Eckelmann56303d32012-06-05 22:31:31 +0200667 hard_iface = batadv_hardif_get_by_netdev(net_dev);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000668 if (!hard_iface && event == NETDEV_REGISTER)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200669 hard_iface = batadv_hardif_add_interface(net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000670
Marek Lindnere6c10f42011-02-18 12:33:20 +0000671 if (!hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000672 goto out;
673
674 switch (event) {
675 case NETDEV_UP:
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200676 batadv_hardif_activate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000677 break;
678 case NETDEV_GOING_DOWN:
679 case NETDEV_DOWN:
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200680 batadv_hardif_deactivate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000681 break;
682 case NETDEV_UNREGISTER:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000683 list_del_rcu(&hard_iface->list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000684
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200685 batadv_hardif_remove_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000686 break;
687 case NETDEV_CHANGEMTU:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000688 if (hard_iface->soft_iface)
Sven Eckelmann95638772012-05-12 02:09:31 +0200689 batadv_update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000690 break;
691 case NETDEV_CHANGEADDR:
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200692 if (hard_iface->if_status == BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000693 goto hardif_put;
694
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200695 batadv_check_known_mac_addr(hard_iface->net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000696
Marek Lindnere6c10f42011-02-18 12:33:20 +0000697 bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindnerc3229392012-03-11 06:17:50 +0800698 bat_priv->bat_algo_ops->bat_iface_update_mac(hard_iface);
Marek Lindner01c42242011-11-28 21:31:55 +0800699
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200700 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200701 if (!primary_if)
702 goto hardif_put;
703
704 if (hard_iface == primary_if)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200705 batadv_primary_if_update_addr(bat_priv, NULL);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000706 break;
707 default:
708 break;
Joe Perchesf81c6222011-06-03 11:51:19 +0000709 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000710
711hardif_put:
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200712 batadv_hardif_free_ref(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000713out:
Marek Lindner32ae9b22011-04-20 15:40:58 +0200714 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200715 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000716 return NOTIFY_DONE;
717}
718
Sven Eckelmann95638772012-05-12 02:09:31 +0200719struct notifier_block batadv_hard_if_notifier = {
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200720 .notifier_call = batadv_hard_if_event,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000721};