GNU Linux-libre 5.4.257-gnu1
[releases.git] / net / bridge / br.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  *      Generic parts
4  *      Linux ethernet bridge
5  *
6  *      Authors:
7  *      Lennert Buytenhek               <buytenh@gnu.org>
8  */
9
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>
16 #include <net/llc.h>
17 #include <net/stp.h>
18 #include <net/switchdev.h>
19
20 #include "br_private.h"
21
22 /*
23  * Handle changes in state of network devices enslaved to a bridge.
24  *
25  * Note: don't care about up/down if bridge itself is down, because
26  *     port state is checked when bridge is brought up.
27  */
28 static int br_device_event(struct notifier_block *unused, unsigned long event, void *ptr)
29 {
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;
36         bool changed_addr;
37         int err;
38
39         if (dev->priv_flags & IFF_EBRIDGE) {
40                 err = br_vlan_bridge_event(dev, event, ptr);
41                 if (err)
42                         return notifier_from_errno(err);
43
44                 if (event == NETDEV_REGISTER) {
45                         /* register of bridge completed, add sysfs entries */
46                         err = br_sysfs_addbr(dev);
47                         if (err)
48                                 return notifier_from_errno(err);
49
50                         return NOTIFY_DONE;
51                 }
52         }
53
54         /* not a port of a bridge */
55         p = br_port_get_rtnl(dev);
56         if (!p)
57                 return NOTIFY_DONE;
58
59         br = p->br;
60
61         switch (event) {
62         case NETDEV_CHANGEMTU:
63                 br_mtu_auto_adjust(br);
64                 break;
65
66         case NETDEV_PRE_CHANGEADDR:
67                 if (br->dev->addr_assign_type == NET_ADDR_SET)
68                         break;
69                 prechaddr_info = ptr;
70                 err = dev_pre_changeaddr_notify(br->dev,
71                                                 prechaddr_info->dev_addr,
72                                                 extack);
73                 if (err)
74                         return notifier_from_errno(err);
75                 break;
76
77         case NETDEV_CHANGEADDR:
78                 spin_lock_bh(&br->lock);
79                 br_fdb_changeaddr(p, dev->dev_addr);
80                 changed_addr = br_stp_recalculate_bridge_id(br);
81                 spin_unlock_bh(&br->lock);
82
83                 if (changed_addr)
84                         call_netdevice_notifiers(NETDEV_CHANGEADDR, br->dev);
85
86                 break;
87
88         case NETDEV_CHANGE:
89                 br_port_carrier_check(p, &notified);
90                 break;
91
92         case NETDEV_FEAT_CHANGE:
93                 netdev_update_features(br->dev);
94                 break;
95
96         case NETDEV_DOWN:
97                 spin_lock_bh(&br->lock);
98                 if (br->dev->flags & IFF_UP) {
99                         br_stp_disable_port(p);
100                         notified = true;
101                 }
102                 spin_unlock_bh(&br->lock);
103                 break;
104
105         case NETDEV_UP:
106                 if (netif_running(br->dev) && netif_oper_up(dev)) {
107                         spin_lock_bh(&br->lock);
108                         br_stp_enable_port(p);
109                         notified = true;
110                         spin_unlock_bh(&br->lock);
111                 }
112                 break;
113
114         case NETDEV_UNREGISTER:
115                 br_del_if(br, dev);
116                 break;
117
118         case NETDEV_CHANGENAME:
119                 err = br_sysfs_renameif(p);
120                 if (err)
121                         return notifier_from_errno(err);
122                 break;
123
124         case NETDEV_PRE_TYPE_CHANGE:
125                 /* Forbid underlaying device to change its type. */
126                 return NOTIFY_BAD;
127
128         case NETDEV_RESEND_IGMP:
129                 /* Propagate to master device */
130                 call_netdevice_notifiers(event, br->dev);
131                 break;
132         }
133
134         if (event != NETDEV_UNREGISTER)
135                 br_vlan_port_event(p, event);
136
137         /* Events that may cause spanning tree to refresh */
138         if (!notified && (event == NETDEV_CHANGEADDR || event == NETDEV_UP ||
139                           event == NETDEV_CHANGE || event == NETDEV_DOWN))
140                 br_ifinfo_notify(RTM_NEWLINK, NULL, p);
141
142         return NOTIFY_DONE;
143 }
144
145 static struct notifier_block br_device_notifier = {
146         .notifier_call = br_device_event
147 };
148
149 /* called with RTNL or RCU */
150 static int br_switchdev_event(struct notifier_block *unused,
151                               unsigned long event, void *ptr)
152 {
153         struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
154         struct net_bridge_port *p;
155         struct net_bridge *br;
156         struct switchdev_notifier_fdb_info *fdb_info;
157         int err = NOTIFY_DONE;
158
159         p = br_port_get_rtnl_rcu(dev);
160         if (!p)
161                 goto out;
162
163         br = p->br;
164
165         switch (event) {
166         case SWITCHDEV_FDB_ADD_TO_BRIDGE:
167                 fdb_info = ptr;
168                 err = br_fdb_external_learn_add(br, p, fdb_info->addr,
169                                                 fdb_info->vid, false);
170                 if (err) {
171                         err = notifier_from_errno(err);
172                         break;
173                 }
174                 br_fdb_offloaded_set(br, p, fdb_info->addr,
175                                      fdb_info->vid, true);
176                 break;
177         case SWITCHDEV_FDB_DEL_TO_BRIDGE:
178                 fdb_info = ptr;
179                 err = br_fdb_external_learn_del(br, p, fdb_info->addr,
180                                                 fdb_info->vid, false);
181                 if (err)
182                         err = notifier_from_errno(err);
183                 break;
184         case SWITCHDEV_FDB_OFFLOADED:
185                 fdb_info = ptr;
186                 br_fdb_offloaded_set(br, p, fdb_info->addr,
187                                      fdb_info->vid, fdb_info->offloaded);
188                 break;
189         }
190
191 out:
192         return err;
193 }
194
195 static struct notifier_block br_switchdev_notifier = {
196         .notifier_call = br_switchdev_event,
197 };
198
199 /* br_boolopt_toggle - change user-controlled boolean option
200  *
201  * @br: bridge device
202  * @opt: id of the option to change
203  * @on: new option value
204  * @extack: extack for error messages
205  *
206  * Changes the value of the respective boolean option to @on taking care of
207  * any internal option value mapping and configuration.
208  */
209 int br_boolopt_toggle(struct net_bridge *br, enum br_boolopt_id opt, bool on,
210                       struct netlink_ext_ack *extack)
211 {
212         switch (opt) {
213         case BR_BOOLOPT_NO_LL_LEARN:
214                 br_opt_toggle(br, BROPT_NO_LL_LEARN, on);
215                 break;
216         default:
217                 /* shouldn't be called with unsupported options */
218                 WARN_ON(1);
219                 break;
220         }
221
222         return 0;
223 }
224
225 int br_boolopt_get(const struct net_bridge *br, enum br_boolopt_id opt)
226 {
227         switch (opt) {
228         case BR_BOOLOPT_NO_LL_LEARN:
229                 return br_opt_get(br, BROPT_NO_LL_LEARN);
230         default:
231                 /* shouldn't be called with unsupported options */
232                 WARN_ON(1);
233                 break;
234         }
235
236         return 0;
237 }
238
239 int br_boolopt_multi_toggle(struct net_bridge *br,
240                             struct br_boolopt_multi *bm,
241                             struct netlink_ext_ack *extack)
242 {
243         unsigned long bitmap = bm->optmask;
244         int err = 0;
245         int opt_id;
246
247         for_each_set_bit(opt_id, &bitmap, BR_BOOLOPT_MAX) {
248                 bool on = !!(bm->optval & BIT(opt_id));
249
250                 err = br_boolopt_toggle(br, opt_id, on, extack);
251                 if (err) {
252                         br_debug(br, "boolopt multi-toggle error: option: %d current: %d new: %d error: %d\n",
253                                  opt_id, br_boolopt_get(br, opt_id), on, err);
254                         break;
255                 }
256         }
257
258         return err;
259 }
260
261 void br_boolopt_multi_get(const struct net_bridge *br,
262                           struct br_boolopt_multi *bm)
263 {
264         u32 optval = 0;
265         int opt_id;
266
267         for (opt_id = 0; opt_id < BR_BOOLOPT_MAX; opt_id++)
268                 optval |= (br_boolopt_get(br, opt_id) << opt_id);
269
270         bm->optval = optval;
271         bm->optmask = GENMASK((BR_BOOLOPT_MAX - 1), 0);
272 }
273
274 /* private bridge options, controlled by the kernel */
275 void br_opt_toggle(struct net_bridge *br, enum net_bridge_opts opt, bool on)
276 {
277         bool cur = !!br_opt_get(br, opt);
278
279         br_debug(br, "toggle option: %d state: %d -> %d\n",
280                  opt, cur, on);
281
282         if (cur == on)
283                 return;
284
285         if (on)
286                 set_bit(opt, &br->options);
287         else
288                 clear_bit(opt, &br->options);
289 }
290
291 static void __net_exit br_net_exit(struct net *net)
292 {
293         struct net_device *dev;
294         LIST_HEAD(list);
295
296         rtnl_lock();
297         for_each_netdev(net, dev)
298                 if (dev->priv_flags & IFF_EBRIDGE)
299                         br_dev_delete(dev, &list);
300
301         unregister_netdevice_many(&list);
302         rtnl_unlock();
303
304 }
305
306 static struct pernet_operations br_net_ops = {
307         .exit   = br_net_exit,
308 };
309
310 static const struct stp_proto br_stp_proto = {
311         .rcv    = br_stp_rcv,
312 };
313
314 static int __init br_init(void)
315 {
316         int err;
317
318         BUILD_BUG_ON(sizeof(struct br_input_skb_cb) > FIELD_SIZEOF(struct sk_buff, cb));
319
320         err = stp_proto_register(&br_stp_proto);
321         if (err < 0) {
322                 pr_err("bridge: can't register sap for STP\n");
323                 return err;
324         }
325
326         err = br_fdb_init();
327         if (err)
328                 goto err_out;
329
330         err = register_pernet_subsys(&br_net_ops);
331         if (err)
332                 goto err_out1;
333
334         err = br_nf_core_init();
335         if (err)
336                 goto err_out2;
337
338         err = register_netdevice_notifier(&br_device_notifier);
339         if (err)
340                 goto err_out3;
341
342         err = register_switchdev_notifier(&br_switchdev_notifier);
343         if (err)
344                 goto err_out4;
345
346         err = br_netlink_init();
347         if (err)
348                 goto err_out5;
349
350         brioctl_set(br_ioctl_deviceless_stub);
351
352 #if IS_ENABLED(CONFIG_ATM_LANE)
353         br_fdb_test_addr_hook = br_fdb_test_addr;
354 #endif
355
356 #if IS_MODULE(CONFIG_BRIDGE_NETFILTER)
357         pr_info("bridge: filtering via arp/ip/ip6tables is no longer available "
358                 "by default. Update your scripts to load br_netfilter if you "
359                 "need this.\n");
360 #endif
361
362         return 0;
363
364 err_out5:
365         unregister_switchdev_notifier(&br_switchdev_notifier);
366 err_out4:
367         unregister_netdevice_notifier(&br_device_notifier);
368 err_out3:
369         br_nf_core_fini();
370 err_out2:
371         unregister_pernet_subsys(&br_net_ops);
372 err_out1:
373         br_fdb_fini();
374 err_out:
375         stp_proto_unregister(&br_stp_proto);
376         return err;
377 }
378
379 static void __exit br_deinit(void)
380 {
381         stp_proto_unregister(&br_stp_proto);
382         br_netlink_fini();
383         unregister_switchdev_notifier(&br_switchdev_notifier);
384         unregister_netdevice_notifier(&br_device_notifier);
385         brioctl_set(NULL);
386         unregister_pernet_subsys(&br_net_ops);
387
388         rcu_barrier(); /* Wait for completion of call_rcu()'s */
389
390         br_nf_core_fini();
391 #if IS_ENABLED(CONFIG_ATM_LANE)
392         br_fdb_test_addr_hook = NULL;
393 #endif
394         br_fdb_fini();
395 }
396
397 module_init(br_init)
398 module_exit(br_deinit)
399 MODULE_LICENSE("GPL");
400 MODULE_VERSION(BR_VERSION);
401 MODULE_ALIAS_RTNL_LINK("bridge");