br_if.c 9.5 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>
16
#include <linux/etherdevice.h>
W
WANG Cong 已提交
17
#include <linux/netpoll.h>
L
Linus Torvalds 已提交
18 19 20 21 22
#include <linux/ethtool.h>
#include <linux/if_arp.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/rtnetlink.h>
23
#include <linux/if_ether.h>
24
#include <linux/slab.h>
L
Linus Torvalds 已提交
25 26 27 28 29 30 31 32
#include <net/sock.h>

#include "br_private.h"

/*
 * Determine initial path cost based on speed.
 * using recommendations from 802.1d standard
 *
33
 * Since driver might sleep need to not be holding any locks.
L
Linus Torvalds 已提交
34
 */
35
static int port_cost(struct net_device *dev)
L
Linus Torvalds 已提交
36
{
J
Jiri Pirko 已提交
37
	struct ethtool_cmd ecmd;
38

39
	if (!__ethtool_get_settings(dev, &ecmd)) {
J
Jiri Pirko 已提交
40 41 42 43 44 45 46 47 48
		switch (ethtool_cmd_speed(&ecmd)) {
		case SPEED_10000:
			return 2;
		case SPEED_1000:
			return 4;
		case SPEED_100:
			return 19;
		case SPEED_10:
			return 100;
L
Linus Torvalds 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61
		}
	}

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

62

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

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

72 73 74 75 76 77 78 79 80 81
	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);
82
	}
83
	spin_unlock_bh(&br->lock);
84 85
}

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

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

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

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

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

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

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

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

140 141
	br_ifinfo_notify(RTM_DELLINK, p);

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

	list_del_rcu(&p->list);

146 147
	dev->priv_flags &= ~IFF_BRIDGE_PORT;

148
	netdev_rx_handler_unregister(dev);
149
	synchronize_net();
150

151 152
	netdev_set_master(dev, NULL);

153 154
	br_multicast_del_port(p);

155
	kobject_uevent(&p->kobj, KOBJ_REMOVE);
156 157
	kobject_del(&p->kobj);

H
Herbert Xu 已提交
158 159
	br_netpoll_disable(p);

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

163 164
/* Delete bridge device */
void br_dev_delete(struct net_device *dev, struct list_head *head)
L
Linus Torvalds 已提交
165
{
166
	struct net_bridge *br = netdev_priv(dev);
L
Linus Torvalds 已提交
167 168 169 170 171 172 173 174 175
	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);
176
	unregister_netdevice_queue(br->dev, head);
L
Linus Torvalds 已提交
177 178 179 180 181 182 183 184 185
}

/* 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 已提交
186
	inuse = kcalloc(BITS_TO_LONGS(BR_MAX_PORTS), sizeof(unsigned long),
L
Linus Torvalds 已提交
187 188 189 190 191 192 193 194 195 196 197 198 199 200
			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;
}

201
/* called with RTNL but without bridge lock */
202
static struct net_bridge_port *new_nbp(struct net_bridge *br,
203
				       struct net_device *dev)
L
Linus Torvalds 已提交
204 205 206
{
	int index;
	struct net_bridge_port *p;
207

L
Linus Torvalds 已提交
208 209 210 211
	index = find_portno(br);
	if (index < 0)
		return ERR_PTR(index);

S
Stephen Hemminger 已提交
212
	p = kzalloc(sizeof(*p), GFP_KERNEL);
L
Linus Torvalds 已提交
213 214 215 216 217 218
	if (p == NULL)
		return ERR_PTR(-ENOMEM);

	p->br = br;
	dev_hold(dev);
	p->dev = dev;
219
	p->path_cost = port_cost(dev);
220
	p->priority = 0x8000 >> BR_PORT_BITS;
L
Linus Torvalds 已提交
221
	p->port_no = index;
222
	p->flags = 0;
L
Linus Torvalds 已提交
223 224
	br_init_port(p);
	p->state = BR_STATE_DISABLED;
225
	br_stp_port_timer_init(p);
226
	br_multicast_add_port(p);
L
Linus Torvalds 已提交
227 228 229 230

	return p;
}

231
int br_add_bridge(struct net *net, const char *name)
L
Linus Torvalds 已提交
232 233
{
	struct net_device *dev;
234
	int res;
L
Linus Torvalds 已提交
235

236 237 238
	dev = alloc_netdev(sizeof(struct net_bridge), name,
			   br_dev_setup);

239
	if (!dev)
L
Linus Torvalds 已提交
240 241
		return -ENOMEM;

242
	dev_net_set(dev, net);
243
	dev->rtnl_link_ops = &br_link_ops;
244

245 246 247 248
	res = register_netdev(dev);
	if (res)
		free_netdev(dev);
	return res;
L
Linus Torvalds 已提交
249 250
}

251
int br_del_bridge(struct net *net, const char *name)
L
Linus Torvalds 已提交
252 253 254 255 256
{
	struct net_device *dev;
	int ret = 0;

	rtnl_lock();
257
	dev = __dev_get_by_name(net, name);
258
	if (dev == NULL)
L
Linus Torvalds 已提交
259 260 261 262 263 264 265 266 267 268
		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;
269
	}
L
Linus Torvalds 已提交
270

271
	else
272
		br_dev_delete(dev, NULL);
L
Linus Torvalds 已提交
273 274 275 276 277

	rtnl_unlock();
	return ret;
}

278
/* MTU of the bridge pseudo-device: ETH_DATA_LEN or the minimum of the ports */
L
Linus Torvalds 已提交
279 280 281 282 283 284 285 286
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))
287
		mtu = ETH_DATA_LEN;
L
Linus Torvalds 已提交
288 289 290 291 292 293 294 295 296
	else {
		list_for_each_entry(p, &br->port_list, list) {
			if (!mtu  || p->dev->mtu < mtu)
				mtu = p->dev->mtu;
		}
	}
	return mtu;
}

297 298 299
/*
 * Recomputes features using slave's features
 */
300 301
netdev_features_t br_features_recompute(struct net_bridge *br,
	netdev_features_t features)
302 303
{
	struct net_bridge_port *p;
304
	netdev_features_t mask;
305

306
	if (list_empty(&br->port_list))
307
		return features;
308

309
	mask = features;
310
	features &= ~NETIF_F_ONE_FOR_ALL;
311 312

	list_for_each_entry(p, &br->port_list, list) {
313 314
		features = netdev_increment_features(features,
						     p->dev->features, mask);
315 316
	}

317
	return features;
318 319
}

L
Linus Torvalds 已提交
320 321 322 323 324
/* called with RTNL */
int br_add_if(struct net_bridge *br, struct net_device *dev)
{
	struct net_bridge_port *p;
	int err = 0;
325
	bool changed_addr;
L
Linus Torvalds 已提交
326

327 328
	/* Don't allow bridging non-ethernet like devices */
	if ((dev->flags & IFF_LOOPBACK) ||
329 330
	    dev->type != ARPHRD_ETHER || dev->addr_len != ETH_ALEN ||
	    !is_valid_ether_addr(dev->dev_addr))
L
Linus Torvalds 已提交
331 332
		return -EINVAL;

333
	/* No bridging of bridges */
334
	if (dev->netdev_ops->ndo_start_xmit == br_dev_xmit)
L
Linus Torvalds 已提交
335 336
		return -ELOOP;

337
	/* Device is already being bridged */
338
	if (br_port_exists(dev))
L
Linus Torvalds 已提交
339 340
		return -EBUSY;

341 342 343 344
	/* No bridging devices that dislike that (e.g. wireless) */
	if (dev->priv_flags & IFF_DONT_BRIDGE)
		return -EOPNOTSUPP;

345 346
	p = new_nbp(br, dev);
	if (IS_ERR(p))
L
Linus Torvalds 已提交
347 348
		return PTR_ERR(p);

349 350
	call_netdevice_notifiers(NETDEV_JOIN, dev);

351 352 353 354
	err = dev_set_promiscuity(dev, 1);
	if (err)
		goto put_back;

355 356
	err = kobject_init_and_add(&p->kobj, &brport_ktype, &(dev->dev.kobj),
				   SYSFS_BRIDGE_PORT_ATTR);
357 358
	if (err)
		goto err1;
L
Linus Torvalds 已提交
359

360 361 362
	err = br_sysfs_addif(p);
	if (err)
		goto err2;
L
Linus Torvalds 已提交
363

364
	if (br_netpoll_info(br) && ((err = br_netpoll_enable(p, GFP_KERNEL))))
H
Herbert Xu 已提交
365 366
		goto err3;

367
	err = netdev_set_master(dev, br->dev);
368
	if (err)
369
		goto err4;
370

371 372
	err = netdev_rx_handler_register(dev, br_handle_frame, p);
	if (err)
373
		goto err5;
374

375
	dev->priv_flags |= IFF_BRIDGE_PORT;
376

377
	dev_disable_lro(dev);
378 379 380

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

381 382
	netdev_update_features(br->dev);

383
	spin_lock_bh(&br->lock);
384
	changed_addr = br_stp_recalculate_bridge_id(br);
385 386 387 388

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

391 392
	br_ifinfo_notify(RTM_NEWLINK, p);

393
	if (changed_addr)
394
		call_netdevice_notifiers(NETDEV_CHANGEADDR, br->dev);
395

396
	dev_set_mtu(br->dev, br_min_mtu(br));
397

398 399 400
	if (br_fdb_insert(br, p, dev->dev_addr))
		netdev_err(dev, "failed insert local address bridge forwarding table\n");

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

403
	return 0;
404

405
err5:
406
	netdev_set_master(dev, NULL);
407 408
err4:
	br_netpoll_disable(p);
H
Herbert Xu 已提交
409 410
err3:
	sysfs_remove_link(br->ifobj, p->dev->name);
411
err2:
412
	kobject_put(&p->kobj);
413
	p = NULL; /* kobject_put frees */
414
err1:
415
	dev_set_promiscuity(dev, -1);
416 417
put_back:
	dev_put(dev);
418
	kfree(p);
L
Linus Torvalds 已提交
419 420 421 422 423 424
	return err;
}

/* called with RTNL */
int br_del_if(struct net_bridge *br, struct net_device *dev)
{
425
	struct net_bridge_port *p;
426
	bool changed_addr;
427

428
	p = br_port_get_rtnl(dev);
429
	if (!p || p->br != br)
L
Linus Torvalds 已提交
430 431
		return -EINVAL;

432 433 434 435
	/* Since more than one interface can be attached to a bridge,
	 * there still maybe an alternate path for netconsole to use;
	 * therefore there is no reason for a NETDEV_RELEASE event.
	 */
L
Linus Torvalds 已提交
436 437 438
	del_nbp(p);

	spin_lock_bh(&br->lock);
439
	changed_addr = br_stp_recalculate_bridge_id(br);
L
Linus Torvalds 已提交
440 441
	spin_unlock_bh(&br->lock);

442 443 444
	if (changed_addr)
		call_netdevice_notifiers(NETDEV_CHANGEADDR, br->dev);

445 446
	netdev_update_features(br->dev);

L
Linus Torvalds 已提交
447 448 449
	return 0;
}

450
void __net_exit br_net_exit(struct net *net)
L
Linus Torvalds 已提交
451
{
452
	struct net_device *dev;
453
	LIST_HEAD(list);
L
Linus Torvalds 已提交
454 455

	rtnl_lock();
456 457
	for_each_netdev(net, dev)
		if (dev->priv_flags & IFF_EBRIDGE)
458
			br_dev_delete(dev, &list);
459 460

	unregister_netdevice_many(&list);
L
Linus Torvalds 已提交
461 462 463
	rtnl_unlock();

}