blob: 19308e305d851a89044434315a86d2e9ca9dc549 [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) {
57 if ((p->dev->flags & IFF_UP) && netif_carrier_ok(p->dev))
58 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
stephen hemminger28a16c92010-05-10 09:31:09 +0000101 br_log_state(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 wasroot = br_is_root_bridge(br);
104 br_become_designated_port(p);
105 p->state = BR_STATE_DISABLED;
106 p->topology_change_ack = 0;
107 p->config_pending = 0;
108
stephen hemminger4ecb9612011-07-22 07:47:09 +0000109 br_ifinfo_notify(RTM_NEWLINK, p);
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 del_timer(&p->message_age_timer);
112 del_timer(&p->forward_delay_timer);
113 del_timer(&p->hold_timer);
114
Stephen Hemminger1a620692006-10-12 14:45:38 -0700115 br_fdb_delete_by_port(br, p, 0);
Herbert Xu3fe2d7c2010-02-28 00:49:38 -0800116 br_multicast_disable_port(p);
Stephen Hemminger1a620692006-10-12 14:45:38 -0700117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 br_configuration_update(br);
119
120 br_port_state_selection(br);
121
122 if (br_is_root_bridge(br) && !wasroot)
123 br_become_root_bridge(br);
124}
125
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700126static void br_stp_start(struct net_bridge *br)
127{
128 int r;
129 char *argv[] = { BR_STP_PROG, br->dev->name, "start", NULL };
130 char *envp[] = { NULL };
131
Jeremy Fitzhardinge86313c42007-07-17 18:37:03 -0700132 r = call_usermodehelper(BR_STP_PROG, argv, envp, UMH_WAIT_PROC);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700133 if (r == 0) {
134 br->stp_enabled = BR_USER_STP;
stephen hemminger28a16c92010-05-10 09:31:09 +0000135 br_debug(br, "userspace STP started\n");
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700136 } else {
137 br->stp_enabled = BR_KERNEL_STP;
stephen hemminger28a16c92010-05-10 09:31:09 +0000138 br_debug(br, "using kernel STP\n");
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700139
140 /* To start timers on any ports left in blocking */
141 spin_lock_bh(&br->lock);
142 br_port_state_selection(br);
143 spin_unlock_bh(&br->lock);
144 }
145}
146
147static void br_stp_stop(struct net_bridge *br)
148{
149 int r;
150 char *argv[] = { BR_STP_PROG, br->dev->name, "stop", NULL };
151 char *envp[] = { NULL };
152
153 if (br->stp_enabled == BR_USER_STP) {
Tomas Winkler1a9180a2011-01-03 11:08:58 +0000154 r = call_usermodehelper(BR_STP_PROG, argv, envp, UMH_WAIT_PROC);
stephen hemminger28a16c92010-05-10 09:31:09 +0000155 br_info(br, "userspace STP stopped, return code %d\n", r);
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700156
157 /* To start timers on any ports left in blocking */
158 spin_lock_bh(&br->lock);
159 br_port_state_selection(br);
160 spin_unlock_bh(&br->lock);
161 }
162
163 br->stp_enabled = BR_NO_STP;
164}
165
166void br_stp_set_enabled(struct net_bridge *br, unsigned long val)
167{
168 ASSERT_RTNL();
169
170 if (val) {
171 if (br->stp_enabled == BR_NO_STP)
172 br_stp_start(br);
173 } else {
174 if (br->stp_enabled != BR_NO_STP)
175 br_stp_stop(br);
176 }
177}
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/* called under bridge lock */
Stephen Hemminger4505a3e2005-12-21 18:51:49 -0800180void br_stp_change_bridge_id(struct net_bridge *br, const unsigned char *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700182 /* should be aligned on 2 bytes for compare_ether_addr() */
183 unsigned short oldaddr_aligned[ETH_ALEN >> 1];
184 unsigned char *oldaddr = (unsigned char *)oldaddr_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 struct net_bridge_port *p;
186 int wasroot;
187
188 wasroot = br_is_root_bridge(br);
189
190 memcpy(oldaddr, br->bridge_id.addr, ETH_ALEN);
191 memcpy(br->bridge_id.addr, addr, ETH_ALEN);
192 memcpy(br->dev->dev_addr, addr, ETH_ALEN);
193
194 list_for_each_entry(p, &br->port_list, list) {
Stephen Hemminger6ede2462005-10-25 15:04:59 -0700195 if (!compare_ether_addr(p->designated_bridge.addr, oldaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 memcpy(p->designated_bridge.addr, addr, ETH_ALEN);
197
Stephen Hemminger6ede2462005-10-25 15:04:59 -0700198 if (!compare_ether_addr(p->designated_root.addr, oldaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 memcpy(p->designated_root.addr, addr, ETH_ALEN);
200
201 }
202
203 br_configuration_update(br);
204 br_port_state_selection(br);
205 if (br_is_root_bridge(br) && !wasroot)
206 br_become_root_bridge(br);
207}
208
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700209/* should be aligned on 2 bytes for compare_ether_addr() */
210static const unsigned short br_mac_zero_aligned[ETH_ALEN >> 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212/* called under bridge lock */
stephen hemmingeredf947f2011-03-24 13:24:01 +0000213bool br_stp_recalculate_bridge_id(struct net_bridge *br)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Evgeny Kravtsunov19bb3502007-04-17 12:31:24 -0700215 const unsigned char *br_mac_zero =
216 (const unsigned char *)br_mac_zero_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 const unsigned char *addr = br_mac_zero;
218 struct net_bridge_port *p;
219
Stephen Hemminger92c05742008-06-17 16:10:06 -0700220 /* user has chosen a value so keep it */
221 if (br->flags & BR_SET_MAC_ADDR)
Balaji G1459a3c2011-03-29 06:20:04 +0000222 return false;
Stephen Hemminger92c05742008-06-17 16:10:06 -0700223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 list_for_each_entry(p, &br->port_list, list) {
225 if (addr == br_mac_zero ||
Stephen Hemminger554c9a82006-01-03 14:35:54 -0800226 memcmp(p->dev->dev_addr, addr, ETH_ALEN) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 addr = p->dev->dev_addr;
228
229 }
230
stephen hemmingeredf947f2011-03-24 13:24:01 +0000231 if (compare_ether_addr(br->bridge_id.addr, addr) == 0)
232 return false; /* no change */
233
234 br_stp_change_bridge_id(br, addr);
235 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
238/* called under bridge lock */
239void br_stp_set_bridge_priority(struct net_bridge *br, u16 newprio)
240{
241 struct net_bridge_port *p;
242 int wasroot;
243
244 wasroot = br_is_root_bridge(br);
245
246 list_for_each_entry(p, &br->port_list, list) {
247 if (p->state != BR_STATE_DISABLED &&
248 br_is_designated_port(p)) {
249 p->designated_bridge.prio[0] = (newprio >> 8) & 0xFF;
250 p->designated_bridge.prio[1] = newprio & 0xFF;
251 }
252
253 }
254
255 br->bridge_id.prio[0] = (newprio >> 8) & 0xFF;
256 br->bridge_id.prio[1] = newprio & 0xFF;
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
263/* called under bridge lock */
stephen hemminger14f98f22011-04-04 14:03:33 +0000264int br_stp_set_port_priority(struct net_bridge_port *p, unsigned long newprio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
stephen hemminger14f98f22011-04-04 14:03:33 +0000266 port_id new_port_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
stephen hemminger14f98f22011-04-04 14:03:33 +0000268 if (newprio > BR_MAX_PORT_PRIORITY)
269 return -ERANGE;
270
271 new_port_id = br_make_port_id(newprio, p->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (br_is_designated_port(p))
273 p->designated_port = new_port_id;
274
275 p->port_id = new_port_id;
276 p->priority = newprio;
277 if (!memcmp(&p->br->bridge_id, &p->designated_bridge, 8) &&
278 p->port_id < p->designated_port) {
279 br_become_designated_port(p);
280 br_port_state_selection(p->br);
281 }
stephen hemminger14f98f22011-04-04 14:03:33 +0000282
283 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286/* called under bridge lock */
stephen hemminger14f98f22011-04-04 14:03:33 +0000287int br_stp_set_path_cost(struct net_bridge_port *p, unsigned long path_cost)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
stephen hemminger14f98f22011-04-04 14:03:33 +0000289 if (path_cost < BR_MIN_PATH_COST ||
290 path_cost > BR_MAX_PATH_COST)
291 return -ERANGE;
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 p->path_cost = path_cost;
294 br_configuration_update(p->br);
295 br_port_state_selection(p->br);
stephen hemminger14f98f22011-04-04 14:03:33 +0000296 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
299ssize_t br_show_bridge_id(char *buf, const struct bridge_id *id)
300{
301 return sprintf(buf, "%.2x%.2x.%.2x%.2x%.2x%.2x%.2x%.2x\n",
302 id->prio[0], id->prio[1],
303 id->addr[0], id->addr[1], id->addr[2],
304 id->addr[3], id->addr[4], id->addr[5]);
305}