batman-adv: make the Distributed ARP Table vlan aware
[linux-2.6-block.git] / net / batman-adv / hard-interface.c
CommitLineData
0b873931 1/* Copyright (C) 2007-2013 B.A.T.M.A.N. contributors:
c6c8fea2
SE
2 *
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
c6c8fea2
SE
18 */
19
20#include "main.h"
785ea114 21#include "distributed-arp-table.h"
c6c8fea2
SE
22#include "hard-interface.h"
23#include "soft-interface.h"
24#include "send.h"
25#include "translation-table.h"
26#include "routing.h"
b706b13b 27#include "sysfs.h"
c6c8fea2
SE
28#include "originator.h"
29#include "hash.h"
23721387 30#include "bridge_loop_avoidance.h"
c6c8fea2
SE
31
32#include <linux/if_arp.h>
af5d4f77 33#include <linux/if_ether.h>
c6c8fea2 34
9563877e 35void batadv_hardif_free_rcu(struct rcu_head *rcu)
c6c8fea2 36{
56303d34 37 struct batadv_hard_iface *hard_iface;
c6c8fea2 38
56303d34 39 hard_iface = container_of(rcu, struct batadv_hard_iface, rcu);
e6c10f43
ML
40 dev_put(hard_iface->net_dev);
41 kfree(hard_iface);
c6c8fea2
SE
42}
43
56303d34
SE
44struct batadv_hard_iface *
45batadv_hardif_get_by_netdev(const struct net_device *net_dev)
c6c8fea2 46{
56303d34 47 struct batadv_hard_iface *hard_iface;
c6c8fea2
SE
48
49 rcu_read_lock();
3193e8fd 50 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
e6c10f43
ML
51 if (hard_iface->net_dev == net_dev &&
52 atomic_inc_not_zero(&hard_iface->refcount))
c6c8fea2
SE
53 goto out;
54 }
55
e6c10f43 56 hard_iface = NULL;
c6c8fea2
SE
57
58out:
c6c8fea2 59 rcu_read_unlock();
e6c10f43 60 return hard_iface;
c6c8fea2
SE
61}
62
b7eddd0b
AQ
63/**
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
18a1cb6e 102static int batadv_is_valid_iface(const struct net_device *net_dev)
c6c8fea2
SE
103{
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 */
b7eddd0b 114 if (batadv_is_on_batman_iface(net_dev))
c6c8fea2 115 return 0;
c6c8fea2 116
c6c8fea2
SE
117 return 1;
118}
119
de68d100
MS
120/**
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
56303d34 172static struct batadv_hard_iface *
18a1cb6e 173batadv_hardif_get_active(const struct net_device *soft_iface)
c6c8fea2 174{
56303d34 175 struct batadv_hard_iface *hard_iface;
c6c8fea2
SE
176
177 rcu_read_lock();
3193e8fd 178 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
e6c10f43 179 if (hard_iface->soft_iface != soft_iface)
c6c8fea2
SE
180 continue;
181
e9a4f295 182 if (hard_iface->if_status == BATADV_IF_ACTIVE &&
e6c10f43 183 atomic_inc_not_zero(&hard_iface->refcount))
c6c8fea2
SE
184 goto out;
185 }
186
e6c10f43 187 hard_iface = NULL;
c6c8fea2
SE
188
189out:
c6c8fea2 190 rcu_read_unlock();
e6c10f43 191 return hard_iface;
c6c8fea2
SE
192}
193
56303d34
SE
194static void batadv_primary_if_update_addr(struct batadv_priv *bat_priv,
195 struct batadv_hard_iface *oldif)
c6c8fea2 196{
56303d34 197 struct batadv_hard_iface *primary_if;
32ae9b22 198
e5d89254 199 primary_if = batadv_primary_if_get_selected(bat_priv);
32ae9b22
ML
200 if (!primary_if)
201 goto out;
c6c8fea2 202
785ea114 203 batadv_dat_init_own_addr(bat_priv, primary_if);
08adf151 204 batadv_bla_update_orig_address(bat_priv, primary_if, oldif);
32ae9b22
ML
205out:
206 if (primary_if)
e5d89254 207 batadv_hardif_free_ref(primary_if);
c6c8fea2
SE
208}
209
56303d34
SE
210static void batadv_primary_if_select(struct batadv_priv *bat_priv,
211 struct batadv_hard_iface *new_hard_iface)
c6c8fea2 212{
56303d34 213 struct batadv_hard_iface *curr_hard_iface;
c6c8fea2 214
c3caf519 215 ASSERT_RTNL();
c6c8fea2 216
32ae9b22
ML
217 if (new_hard_iface && !atomic_inc_not_zero(&new_hard_iface->refcount))
218 new_hard_iface = NULL;
c6c8fea2 219
728cbc6a 220 curr_hard_iface = rcu_dereference_protected(bat_priv->primary_if, 1);
32ae9b22 221 rcu_assign_pointer(bat_priv->primary_if, new_hard_iface);
c6c8fea2 222
32ae9b22 223 if (!new_hard_iface)
23721387 224 goto out;
32ae9b22 225
cd8b78e7 226 bat_priv->bat_algo_ops->bat_primary_iface_set(new_hard_iface);
18a1cb6e 227 batadv_primary_if_update_addr(bat_priv, curr_hard_iface);
23721387
SW
228
229out:
230 if (curr_hard_iface)
e5d89254 231 batadv_hardif_free_ref(curr_hard_iface);
c6c8fea2
SE
232}
233
56303d34
SE
234static bool
235batadv_hardif_is_iface_up(const struct batadv_hard_iface *hard_iface)
c6c8fea2 236{
e6c10f43 237 if (hard_iface->net_dev->flags & IFF_UP)
c6c8fea2
SE
238 return true;
239
240 return false;
241}
242
18a1cb6e 243static void batadv_check_known_mac_addr(const struct net_device *net_dev)
c6c8fea2 244{
56303d34 245 const struct batadv_hard_iface *hard_iface;
c6c8fea2
SE
246
247 rcu_read_lock();
3193e8fd 248 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
e9a4f295
SE
249 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
250 (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
c6c8fea2
SE
251 continue;
252
e6c10f43 253 if (hard_iface->net_dev == net_dev)
c6c8fea2
SE
254 continue;
255
1eda58bf
SE
256 if (!batadv_compare_eth(hard_iface->net_dev->dev_addr,
257 net_dev->dev_addr))
c6c8fea2
SE
258 continue;
259
67969581
SE
260 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");
c6c8fea2
SE
263 }
264 rcu_read_unlock();
265}
266
9563877e 267int batadv_hardif_min_mtu(struct net_device *soft_iface)
c6c8fea2 268{
56303d34
SE
269 const struct batadv_priv *bat_priv = netdev_priv(soft_iface);
270 const struct batadv_hard_iface *hard_iface;
c6c8fea2 271 /* allow big frames if all devices are capable to do so
411d6ed9 272 * (have MTU > 1500 + batadv_max_header_len())
9cfc7bd6 273 */
c6c8fea2 274 int min_mtu = ETH_DATA_LEN;
411d6ed9 275 int max_header_len = batadv_max_header_len();
c6c8fea2
SE
276
277 if (atomic_read(&bat_priv->fragmentation))
278 goto out;
279
280 rcu_read_lock();
3193e8fd 281 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
e9a4f295
SE
282 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
283 (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
c6c8fea2
SE
284 continue;
285
e6c10f43 286 if (hard_iface->soft_iface != soft_iface)
c6c8fea2
SE
287 continue;
288
411d6ed9 289 min_mtu = min_t(int, hard_iface->net_dev->mtu - max_header_len,
c6c8fea2
SE
290 min_mtu);
291 }
292 rcu_read_unlock();
293out:
294 return min_mtu;
295}
296
297/* adjusts the MTU if a new interface with a smaller MTU appeared. */
9563877e 298void batadv_update_min_mtu(struct net_device *soft_iface)
c6c8fea2
SE
299{
300 int min_mtu;
301
9563877e 302 min_mtu = batadv_hardif_min_mtu(soft_iface);
c6c8fea2
SE
303 if (soft_iface->mtu != min_mtu)
304 soft_iface->mtu = min_mtu;
305}
306
56303d34
SE
307static void
308batadv_hardif_activate_interface(struct batadv_hard_iface *hard_iface)
c6c8fea2 309{
56303d34
SE
310 struct batadv_priv *bat_priv;
311 struct batadv_hard_iface *primary_if = NULL;
c6c8fea2 312
e9a4f295 313 if (hard_iface->if_status != BATADV_IF_INACTIVE)
32ae9b22 314 goto out;
c6c8fea2 315
e6c10f43 316 bat_priv = netdev_priv(hard_iface->soft_iface);
c6c8fea2 317
c3229398 318 bat_priv->bat_algo_ops->bat_iface_update_mac(hard_iface);
e9a4f295 319 hard_iface->if_status = BATADV_IF_TO_BE_ACTIVATED;
c6c8fea2 320
9cfc7bd6 321 /* the first active interface becomes our primary interface or
015758d0 322 * the next active interface after the old primary interface was removed
c6c8fea2 323 */
e5d89254 324 primary_if = batadv_primary_if_get_selected(bat_priv);
32ae9b22 325 if (!primary_if)
18a1cb6e 326 batadv_primary_if_select(bat_priv, hard_iface);
c6c8fea2 327
3e34819e
SE
328 batadv_info(hard_iface->soft_iface, "Interface activated: %s\n",
329 hard_iface->net_dev->name);
c6c8fea2 330
9563877e 331 batadv_update_min_mtu(hard_iface->soft_iface);
32ae9b22
ML
332
333out:
334 if (primary_if)
e5d89254 335 batadv_hardif_free_ref(primary_if);
c6c8fea2
SE
336}
337
56303d34
SE
338static void
339batadv_hardif_deactivate_interface(struct batadv_hard_iface *hard_iface)
c6c8fea2 340{
e9a4f295
SE
341 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
342 (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
c6c8fea2
SE
343 return;
344
e9a4f295 345 hard_iface->if_status = BATADV_IF_INACTIVE;
c6c8fea2 346
3e34819e
SE
347 batadv_info(hard_iface->soft_iface, "Interface deactivated: %s\n",
348 hard_iface->net_dev->name);
c6c8fea2 349
9563877e 350 batadv_update_min_mtu(hard_iface->soft_iface);
c6c8fea2
SE
351}
352
cb4b0d48
AQ
353/**
354 * batadv_master_del_slave - remove hard_iface from the current master interface
355 * @slave: the interface enslaved in another master
356 * @master: the master from which slave has to be removed
357 *
358 * Invoke ndo_del_slave on master passing slave as argument. In this way slave
359 * is free'd and master can correctly change its internal state.
360 * Return 0 on success, a negative value representing the error otherwise
361 */
362static int batadv_master_del_slave(struct batadv_hard_iface *slave,
363 struct net_device *master)
364{
365 int ret;
366
367 if (!master)
368 return 0;
369
370 ret = -EBUSY;
371 if (master->netdev_ops->ndo_del_slave)
372 ret = master->netdev_ops->ndo_del_slave(master, slave->net_dev);
373
374 return ret;
375}
376
56303d34 377int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface,
9563877e 378 const char *iface_name)
c6c8fea2 379{
56303d34 380 struct batadv_priv *bat_priv;
cb4b0d48 381 struct net_device *soft_iface, *master;
293e9338 382 __be16 ethertype = htons(ETH_P_BATMAN);
411d6ed9 383 int max_header_len = batadv_max_header_len();
e44d8fe2 384 int ret;
c6c8fea2 385
e9a4f295 386 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
c6c8fea2
SE
387 goto out;
388
e6c10f43 389 if (!atomic_inc_not_zero(&hard_iface->refcount))
ed75ccbe
ML
390 goto out;
391
e44d8fe2 392 soft_iface = dev_get_by_name(&init_net, iface_name);
c6c8fea2 393
e44d8fe2 394 if (!soft_iface) {
04b482a2 395 soft_iface = batadv_softif_create(iface_name);
c6c8fea2 396
e44d8fe2
SE
397 if (!soft_iface) {
398 ret = -ENOMEM;
c6c8fea2 399 goto err;
e44d8fe2 400 }
c6c8fea2
SE
401
402 /* dev_get_by_name() increases the reference counter for us */
e44d8fe2
SE
403 dev_hold(soft_iface);
404 }
405
04b482a2 406 if (!batadv_softif_is_valid(soft_iface)) {
86ceb360 407 pr_err("Can't create batman mesh interface %s: already exists as regular interface\n",
e44d8fe2 408 soft_iface->name);
e44d8fe2 409 ret = -EINVAL;
77af7575 410 goto err_dev;
c6c8fea2
SE
411 }
412
cb4b0d48
AQ
413 /* check if the interface is enslaved in another virtual one and
414 * in that case unlink it first
415 */
416 master = netdev_master_upper_dev_get(hard_iface->net_dev);
417 ret = batadv_master_del_slave(hard_iface, master);
418 if (ret)
419 goto err_dev;
420
e44d8fe2 421 hard_iface->soft_iface = soft_iface;
e6c10f43 422 bat_priv = netdev_priv(hard_iface->soft_iface);
d0b9fd89 423
3dbd550b
SE
424 ret = netdev_master_upper_dev_link(hard_iface->net_dev, soft_iface);
425 if (ret)
426 goto err_dev;
427
77af7575 428 ret = bat_priv->bat_algo_ops->bat_iface_enable(hard_iface);
5346c35e 429 if (ret < 0)
3dbd550b 430 goto err_upper;
c6c8fea2 431
e6c10f43 432 hard_iface->if_num = bat_priv->num_ifaces;
c6c8fea2 433 bat_priv->num_ifaces++;
e9a4f295 434 hard_iface->if_status = BATADV_IF_INACTIVE;
62446307
SW
435 ret = batadv_orig_hash_add_if(hard_iface, bat_priv->num_ifaces);
436 if (ret < 0) {
437 bat_priv->bat_algo_ops->bat_iface_disable(hard_iface);
438 bat_priv->num_ifaces--;
439 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
3dbd550b 440 goto err_upper;
62446307 441 }
c6c8fea2 442
7e071c79 443 hard_iface->batman_adv_ptype.type = ethertype;
3193e8fd 444 hard_iface->batman_adv_ptype.func = batadv_batman_skb_recv;
e6c10f43
ML
445 hard_iface->batman_adv_ptype.dev = hard_iface->net_dev;
446 dev_add_pack(&hard_iface->batman_adv_ptype);
c6c8fea2 447
3e34819e
SE
448 batadv_info(hard_iface->soft_iface, "Adding interface: %s\n",
449 hard_iface->net_dev->name);
c6c8fea2 450
0aca2369 451 if (atomic_read(&bat_priv->fragmentation) &&
411d6ed9 452 hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
3e34819e 453 batadv_info(hard_iface->soft_iface,
411d6ed9 454 "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",
3e34819e 455 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
411d6ed9 456 ETH_DATA_LEN + max_header_len);
c6c8fea2 457
0aca2369 458 if (!atomic_read(&bat_priv->fragmentation) &&
411d6ed9 459 hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
3e34819e 460 batadv_info(hard_iface->soft_iface,
411d6ed9 461 "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",
3e34819e 462 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
411d6ed9 463 ETH_DATA_LEN + max_header_len);
c6c8fea2 464
18a1cb6e
SE
465 if (batadv_hardif_is_iface_up(hard_iface))
466 batadv_hardif_activate_interface(hard_iface);
c6c8fea2 467 else
3e34819e
SE
468 batadv_err(hard_iface->soft_iface,
469 "Not using interface %s (retrying later): interface not active\n",
470 hard_iface->net_dev->name);
c6c8fea2
SE
471
472 /* begin scheduling originator messages on that interface */
9455e34c 473 batadv_schedule_bat_ogm(hard_iface);
c6c8fea2
SE
474
475out:
476 return 0;
477
3dbd550b
SE
478err_upper:
479 netdev_upper_dev_unlink(hard_iface->net_dev, soft_iface);
77af7575 480err_dev:
3dbd550b 481 hard_iface->soft_iface = NULL;
77af7575 482 dev_put(soft_iface);
c6c8fea2 483err:
e5d89254 484 batadv_hardif_free_ref(hard_iface);
e44d8fe2 485 return ret;
c6c8fea2
SE
486}
487
a15fd361
SE
488void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface,
489 enum batadv_hard_if_cleanup autodel)
c6c8fea2 490{
56303d34
SE
491 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
492 struct batadv_hard_iface *primary_if = NULL;
c6c8fea2 493
e9a4f295 494 if (hard_iface->if_status == BATADV_IF_ACTIVE)
18a1cb6e 495 batadv_hardif_deactivate_interface(hard_iface);
c6c8fea2 496
e9a4f295 497 if (hard_iface->if_status != BATADV_IF_INACTIVE)
32ae9b22 498 goto out;
c6c8fea2 499
3e34819e
SE
500 batadv_info(hard_iface->soft_iface, "Removing interface: %s\n",
501 hard_iface->net_dev->name);
e6c10f43 502 dev_remove_pack(&hard_iface->batman_adv_ptype);
c6c8fea2
SE
503
504 bat_priv->num_ifaces--;
7d211efc 505 batadv_orig_hash_del_if(hard_iface, bat_priv->num_ifaces);
c6c8fea2 506
e5d89254 507 primary_if = batadv_primary_if_get_selected(bat_priv);
32ae9b22 508 if (hard_iface == primary_if) {
56303d34 509 struct batadv_hard_iface *new_if;
c6c8fea2 510
18a1cb6e
SE
511 new_if = batadv_hardif_get_active(hard_iface->soft_iface);
512 batadv_primary_if_select(bat_priv, new_if);
c6c8fea2
SE
513
514 if (new_if)
e5d89254 515 batadv_hardif_free_ref(new_if);
c6c8fea2
SE
516 }
517
00a50076 518 bat_priv->bat_algo_ops->bat_iface_disable(hard_iface);
e9a4f295 519 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
c6c8fea2 520
e6c10f43 521 /* delete all references to this hard_iface */
7d211efc 522 batadv_purge_orig_ref(bat_priv);
9455e34c 523 batadv_purge_outstanding_packets(bat_priv, hard_iface);
e6c10f43 524 dev_put(hard_iface->soft_iface);
c6c8fea2
SE
525
526 /* nobody uses this interface anymore */
a15fd361 527 if (!bat_priv->num_ifaces && autodel == BATADV_IF_CLEANUP_AUTO)
e07932ae 528 batadv_softif_destroy_sysfs(hard_iface->soft_iface);
c6c8fea2 529
3dbd550b 530 netdev_upper_dev_unlink(hard_iface->net_dev, hard_iface->soft_iface);
e6c10f43 531 hard_iface->soft_iface = NULL;
e5d89254 532 batadv_hardif_free_ref(hard_iface);
32ae9b22
ML
533
534out:
535 if (primary_if)
e5d89254 536 batadv_hardif_free_ref(primary_if);
c6c8fea2
SE
537}
538
5bc44dc8
SW
539/**
540 * batadv_hardif_remove_interface_finish - cleans up the remains of a hardif
541 * @work: work queue item
542 *
543 * Free the parts of the hard interface which can not be removed under
544 * rtnl lock (to prevent deadlock situations).
545 */
546static void batadv_hardif_remove_interface_finish(struct work_struct *work)
547{
548 struct batadv_hard_iface *hard_iface;
549
550 hard_iface = container_of(work, struct batadv_hard_iface,
551 cleanup_work);
552
553 batadv_sysfs_del_hardif(&hard_iface->hardif_obj);
554 batadv_hardif_free_ref(hard_iface);
555}
556
56303d34 557static struct batadv_hard_iface *
18a1cb6e 558batadv_hardif_add_interface(struct net_device *net_dev)
c6c8fea2 559{
56303d34 560 struct batadv_hard_iface *hard_iface;
c6c8fea2
SE
561 int ret;
562
c3caf519
SE
563 ASSERT_RTNL();
564
18a1cb6e 565 ret = batadv_is_valid_iface(net_dev);
c6c8fea2
SE
566 if (ret != 1)
567 goto out;
568
569 dev_hold(net_dev);
570
7db3fc29 571 hard_iface = kzalloc(sizeof(*hard_iface), GFP_ATOMIC);
320f422f 572 if (!hard_iface)
c6c8fea2 573 goto release_dev;
c6c8fea2 574
5853e22c 575 ret = batadv_sysfs_add_hardif(&hard_iface->hardif_obj, net_dev);
c6c8fea2
SE
576 if (ret)
577 goto free_if;
578
e6c10f43
ML
579 hard_iface->if_num = -1;
580 hard_iface->net_dev = net_dev;
581 hard_iface->soft_iface = NULL;
e9a4f295 582 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
e6c10f43 583 INIT_LIST_HEAD(&hard_iface->list);
5bc44dc8
SW
584 INIT_WORK(&hard_iface->cleanup_work,
585 batadv_hardif_remove_interface_finish);
586
caf65bfc
MS
587 hard_iface->num_bcasts = BATADV_NUM_BCASTS_DEFAULT;
588 if (batadv_is_wifi_netdev(net_dev))
589 hard_iface->num_bcasts = BATADV_NUM_BCASTS_WIRELESS;
590
ed75ccbe 591 /* extra reference for return */
e6c10f43 592 atomic_set(&hard_iface->refcount, 2);
c6c8fea2 593
18a1cb6e 594 batadv_check_known_mac_addr(hard_iface->net_dev);
3193e8fd 595 list_add_tail_rcu(&hard_iface->list, &batadv_hardif_list);
c6c8fea2 596
e6c10f43 597 return hard_iface;
c6c8fea2
SE
598
599free_if:
e6c10f43 600 kfree(hard_iface);
c6c8fea2
SE
601release_dev:
602 dev_put(net_dev);
603out:
604 return NULL;
605}
606
56303d34 607static void batadv_hardif_remove_interface(struct batadv_hard_iface *hard_iface)
c6c8fea2 608{
c3caf519
SE
609 ASSERT_RTNL();
610
c6c8fea2 611 /* first deactivate interface */
e9a4f295 612 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
a15fd361
SE
613 batadv_hardif_disable_interface(hard_iface,
614 BATADV_IF_CLEANUP_AUTO);
c6c8fea2 615
e9a4f295 616 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
c6c8fea2
SE
617 return;
618
e9a4f295 619 hard_iface->if_status = BATADV_IF_TO_BE_REMOVED;
5bc44dc8 620 queue_work(batadv_event_workqueue, &hard_iface->cleanup_work);
c6c8fea2
SE
621}
622
9563877e 623void batadv_hardif_remove_interfaces(void)
c6c8fea2 624{
56303d34 625 struct batadv_hard_iface *hard_iface, *hard_iface_tmp;
c6c8fea2 626
c3caf519 627 rtnl_lock();
e6c10f43 628 list_for_each_entry_safe(hard_iface, hard_iface_tmp,
3193e8fd 629 &batadv_hardif_list, list) {
e6c10f43 630 list_del_rcu(&hard_iface->list);
18a1cb6e 631 batadv_hardif_remove_interface(hard_iface);
c6c8fea2
SE
632 }
633 rtnl_unlock();
634}
635
18a1cb6e
SE
636static int batadv_hard_if_event(struct notifier_block *this,
637 unsigned long event, void *ptr)
c6c8fea2 638{
351638e7 639 struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
56303d34
SE
640 struct batadv_hard_iface *hard_iface;
641 struct batadv_hard_iface *primary_if = NULL;
642 struct batadv_priv *bat_priv;
c6c8fea2 643
37130293
SE
644 if (batadv_softif_is_valid(net_dev) && event == NETDEV_REGISTER) {
645 batadv_sysfs_add_meshif(net_dev);
646 return NOTIFY_DONE;
647 }
648
56303d34 649 hard_iface = batadv_hardif_get_by_netdev(net_dev);
e6c10f43 650 if (!hard_iface && event == NETDEV_REGISTER)
18a1cb6e 651 hard_iface = batadv_hardif_add_interface(net_dev);
c6c8fea2 652
e6c10f43 653 if (!hard_iface)
c6c8fea2
SE
654 goto out;
655
656 switch (event) {
657 case NETDEV_UP:
18a1cb6e 658 batadv_hardif_activate_interface(hard_iface);
c6c8fea2
SE
659 break;
660 case NETDEV_GOING_DOWN:
661 case NETDEV_DOWN:
18a1cb6e 662 batadv_hardif_deactivate_interface(hard_iface);
c6c8fea2
SE
663 break;
664 case NETDEV_UNREGISTER:
e6c10f43 665 list_del_rcu(&hard_iface->list);
c6c8fea2 666
18a1cb6e 667 batadv_hardif_remove_interface(hard_iface);
c6c8fea2
SE
668 break;
669 case NETDEV_CHANGEMTU:
e6c10f43 670 if (hard_iface->soft_iface)
9563877e 671 batadv_update_min_mtu(hard_iface->soft_iface);
c6c8fea2
SE
672 break;
673 case NETDEV_CHANGEADDR:
e9a4f295 674 if (hard_iface->if_status == BATADV_IF_NOT_IN_USE)
c6c8fea2
SE
675 goto hardif_put;
676
18a1cb6e 677 batadv_check_known_mac_addr(hard_iface->net_dev);
c6c8fea2 678
e6c10f43 679 bat_priv = netdev_priv(hard_iface->soft_iface);
c3229398 680 bat_priv->bat_algo_ops->bat_iface_update_mac(hard_iface);
01c4224b 681
e5d89254 682 primary_if = batadv_primary_if_get_selected(bat_priv);
32ae9b22
ML
683 if (!primary_if)
684 goto hardif_put;
685
686 if (hard_iface == primary_if)
18a1cb6e 687 batadv_primary_if_update_addr(bat_priv, NULL);
c6c8fea2
SE
688 break;
689 default:
690 break;
f81c6224 691 }
c6c8fea2
SE
692
693hardif_put:
e5d89254 694 batadv_hardif_free_ref(hard_iface);
c6c8fea2 695out:
32ae9b22 696 if (primary_if)
e5d89254 697 batadv_hardif_free_ref(primary_if);
c6c8fea2
SE
698 return NOTIFY_DONE;
699}
700
9563877e 701struct notifier_block batadv_hard_if_notifier = {
18a1cb6e 702 .notifier_call = batadv_hard_if_event,
c6c8fea2 703};