blob: 16b5aa9a91f1b2cdb10789eaf65991329172bd86 [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 struct switchdev_attr attr = {
Ido Schimmel6ff64f62015-12-15 16:03:35 +010040 .orig_dev = p->dev,
Elad Raz6ac311a2015-10-19 15:37:25 +030041 .id = SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME,
42 .flags = SWITCHDEV_F_SKIP_EOPNOTSUPP | SWITCHDEV_F_DEFER,
Ido Schimmelef9cdd02015-12-21 09:56:01 +010043 .u.ageing_time = jiffies_to_clock_t(p->br->ageing_time),
Elad Raz6ac311a2015-10-19 15:37:25 +030044 };
45 int err;
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 p->port_id = br_make_port_id(p->priority, p->port_no);
48 br_become_designated_port(p);
Florian Fainelli775dd692014-09-30 16:13:19 -070049 br_set_state(p, BR_STATE_BLOCKING);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 p->topology_change_ack = 0;
51 p->config_pending = 0;
Elad Raz6ac311a2015-10-19 15:37:25 +030052
53 err = switchdev_port_attr_set(p->dev, &attr);
Ido Schimmelbbe14f52015-11-13 13:06:12 +020054 if (err && err != -EOPNOTSUPP)
Elad Raz6ac311a2015-10-19 15:37:25 +030055 netdev_err(p->dev, "failed to set HW ageing time\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070056}
57
Vivien Didelotdba479f2016-07-21 12:42:10 -040058/* NO locks held */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059void br_stp_enable_bridge(struct net_bridge *br)
60{
61 struct net_bridge_port *p;
62
63 spin_lock_bh(&br->lock);
Nikolay Aleksandrov76b91c32015-07-23 11:01:05 -070064 if (br->stp_enabled == BR_KERNEL_STP)
65 mod_timer(&br->hello_timer, jiffies + br->hello_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 mod_timer(&br->gc_timer, jiffies + HZ/10);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 br_config_bpdu_generation(br);
69
70 list_for_each_entry(p, &br->port_list, list) {
stephen hemminger576eb622012-12-28 18:15:22 +000071 if (netif_running(p->dev) && netif_oper_up(p->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 br_stp_enable_port(p);
73
74 }
75 spin_unlock_bh(&br->lock);
76}
77
78/* NO locks held */
79void br_stp_disable_bridge(struct net_bridge *br)
80{
81 struct net_bridge_port *p;
82
Adrian Drzewiecki78872cc2006-02-15 01:47:48 -080083 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 list_for_each_entry(p, &br->port_list, list) {
85 if (p->state != BR_STATE_DISABLED)
86 br_stp_disable_port(p);
87
88 }
89
90 br->topology_change = 0;
91 br->topology_change_detected = 0;
Adrian Drzewiecki78872cc2006-02-15 01:47:48 -080092 spin_unlock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 del_timer_sync(&br->hello_timer);
95 del_timer_sync(&br->topology_change_timer);
96 del_timer_sync(&br->tcn_timer);
97 del_timer_sync(&br->gc_timer);
98}
99
100/* called under bridge lock */
101void br_stp_enable_port(struct net_bridge_port *p)
102{
103 br_init_port(p);
104 br_port_state_selection(p->br);
stephen hemminger4ecb9612011-07-22 07:47:09 +0000105 br_ifinfo_notify(RTM_NEWLINK, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
108/* called under bridge lock */
109void br_stp_disable_port(struct net_bridge_port *p)
110{
stephen hemminger28a16c92010-05-10 09:31:09 +0000111 struct net_bridge *br = p->br;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 int wasroot;
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 wasroot = br_is_root_bridge(br);
115 br_become_designated_port(p);
Florian Fainelli775dd692014-09-30 16:13:19 -0700116 br_set_state(p, BR_STATE_DISABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 p->topology_change_ack = 0;
118 p->config_pending = 0;
119
stephen hemminger4ecb9612011-07-22 07:47:09 +0000120 br_ifinfo_notify(RTM_NEWLINK, p);
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 del_timer(&p->message_age_timer);
123 del_timer(&p->forward_delay_timer);
124 del_timer(&p->hold_timer);
125
Nikolay Aleksandrov1ea2d022015-06-23 05:28:16 -0700126 br_fdb_delete_by_port(br, p, 0, 0);
Herbert Xu3fe2d7c2010-02-28 00:49:38 -0800127 br_multicast_disable_port(p);
Stephen Hemminger1a620692006-10-12 14:45:38 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 br_configuration_update(br);
130
131 br_port_state_selection(br);
132
133 if (br_is_root_bridge(br) && !wasroot)
134 br_become_root_bridge(br);
135}
136
Vivien Didelot30843312016-09-08 12:50:43 -0400137static int br_stp_call_user(struct net_bridge *br, char *arg)
138{
139 char *argv[] = { BR_STP_PROG, br->dev->name, arg, NULL };
140 char *envp[] = { NULL };
141 int rc;
142
143 /* call userspace STP and report program errors */
144 rc = call_usermodehelper(BR_STP_PROG, argv, envp, UMH_WAIT_PROC);
145 if (rc > 0) {
146 if (rc & 0xff)
147 br_debug(br, BR_STP_PROG " received signal %d\n",
148 rc & 0x7f);
149 else
150 br_debug(br, BR_STP_PROG " exited with code %d\n",
151 (rc >> 8) & 0xff);
152 }
153
154 return rc;
155}
156
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700157static void br_stp_start(struct net_bridge *br)
158{
Nikolay Aleksandrov76b91c32015-07-23 11:01:05 -0700159 struct net_bridge_port *p;
Vivien Didelot30843312016-09-08 12:50:43 -0400160 int err = -ENOENT;
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700161
Hannes Frederic Sowaff621982016-01-05 10:46:00 +0100162 if (net_eq(dev_net(br->dev), &init_net))
Vivien Didelot30843312016-09-08 12:50:43 -0400163 err = br_stp_call_user(br, "start");
164
165 if (err && err != -ENOENT)
166 br_err(br, "failed to start userspace STP (%d)\n", err);
Herbert Xube4f1542013-09-12 17:12:05 +1000167
168 spin_lock_bh(&br->lock);
169
170 if (br->bridge_forward_delay < BR_MIN_FORWARD_DELAY)
171 __br_set_forward_delay(br, BR_MIN_FORWARD_DELAY);
Vlad Yasevich4b6c7872013-10-15 14:57:45 -0400172 else if (br->bridge_forward_delay > BR_MAX_FORWARD_DELAY)
Herbert Xube4f1542013-09-12 17:12:05 +1000173 __br_set_forward_delay(br, BR_MAX_FORWARD_DELAY);
174
Vivien Didelot30843312016-09-08 12:50:43 -0400175 if (!err) {
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700176 br->stp_enabled = BR_USER_STP;
stephen hemminger28a16c92010-05-10 09:31:09 +0000177 br_debug(br, "userspace STP started\n");
Vivien Didelot30843312016-09-08 12:50:43 -0400178
Nikolay Aleksandrov76b91c32015-07-23 11:01:05 -0700179 /* Stop hello and hold timers */
180 del_timer(&br->hello_timer);
181 list_for_each_entry(p, &br->port_list, list)
182 del_timer(&p->hold_timer);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700183 } else {
184 br->stp_enabled = BR_KERNEL_STP;
stephen hemminger28a16c92010-05-10 09:31:09 +0000185 br_debug(br, "using kernel STP\n");
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700186
187 /* To start timers on any ports left in blocking */
Nikolay Aleksandrov02552842017-06-01 18:07:55 +0300188 if (br->dev->flags & IFF_UP)
189 mod_timer(&br->hello_timer, jiffies + br->hello_time);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700190 br_port_state_selection(br);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700191 }
Herbert Xube4f1542013-09-12 17:12:05 +1000192
193 spin_unlock_bh(&br->lock);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700194}
195
196static void br_stp_stop(struct net_bridge *br)
197{
Nikolay Aleksandrov76b91c32015-07-23 11:01:05 -0700198 struct net_bridge_port *p;
Vivien Didelot30843312016-09-08 12:50:43 -0400199 int err;
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700200
201 if (br->stp_enabled == BR_USER_STP) {
Vivien Didelot30843312016-09-08 12:50:43 -0400202 err = br_stp_call_user(br, "stop");
203 if (err)
204 br_err(br, "failed to stop userspace STP (%d)\n", err);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700205
206 /* To start timers on any ports left in blocking */
Nikolay Aleksandrov76b91c32015-07-23 11:01:05 -0700207 mod_timer(&br->hello_timer, jiffies + br->hello_time);
208 list_for_each_entry(p, &br->port_list, list)
209 mod_timer(&p->hold_timer,
210 round_jiffies(jiffies + BR_HOLD_TIME));
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700211 spin_lock_bh(&br->lock);
212 br_port_state_selection(br);
213 spin_unlock_bh(&br->lock);
214 }
215
216 br->stp_enabled = BR_NO_STP;
217}
218
219void br_stp_set_enabled(struct net_bridge *br, unsigned long val)
220{
221 ASSERT_RTNL();
222
223 if (val) {
224 if (br->stp_enabled == BR_NO_STP)
225 br_stp_start(br);
226 } else {
227 if (br->stp_enabled != BR_NO_STP)
228 br_stp_stop(br);
229 }
230}
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232/* called under bridge lock */
Stephen Hemminger4505a3e2005-12-21 18:51:49 -0800233void br_stp_change_bridge_id(struct net_bridge *br, const unsigned char *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000235 /* should be aligned on 2 bytes for ether_addr_equal() */
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700236 unsigned short oldaddr_aligned[ETH_ALEN >> 1];
237 unsigned char *oldaddr = (unsigned char *)oldaddr_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 struct net_bridge_port *p;
239 int wasroot;
240
241 wasroot = br_is_root_bridge(br);
242
Toshiaki Makitaa4b816d2014-02-07 16:48:21 +0900243 br_fdb_change_mac_address(br, addr);
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 memcpy(oldaddr, br->bridge_id.addr, ETH_ALEN);
246 memcpy(br->bridge_id.addr, addr, ETH_ALEN);
247 memcpy(br->dev->dev_addr, addr, ETH_ALEN);
248
249 list_for_each_entry(p, &br->port_list, list) {
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000250 if (ether_addr_equal(p->designated_bridge.addr, oldaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 memcpy(p->designated_bridge.addr, addr, ETH_ALEN);
252
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000253 if (ether_addr_equal(p->designated_root.addr, oldaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 memcpy(p->designated_root.addr, addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
256
257 br_configuration_update(br);
258 br_port_state_selection(br);
259 if (br_is_root_bridge(br) && !wasroot)
260 br_become_root_bridge(br);
261}
262
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000263/* should be aligned on 2 bytes for ether_addr_equal() */
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700264static const unsigned short br_mac_zero_aligned[ETH_ALEN >> 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266/* called under bridge lock */
stephen hemmingeredf947f2011-03-24 13:24:01 +0000267bool br_stp_recalculate_bridge_id(struct net_bridge *br)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700269 const unsigned char *br_mac_zero =
270 (const unsigned char *)br_mac_zero_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 const unsigned char *addr = br_mac_zero;
272 struct net_bridge_port *p;
273
Stephen Hemminger92c05742008-06-17 16:10:06 -0700274 /* user has chosen a value so keep it */
Jiri Pirkob2748262013-02-10 11:41:01 +0000275 if (br->dev->addr_assign_type == NET_ADDR_SET)
Balaji G1459a3c2011-03-29 06:20:04 +0000276 return false;
Stephen Hemminger92c05742008-06-17 16:10:06 -0700277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 list_for_each_entry(p, &br->port_list, list) {
279 if (addr == br_mac_zero ||
Stephen Hemminger554c9a82006-01-03 14:35:54 -0800280 memcmp(p->dev->dev_addr, addr, ETH_ALEN) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 addr = p->dev->dev_addr;
282
283 }
284
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000285 if (ether_addr_equal(br->bridge_id.addr, addr))
stephen hemmingeredf947f2011-03-24 13:24:01 +0000286 return false; /* no change */
287
288 br_stp_change_bridge_id(br, addr);
289 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
Nikolay Aleksandrov2dab80a2015-06-15 20:28:51 +0300292/* Acquires and releases bridge lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293void br_stp_set_bridge_priority(struct net_bridge *br, u16 newprio)
294{
295 struct net_bridge_port *p;
296 int wasroot;
297
Nikolay Aleksandrov2dab80a2015-06-15 20:28:51 +0300298 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 wasroot = br_is_root_bridge(br);
300
301 list_for_each_entry(p, &br->port_list, list) {
302 if (p->state != BR_STATE_DISABLED &&
303 br_is_designated_port(p)) {
304 p->designated_bridge.prio[0] = (newprio >> 8) & 0xFF;
305 p->designated_bridge.prio[1] = newprio & 0xFF;
306 }
307
308 }
309
310 br->bridge_id.prio[0] = (newprio >> 8) & 0xFF;
311 br->bridge_id.prio[1] = newprio & 0xFF;
312 br_configuration_update(br);
313 br_port_state_selection(br);
314 if (br_is_root_bridge(br) && !wasroot)
315 br_become_root_bridge(br);
Nikolay Aleksandrov2dab80a2015-06-15 20:28:51 +0300316 spin_unlock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
319/* called under bridge lock */
stephen hemminger14f98f22011-04-04 14:03:33 +0000320int br_stp_set_port_priority(struct net_bridge_port *p, unsigned long newprio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
stephen hemminger14f98f22011-04-04 14:03:33 +0000322 port_id new_port_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
stephen hemminger14f98f22011-04-04 14:03:33 +0000324 if (newprio > BR_MAX_PORT_PRIORITY)
325 return -ERANGE;
326
327 new_port_id = br_make_port_id(newprio, p->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 if (br_is_designated_port(p))
329 p->designated_port = new_port_id;
330
331 p->port_id = new_port_id;
332 p->priority = newprio;
333 if (!memcmp(&p->br->bridge_id, &p->designated_bridge, 8) &&
334 p->port_id < p->designated_port) {
335 br_become_designated_port(p);
336 br_port_state_selection(p->br);
337 }
stephen hemminger14f98f22011-04-04 14:03:33 +0000338
339 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342/* called under bridge lock */
stephen hemminger14f98f22011-04-04 14:03:33 +0000343int br_stp_set_path_cost(struct net_bridge_port *p, unsigned long path_cost)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
stephen hemminger14f98f22011-04-04 14:03:33 +0000345 if (path_cost < BR_MIN_PATH_COST ||
346 path_cost > BR_MAX_PATH_COST)
347 return -ERANGE;
348
stephen hemminger8f3359b2013-04-13 14:06:07 +0000349 p->flags |= BR_ADMIN_COST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 p->path_cost = path_cost;
351 br_configuration_update(p->br);
352 br_port_state_selection(p->br);
stephen hemminger14f98f22011-04-04 14:03:33 +0000353 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355
356ssize_t br_show_bridge_id(char *buf, const struct bridge_id *id)
357{
358 return sprintf(buf, "%.2x%.2x.%.2x%.2x%.2x%.2x%.2x%.2x\n",
359 id->prio[0], id->prio[1],
360 id->addr[0], id->addr[1], id->addr[2],
361 id->addr[3], id->addr[4], id->addr[5]);
362}