summaryrefslogtreecommitdiff
path: root/datapath-windows
diff options
context:
space:
mode:
authorSairam Venugopal <vsairam@vmware.com>2017-08-01 15:01:44 -0700
committerBen Pfaff <blp@ovn.org>2017-08-03 14:37:47 -0700
commit662975e43c3f65b52d32e12cdff3d9796c9f138b (patch)
treee1d2b8b26fb4c10cb198a1ca6733bbfff963d5e0 /datapath-windows
parente9804ffdf703d27b18ca3a4d81a4599ac2eacc04 (diff)
downloadopenvswitch-662975e43c3f65b52d32e12cdff3d9796c9f138b.tar.gz
datapath-windows: Fix conntrack lookups for reversed keys
The conntrack table needs to be queried for entries in either directions to determine if the packet is in forward direction or reply direction. The current behavior ends up reversing the incoming packet's 5-Tuple for every entry in the loop instead of doing it only once. Testing Done: - Verified that ICMP requests are no longer treated as replies in Conntrack. Co-authored-by: Sairam Venugopal <vsairam@vmware.com> Signed-off-by: Anand Kumar <kumaranand@vmware.com> Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Shashank Ram <rams@vmware.com> Acked-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
Diffstat (limited to 'datapath-windows')
-rw-r--r--datapath-windows/ovsext/Conntrack.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/datapath-windows/ovsext/Conntrack.c b/datapath-windows/ovsext/Conntrack.c
index 8ea1e6590..917ebee98 100644
--- a/datapath-windows/ovsext/Conntrack.c
+++ b/datapath-windows/ovsext/Conntrack.c
@@ -401,7 +401,14 @@ OvsCtLookup(OvsConntrackKeyLookupCtx *ctx)
POVS_CT_ENTRY entry;
BOOLEAN reply = FALSE;
POVS_CT_ENTRY found = NULL;
- OVS_CT_KEY key = ctx->key;
+
+ /* Reverse NAT must be performed before OvsCtLookup, so here
+ * we simply need to flip the src and dst in key and compare
+ * they are equal. Note that flipped key is not equal to
+ * rev_key due to NAT effect.
+ */
+ OVS_CT_KEY revCtxKey = ctx->key;
+ OvsCtKeyReverse(&revCtxKey);
if (!ctTotalEntries) {
return found;
@@ -410,19 +417,13 @@ OvsCtLookup(OvsConntrackKeyLookupCtx *ctx)
LIST_FORALL(&ovsConntrackTable[ctx->hash & CT_HASH_TABLE_MASK], link) {
entry = CONTAINING_RECORD(link, OVS_CT_ENTRY, link);
- if (OvsCtKeyAreSame(key,entry->key)) {
+ if (OvsCtKeyAreSame(ctx->key, entry->key)) {
found = entry;
reply = FALSE;
break;
}
- /* Reverse NAT must be performed before OvsCtLookup, so here
- * we simply need to flip the src and dst in key and compare
- * they are equal. Note that flipped key is not equal to
- * rev_key due to NAT effect.
- */
- OvsCtKeyReverse(&key);
- if (OvsCtKeyAreSame(key, entry->key)) {
+ if (OvsCtKeyAreSame(revCtxKey, entry->key)) {
found = entry;
reply = TRUE;
break;