Skip to content

Commit

Permalink
stp: Make stp-disabled port forward stp bpdu packets.
Browse files Browse the repository at this point in the history
Commit 0d1cee1 (stp: Fix bpdu tx problem in listening state)
makes ovs drop the stp bpdu packets if stp is not enabled on the
input port.  However, when pif bridge is used and stp is enabled
on the integration bridge.  The flow translation of stp bpdu
packets will go through a level of resubmission which changes
the input port to the corresponding peer port.  Since, the
patch port on the pif bridge does not have stp enabled, the
flow translation will drop the bpdu packets.

This commit fixes the issue by making ovs forward stp bpdu packets
on stp-disabled port.

VMware-BZ: #1284695

Signed-off-by: Alex Wang <[email protected]>
Acked-by: Ben Pfaff <[email protected]>
Acked-by: Joe Stringer <[email protected]>
  • Loading branch information
yew011 committed Jul 17, 2014
1 parent cd50723 commit bacdb85
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 15 deletions.
13 changes: 9 additions & 4 deletions lib/stp.c
Original file line number Diff line number Diff line change
Expand Up @@ -684,13 +684,18 @@ stp_learn_in_state(enum stp_state state)
return (state & (STP_DISABLED | STP_LEARNING | STP_FORWARDING)) != 0;
}

/* Returns true if 'state' is one in which rx&tx bpdu should be done on
* on a port, false otherwise. */
/* Returns true if 'state' is one in which bpdus should be forwarded on a
* port, false otherwise.
*
* Returns true if 'state' is STP_DISABLED, since in that case the port does
* not generate the bpdu and should just forward it (e.g. patch port on pif
* bridge). */
bool
stp_listen_in_state(enum stp_state state)
stp_should_forward_bpdu(enum stp_state state)
{
return (state &
(STP_LISTENING | STP_LEARNING | STP_FORWARDING)) != 0;
( STP_DISABLED | STP_LISTENING | STP_LEARNING
| STP_FORWARDING)) != 0;
}

/* Returns the name for the given 'role' (for use in debugging and log
Expand Down
28 changes: 20 additions & 8 deletions lib/stp.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,25 @@ bool stp_get_changed_port(struct stp *, struct stp_port **portp);
* The following diagram describes the various states and what they are
* allowed to do in OVS:
*
* FWD LRN TX_BPDU RX_BPDU
* --- --- ------- -------
* Disabled Y - - -
* Blocking - - - Y
* Listening - - Y Y
* Learning - Y Y Y
* Forwarding Y Y Y Y
* FWD LRN TX_BPDU RX_BPDU FWD_BPDU
* --- --- ------- ------- --------
* Disabled Y - - - Y
* Blocking - - - Y -
* Listening - - Y Y Y
* Learning - Y Y Y Y
* Forwarding Y Y Y Y Y
*
*
* FWD: the port should forward any incoming non-stp-BPDU
* packets.
*
* LRN: the port should conduct MAC learning on packets received.
*
* TX_BPDU/RX_BPDU: the port could generate/consume bpdus.
*
* FWD_BPDU: the port should should always forward the BPDUS,
* whether they are generated by the port or received
* as incoming packets.
*
* Once again, note that the disabled state forwards traffic, which is
* likely different than the spec would indicate.
Expand All @@ -120,7 +132,7 @@ enum stp_state {
const char *stp_state_name(enum stp_state);
bool stp_forward_in_state(enum stp_state);
bool stp_learn_in_state(enum stp_state);
bool stp_listen_in_state(enum stp_state);
bool stp_should_forward_bpdu(enum stp_state);

/* Role of an STP port. */
enum stp_role {
Expand Down
6 changes: 3 additions & 3 deletions ofproto/ofproto-dpif-xlate.c
Original file line number Diff line number Diff line change
Expand Up @@ -1101,10 +1101,10 @@ xport_stp_forward_state(const struct xport *xport)
}

static bool
xport_stp_listen_state(const struct xport *xport)
xport_stp_should_forward_bpdu(const struct xport *xport)
{
struct stp_port *sp = xport_get_stp_port(xport);
return stp_listen_in_state(sp ? stp_port_get_state(sp) : STP_DISABLED);
return stp_should_forward_bpdu(sp ? stp_port_get_state(sp) : STP_DISABLED);
}

/* Returns true if STP should process 'flow'. Sets fields in 'wc' that
Expand Down Expand Up @@ -2376,7 +2376,7 @@ compose_output_action__(struct xlate_ctx *ctx, ofp_port_t ofp_port,
return;
} else if (check_stp) {
if (is_stp(&ctx->base_flow)) {
if (!xport_stp_listen_state(xport)) {
if (!xport_stp_should_forward_bpdu(xport)) {
xlate_report(ctx, "STP not in listening state, "
"skipping bpdu output");
return;
Expand Down

0 comments on commit bacdb85

Please sign in to comment.