br_if.c 10.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 *	Userspace interface
 *	Linux ethernet bridge
 *
 *	Authors:
 *	Lennert Buytenhek		<buytenh@gnu.org>
 *
 *	This program is free software; you can redistribute it and/or
 *	modify it under the terms of the GNU General Public License
 *	as published by the Free Software Foundation; either version
 *	2 of the License, or (at your option) any later version.
 */

#include <linux/kernel.h>
#include <linux/netdevice.h>
W
WANG Cong 已提交
16
#include <linux/netpoll.h>
L
Linus Torvalds 已提交
17 18 19 20 21
#include <linux/ethtool.h>
#include <linux/if_arp.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/rtnetlink.h>
22
#include <linux/if_ether.h>
23
#include <linux/slab.h>
L
Linus Torvalds 已提交
24 25 26 27 28 29 30 31
#include <net/sock.h>

#include "br_private.h"

/*
 * Determine initial path cost based on speed.
 * using recommendations from 802.1d standard
 *
32
 * Since driver might sleep need to not be holding any locks.
L
Linus Torvalds 已提交
33
 */
34
static int port_cost(struct net_device *dev)
L
Linus Torvalds 已提交
35
{
36 37 38 39
	if (dev->ethtool_ops && dev->ethtool_ops->get_settings) {
		struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET, };

		if (!dev->ethtool_ops->get_settings(dev, &ecmd)) {
40 41 42
			switch(ecmd.speed) {
			case SPEED_10000:
				return 2;
43 44 45 46
			case SPEED_1000:
				return 4;
			case SPEED_100:
				return 19;
47 48 49
			case SPEED_10:
				return 100;
			}
L
Linus Torvalds 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62
		}
	}

	/* Old silly heuristics based on name */
	if (!strncmp(dev->name, "lec", 3))
		return 7;

	if (!strncmp(dev->name, "plip", 4))
		return 2500;

	return 100;	/* assume old 10Mbps */
}

63

S
Stephen Hemminger 已提交
64
/* Check for port carrier transistions. */
65
void br_port_carrier_check(struct net_bridge_port *p)
66
{
67 68
	struct net_device *dev = p->dev;
	struct net_bridge *br = p->br;
S
Stephen Hemminger 已提交
69

70
	if (netif_running(dev) && netif_carrier_ok(dev))
S
Stephen Hemminger 已提交
71 72
		p->path_cost = port_cost(dev);

73 74 75 76 77 78 79 80 81 82
	if (!netif_running(br->dev))
		return;

	spin_lock_bh(&br->lock);
	if (netif_running(dev) && netif_carrier_ok(dev)) {
		if (p->state == BR_STATE_DISABLED)
			br_stp_enable_port(p);
	} else {
		if (p->state != BR_STATE_DISABLED)
			br_stp_disable_port(p);
83
	}
84
	spin_unlock_bh(&br->lock);
85 86
}

87 88 89 90 91 92 93 94 95 96 97 98 99 100
static void release_nbp(struct kobject *kobj)
{
	struct net_bridge_port *p
		= container_of(kobj, struct net_bridge_port, kobj);
	kfree(p);
}

static struct kobj_type brport_ktype = {
#ifdef CONFIG_SYSFS
	.sysfs_ops = &brport_sysfs_ops,
#endif
	.release = release_nbp,
};

L
Linus Torvalds 已提交
101 102 103 104 105 106 107 108
static void destroy_nbp(struct net_bridge_port *p)
{
	struct net_device *dev = p->dev;

	p->br = NULL;
	p->dev = NULL;
	dev_put(dev);

109
	kobject_put(&p->kobj);
L
Linus Torvalds 已提交
110 111 112 113 114 115 116 117 118
}

static void destroy_nbp_rcu(struct rcu_head *head)
{
	struct net_bridge_port *p =
			container_of(head, struct net_bridge_port, rcu);
	destroy_nbp(p);
}

119 120 121 122 123 124 125 126 127
/* Delete port(interface) from bridge is done in two steps.
 * via RCU. First step, marks device as down. That deletes
 * all the timers and stops new packets from flowing through.
 *
 * Final cleanup doesn't occur until after all CPU's finished
 * processing packets.
 *
 * Protected from multiple admin operations by RTNL mutex
 */
L
Linus Torvalds 已提交
128 129 130 131 132
static void del_nbp(struct net_bridge_port *p)
{
	struct net_bridge *br = p->br;
	struct net_device *dev = p->dev;

133
	sysfs_remove_link(br->ifobj, p->dev->name);
134

L
Linus Torvalds 已提交
135 136 137 138 139 140
	dev_set_promiscuity(dev, -1);

	spin_lock_bh(&br->lock);
	br_stp_disable_port(p);
	spin_unlock_bh(&br->lock);

141 142
	br_ifinfo_notify(RTM_DELLINK, p);

143
	br_fdb_delete_by_port(br, p, 1);
L
Linus Torvalds 已提交
144 145 146

	list_del_rcu(&p->list);

147 148
	dev->priv_flags &= ~IFF_BRIDGE_PORT;

149
	netdev_rx_handler_unregister(dev);
150

151 152
	br_multicast_del_port(p);

153
	kobject_uevent(&p->kobj, KOBJ_REMOVE);
154 155
	kobject_del(&p->kobj);

H
Herbert Xu 已提交
156 157
	br_netpoll_disable(p);

L
Linus Torvalds 已提交
158 159 160 161
	call_rcu(&p->rcu, destroy_nbp_rcu);
}

/* called with RTNL */
162
static void del_br(struct net_bridge *br, struct list_head *head)
L
Linus Torvalds 已提交
163 164 165 166 167 168 169 170 171 172
{
	struct net_bridge_port *p, *n;

	list_for_each_entry_safe(p, n, &br->port_list, list) {
		del_nbp(p);
	}

	del_timer_sync(&br->gc_timer);

	br_sysfs_delbr(br->dev);
173
	unregister_netdevice_queue(br->dev, head);
L
Linus Torvalds 已提交
174 175
}

176
static struct net_device *new_bridge_dev(struct net *net, const char *name)
L
Linus Torvalds 已提交
177 178 179 180 181 182
{
	struct net_bridge *br;
	struct net_device *dev;

	dev = alloc_netdev(sizeof(struct net_bridge), name,
			   br_dev_setup);
183

L
Linus Torvalds 已提交
184 185
	if (!dev)
		return NULL;
186
	dev_net_set(dev, net);
L
Linus Torvalds 已提交
187 188 189 190

	br = netdev_priv(dev);
	br->dev = dev;

191 192 193 194 195 196
	br->stats = alloc_percpu(struct br_cpu_netstats);
	if (!br->stats) {
		free_netdev(dev);
		return NULL;
	}

L
Linus Torvalds 已提交
197 198 199 200 201 202
	spin_lock_init(&br->lock);
	INIT_LIST_HEAD(&br->port_list);
	spin_lock_init(&br->hash_lock);

	br->bridge_id.prio[0] = 0x80;
	br->bridge_id.prio[1] = 0x00;
S
Stephen Hemminger 已提交
203 204

	memcpy(br->group_addr, br_group_address, ETH_ALEN);
L
Linus Torvalds 已提交
205

206
	br->feature_mask = dev->features;
207
	br->stp_enabled = BR_NO_STP;
L
Linus Torvalds 已提交
208 209 210 211 212 213 214 215 216
	br->designated_root = br->bridge_id;
	br->root_path_cost = 0;
	br->root_port = 0;
	br->bridge_max_age = br->max_age = 20 * HZ;
	br->bridge_hello_time = br->hello_time = 2 * HZ;
	br->bridge_forward_delay = br->forward_delay = 15 * HZ;
	br->topology_change = 0;
	br->topology_change_detected = 0;
	br->ageing_time = 300 * HZ;
217 218 219

	br_netfilter_rtable_init(br);

L
Linus Torvalds 已提交
220
	br_stp_timer_init(br);
221
	br_multicast_init(br);
L
Linus Torvalds 已提交
222 223 224 225 226 227 228 229 230 231 232

	return dev;
}

/* find an available port number */
static int find_portno(struct net_bridge *br)
{
	int index;
	struct net_bridge_port *p;
	unsigned long *inuse;

S
Stephen Hemminger 已提交
233
	inuse = kcalloc(BITS_TO_LONGS(BR_MAX_PORTS), sizeof(unsigned long),
L
Linus Torvalds 已提交
234 235 236 237 238 239 240 241 242 243 244 245 246 247
			GFP_KERNEL);
	if (!inuse)
		return -ENOMEM;

	set_bit(0, inuse);	/* zero is reserved */
	list_for_each_entry(p, &br->port_list, list) {
		set_bit(p->port_no, inuse);
	}
	index = find_first_zero_bit(inuse, BR_MAX_PORTS);
	kfree(inuse);

	return (index >= BR_MAX_PORTS) ? -EXFULL : index;
}

248
/* called with RTNL but without bridge lock */
249
static struct net_bridge_port *new_nbp(struct net_bridge *br,
250
				       struct net_device *dev)
L
Linus Torvalds 已提交
251 252 253
{
	int index;
	struct net_bridge_port *p;
254

L
Linus Torvalds 已提交
255 256 257 258
	index = find_portno(br);
	if (index < 0)
		return ERR_PTR(index);

S
Stephen Hemminger 已提交
259
	p = kzalloc(sizeof(*p), GFP_KERNEL);
L
Linus Torvalds 已提交
260 261 262 263 264 265
	if (p == NULL)
		return ERR_PTR(-ENOMEM);

	p->br = br;
	dev_hold(dev);
	p->dev = dev;
266
	p->path_cost = port_cost(dev);
267
	p->priority = 0x8000 >> BR_PORT_BITS;
L
Linus Torvalds 已提交
268
	p->port_no = index;
269
	p->flags = 0;
L
Linus Torvalds 已提交
270 271
	br_init_port(p);
	p->state = BR_STATE_DISABLED;
272
	br_stp_port_timer_init(p);
273
	br_multicast_add_port(p);
L
Linus Torvalds 已提交
274 275 276 277

	return p;
}

278 279 280 281
static struct device_type br_type = {
	.name	= "bridge",
};

282
int br_add_bridge(struct net *net, const char *name)
L
Linus Torvalds 已提交
283 284 285 286
{
	struct net_device *dev;
	int ret;

287
	dev = new_bridge_dev(net, name);
288
	if (!dev)
L
Linus Torvalds 已提交
289 290 291 292 293
		return -ENOMEM;

	rtnl_lock();
	if (strchr(dev->name, '%')) {
		ret = dev_alloc_name(dev, dev->name);
294 295
		if (ret < 0)
			goto out_free;
L
Linus Torvalds 已提交
296 297
	}

298 299
	SET_NETDEV_DEVTYPE(dev, &br_type);

L
Linus Torvalds 已提交
300
	ret = register_netdevice(dev);
301 302
	if (ret)
		goto out_free;
L
Linus Torvalds 已提交
303 304

	ret = br_sysfs_addbr(dev);
305
	if (ret)
306 307
		unregister_netdevice(dev);
 out:
L
Linus Torvalds 已提交
308
	rtnl_unlock();
309
	return ret;
310 311 312 313

out_free:
	free_netdev(dev);
	goto out;
L
Linus Torvalds 已提交
314 315
}

316
int br_del_bridge(struct net *net, const char *name)
L
Linus Torvalds 已提交
317 318 319 320 321
{
	struct net_device *dev;
	int ret = 0;

	rtnl_lock();
322
	dev = __dev_get_by_name(net, name);
323
	if (dev == NULL)
L
Linus Torvalds 已提交
324 325 326 327 328 329 330 331 332 333
		ret =  -ENXIO; 	/* Could not find device */

	else if (!(dev->priv_flags & IFF_EBRIDGE)) {
		/* Attempt to delete non bridge device! */
		ret = -EPERM;
	}

	else if (dev->flags & IFF_UP) {
		/* Not shutdown yet. */
		ret = -EBUSY;
334
	}
L
Linus Torvalds 已提交
335

336
	else
337
		del_br(netdev_priv(dev), NULL);
L
Linus Torvalds 已提交
338 339 340 341 342

	rtnl_unlock();
	return ret;
}

343
/* MTU of the bridge pseudo-device: ETH_DATA_LEN or the minimum of the ports */
L
Linus Torvalds 已提交
344 345 346 347 348 349 350 351
int br_min_mtu(const struct net_bridge *br)
{
	const struct net_bridge_port *p;
	int mtu = 0;

	ASSERT_RTNL();

	if (list_empty(&br->port_list))
352
		mtu = ETH_DATA_LEN;
L
Linus Torvalds 已提交
353 354 355 356 357 358 359 360 361
	else {
		list_for_each_entry(p, &br->port_list, list) {
			if (!mtu  || p->dev->mtu < mtu)
				mtu = p->dev->mtu;
		}
	}
	return mtu;
}

362 363 364 365 366 367
/*
 * Recomputes features using slave's features
 */
void br_features_recompute(struct net_bridge *br)
{
	struct net_bridge_port *p;
368
	unsigned long features, mask;
369

370 371 372 373 374
	features = mask = br->feature_mask;
	if (list_empty(&br->port_list))
		goto done;

	features &= ~NETIF_F_ONE_FOR_ALL;
375 376

	list_for_each_entry(p, &br->port_list, list) {
377 378
		features = netdev_increment_features(features,
						     p->dev->features, mask);
379 380
	}

381 382
done:
	br->dev->features = netdev_fix_features(features, NULL);
383 384
}

L
Linus Torvalds 已提交
385 386 387 388 389 390
/* called with RTNL */
int br_add_if(struct net_bridge *br, struct net_device *dev)
{
	struct net_bridge_port *p;
	int err = 0;

391 392 393
	/* Don't allow bridging non-ethernet like devices */
	if ((dev->flags & IFF_LOOPBACK) ||
	    dev->type != ARPHRD_ETHER || dev->addr_len != ETH_ALEN)
L
Linus Torvalds 已提交
394 395
		return -EINVAL;

396
	/* No bridging of bridges */
397
	if (dev->netdev_ops->ndo_start_xmit == br_dev_xmit)
L
Linus Torvalds 已提交
398 399
		return -ELOOP;

400
	/* Device is already being bridged */
401
	if (br_port_exists(dev))
L
Linus Torvalds 已提交
402 403
		return -EBUSY;

404 405 406 407
	/* No bridging devices that dislike that (e.g. wireless) */
	if (dev->priv_flags & IFF_DONT_BRIDGE)
		return -EOPNOTSUPP;

408 409
	p = new_nbp(br, dev);
	if (IS_ERR(p))
L
Linus Torvalds 已提交
410 411
		return PTR_ERR(p);

412 413 414 415
	err = dev_set_promiscuity(dev, 1);
	if (err)
		goto put_back;

416 417
	err = kobject_init_and_add(&p->kobj, &brport_ktype, &(dev->dev.kobj),
				   SYSFS_BRIDGE_PORT_ATTR);
418 419
	if (err)
		goto err0;
L
Linus Torvalds 已提交
420

421
	err = br_fdb_insert(br, p, dev->dev_addr);
422 423
	if (err)
		goto err1;
L
Linus Torvalds 已提交
424

425 426 427
	err = br_sysfs_addif(p);
	if (err)
		goto err2;
L
Linus Torvalds 已提交
428

H
Herbert Xu 已提交
429 430 431
	if (br_netpoll_info(br) && ((err = br_netpoll_enable(p))))
		goto err3;

432
	err = netdev_rx_handler_register(dev, br_handle_frame, p);
433
	if (err)
434 435 436
		goto err3;

	dev->priv_flags |= IFF_BRIDGE_PORT;
437

438
	dev_disable_lro(dev);
439 440 441 442 443 444

	list_add_rcu(&p->list, &br->port_list);

	spin_lock_bh(&br->lock);
	br_stp_recalculate_bridge_id(br);
	br_features_recompute(br);
445 446 447 448

	if ((dev->flags & IFF_UP) && netif_carrier_ok(dev) &&
	    (br->dev->flags & IFF_UP))
		br_stp_enable_port(p);
449 450
	spin_unlock_bh(&br->lock);

451 452
	br_ifinfo_notify(RTM_NEWLINK, p);

453
	dev_set_mtu(br->dev, br_min_mtu(br));
454

455
	kobject_uevent(&p->kobj, KOBJ_ADD);
L
Linus Torvalds 已提交
456

457
	return 0;
H
Herbert Xu 已提交
458 459
err3:
	sysfs_remove_link(br->ifobj, p->dev->name);
460
err2:
461
	br_fdb_delete_by_port(br, p, 1);
462
err1:
463
	kobject_put(&p->kobj);
464
	p = NULL; /* kobject_put frees */
465
err0:
466
	dev_set_promiscuity(dev, -1);
467 468
put_back:
	dev_put(dev);
469
	kfree(p);
L
Linus Torvalds 已提交
470 471 472 473 474 475
	return err;
}

/* called with RTNL */
int br_del_if(struct net_bridge *br, struct net_device *dev)
{
476 477 478 479
	struct net_bridge_port *p;

	if (!br_port_exists(dev))
		return -EINVAL;
480

481 482
	p = br_port_get(dev);
	if (p->br != br)
L
Linus Torvalds 已提交
483 484 485 486 487 488
		return -EINVAL;

	del_nbp(p);

	spin_lock_bh(&br->lock);
	br_stp_recalculate_bridge_id(br);
489
	br_features_recompute(br);
L
Linus Torvalds 已提交
490 491 492 493 494
	spin_unlock_bh(&br->lock);

	return 0;
}

495
void __net_exit br_net_exit(struct net *net)
L
Linus Torvalds 已提交
496
{
497
	struct net_device *dev;
498
	LIST_HEAD(list);
L
Linus Torvalds 已提交
499 500

	rtnl_lock();
501 502 503 504 505
	for_each_netdev(net, dev)
		if (dev->priv_flags & IFF_EBRIDGE)
			del_br(netdev_priv(dev), &list);

	unregister_netdevice_many(&list);
L
Linus Torvalds 已提交
506 507 508
	rtnl_unlock();

}