blob: b0a0b82e2d91017ff5aa00ab40649764e895cba7 [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,
154 fdb_info->vid);
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,
166 fdb_info->vid);
167 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
WANG Congb86f81cc2014-01-10 13:58:47 -0800178static void __net_exit br_net_exit(struct net *net)
179{
180 struct net_device *dev;
181 LIST_HEAD(list);
182
183 rtnl_lock();
184 for_each_netdev(net, dev)
185 if (dev->priv_flags & IFF_EBRIDGE)
186 br_dev_delete(dev, &list);
187
188 unregister_netdevice_many(&list);
189 rtnl_unlock();
190
191}
Stephen Hemmingercf0f02d2006-03-20 22:59:06 -0800192
Alexey Dobriyan712d6952008-09-08 16:20:18 -0700193static struct pernet_operations br_net_ops = {
194 .exit = br_net_exit,
195};
196
WANG Congb86f81cc2014-01-10 13:58:47 -0800197static const struct stp_proto br_stp_proto = {
198 .rcv = br_stp_rcv,
199};
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201static int __init br_init(void)
202{
Stephen Hemmingerc0909712006-05-25 15:59:33 -0700203 int err;
204
Florian Westphal71e168b12015-03-03 13:53:31 +0100205 BUILD_BUG_ON(sizeof(struct br_input_skb_cb) > FIELD_SIZEOF(struct sk_buff, cb));
206
Patrick McHardy7c85fbf2008-07-05 21:25:56 -0700207 err = stp_proto_register(&br_stp_proto);
208 if (err < 0) {
stephen hemminger28a16c92010-05-10 09:31:09 +0000209 pr_err("bridge: can't register sap for STP\n");
Patrick McHardy7c85fbf2008-07-05 21:25:56 -0700210 return err;
Stephen Hemmingercf0f02d2006-03-20 22:59:06 -0800211 }
212
Akinobu Mita87a596e2007-04-07 18:57:07 +0900213 err = br_fdb_init();
214 if (err)
Pavel Emelyanov17efdd42007-11-29 23:41:43 +1100215 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Alexey Dobriyan712d6952008-09-08 16:20:18 -0700217 err = register_pernet_subsys(&br_net_ops);
Stephen Hemmingerc0909712006-05-25 15:59:33 -0700218 if (err)
219 goto err_out1;
220
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +0200221 err = br_nf_core_init();
Stephen Hemmingerc0909712006-05-25 15:59:33 -0700222 if (err)
223 goto err_out2;
224
Alexey Dobriyan712d6952008-09-08 16:20:18 -0700225 err = register_netdevice_notifier(&br_device_notifier);
Thomas Graf32fe21c2007-03-22 11:59:03 -0700226 if (err)
227 goto err_out3;
228
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700229 err = register_switchdev_notifier(&br_switchdev_notifier);
Alexey Dobriyan712d6952008-09-08 16:20:18 -0700230 if (err)
231 goto err_out4;
232
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100233 err = br_netlink_init();
234 if (err)
235 goto err_out5;
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 brioctl_set(br_ioctl_deviceless_stub);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Igor Maraviće6373c42011-12-12 02:58:25 +0000239#if IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +0000240 br_fdb_test_addr_hook = br_fdb_test_addr;
241#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Stefan Agnerd4ef9f72016-09-28 15:05:28 -0700243#if IS_MODULE(CONFIG_BRIDGE_NETFILTER)
244 pr_info("bridge: filtering via arp/ip/ip6tables is no longer available "
245 "by default. Update your scripts to load br_netfilter if you "
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +0200246 "need this.\n");
Stefan Agnerd4ef9f72016-09-28 15:05:28 -0700247#endif
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +0200248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return 0;
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +0200250
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100251err_out5:
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700252 unregister_switchdev_notifier(&br_switchdev_notifier);
Alexey Dobriyan712d6952008-09-08 16:20:18 -0700253err_out4:
Thomas Graf32fe21c2007-03-22 11:59:03 -0700254 unregister_netdevice_notifier(&br_device_notifier);
Alexey Dobriyan712d6952008-09-08 16:20:18 -0700255err_out3:
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +0200256 br_nf_core_fini();
Alexey Dobriyan712d6952008-09-08 16:20:18 -0700257err_out2:
258 unregister_pernet_subsys(&br_net_ops);
Stephen Hemmingerc0909712006-05-25 15:59:33 -0700259err_out1:
Pavel Emelyanov17efdd42007-11-29 23:41:43 +1100260 br_fdb_fini();
261err_out:
Patrick McHardy7c85fbf2008-07-05 21:25:56 -0700262 stp_proto_unregister(&br_stp_proto);
Stephen Hemmingerc0909712006-05-25 15:59:33 -0700263 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
266static void __exit br_deinit(void)
267{
Patrick McHardy7c85fbf2008-07-05 21:25:56 -0700268 stp_proto_unregister(&br_stp_proto);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700269 br_netlink_fini();
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700270 unregister_switchdev_notifier(&br_switchdev_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 unregister_netdevice_notifier(&br_device_notifier);
272 brioctl_set(NULL);
Alexey Dobriyan712d6952008-09-08 16:20:18 -0700273 unregister_pernet_subsys(&br_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Jesper Dangaard Brouer473c22d2009-06-26 10:45:48 +0000275 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +0200277 br_nf_core_fini();
Igor Maraviće6373c42011-12-12 02:58:25 +0000278#if IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +0000279 br_fdb_test_addr_hook = NULL;
280#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 br_fdb_fini();
282}
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284module_init(br_init)
285module_exit(br_deinit)
286MODULE_LICENSE("GPL");
Stephen Hemminger8cbb512e2005-12-21 19:01:30 -0800287MODULE_VERSION(BR_VERSION);
stephen hemmingerbb900b22011-04-04 14:03:32 +0000288MODULE_ALIAS_RTNL_LINK("bridge");