blob: 360ad66c21e95794f1eaa59d2aee599f56f3f39a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Generic parts
3 * Linux ethernet bridge
4 *
5 * Authors:
6 * Lennert Buytenhek <buytenh@gnu.org>
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * 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.
12 */
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
15#include <linux/kernel.h>
16#include <linux/netdevice.h>
17#include <linux/etherdevice.h>
18#include <linux/init.h>
Stephen Hemmingercf0f02d2006-03-20 22:59:06 -080019#include <linux/llc.h>
20#include <net/llc.h>
Patrick McHardy7c85fbf2008-07-05 21:25:56 -070021#include <net/stp.h>
Jiri Pirko3aeb6612015-01-15 23:49:37 +010022#include <net/switchdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include "br_private.h"
25
Cong Wangb1282722014-05-20 17:30:00 -070026/*
27 * Handle changes in state of network devices enslaved to a bridge.
28 *
29 * Note: don't care about up/down if bridge itself is down, because
30 * port state is checked when bridge is brought up.
31 */
32static int br_device_event(struct notifier_block *unused, unsigned long event, void *ptr)
33{
34 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
35 struct net_bridge_port *p;
36 struct net_bridge *br;
Nikolay Aleksandrovfaa1cd82018-05-03 13:47:24 +030037 bool notified = false;
Cong Wangb1282722014-05-20 17:30:00 -070038 bool changed_addr;
39 int err;
40
41 /* register of bridge completed, add sysfs entries */
42 if ((dev->priv_flags & IFF_EBRIDGE) && event == NETDEV_REGISTER) {
43 br_sysfs_addbr(dev);
44 return NOTIFY_DONE;
45 }
46
47 /* not a port of a bridge */
48 p = br_port_get_rtnl(dev);
49 if (!p)
50 return NOTIFY_DONE;
51
52 br = p->br;
53
54 switch (event) {
55 case NETDEV_CHANGEMTU:
Nikolay Aleksandrov804b8542018-03-30 13:46:19 +030056 br_mtu_auto_adjust(br);
Cong Wangb1282722014-05-20 17:30:00 -070057 break;
58
59 case NETDEV_CHANGEADDR:
60 spin_lock_bh(&br->lock);
61 br_fdb_changeaddr(p, dev->dev_addr);
62 changed_addr = br_stp_recalculate_bridge_id(br);
63 spin_unlock_bh(&br->lock);
64
65 if (changed_addr)
66 call_netdevice_notifiers(NETDEV_CHANGEADDR, br->dev);
67
68 break;
69
70 case NETDEV_CHANGE:
Nikolay Aleksandrovfaa1cd82018-05-03 13:47:24 +030071 br_port_carrier_check(p, &notified);
Cong Wangb1282722014-05-20 17:30:00 -070072 break;
73
74 case NETDEV_FEAT_CHANGE:
75 netdev_update_features(br->dev);
76 break;
77
78 case NETDEV_DOWN:
79 spin_lock_bh(&br->lock);
Nikolay Aleksandrovfaa1cd82018-05-03 13:47:24 +030080 if (br->dev->flags & IFF_UP) {
Cong Wangb1282722014-05-20 17:30:00 -070081 br_stp_disable_port(p);
Nikolay Aleksandrovfaa1cd82018-05-03 13:47:24 +030082 notified = true;
83 }
Cong Wangb1282722014-05-20 17:30:00 -070084 spin_unlock_bh(&br->lock);
85 break;
86
87 case NETDEV_UP:
88 if (netif_running(br->dev) && netif_oper_up(dev)) {
89 spin_lock_bh(&br->lock);
90 br_stp_enable_port(p);
Nikolay Aleksandrovfaa1cd82018-05-03 13:47:24 +030091 notified = true;
Cong Wangb1282722014-05-20 17:30:00 -070092 spin_unlock_bh(&br->lock);
93 }
94 break;
95
96 case NETDEV_UNREGISTER:
97 br_del_if(br, dev);
98 break;
99
100 case NETDEV_CHANGENAME:
101 err = br_sysfs_renameif(p);
102 if (err)
103 return notifier_from_errno(err);
104 break;
105
106 case NETDEV_PRE_TYPE_CHANGE:
107 /* Forbid underlaying device to change its type. */
108 return NOTIFY_BAD;
109
110 case NETDEV_RESEND_IGMP:
111 /* Propagate to master device */
112 call_netdevice_notifiers(event, br->dev);
113 break;
114 }
115
116 /* Events that may cause spanning tree to refresh */
Nikolay Aleksandrovfaa1cd82018-05-03 13:47:24 +0300117 if (!notified && (event == NETDEV_CHANGEADDR || event == NETDEV_UP ||
118 event == NETDEV_CHANGE || event == NETDEV_DOWN))
Nikolay Aleksandrov92899062017-11-01 12:18:13 +0200119 br_ifinfo_notify(RTM_NEWLINK, NULL, p);
Cong Wangb1282722014-05-20 17:30:00 -0700120
121 return NOTIFY_DONE;
122}
123
124static struct notifier_block br_device_notifier = {
125 .notifier_call = br_device_event
126};
127
Arkadi Sharshevsky0baa10f2017-06-08 08:44:12 +0200128/* called with RTNL or RCU */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700129static int br_switchdev_event(struct notifier_block *unused,
130 unsigned long event, void *ptr)
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100131{
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700132 struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100133 struct net_bridge_port *p;
134 struct net_bridge *br;
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700135 struct switchdev_notifier_fdb_info *fdb_info;
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100136 int err = NOTIFY_DONE;
137
Arkadi Sharshevsky0baa10f2017-06-08 08:44:12 +0200138 p = br_port_get_rtnl_rcu(dev);
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100139 if (!p)
140 goto out;
141
142 br = p->br;
143
144 switch (event) {
Arkadi Sharshevsky6b26b512017-06-08 08:44:14 +0200145 case SWITCHDEV_FDB_ADD_TO_BRIDGE:
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100146 fdb_info = ptr;
147 err = br_fdb_external_learn_add(br, p, fdb_info->addr,
Petr Machata161d82d2018-05-03 14:43:53 +0200148 fdb_info->vid, false);
Arkadi Sharshevsky9fe8bce2017-06-08 08:44:15 +0200149 if (err) {
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100150 err = notifier_from_errno(err);
Arkadi Sharshevsky9fe8bce2017-06-08 08:44:15 +0200151 break;
152 }
153 br_fdb_offloaded_set(br, p, fdb_info->addr,
Ido Schimmele9ba0fb2018-10-17 08:53:29 +0000154 fdb_info->vid, true);
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100155 break;
Arkadi Sharshevsky6b26b512017-06-08 08:44:14 +0200156 case SWITCHDEV_FDB_DEL_TO_BRIDGE:
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100157 fdb_info = ptr;
158 err = br_fdb_external_learn_del(br, p, fdb_info->addr,
Petr Machata161d82d2018-05-03 14:43:53 +0200159 fdb_info->vid, false);
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100160 if (err)
161 err = notifier_from_errno(err);
162 break;
Arkadi Sharshevsky9fe8bce2017-06-08 08:44:15 +0200163 case SWITCHDEV_FDB_OFFLOADED:
164 fdb_info = ptr;
165 br_fdb_offloaded_set(br, p, fdb_info->addr,
Ido Schimmele9ba0fb2018-10-17 08:53:29 +0000166 fdb_info->vid, fdb_info->offloaded);
Arkadi Sharshevsky9fe8bce2017-06-08 08:44:15 +0200167 break;
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100168 }
169
170out:
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100171 return err;
172}
173
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700174static struct notifier_block br_switchdev_notifier = {
175 .notifier_call = br_switchdev_event,
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100176};
177
Nikolay Aleksandrovae757672018-09-26 17:01:00 +0300178void br_opt_toggle(struct net_bridge *br, enum net_bridge_opts opt, bool on)
179{
180 bool cur = !!br_opt_get(br, opt);
181
182 br_debug(br, "toggle option: %d state: %d -> %d\n",
183 opt, cur, on);
184
185 if (cur == on)
186 return;
187
188 if (on)
189 set_bit(opt, &br->options);
190 else
191 clear_bit(opt, &br->options);
192}
193
WANG Congb86f81cc2014-01-10 13:58:47 -0800194static void __net_exit br_net_exit(struct net *net)
195{
196 struct net_device *dev;
197 LIST_HEAD(list);
198
199 rtnl_lock();
200 for_each_netdev(net, dev)
201 if (dev->priv_flags & IFF_EBRIDGE)
202 br_dev_delete(dev, &list);
203
204 unregister_netdevice_many(&list);
205 rtnl_unlock();
206
207}
Stephen Hemmingercf0f02d2006-03-20 22:59:06 -0800208
Alexey Dobriyan712d6952008-09-08 16:20:18 -0700209static struct pernet_operations br_net_ops = {
210 .exit = br_net_exit,
211};
212
WANG Congb86f81cc2014-01-10 13:58:47 -0800213static const struct stp_proto br_stp_proto = {
214 .rcv = br_stp_rcv,
215};
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217static int __init br_init(void)
218{
Stephen Hemmingerc0909712006-05-25 15:59:33 -0700219 int err;
220
Florian Westphal71e168b12015-03-03 13:53:31 +0100221 BUILD_BUG_ON(sizeof(struct br_input_skb_cb) > FIELD_SIZEOF(struct sk_buff, cb));
222
Patrick McHardy7c85fbf2008-07-05 21:25:56 -0700223 err = stp_proto_register(&br_stp_proto);
224 if (err < 0) {
stephen hemminger28a16c92010-05-10 09:31:09 +0000225 pr_err("bridge: can't register sap for STP\n");
Patrick McHardy7c85fbf2008-07-05 21:25:56 -0700226 return err;
Stephen Hemmingercf0f02d2006-03-20 22:59:06 -0800227 }
228
Akinobu Mita87a596e2007-04-07 18:57:07 +0900229 err = br_fdb_init();
230 if (err)
Pavel Emelyanov17efdd42007-11-29 23:41:43 +1100231 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Alexey Dobriyan712d6952008-09-08 16:20:18 -0700233 err = register_pernet_subsys(&br_net_ops);
Stephen Hemmingerc0909712006-05-25 15:59:33 -0700234 if (err)
235 goto err_out1;
236
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +0200237 err = br_nf_core_init();
Stephen Hemmingerc0909712006-05-25 15:59:33 -0700238 if (err)
239 goto err_out2;
240
Alexey Dobriyan712d6952008-09-08 16:20:18 -0700241 err = register_netdevice_notifier(&br_device_notifier);
Thomas Graf32fe21c2007-03-22 11:59:03 -0700242 if (err)
243 goto err_out3;
244
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700245 err = register_switchdev_notifier(&br_switchdev_notifier);
Alexey Dobriyan712d6952008-09-08 16:20:18 -0700246 if (err)
247 goto err_out4;
248
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100249 err = br_netlink_init();
250 if (err)
251 goto err_out5;
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 brioctl_set(br_ioctl_deviceless_stub);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Igor Maraviće6373c42011-12-12 02:58:25 +0000255#if IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +0000256 br_fdb_test_addr_hook = br_fdb_test_addr;
257#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Stefan Agnerd4ef9f72016-09-28 15:05:28 -0700259#if IS_MODULE(CONFIG_BRIDGE_NETFILTER)
260 pr_info("bridge: filtering via arp/ip/ip6tables is no longer available "
261 "by default. Update your scripts to load br_netfilter if you "
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +0200262 "need this.\n");
Stefan Agnerd4ef9f72016-09-28 15:05:28 -0700263#endif
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +0200264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return 0;
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +0200266
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100267err_out5:
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700268 unregister_switchdev_notifier(&br_switchdev_notifier);
Alexey Dobriyan712d6952008-09-08 16:20:18 -0700269err_out4:
Thomas Graf32fe21c2007-03-22 11:59:03 -0700270 unregister_netdevice_notifier(&br_device_notifier);
Alexey Dobriyan712d6952008-09-08 16:20:18 -0700271err_out3:
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +0200272 br_nf_core_fini();
Alexey Dobriyan712d6952008-09-08 16:20:18 -0700273err_out2:
274 unregister_pernet_subsys(&br_net_ops);
Stephen Hemmingerc0909712006-05-25 15:59:33 -0700275err_out1:
Pavel Emelyanov17efdd42007-11-29 23:41:43 +1100276 br_fdb_fini();
277err_out:
Patrick McHardy7c85fbf2008-07-05 21:25:56 -0700278 stp_proto_unregister(&br_stp_proto);
Stephen Hemmingerc0909712006-05-25 15:59:33 -0700279 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
282static void __exit br_deinit(void)
283{
Patrick McHardy7c85fbf2008-07-05 21:25:56 -0700284 stp_proto_unregister(&br_stp_proto);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700285 br_netlink_fini();
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700286 unregister_switchdev_notifier(&br_switchdev_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 unregister_netdevice_notifier(&br_device_notifier);
288 brioctl_set(NULL);
Alexey Dobriyan712d6952008-09-08 16:20:18 -0700289 unregister_pernet_subsys(&br_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Jesper Dangaard Brouer473c22d2009-06-26 10:45:48 +0000291 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +0200293 br_nf_core_fini();
Igor Maraviće6373c42011-12-12 02:58:25 +0000294#if IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +0000295 br_fdb_test_addr_hook = NULL;
296#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 br_fdb_fini();
298}
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300module_init(br_init)
301module_exit(br_deinit)
302MODULE_LICENSE("GPL");
Stephen Hemminger8cbb512e2005-12-21 19:01:30 -0800303MODULE_VERSION(BR_VERSION);
stephen hemmingerbb900b22011-04-04 14:03:32 +0000304MODULE_ALIAS_RTNL_LINK("bridge");