blob: 108084a0467160e30eb001cd2dbb326fdc4dadd3 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#include "br_private.h"
20#include "br_private_stp.h"
21
22
23/* Port id is composed of priority and port number.
stephen hemminger14f98f22011-04-04 14:03:33 +000024 * NB: some bits of priority are dropped to
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * make room for more ports.
26 */
27static inline port_id br_make_port_id(__u8 priority, __u16 port_no)
28{
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090029 return ((u16)priority << BR_PORT_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 | (port_no & ((1<<BR_PORT_BITS)-1));
31}
32
stephen hemminger14f98f22011-04-04 14:03:33 +000033#define BR_MAX_PORT_PRIORITY ((u16)~0 >> BR_PORT_BITS)
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035/* called under bridge lock */
36void br_init_port(struct net_bridge_port *p)
37{
38 p->port_id = br_make_port_id(p->priority, p->port_no);
39 br_become_designated_port(p);
40 p->state = BR_STATE_BLOCKING;
41 p->topology_change_ack = 0;
42 p->config_pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043}
44
45/* called under bridge lock */
46void br_stp_enable_bridge(struct net_bridge *br)
47{
48 struct net_bridge_port *p;
49
50 spin_lock_bh(&br->lock);
51 mod_timer(&br->hello_timer, jiffies + br->hello_time);
52 mod_timer(&br->gc_timer, jiffies + HZ/10);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 br_config_bpdu_generation(br);
55
56 list_for_each_entry(p, &br->port_list, list) {
stephen hemminger576eb622012-12-28 18:15:22 +000057 if (netif_running(p->dev) && netif_oper_up(p->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 br_stp_enable_port(p);
59
60 }
61 spin_unlock_bh(&br->lock);
62}
63
64/* NO locks held */
65void br_stp_disable_bridge(struct net_bridge *br)
66{
67 struct net_bridge_port *p;
68
Adrian Drzewiecki78872cc2006-02-15 01:47:48 -080069 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 list_for_each_entry(p, &br->port_list, list) {
71 if (p->state != BR_STATE_DISABLED)
72 br_stp_disable_port(p);
73
74 }
75
76 br->topology_change = 0;
77 br->topology_change_detected = 0;
Adrian Drzewiecki78872cc2006-02-15 01:47:48 -080078 spin_unlock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 del_timer_sync(&br->hello_timer);
81 del_timer_sync(&br->topology_change_timer);
82 del_timer_sync(&br->tcn_timer);
83 del_timer_sync(&br->gc_timer);
84}
85
86/* called under bridge lock */
87void br_stp_enable_port(struct net_bridge_port *p)
88{
89 br_init_port(p);
90 br_port_state_selection(p->br);
stephen hemminger28a16c92010-05-10 09:31:09 +000091 br_log_state(p);
stephen hemminger4ecb9612011-07-22 07:47:09 +000092 br_ifinfo_notify(RTM_NEWLINK, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
95/* called under bridge lock */
96void br_stp_disable_port(struct net_bridge_port *p)
97{
stephen hemminger28a16c92010-05-10 09:31:09 +000098 struct net_bridge *br = p->br;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 int wasroot;
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 wasroot = br_is_root_bridge(br);
102 br_become_designated_port(p);
103 p->state = BR_STATE_DISABLED;
104 p->topology_change_ack = 0;
105 p->config_pending = 0;
106
Paulius Zaleckas52009592012-03-06 22:25:22 +0000107 br_log_state(p);
stephen hemminger4ecb9612011-07-22 07:47:09 +0000108 br_ifinfo_notify(RTM_NEWLINK, p);
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 del_timer(&p->message_age_timer);
111 del_timer(&p->forward_delay_timer);
112 del_timer(&p->hold_timer);
113
Stephen Hemminger1a620692006-10-12 14:45:38 -0700114 br_fdb_delete_by_port(br, p, 0);
Herbert Xu3fe2d7c2010-02-28 00:49:38 -0800115 br_multicast_disable_port(p);
Stephen Hemminger1a620692006-10-12 14:45:38 -0700116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 br_configuration_update(br);
118
119 br_port_state_selection(br);
120
121 if (br_is_root_bridge(br) && !wasroot)
122 br_become_root_bridge(br);
123}
124
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700125static void br_stp_start(struct net_bridge *br)
126{
127 int r;
128 char *argv[] = { BR_STP_PROG, br->dev->name, "start", NULL };
129 char *envp[] = { NULL };
130
Jeremy Fitzhardinge86313c42007-07-17 18:37:03 -0700131 r = call_usermodehelper(BR_STP_PROG, argv, envp, UMH_WAIT_PROC);
Herbert Xube4f1542013-09-12 17:12:05 +1000132
133 spin_lock_bh(&br->lock);
134
135 if (br->bridge_forward_delay < BR_MIN_FORWARD_DELAY)
136 __br_set_forward_delay(br, BR_MIN_FORWARD_DELAY);
137 else if (br->bridge_forward_delay < BR_MAX_FORWARD_DELAY)
138 __br_set_forward_delay(br, BR_MAX_FORWARD_DELAY);
139
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700140 if (r == 0) {
141 br->stp_enabled = BR_USER_STP;
stephen hemminger28a16c92010-05-10 09:31:09 +0000142 br_debug(br, "userspace STP started\n");
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700143 } else {
144 br->stp_enabled = BR_KERNEL_STP;
stephen hemminger28a16c92010-05-10 09:31:09 +0000145 br_debug(br, "using kernel STP\n");
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700146
147 /* To start timers on any ports left in blocking */
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700148 br_port_state_selection(br);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700149 }
Herbert Xube4f1542013-09-12 17:12:05 +1000150
151 spin_unlock_bh(&br->lock);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700152}
153
154static void br_stp_stop(struct net_bridge *br)
155{
156 int r;
157 char *argv[] = { BR_STP_PROG, br->dev->name, "stop", NULL };
158 char *envp[] = { NULL };
159
160 if (br->stp_enabled == BR_USER_STP) {
Tomas Winkler1a9180a2011-01-03 11:08:58 +0000161 r = call_usermodehelper(BR_STP_PROG, argv, envp, UMH_WAIT_PROC);
stephen hemminger28a16c92010-05-10 09:31:09 +0000162 br_info(br, "userspace STP stopped, return code %d\n", r);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700163
164 /* To start timers on any ports left in blocking */
165 spin_lock_bh(&br->lock);
166 br_port_state_selection(br);
167 spin_unlock_bh(&br->lock);
168 }
169
170 br->stp_enabled = BR_NO_STP;
171}
172
173void br_stp_set_enabled(struct net_bridge *br, unsigned long val)
174{
175 ASSERT_RTNL();
176
177 if (val) {
178 if (br->stp_enabled == BR_NO_STP)
179 br_stp_start(br);
180 } else {
181 if (br->stp_enabled != BR_NO_STP)
182 br_stp_stop(br);
183 }
184}
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/* called under bridge lock */
Stephen Hemminger4505a3e2005-12-21 18:51:49 -0800187void br_stp_change_bridge_id(struct net_bridge *br, const unsigned char *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000189 /* should be aligned on 2 bytes for ether_addr_equal() */
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700190 unsigned short oldaddr_aligned[ETH_ALEN >> 1];
191 unsigned char *oldaddr = (unsigned char *)oldaddr_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 struct net_bridge_port *p;
193 int wasroot;
194
195 wasroot = br_is_root_bridge(br);
196
197 memcpy(oldaddr, br->bridge_id.addr, ETH_ALEN);
198 memcpy(br->bridge_id.addr, addr, ETH_ALEN);
199 memcpy(br->dev->dev_addr, addr, ETH_ALEN);
200
201 list_for_each_entry(p, &br->port_list, list) {
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000202 if (ether_addr_equal(p->designated_bridge.addr, oldaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 memcpy(p->designated_bridge.addr, addr, ETH_ALEN);
204
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000205 if (ether_addr_equal(p->designated_root.addr, oldaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 memcpy(p->designated_root.addr, addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
208
209 br_configuration_update(br);
210 br_port_state_selection(br);
211 if (br_is_root_bridge(br) && !wasroot)
212 br_become_root_bridge(br);
213}
214
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 -0700216static const unsigned short br_mac_zero_aligned[ETH_ALEN >> 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218/* called under bridge lock */
stephen hemmingeredf947f2011-03-24 13:24:01 +0000219bool br_stp_recalculate_bridge_id(struct net_bridge *br)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700221 const unsigned char *br_mac_zero =
222 (const unsigned char *)br_mac_zero_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 const unsigned char *addr = br_mac_zero;
224 struct net_bridge_port *p;
225
Stephen Hemminger92c05742008-06-17 16:10:06 -0700226 /* user has chosen a value so keep it */
Jiri Pirkob2748262013-02-10 11:41:01 +0000227 if (br->dev->addr_assign_type == NET_ADDR_SET)
Balaji G1459a3c2011-03-29 06:20:04 +0000228 return false;
Stephen Hemminger92c05742008-06-17 16:10:06 -0700229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 list_for_each_entry(p, &br->port_list, list) {
231 if (addr == br_mac_zero ||
Stephen Hemminger554c9a82006-01-03 14:35:54 -0800232 memcmp(p->dev->dev_addr, addr, ETH_ALEN) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 addr = p->dev->dev_addr;
234
235 }
236
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000237 if (ether_addr_equal(br->bridge_id.addr, addr))
stephen hemmingeredf947f2011-03-24 13:24:01 +0000238 return false; /* no change */
239
240 br_stp_change_bridge_id(br, addr);
241 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
244/* called under bridge lock */
245void br_stp_set_bridge_priority(struct net_bridge *br, u16 newprio)
246{
247 struct net_bridge_port *p;
248 int wasroot;
249
250 wasroot = br_is_root_bridge(br);
251
252 list_for_each_entry(p, &br->port_list, list) {
253 if (p->state != BR_STATE_DISABLED &&
254 br_is_designated_port(p)) {
255 p->designated_bridge.prio[0] = (newprio >> 8) & 0xFF;
256 p->designated_bridge.prio[1] = newprio & 0xFF;
257 }
258
259 }
260
261 br->bridge_id.prio[0] = (newprio >> 8) & 0xFF;
262 br->bridge_id.prio[1] = newprio & 0xFF;
263 br_configuration_update(br);
264 br_port_state_selection(br);
265 if (br_is_root_bridge(br) && !wasroot)
266 br_become_root_bridge(br);
267}
268
269/* called under bridge lock */
stephen hemminger14f98f22011-04-04 14:03:33 +0000270int br_stp_set_port_priority(struct net_bridge_port *p, unsigned long newprio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
stephen hemminger14f98f22011-04-04 14:03:33 +0000272 port_id new_port_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
stephen hemminger14f98f22011-04-04 14:03:33 +0000274 if (newprio > BR_MAX_PORT_PRIORITY)
275 return -ERANGE;
276
277 new_port_id = br_make_port_id(newprio, p->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (br_is_designated_port(p))
279 p->designated_port = new_port_id;
280
281 p->port_id = new_port_id;
282 p->priority = newprio;
283 if (!memcmp(&p->br->bridge_id, &p->designated_bridge, 8) &&
284 p->port_id < p->designated_port) {
285 br_become_designated_port(p);
286 br_port_state_selection(p->br);
287 }
stephen hemminger14f98f22011-04-04 14:03:33 +0000288
289 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
292/* called under bridge lock */
stephen hemminger14f98f22011-04-04 14:03:33 +0000293int br_stp_set_path_cost(struct net_bridge_port *p, unsigned long path_cost)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
stephen hemminger14f98f22011-04-04 14:03:33 +0000295 if (path_cost < BR_MIN_PATH_COST ||
296 path_cost > BR_MAX_PATH_COST)
297 return -ERANGE;
298
stephen hemminger8f3359b2013-04-13 14:06:07 +0000299 p->flags |= BR_ADMIN_COST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 p->path_cost = path_cost;
301 br_configuration_update(p->br);
302 br_port_state_selection(p->br);
stephen hemminger14f98f22011-04-04 14:03:33 +0000303 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
306ssize_t br_show_bridge_id(char *buf, const struct bridge_id *id)
307{
308 return sprintf(buf, "%.2x%.2x.%.2x%.2x%.2x%.2x%.2x%.2x\n",
309 id->prio[0], id->prio[1],
310 id->addr[0], id->addr[1], id->addr[2],
311 id->addr[3], id->addr[4], id->addr[5]);
312}