1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * Linux ethernet bridge
7 * Lennert Buytenhek <buytenh@gnu.org>
10 #include <linux/module.h>
11 #include <linux/kernel.h>
12 #include <linux/netdevice.h>
13 #include <linux/etherdevice.h>
14 #include <linux/init.h>
15 #include <linux/llc.h>
18 #include <net/switchdev.h>
20 #include "br_private.h"
23 * Handle changes in state of network devices enslaved to a bridge.
25 * Note: don't care about up/down if bridge itself is down, because
26 * port state is checked when bridge is brought up.
28 static int br_device_event(struct notifier_block *unused, unsigned long event, void *ptr)
30 struct netlink_ext_ack *extack = netdev_notifier_info_to_extack(ptr);
31 struct netdev_notifier_pre_changeaddr_info *prechaddr_info;
32 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
33 struct net_bridge_port *p;
34 struct net_bridge *br;
35 bool notified = false;
39 if (dev->priv_flags & IFF_EBRIDGE) {
40 if (event == NETDEV_REGISTER) {
41 /* register of bridge completed, add sysfs entries */
45 br_vlan_bridge_event(dev, event, ptr);
48 /* not a port of a bridge */
49 p = br_port_get_rtnl(dev);
56 case NETDEV_CHANGEMTU:
57 br_mtu_auto_adjust(br);
60 case NETDEV_PRE_CHANGEADDR:
61 if (br->dev->addr_assign_type == NET_ADDR_SET)
64 err = dev_pre_changeaddr_notify(br->dev,
65 prechaddr_info->dev_addr,
68 return notifier_from_errno(err);
71 case NETDEV_CHANGEADDR:
72 spin_lock_bh(&br->lock);
73 br_fdb_changeaddr(p, dev->dev_addr);
74 changed_addr = br_stp_recalculate_bridge_id(br);
75 spin_unlock_bh(&br->lock);
78 call_netdevice_notifiers(NETDEV_CHANGEADDR, br->dev);
83 br_port_carrier_check(p, ¬ified);
86 case NETDEV_FEAT_CHANGE:
87 netdev_update_features(br->dev);
91 spin_lock_bh(&br->lock);
92 if (br->dev->flags & IFF_UP) {
93 br_stp_disable_port(p);
96 spin_unlock_bh(&br->lock);
100 if (netif_running(br->dev) && netif_oper_up(dev)) {
101 spin_lock_bh(&br->lock);
102 br_stp_enable_port(p);
104 spin_unlock_bh(&br->lock);
108 case NETDEV_UNREGISTER:
112 case NETDEV_CHANGENAME:
113 err = br_sysfs_renameif(p);
115 return notifier_from_errno(err);
118 case NETDEV_PRE_TYPE_CHANGE:
119 /* Forbid underlaying device to change its type. */
122 case NETDEV_RESEND_IGMP:
123 /* Propagate to master device */
124 call_netdevice_notifiers(event, br->dev);
128 if (event != NETDEV_UNREGISTER)
129 br_vlan_port_event(p, event);
131 /* Events that may cause spanning tree to refresh */
132 if (!notified && (event == NETDEV_CHANGEADDR || event == NETDEV_UP ||
133 event == NETDEV_CHANGE || event == NETDEV_DOWN))
134 br_ifinfo_notify(RTM_NEWLINK, NULL, p);
139 static struct notifier_block br_device_notifier = {
140 .notifier_call = br_device_event
143 /* called with RTNL or RCU */
144 static int br_switchdev_event(struct notifier_block *unused,
145 unsigned long event, void *ptr)
147 struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
148 struct net_bridge_port *p;
149 struct net_bridge *br;
150 struct switchdev_notifier_fdb_info *fdb_info;
151 int err = NOTIFY_DONE;
153 p = br_port_get_rtnl_rcu(dev);
160 case SWITCHDEV_FDB_ADD_TO_BRIDGE:
162 err = br_fdb_external_learn_add(br, p, fdb_info->addr,
163 fdb_info->vid, false);
165 err = notifier_from_errno(err);
168 br_fdb_offloaded_set(br, p, fdb_info->addr,
169 fdb_info->vid, true);
171 case SWITCHDEV_FDB_DEL_TO_BRIDGE:
173 err = br_fdb_external_learn_del(br, p, fdb_info->addr,
174 fdb_info->vid, false);
176 err = notifier_from_errno(err);
178 case SWITCHDEV_FDB_OFFLOADED:
180 br_fdb_offloaded_set(br, p, fdb_info->addr,
181 fdb_info->vid, fdb_info->offloaded);
189 static struct notifier_block br_switchdev_notifier = {
190 .notifier_call = br_switchdev_event,
193 /* br_boolopt_toggle - change user-controlled boolean option
196 * @opt: id of the option to change
197 * @on: new option value
198 * @extack: extack for error messages
200 * Changes the value of the respective boolean option to @on taking care of
201 * any internal option value mapping and configuration.
203 int br_boolopt_toggle(struct net_bridge *br, enum br_boolopt_id opt, bool on,
204 struct netlink_ext_ack *extack)
207 case BR_BOOLOPT_NO_LL_LEARN:
208 br_opt_toggle(br, BROPT_NO_LL_LEARN, on);
211 /* shouldn't be called with unsupported options */
219 int br_boolopt_get(const struct net_bridge *br, enum br_boolopt_id opt)
222 case BR_BOOLOPT_NO_LL_LEARN:
223 return br_opt_get(br, BROPT_NO_LL_LEARN);
225 /* shouldn't be called with unsupported options */
233 int br_boolopt_multi_toggle(struct net_bridge *br,
234 struct br_boolopt_multi *bm,
235 struct netlink_ext_ack *extack)
237 unsigned long bitmap = bm->optmask;
241 for_each_set_bit(opt_id, &bitmap, BR_BOOLOPT_MAX) {
242 bool on = !!(bm->optval & BIT(opt_id));
244 err = br_boolopt_toggle(br, opt_id, on, extack);
246 br_debug(br, "boolopt multi-toggle error: option: %d current: %d new: %d error: %d\n",
247 opt_id, br_boolopt_get(br, opt_id), on, err);
255 void br_boolopt_multi_get(const struct net_bridge *br,
256 struct br_boolopt_multi *bm)
261 for (opt_id = 0; opt_id < BR_BOOLOPT_MAX; opt_id++)
262 optval |= (br_boolopt_get(br, opt_id) << opt_id);
265 bm->optmask = GENMASK((BR_BOOLOPT_MAX - 1), 0);
268 /* private bridge options, controlled by the kernel */
269 void br_opt_toggle(struct net_bridge *br, enum net_bridge_opts opt, bool on)
271 bool cur = !!br_opt_get(br, opt);
273 br_debug(br, "toggle option: %d state: %d -> %d\n",
280 set_bit(opt, &br->options);
282 clear_bit(opt, &br->options);
285 static void __net_exit br_net_exit(struct net *net)
287 struct net_device *dev;
291 for_each_netdev(net, dev)
292 if (dev->priv_flags & IFF_EBRIDGE)
293 br_dev_delete(dev, &list);
295 unregister_netdevice_many(&list);
300 static struct pernet_operations br_net_ops = {
304 static const struct stp_proto br_stp_proto = {
308 static int __init br_init(void)
312 BUILD_BUG_ON(sizeof(struct br_input_skb_cb) > FIELD_SIZEOF(struct sk_buff, cb));
314 err = stp_proto_register(&br_stp_proto);
316 pr_err("bridge: can't register sap for STP\n");
324 err = register_pernet_subsys(&br_net_ops);
328 err = br_nf_core_init();
332 err = register_netdevice_notifier(&br_device_notifier);
336 err = register_switchdev_notifier(&br_switchdev_notifier);
340 err = br_netlink_init();
344 brioctl_set(br_ioctl_deviceless_stub);
346 #if IS_ENABLED(CONFIG_ATM_LANE)
347 br_fdb_test_addr_hook = br_fdb_test_addr;
350 #if IS_MODULE(CONFIG_BRIDGE_NETFILTER)
351 pr_info("bridge: filtering via arp/ip/ip6tables is no longer available "
352 "by default. Update your scripts to load br_netfilter if you "
359 unregister_switchdev_notifier(&br_switchdev_notifier);
361 unregister_netdevice_notifier(&br_device_notifier);
365 unregister_pernet_subsys(&br_net_ops);
369 stp_proto_unregister(&br_stp_proto);
373 static void __exit br_deinit(void)
375 stp_proto_unregister(&br_stp_proto);
377 unregister_switchdev_notifier(&br_switchdev_notifier);
378 unregister_netdevice_notifier(&br_device_notifier);
380 unregister_pernet_subsys(&br_net_ops);
382 rcu_barrier(); /* Wait for completion of call_rcu()'s */
385 #if IS_ENABLED(CONFIG_ATM_LANE)
386 br_fdb_test_addr_hook = NULL;
392 module_exit(br_deinit)
393 MODULE_LICENSE("GPL");
394 MODULE_VERSION(BR_VERSION);
395 MODULE_ALIAS_RTNL_LINK("bridge");