blob: 08341d2aa9c946d7bdd6e0d599e31ba96557a290 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Spanning tree protocol; interface code
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
14#include <linux/kernel.h>
Paul Gortmaker79bb1ee2011-08-29 17:55:05 -040015#include <linux/kmod.h>
Stephen Hemminger6ede2462005-10-25 15:04:59 -070016#include <linux/etherdevice.h>
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070017#include <linux/rtnetlink.h>
Elad Raz6ac311a2015-10-19 15:37:25 +030018#include <net/switchdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include "br_private.h"
21#include "br_private_stp.h"
22
23
24/* Port id is composed of priority and port number.
stephen hemminger14f98f22011-04-04 14:03:33 +000025 * NB: some bits of priority are dropped to
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 * make room for more ports.
27 */
28static inline port_id br_make_port_id(__u8 priority, __u16 port_no)
29{
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090030 return ((u16)priority << BR_PORT_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 | (port_no & ((1<<BR_PORT_BITS)-1));
32}
33
stephen hemminger14f98f22011-04-04 14:03:33 +000034#define BR_MAX_PORT_PRIORITY ((u16)~0 >> BR_PORT_BITS)
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/* called under bridge lock */
37void br_init_port(struct net_bridge_port *p)
38{
Elad Raz6ac311a2015-10-19 15:37:25 +030039 int err;
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 p->port_id = br_make_port_id(p->priority, p->port_no);
42 br_become_designated_port(p);
Florian Fainelli775dd692014-09-30 16:13:19 -070043 br_set_state(p, BR_STATE_BLOCKING);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 p->topology_change_ack = 0;
45 p->config_pending = 0;
Elad Raz6ac311a2015-10-19 15:37:25 +030046
Vivien Didelot82dd4332016-12-10 13:44:27 -050047 err = __set_ageing_time(p->dev, p->br->ageing_time);
48 if (err)
49 netdev_err(p->dev, "failed to offload ageing time\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070050}
51
Vivien Didelotdba479f2016-07-21 12:42:10 -040052/* NO locks held */
Linus Torvalds1da177e2005-04-16 15:20:36 -070053void br_stp_enable_bridge(struct net_bridge *br)
54{
55 struct net_bridge_port *p;
56
57 spin_lock_bh(&br->lock);
Nikolay Aleksandrov76b91c32015-07-23 11:01:05 -070058 if (br->stp_enabled == BR_KERNEL_STP)
59 mod_timer(&br->hello_timer, jiffies + br->hello_time);
Nikolay Aleksandrovf7cdee82017-02-04 18:05:07 +010060 mod_delayed_work(system_long_wq, &br->gc_work, HZ / 10);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 br_config_bpdu_generation(br);
63
64 list_for_each_entry(p, &br->port_list, list) {
stephen hemminger576eb622012-12-28 18:15:22 +000065 if (netif_running(p->dev) && netif_oper_up(p->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 br_stp_enable_port(p);
67
68 }
69 spin_unlock_bh(&br->lock);
70}
71
72/* NO locks held */
73void br_stp_disable_bridge(struct net_bridge *br)
74{
75 struct net_bridge_port *p;
76
Adrian Drzewiecki78872cc2006-02-15 01:47:48 -080077 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 list_for_each_entry(p, &br->port_list, list) {
79 if (p->state != BR_STATE_DISABLED)
80 br_stp_disable_port(p);
81
82 }
83
Vivien Didelot8384b5f2016-12-10 13:44:28 -050084 __br_set_topology_change(br, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 br->topology_change_detected = 0;
Adrian Drzewiecki78872cc2006-02-15 01:47:48 -080086 spin_unlock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 del_timer_sync(&br->hello_timer);
89 del_timer_sync(&br->topology_change_timer);
90 del_timer_sync(&br->tcn_timer);
Nikolay Aleksandrovf7cdee82017-02-04 18:05:07 +010091 cancel_delayed_work_sync(&br->gc_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
94/* called under bridge lock */
95void br_stp_enable_port(struct net_bridge_port *p)
96{
97 br_init_port(p);
98 br_port_state_selection(p->br);
stephen hemminger4ecb9612011-07-22 07:47:09 +000099 br_ifinfo_notify(RTM_NEWLINK, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
102/* called under bridge lock */
103void br_stp_disable_port(struct net_bridge_port *p)
104{
stephen hemminger28a16c92010-05-10 09:31:09 +0000105 struct net_bridge *br = p->br;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 int wasroot;
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 wasroot = br_is_root_bridge(br);
109 br_become_designated_port(p);
Florian Fainelli775dd692014-09-30 16:13:19 -0700110 br_set_state(p, BR_STATE_DISABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 p->topology_change_ack = 0;
112 p->config_pending = 0;
113
stephen hemminger4ecb9612011-07-22 07:47:09 +0000114 br_ifinfo_notify(RTM_NEWLINK, p);
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 del_timer(&p->message_age_timer);
117 del_timer(&p->forward_delay_timer);
118 del_timer(&p->hold_timer);
119
Nikolay Aleksandrov1ea2d022015-06-23 05:28:16 -0700120 br_fdb_delete_by_port(br, p, 0, 0);
Herbert Xu3fe2d7c2010-02-28 00:49:38 -0800121 br_multicast_disable_port(p);
Stephen Hemminger1a620692006-10-12 14:45:38 -0700122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 br_configuration_update(br);
124
125 br_port_state_selection(br);
126
127 if (br_is_root_bridge(br) && !wasroot)
128 br_become_root_bridge(br);
129}
130
Vivien Didelot30843312016-09-08 12:50:43 -0400131static int br_stp_call_user(struct net_bridge *br, char *arg)
132{
133 char *argv[] = { BR_STP_PROG, br->dev->name, arg, NULL };
134 char *envp[] = { NULL };
135 int rc;
136
137 /* call userspace STP and report program errors */
138 rc = call_usermodehelper(BR_STP_PROG, argv, envp, UMH_WAIT_PROC);
139 if (rc > 0) {
140 if (rc & 0xff)
141 br_debug(br, BR_STP_PROG " received signal %d\n",
142 rc & 0x7f);
143 else
144 br_debug(br, BR_STP_PROG " exited with code %d\n",
145 (rc >> 8) & 0xff);
146 }
147
148 return rc;
149}
150
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700151static void br_stp_start(struct net_bridge *br)
152{
Nikolay Aleksandrov76b91c32015-07-23 11:01:05 -0700153 struct net_bridge_port *p;
Vivien Didelot30843312016-09-08 12:50:43 -0400154 int err = -ENOENT;
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700155
Hannes Frederic Sowaff621982016-01-05 10:46:00 +0100156 if (net_eq(dev_net(br->dev), &init_net))
Vivien Didelot30843312016-09-08 12:50:43 -0400157 err = br_stp_call_user(br, "start");
158
159 if (err && err != -ENOENT)
160 br_err(br, "failed to start userspace STP (%d)\n", err);
Herbert Xube4f1542013-09-12 17:12:05 +1000161
162 spin_lock_bh(&br->lock);
163
164 if (br->bridge_forward_delay < BR_MIN_FORWARD_DELAY)
165 __br_set_forward_delay(br, BR_MIN_FORWARD_DELAY);
Vlad Yasevich4b6c7872013-10-15 14:57:45 -0400166 else if (br->bridge_forward_delay > BR_MAX_FORWARD_DELAY)
Herbert Xube4f1542013-09-12 17:12:05 +1000167 __br_set_forward_delay(br, BR_MAX_FORWARD_DELAY);
168
Vivien Didelot30843312016-09-08 12:50:43 -0400169 if (!err) {
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700170 br->stp_enabled = BR_USER_STP;
stephen hemminger28a16c92010-05-10 09:31:09 +0000171 br_debug(br, "userspace STP started\n");
Vivien Didelot30843312016-09-08 12:50:43 -0400172
Nikolay Aleksandrov76b91c32015-07-23 11:01:05 -0700173 /* Stop hello and hold timers */
174 del_timer(&br->hello_timer);
175 list_for_each_entry(p, &br->port_list, list)
176 del_timer(&p->hold_timer);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700177 } else {
178 br->stp_enabled = BR_KERNEL_STP;
stephen hemminger28a16c92010-05-10 09:31:09 +0000179 br_debug(br, "using kernel STP\n");
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700180
181 /* To start timers on any ports left in blocking */
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700182 br_port_state_selection(br);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700183 }
Herbert Xube4f1542013-09-12 17:12:05 +1000184
185 spin_unlock_bh(&br->lock);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700186}
187
188static void br_stp_stop(struct net_bridge *br)
189{
Nikolay Aleksandrov76b91c32015-07-23 11:01:05 -0700190 struct net_bridge_port *p;
Vivien Didelot30843312016-09-08 12:50:43 -0400191 int err;
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700192
193 if (br->stp_enabled == BR_USER_STP) {
Vivien Didelot30843312016-09-08 12:50:43 -0400194 err = br_stp_call_user(br, "stop");
195 if (err)
196 br_err(br, "failed to stop userspace STP (%d)\n", err);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700197
198 /* To start timers on any ports left in blocking */
Nikolay Aleksandrov76b91c32015-07-23 11:01:05 -0700199 mod_timer(&br->hello_timer, jiffies + br->hello_time);
200 list_for_each_entry(p, &br->port_list, list)
201 mod_timer(&p->hold_timer,
202 round_jiffies(jiffies + BR_HOLD_TIME));
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700203 spin_lock_bh(&br->lock);
204 br_port_state_selection(br);
205 spin_unlock_bh(&br->lock);
206 }
207
208 br->stp_enabled = BR_NO_STP;
209}
210
211void br_stp_set_enabled(struct net_bridge *br, unsigned long val)
212{
213 ASSERT_RTNL();
214
215 if (val) {
216 if (br->stp_enabled == BR_NO_STP)
217 br_stp_start(br);
218 } else {
219 if (br->stp_enabled != BR_NO_STP)
220 br_stp_stop(br);
221 }
222}
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224/* called under bridge lock */
Stephen Hemminger4505a3e2005-12-21 18:51:49 -0800225void br_stp_change_bridge_id(struct net_bridge *br, const unsigned char *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000227 /* should be aligned on 2 bytes for ether_addr_equal() */
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700228 unsigned short oldaddr_aligned[ETH_ALEN >> 1];
229 unsigned char *oldaddr = (unsigned char *)oldaddr_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 struct net_bridge_port *p;
231 int wasroot;
232
233 wasroot = br_is_root_bridge(br);
234
Toshiaki Makitaa4b816d2014-02-07 16:48:21 +0900235 br_fdb_change_mac_address(br, addr);
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 memcpy(oldaddr, br->bridge_id.addr, ETH_ALEN);
238 memcpy(br->bridge_id.addr, addr, ETH_ALEN);
239 memcpy(br->dev->dev_addr, addr, ETH_ALEN);
240
241 list_for_each_entry(p, &br->port_list, list) {
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000242 if (ether_addr_equal(p->designated_bridge.addr, oldaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 memcpy(p->designated_bridge.addr, addr, ETH_ALEN);
244
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000245 if (ether_addr_equal(p->designated_root.addr, oldaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 memcpy(p->designated_root.addr, addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248
249 br_configuration_update(br);
250 br_port_state_selection(br);
251 if (br_is_root_bridge(br) && !wasroot)
252 br_become_root_bridge(br);
253}
254
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000255/* should be aligned on 2 bytes for ether_addr_equal() */
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700256static const unsigned short br_mac_zero_aligned[ETH_ALEN >> 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258/* called under bridge lock */
stephen hemmingeredf947f2011-03-24 13:24:01 +0000259bool br_stp_recalculate_bridge_id(struct net_bridge *br)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700261 const unsigned char *br_mac_zero =
262 (const unsigned char *)br_mac_zero_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 const unsigned char *addr = br_mac_zero;
264 struct net_bridge_port *p;
265
Stephen Hemminger92c05742008-06-17 16:10:06 -0700266 /* user has chosen a value so keep it */
Jiri Pirkob2748262013-02-10 11:41:01 +0000267 if (br->dev->addr_assign_type == NET_ADDR_SET)
Balaji G1459a3c2011-03-29 06:20:04 +0000268 return false;
Stephen Hemminger92c05742008-06-17 16:10:06 -0700269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 list_for_each_entry(p, &br->port_list, list) {
271 if (addr == br_mac_zero ||
Stephen Hemminger554c9a82006-01-03 14:35:54 -0800272 memcmp(p->dev->dev_addr, addr, ETH_ALEN) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 addr = p->dev->dev_addr;
274
275 }
276
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000277 if (ether_addr_equal(br->bridge_id.addr, addr))
stephen hemmingeredf947f2011-03-24 13:24:01 +0000278 return false; /* no change */
279
280 br_stp_change_bridge_id(br, addr);
281 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
Nikolay Aleksandrov2dab80a2015-06-15 20:28:51 +0300284/* Acquires and releases bridge lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285void br_stp_set_bridge_priority(struct net_bridge *br, u16 newprio)
286{
287 struct net_bridge_port *p;
288 int wasroot;
289
Nikolay Aleksandrov2dab80a2015-06-15 20:28:51 +0300290 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 wasroot = br_is_root_bridge(br);
292
293 list_for_each_entry(p, &br->port_list, list) {
294 if (p->state != BR_STATE_DISABLED &&
295 br_is_designated_port(p)) {
296 p->designated_bridge.prio[0] = (newprio >> 8) & 0xFF;
297 p->designated_bridge.prio[1] = newprio & 0xFF;
298 }
299
300 }
301
302 br->bridge_id.prio[0] = (newprio >> 8) & 0xFF;
303 br->bridge_id.prio[1] = newprio & 0xFF;
304 br_configuration_update(br);
305 br_port_state_selection(br);
306 if (br_is_root_bridge(br) && !wasroot)
307 br_become_root_bridge(br);
Nikolay Aleksandrov2dab80a2015-06-15 20:28:51 +0300308 spin_unlock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
311/* called under bridge lock */
stephen hemminger14f98f22011-04-04 14:03:33 +0000312int br_stp_set_port_priority(struct net_bridge_port *p, unsigned long newprio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
stephen hemminger14f98f22011-04-04 14:03:33 +0000314 port_id new_port_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
stephen hemminger14f98f22011-04-04 14:03:33 +0000316 if (newprio > BR_MAX_PORT_PRIORITY)
317 return -ERANGE;
318
319 new_port_id = br_make_port_id(newprio, p->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 if (br_is_designated_port(p))
321 p->designated_port = new_port_id;
322
323 p->port_id = new_port_id;
324 p->priority = newprio;
325 if (!memcmp(&p->br->bridge_id, &p->designated_bridge, 8) &&
326 p->port_id < p->designated_port) {
327 br_become_designated_port(p);
328 br_port_state_selection(p->br);
329 }
stephen hemminger14f98f22011-04-04 14:03:33 +0000330
331 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
334/* called under bridge lock */
stephen hemminger14f98f22011-04-04 14:03:33 +0000335int br_stp_set_path_cost(struct net_bridge_port *p, unsigned long path_cost)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
stephen hemminger14f98f22011-04-04 14:03:33 +0000337 if (path_cost < BR_MIN_PATH_COST ||
338 path_cost > BR_MAX_PATH_COST)
339 return -ERANGE;
340
stephen hemminger8f3359b2013-04-13 14:06:07 +0000341 p->flags |= BR_ADMIN_COST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 p->path_cost = path_cost;
343 br_configuration_update(p->br);
344 br_port_state_selection(p->br);
stephen hemminger14f98f22011-04-04 14:03:33 +0000345 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
348ssize_t br_show_bridge_id(char *buf, const struct bridge_id *id)
349{
350 return sprintf(buf, "%.2x%.2x.%.2x%.2x%.2x%.2x%.2x%.2x\n",
351 id->prio[0], id->prio[1],
352 id->addr[0], id->addr[1], id->addr[2],
353 id->addr[3], id->addr[4], id->addr[5]);
354}