blob: d174d3a566aae9b6892cee764045148cd2adbf93 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Spanning tree protocol; interface code
4 * Linux ethernet bridge
5 *
6 * Authors:
7 * Lennert Buytenhek <buytenh@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
10#include <linux/kernel.h>
Paul Gortmaker79bb1ee2011-08-29 17:55:05 -040011#include <linux/kmod.h>
Stephen Hemminger6ede2462005-10-25 15:04:59 -070012#include <linux/etherdevice.h>
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070013#include <linux/rtnetlink.h>
Elad Raz6ac311a2015-10-19 15:37:25 +030014#include <net/switchdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include "br_private.h"
17#include "br_private_stp.h"
18
19
20/* Port id is composed of priority and port number.
stephen hemminger14f98f22011-04-04 14:03:33 +000021 * NB: some bits of priority are dropped to
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * make room for more ports.
23 */
24static inline port_id br_make_port_id(__u8 priority, __u16 port_no)
25{
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090026 return ((u16)priority << BR_PORT_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 | (port_no & ((1<<BR_PORT_BITS)-1));
28}
29
stephen hemminger14f98f22011-04-04 14:03:33 +000030#define BR_MAX_PORT_PRIORITY ((u16)~0 >> BR_PORT_BITS)
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032/* called under bridge lock */
33void br_init_port(struct net_bridge_port *p)
34{
Elad Raz6ac311a2015-10-19 15:37:25 +030035 int err;
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 p->port_id = br_make_port_id(p->priority, p->port_no);
38 br_become_designated_port(p);
Florian Fainelli775dd692014-09-30 16:13:19 -070039 br_set_state(p, BR_STATE_BLOCKING);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 p->topology_change_ack = 0;
41 p->config_pending = 0;
Elad Raz6ac311a2015-10-19 15:37:25 +030042
Vivien Didelot82dd4332016-12-10 13:44:27 -050043 err = __set_ageing_time(p->dev, p->br->ageing_time);
44 if (err)
45 netdev_err(p->dev, "failed to offload ageing time\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070046}
47
Vivien Didelotdba479f2016-07-21 12:42:10 -040048/* NO locks held */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049void br_stp_enable_bridge(struct net_bridge *br)
50{
51 struct net_bridge_port *p;
52
53 spin_lock_bh(&br->lock);
Nikolay Aleksandrov76b91c32015-07-23 11:01:05 -070054 if (br->stp_enabled == BR_KERNEL_STP)
55 mod_timer(&br->hello_timer, jiffies + br->hello_time);
Nikolay Aleksandrovf7cdee82017-02-04 18:05:07 +010056 mod_delayed_work(system_long_wq, &br->gc_work, HZ / 10);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 br_config_bpdu_generation(br);
59
60 list_for_each_entry(p, &br->port_list, list) {
stephen hemminger576eb622012-12-28 18:15:22 +000061 if (netif_running(p->dev) && netif_oper_up(p->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 br_stp_enable_port(p);
63
64 }
65 spin_unlock_bh(&br->lock);
66}
67
68/* NO locks held */
69void br_stp_disable_bridge(struct net_bridge *br)
70{
71 struct net_bridge_port *p;
72
Adrian Drzewiecki78872cc2006-02-15 01:47:48 -080073 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 list_for_each_entry(p, &br->port_list, list) {
75 if (p->state != BR_STATE_DISABLED)
76 br_stp_disable_port(p);
77
78 }
79
Vivien Didelot8384b5f2016-12-10 13:44:28 -050080 __br_set_topology_change(br, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 br->topology_change_detected = 0;
Adrian Drzewiecki78872cc2006-02-15 01:47:48 -080082 spin_unlock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 del_timer_sync(&br->hello_timer);
85 del_timer_sync(&br->topology_change_timer);
86 del_timer_sync(&br->tcn_timer);
Nikolay Aleksandrovf7cdee82017-02-04 18:05:07 +010087 cancel_delayed_work_sync(&br->gc_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
90/* called under bridge lock */
91void br_stp_enable_port(struct net_bridge_port *p)
92{
93 br_init_port(p);
94 br_port_state_selection(p->br);
Nikolay Aleksandrov92899062017-11-01 12:18:13 +020095 br_ifinfo_notify(RTM_NEWLINK, NULL, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
98/* called under bridge lock */
99void br_stp_disable_port(struct net_bridge_port *p)
100{
stephen hemminger28a16c92010-05-10 09:31:09 +0000101 struct net_bridge *br = p->br;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 int wasroot;
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 wasroot = br_is_root_bridge(br);
105 br_become_designated_port(p);
Florian Fainelli775dd692014-09-30 16:13:19 -0700106 br_set_state(p, BR_STATE_DISABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 p->topology_change_ack = 0;
108 p->config_pending = 0;
109
Nikolay Aleksandrov92899062017-11-01 12:18:13 +0200110 br_ifinfo_notify(RTM_NEWLINK, NULL, p);
stephen hemminger4ecb9612011-07-22 07:47:09 +0000111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 del_timer(&p->message_age_timer);
113 del_timer(&p->forward_delay_timer);
114 del_timer(&p->hold_timer);
115
Nikolay Aleksandrov8dc35022019-04-03 13:49:24 +0300116 if (!rcu_access_pointer(p->backup_port))
117 br_fdb_delete_by_port(br, p, 0, 0);
Herbert Xu3fe2d7c2010-02-28 00:49:38 -0800118 br_multicast_disable_port(p);
Stephen Hemminger1a620692006-10-12 14:45:38 -0700119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 br_configuration_update(br);
121
122 br_port_state_selection(br);
123
124 if (br_is_root_bridge(br) && !wasroot)
125 br_become_root_bridge(br);
126}
127
Vivien Didelot30843312016-09-08 12:50:43 -0400128static int br_stp_call_user(struct net_bridge *br, char *arg)
129{
130 char *argv[] = { BR_STP_PROG, br->dev->name, arg, NULL };
131 char *envp[] = { NULL };
132 int rc;
133
134 /* call userspace STP and report program errors */
135 rc = call_usermodehelper(BR_STP_PROG, argv, envp, UMH_WAIT_PROC);
136 if (rc > 0) {
137 if (rc & 0xff)
138 br_debug(br, BR_STP_PROG " received signal %d\n",
139 rc & 0x7f);
140 else
141 br_debug(br, BR_STP_PROG " exited with code %d\n",
142 (rc >> 8) & 0xff);
143 }
144
145 return rc;
146}
147
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700148static void br_stp_start(struct net_bridge *br)
149{
Vivien Didelot30843312016-09-08 12:50:43 -0400150 int err = -ENOENT;
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700151
Hannes Frederic Sowaff621982016-01-05 10:46:00 +0100152 if (net_eq(dev_net(br->dev), &init_net))
Vivien Didelot30843312016-09-08 12:50:43 -0400153 err = br_stp_call_user(br, "start");
154
155 if (err && err != -ENOENT)
156 br_err(br, "failed to start userspace STP (%d)\n", err);
Herbert Xube4f1542013-09-12 17:12:05 +1000157
158 spin_lock_bh(&br->lock);
159
160 if (br->bridge_forward_delay < BR_MIN_FORWARD_DELAY)
161 __br_set_forward_delay(br, BR_MIN_FORWARD_DELAY);
Vlad Yasevich4b6c7872013-10-15 14:57:45 -0400162 else if (br->bridge_forward_delay > BR_MAX_FORWARD_DELAY)
Herbert Xube4f1542013-09-12 17:12:05 +1000163 __br_set_forward_delay(br, BR_MAX_FORWARD_DELAY);
164
Vivien Didelot30843312016-09-08 12:50:43 -0400165 if (!err) {
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700166 br->stp_enabled = BR_USER_STP;
stephen hemminger28a16c92010-05-10 09:31:09 +0000167 br_debug(br, "userspace STP started\n");
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700168 } else {
169 br->stp_enabled = BR_KERNEL_STP;
stephen hemminger28a16c92010-05-10 09:31:09 +0000170 br_debug(br, "using kernel STP\n");
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700171
172 /* To start timers on any ports left in blocking */
Nikolay Aleksandrovaeb07322017-06-01 18:07:55 +0300173 if (br->dev->flags & IFF_UP)
174 mod_timer(&br->hello_timer, jiffies + br->hello_time);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700175 br_port_state_selection(br);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700176 }
Herbert Xube4f1542013-09-12 17:12:05 +1000177
178 spin_unlock_bh(&br->lock);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700179}
180
181static void br_stp_stop(struct net_bridge *br)
182{
Vivien Didelot30843312016-09-08 12:50:43 -0400183 int err;
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700184
185 if (br->stp_enabled == BR_USER_STP) {
Vivien Didelot30843312016-09-08 12:50:43 -0400186 err = br_stp_call_user(br, "stop");
187 if (err)
188 br_err(br, "failed to stop userspace STP (%d)\n", err);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700189
190 /* To start timers on any ports left in blocking */
191 spin_lock_bh(&br->lock);
192 br_port_state_selection(br);
193 spin_unlock_bh(&br->lock);
194 }
195
196 br->stp_enabled = BR_NO_STP;
197}
198
199void br_stp_set_enabled(struct net_bridge *br, unsigned long val)
200{
201 ASSERT_RTNL();
202
203 if (val) {
204 if (br->stp_enabled == BR_NO_STP)
205 br_stp_start(br);
206 } else {
207 if (br->stp_enabled != BR_NO_STP)
208 br_stp_stop(br);
209 }
210}
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212/* called under bridge lock */
Stephen Hemminger4505a3e2005-12-21 18:51:49 -0800213void br_stp_change_bridge_id(struct net_bridge *br, const unsigned char *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000215 /* should be aligned on 2 bytes for ether_addr_equal() */
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700216 unsigned short oldaddr_aligned[ETH_ALEN >> 1];
217 unsigned char *oldaddr = (unsigned char *)oldaddr_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 struct net_bridge_port *p;
219 int wasroot;
220
221 wasroot = br_is_root_bridge(br);
222
Toshiaki Makitaa4b816d2014-02-07 16:48:21 +0900223 br_fdb_change_mac_address(br, addr);
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 memcpy(oldaddr, br->bridge_id.addr, ETH_ALEN);
226 memcpy(br->bridge_id.addr, addr, ETH_ALEN);
227 memcpy(br->dev->dev_addr, addr, ETH_ALEN);
228
229 list_for_each_entry(p, &br->port_list, list) {
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000230 if (ether_addr_equal(p->designated_bridge.addr, oldaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 memcpy(p->designated_bridge.addr, addr, ETH_ALEN);
232
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000233 if (ether_addr_equal(p->designated_root.addr, oldaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 memcpy(p->designated_root.addr, addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236
237 br_configuration_update(br);
238 br_port_state_selection(br);
239 if (br_is_root_bridge(br) && !wasroot)
240 br_become_root_bridge(br);
241}
242
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000243/* should be aligned on 2 bytes for ether_addr_equal() */
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700244static const unsigned short br_mac_zero_aligned[ETH_ALEN >> 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246/* called under bridge lock */
stephen hemmingeredf947f2011-03-24 13:24:01 +0000247bool br_stp_recalculate_bridge_id(struct net_bridge *br)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700249 const unsigned char *br_mac_zero =
250 (const unsigned char *)br_mac_zero_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 const unsigned char *addr = br_mac_zero;
252 struct net_bridge_port *p;
253
Stephen Hemminger92c05742008-06-17 16:10:06 -0700254 /* user has chosen a value so keep it */
Jiri Pirkob2748262013-02-10 11:41:01 +0000255 if (br->dev->addr_assign_type == NET_ADDR_SET)
Balaji G1459a3c2011-03-29 06:20:04 +0000256 return false;
Stephen Hemminger92c05742008-06-17 16:10:06 -0700257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 list_for_each_entry(p, &br->port_list, list) {
259 if (addr == br_mac_zero ||
Stephen Hemminger554c9a82006-01-03 14:35:54 -0800260 memcmp(p->dev->dev_addr, addr, ETH_ALEN) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 addr = p->dev->dev_addr;
262
263 }
264
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000265 if (ether_addr_equal(br->bridge_id.addr, addr))
stephen hemmingeredf947f2011-03-24 13:24:01 +0000266 return false; /* no change */
267
268 br_stp_change_bridge_id(br, addr);
269 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
Nikolay Aleksandrov2dab80a2015-06-15 20:28:51 +0300272/* Acquires and releases bridge lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273void br_stp_set_bridge_priority(struct net_bridge *br, u16 newprio)
274{
275 struct net_bridge_port *p;
276 int wasroot;
277
Nikolay Aleksandrov2dab80a2015-06-15 20:28:51 +0300278 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 wasroot = br_is_root_bridge(br);
280
281 list_for_each_entry(p, &br->port_list, list) {
282 if (p->state != BR_STATE_DISABLED &&
283 br_is_designated_port(p)) {
284 p->designated_bridge.prio[0] = (newprio >> 8) & 0xFF;
285 p->designated_bridge.prio[1] = newprio & 0xFF;
286 }
287
288 }
289
290 br->bridge_id.prio[0] = (newprio >> 8) & 0xFF;
291 br->bridge_id.prio[1] = newprio & 0xFF;
292 br_configuration_update(br);
293 br_port_state_selection(br);
294 if (br_is_root_bridge(br) && !wasroot)
295 br_become_root_bridge(br);
Nikolay Aleksandrov2dab80a2015-06-15 20:28:51 +0300296 spin_unlock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
299/* called under bridge lock */
stephen hemminger14f98f22011-04-04 14:03:33 +0000300int br_stp_set_port_priority(struct net_bridge_port *p, unsigned long newprio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
stephen hemminger14f98f22011-04-04 14:03:33 +0000302 port_id new_port_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
stephen hemminger14f98f22011-04-04 14:03:33 +0000304 if (newprio > BR_MAX_PORT_PRIORITY)
305 return -ERANGE;
306
307 new_port_id = br_make_port_id(newprio, p->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if (br_is_designated_port(p))
309 p->designated_port = new_port_id;
310
311 p->port_id = new_port_id;
312 p->priority = newprio;
313 if (!memcmp(&p->br->bridge_id, &p->designated_bridge, 8) &&
314 p->port_id < p->designated_port) {
315 br_become_designated_port(p);
316 br_port_state_selection(p->br);
317 }
stephen hemminger14f98f22011-04-04 14:03:33 +0000318
319 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
322/* called under bridge lock */
stephen hemminger14f98f22011-04-04 14:03:33 +0000323int br_stp_set_path_cost(struct net_bridge_port *p, unsigned long path_cost)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
stephen hemminger14f98f22011-04-04 14:03:33 +0000325 if (path_cost < BR_MIN_PATH_COST ||
326 path_cost > BR_MAX_PATH_COST)
327 return -ERANGE;
328
stephen hemminger8f3359b2013-04-13 14:06:07 +0000329 p->flags |= BR_ADMIN_COST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 p->path_cost = path_cost;
331 br_configuration_update(p->br);
332 br_port_state_selection(p->br);
stephen hemminger14f98f22011-04-04 14:03:33 +0000333 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
336ssize_t br_show_bridge_id(char *buf, const struct bridge_id *id)
337{
338 return sprintf(buf, "%.2x%.2x.%.2x%.2x%.2x%.2x%.2x%.2x\n",
339 id->prio[0], id->prio[1],
340 id->addr[0], id->addr[1], id->addr[2],
341 id->addr[3], id->addr[4], id->addr[5]);
342}