hard-interface.c 18.7 KB
Newer Older
1
/* Copyright (C) 2007-2013 B.A.T.M.A.N. contributors:
2 3 4 5 6 7 8 9 10 11 12 13 14
 *
 * Marek Lindner, Simon Wunderlich
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
15
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
16 17 18
 */

#include "main.h"
19
#include "distributed-arp-table.h"
20 21 22 23 24
#include "hard-interface.h"
#include "soft-interface.h"
#include "send.h"
#include "translation-table.h"
#include "routing.h"
25
#include "sysfs.h"
26 27
#include "originator.h"
#include "hash.h"
28
#include "bridge_loop_avoidance.h"
29
#include "gateway_client.h"
30 31

#include <linux/if_arp.h>
A
Antonio Quartulli 已提交
32
#include <linux/if_ether.h>
33

34
void batadv_hardif_free_rcu(struct rcu_head *rcu)
35
{
36
	struct batadv_hard_iface *hard_iface;
37

38
	hard_iface = container_of(rcu, struct batadv_hard_iface, rcu);
39 40
	dev_put(hard_iface->net_dev);
	kfree(hard_iface);
41 42
}

43 44
struct batadv_hard_iface *
batadv_hardif_get_by_netdev(const struct net_device *net_dev)
45
{
46
	struct batadv_hard_iface *hard_iface;
47 48

	rcu_read_lock();
49
	list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
50 51
		if (hard_iface->net_dev == net_dev &&
		    atomic_inc_not_zero(&hard_iface->refcount))
52 53 54
			goto out;
	}

55
	hard_iface = NULL;
56 57 58

out:
	rcu_read_unlock();
59
	return hard_iface;
60 61
}

62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
/**
 * batadv_is_on_batman_iface - check if a device is a batman iface descendant
 * @net_dev: the device to check
 *
 * If the user creates any virtual device on top of a batman-adv interface, it
 * is important to prevent this new interface to be used to create a new mesh
 * network (this behaviour would lead to a batman-over-batman configuration).
 * This function recursively checks all the fathers of the device passed as
 * argument looking for a batman-adv soft interface.
 *
 * Returns true if the device is descendant of a batman-adv mesh interface (or
 * if it is a batman-adv interface itself), false otherwise
 */
static bool batadv_is_on_batman_iface(const struct net_device *net_dev)
{
	struct net_device *parent_dev;
	bool ret;

	/* check if this is a batman-adv mesh interface */
	if (batadv_softif_is_valid(net_dev))
		return true;

	/* no more parents..stop recursion */
	if (net_dev->iflink == net_dev->ifindex)
		return false;

	/* recurse over the parent device */
	parent_dev = dev_get_by_index(&init_net, net_dev->iflink);
	/* if we got a NULL parent_dev there is something broken.. */
	if (WARN(!parent_dev, "Cannot find parent device"))
		return false;

	ret = batadv_is_on_batman_iface(parent_dev);

	if (parent_dev)
		dev_put(parent_dev);
	return ret;
}

101
static int batadv_is_valid_iface(const struct net_device *net_dev)
102 103 104 105 106 107 108 109 110 111 112
{
	if (net_dev->flags & IFF_LOOPBACK)
		return 0;

	if (net_dev->type != ARPHRD_ETHER)
		return 0;

	if (net_dev->addr_len != ETH_ALEN)
		return 0;

	/* no batman over batman */
113
	if (batadv_is_on_batman_iface(net_dev))
114 115 116 117 118
		return 0;

	return 1;
}

119 120 121 122 123 124 125
/**
 * batadv_is_wifi_netdev - check if the given net_device struct is a wifi
 *  interface
 * @net_device: the device to check
 *
 * Returns true if the net device is a 802.11 wireless device, false otherwise.
 */
126
bool batadv_is_wifi_netdev(struct net_device *net_device)
127
{
128 129 130
	if (!net_device)
		return false;

131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
#ifdef CONFIG_WIRELESS_EXT
	/* pre-cfg80211 drivers have to implement WEXT, so it is possible to
	 * check for wireless_handlers != NULL
	 */
	if (net_device->wireless_handlers)
		return true;
#endif

	/* cfg80211 drivers have to set ieee80211_ptr */
	if (net_device->ieee80211_ptr)
		return true;

	return false;
}

146
static struct batadv_hard_iface *
147
batadv_hardif_get_active(const struct net_device *soft_iface)
148
{
149
	struct batadv_hard_iface *hard_iface;
150 151

	rcu_read_lock();
152
	list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
153
		if (hard_iface->soft_iface != soft_iface)
154 155
			continue;

156
		if (hard_iface->if_status == BATADV_IF_ACTIVE &&
157
		    atomic_inc_not_zero(&hard_iface->refcount))
158 159 160
			goto out;
	}

161
	hard_iface = NULL;
162 163 164

out:
	rcu_read_unlock();
165
	return hard_iface;
166 167
}

168 169
static void batadv_primary_if_update_addr(struct batadv_priv *bat_priv,
					  struct batadv_hard_iface *oldif)
170
{
171
	struct batadv_hard_iface *primary_if;
172

173
	primary_if = batadv_primary_if_get_selected(bat_priv);
174 175
	if (!primary_if)
		goto out;
176

177
	batadv_dat_init_own_addr(bat_priv, primary_if);
178
	batadv_bla_update_orig_address(bat_priv, primary_if, oldif);
179 180
out:
	if (primary_if)
181
		batadv_hardif_free_ref(primary_if);
182 183
}

184 185
static void batadv_primary_if_select(struct batadv_priv *bat_priv,
				     struct batadv_hard_iface *new_hard_iface)
186
{
187
	struct batadv_hard_iface *curr_hard_iface;
188

189
	ASSERT_RTNL();
190

191 192
	if (new_hard_iface && !atomic_inc_not_zero(&new_hard_iface->refcount))
		new_hard_iface = NULL;
193

194
	curr_hard_iface = rcu_dereference_protected(bat_priv->primary_if, 1);
195
	rcu_assign_pointer(bat_priv->primary_if, new_hard_iface);
196

197
	if (!new_hard_iface)
198
		goto out;
199

200
	bat_priv->bat_algo_ops->bat_primary_iface_set(new_hard_iface);
201
	batadv_primary_if_update_addr(bat_priv, curr_hard_iface);
202 203 204

out:
	if (curr_hard_iface)
205
		batadv_hardif_free_ref(curr_hard_iface);
206 207
}

208 209
static bool
batadv_hardif_is_iface_up(const struct batadv_hard_iface *hard_iface)
210
{
211
	if (hard_iface->net_dev->flags & IFF_UP)
212 213 214 215 216
		return true;

	return false;
}

217
static void batadv_check_known_mac_addr(const struct net_device *net_dev)
218
{
219
	const struct batadv_hard_iface *hard_iface;
220 221

	rcu_read_lock();
222
	list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
223 224
		if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
		    (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
225 226
			continue;

227
		if (hard_iface->net_dev == net_dev)
228 229
			continue;

230 231
		if (!batadv_compare_eth(hard_iface->net_dev->dev_addr,
					net_dev->dev_addr))
232 233
			continue;

234 235 236
		pr_warn("The newly added mac address (%pM) already exists on: %s\n",
			net_dev->dev_addr, hard_iface->net_dev->name);
		pr_warn("It is strongly recommended to keep mac addresses unique to avoid problems!\n");
237 238 239 240
	}
	rcu_read_unlock();
}

241
int batadv_hardif_min_mtu(struct net_device *soft_iface)
242
{
243
	struct batadv_priv *bat_priv = netdev_priv(soft_iface);
244
	const struct batadv_hard_iface *hard_iface;
245 246 247
	int min_mtu = ETH_DATA_LEN;

	rcu_read_lock();
248
	list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
249 250
		if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
		    (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
251 252
			continue;

253
		if (hard_iface->soft_iface != soft_iface)
254 255
			continue;

256
		min_mtu = min_t(int, hard_iface->net_dev->mtu, min_mtu);
257 258
	}
	rcu_read_unlock();
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276

	atomic_set(&bat_priv->packet_size_max, min_mtu);

	if (atomic_read(&bat_priv->fragmentation) == 0)
		goto out;

	/* with fragmentation enabled the maximum size of internally generated
	 * packets such as translation table exchanges or tvlv containers, etc
	 * has to be calculated
	 */
	min_mtu = min_t(int, min_mtu, BATADV_FRAG_MAX_FRAG_SIZE);
	min_mtu -= sizeof(struct batadv_frag_packet);
	min_mtu *= BATADV_FRAG_MAX_FRAGMENTS;
	atomic_set(&bat_priv->packet_size_max, min_mtu);

	/* with fragmentation enabled we can fragment external packets easily */
	min_mtu = min_t(int, min_mtu, ETH_DATA_LEN);

277
out:
278
	return min_mtu - batadv_max_header_len();
279 280 281
}

/* adjusts the MTU if a new interface with a smaller MTU appeared. */
282
void batadv_update_min_mtu(struct net_device *soft_iface)
283
{
284
	soft_iface->mtu = batadv_hardif_min_mtu(soft_iface);
285

286 287 288 289
	/* Check if the local translate table should be cleaned up to match a
	 * new (and smaller) MTU.
	 */
	batadv_tt_local_resize_to_mtu(soft_iface);
290 291
}

292 293
static void
batadv_hardif_activate_interface(struct batadv_hard_iface *hard_iface)
294
{
295 296
	struct batadv_priv *bat_priv;
	struct batadv_hard_iface *primary_if = NULL;
297

298
	if (hard_iface->if_status != BATADV_IF_INACTIVE)
299
		goto out;
300

301
	bat_priv = netdev_priv(hard_iface->soft_iface);
302

303
	bat_priv->bat_algo_ops->bat_iface_update_mac(hard_iface);
304
	hard_iface->if_status = BATADV_IF_TO_BE_ACTIVATED;
305

306
	/* the first active interface becomes our primary interface or
307
	 * the next active interface after the old primary interface was removed
308
	 */
309
	primary_if = batadv_primary_if_get_selected(bat_priv);
310
	if (!primary_if)
311
		batadv_primary_if_select(bat_priv, hard_iface);
312

313 314
	batadv_info(hard_iface->soft_iface, "Interface activated: %s\n",
		    hard_iface->net_dev->name);
315

316
	batadv_update_min_mtu(hard_iface->soft_iface);
317 318 319

out:
	if (primary_if)
320
		batadv_hardif_free_ref(primary_if);
321 322
}

323 324
static void
batadv_hardif_deactivate_interface(struct batadv_hard_iface *hard_iface)
325
{
326 327
	if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
	    (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
328 329
		return;

330
	hard_iface->if_status = BATADV_IF_INACTIVE;
331

332 333
	batadv_info(hard_iface->soft_iface, "Interface deactivated: %s\n",
		    hard_iface->net_dev->name);
334

335
	batadv_update_min_mtu(hard_iface->soft_iface);
336 337
}

338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
/**
 * batadv_master_del_slave - remove hard_iface from the current master interface
 * @slave: the interface enslaved in another master
 * @master: the master from which slave has to be removed
 *
 * Invoke ndo_del_slave on master passing slave as argument. In this way slave
 * is free'd and master can correctly change its internal state.
 * Return 0 on success, a negative value representing the error otherwise
 */
static int batadv_master_del_slave(struct batadv_hard_iface *slave,
				   struct net_device *master)
{
	int ret;

	if (!master)
		return 0;

	ret = -EBUSY;
	if (master->netdev_ops->ndo_del_slave)
		ret = master->netdev_ops->ndo_del_slave(master, slave->net_dev);

	return ret;
}

362
int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface,
363
				   const char *iface_name)
364
{
365
	struct batadv_priv *bat_priv;
366
	struct net_device *soft_iface, *master;
367
	__be16 ethertype = htons(ETH_P_BATMAN);
368
	int max_header_len = batadv_max_header_len();
369
	int ret;
370

371
	if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
372 373
		goto out;

374
	if (!atomic_inc_not_zero(&hard_iface->refcount))
375 376
		goto out;

377
	soft_iface = dev_get_by_name(&init_net, iface_name);
378

379
	if (!soft_iface) {
380
		soft_iface = batadv_softif_create(iface_name);
381

382 383
		if (!soft_iface) {
			ret = -ENOMEM;
384
			goto err;
385
		}
386 387

		/* dev_get_by_name() increases the reference counter for us */
388 389 390
		dev_hold(soft_iface);
	}

391
	if (!batadv_softif_is_valid(soft_iface)) {
392
		pr_err("Can't create batman mesh interface %s: already exists as regular interface\n",
393 394
		       soft_iface->name);
		ret = -EINVAL;
395
		goto err_dev;
396 397
	}

398 399 400 401 402 403 404 405
	/* check if the interface is enslaved in another virtual one and
	 * in that case unlink it first
	 */
	master = netdev_master_upper_dev_get(hard_iface->net_dev);
	ret = batadv_master_del_slave(hard_iface, master);
	if (ret)
		goto err_dev;

406
	hard_iface->soft_iface = soft_iface;
407
	bat_priv = netdev_priv(hard_iface->soft_iface);
408

409 410 411 412
	ret = netdev_master_upper_dev_link(hard_iface->net_dev, soft_iface);
	if (ret)
		goto err_dev;

413
	ret = bat_priv->bat_algo_ops->bat_iface_enable(hard_iface);
414
	if (ret < 0)
415
		goto err_upper;
416

417
	hard_iface->if_num = bat_priv->num_ifaces;
418
	bat_priv->num_ifaces++;
419
	hard_iface->if_status = BATADV_IF_INACTIVE;
420 421 422 423 424
	ret = batadv_orig_hash_add_if(hard_iface, bat_priv->num_ifaces);
	if (ret < 0) {
		bat_priv->bat_algo_ops->bat_iface_disable(hard_iface);
		bat_priv->num_ifaces--;
		hard_iface->if_status = BATADV_IF_NOT_IN_USE;
425
		goto err_upper;
426
	}
427

428
	hard_iface->batman_adv_ptype.type = ethertype;
429
	hard_iface->batman_adv_ptype.func = batadv_batman_skb_recv;
430 431
	hard_iface->batman_adv_ptype.dev = hard_iface->net_dev;
	dev_add_pack(&hard_iface->batman_adv_ptype);
432

433 434
	batadv_info(hard_iface->soft_iface, "Adding interface: %s\n",
		    hard_iface->net_dev->name);
435

436
	if (atomic_read(&bat_priv->fragmentation) &&
437
	    hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
438
		batadv_info(hard_iface->soft_iface,
439
			    "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",
440
			    hard_iface->net_dev->name, hard_iface->net_dev->mtu,
441
			    ETH_DATA_LEN + max_header_len);
442

443
	if (!atomic_read(&bat_priv->fragmentation) &&
444
	    hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
445
		batadv_info(hard_iface->soft_iface,
446
			    "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",
447
			    hard_iface->net_dev->name, hard_iface->net_dev->mtu,
448
			    ETH_DATA_LEN + max_header_len);
449

450 451
	if (batadv_hardif_is_iface_up(hard_iface))
		batadv_hardif_activate_interface(hard_iface);
452
	else
453 454 455
		batadv_err(hard_iface->soft_iface,
			   "Not using interface %s (retrying later): interface not active\n",
			   hard_iface->net_dev->name);
456 457

	/* begin scheduling originator messages on that interface */
458
	batadv_schedule_bat_ogm(hard_iface);
459 460 461 462

out:
	return 0;

463 464
err_upper:
	netdev_upper_dev_unlink(hard_iface->net_dev, soft_iface);
465
err_dev:
466
	hard_iface->soft_iface = NULL;
467
	dev_put(soft_iface);
468
err:
469
	batadv_hardif_free_ref(hard_iface);
470
	return ret;
471 472
}

473 474
void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface,
				     enum batadv_hard_if_cleanup autodel)
475
{
476 477
	struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
	struct batadv_hard_iface *primary_if = NULL;
478

479
	if (hard_iface->if_status == BATADV_IF_ACTIVE)
480
		batadv_hardif_deactivate_interface(hard_iface);
481

482
	if (hard_iface->if_status != BATADV_IF_INACTIVE)
483
		goto out;
484

485 486
	batadv_info(hard_iface->soft_iface, "Removing interface: %s\n",
		    hard_iface->net_dev->name);
487
	dev_remove_pack(&hard_iface->batman_adv_ptype);
488 489

	bat_priv->num_ifaces--;
490
	batadv_orig_hash_del_if(hard_iface, bat_priv->num_ifaces);
491

492
	primary_if = batadv_primary_if_get_selected(bat_priv);
493
	if (hard_iface == primary_if) {
494
		struct batadv_hard_iface *new_if;
495

496 497
		new_if = batadv_hardif_get_active(hard_iface->soft_iface);
		batadv_primary_if_select(bat_priv, new_if);
498 499

		if (new_if)
500
			batadv_hardif_free_ref(new_if);
501 502
	}

503
	bat_priv->bat_algo_ops->bat_iface_disable(hard_iface);
504
	hard_iface->if_status = BATADV_IF_NOT_IN_USE;
505

506
	/* delete all references to this hard_iface */
507
	batadv_purge_orig_ref(bat_priv);
508
	batadv_purge_outstanding_packets(bat_priv, hard_iface);
509
	dev_put(hard_iface->soft_iface);
510 511

	/* nobody uses this interface anymore */
512 513 514 515 516 517
	if (!bat_priv->num_ifaces) {
		batadv_gw_check_client_stop(bat_priv);

		if (autodel == BATADV_IF_CLEANUP_AUTO)
			batadv_softif_destroy_sysfs(hard_iface->soft_iface);
	}
518

519
	netdev_upper_dev_unlink(hard_iface->net_dev, hard_iface->soft_iface);
520
	hard_iface->soft_iface = NULL;
521
	batadv_hardif_free_ref(hard_iface);
522 523 524

out:
	if (primary_if)
525
		batadv_hardif_free_ref(primary_if);
526 527
}

528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
/**
 * batadv_hardif_remove_interface_finish - cleans up the remains of a hardif
 * @work: work queue item
 *
 * Free the parts of the hard interface which can not be removed under
 * rtnl lock (to prevent deadlock situations).
 */
static void batadv_hardif_remove_interface_finish(struct work_struct *work)
{
	struct batadv_hard_iface *hard_iface;

	hard_iface = container_of(work, struct batadv_hard_iface,
				  cleanup_work);

	batadv_sysfs_del_hardif(&hard_iface->hardif_obj);
	batadv_hardif_free_ref(hard_iface);
}

546
static struct batadv_hard_iface *
547
batadv_hardif_add_interface(struct net_device *net_dev)
548
{
549
	struct batadv_hard_iface *hard_iface;
550 551
	int ret;

552 553
	ASSERT_RTNL();

554
	ret = batadv_is_valid_iface(net_dev);
555 556 557 558 559
	if (ret != 1)
		goto out;

	dev_hold(net_dev);

560
	hard_iface = kzalloc(sizeof(*hard_iface), GFP_ATOMIC);
561
	if (!hard_iface)
562 563
		goto release_dev;

564
	ret = batadv_sysfs_add_hardif(&hard_iface->hardif_obj, net_dev);
565 566 567
	if (ret)
		goto free_if;

568 569 570
	hard_iface->if_num = -1;
	hard_iface->net_dev = net_dev;
	hard_iface->soft_iface = NULL;
571
	hard_iface->if_status = BATADV_IF_NOT_IN_USE;
572
	INIT_LIST_HEAD(&hard_iface->list);
573 574 575
	INIT_WORK(&hard_iface->cleanup_work,
		  batadv_hardif_remove_interface_finish);

576 577 578 579
	hard_iface->num_bcasts = BATADV_NUM_BCASTS_DEFAULT;
	if (batadv_is_wifi_netdev(net_dev))
		hard_iface->num_bcasts = BATADV_NUM_BCASTS_WIRELESS;

580
	/* extra reference for return */
581
	atomic_set(&hard_iface->refcount, 2);
582

583
	batadv_check_known_mac_addr(hard_iface->net_dev);
584
	list_add_tail_rcu(&hard_iface->list, &batadv_hardif_list);
585

586
	return hard_iface;
587 588

free_if:
589
	kfree(hard_iface);
590 591 592 593 594 595
release_dev:
	dev_put(net_dev);
out:
	return NULL;
}

596
static void batadv_hardif_remove_interface(struct batadv_hard_iface *hard_iface)
597
{
598 599
	ASSERT_RTNL();

600
	/* first deactivate interface */
601
	if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
602 603
		batadv_hardif_disable_interface(hard_iface,
						BATADV_IF_CLEANUP_AUTO);
604

605
	if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
606 607
		return;

608
	hard_iface->if_status = BATADV_IF_TO_BE_REMOVED;
609
	queue_work(batadv_event_workqueue, &hard_iface->cleanup_work);
610 611
}

612
void batadv_hardif_remove_interfaces(void)
613
{
614
	struct batadv_hard_iface *hard_iface, *hard_iface_tmp;
615

616
	rtnl_lock();
617
	list_for_each_entry_safe(hard_iface, hard_iface_tmp,
618
				 &batadv_hardif_list, list) {
619
		list_del_rcu(&hard_iface->list);
620
		batadv_hardif_remove_interface(hard_iface);
621 622 623 624
	}
	rtnl_unlock();
}

625 626
static int batadv_hard_if_event(struct notifier_block *this,
				unsigned long event, void *ptr)
627
{
628
	struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
629 630 631
	struct batadv_hard_iface *hard_iface;
	struct batadv_hard_iface *primary_if = NULL;
	struct batadv_priv *bat_priv;
632

633 634
	if (batadv_softif_is_valid(net_dev) && event == NETDEV_REGISTER) {
		batadv_sysfs_add_meshif(net_dev);
635 636
		bat_priv = netdev_priv(net_dev);
		batadv_softif_create_vlan(bat_priv, BATADV_NO_FLAGS);
637 638 639
		return NOTIFY_DONE;
	}

640
	hard_iface = batadv_hardif_get_by_netdev(net_dev);
641
	if (!hard_iface && event == NETDEV_REGISTER)
642
		hard_iface = batadv_hardif_add_interface(net_dev);
643

644
	if (!hard_iface)
645 646 647 648
		goto out;

	switch (event) {
	case NETDEV_UP:
649
		batadv_hardif_activate_interface(hard_iface);
650 651 652
		break;
	case NETDEV_GOING_DOWN:
	case NETDEV_DOWN:
653
		batadv_hardif_deactivate_interface(hard_iface);
654 655
		break;
	case NETDEV_UNREGISTER:
656
		list_del_rcu(&hard_iface->list);
657

658
		batadv_hardif_remove_interface(hard_iface);
659 660
		break;
	case NETDEV_CHANGEMTU:
661
		if (hard_iface->soft_iface)
662
			batadv_update_min_mtu(hard_iface->soft_iface);
663 664
		break;
	case NETDEV_CHANGEADDR:
665
		if (hard_iface->if_status == BATADV_IF_NOT_IN_USE)
666 667
			goto hardif_put;

668
		batadv_check_known_mac_addr(hard_iface->net_dev);
669

670
		bat_priv = netdev_priv(hard_iface->soft_iface);
671
		bat_priv->bat_algo_ops->bat_iface_update_mac(hard_iface);
672

673
		primary_if = batadv_primary_if_get_selected(bat_priv);
674 675 676 677
		if (!primary_if)
			goto hardif_put;

		if (hard_iface == primary_if)
678
			batadv_primary_if_update_addr(bat_priv, NULL);
679 680 681
		break;
	default:
		break;
J
Joe Perches 已提交
682
	}
683 684

hardif_put:
685
	batadv_hardif_free_ref(hard_iface);
686
out:
687
	if (primary_if)
688
		batadv_hardif_free_ref(primary_if);
689 690 691
	return NOTIFY_DONE;
}

692
struct notifier_block batadv_hard_if_notifier = {
693
	.notifier_call = batadv_hard_if_event,
694
};