]> git.baikalelectronics.ru Git - kernel.git/commit
vxlan: do not modify the shared tunnel info when PMTU triggers an ICMP reply
authorAntoine Tenart <atenart@kernel.org>
Thu, 25 Mar 2021 15:35:32 +0000 (16:35 +0100)
committerDavid S. Miller <davem@davemloft.net>
Fri, 26 Mar 2021 00:27:30 +0000 (17:27 -0700)
commit63af863aa53c88a71256febcadc068dea31ff71b
treea578ff8f5e0df2643f98eb61ade46f035d49a3ca
parent8b476efe78459fbf8588840cecab739bae895861
vxlan: do not modify the shared tunnel info when PMTU triggers an ICMP reply

When the interface is part of a bridge or an Open vSwitch port and a
packet exceed a PMTU estimate, an ICMP reply is sent to the sender. When
using the external mode (collect metadata) the source and destination
addresses are reversed, so that Open vSwitch can match the packet
against an existing (reverse) flow.

But inverting the source and destination addresses in the shared
ip_tunnel_info will make following packets of the flow to use a wrong
destination address (packets will be tunnelled to itself), if the flow
isn't updated. Which happens with Open vSwitch, until the flow times
out.

Fixes this by uncloning the skb's ip_tunnel_info before inverting its
source and destination addresses, so that the modification will only be
made for the PTMU packet, not the following ones.

Fixes: 3fdc4fbee675 ("vxlan: Support for PMTU discovery on directly bridged links")
Tested-by: Eelco Chaudron <echaudro@redhat.com>
Reviewed-by: Eelco Chaudron <echaudro@redhat.com>
Signed-off-by: Antoine Tenart <atenart@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/vxlan.c