br_if.c 9.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 *	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>
#include <linux/ethtool.h>
#include <linux/if_arp.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/rtnetlink.h>
21
#include <linux/if_ether.h>
L
Linus Torvalds 已提交
22 23 24 25 26 27 28 29
#include <net/sock.h>

#include "br_private.h"

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

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

	/* 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 */
}

61 62 63 64 65 66

/*
 * Check for port carrier transistions.
 * Called from work queue to allow for calling functions that
 * might sleep (such as speed check), and to debounce.
 */
67
void br_port_carrier_check(struct net_bridge_port *p)
68
{
69 70
	struct net_device *dev = p->dev;
	struct net_bridge *br = p->br;
S
Stephen Hemminger 已提交
71 72 73 74

	if (netif_carrier_ok(dev))
		p->path_cost = port_cost(dev);

75
	if (netif_running(br->dev)) {
S
Stephen Hemminger 已提交
76 77 78 79 80 81 82
		spin_lock_bh(&br->lock);
		if (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
		}
S
Stephen Hemminger 已提交
84
		spin_unlock_bh(&br->lock);
85 86 87
	}
}

88 89 90 91 92 93 94 95 96 97 98 99 100 101
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 已提交
102 103 104 105 106 107 108 109
static void destroy_nbp(struct net_bridge_port *p)
{
	struct net_device *dev = p->dev;

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

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

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);
}

120 121 122 123 124 125 126 127 128
/* 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 已提交
129 130 131 132 133
static void del_nbp(struct net_bridge_port *p)
{
	struct net_bridge *br = p->br;
	struct net_device *dev = p->dev;

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

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

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

142 143
	br_ifinfo_notify(RTM_DELLINK, p);

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

	list_del_rcu(&p->list);

148 149
	rcu_assign_pointer(dev->br_port, NULL);

150
	kobject_uevent(&p->kobj, KOBJ_REMOVE);
151 152
	kobject_del(&p->kobj);

L
Linus Torvalds 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
	call_rcu(&p->rcu, destroy_nbp_rcu);
}

/* called with RTNL */
static void del_br(struct net_bridge *br)
{
	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);
168
	unregister_netdevice(br->dev);
L
Linus Torvalds 已提交
169 170 171 172 173 174 175 176 177
}

static struct net_device *new_bridge_dev(const char *name)
{
	struct net_bridge *br;
	struct net_device *dev;

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

L
Linus Torvalds 已提交
179 180 181 182 183 184 185 186 187 188 189 190
	if (!dev)
		return NULL;

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

	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 已提交
191 192

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

194
	br->feature_mask = dev->features;
195
	br->stp_enabled = BR_NO_STP;
L
Linus Torvalds 已提交
196 197 198 199 200 201 202 203 204
	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;
205 206 207

	br_netfilter_rtable_init(br);

L
Linus Torvalds 已提交
208 209 210 211 212 213 214 215 216 217 218 219 220 221
	INIT_LIST_HEAD(&br->age_list);

	br_stp_timer_init(br);

	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 已提交
222
	inuse = kcalloc(BITS_TO_LONGS(BR_MAX_PORTS), sizeof(unsigned long),
L
Linus Torvalds 已提交
223 224 225 226 227 228 229 230 231 232 233 234 235 236
			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;
}

237
/* called with RTNL but without bridge lock */
238
static struct net_bridge_port *new_nbp(struct net_bridge *br,
239
				       struct net_device *dev)
L
Linus Torvalds 已提交
240 241 242
{
	int index;
	struct net_bridge_port *p;
243

L
Linus Torvalds 已提交
244 245 246 247
	index = find_portno(br);
	if (index < 0)
		return ERR_PTR(index);

S
Stephen Hemminger 已提交
248
	p = kzalloc(sizeof(*p), GFP_KERNEL);
L
Linus Torvalds 已提交
249 250 251 252 253 254
	if (p == NULL)
		return ERR_PTR(-ENOMEM);

	p->br = br;
	dev_hold(dev);
	p->dev = dev;
255
	p->path_cost = port_cost(dev);
256
	p->priority = 0x8000 >> BR_PORT_BITS;
L
Linus Torvalds 已提交
257 258 259
	p->port_no = index;
	br_init_port(p);
	p->state = BR_STATE_DISABLED;
260
	br_stp_port_timer_init(p);
L
Linus Torvalds 已提交
261 262 263 264 265 266 267 268 269 270

	return p;
}

int br_add_bridge(const char *name)
{
	struct net_device *dev;
	int ret;

	dev = new_bridge_dev(name);
271
	if (!dev)
L
Linus Torvalds 已提交
272 273 274 275 276
		return -ENOMEM;

	rtnl_lock();
	if (strchr(dev->name, '%')) {
		ret = dev_alloc_name(dev, dev->name);
277 278
		if (ret < 0)
			goto out_free;
L
Linus Torvalds 已提交
279 280 281
	}

	ret = register_netdevice(dev);
282 283
	if (ret)
		goto out_free;
L
Linus Torvalds 已提交
284 285

	ret = br_sysfs_addbr(dev);
286
	if (ret)
287 288
		unregister_netdevice(dev);
 out:
L
Linus Torvalds 已提交
289
	rtnl_unlock();
290
	return ret;
291 292 293 294

out_free:
	free_netdev(dev);
	goto out;
L
Linus Torvalds 已提交
295 296 297 298 299 300 301 302
}

int br_del_bridge(const char *name)
{
	struct net_device *dev;
	int ret = 0;

	rtnl_lock();
303
	dev = __dev_get_by_name(&init_net, name);
304
	if (dev == NULL)
L
Linus Torvalds 已提交
305 306 307 308 309 310 311 312 313 314
		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;
315
	}
L
Linus Torvalds 已提交
316

317
	else
L
Linus Torvalds 已提交
318 319 320 321 322 323
		del_br(netdev_priv(dev));

	rtnl_unlock();
	return ret;
}

324
/* MTU of the bridge pseudo-device: ETH_DATA_LEN or the minimum of the ports */
L
Linus Torvalds 已提交
325 326 327 328 329 330 331 332
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))
333
		mtu = ETH_DATA_LEN;
L
Linus Torvalds 已提交
334 335 336 337 338 339 340 341 342
	else {
		list_for_each_entry(p, &br->port_list, list) {
			if (!mtu  || p->dev->mtu < mtu)
				mtu = p->dev->mtu;
		}
	}
	return mtu;
}

343 344 345 346 347 348
/*
 * Recomputes features using slave's features
 */
void br_features_recompute(struct net_bridge *br)
{
	struct net_bridge_port *p;
349
	unsigned long features;
350

351
	features = br->feature_mask;
352 353

	list_for_each_entry(p, &br->port_list, list) {
354
		features = netdev_compute_features(features, p->dev->features);
355 356
	}

357
	br->dev->features = features;
358 359
}

L
Linus Torvalds 已提交
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
/* called with RTNL */
int br_add_if(struct net_bridge *br, struct net_device *dev)
{
	struct net_bridge_port *p;
	int err = 0;

	if (dev->flags & IFF_LOOPBACK || dev->type != ARPHRD_ETHER)
		return -EINVAL;

	if (dev->hard_start_xmit == br_dev_xmit)
		return -ELOOP;

	if (dev->br_port != NULL)
		return -EBUSY;

375 376
	p = new_nbp(br, dev);
	if (IS_ERR(p))
L
Linus Torvalds 已提交
377 378
		return PTR_ERR(p);

379 380 381 382
	err = dev_set_promiscuity(dev, 1);
	if (err)
		goto put_back;

383 384
	err = kobject_init_and_add(&p->kobj, &brport_ktype, &(dev->dev.kobj),
				   SYSFS_BRIDGE_PORT_ATTR);
385 386
	if (err)
		goto err0;
L
Linus Torvalds 已提交
387

388
	err = br_fdb_insert(br, p, dev->dev_addr);
389 390
	if (err)
		goto err1;
L
Linus Torvalds 已提交
391

392 393 394
	err = br_sysfs_addif(p);
	if (err)
		goto err2;
L
Linus Torvalds 已提交
395

396
	rcu_assign_pointer(dev->br_port, p);
397
	dev_disable_lro(dev);
398 399 400 401 402 403

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

	spin_lock_bh(&br->lock);
	br_stp_recalculate_bridge_id(br);
	br_features_recompute(br);
404 405 406 407

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

410 411
	br_ifinfo_notify(RTM_NEWLINK, p);

412
	dev_set_mtu(br->dev, br_min_mtu(br));
413

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

416 417
	return 0;
err2:
418
	br_fdb_delete_by_port(br, p, 1);
419 420 421 422
err1:
	kobject_del(&p->kobj);
err0:
	kobject_put(&p->kobj);
423
	dev_set_promiscuity(dev, -1);
424 425
put_back:
	dev_put(dev);
426
	kfree(p);
L
Linus Torvalds 已提交
427 428 429 430 431 432 433
	return err;
}

/* called with RTNL */
int br_del_if(struct net_bridge *br, struct net_device *dev)
{
	struct net_bridge_port *p = dev->br_port;
434 435

	if (!p || p->br != br)
L
Linus Torvalds 已提交
436 437 438 439 440 441
		return -EINVAL;

	del_nbp(p);

	spin_lock_bh(&br->lock);
	br_stp_recalculate_bridge_id(br);
442
	br_features_recompute(br);
L
Linus Torvalds 已提交
443 444 445 446 447 448 449
	spin_unlock_bh(&br->lock);

	return 0;
}

void __exit br_cleanup_bridges(void)
{
450
	struct net_device *dev;
L
Linus Torvalds 已提交
451 452

	rtnl_lock();
453 454 455
restart:
	for_each_netdev(&init_net, dev) {
		if (dev->priv_flags & IFF_EBRIDGE) {
L
Linus Torvalds 已提交
456
			del_br(dev->priv);
457 458 459
			goto restart;
		}
	}
L
Linus Torvalds 已提交
460 461 462
	rtnl_unlock();

}