blob: d8ad73b38de27b49374862cca33954534606d486 [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 */
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700188 br_port_state_selection(br);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700189 }
Herbert Xube4f1542013-09-12 17:12:05 +1000190
191 spin_unlock_bh(&br->lock);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700192}
193
194static void br_stp_stop(struct net_bridge *br)
195{
Nikolay Aleksandrov76b91c32015-07-23 11:01:05 -0700196 struct net_bridge_port *p;
Vivien Didelot30843312016-09-08 12:50:43 -0400197 int err;
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700198
199 if (br->stp_enabled == BR_USER_STP) {
Vivien Didelot30843312016-09-08 12:50:43 -0400200 err = br_stp_call_user(br, "stop");
201 if (err)
202 br_err(br, "failed to stop userspace STP (%d)\n", err);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700203
204 /* To start timers on any ports left in blocking */
Nikolay Aleksandrov76b91c32015-07-23 11:01:05 -0700205 mod_timer(&br->hello_timer, jiffies + br->hello_time);
206 list_for_each_entry(p, &br->port_list, list)
207 mod_timer(&p->hold_timer,
208 round_jiffies(jiffies + BR_HOLD_TIME));
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700209 spin_lock_bh(&br->lock);
210 br_port_state_selection(br);
211 spin_unlock_bh(&br->lock);
212 }
213
214 br->stp_enabled = BR_NO_STP;
215}
216
217void br_stp_set_enabled(struct net_bridge *br, unsigned long val)
218{
219 ASSERT_RTNL();
220
221 if (val) {
222 if (br->stp_enabled == BR_NO_STP)
223 br_stp_start(br);
224 } else {
225 if (br->stp_enabled != BR_NO_STP)
226 br_stp_stop(br);
227 }
228}
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230/* called under bridge lock */
Stephen Hemminger4505a3e2005-12-21 18:51:49 -0800231void br_stp_change_bridge_id(struct net_bridge *br, const unsigned char *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000233 /* should be aligned on 2 bytes for ether_addr_equal() */
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700234 unsigned short oldaddr_aligned[ETH_ALEN >> 1];
235 unsigned char *oldaddr = (unsigned char *)oldaddr_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 struct net_bridge_port *p;
237 int wasroot;
238
239 wasroot = br_is_root_bridge(br);
240
Toshiaki Makitaa4b816d2014-02-07 16:48:21 +0900241 br_fdb_change_mac_address(br, addr);
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 memcpy(oldaddr, br->bridge_id.addr, ETH_ALEN);
244 memcpy(br->bridge_id.addr, addr, ETH_ALEN);
245 memcpy(br->dev->dev_addr, addr, ETH_ALEN);
246
247 list_for_each_entry(p, &br->port_list, list) {
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000248 if (ether_addr_equal(p->designated_bridge.addr, oldaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 memcpy(p->designated_bridge.addr, addr, ETH_ALEN);
250
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000251 if (ether_addr_equal(p->designated_root.addr, oldaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 memcpy(p->designated_root.addr, addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254
255 br_configuration_update(br);
256 br_port_state_selection(br);
257 if (br_is_root_bridge(br) && !wasroot)
258 br_become_root_bridge(br);
259}
260
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000261/* should be aligned on 2 bytes for ether_addr_equal() */
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700262static const unsigned short br_mac_zero_aligned[ETH_ALEN >> 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264/* called under bridge lock */
stephen hemmingeredf947f2011-03-24 13:24:01 +0000265bool br_stp_recalculate_bridge_id(struct net_bridge *br)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700267 const unsigned char *br_mac_zero =
268 (const unsigned char *)br_mac_zero_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 const unsigned char *addr = br_mac_zero;
270 struct net_bridge_port *p;
271
Stephen Hemminger92c05742008-06-17 16:10:06 -0700272 /* user has chosen a value so keep it */
Jiri Pirkob2748262013-02-10 11:41:01 +0000273 if (br->dev->addr_assign_type == NET_ADDR_SET)
Balaji G1459a3c2011-03-29 06:20:04 +0000274 return false;
Stephen Hemminger92c05742008-06-17 16:10:06 -0700275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 list_for_each_entry(p, &br->port_list, list) {
277 if (addr == br_mac_zero ||
Stephen Hemminger554c9a82006-01-03 14:35:54 -0800278 memcmp(p->dev->dev_addr, addr, ETH_ALEN) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 addr = p->dev->dev_addr;
280
281 }
282
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000283 if (ether_addr_equal(br->bridge_id.addr, addr))
stephen hemmingeredf947f2011-03-24 13:24:01 +0000284 return false; /* no change */
285
286 br_stp_change_bridge_id(br, addr);
287 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
Nikolay Aleksandrov2dab80a2015-06-15 20:28:51 +0300290/* Acquires and releases bridge lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291void br_stp_set_bridge_priority(struct net_bridge *br, u16 newprio)
292{
293 struct net_bridge_port *p;
294 int wasroot;
295
Nikolay Aleksandrov2dab80a2015-06-15 20:28:51 +0300296 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 wasroot = br_is_root_bridge(br);
298
299 list_for_each_entry(p, &br->port_list, list) {
300 if (p->state != BR_STATE_DISABLED &&
301 br_is_designated_port(p)) {
302 p->designated_bridge.prio[0] = (newprio >> 8) & 0xFF;
303 p->designated_bridge.prio[1] = newprio & 0xFF;
304 }
305
306 }
307
308 br->bridge_id.prio[0] = (newprio >> 8) & 0xFF;
309 br->bridge_id.prio[1] = newprio & 0xFF;
310 br_configuration_update(br);
311 br_port_state_selection(br);
312 if (br_is_root_bridge(br) && !wasroot)
313 br_become_root_bridge(br);
Nikolay Aleksandrov2dab80a2015-06-15 20:28:51 +0300314 spin_unlock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
317/* called under bridge lock */
stephen hemminger14f98f22011-04-04 14:03:33 +0000318int br_stp_set_port_priority(struct net_bridge_port *p, unsigned long newprio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
stephen hemminger14f98f22011-04-04 14:03:33 +0000320 port_id new_port_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
stephen hemminger14f98f22011-04-04 14:03:33 +0000322 if (newprio > BR_MAX_PORT_PRIORITY)
323 return -ERANGE;
324
325 new_port_id = br_make_port_id(newprio, p->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if (br_is_designated_port(p))
327 p->designated_port = new_port_id;
328
329 p->port_id = new_port_id;
330 p->priority = newprio;
331 if (!memcmp(&p->br->bridge_id, &p->designated_bridge, 8) &&
332 p->port_id < p->designated_port) {
333 br_become_designated_port(p);
334 br_port_state_selection(p->br);
335 }
stephen hemminger14f98f22011-04-04 14:03:33 +0000336
337 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
340/* called under bridge lock */
stephen hemminger14f98f22011-04-04 14:03:33 +0000341int br_stp_set_path_cost(struct net_bridge_port *p, unsigned long path_cost)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
stephen hemminger14f98f22011-04-04 14:03:33 +0000343 if (path_cost < BR_MIN_PATH_COST ||
344 path_cost > BR_MAX_PATH_COST)
345 return -ERANGE;
346
stephen hemminger8f3359b2013-04-13 14:06:07 +0000347 p->flags |= BR_ADMIN_COST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 p->path_cost = path_cost;
349 br_configuration_update(p->br);
350 br_port_state_selection(p->br);
stephen hemminger14f98f22011-04-04 14:03:33 +0000351 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
354ssize_t br_show_bridge_id(char *buf, const struct bridge_id *id)
355{
356 return sprintf(buf, "%.2x%.2x.%.2x%.2x%.2x%.2x%.2x%.2x\n",
357 id->prio[0], id->prio[1],
358 id->addr[0], id->addr[1], id->addr[2],
359 id->addr[3], id->addr[4], id->addr[5]);
360}