netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] bridge: master device stuck in no-carrier state forever when in user-stp mode
@ 2011-11-25 10:16 Vitalii Demianets
  2011-11-29 23:54 ` David Miller
  2011-12-01 18:44 ` Stephen Hemminger
  0 siblings, 2 replies; 5+ messages in thread
From: Vitalii Demianets @ 2011-11-25 10:16 UTC (permalink / raw)
  To: netdev; +Cc: Stephen Hemminger, bridge, Michael Tremer

When in user-stp mode, bridge master do not follow state of its slaves, so 
after the following sequence of events it can stuck forever in no-carrier 
state:
1) turn stp off
2) put all slaves down - master device will follow their state and also go in 
no-carrier state
3) turn stp on with bridge-stp script returning 0 (go to the user-stp mode)
Now bridge master won't follow slaves' state and will never reach running 
state.

This patch solves the problem by making user-stp and kernel-stp behavior 
similar regarding master following slaves' states.

Signed-off-by: Vitalii Demianets <vitas@nppfactor.kiev.ua>

---
 net/bridge/br_netlink.c |    6 ++++++
 net/bridge/br_stp.c     |   29 ++++++++++++++---------------
 2 files changed, 20 insertions(+), 15 deletions(-)

diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c
index e5f9ece3..a1daf82 100644
--- a/net/bridge/br_netlink.c
+++ b/net/bridge/br_netlink.c
@@ -18,6 +18,7 @@
 #include <net/sock.h>
 
 #include "br_private.h"
+#include "br_private_stp.h"
 
 static inline size_t br_nlmsg_size(void)
 {
@@ -188,6 +189,11 @@ static int br_rtm_setlink(struct sk_buff *skb,  struct 
nlmsghdr *nlh, void *arg)
 
 	p->state = new_state;
 	br_log_state(p);
+
+	spin_lock_bh(&p->br->lock);
+	br_port_state_selection(p->br);
+	spin_unlock_bh(&p->br->lock);
+
 	br_ifinfo_notify(RTM_NEWLINK, p);
 
 	return 0;
diff --git a/net/bridge/br_stp.c b/net/bridge/br_stp.c
index ad0a3f7..dd147d7 100644
--- a/net/bridge/br_stp.c
+++ b/net/bridge/br_stp.c
@@ -399,25 +399,24 @@ void br_port_state_selection(struct net_bridge *br)
 	struct net_bridge_port *p;
 	unsigned int liveports = 0;
 
-	/* Don't change port states if userspace is handling STP */
-	if (br->stp_enabled == BR_USER_STP)
-		return;
-
 	list_for_each_entry(p, &br->port_list, list) {
 		if (p->state == BR_STATE_DISABLED)
 			continue;
 
-		if (p->port_no == br->root_port) {
-			p->config_pending = 0;
-			p->topology_change_ack = 0;
-			br_make_forwarding(p);
-		} else if (br_is_designated_port(p)) {
-			del_timer(&p->message_age_timer);
-			br_make_forwarding(p);
-		} else {
-			p->config_pending = 0;
-			p->topology_change_ack = 0;
-			br_make_blocking(p);
+		/* Don't change port states if userspace is handling STP */
+		if (br->stp_enabled != BR_USER_STP) {
+			if (p->port_no == br->root_port) {
+				p->config_pending = 0;
+				p->topology_change_ack = 0;
+				br_make_forwarding(p);
+			} else if (br_is_designated_port(p)) {
+				del_timer(&p->message_age_timer);
+				br_make_forwarding(p);
+			} else {
+				p->config_pending = 0;
+				p->topology_change_ack = 0;
+				br_make_blocking(p);
+			}
 		}
 
 		if (p->state == BR_STATE_FORWARDING)
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] bridge: master device stuck in no-carrier state forever when in user-stp mode
  2011-11-25 10:16 [PATCH] bridge: master device stuck in no-carrier state forever when in user-stp mode Vitalii Demianets
@ 2011-11-29 23:54 ` David Miller
  2011-11-30  0:06   ` Stephen Hemminger
  2011-12-01 18:44 ` Stephen Hemminger
  1 sibling, 1 reply; 5+ messages in thread
From: David Miller @ 2011-11-29 23:54 UTC (permalink / raw)
  To: vitas; +Cc: netdev, shemminger, bridge

From: Vitalii Demianets <vitas@nppfactor.kiev.ua>
Date: Fri, 25 Nov 2011 12:16:37 +0200

> When in user-stp mode, bridge master do not follow state of its slaves, so 
> after the following sequence of events it can stuck forever in no-carrier 
> state:
> 1) turn stp off
> 2) put all slaves down - master device will follow their state and also go in 
> no-carrier state
> 3) turn stp on with bridge-stp script returning 0 (go to the user-stp mode)
> Now bridge master won't follow slaves' state and will never reach running 
> state.
> 
> This patch solves the problem by making user-stp and kernel-stp behavior 
> similar regarding master following slaves' states.
> 
> Signed-off-by: Vitalii Demianets <vitas@nppfactor.kiev.ua>

Stephen, please review this patch, thanks.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] bridge: master device stuck in no-carrier state forever when in user-stp mode
  2011-11-29 23:54 ` David Miller
@ 2011-11-30  0:06   ` Stephen Hemminger
  0 siblings, 0 replies; 5+ messages in thread
From: Stephen Hemminger @ 2011-11-30  0:06 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, bridge

On Tue, 29 Nov 2011 18:54:33 -0500 (EST)
David Miller <davem@davemloft.net> wrote:

> From: Vitalii Demianets <vitas@nppfactor.kiev.ua>
> Date: Fri, 25 Nov 2011 12:16:37 +0200
> 
> > When in user-stp mode, bridge master do not follow state of its slaves, so 
> > after the following sequence of events it can stuck forever in no-carrier 
> > state:
> > 1) turn stp off
> > 2) put all slaves down - master device will follow their state and also go in 
> > no-carrier state
> > 3) turn stp on with bridge-stp script returning 0 (go to the user-stp mode)
> > Now bridge master won't follow slaves' state and will never reach running 
> > state.
> > 
> > This patch solves the problem by making user-stp and kernel-stp behavior 
> > similar regarding master following slaves' states.
> > 
> > Signed-off-by: Vitalii Demianets <vitas@nppfactor.kiev.ua>
> 
> Stephen, please review this patch, thanks.

Agree that it is a problem, but want to fix the code up. The logic
can be done slightly cleaner.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] bridge: master device stuck in no-carrier state forever when in user-stp mode
  2011-11-25 10:16 [PATCH] bridge: master device stuck in no-carrier state forever when in user-stp mode Vitalii Demianets
  2011-11-29 23:54 ` David Miller
@ 2011-12-01 18:44 ` Stephen Hemminger
  2011-12-01 19:05   ` David Miller
  1 sibling, 1 reply; 5+ messages in thread
From: Stephen Hemminger @ 2011-12-01 18:44 UTC (permalink / raw)
  To: Vitalii Demianets; +Cc: netdev, bridge

On Fri, 25 Nov 2011 12:16:37 +0200
Vitalii Demianets <vitas@nppfactor.kiev.ua> wrote:

> When in user-stp mode, bridge master do not follow state of its slaves, so 
> after the following sequence of events it can stuck forever in no-carrier 
> state:
> 1) turn stp off
> 2) put all slaves down - master device will follow their state and also go in 
> no-carrier state
> 3) turn stp on with bridge-stp script returning 0 (go to the user-stp mode)
> Now bridge master won't follow slaves' state and will never reach running 
> state.
> 
> This patch solves the problem by making user-stp and kernel-stp behavior 
> similar regarding master following slaves' states.
> 
> Signed-off-by: Vitalii Demianets <vitas@nppfactor.kiev.ua>

This method works fine. David please apply to -net.

Acked-by: Stephen Hemminger <shemminger@vyatta.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] bridge: master device stuck in no-carrier state forever when in user-stp mode
  2011-12-01 18:44 ` Stephen Hemminger
@ 2011-12-01 19:05   ` David Miller
  0 siblings, 0 replies; 5+ messages in thread
From: David Miller @ 2011-12-01 19:05 UTC (permalink / raw)
  To: shemminger; +Cc: netdev, bridge

From: Stephen Hemminger <shemminger@vyatta.com>
Date: Thu, 1 Dec 2011 10:44:09 -0800

> On Fri, 25 Nov 2011 12:16:37 +0200
> Vitalii Demianets <vitas@nppfactor.kiev.ua> wrote:
> 
>> When in user-stp mode, bridge master do not follow state of its slaves, so 
>> after the following sequence of events it can stuck forever in no-carrier 
>> state:
>> 1) turn stp off
>> 2) put all slaves down - master device will follow their state and also go in 
>> no-carrier state
>> 3) turn stp on with bridge-stp script returning 0 (go to the user-stp mode)
>> Now bridge master won't follow slaves' state and will never reach running 
>> state.
>> 
>> This patch solves the problem by making user-stp and kernel-stp behavior 
>> similar regarding master following slaves' states.
>> 
>> Signed-off-by: Vitalii Demianets <vitas@nppfactor.kiev.ua>
> 
> This method works fine. David please apply to -net.
> 
> Acked-by: Stephen Hemminger <shemminger@vyatta.com>

Done.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-12-01 19:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-25 10:16 [PATCH] bridge: master device stuck in no-carrier state forever when in user-stp mode Vitalii Demianets
2011-11-29 23:54 ` David Miller
2011-11-30  0:06   ` Stephen Hemminger
2011-12-01 18:44 ` Stephen Hemminger
2011-12-01 19:05   ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).