]> git.baikalelectronics.ru Git - kernel.git/commit
gue: fix remcsum when GRO on and CHECKSUM_PARTIAL boundary is outer UDP
authorK. Den <den@klaipeden.com>
Mon, 31 Jul 2017 16:05:39 +0000 (01:05 +0900)
committerDavid S. Miller <davem@davemloft.net>
Tue, 1 Aug 2017 23:09:14 +0000 (16:09 -0700)
commitcb05a84674c87aaad389186e7241de18a22336fb
tree23acac718b58acbd3953b5f7be560d0def0ee0b6
parent9ffd7f8cdd8ce2c222d86e4e7e59ea187b458130
gue: fix remcsum when GRO on and CHECKSUM_PARTIAL boundary is outer UDP

In the case that GRO is turned on and the original received packet is
CHECKSUM_PARTIAL, if the outer UDP header is exactly at the last
csum-unnecessary point, which for instance could occur if the packet
comes from another Linux guest on the same Linux host, we have to do
either remcsum_adjust or set up CHECKSUM_PARTIAL again with its
csum_start properly reset considering RCO.

However, since 9f37c604d4d2 ("gro: Fix remcsum offload to deal with frags
in GRO") that barrier in such case could be skipped if GRO turned on,
hence we pass over it and the inner L4 validation mistakenly reckons
it as a bad csum.

This patch makes remcsum_offload being reset at the same time of GRO
remcsum cleanup, so as to make it work in such case as before.

Fixes: 9f37c604d4d2 ("gro: Fix remcsum offload to deal with frags in GRO")
Signed-off-by: Koichiro Den <den@klaipeden.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/fou.c