hard-interface.c 18.5 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 15 16 17 18 19 20
 *
 * 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
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301, USA
 */

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

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

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

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

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

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

56
	hard_iface = NULL;
57 58 59

out:
	rcu_read_unlock();
60
	return hard_iface;
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 101
/**
 * 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;
}

102
static int batadv_is_valid_iface(const struct net_device *net_dev)
103 104 105 106 107 108 109 110 111 112 113
{
	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 */
114
	if (batadv_is_on_batman_iface(net_dev))
115 116 117 118 119
		return 0;

	return 1;
}

120
static struct batadv_hard_iface *
121
batadv_hardif_get_active(const struct net_device *soft_iface)
122
{
123
	struct batadv_hard_iface *hard_iface;
124 125

	rcu_read_lock();
126
	list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
127
		if (hard_iface->soft_iface != soft_iface)
128 129
			continue;

130
		if (hard_iface->if_status == BATADV_IF_ACTIVE &&
131
		    atomic_inc_not_zero(&hard_iface->refcount))
132 133 134
			goto out;
	}

135
	hard_iface = NULL;
136 137 138

out:
	rcu_read_unlock();
139
	return hard_iface;
140 141
}

142 143
static void batadv_primary_if_update_addr(struct batadv_priv *bat_priv,
					  struct batadv_hard_iface *oldif)
144
{
145
	struct batadv_vis_packet *vis_packet;
146
	struct batadv_hard_iface *primary_if;
147
	struct sk_buff *skb;
148

149
	primary_if = batadv_primary_if_get_selected(bat_priv);
150 151
	if (!primary_if)
		goto out;
152

153 154
	batadv_dat_init_own_addr(bat_priv, primary_if);

155 156
	skb = bat_priv->vis.my_info->skb_packet;
	vis_packet = (struct batadv_vis_packet *)skb->data;
157
	memcpy(vis_packet->vis_orig, primary_if->net_dev->dev_addr, ETH_ALEN);
158
	memcpy(vis_packet->sender_orig,
159 160
	       primary_if->net_dev->dev_addr, ETH_ALEN);

161
	batadv_bla_update_orig_address(bat_priv, primary_if, oldif);
162 163
out:
	if (primary_if)
164
		batadv_hardif_free_ref(primary_if);
165 166
}

167 168
static void batadv_primary_if_select(struct batadv_priv *bat_priv,
				     struct batadv_hard_iface *new_hard_iface)
169
{
170
	struct batadv_hard_iface *curr_hard_iface;
171

172
	ASSERT_RTNL();
173

174 175
	if (new_hard_iface && !atomic_inc_not_zero(&new_hard_iface->refcount))
		new_hard_iface = NULL;
176

177
	curr_hard_iface = rcu_dereference_protected(bat_priv->primary_if, 1);
178
	rcu_assign_pointer(bat_priv->primary_if, new_hard_iface);
179

180
	if (!new_hard_iface)
181
		goto out;
182

183
	bat_priv->bat_algo_ops->bat_primary_iface_set(new_hard_iface);
184
	batadv_primary_if_update_addr(bat_priv, curr_hard_iface);
185 186 187

out:
	if (curr_hard_iface)
188
		batadv_hardif_free_ref(curr_hard_iface);
189 190
}

191 192
static bool
batadv_hardif_is_iface_up(const struct batadv_hard_iface *hard_iface)
193
{
194
	if (hard_iface->net_dev->flags & IFF_UP)
195 196 197 198 199
		return true;

	return false;
}

200
static void batadv_check_known_mac_addr(const struct net_device *net_dev)
201
{
202
	const struct batadv_hard_iface *hard_iface;
203 204

	rcu_read_lock();
205
	list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
206 207
		if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
		    (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
208 209
			continue;

210
		if (hard_iface->net_dev == net_dev)
211 212
			continue;

213 214
		if (!batadv_compare_eth(hard_iface->net_dev->dev_addr,
					net_dev->dev_addr))
215 216
			continue;

217 218 219
		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");
220 221 222 223
	}
	rcu_read_unlock();
}

224
int batadv_hardif_min_mtu(struct net_device *soft_iface)
225
{
226 227
	const struct batadv_priv *bat_priv = netdev_priv(soft_iface);
	const struct batadv_hard_iface *hard_iface;
228
	/* allow big frames if all devices are capable to do so
229 230
	 * (have MTU > 1500 + BAT_HEADER_LEN)
	 */
231 232 233 234 235 236
	int min_mtu = ETH_DATA_LEN;

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

	rcu_read_lock();
237
	list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
238 239
		if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
		    (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
240 241
			continue;

242
		if (hard_iface->soft_iface != soft_iface)
243 244
			continue;

245 246
		min_mtu = min_t(int,
				hard_iface->net_dev->mtu - BATADV_HEADER_LEN,
247 248 249 250 251 252 253 254
				min_mtu);
	}
	rcu_read_unlock();
out:
	return min_mtu;
}

/* adjusts the MTU if a new interface with a smaller MTU appeared. */
255
void batadv_update_min_mtu(struct net_device *soft_iface)
256 257 258
{
	int min_mtu;

259
	min_mtu = batadv_hardif_min_mtu(soft_iface);
260 261 262 263
	if (soft_iface->mtu != min_mtu)
		soft_iface->mtu = min_mtu;
}

264 265
static void
batadv_hardif_activate_interface(struct batadv_hard_iface *hard_iface)
266
{
267 268
	struct batadv_priv *bat_priv;
	struct batadv_hard_iface *primary_if = NULL;
269

270
	if (hard_iface->if_status != BATADV_IF_INACTIVE)
271
		goto out;
272

273
	bat_priv = netdev_priv(hard_iface->soft_iface);
274

275
	bat_priv->bat_algo_ops->bat_iface_update_mac(hard_iface);
276
	hard_iface->if_status = BATADV_IF_TO_BE_ACTIVATED;
277

278
	/* the first active interface becomes our primary interface or
279
	 * the next active interface after the old primary interface was removed
280
	 */
281
	primary_if = batadv_primary_if_get_selected(bat_priv);
282
	if (!primary_if)
283
		batadv_primary_if_select(bat_priv, hard_iface);
284

285 286
	batadv_info(hard_iface->soft_iface, "Interface activated: %s\n",
		    hard_iface->net_dev->name);
287

288
	batadv_update_min_mtu(hard_iface->soft_iface);
289 290 291

out:
	if (primary_if)
292
		batadv_hardif_free_ref(primary_if);
293 294
}

295 296
static void
batadv_hardif_deactivate_interface(struct batadv_hard_iface *hard_iface)
297
{
298 299
	if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
	    (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
300 301
		return;

302
	hard_iface->if_status = BATADV_IF_INACTIVE;
303

304 305
	batadv_info(hard_iface->soft_iface, "Interface deactivated: %s\n",
		    hard_iface->net_dev->name);
306

307
	batadv_update_min_mtu(hard_iface->soft_iface);
308 309
}

310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
/**
 * 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;
}

334
int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface,
335
				   const char *iface_name)
336
{
337
	struct batadv_priv *bat_priv;
338
	struct net_device *soft_iface, *master;
A
Antonio Quartulli 已提交
339
	__be16 ethertype = __constant_htons(ETH_P_BATMAN);
340
	int ret;
341

342
	if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
343 344
		goto out;

345
	if (!atomic_inc_not_zero(&hard_iface->refcount))
346 347
		goto out;

348
	soft_iface = dev_get_by_name(&init_net, iface_name);
349

350
	if (!soft_iface) {
351
		soft_iface = batadv_softif_create(iface_name);
352

353 354
		if (!soft_iface) {
			ret = -ENOMEM;
355
			goto err;
356
		}
357 358

		/* dev_get_by_name() increases the reference counter for us */
359 360 361
		dev_hold(soft_iface);
	}

362
	if (!batadv_softif_is_valid(soft_iface)) {
363
		pr_err("Can't create batman mesh interface %s: already exists as regular interface\n",
364 365
		       soft_iface->name);
		ret = -EINVAL;
366
		goto err_dev;
367 368
	}

369 370 371 372 373 374 375 376
	/* 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;

377
	hard_iface->soft_iface = soft_iface;
378
	bat_priv = netdev_priv(hard_iface->soft_iface);
379

380 381 382 383
	ret = netdev_master_upper_dev_link(hard_iface->net_dev, soft_iface);
	if (ret)
		goto err_dev;

384
	ret = bat_priv->bat_algo_ops->bat_iface_enable(hard_iface);
385
	if (ret < 0)
386
		goto err_upper;
387

388
	hard_iface->if_num = bat_priv->num_ifaces;
389
	bat_priv->num_ifaces++;
390
	hard_iface->if_status = BATADV_IF_INACTIVE;
391 392 393 394 395
	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;
396
		goto err_upper;
397
	}
398

399
	hard_iface->batman_adv_ptype.type = ethertype;
400
	hard_iface->batman_adv_ptype.func = batadv_batman_skb_recv;
401 402
	hard_iface->batman_adv_ptype.dev = hard_iface->net_dev;
	dev_add_pack(&hard_iface->batman_adv_ptype);
403

404
	atomic_set(&hard_iface->frag_seqno, 1);
405 406
	batadv_info(hard_iface->soft_iface, "Adding interface: %s\n",
		    hard_iface->net_dev->name);
407

408 409
	if (atomic_read(&bat_priv->fragmentation) &&
	    hard_iface->net_dev->mtu < ETH_DATA_LEN + BATADV_HEADER_LEN)
410 411 412
		batadv_info(hard_iface->soft_iface,
			    "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 %zi would solve the problem.\n",
			    hard_iface->net_dev->name, hard_iface->net_dev->mtu,
413
			    ETH_DATA_LEN + BATADV_HEADER_LEN);
414

415 416
	if (!atomic_read(&bat_priv->fragmentation) &&
	    hard_iface->net_dev->mtu < ETH_DATA_LEN + BATADV_HEADER_LEN)
417 418 419
		batadv_info(hard_iface->soft_iface,
			    "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 %zi.\n",
			    hard_iface->net_dev->name, hard_iface->net_dev->mtu,
420
			    ETH_DATA_LEN + BATADV_HEADER_LEN);
421

422 423
	if (batadv_hardif_is_iface_up(hard_iface))
		batadv_hardif_activate_interface(hard_iface);
424
	else
425 426 427
		batadv_err(hard_iface->soft_iface,
			   "Not using interface %s (retrying later): interface not active\n",
			   hard_iface->net_dev->name);
428 429

	/* begin scheduling originator messages on that interface */
430
	batadv_schedule_bat_ogm(hard_iface);
431 432 433 434

out:
	return 0;

435 436
err_upper:
	netdev_upper_dev_unlink(hard_iface->net_dev, soft_iface);
437
err_dev:
438
	hard_iface->soft_iface = NULL;
439
	dev_put(soft_iface);
440
err:
441
	batadv_hardif_free_ref(hard_iface);
442
	return ret;
443 444
}

445 446
void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface,
				     enum batadv_hard_if_cleanup autodel)
447
{
448 449
	struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
	struct batadv_hard_iface *primary_if = NULL;
450

451
	if (hard_iface->if_status == BATADV_IF_ACTIVE)
452
		batadv_hardif_deactivate_interface(hard_iface);
453

454
	if (hard_iface->if_status != BATADV_IF_INACTIVE)
455
		goto out;
456

457 458
	batadv_info(hard_iface->soft_iface, "Removing interface: %s\n",
		    hard_iface->net_dev->name);
459
	dev_remove_pack(&hard_iface->batman_adv_ptype);
460 461

	bat_priv->num_ifaces--;
462
	batadv_orig_hash_del_if(hard_iface, bat_priv->num_ifaces);
463

464
	primary_if = batadv_primary_if_get_selected(bat_priv);
465
	if (hard_iface == primary_if) {
466
		struct batadv_hard_iface *new_if;
467

468 469
		new_if = batadv_hardif_get_active(hard_iface->soft_iface);
		batadv_primary_if_select(bat_priv, new_if);
470 471

		if (new_if)
472
			batadv_hardif_free_ref(new_if);
473 474
	}

475
	bat_priv->bat_algo_ops->bat_iface_disable(hard_iface);
476
	hard_iface->if_status = BATADV_IF_NOT_IN_USE;
477

478
	/* delete all references to this hard_iface */
479
	batadv_purge_orig_ref(bat_priv);
480
	batadv_purge_outstanding_packets(bat_priv, hard_iface);
481
	dev_put(hard_iface->soft_iface);
482 483

	/* nobody uses this interface anymore */
484
	if (!bat_priv->num_ifaces && autodel == BATADV_IF_CLEANUP_AUTO)
485
		batadv_softif_destroy_sysfs(hard_iface->soft_iface);
486

487
	netdev_upper_dev_unlink(hard_iface->net_dev, hard_iface->soft_iface);
488
	hard_iface->soft_iface = NULL;
489
	batadv_hardif_free_ref(hard_iface);
490 491 492

out:
	if (primary_if)
493
		batadv_hardif_free_ref(primary_if);
494 495
}

496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
/**
 * 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);
}

514
static struct batadv_hard_iface *
515
batadv_hardif_add_interface(struct net_device *net_dev)
516
{
517
	struct batadv_hard_iface *hard_iface;
518 519
	int ret;

520 521
	ASSERT_RTNL();

522
	ret = batadv_is_valid_iface(net_dev);
523 524 525 526 527
	if (ret != 1)
		goto out;

	dev_hold(net_dev);

528
	hard_iface = kmalloc(sizeof(*hard_iface), GFP_ATOMIC);
529
	if (!hard_iface)
530 531
		goto release_dev;

532
	ret = batadv_sysfs_add_hardif(&hard_iface->hardif_obj, net_dev);
533 534 535
	if (ret)
		goto free_if;

536 537 538
	hard_iface->if_num = -1;
	hard_iface->net_dev = net_dev;
	hard_iface->soft_iface = NULL;
539
	hard_iface->if_status = BATADV_IF_NOT_IN_USE;
540
	INIT_LIST_HEAD(&hard_iface->list);
541 542 543
	INIT_WORK(&hard_iface->cleanup_work,
		  batadv_hardif_remove_interface_finish);

544
	/* extra reference for return */
545
	atomic_set(&hard_iface->refcount, 2);
546

547
	batadv_check_known_mac_addr(hard_iface->net_dev);
548
	list_add_tail_rcu(&hard_iface->list, &batadv_hardif_list);
549

550
	/* This can't be called via a bat_priv callback because
551 552
	 * we have no bat_priv yet.
	 */
553 554
	atomic_set(&hard_iface->bat_iv.ogm_seqno, 1);
	hard_iface->bat_iv.ogm_buff = NULL;
555

556
	return hard_iface;
557 558

free_if:
559
	kfree(hard_iface);
560 561 562 563 564 565
release_dev:
	dev_put(net_dev);
out:
	return NULL;
}

566
static void batadv_hardif_remove_interface(struct batadv_hard_iface *hard_iface)
567
{
568 569
	ASSERT_RTNL();

570
	/* first deactivate interface */
571
	if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
572 573
		batadv_hardif_disable_interface(hard_iface,
						BATADV_IF_CLEANUP_AUTO);
574

575
	if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
576 577
		return;

578
	hard_iface->if_status = BATADV_IF_TO_BE_REMOVED;
579
	queue_work(batadv_event_workqueue, &hard_iface->cleanup_work);
580 581
}

582
void batadv_hardif_remove_interfaces(void)
583
{
584
	struct batadv_hard_iface *hard_iface, *hard_iface_tmp;
585

586
	rtnl_lock();
587
	list_for_each_entry_safe(hard_iface, hard_iface_tmp,
588
				 &batadv_hardif_list, list) {
589
		list_del_rcu(&hard_iface->list);
590
		batadv_hardif_remove_interface(hard_iface);
591 592 593 594
	}
	rtnl_unlock();
}

595 596
static int batadv_hard_if_event(struct notifier_block *this,
				unsigned long event, void *ptr)
597
{
598
	struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
599 600 601
	struct batadv_hard_iface *hard_iface;
	struct batadv_hard_iface *primary_if = NULL;
	struct batadv_priv *bat_priv;
602

603 604 605 606 607
	if (batadv_softif_is_valid(net_dev) && event == NETDEV_REGISTER) {
		batadv_sysfs_add_meshif(net_dev);
		return NOTIFY_DONE;
	}

608
	hard_iface = batadv_hardif_get_by_netdev(net_dev);
609
	if (!hard_iface && event == NETDEV_REGISTER)
610
		hard_iface = batadv_hardif_add_interface(net_dev);
611

612
	if (!hard_iface)
613 614 615 616
		goto out;

	switch (event) {
	case NETDEV_UP:
617
		batadv_hardif_activate_interface(hard_iface);
618 619 620
		break;
	case NETDEV_GOING_DOWN:
	case NETDEV_DOWN:
621
		batadv_hardif_deactivate_interface(hard_iface);
622 623
		break;
	case NETDEV_UNREGISTER:
624
		list_del_rcu(&hard_iface->list);
625

626
		batadv_hardif_remove_interface(hard_iface);
627 628
		break;
	case NETDEV_CHANGEMTU:
629
		if (hard_iface->soft_iface)
630
			batadv_update_min_mtu(hard_iface->soft_iface);
631 632
		break;
	case NETDEV_CHANGEADDR:
633
		if (hard_iface->if_status == BATADV_IF_NOT_IN_USE)
634 635
			goto hardif_put;

636
		batadv_check_known_mac_addr(hard_iface->net_dev);
637

638
		bat_priv = netdev_priv(hard_iface->soft_iface);
639
		bat_priv->bat_algo_ops->bat_iface_update_mac(hard_iface);
640

641
		primary_if = batadv_primary_if_get_selected(bat_priv);
642 643 644 645
		if (!primary_if)
			goto hardif_put;

		if (hard_iface == primary_if)
646
			batadv_primary_if_update_addr(bat_priv, NULL);
647 648 649
		break;
	default:
		break;
J
Joe Perches 已提交
650
	}
651 652

hardif_put:
653
	batadv_hardif_free_ref(hard_iface);
654
out:
655
	if (primary_if)
656
		batadv_hardif_free_ref(primary_if);
657 658 659
	return NOTIFY_DONE;
}

660
/* This function returns true if the interface represented by ifindex is a
661 662
 * 802.11 wireless device
 */
663
bool batadv_is_wifi_iface(int ifindex)
664 665 666 667
{
	struct net_device *net_device = NULL;
	bool ret = false;

668
	if (ifindex == BATADV_NULL_IFINDEX)
669 670 671 672 673 674 675 676
		goto out;

	net_device = dev_get_by_index(&init_net, ifindex);
	if (!net_device)
		goto out;

#ifdef CONFIG_WIRELESS_EXT
	/* pre-cfg80211 drivers have to implement WEXT, so it is possible to
677 678
	 * check for wireless_handlers != NULL
	 */
679 680 681 682 683 684 685 686 687 688 689 690 691
	if (net_device->wireless_handlers)
		ret = true;
	else
#endif
		/* cfg80211 drivers have to set ieee80211_ptr */
		if (net_device->ieee80211_ptr)
			ret = true;
out:
	if (net_device)
		dev_put(net_device);
	return ret;
}

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