blob: 3d417d3641c6d83a4ecb4f87bdf48d4f26d48242 [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 */
86 if (net_dev->iflink == net_dev->ifindex)
87 return false;
88
89 /* recurse over the parent device */
Ying Xue16b77692014-01-15 10:23:42 +080090 parent_dev = __dev_get_by_index(&init_net, net_dev->iflink);
Antonio Quartullib7eddd02012-09-09 10:46:46 +020091 /* 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
Antonio Quartullib7eddd02012-09-09 10:46:46 +020097 return ret;
98}
99
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200100static int batadv_is_valid_iface(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000101{
102 if (net_dev->flags & IFF_LOOPBACK)
103 return 0;
104
105 if (net_dev->type != ARPHRD_ETHER)
106 return 0;
107
108 if (net_dev->addr_len != ETH_ALEN)
109 return 0;
110
111 /* no batman over batman */
Antonio Quartullib7eddd02012-09-09 10:46:46 +0200112 if (batadv_is_on_batman_iface(net_dev))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000113 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000114
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000115 return 1;
116}
117
Matthias Schifferde68d102013-03-09 23:14:22 +0100118/**
119 * batadv_is_wifi_netdev - check if the given net_device struct is a wifi
120 * interface
121 * @net_device: the device to check
122 *
123 * Returns true if the net device is a 802.11 wireless device, false otherwise.
124 */
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200125bool batadv_is_wifi_netdev(struct net_device *net_device)
Matthias Schifferde68d102013-03-09 23:14:22 +0100126{
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200127 if (!net_device)
128 return false;
129
Matthias Schifferde68d102013-03-09 23:14:22 +0100130#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
Sven Eckelmann56303d32012-06-05 22:31:31 +0200145static struct batadv_hard_iface *
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200146batadv_hardif_get_active(const struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000147{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200148 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000149
150 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200151 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +0000152 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000153 continue;
154
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200155 if (hard_iface->if_status == BATADV_IF_ACTIVE &&
Marek Lindnere6c10f42011-02-18 12:33:20 +0000156 atomic_inc_not_zero(&hard_iface->refcount))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000157 goto out;
158 }
159
Marek Lindnere6c10f42011-02-18 12:33:20 +0000160 hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000161
162out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000163 rcu_read_unlock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000164 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000165}
166
Sven Eckelmann56303d32012-06-05 22:31:31 +0200167static void batadv_primary_if_update_addr(struct batadv_priv *bat_priv,
168 struct batadv_hard_iface *oldif)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000169{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200170 struct batadv_hard_iface *primary_if;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200171
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200172 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200173 if (!primary_if)
174 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000175
Antonio Quartulli785ea112011-11-23 11:35:44 +0100176 batadv_dat_init_own_addr(bat_priv, primary_if);
Sven Eckelmann08adf152012-05-12 13:38:47 +0200177 batadv_bla_update_orig_address(bat_priv, primary_if, oldif);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200178out:
179 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200180 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000181}
182
Sven Eckelmann56303d32012-06-05 22:31:31 +0200183static void batadv_primary_if_select(struct batadv_priv *bat_priv,
184 struct batadv_hard_iface *new_hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000185{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200186 struct batadv_hard_iface *curr_hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000187
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200188 ASSERT_RTNL();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000189
Marek Lindner32ae9b22011-04-20 15:40:58 +0200190 if (new_hard_iface && !atomic_inc_not_zero(&new_hard_iface->refcount))
191 new_hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000192
Sven Eckelmann728cbc62011-05-15 00:50:21 +0200193 curr_hard_iface = rcu_dereference_protected(bat_priv->primary_if, 1);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200194 rcu_assign_pointer(bat_priv->primary_if, new_hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000195
Marek Lindner32ae9b22011-04-20 15:40:58 +0200196 if (!new_hard_iface)
Simon Wunderlich23721382012-01-22 20:00:19 +0100197 goto out;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200198
Marek Lindnercd8b78e2012-02-07 17:20:49 +0800199 bat_priv->bat_algo_ops->bat_primary_iface_set(new_hard_iface);
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200200 batadv_primary_if_update_addr(bat_priv, curr_hard_iface);
Simon Wunderlich23721382012-01-22 20:00:19 +0100201
202out:
203 if (curr_hard_iface)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200204 batadv_hardif_free_ref(curr_hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000205}
206
Sven Eckelmann56303d32012-06-05 22:31:31 +0200207static bool
208batadv_hardif_is_iface_up(const struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000209{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000210 if (hard_iface->net_dev->flags & IFF_UP)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000211 return true;
212
213 return false;
214}
215
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200216static void batadv_check_known_mac_addr(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000217{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200218 const struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000219
220 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200221 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200222 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
223 (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000224 continue;
225
Marek Lindnere6c10f42011-02-18 12:33:20 +0000226 if (hard_iface->net_dev == net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000227 continue;
228
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200229 if (!batadv_compare_eth(hard_iface->net_dev->dev_addr,
230 net_dev->dev_addr))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000231 continue;
232
Sven Eckelmann67969582012-03-26 16:22:45 +0200233 pr_warn("The newly added mac address (%pM) already exists on: %s\n",
234 net_dev->dev_addr, hard_iface->net_dev->name);
235 pr_warn("It is strongly recommended to keep mac addresses unique to avoid problems!\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000236 }
237 rcu_read_unlock();
238}
239
Sven Eckelmann95638772012-05-12 02:09:31 +0200240int batadv_hardif_min_mtu(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000241{
Marek Lindnera19d3d82013-05-27 15:33:25 +0800242 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200243 const struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000244 int min_mtu = ETH_DATA_LEN;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000245
246 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200247 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200248 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
249 (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000250 continue;
251
Marek Lindnere6c10f42011-02-18 12:33:20 +0000252 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000253 continue;
254
Marek Lindnera19d3d82013-05-27 15:33:25 +0800255 min_mtu = min_t(int, hard_iface->net_dev->mtu, min_mtu);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000256 }
257 rcu_read_unlock();
Marek Lindnera19d3d82013-05-27 15:33:25 +0800258
259 atomic_set(&bat_priv->packet_size_max, min_mtu);
260
261 if (atomic_read(&bat_priv->fragmentation) == 0)
262 goto out;
263
264 /* with fragmentation enabled the maximum size of internally generated
265 * packets such as translation table exchanges or tvlv containers, etc
266 * has to be calculated
267 */
268 min_mtu = min_t(int, min_mtu, BATADV_FRAG_MAX_FRAG_SIZE);
269 min_mtu -= sizeof(struct batadv_frag_packet);
270 min_mtu *= BATADV_FRAG_MAX_FRAGMENTS;
271 atomic_set(&bat_priv->packet_size_max, min_mtu);
272
273 /* with fragmentation enabled we can fragment external packets easily */
274 min_mtu = min_t(int, min_mtu, ETH_DATA_LEN);
275
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000276out:
Marek Lindnera19d3d82013-05-27 15:33:25 +0800277 return min_mtu - batadv_max_header_len();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000278}
279
280/* adjusts the MTU if a new interface with a smaller MTU appeared. */
Sven Eckelmann95638772012-05-12 02:09:31 +0200281void batadv_update_min_mtu(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000282{
Marek Lindnera19d3d82013-05-27 15:33:25 +0800283 soft_iface->mtu = batadv_hardif_min_mtu(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000284
Marek Lindnera19d3d82013-05-27 15:33:25 +0800285 /* Check if the local translate table should be cleaned up to match a
286 * new (and smaller) MTU.
287 */
288 batadv_tt_local_resize_to_mtu(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000289}
290
Sven Eckelmann56303d32012-06-05 22:31:31 +0200291static void
292batadv_hardif_activate_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000293{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200294 struct batadv_priv *bat_priv;
295 struct batadv_hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000296
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200297 if (hard_iface->if_status != BATADV_IF_INACTIVE)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200298 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000299
Marek Lindnere6c10f42011-02-18 12:33:20 +0000300 bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000301
Marek Lindnerc3229392012-03-11 06:17:50 +0800302 bat_priv->bat_algo_ops->bat_iface_update_mac(hard_iface);
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200303 hard_iface->if_status = BATADV_IF_TO_BE_ACTIVATED;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000304
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200305 /* the first active interface becomes our primary interface or
Antonio Quartulli015758d2011-07-09 17:52:13 +0200306 * the next active interface after the old primary interface was removed
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000307 */
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200308 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200309 if (!primary_if)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200310 batadv_primary_if_select(bat_priv, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000311
Sven Eckelmann3e348192012-05-16 20:23:22 +0200312 batadv_info(hard_iface->soft_iface, "Interface activated: %s\n",
313 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000314
Sven Eckelmann95638772012-05-12 02:09:31 +0200315 batadv_update_min_mtu(hard_iface->soft_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200316
317out:
318 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200319 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000320}
321
Sven Eckelmann56303d32012-06-05 22:31:31 +0200322static void
323batadv_hardif_deactivate_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000324{
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200325 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
326 (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000327 return;
328
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200329 hard_iface->if_status = BATADV_IF_INACTIVE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000330
Sven Eckelmann3e348192012-05-16 20:23:22 +0200331 batadv_info(hard_iface->soft_iface, "Interface deactivated: %s\n",
332 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000333
Sven Eckelmann95638772012-05-12 02:09:31 +0200334 batadv_update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000335}
336
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100337/**
338 * batadv_master_del_slave - remove hard_iface from the current master interface
339 * @slave: the interface enslaved in another master
340 * @master: the master from which slave has to be removed
341 *
342 * Invoke ndo_del_slave on master passing slave as argument. In this way slave
343 * is free'd and master can correctly change its internal state.
344 * Return 0 on success, a negative value representing the error otherwise
345 */
346static int batadv_master_del_slave(struct batadv_hard_iface *slave,
347 struct net_device *master)
348{
349 int ret;
350
351 if (!master)
352 return 0;
353
354 ret = -EBUSY;
355 if (master->netdev_ops->ndo_del_slave)
356 ret = master->netdev_ops->ndo_del_slave(master, slave->net_dev);
357
358 return ret;
359}
360
Sven Eckelmann56303d32012-06-05 22:31:31 +0200361int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface,
Sven Eckelmann95638772012-05-12 02:09:31 +0200362 const char *iface_name)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000363{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200364 struct batadv_priv *bat_priv;
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100365 struct net_device *soft_iface, *master;
Antonio Quartulli293e9332013-05-19 12:55:16 +0200366 __be16 ethertype = htons(ETH_P_BATMAN);
Marek Lindner411d6ed2013-05-08 13:31:59 +0800367 int max_header_len = batadv_max_header_len();
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000368 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000369
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200370 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000371 goto out;
372
Marek Lindnere6c10f42011-02-18 12:33:20 +0000373 if (!atomic_inc_not_zero(&hard_iface->refcount))
Marek Lindnered75ccb2011-02-10 14:33:51 +0000374 goto out;
375
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000376 soft_iface = dev_get_by_name(&init_net, iface_name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000377
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000378 if (!soft_iface) {
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200379 soft_iface = batadv_softif_create(iface_name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000380
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000381 if (!soft_iface) {
382 ret = -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000383 goto err;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000384 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000385
386 /* dev_get_by_name() increases the reference counter for us */
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000387 dev_hold(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000388 }
389
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200390 if (!batadv_softif_is_valid(soft_iface)) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100391 pr_err("Can't create batman mesh interface %s: already exists as regular interface\n",
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000392 soft_iface->name);
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000393 ret = -EINVAL;
Marek Lindner77af7572012-02-07 17:20:48 +0800394 goto err_dev;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000395 }
396
Antonio Quartullicb4b0d42013-02-16 14:42:39 +0100397 /* check if the interface is enslaved in another virtual one and
398 * in that case unlink it first
399 */
400 master = netdev_master_upper_dev_get(hard_iface->net_dev);
401 ret = batadv_master_del_slave(hard_iface, master);
402 if (ret)
403 goto err_dev;
404
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000405 hard_iface->soft_iface = soft_iface;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000406 bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindnerd0b9fd82011-07-30 12:33:33 +0200407
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800408 ret = netdev_master_upper_dev_link(hard_iface->net_dev, soft_iface);
409 if (ret)
410 goto err_dev;
411
Marek Lindner77af7572012-02-07 17:20:48 +0800412 ret = bat_priv->bat_algo_ops->bat_iface_enable(hard_iface);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200413 if (ret < 0)
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800414 goto err_upper;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000415
Marek Lindnere6c10f42011-02-18 12:33:20 +0000416 hard_iface->if_num = bat_priv->num_ifaces;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000417 bat_priv->num_ifaces++;
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200418 hard_iface->if_status = BATADV_IF_INACTIVE;
Simon Wunderlich62446302012-07-01 22:51:55 +0200419 ret = batadv_orig_hash_add_if(hard_iface, bat_priv->num_ifaces);
420 if (ret < 0) {
421 bat_priv->bat_algo_ops->bat_iface_disable(hard_iface);
422 bat_priv->num_ifaces--;
423 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800424 goto err_upper;
Simon Wunderlich62446302012-07-01 22:51:55 +0200425 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000426
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200427 hard_iface->batman_adv_ptype.type = ethertype;
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200428 hard_iface->batman_adv_ptype.func = batadv_batman_skb_recv;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000429 hard_iface->batman_adv_ptype.dev = hard_iface->net_dev;
430 dev_add_pack(&hard_iface->batman_adv_ptype);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000431
Sven Eckelmann3e348192012-05-16 20:23:22 +0200432 batadv_info(hard_iface->soft_iface, "Adding interface: %s\n",
433 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000434
Sven Eckelmann0aca2362012-06-19 20:26:30 +0200435 if (atomic_read(&bat_priv->fragmentation) &&
Marek Lindner411d6ed2013-05-08 13:31:59 +0800436 hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
Sven Eckelmann3e348192012-05-16 20:23:22 +0200437 batadv_info(hard_iface->soft_iface,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800438 "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 +0200439 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
Marek Lindner411d6ed2013-05-08 13:31:59 +0800440 ETH_DATA_LEN + max_header_len);
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. If you experience problems getting traffic through try increasing the MTU to %i.\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 Eckelmann18a1cb62012-05-12 18:33:57 +0200449 if (batadv_hardif_is_iface_up(hard_iface))
450 batadv_hardif_activate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000451 else
Sven Eckelmann3e348192012-05-16 20:23:22 +0200452 batadv_err(hard_iface->soft_iface,
453 "Not using interface %s (retrying later): interface not active\n",
454 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000455
456 /* begin scheduling originator messages on that interface */
Sven Eckelmann9455e342012-05-12 02:09:37 +0200457 batadv_schedule_bat_ogm(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000458
459out:
460 return 0;
461
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800462err_upper:
463 netdev_upper_dev_unlink(hard_iface->net_dev, soft_iface);
Marek Lindner77af7572012-02-07 17:20:48 +0800464err_dev:
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800465 hard_iface->soft_iface = NULL;
Marek Lindner77af7572012-02-07 17:20:48 +0800466 dev_put(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000467err:
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200468 batadv_hardif_free_ref(hard_iface);
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000469 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000470}
471
Sven Eckelmanna15fd362013-02-11 17:10:24 +0800472void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface,
473 enum batadv_hard_if_cleanup autodel)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000474{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200475 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
476 struct batadv_hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000477
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200478 if (hard_iface->if_status == BATADV_IF_ACTIVE)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200479 batadv_hardif_deactivate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000480
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200481 if (hard_iface->if_status != BATADV_IF_INACTIVE)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200482 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000483
Sven Eckelmann3e348192012-05-16 20:23:22 +0200484 batadv_info(hard_iface->soft_iface, "Removing interface: %s\n",
485 hard_iface->net_dev->name);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000486 dev_remove_pack(&hard_iface->batman_adv_ptype);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000487
488 bat_priv->num_ifaces--;
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200489 batadv_orig_hash_del_if(hard_iface, bat_priv->num_ifaces);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000490
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200491 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200492 if (hard_iface == primary_if) {
Sven Eckelmann56303d32012-06-05 22:31:31 +0200493 struct batadv_hard_iface *new_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000494
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200495 new_if = batadv_hardif_get_active(hard_iface->soft_iface);
496 batadv_primary_if_select(bat_priv, new_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000497
498 if (new_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200499 batadv_hardif_free_ref(new_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000500 }
501
Marek Lindner00a50072012-02-07 17:20:47 +0800502 bat_priv->bat_algo_ops->bat_iface_disable(hard_iface);
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200503 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000504
Marek Lindnere6c10f42011-02-18 12:33:20 +0000505 /* delete all references to this hard_iface */
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200506 batadv_purge_orig_ref(bat_priv);
Sven Eckelmann9455e342012-05-12 02:09:37 +0200507 batadv_purge_outstanding_packets(bat_priv, hard_iface);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000508 dev_put(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000509
510 /* nobody uses this interface anymore */
Antonio Quartulli8257f552013-08-19 18:39:59 +0200511 if (!bat_priv->num_ifaces) {
512 batadv_gw_check_client_stop(bat_priv);
513
514 if (autodel == BATADV_IF_CLEANUP_AUTO)
515 batadv_softif_destroy_sysfs(hard_iface->soft_iface);
516 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000517
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800518 netdev_upper_dev_unlink(hard_iface->net_dev, hard_iface->soft_iface);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000519 hard_iface->soft_iface = NULL;
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200520 batadv_hardif_free_ref(hard_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200521
522out:
523 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200524 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000525}
526
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100527/**
528 * batadv_hardif_remove_interface_finish - cleans up the remains of a hardif
529 * @work: work queue item
530 *
531 * Free the parts of the hard interface which can not be removed under
532 * rtnl lock (to prevent deadlock situations).
533 */
534static void batadv_hardif_remove_interface_finish(struct work_struct *work)
535{
536 struct batadv_hard_iface *hard_iface;
537
538 hard_iface = container_of(work, struct batadv_hard_iface,
539 cleanup_work);
540
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100541 batadv_debugfs_del_hardif(hard_iface);
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100542 batadv_sysfs_del_hardif(&hard_iface->hardif_obj);
543 batadv_hardif_free_ref(hard_iface);
544}
545
Sven Eckelmann56303d32012-06-05 22:31:31 +0200546static struct batadv_hard_iface *
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200547batadv_hardif_add_interface(struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000548{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200549 struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000550 int ret;
551
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200552 ASSERT_RTNL();
553
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200554 ret = batadv_is_valid_iface(net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000555 if (ret != 1)
556 goto out;
557
558 dev_hold(net_dev);
559
Antonio Quartulli7db3fc22013-04-02 12:16:53 +0200560 hard_iface = kzalloc(sizeof(*hard_iface), GFP_ATOMIC);
Joe Perches320f4222011-08-29 14:17:24 -0700561 if (!hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000562 goto release_dev;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000563
Sven Eckelmann5853e222012-05-12 02:09:24 +0200564 ret = batadv_sysfs_add_hardif(&hard_iface->hardif_obj, net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000565 if (ret)
566 goto free_if;
567
Marek Lindnere6c10f42011-02-18 12:33:20 +0000568 hard_iface->if_num = -1;
569 hard_iface->net_dev = net_dev;
570 hard_iface->soft_iface = NULL;
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200571 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100572
573 ret = batadv_debugfs_add_hardif(hard_iface);
574 if (ret)
575 goto free_sysfs;
576
Marek Lindnere6c10f42011-02-18 12:33:20 +0000577 INIT_LIST_HEAD(&hard_iface->list);
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100578 INIT_WORK(&hard_iface->cleanup_work,
579 batadv_hardif_remove_interface_finish);
580
Matthias Schiffercaf65bf2013-03-09 23:14:23 +0100581 hard_iface->num_bcasts = BATADV_NUM_BCASTS_DEFAULT;
582 if (batadv_is_wifi_netdev(net_dev))
583 hard_iface->num_bcasts = BATADV_NUM_BCASTS_WIRELESS;
584
Marek Lindnered75ccb2011-02-10 14:33:51 +0000585 /* extra reference for return */
Marek Lindnere6c10f42011-02-18 12:33:20 +0000586 atomic_set(&hard_iface->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000587
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200588 batadv_check_known_mac_addr(hard_iface->net_dev);
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200589 list_add_tail_rcu(&hard_iface->list, &batadv_hardif_list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000590
Marek Lindnere6c10f42011-02-18 12:33:20 +0000591 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000592
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100593free_sysfs:
594 batadv_sysfs_del_hardif(&hard_iface->hardif_obj);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000595free_if:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000596 kfree(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000597release_dev:
598 dev_put(net_dev);
599out:
600 return NULL;
601}
602
Sven Eckelmann56303d32012-06-05 22:31:31 +0200603static void batadv_hardif_remove_interface(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000604{
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200605 ASSERT_RTNL();
606
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000607 /* first deactivate interface */
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200608 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmanna15fd362013-02-11 17:10:24 +0800609 batadv_hardif_disable_interface(hard_iface,
610 BATADV_IF_CLEANUP_AUTO);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000611
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200612 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000613 return;
614
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200615 hard_iface->if_status = BATADV_IF_TO_BE_REMOVED;
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +0100616 queue_work(batadv_event_workqueue, &hard_iface->cleanup_work);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000617}
618
Sven Eckelmann95638772012-05-12 02:09:31 +0200619void batadv_hardif_remove_interfaces(void)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000620{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200621 struct batadv_hard_iface *hard_iface, *hard_iface_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000622
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200623 rtnl_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000624 list_for_each_entry_safe(hard_iface, hard_iface_tmp,
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200625 &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +0000626 list_del_rcu(&hard_iface->list);
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200627 batadv_hardif_remove_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000628 }
629 rtnl_unlock();
630}
631
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200632static int batadv_hard_if_event(struct notifier_block *this,
633 unsigned long event, void *ptr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000634{
Jiri Pirko351638e2013-05-28 01:30:21 +0000635 struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200636 struct batadv_hard_iface *hard_iface;
637 struct batadv_hard_iface *primary_if = NULL;
638 struct batadv_priv *bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000639
Sven Eckelmann37130292013-02-11 17:10:22 +0800640 if (batadv_softif_is_valid(net_dev) && event == NETDEV_REGISTER) {
641 batadv_sysfs_add_meshif(net_dev);
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200642 bat_priv = netdev_priv(net_dev);
643 batadv_softif_create_vlan(bat_priv, BATADV_NO_FLAGS);
Sven Eckelmann37130292013-02-11 17:10:22 +0800644 return NOTIFY_DONE;
645 }
646
Sven Eckelmann56303d32012-06-05 22:31:31 +0200647 hard_iface = batadv_hardif_get_by_netdev(net_dev);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000648 if (!hard_iface && event == NETDEV_REGISTER)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200649 hard_iface = batadv_hardif_add_interface(net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000650
Marek Lindnere6c10f42011-02-18 12:33:20 +0000651 if (!hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000652 goto out;
653
654 switch (event) {
655 case NETDEV_UP:
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200656 batadv_hardif_activate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000657 break;
658 case NETDEV_GOING_DOWN:
659 case NETDEV_DOWN:
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200660 batadv_hardif_deactivate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000661 break;
662 case NETDEV_UNREGISTER:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000663 list_del_rcu(&hard_iface->list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000664
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200665 batadv_hardif_remove_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000666 break;
667 case NETDEV_CHANGEMTU:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000668 if (hard_iface->soft_iface)
Sven Eckelmann95638772012-05-12 02:09:31 +0200669 batadv_update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000670 break;
671 case NETDEV_CHANGEADDR:
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200672 if (hard_iface->if_status == BATADV_IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000673 goto hardif_put;
674
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200675 batadv_check_known_mac_addr(hard_iface->net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000676
Marek Lindnere6c10f42011-02-18 12:33:20 +0000677 bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindnerc3229392012-03-11 06:17:50 +0800678 bat_priv->bat_algo_ops->bat_iface_update_mac(hard_iface);
Marek Lindner01c42242011-11-28 21:31:55 +0800679
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200680 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200681 if (!primary_if)
682 goto hardif_put;
683
684 if (hard_iface == primary_if)
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200685 batadv_primary_if_update_addr(bat_priv, NULL);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000686 break;
687 default:
688 break;
Joe Perchesf81c6222011-06-03 11:51:19 +0000689 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000690
691hardif_put:
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200692 batadv_hardif_free_ref(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000693out:
Marek Lindner32ae9b22011-04-20 15:40:58 +0200694 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200695 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000696 return NOTIFY_DONE;
697}
698
Sven Eckelmann95638772012-05-12 02:09:31 +0200699struct notifier_block batadv_hard_if_notifier = {
Sven Eckelmann18a1cb62012-05-12 18:33:57 +0200700 .notifier_call = batadv_hard_if_event,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000701};