]> git.baikalelectronics.ru Git - kernel.git/commit
openvswitch: handle DNAT tuple collision
authorDumitru Ceara <dceara@redhat.com>
Wed, 7 Oct 2020 15:48:03 +0000 (17:48 +0200)
committerJakub Kicinski <kuba@kernel.org>
Thu, 8 Oct 2020 19:20:35 +0000 (12:20 -0700)
commitc01075610df41395ebc037be136b8893622a879f
treec2d91bdca0d89dcca33d511aaa682f9e8e20d016
parentaa7810a1f06c0d3d5ea7b1f447462df7a1e2d074
openvswitch: handle DNAT tuple collision

With multiple DNAT rules it's possible that after destination
translation the resulting tuples collide.

For example, two openvswitch flows:
nw_dst=10.0.0.10,tp_dst=10, actions=ct(commit,table=2,nat(dst=20.0.0.1:20))
nw_dst=10.0.0.20,tp_dst=10, actions=ct(commit,table=2,nat(dst=20.0.0.1:20))

Assuming two TCP clients initiating the following connections:
10.0.0.10:5000->10.0.0.10:10
10.0.0.10:5000->10.0.0.20:10

Both tuples would translate to 10.0.0.10:5000->20.0.0.1:20 causing
nf_conntrack_confirm() to fail because of tuple collision.

Netfilter handles this case by allocating a null binding for SNAT at
egress by default.  Perform the same operation in openvswitch for DNAT
if no explicit SNAT is requested by the user and allocate a null binding
for SNAT for packets in the "original" direction.

Reported-at: https://bugzilla.redhat.com/1877128
Suggested-by: Florian Westphal <fw@strlen.de>
Fixes: 468ea2e68792 ("openvswitch: Interface with NAT.")
Signed-off-by: Dumitru Ceara <dceara@redhat.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/openvswitch/conntrack.c