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>
26 #include <linux/if_vlan.h>
28 #include "br_private.h"
31 * Determine initial path cost based on speed.
32 * using recommendations from 802.1d standard
34 * Since driver might sleep need to not be holding any locks.
36 static int port_cost(struct net_device *dev)
38 struct ethtool_cmd ecmd;
40 if (!__ethtool_get_settings(dev, &ecmd)) {
41 switch (ethtool_cmd_speed(&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 */
64 /* Check for port carrier transistions. */
65 void br_port_carrier_check(struct net_bridge_port *p)
67 struct net_device *dev = p->dev;
68 struct net_bridge *br = p->br;
70 if (!(p->flags & BR_ADMIN_COST) &&
71 netif_running(dev) && netif_oper_up(dev))
72 p->path_cost = port_cost(dev);
74 if (!netif_running(br->dev))
77 spin_lock_bh(&br->lock);
78 if (netif_running(dev) && netif_oper_up(dev)) {
79 if (p->state == BR_STATE_DISABLED)
80 br_stp_enable_port(p);
82 if (p->state != BR_STATE_DISABLED)
83 br_stp_disable_port(p);
85 spin_unlock_bh(&br->lock);
88 static void release_nbp(struct kobject *kobj)
90 struct net_bridge_port *p
91 = container_of(kobj, struct net_bridge_port, kobj);
95 static struct kobj_type brport_ktype = {
97 .sysfs_ops = &brport_sysfs_ops,
99 .release = release_nbp,
102 static void destroy_nbp(struct net_bridge_port *p)
104 struct net_device *dev = p->dev;
110 kobject_put(&p->kobj);
113 static void destroy_nbp_rcu(struct rcu_head *head)
115 struct net_bridge_port *p =
116 container_of(head, struct net_bridge_port, rcu);
120 /* Delete port(interface) from bridge is done in two steps.
121 * via RCU. First step, marks device as down. That deletes
122 * all the timers and stops new packets from flowing through.
124 * Final cleanup doesn't occur until after all CPU's finished
125 * processing packets.
127 * Protected from multiple admin operations by RTNL mutex
129 static void del_nbp(struct net_bridge_port *p)
131 struct net_bridge *br = p->br;
132 struct net_device *dev = p->dev;
134 sysfs_remove_link(br->ifobj, p->dev->name);
136 dev_set_promiscuity(dev, -1);
138 spin_lock_bh(&br->lock);
139 br_stp_disable_port(p);
140 spin_unlock_bh(&br->lock);
142 br_ifinfo_notify(RTM_DELLINK, p);
145 br_fdb_delete_by_port(br, p, 1);
147 list_del_rcu(&p->list);
149 dev->priv_flags &= ~IFF_BRIDGE_PORT;
151 netdev_rx_handler_unregister(dev);
153 netdev_upper_dev_unlink(dev, br->dev);
155 br_multicast_del_port(p);
157 kobject_uevent(&p->kobj, KOBJ_REMOVE);
158 kobject_del(&p->kobj);
160 br_netpoll_disable(p);
162 call_rcu(&p->rcu, destroy_nbp_rcu);
165 /* Delete bridge device */
166 void br_dev_delete(struct net_device *dev, struct list_head *head)
168 struct net_bridge *br = netdev_priv(dev);
169 struct net_bridge_port *p, *n;
171 list_for_each_entry_safe(p, n, &br->port_list, list) {
175 del_timer_sync(&br->gc_timer);
177 br_sysfs_delbr(br->dev);
178 unregister_netdevice_queue(br->dev, head);
181 /* find an available port number */
182 static int find_portno(struct net_bridge *br)
185 struct net_bridge_port *p;
186 unsigned long *inuse;
188 inuse = kcalloc(BITS_TO_LONGS(BR_MAX_PORTS), sizeof(unsigned long),
193 set_bit(0, inuse); /* zero is reserved */
194 list_for_each_entry(p, &br->port_list, list) {
195 set_bit(p->port_no, inuse);
197 index = find_first_zero_bit(inuse, BR_MAX_PORTS);
200 return (index >= BR_MAX_PORTS) ? -EXFULL : index;
203 /* called with RTNL but without bridge lock */
204 static struct net_bridge_port *new_nbp(struct net_bridge *br,
205 struct net_device *dev)
208 struct net_bridge_port *p;
210 index = find_portno(br);
212 return ERR_PTR(index);
214 p = kzalloc(sizeof(*p), GFP_KERNEL);
216 return ERR_PTR(-ENOMEM);
221 p->path_cost = port_cost(dev);
222 p->priority = 0x8000 >> BR_PORT_BITS;
224 p->flags = BR_LEARNING | BR_FLOOD;
226 p->state = BR_STATE_DISABLED;
227 br_stp_port_timer_init(p);
228 br_multicast_add_port(p);
233 int br_add_bridge(struct net *net, const char *name)
235 struct net_device *dev;
238 dev = alloc_netdev(sizeof(struct net_bridge), name,
244 dev_net_set(dev, net);
245 dev->rtnl_link_ops = &br_link_ops;
247 res = register_netdev(dev);
253 int br_del_bridge(struct net *net, const char *name)
255 struct net_device *dev;
259 dev = __dev_get_by_name(net, name);
261 ret = -ENXIO; /* Could not find device */
263 else if (!(dev->priv_flags & IFF_EBRIDGE)) {
264 /* Attempt to delete non bridge device! */
268 else if (dev->flags & IFF_UP) {
269 /* Not shutdown yet. */
274 br_dev_delete(dev, NULL);
280 /* MTU of the bridge pseudo-device: ETH_DATA_LEN or the minimum of the ports */
281 int br_min_mtu(const struct net_bridge *br)
283 const struct net_bridge_port *p;
288 if (list_empty(&br->port_list))
291 list_for_each_entry(p, &br->port_list, list) {
292 if (!mtu || p->dev->mtu < mtu)
300 * Recomputes features using slave's features
302 netdev_features_t br_features_recompute(struct net_bridge *br,
303 netdev_features_t features)
305 struct net_bridge_port *p;
306 netdev_features_t mask;
308 if (list_empty(&br->port_list))
312 features &= ~NETIF_F_ONE_FOR_ALL;
314 list_for_each_entry(p, &br->port_list, list) {
315 features = netdev_increment_features(features,
316 p->dev->features, mask);
322 /* called with RTNL */
323 int br_add_if(struct net_bridge *br, struct net_device *dev)
325 struct net_bridge_port *p;
329 /* Don't allow bridging non-ethernet like devices */
330 if ((dev->flags & IFF_LOOPBACK) ||
331 dev->type != ARPHRD_ETHER || dev->addr_len != ETH_ALEN ||
332 !is_valid_ether_addr(dev->dev_addr))
335 /* No bridging of bridges */
336 if (dev->netdev_ops->ndo_start_xmit == br_dev_xmit)
339 /* Device is already being bridged */
340 if (br_port_exists(dev))
343 /* No bridging devices that dislike that (e.g. wireless) */
344 if (dev->priv_flags & IFF_DONT_BRIDGE)
347 p = new_nbp(br, dev);
351 call_netdevice_notifiers(NETDEV_JOIN, dev);
353 err = dev_set_promiscuity(dev, 1);
357 err = kobject_init_and_add(&p->kobj, &brport_ktype, &(dev->dev.kobj),
358 SYSFS_BRIDGE_PORT_ATTR);
362 err = br_sysfs_addif(p);
366 err = br_netpoll_enable(p, GFP_KERNEL);
370 err = netdev_master_upper_dev_link(dev, br->dev);
374 err = netdev_rx_handler_register(dev, br_handle_frame, p);
378 dev->priv_flags |= IFF_BRIDGE_PORT;
380 dev_disable_lro(dev);
382 list_add_rcu(&p->list, &br->port_list);
384 netdev_update_features(br->dev);
386 if (br->dev->needed_headroom < dev->needed_headroom)
387 br->dev->needed_headroom = dev->needed_headroom;
389 spin_lock_bh(&br->lock);
390 changed_addr = br_stp_recalculate_bridge_id(br);
392 if (netif_running(dev) && netif_oper_up(dev) &&
393 (br->dev->flags & IFF_UP))
394 br_stp_enable_port(p);
395 spin_unlock_bh(&br->lock);
397 br_ifinfo_notify(RTM_NEWLINK, p);
400 call_netdevice_notifiers(NETDEV_CHANGEADDR, br->dev);
402 dev_set_mtu(br->dev, br_min_mtu(br));
404 if (br_fdb_insert(br, p, dev->dev_addr, 0))
405 netdev_err(dev, "failed insert local address bridge forwarding table\n");
407 kobject_uevent(&p->kobj, KOBJ_ADD);
412 netdev_upper_dev_unlink(dev, br->dev);
414 br_netpoll_disable(p);
416 sysfs_remove_link(br->ifobj, p->dev->name);
418 kobject_put(&p->kobj);
419 p = NULL; /* kobject_put frees */
421 dev_set_promiscuity(dev, -1);
428 /* called with RTNL */
429 int br_del_if(struct net_bridge *br, struct net_device *dev)
431 struct net_bridge_port *p;
434 p = br_port_get_rtnl(dev);
435 if (!p || p->br != br)
438 /* Since more than one interface can be attached to a bridge,
439 * there still maybe an alternate path for netconsole to use;
440 * therefore there is no reason for a NETDEV_RELEASE event.
444 spin_lock_bh(&br->lock);
445 changed_addr = br_stp_recalculate_bridge_id(br);
446 spin_unlock_bh(&br->lock);
449 call_netdevice_notifiers(NETDEV_CHANGEADDR, br->dev);
451 netdev_update_features(br->dev);
456 void __net_exit br_net_exit(struct net *net)
458 struct net_device *dev;
462 for_each_netdev(net, dev)
463 if (dev->priv_flags & IFF_EBRIDGE)
464 br_dev_delete(dev, &list);
466 unregister_netdevice_many(&list);