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 * Since driver might sleep need to not be holding any locks.
34 static int port_cost(struct net_device *dev)
36 if (dev->ethtool_ops->get_settings) {
37 struct ethtool_cmd ecmd = { ETHTOOL_GSET };
38 int err = dev->ethtool_ops->get_settings(dev, &ecmd);
53 /* Old silly heuristics based on name */
54 if (!strncmp(dev->name, "lec", 3))
57 if (!strncmp(dev->name, "plip", 4))
60 return 100; /* assume old 10Mbps */
65 * Check for port carrier transistions.
66 * Called from work queue to allow for calling functions that
67 * might sleep (such as speed check), and to debounce.
69 void br_port_carrier_check(struct net_bridge_port *p)
71 struct net_device *dev = p->dev;
72 struct net_bridge *br = p->br;
74 if (netif_carrier_ok(dev))
75 p->path_cost = port_cost(dev);
77 if (netif_running(br->dev)) {
78 spin_lock_bh(&br->lock);
79 if (netif_carrier_ok(dev)) {
80 if (p->state == BR_STATE_DISABLED)
81 br_stp_enable_port(p);
83 if (p->state != BR_STATE_DISABLED)
84 br_stp_disable_port(p);
86 spin_unlock_bh(&br->lock);
90 static void release_nbp(struct kobject *kobj)
92 struct net_bridge_port *p
93 = container_of(kobj, struct net_bridge_port, kobj);
97 static struct kobj_type brport_ktype = {
99 .sysfs_ops = &brport_sysfs_ops,
101 .release = release_nbp,
104 static void destroy_nbp(struct net_bridge_port *p)
106 struct net_device *dev = p->dev;
112 kobject_put(&p->kobj);
115 static void destroy_nbp_rcu(struct rcu_head *head)
117 struct net_bridge_port *p =
118 container_of(head, struct net_bridge_port, rcu);
122 /* Delete port(interface) from bridge is done in two steps.
123 * via RCU. First step, marks device as down. That deletes
124 * all the timers and stops new packets from flowing through.
126 * Final cleanup doesn't occur until after all CPU's finished
127 * processing packets.
129 * Protected from multiple admin operations by RTNL mutex
131 static void del_nbp(struct net_bridge_port *p)
133 struct net_bridge *br = p->br;
134 struct net_device *dev = p->dev;
136 sysfs_remove_link(&br->ifobj, dev->name);
138 dev_set_promiscuity(dev, -1);
140 spin_lock_bh(&br->lock);
141 br_stp_disable_port(p);
142 spin_unlock_bh(&br->lock);
144 br_ifinfo_notify(RTM_DELLINK, p);
146 br_fdb_delete_by_port(br, p, 1);
148 list_del_rcu(&p->list);
150 rcu_assign_pointer(dev->br_port, NULL);
152 kobject_uevent(&p->kobj, KOBJ_REMOVE);
153 kobject_del(&p->kobj);
155 call_rcu(&p->rcu, destroy_nbp_rcu);
158 /* called with RTNL */
159 static void del_br(struct net_bridge *br)
161 struct net_bridge_port *p, *n;
163 list_for_each_entry_safe(p, n, &br->port_list, list) {
167 del_timer_sync(&br->gc_timer);
169 br_sysfs_delbr(br->dev);
170 unregister_netdevice(br->dev);
173 static struct net_device *new_bridge_dev(const char *name)
175 struct net_bridge *br;
176 struct net_device *dev;
178 dev = alloc_netdev(sizeof(struct net_bridge), name,
184 br = netdev_priv(dev);
187 spin_lock_init(&br->lock);
188 INIT_LIST_HEAD(&br->port_list);
189 spin_lock_init(&br->hash_lock);
191 br->bridge_id.prio[0] = 0x80;
192 br->bridge_id.prio[1] = 0x00;
194 memcpy(br->group_addr, br_group_address, ETH_ALEN);
196 br->feature_mask = dev->features;
197 br->stp_enabled = BR_NO_STP;
198 br->designated_root = br->bridge_id;
199 br->root_path_cost = 0;
201 br->bridge_max_age = br->max_age = 20 * HZ;
202 br->bridge_hello_time = br->hello_time = 2 * HZ;
203 br->bridge_forward_delay = br->forward_delay = 15 * HZ;
204 br->topology_change = 0;
205 br->topology_change_detected = 0;
206 br->ageing_time = 300 * HZ;
207 INIT_LIST_HEAD(&br->age_list);
209 br_stp_timer_init(br);
214 /* find an available port number */
215 static int find_portno(struct net_bridge *br)
218 struct net_bridge_port *p;
219 unsigned long *inuse;
221 inuse = kcalloc(BITS_TO_LONGS(BR_MAX_PORTS), sizeof(unsigned long),
226 set_bit(0, inuse); /* zero is reserved */
227 list_for_each_entry(p, &br->port_list, list) {
228 set_bit(p->port_no, inuse);
230 index = find_first_zero_bit(inuse, BR_MAX_PORTS);
233 return (index >= BR_MAX_PORTS) ? -EXFULL : index;
236 /* called with RTNL but without bridge lock */
237 static struct net_bridge_port *new_nbp(struct net_bridge *br,
238 struct net_device *dev)
241 struct net_bridge_port *p;
243 index = find_portno(br);
245 return ERR_PTR(index);
247 p = kzalloc(sizeof(*p), GFP_KERNEL);
249 return ERR_PTR(-ENOMEM);
254 p->path_cost = port_cost(dev);
255 p->priority = 0x8000 >> BR_PORT_BITS;
258 p->state = BR_STATE_DISABLED;
259 br_stp_port_timer_init(p);
261 kobject_init(&p->kobj);
262 kobject_set_name(&p->kobj, SYSFS_BRIDGE_PORT_ATTR);
263 p->kobj.ktype = &brport_ktype;
264 p->kobj.parent = &(dev->dev.kobj);
270 int br_add_bridge(const char *name)
272 struct net_device *dev;
275 dev = new_bridge_dev(name);
280 if (strchr(dev->name, '%')) {
281 ret = dev_alloc_name(dev, dev->name);
288 ret = register_netdevice(dev);
292 ret = br_sysfs_addbr(dev);
294 unregister_netdevice(dev);
300 int br_del_bridge(const char *name)
302 struct net_device *dev;
306 dev = __dev_get_by_name(name);
308 ret = -ENXIO; /* Could not find device */
310 else if (!(dev->priv_flags & IFF_EBRIDGE)) {
311 /* Attempt to delete non bridge device! */
315 else if (dev->flags & IFF_UP) {
316 /* Not shutdown yet. */
321 del_br(netdev_priv(dev));
327 /* MTU of the bridge pseudo-device: ETH_DATA_LEN or the minimum of the ports */
328 int br_min_mtu(const struct net_bridge *br)
330 const struct net_bridge_port *p;
335 if (list_empty(&br->port_list))
338 list_for_each_entry(p, &br->port_list, list) {
339 if (!mtu || p->dev->mtu < mtu)
347 * Recomputes features using slave's features
349 void br_features_recompute(struct net_bridge *br)
351 struct net_bridge_port *p;
352 unsigned long features, checksum;
354 checksum = br->feature_mask & NETIF_F_ALL_CSUM ? NETIF_F_NO_CSUM : 0;
355 features = br->feature_mask & ~NETIF_F_ALL_CSUM;
357 list_for_each_entry(p, &br->port_list, list) {
358 unsigned long feature = p->dev->features;
360 /* if device needs checksumming, downgrade to hw checksumming */
361 if (checksum & NETIF_F_NO_CSUM && !(feature & NETIF_F_NO_CSUM))
362 checksum ^= NETIF_F_NO_CSUM | NETIF_F_HW_CSUM;
364 /* if device can't do all checksum, downgrade to ipv4/ipv6 */
365 if (checksum & NETIF_F_HW_CSUM && !(feature & NETIF_F_HW_CSUM))
366 checksum ^= NETIF_F_HW_CSUM
367 | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
369 if (checksum & NETIF_F_IPV6_CSUM && !(feature & NETIF_F_IPV6_CSUM))
370 checksum &= ~NETIF_F_IPV6_CSUM;
372 if (!(feature & NETIF_F_IP_CSUM))
375 if (feature & NETIF_F_GSO)
376 feature |= NETIF_F_GSO_SOFTWARE;
377 feature |= NETIF_F_GSO;
382 if (!(checksum & NETIF_F_ALL_CSUM))
383 features &= ~NETIF_F_SG;
384 if (!(features & NETIF_F_SG))
385 features &= ~NETIF_F_GSO_MASK;
387 br->dev->features = features | checksum | NETIF_F_LLTX |
391 /* called with RTNL */
392 int br_add_if(struct net_bridge *br, struct net_device *dev)
394 struct net_bridge_port *p;
397 if (dev->flags & IFF_LOOPBACK || dev->type != ARPHRD_ETHER)
400 if (dev->hard_start_xmit == br_dev_xmit)
403 if (dev->br_port != NULL)
406 p = new_nbp(br, dev);
410 err = kobject_add(&p->kobj);
414 err = br_fdb_insert(br, p, dev->dev_addr);
418 err = br_sysfs_addif(p);
422 rcu_assign_pointer(dev->br_port, p);
423 dev_set_promiscuity(dev, 1);
425 list_add_rcu(&p->list, &br->port_list);
427 spin_lock_bh(&br->lock);
428 br_stp_recalculate_bridge_id(br);
429 br_features_recompute(br);
431 if ((dev->flags & IFF_UP) && netif_carrier_ok(dev) &&
432 (br->dev->flags & IFF_UP))
433 br_stp_enable_port(p);
434 spin_unlock_bh(&br->lock);
436 br_ifinfo_notify(RTM_NEWLINK, p);
438 dev_set_mtu(br->dev, br_min_mtu(br));
440 kobject_uevent(&p->kobj, KOBJ_ADD);
444 br_fdb_delete_by_port(br, p, 1);
446 kobject_del(&p->kobj);
448 kobject_put(&p->kobj);
452 /* called with RTNL */
453 int br_del_if(struct net_bridge *br, struct net_device *dev)
455 struct net_bridge_port *p = dev->br_port;
457 if (!p || p->br != br)
462 spin_lock_bh(&br->lock);
463 br_stp_recalculate_bridge_id(br);
464 br_features_recompute(br);
465 spin_unlock_bh(&br->lock);
470 void __exit br_cleanup_bridges(void)
472 struct net_device *dev, *nxt;
475 for_each_netdev_safe(dev, nxt)
476 if (dev->priv_flags & IFF_EBRIDGE)