From: Jesse Gross Date: Mon, 31 Dec 2012 20:38:26 +0000 (-0800) Subject: ofproto-dpif: Initialize tunnel metadata in both 'flow' and 'base_flow'. X-Git-Tag: sliver-openvswitch-1.9.90-3~10^2~56 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=47d4a9db26329f9d93eb945c1fcc0e248cf2656a;p=sliver-openvswitch.git ofproto-dpif: Initialize tunnel metadata in both 'flow' and 'base_flow'. The datapath doesn't carry over tunnel metadata between input and output because such an operation doesn't generally make sense. In order to keep the flow information in sync, userspace needs to do this as well. However, userspace was clearing out only the base flow, which means that it later generated an action with the original tunnel metadata. If a packet is both being sent and received on a tunnel then this will cause the output tunnel's configuration to be overriden with incorrect information. This was recently exposed when the ability to interpret tunnel metadata was added to userspace. Reported-by: Anand Krishnamurthy Reported-by: Saul St. John Signed-off-by: Jesse Gross --- diff --git a/ofproto/ofproto-dpif.c b/ofproto/ofproto-dpif.c index d5155cf62..58a1690fb 100644 --- a/ofproto/ofproto-dpif.c +++ b/ofproto/ofproto-dpif.c @@ -6080,8 +6080,8 @@ action_xlate_ctx_init(struct action_xlate_ctx *ctx, { ctx->ofproto = ofproto; ctx->flow = *flow; + memset(&ctx->flow.tunnel, 0, sizeof ctx->flow.tunnel); ctx->base_flow = ctx->flow; - memset(&ctx->base_flow.tunnel, 0, sizeof ctx->base_flow.tunnel); ctx->base_flow.vlan_tci = initial_tci; ctx->rule = rule; ctx->packet = packet;