3 * Linux ethernet bridge
6 * Lennert Buytenhek <buytenh@gnu.org>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
14 #include <linux/kernel.h>
15 #include <linux/netdevice.h>
16 #include <linux/etherdevice.h>
17 #include <linux/netpoll.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>
24 #include <linux/slab.h>
27 #include "br_private.h"
30 * Determine initial path cost based on speed.
31 * using recommendations from 802.1d standard
33 * Since driver might sleep need to not be holding any locks.
35 static int port_cost(struct net_device *dev)
37 struct ethtool_cmd ecmd;
39 if (!__ethtool_get_settings(dev, &ecmd)) {
40 switch (ethtool_cmd_speed(&ecmd)) {
52 /* Old silly heuristics based on name */
53 if (!strncmp(dev->name, "lec", 3))
56 if (!strncmp(dev->name, "plip", 4))
59 return 100; /* assume old 10Mbps */
63 /* Check for port carrier transistions. */
64 void br_port_carrier_check(struct net_bridge_port *p)
66 struct net_device *dev = p->dev;
67 struct net_bridge *br = p->br;
69 if (netif_running(dev) && netif_carrier_ok(dev))
70 p->path_cost = port_cost(dev);
72 if (!netif_running(br->dev))
75 spin_lock_bh(&br->lock);
76 if (netif_running(dev) && netif_carrier_ok(dev)) {
77 if (p->state == BR_STATE_DISABLED)
78 br_stp_enable_port(p);
80 if (p->state != BR_STATE_DISABLED)
81 br_stp_disable_port(p);
83 spin_unlock_bh(&br->lock);
86 static void release_nbp(struct kobject *kobj)
88 struct net_bridge_port *p
89 = container_of(kobj, struct net_bridge_port, kobj);
93 static struct kobj_type brport_ktype = {
95 .sysfs_ops = &brport_sysfs_ops,
97 .release = release_nbp,
100 static void destroy_nbp(struct net_bridge_port *p)
102 struct net_device *dev = p->dev;
108 kobject_put(&p->kobj);
111 static void destroy_nbp_rcu(struct rcu_head *head)
113 struct net_bridge_port *p =
114 container_of(head, struct net_bridge_port, rcu);
118 /* Delete port(interface) from bridge is done in two steps.
119 * via RCU. First step, marks device as down. That deletes
120 * all the timers and stops new packets from flowing through.
122 * Final cleanup doesn't occur until after all CPU's finished
123 * processing packets.
125 * Protected from multiple admin operations by RTNL mutex
127 static void del_nbp(struct net_bridge_port *p)
129 struct net_bridge *br = p->br;
130 struct net_device *dev = p->dev;
132 sysfs_remove_link(br->ifobj, p->dev->name);
134 dev_set_promiscuity(dev, -1);
136 spin_lock_bh(&br->lock);
137 br_stp_disable_port(p);
138 spin_unlock_bh(&br->lock);
140 br_ifinfo_notify(RTM_DELLINK, p);
142 br_fdb_delete_by_port(br, p, 1);
144 list_del_rcu(&p->list);
146 dev->priv_flags &= ~IFF_BRIDGE_PORT;
148 netdev_rx_handler_unregister(dev);
151 netdev_set_master(dev, NULL);
153 br_multicast_del_port(p);
155 kobject_uevent(&p->kobj, KOBJ_REMOVE);
156 kobject_del(&p->kobj);
158 br_netpoll_disable(p);
160 call_rcu(&p->rcu, destroy_nbp_rcu);
163 /* Delete bridge device */
164 void br_dev_delete(struct net_device *dev, struct list_head *head)
166 struct net_bridge *br = netdev_priv(dev);
167 struct net_bridge_port *p, *n;
169 list_for_each_entry_safe(p, n, &br->port_list, list) {
173 del_timer_sync(&br->gc_timer);
175 br_sysfs_delbr(br->dev);
176 unregister_netdevice_queue(br->dev, head);
179 /* find an available port number */
180 static int find_portno(struct net_bridge *br)
183 struct net_bridge_port *p;
184 unsigned long *inuse;
186 inuse = kcalloc(BITS_TO_LONGS(BR_MAX_PORTS), sizeof(unsigned long),
191 set_bit(0, inuse); /* zero is reserved */
192 list_for_each_entry(p, &br->port_list, list) {
193 set_bit(p->port_no, inuse);
195 index = find_first_zero_bit(inuse, BR_MAX_PORTS);
198 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)
206 struct net_bridge_port *p;
208 index = find_portno(br);
210 return ERR_PTR(index);
212 p = kzalloc(sizeof(*p), GFP_KERNEL);
214 return ERR_PTR(-ENOMEM);
219 p->path_cost = port_cost(dev);
220 p->priority = 0x8000 >> BR_PORT_BITS;
224 p->state = BR_STATE_DISABLED;
225 br_stp_port_timer_init(p);
226 br_multicast_add_port(p);
231 int br_add_bridge(struct net *net, const char *name)
233 struct net_device *dev;
236 dev = alloc_netdev(sizeof(struct net_bridge), name,
242 dev_net_set(dev, net);
243 dev->rtnl_link_ops = &br_link_ops;
245 res = register_netdev(dev);
251 int br_del_bridge(struct net *net, const char *name)
253 struct net_device *dev;
257 dev = __dev_get_by_name(net, name);
259 ret = -ENXIO; /* Could not find device */
261 else if (!(dev->priv_flags & IFF_EBRIDGE)) {
262 /* Attempt to delete non bridge device! */
266 else if (dev->flags & IFF_UP) {
267 /* Not shutdown yet. */
272 br_dev_delete(dev, NULL);
278 /* MTU of the bridge pseudo-device: ETH_DATA_LEN or the minimum of the ports */
279 int br_min_mtu(const struct net_bridge *br)
281 const struct net_bridge_port *p;
286 if (list_empty(&br->port_list))
289 list_for_each_entry(p, &br->port_list, list) {
290 if (!mtu || p->dev->mtu < mtu)
298 * Recomputes features using slave's features
300 netdev_features_t br_features_recompute(struct net_bridge *br,
301 netdev_features_t features)
303 struct net_bridge_port *p;
304 netdev_features_t mask;
306 if (list_empty(&br->port_list))
310 features &= ~NETIF_F_ONE_FOR_ALL;
312 list_for_each_entry(p, &br->port_list, list) {
313 features = netdev_increment_features(features,
314 p->dev->features, mask);
320 /* called with RTNL */
321 int br_add_if(struct net_bridge *br, struct net_device *dev)
323 struct net_bridge_port *p;
327 /* Don't allow bridging non-ethernet like devices */
328 if ((dev->flags & IFF_LOOPBACK) ||
329 dev->type != ARPHRD_ETHER || dev->addr_len != ETH_ALEN ||
330 !is_valid_ether_addr(dev->dev_addr))
333 /* No bridging of bridges */
334 if (dev->netdev_ops->ndo_start_xmit == br_dev_xmit)
337 /* Device is already being bridged */
338 if (br_port_exists(dev))
341 /* No bridging devices that dislike that (e.g. wireless) */
342 if (dev->priv_flags & IFF_DONT_BRIDGE)
345 p = new_nbp(br, dev);
349 call_netdevice_notifiers(NETDEV_JOIN, dev);
351 err = dev_set_promiscuity(dev, 1);
355 err = kobject_init_and_add(&p->kobj, &brport_ktype, &(dev->dev.kobj),
356 SYSFS_BRIDGE_PORT_ATTR);
360 err = br_sysfs_addif(p);
364 if (br_netpoll_info(br) && ((err = br_netpoll_enable(p, GFP_KERNEL))))
367 err = netdev_set_master(dev, br->dev);
371 err = netdev_rx_handler_register(dev, br_handle_frame, p);
375 dev->priv_flags |= IFF_BRIDGE_PORT;
377 dev_disable_lro(dev);
379 list_add_rcu(&p->list, &br->port_list);
381 netdev_update_features(br->dev);
383 spin_lock_bh(&br->lock);
384 changed_addr = br_stp_recalculate_bridge_id(br);
386 if ((dev->flags & IFF_UP) && netif_carrier_ok(dev) &&
387 (br->dev->flags & IFF_UP))
388 br_stp_enable_port(p);
389 spin_unlock_bh(&br->lock);
391 br_ifinfo_notify(RTM_NEWLINK, p);
394 call_netdevice_notifiers(NETDEV_CHANGEADDR, br->dev);
396 dev_set_mtu(br->dev, br_min_mtu(br));
398 if (br_fdb_insert(br, p, dev->dev_addr))
399 netdev_err(dev, "failed insert local address bridge forwarding table\n");
401 kobject_uevent(&p->kobj, KOBJ_ADD);
406 netdev_set_master(dev, NULL);
408 br_netpoll_disable(p);
410 sysfs_remove_link(br->ifobj, p->dev->name);
412 kobject_put(&p->kobj);
413 p = NULL; /* kobject_put frees */
415 dev_set_promiscuity(dev, -1);
422 /* called with RTNL */
423 int br_del_if(struct net_bridge *br, struct net_device *dev)
425 struct net_bridge_port *p;
428 p = br_port_get_rtnl(dev);
429 if (!p || p->br != br)
432 /* Since more than one interface can be attached to a bridge,
433 * there still maybe an alternate path for netconsole to use;
434 * therefore there is no reason for a NETDEV_RELEASE event.
438 spin_lock_bh(&br->lock);
439 changed_addr = br_stp_recalculate_bridge_id(br);
440 spin_unlock_bh(&br->lock);
443 call_netdevice_notifiers(NETDEV_CHANGEADDR, br->dev);
445 netdev_update_features(br->dev);
450 void __net_exit br_net_exit(struct net *net)
452 struct net_device *dev;
456 for_each_netdev(net, dev)
457 if (dev->priv_flags & IFF_EBRIDGE)
458 br_dev_delete(dev, &list);
460 unregister_netdevice_many(&list);