]> git.baikalelectronics.ru Git - kernel.git/commit
net: udp: fix IP header access and skb lookup on Fast/frag0 UDP GRO
authorAlexander Lobakin <alobakin@pm.me>
Wed, 11 Nov 2020 20:45:38 +0000 (20:45 +0000)
committerJakub Kicinski <kuba@kernel.org>
Thu, 12 Nov 2020 17:55:51 +0000 (09:55 -0800)
commit7bf10b5a2978d9bc8a8f7fbe7d250de8129b591a
tree30734917e8330ab74b80440fd3dcc6dc29e29f5c
parent293e558cb77cbcf608409727705f02bef3ca45d3
net: udp: fix IP header access and skb lookup on Fast/frag0 UDP GRO

udp{4,6}_lib_lookup_skb() use ip{,v6}_hdr() to get IP header of the
packet. While it's probably OK for non-frag0 paths, this helpers
will also point to junk on Fast/frag0 GRO when all headers are
located in frags. As a result, sk/skb lookup may fail or give wrong
results. To support both GRO modes, skb_gro_network_header() might
be used. To not modify original functions, add private versions of
udp{4,6}_lib_lookup_skb() only to perform correct sk lookups on GRO.

Present since the introduction of "application-level" UDP GRO
in 4.7-rc1.

Misc: replace totally unneeded ternaries with plain ifs.

Fixes: 6d1f88121fcc ("udp: Add GRO functions to UDP socket")
Suggested-by: Willem de Bruijn <willemb@google.com>
Cc: Eric Dumazet <edumazet@google.com>
Signed-off-by: Alexander Lobakin <alobakin@pm.me>
Acked-by: Willem de Bruijn <willemb@google.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/ipv4/udp_offload.c
net/ipv6/udp_offload.c