blob: c60d3ed40257e9d08fe034b6161771e630065576 [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"
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 */
86 if (net_dev->iflink == net_dev->ifindex)
87 return false;
88
89 /* recurse over the parent device */
90 parent_dev = dev_get_by_index(&init_net, net_dev->iflink);
91 /* if we got a NULL parent_dev there is something broken.. */
92 if (WARN(!parent_dev, "Cannot find parent device"))
93 return false;
94
95 ret = batadv_is_on_batman_iface(parent_dev);
96
97 if (parent_dev)
98 dev_put(parent_dev);
99 return ret;
100}
101
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200102static int batadv_is_valid_iface(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000103{
104 if (net_dev->flags & IFF_LOOPBACK)
105 return 0;
106
107 if (net_dev->type != ARPHRD_ETHER)
108 return 0;
109
110 if (net_dev->addr_len != ETH_ALEN)
111 return 0;
112
113 /* no batman over batman */
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200114 if (batadv_is_on_batman_iface(net_dev))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000115 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000116
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000117 return 1;
118}
119
Matthias Schifferde68d102013-03-09 23:14:22 +0100120/**
121 * batadv_is_wifi_netdev - check if the given net_device struct is a wifi
122 * interface
123 * @net_device: the device to check
124 *
125 * Returns true if the net device is a 802.11 wireless device, false otherwise.
126 */
127static bool batadv_is_wifi_netdev(struct net_device *net_device)
128{
129#ifdef CONFIG_WIRELESS_EXT
130 /* pre-cfg80211 drivers have to implement WEXT, so it is possible to
131 * check for wireless_handlers != NULL
132 */
133 if (net_device->wireless_handlers)
134 return true;
135#endif
136
137 /* cfg80211 drivers have to set ieee80211_ptr */
138 if (net_device->ieee80211_ptr)
139 return true;
140
141 return false;
142}
143
144/**
145 * batadv_is_wifi_iface - check if the given interface represented by ifindex
146 * is a wifi interface
147 * @ifindex: interface index to check
148 *
149 * Returns true if the interface represented by ifindex is a 802.11 wireless
150 * device, false otherwise.
151 */
152bool batadv_is_wifi_iface(int ifindex)
153{
154 struct net_device *net_device = NULL;
155 bool ret = false;
156
157 if (ifindex == BATADV_NULL_IFINDEX)
158 goto out;
159
160 net_device = dev_get_by_index(&init_net, ifindex);
161 if (!net_device)
162 goto out;
163
164 ret = batadv_is_wifi_netdev(net_device);
165
166out:
167 if (net_device)
168 dev_put(net_device);
169 return ret;
170}
171
Sven Eckelmann56303d32012-06-05 22:31:31 +0200172static struct batadv_hard_iface *
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200173batadv_hardif_get_active(const struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000174{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200175 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000176
177 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200178 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +0000179 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000180 continue;
181
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200182 if (hard_iface->if_status == BATADV_IF_ACTIVE &&
Marek Lindnere6c10f42011-02-18 12:33:20 +0000183 atomic_inc_not_zero(&hard_iface->refcount))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000184 goto out;
185 }
186
Marek Lindnere6c10f42011-02-18 12:33:20 +0000187 hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000188
189out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000190 rcu_read_unlock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000191 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000192}
193
Sven Eckelmann56303d32012-06-05 22:31:31 +0200194static void batadv_primary_if_update_addr(struct batadv_priv *bat_priv,
195 struct batadv_hard_iface *oldif)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000196{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200197 struct batadv_hard_iface *primary_if;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200198
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200199 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200200 if (!primary_if)
201 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000202
Antonio Quartulli785ea112011-11-23 11:35:44 +0100203 batadv_dat_init_own_addr(bat_priv, primary_if);
Sven Eckelmann08adf152012-05-12 13:38:47 +0200204 batadv_bla_update_orig_address(bat_priv, primary_if, oldif);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200205out:
206 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200207 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000208}
209
Sven Eckelmann56303d32012-06-05 22:31:31 +0200210static void batadv_primary_if_select(struct batadv_priv *bat_priv,
211 struct batadv_hard_iface *new_hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000212{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200213 struct batadv_hard_iface *curr_hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000214
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200215 ASSERT_RTNL();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000216
Marek Lindner32ae9b22011-04-20 15:40:58 +0200217 if (new_hard_iface && !atomic_inc_not_zero(&new_hard_iface->refcount))
218 new_hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000219
Sven Eckelmann728cbc62011-05-15 00:50:21 +0200220 curr_hard_iface = rcu_dereference_protected(bat_priv->primary_if, 1);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200221 rcu_assign_pointer(bat_priv->primary_if, new_hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000222
Marek Lindner32ae9b22011-04-20 15:40:58 +0200223 if (!new_hard_iface)
Simon Wunderlich23721382012-01-22 20:00:19 +0100224 goto out;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200225
Marek Lindnercd8b78e2012-02-07 17:20:49 +0800226 bat_priv->bat_algo_ops->bat_primary_iface_set(new_hard_iface);
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200227 batadv_primary_if_update_addr(bat_priv, curr_hard_iface);
Simon Wunderlich23721382012-01-22 20:00:19 +0100228
229out:
230 if (curr_hard_iface)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200231 batadv_hardif_free_ref(curr_hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000232}
233
Sven Eckelmann56303d32012-06-05 22:31:31 +0200234static bool
235batadv_hardif_is_iface_up(const struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000236{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000237 if (hard_iface->net_dev->flags & IFF_UP)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000238 return true;
239
240 return false;
241}
242
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200243static void batadv_check_known_mac_addr(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000244{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200245 const struct batadv_hard_iface *hard_iface;
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->net_dev == net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000254 continue;
255
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200256 if (!batadv_compare_eth(hard_iface->net_dev->dev_addr,
257 net_dev->dev_addr))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000258 continue;
259
Sven Eckelmann67969582012-03-26 16:22:45 +0200260 pr_warn("The newly added mac address (%pM) already exists on: %s\n",
261 net_dev->dev_addr, hard_iface->net_dev->name);
262 pr_warn("It is strongly recommended to keep mac addresses unique to avoid problems!\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000263 }
264 rcu_read_unlock();
265}
266
Sven Eckelmann95638772012-05-12 02:09:31 +0200267int batadv_hardif_min_mtu(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000268{
Marek Lindnera19d3d82013-05-27 15:33:25 +0800269 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200270 const struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000271 int min_mtu = ETH_DATA_LEN;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000272
273 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200274 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200275 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
276 (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000277 continue;
278
Marek Lindnere6c10f42011-02-18 12:33:20 +0000279 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000280 continue;
281
Marek Lindnera19d3d82013-05-27 15:33:25 +0800282 min_mtu = min_t(int, hard_iface->net_dev->mtu, min_mtu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000283 }
284 rcu_read_unlock();
Marek Lindnera19d3d82013-05-27 15:33:25 +0800285
286 atomic_set(&bat_priv->packet_size_max, min_mtu);
287
288 if (atomic_read(&bat_priv->fragmentation) == 0)
289 goto out;
290
291 /* with fragmentation enabled the maximum size of internally generated
292 * packets such as translation table exchanges or tvlv containers, etc
293 * has to be calculated
294 */
295 min_mtu = min_t(int, min_mtu, BATADV_FRAG_MAX_FRAG_SIZE);
296 min_mtu -= sizeof(struct batadv_frag_packet);
297 min_mtu *= BATADV_FRAG_MAX_FRAGMENTS;
298 atomic_set(&bat_priv->packet_size_max, min_mtu);
299
300 /* with fragmentation enabled we can fragment external packets easily */
301 min_mtu = min_t(int, min_mtu, ETH_DATA_LEN);
302
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000303out:
Marek Lindnera19d3d82013-05-27 15:33:25 +0800304 return min_mtu - batadv_max_header_len();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000305}
306
307/* adjusts the MTU if a new interface with a smaller MTU appeared. */
Sven Eckelmann95638772012-05-12 02:09:31 +0200308void batadv_update_min_mtu(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000309{
Marek Lindnera19d3d82013-05-27 15:33:25 +0800310 soft_iface->mtu = batadv_hardif_min_mtu(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000311
Marek Lindnera19d3d82013-05-27 15:33:25 +0800312 /* Check if the local translate table should be cleaned up to match a
313 * new (and smaller) MTU.
314 */
315 batadv_tt_local_resize_to_mtu(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000316}
317
Sven Eckelmann56303d32012-06-05 22:31:31 +0200318static void
319batadv_hardif_activate_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000320{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200321 struct batadv_priv *bat_priv;
322 struct batadv_hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000323
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200324 if (hard_iface->if_status != BATADV_IF_INACTIVE)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200325 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000326
Marek Lindnere6c10f42011-02-18 12:33:20 +0000327 bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000328
Marek Lindnerc3229392012-03-11 06:17:50 +0800329 bat_priv->bat_algo_ops->bat_iface_update_mac(hard_iface);
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200330 hard_iface->if_status = BATADV_IF_TO_BE_ACTIVATED;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000331
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200332 /* the first active interface becomes our primary interface or
Antonio Quartulli015758d2011-07-09 17:52:13 +0200333 * the next active interface after the old primary interface was removed
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000334 */
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200335 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200336 if (!primary_if)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200337 batadv_primary_if_select(bat_priv, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000338
Sven Eckelmann3e348192012-05-16 20:23:22 +0200339 batadv_info(hard_iface->soft_iface, "Interface activated: %s\n",
340 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000341
Sven Eckelmann95638772012-05-12 02:09:31 +0200342 batadv_update_min_mtu(hard_iface->soft_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200343
344out:
345 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200346 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000347}
348
Sven Eckelmann56303d32012-06-05 22:31:31 +0200349static void
350batadv_hardif_deactivate_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000351{
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200352 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
353 (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000354 return;
355
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200356 hard_iface->if_status = BATADV_IF_INACTIVE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000357
Sven Eckelmann3e348192012-05-16 20:23:22 +0200358 batadv_info(hard_iface->soft_iface, "Interface deactivated: %s\n",
359 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000360
Sven Eckelmann95638772012-05-12 02:09:31 +0200361 batadv_update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000362}
363
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100364/**
365 * batadv_master_del_slave - remove hard_iface from the current master interface
366 * @slave: the interface enslaved in another master
367 * @master: the master from which slave has to be removed
368 *
369 * Invoke ndo_del_slave on master passing slave as argument. In this way slave
370 * is free'd and master can correctly change its internal state.
371 * Return 0 on success, a negative value representing the error otherwise
372 */
373static int batadv_master_del_slave(struct batadv_hard_iface *slave,
374 struct net_device *master)
375{
376 int ret;
377
378 if (!master)
379 return 0;
380
381 ret = -EBUSY;
382 if (master->netdev_ops->ndo_del_slave)
383 ret = master->netdev_ops->ndo_del_slave(master, slave->net_dev);
384
385 return ret;
386}
387
Sven Eckelmann56303d32012-06-05 22:31:31 +0200388int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface,
Sven Eckelmann95638772012-05-12 02:09:31 +0200389 const char *iface_name)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000390{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200391 struct batadv_priv *bat_priv;
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100392 struct net_device *soft_iface, *master;
Antonio Quartulli293e9332013-05-19 12:55:16 +0200393 __be16 ethertype = htons(ETH_P_BATMAN);
Marek Lindner411d6ed2013-05-08 13:31:59 +0800394 int max_header_len = batadv_max_header_len();
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000395 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000396
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200397 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000398 goto out;
399
Marek Lindnere6c10f42011-02-18 12:33:20 +0000400 if (!atomic_inc_not_zero(&hard_iface->refcount))
Marek Lindnered75ccb2011-02-10 14:33:51 +0000401 goto out;
402
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000403 soft_iface = dev_get_by_name(&init_net, iface_name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000404
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000405 if (!soft_iface) {
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200406 soft_iface = batadv_softif_create(iface_name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000407
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000408 if (!soft_iface) {
409 ret = -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000410 goto err;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000411 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000412
413 /* dev_get_by_name() increases the reference counter for us */
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000414 dev_hold(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000415 }
416
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200417 if (!batadv_softif_is_valid(soft_iface)) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100418 pr_err("Can't create batman mesh interface %s: already exists as regular interface\n",
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000419 soft_iface->name);
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000420 ret = -EINVAL;
Marek Lindner77af7572012-02-07 17:20:48 +0800421 goto err_dev;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000422 }
423
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100424 /* check if the interface is enslaved in another virtual one and
425 * in that case unlink it first
426 */
427 master = netdev_master_upper_dev_get(hard_iface->net_dev);
428 ret = batadv_master_del_slave(hard_iface, master);
429 if (ret)
430 goto err_dev;
431
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000432 hard_iface->soft_iface = soft_iface;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000433 bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200434
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800435 ret = netdev_master_upper_dev_link(hard_iface->net_dev, soft_iface);
436 if (ret)
437 goto err_dev;
438
Marek Lindner77af7572012-02-07 17:20:48 +0800439 ret = bat_priv->bat_algo_ops->bat_iface_enable(hard_iface);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200440 if (ret < 0)
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800441 goto err_upper;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000442
Marek Lindnere6c10f42011-02-18 12:33:20 +0000443 hard_iface->if_num = bat_priv->num_ifaces;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000444 bat_priv->num_ifaces++;
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200445 hard_iface->if_status = BATADV_IF_INACTIVE;
Simon Wunderlich62446302012-07-01 22:51:55 +0200446 ret = batadv_orig_hash_add_if(hard_iface, bat_priv->num_ifaces);
447 if (ret < 0) {
448 bat_priv->bat_algo_ops->bat_iface_disable(hard_iface);
449 bat_priv->num_ifaces--;
450 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800451 goto err_upper;
Simon Wunderlich62446302012-07-01 22:51:55 +0200452 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000453
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200454 hard_iface->batman_adv_ptype.type = ethertype;
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200455 hard_iface->batman_adv_ptype.func = batadv_batman_skb_recv;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000456 hard_iface->batman_adv_ptype.dev = hard_iface->net_dev;
457 dev_add_pack(&hard_iface->batman_adv_ptype);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000458
Sven Eckelmann3e348192012-05-16 20:23:22 +0200459 batadv_info(hard_iface->soft_iface, "Adding interface: %s\n",
460 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000461
Sven Eckelmann0aca2362012-06-19 20:26:30 +0200462 if (atomic_read(&bat_priv->fragmentation) &&
Marek Lindner411d6ed2013-05-08 13:31:59 +0800463 hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
Sven Eckelmann3e348192012-05-16 20:23:22 +0200464 batadv_info(hard_iface->soft_iface,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800465 "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 +0200466 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800467 ETH_DATA_LEN + max_header_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000468
Sven Eckelmann0aca2362012-06-19 20:26:30 +0200469 if (!atomic_read(&bat_priv->fragmentation) &&
Marek Lindner411d6ed2013-05-08 13:31:59 +0800470 hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
Sven Eckelmann3e348192012-05-16 20:23:22 +0200471 batadv_info(hard_iface->soft_iface,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800472 "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 +0200473 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800474 ETH_DATA_LEN + max_header_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000475
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200476 if (batadv_hardif_is_iface_up(hard_iface))
477 batadv_hardif_activate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000478 else
Sven Eckelmann3e348192012-05-16 20:23:22 +0200479 batadv_err(hard_iface->soft_iface,
480 "Not using interface %s (retrying later): interface not active\n",
481 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000482
483 /* begin scheduling originator messages on that interface */
Sven Eckelmann9455e342012-05-12 02:09:37 +0200484 batadv_schedule_bat_ogm(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000485
486out:
487 return 0;
488
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800489err_upper:
490 netdev_upper_dev_unlink(hard_iface->net_dev, soft_iface);
Marek Lindner77af7572012-02-07 17:20:48 +0800491err_dev:
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800492 hard_iface->soft_iface = NULL;
Marek Lindner77af7572012-02-07 17:20:48 +0800493 dev_put(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000494err:
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200495 batadv_hardif_free_ref(hard_iface);
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000496 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000497}
498
Sven Eckelmanna15fd362013-02-11 17:10:24 +0800499void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface,
500 enum batadv_hard_if_cleanup autodel)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000501{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200502 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
503 struct batadv_hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000504
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200505 if (hard_iface->if_status == BATADV_IF_ACTIVE)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200506 batadv_hardif_deactivate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000507
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200508 if (hard_iface->if_status != BATADV_IF_INACTIVE)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200509 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000510
Sven Eckelmann3e348192012-05-16 20:23:22 +0200511 batadv_info(hard_iface->soft_iface, "Removing interface: %s\n",
512 hard_iface->net_dev->name);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000513 dev_remove_pack(&hard_iface->batman_adv_ptype);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000514
515 bat_priv->num_ifaces--;
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200516 batadv_orig_hash_del_if(hard_iface, bat_priv->num_ifaces);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000517
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200518 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200519 if (hard_iface == primary_if) {
Sven Eckelmann56303d32012-06-05 22:31:31 +0200520 struct batadv_hard_iface *new_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000521
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200522 new_if = batadv_hardif_get_active(hard_iface->soft_iface);
523 batadv_primary_if_select(bat_priv, new_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000524
525 if (new_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200526 batadv_hardif_free_ref(new_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000527 }
528
Marek Lindner00a50072012-02-07 17:20:47 +0800529 bat_priv->bat_algo_ops->bat_iface_disable(hard_iface);
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200530 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000531
Marek Lindnere6c10f42011-02-18 12:33:20 +0000532 /* delete all references to this hard_iface */
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200533 batadv_purge_orig_ref(bat_priv);
Sven Eckelmann9455e342012-05-12 02:09:37 +0200534 batadv_purge_outstanding_packets(bat_priv, hard_iface);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000535 dev_put(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000536
537 /* nobody uses this interface anymore */
Sven Eckelmanna15fd362013-02-11 17:10:24 +0800538 if (!bat_priv->num_ifaces && autodel == BATADV_IF_CLEANUP_AUTO)
Marek Lindnere07932a2013-02-11 17:10:25 +0800539 batadv_softif_destroy_sysfs(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000540
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800541 netdev_upper_dev_unlink(hard_iface->net_dev, hard_iface->soft_iface);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000542 hard_iface->soft_iface = NULL;
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200543 batadv_hardif_free_ref(hard_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200544
545out:
546 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200547 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000548}
549
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100550/**
551 * batadv_hardif_remove_interface_finish - cleans up the remains of a hardif
552 * @work: work queue item
553 *
554 * Free the parts of the hard interface which can not be removed under
555 * rtnl lock (to prevent deadlock situations).
556 */
557static void batadv_hardif_remove_interface_finish(struct work_struct *work)
558{
559 struct batadv_hard_iface *hard_iface;
560
561 hard_iface = container_of(work, struct batadv_hard_iface,
562 cleanup_work);
563
564 batadv_sysfs_del_hardif(&hard_iface->hardif_obj);
565 batadv_hardif_free_ref(hard_iface);
566}
567
Sven Eckelmann56303d32012-06-05 22:31:31 +0200568static struct batadv_hard_iface *
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200569batadv_hardif_add_interface(struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000570{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200571 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000572 int ret;
573
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200574 ASSERT_RTNL();
575
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200576 ret = batadv_is_valid_iface(net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000577 if (ret != 1)
578 goto out;
579
580 dev_hold(net_dev);
581
Antonio Quartulli7db3fc22013-04-02 12:16:53 +0200582 hard_iface = kzalloc(sizeof(*hard_iface), GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700583 if (!hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000584 goto release_dev;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000585
Sven Eckelmann5853e222012-05-12 02:09:24 +0200586 ret = batadv_sysfs_add_hardif(&hard_iface->hardif_obj, net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000587 if (ret)
588 goto free_if;
589
Marek Lindnere6c10f42011-02-18 12:33:20 +0000590 hard_iface->if_num = -1;
591 hard_iface->net_dev = net_dev;
592 hard_iface->soft_iface = NULL;
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200593 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000594 INIT_LIST_HEAD(&hard_iface->list);
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100595 INIT_WORK(&hard_iface->cleanup_work,
596 batadv_hardif_remove_interface_finish);
597
Matthias Schiffercaf65bf2013-03-09 23:14:23 +0100598 hard_iface->num_bcasts = BATADV_NUM_BCASTS_DEFAULT;
599 if (batadv_is_wifi_netdev(net_dev))
600 hard_iface->num_bcasts = BATADV_NUM_BCASTS_WIRELESS;
601
Marek Lindnered75ccb2011-02-10 14:33:51 +0000602 /* extra reference for return */
Marek Lindnere6c10f42011-02-18 12:33:20 +0000603 atomic_set(&hard_iface->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000604
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200605 batadv_check_known_mac_addr(hard_iface->net_dev);
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200606 list_add_tail_rcu(&hard_iface->list, &batadv_hardif_list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000607
Marek Lindnere6c10f42011-02-18 12:33:20 +0000608 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000609
610free_if:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000611 kfree(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000612release_dev:
613 dev_put(net_dev);
614out:
615 return NULL;
616}
617
Sven Eckelmann56303d32012-06-05 22:31:31 +0200618static void batadv_hardif_remove_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000619{
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200620 ASSERT_RTNL();
621
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000622 /* first deactivate interface */
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200623 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmanna15fd362013-02-11 17:10:24 +0800624 batadv_hardif_disable_interface(hard_iface,
625 BATADV_IF_CLEANUP_AUTO);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000626
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200627 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000628 return;
629
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200630 hard_iface->if_status = BATADV_IF_TO_BE_REMOVED;
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100631 queue_work(batadv_event_workqueue, &hard_iface->cleanup_work);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000632}
633
Sven Eckelmann95638772012-05-12 02:09:31 +0200634void batadv_hardif_remove_interfaces(void)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000635{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200636 struct batadv_hard_iface *hard_iface, *hard_iface_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000637
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200638 rtnl_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000639 list_for_each_entry_safe(hard_iface, hard_iface_tmp,
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200640 &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +0000641 list_del_rcu(&hard_iface->list);
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200642 batadv_hardif_remove_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000643 }
644 rtnl_unlock();
645}
646
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200647static int batadv_hard_if_event(struct notifier_block *this,
648 unsigned long event, void *ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000649{
Jiri Pirko351638e2013-05-28 01:30:21 +0000650 struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200651 struct batadv_hard_iface *hard_iface;
652 struct batadv_hard_iface *primary_if = NULL;
653 struct batadv_priv *bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000654
Sven Eckelmann37130292013-02-11 17:10:22 +0800655 if (batadv_softif_is_valid(net_dev) && event == NETDEV_REGISTER) {
656 batadv_sysfs_add_meshif(net_dev);
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200657 bat_priv = netdev_priv(net_dev);
658 batadv_softif_create_vlan(bat_priv, BATADV_NO_FLAGS);
Sven Eckelmann37130292013-02-11 17:10:22 +0800659 return NOTIFY_DONE;
660 }
661
Sven Eckelmann56303d32012-06-05 22:31:31 +0200662 hard_iface = batadv_hardif_get_by_netdev(net_dev);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000663 if (!hard_iface && event == NETDEV_REGISTER)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200664 hard_iface = batadv_hardif_add_interface(net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000665
Marek Lindnere6c10f42011-02-18 12:33:20 +0000666 if (!hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000667 goto out;
668
669 switch (event) {
670 case NETDEV_UP:
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200671 batadv_hardif_activate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000672 break;
673 case NETDEV_GOING_DOWN:
674 case NETDEV_DOWN:
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200675 batadv_hardif_deactivate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000676 break;
677 case NETDEV_UNREGISTER:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000678 list_del_rcu(&hard_iface->list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000679
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200680 batadv_hardif_remove_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000681 break;
682 case NETDEV_CHANGEMTU:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000683 if (hard_iface->soft_iface)
Sven Eckelmann95638772012-05-12 02:09:31 +0200684 batadv_update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000685 break;
686 case NETDEV_CHANGEADDR:
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200687 if (hard_iface->if_status == BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000688 goto hardif_put;
689
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200690 batadv_check_known_mac_addr(hard_iface->net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000691
Marek Lindnere6c10f42011-02-18 12:33:20 +0000692 bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindnerc3229392012-03-11 06:17:50 +0800693 bat_priv->bat_algo_ops->bat_iface_update_mac(hard_iface);
Marek Lindner01c42242011-11-28 21:31:55 +0800694
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200695 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200696 if (!primary_if)
697 goto hardif_put;
698
699 if (hard_iface == primary_if)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200700 batadv_primary_if_update_addr(bat_priv, NULL);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000701 break;
702 default:
703 break;
Joe Perchesf81c6222011-06-03 11:51:19 +0000704 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000705
706hardif_put:
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200707 batadv_hardif_free_ref(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000708out:
Marek Lindner32ae9b22011-04-20 15:40:58 +0200709 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200710 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000711 return NOTIFY_DONE;
712}
713
Sven Eckelmann95638772012-05-12 02:09:31 +0200714struct notifier_block batadv_hard_if_notifier = {
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200715 .notifier_call = batadv_hard_if_event,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000716};