3 * Linux ethernet bridge
6 * Lennert Buytenhek <buytenh@gnu.org>
8 * $Id: br_if.c,v 1.7 2001/12/24 00:59:55 davem Exp $
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
16 #include <linux/kernel.h>
17 #include <linux/netdevice.h>
18 #include <linux/ethtool.h>
19 #include <linux/if_arp.h>
20 #include <linux/module.h>
21 #include <linux/init.h>
22 #include <linux/rtnetlink.h>
23 #include <linux/if_ether.h>
26 #include "br_private.h"
29 * Determine initial path cost based on speed.
30 * using recommendations from 802.1d standard
32 * Need to simulate user ioctl because not all device's that support
33 * ethtool, use ethtool_ops. Also, since driver might sleep need to
34 * not be holding any locks.
36 static int port_cost(struct net_device *dev)
38 struct ethtool_cmd ecmd = { ETHTOOL_GSET };
43 strncpy(ifr.ifr_name, dev->name, IFNAMSIZ);
44 ifr.ifr_data = (void __user *) &ecmd;
48 err = dev_ethtool(&ifr);
64 /* Old silly heuristics based on name */
65 if (!strncmp(dev->name, "lec", 3))
68 if (!strncmp(dev->name, "plip", 4))
71 return 100; /* assume old 10Mbps */
76 * Check for port carrier transistions.
77 * Called from work queue to allow for calling functions that
78 * might sleep (such as speed check), and to debounce.
80 static void port_carrier_check(struct work_struct *work)
82 struct net_bridge_port *p;
83 struct net_device *dev;
84 struct net_bridge *br;
86 dev = container_of(work, struct net_bridge_port,
87 carrier_check.work)->dev;
96 if (netif_carrier_ok(dev))
97 p->path_cost = port_cost(dev);
99 if (br->dev->flags & IFF_UP) {
100 spin_lock_bh(&br->lock);
101 if (netif_carrier_ok(dev)) {
102 if (p->state == BR_STATE_DISABLED)
103 br_stp_enable_port(p);
105 if (p->state != BR_STATE_DISABLED)
106 br_stp_disable_port(p);
108 spin_unlock_bh(&br->lock);
115 static void release_nbp(struct kobject *kobj)
117 struct net_bridge_port *p
118 = container_of(kobj, struct net_bridge_port, kobj);
122 static struct kobj_type brport_ktype = {
124 .sysfs_ops = &brport_sysfs_ops,
126 .release = release_nbp,
129 static void destroy_nbp(struct net_bridge_port *p)
131 struct net_device *dev = p->dev;
137 kobject_put(&p->kobj);
140 static void destroy_nbp_rcu(struct rcu_head *head)
142 struct net_bridge_port *p =
143 container_of(head, struct net_bridge_port, rcu);
147 /* Delete port(interface) from bridge is done in two steps.
148 * via RCU. First step, marks device as down. That deletes
149 * all the timers and stops new packets from flowing through.
151 * Final cleanup doesn't occur until after all CPU's finished
152 * processing packets.
154 * Protected from multiple admin operations by RTNL mutex
156 static void del_nbp(struct net_bridge_port *p)
158 struct net_bridge *br = p->br;
159 struct net_device *dev = p->dev;
161 sysfs_remove_link(&br->ifobj, dev->name);
163 dev_set_promiscuity(dev, -1);
165 if (cancel_delayed_work(&p->carrier_check))
168 spin_lock_bh(&br->lock);
169 br_stp_disable_port(p);
170 spin_unlock_bh(&br->lock);
172 br_fdb_delete_by_port(br, p, 1);
174 list_del_rcu(&p->list);
176 rcu_assign_pointer(dev->br_port, NULL);
178 kobject_uevent(&p->kobj, KOBJ_REMOVE);
179 kobject_del(&p->kobj);
181 call_rcu(&p->rcu, destroy_nbp_rcu);
184 /* called with RTNL */
185 static void del_br(struct net_bridge *br)
187 struct net_bridge_port *p, *n;
189 list_for_each_entry_safe(p, n, &br->port_list, list) {
193 del_timer_sync(&br->gc_timer);
195 br_sysfs_delbr(br->dev);
196 unregister_netdevice(br->dev);
199 static struct net_device *new_bridge_dev(const char *name)
201 struct net_bridge *br;
202 struct net_device *dev;
204 dev = alloc_netdev(sizeof(struct net_bridge), name,
210 br = netdev_priv(dev);
213 spin_lock_init(&br->lock);
214 INIT_LIST_HEAD(&br->port_list);
215 spin_lock_init(&br->hash_lock);
217 br->bridge_id.prio[0] = 0x80;
218 br->bridge_id.prio[1] = 0x00;
220 memcpy(br->group_addr, br_group_address, ETH_ALEN);
222 br->feature_mask = dev->features;
224 br->designated_root = br->bridge_id;
225 br->root_path_cost = 0;
227 br->bridge_max_age = br->max_age = 20 * HZ;
228 br->bridge_hello_time = br->hello_time = 2 * HZ;
229 br->bridge_forward_delay = br->forward_delay = 15 * HZ;
230 br->topology_change = 0;
231 br->topology_change_detected = 0;
232 br->ageing_time = 300 * HZ;
233 INIT_LIST_HEAD(&br->age_list);
235 br_stp_timer_init(br);
240 /* find an available port number */
241 static int find_portno(struct net_bridge *br)
244 struct net_bridge_port *p;
245 unsigned long *inuse;
247 inuse = kcalloc(BITS_TO_LONGS(BR_MAX_PORTS), sizeof(unsigned long),
252 set_bit(0, inuse); /* zero is reserved */
253 list_for_each_entry(p, &br->port_list, list) {
254 set_bit(p->port_no, inuse);
256 index = find_first_zero_bit(inuse, BR_MAX_PORTS);
259 return (index >= BR_MAX_PORTS) ? -EXFULL : index;
262 /* called with RTNL but without bridge lock */
263 static struct net_bridge_port *new_nbp(struct net_bridge *br,
264 struct net_device *dev)
267 struct net_bridge_port *p;
269 index = find_portno(br);
271 return ERR_PTR(index);
273 p = kzalloc(sizeof(*p), GFP_KERNEL);
275 return ERR_PTR(-ENOMEM);
280 p->path_cost = port_cost(dev);
281 p->priority = 0x8000 >> BR_PORT_BITS;
284 p->state = BR_STATE_DISABLED;
285 INIT_DELAYED_WORK_NAR(&p->carrier_check, port_carrier_check);
286 br_stp_port_timer_init(p);
288 kobject_init(&p->kobj);
289 kobject_set_name(&p->kobj, SYSFS_BRIDGE_PORT_ATTR);
290 p->kobj.ktype = &brport_ktype;
291 p->kobj.parent = &(dev->dev.kobj);
297 int br_add_bridge(const char *name)
299 struct net_device *dev;
302 dev = new_bridge_dev(name);
307 if (strchr(dev->name, '%')) {
308 ret = dev_alloc_name(dev, dev->name);
315 ret = register_netdevice(dev);
319 ret = br_sysfs_addbr(dev);
321 unregister_netdevice(dev);
327 int br_del_bridge(const char *name)
329 struct net_device *dev;
333 dev = __dev_get_by_name(name);
335 ret = -ENXIO; /* Could not find device */
337 else if (!(dev->priv_flags & IFF_EBRIDGE)) {
338 /* Attempt to delete non bridge device! */
342 else if (dev->flags & IFF_UP) {
343 /* Not shutdown yet. */
348 del_br(netdev_priv(dev));
354 /* MTU of the bridge pseudo-device: ETH_DATA_LEN or the minimum of the ports */
355 int br_min_mtu(const struct net_bridge *br)
357 const struct net_bridge_port *p;
362 if (list_empty(&br->port_list))
365 list_for_each_entry(p, &br->port_list, list) {
366 if (!mtu || p->dev->mtu < mtu)
374 * Recomputes features using slave's features
376 void br_features_recompute(struct net_bridge *br)
378 struct net_bridge_port *p;
379 unsigned long features, checksum;
381 checksum = br->feature_mask & NETIF_F_ALL_CSUM ? NETIF_F_NO_CSUM : 0;
382 features = br->feature_mask & ~NETIF_F_ALL_CSUM;
384 list_for_each_entry(p, &br->port_list, list) {
385 unsigned long feature = p->dev->features;
387 if (checksum & NETIF_F_NO_CSUM && !(feature & NETIF_F_NO_CSUM))
388 checksum ^= NETIF_F_NO_CSUM | NETIF_F_HW_CSUM;
389 if (checksum & NETIF_F_HW_CSUM && !(feature & NETIF_F_HW_CSUM))
390 checksum ^= NETIF_F_HW_CSUM | NETIF_F_IP_CSUM;
391 if (!(feature & NETIF_F_IP_CSUM))
394 if (feature & NETIF_F_GSO)
395 feature |= NETIF_F_GSO_SOFTWARE;
396 feature |= NETIF_F_GSO;
401 if (!(checksum & NETIF_F_ALL_CSUM))
402 features &= ~NETIF_F_SG;
403 if (!(features & NETIF_F_SG))
404 features &= ~NETIF_F_GSO_MASK;
406 br->dev->features = features | checksum | NETIF_F_LLTX |
410 /* called with RTNL */
411 int br_add_if(struct net_bridge *br, struct net_device *dev)
413 struct net_bridge_port *p;
416 if (dev->flags & IFF_LOOPBACK || dev->type != ARPHRD_ETHER)
419 if (dev->hard_start_xmit == br_dev_xmit)
422 if (dev->br_port != NULL)
425 p = new_nbp(br, dev);
429 err = kobject_add(&p->kobj);
433 err = br_fdb_insert(br, p, dev->dev_addr);
437 err = br_sysfs_addif(p);
441 rcu_assign_pointer(dev->br_port, p);
442 dev_set_promiscuity(dev, 1);
444 list_add_rcu(&p->list, &br->port_list);
446 spin_lock_bh(&br->lock);
447 br_stp_recalculate_bridge_id(br);
448 br_features_recompute(br);
449 if (schedule_delayed_work(&p->carrier_check, BR_PORT_DEBOUNCE))
452 spin_unlock_bh(&br->lock);
454 dev_set_mtu(br->dev, br_min_mtu(br));
455 kobject_uevent(&p->kobj, KOBJ_ADD);
459 br_fdb_delete_by_port(br, p, 1);
461 kobject_del(&p->kobj);
463 kobject_put(&p->kobj);
467 /* called with RTNL */
468 int br_del_if(struct net_bridge *br, struct net_device *dev)
470 struct net_bridge_port *p = dev->br_port;
472 if (!p || p->br != br)
477 spin_lock_bh(&br->lock);
478 br_stp_recalculate_bridge_id(br);
479 br_features_recompute(br);
480 spin_unlock_bh(&br->lock);
485 void __exit br_cleanup_bridges(void)
487 struct net_device *dev, *nxt;
490 for (dev = dev_base; dev; dev = nxt) {
492 if (dev->priv_flags & IFF_EBRIDGE)