blob: 89110319ef0feb6928a39ae39befbf3193346eab [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{
Vivien Didelot30843312016-09-08 12:50:43 -0400153 int err = -ENOENT;
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700154
Hannes Frederic Sowaff621982016-01-05 10:46:00 +0100155 if (net_eq(dev_net(br->dev), &init_net))
Vivien Didelot30843312016-09-08 12:50:43 -0400156 err = br_stp_call_user(br, "start");
157
158 if (err && err != -ENOENT)
159 br_err(br, "failed to start userspace STP (%d)\n", err);
Herbert Xube4f1542013-09-12 17:12:05 +1000160
161 spin_lock_bh(&br->lock);
162
163 if (br->bridge_forward_delay < BR_MIN_FORWARD_DELAY)
164 __br_set_forward_delay(br, BR_MIN_FORWARD_DELAY);
Vlad Yasevich4b6c7872013-10-15 14:57:45 -0400165 else if (br->bridge_forward_delay > BR_MAX_FORWARD_DELAY)
Herbert Xube4f1542013-09-12 17:12:05 +1000166 __br_set_forward_delay(br, BR_MAX_FORWARD_DELAY);
167
Vivien Didelot30843312016-09-08 12:50:43 -0400168 if (!err) {
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700169 br->stp_enabled = BR_USER_STP;
stephen hemminger28a16c92010-05-10 09:31:09 +0000170 br_debug(br, "userspace STP started\n");
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700171 } else {
172 br->stp_enabled = BR_KERNEL_STP;
stephen hemminger28a16c92010-05-10 09:31:09 +0000173 br_debug(br, "using kernel STP\n");
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700174
175 /* To start timers on any ports left in blocking */
Nikolay Aleksandrovaeb07322017-06-01 18:07:55 +0300176 if (br->dev->flags & IFF_UP)
177 mod_timer(&br->hello_timer, jiffies + br->hello_time);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700178 br_port_state_selection(br);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700179 }
Herbert Xube4f1542013-09-12 17:12:05 +1000180
181 spin_unlock_bh(&br->lock);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700182}
183
184static void br_stp_stop(struct net_bridge *br)
185{
Vivien Didelot30843312016-09-08 12:50:43 -0400186 int err;
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700187
188 if (br->stp_enabled == BR_USER_STP) {
Vivien Didelot30843312016-09-08 12:50:43 -0400189 err = br_stp_call_user(br, "stop");
190 if (err)
191 br_err(br, "failed to stop userspace STP (%d)\n", err);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700192
193 /* To start timers on any ports left in blocking */
194 spin_lock_bh(&br->lock);
195 br_port_state_selection(br);
196 spin_unlock_bh(&br->lock);
197 }
198
199 br->stp_enabled = BR_NO_STP;
200}
201
202void br_stp_set_enabled(struct net_bridge *br, unsigned long val)
203{
204 ASSERT_RTNL();
205
206 if (val) {
207 if (br->stp_enabled == BR_NO_STP)
208 br_stp_start(br);
209 } else {
210 if (br->stp_enabled != BR_NO_STP)
211 br_stp_stop(br);
212 }
213}
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215/* called under bridge lock */
Stephen Hemminger4505a3e2005-12-21 18:51:49 -0800216void br_stp_change_bridge_id(struct net_bridge *br, const unsigned char *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000218 /* should be aligned on 2 bytes for ether_addr_equal() */
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700219 unsigned short oldaddr_aligned[ETH_ALEN >> 1];
220 unsigned char *oldaddr = (unsigned char *)oldaddr_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 struct net_bridge_port *p;
222 int wasroot;
223
224 wasroot = br_is_root_bridge(br);
225
Toshiaki Makitaa4b816d2014-02-07 16:48:21 +0900226 br_fdb_change_mac_address(br, addr);
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 memcpy(oldaddr, br->bridge_id.addr, ETH_ALEN);
229 memcpy(br->bridge_id.addr, addr, ETH_ALEN);
230 memcpy(br->dev->dev_addr, addr, ETH_ALEN);
231
232 list_for_each_entry(p, &br->port_list, list) {
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000233 if (ether_addr_equal(p->designated_bridge.addr, oldaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 memcpy(p->designated_bridge.addr, addr, ETH_ALEN);
235
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000236 if (ether_addr_equal(p->designated_root.addr, oldaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 memcpy(p->designated_root.addr, addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
239
240 br_configuration_update(br);
241 br_port_state_selection(br);
242 if (br_is_root_bridge(br) && !wasroot)
243 br_become_root_bridge(br);
244}
245
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000246/* should be aligned on 2 bytes for ether_addr_equal() */
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700247static const unsigned short br_mac_zero_aligned[ETH_ALEN >> 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249/* called under bridge lock */
stephen hemmingeredf947f2011-03-24 13:24:01 +0000250bool br_stp_recalculate_bridge_id(struct net_bridge *br)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700252 const unsigned char *br_mac_zero =
253 (const unsigned char *)br_mac_zero_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 const unsigned char *addr = br_mac_zero;
255 struct net_bridge_port *p;
256
Stephen Hemminger92c05742008-06-17 16:10:06 -0700257 /* user has chosen a value so keep it */
Jiri Pirkob2748262013-02-10 11:41:01 +0000258 if (br->dev->addr_assign_type == NET_ADDR_SET)
Balaji G1459a3c2011-03-29 06:20:04 +0000259 return false;
Stephen Hemminger92c05742008-06-17 16:10:06 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 list_for_each_entry(p, &br->port_list, list) {
262 if (addr == br_mac_zero ||
Stephen Hemminger554c9a82006-01-03 14:35:54 -0800263 memcmp(p->dev->dev_addr, addr, ETH_ALEN) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 addr = p->dev->dev_addr;
265
266 }
267
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000268 if (ether_addr_equal(br->bridge_id.addr, addr))
stephen hemmingeredf947f2011-03-24 13:24:01 +0000269 return false; /* no change */
270
271 br_stp_change_bridge_id(br, addr);
272 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
Nikolay Aleksandrov2dab80a2015-06-15 20:28:51 +0300275/* Acquires and releases bridge lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276void br_stp_set_bridge_priority(struct net_bridge *br, u16 newprio)
277{
278 struct net_bridge_port *p;
279 int wasroot;
280
Nikolay Aleksandrov2dab80a2015-06-15 20:28:51 +0300281 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 wasroot = br_is_root_bridge(br);
283
284 list_for_each_entry(p, &br->port_list, list) {
285 if (p->state != BR_STATE_DISABLED &&
286 br_is_designated_port(p)) {
287 p->designated_bridge.prio[0] = (newprio >> 8) & 0xFF;
288 p->designated_bridge.prio[1] = newprio & 0xFF;
289 }
290
291 }
292
293 br->bridge_id.prio[0] = (newprio >> 8) & 0xFF;
294 br->bridge_id.prio[1] = newprio & 0xFF;
295 br_configuration_update(br);
296 br_port_state_selection(br);
297 if (br_is_root_bridge(br) && !wasroot)
298 br_become_root_bridge(br);
Nikolay Aleksandrov2dab80a2015-06-15 20:28:51 +0300299 spin_unlock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
302/* called under bridge lock */
stephen hemminger14f98f22011-04-04 14:03:33 +0000303int br_stp_set_port_priority(struct net_bridge_port *p, unsigned long newprio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
stephen hemminger14f98f22011-04-04 14:03:33 +0000305 port_id new_port_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
stephen hemminger14f98f22011-04-04 14:03:33 +0000307 if (newprio > BR_MAX_PORT_PRIORITY)
308 return -ERANGE;
309
310 new_port_id = br_make_port_id(newprio, p->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 if (br_is_designated_port(p))
312 p->designated_port = new_port_id;
313
314 p->port_id = new_port_id;
315 p->priority = newprio;
316 if (!memcmp(&p->br->bridge_id, &p->designated_bridge, 8) &&
317 p->port_id < p->designated_port) {
318 br_become_designated_port(p);
319 br_port_state_selection(p->br);
320 }
stephen hemminger14f98f22011-04-04 14:03:33 +0000321
322 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
325/* called under bridge lock */
stephen hemminger14f98f22011-04-04 14:03:33 +0000326int br_stp_set_path_cost(struct net_bridge_port *p, unsigned long path_cost)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
stephen hemminger14f98f22011-04-04 14:03:33 +0000328 if (path_cost < BR_MIN_PATH_COST ||
329 path_cost > BR_MAX_PATH_COST)
330 return -ERANGE;
331
stephen hemminger8f3359b2013-04-13 14:06:07 +0000332 p->flags |= BR_ADMIN_COST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 p->path_cost = path_cost;
334 br_configuration_update(p->br);
335 br_port_state_selection(p->br);
stephen hemminger14f98f22011-04-04 14:03:33 +0000336 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
339ssize_t br_show_bridge_id(char *buf, const struct bridge_id *id)
340{
341 return sprintf(buf, "%.2x%.2x.%.2x%.2x%.2x%.2x%.2x%.2x\n",
342 id->prio[0], id->prio[1],
343 id->addr[0], id->addr[1], id->addr[2],
344 id->addr[3], id->addr[4], id->addr[5]);
345}