netfilter: use skb_ip_totlen and iph_totlen
authorXin Long <lucien.xin@gmail.com>
Sat, 28 Jan 2023 15:58:34 +0000 (10:58 -0500)
committerJakub Kicinski <kuba@kernel.org>
Thu, 2 Feb 2023 04:54:27 +0000 (20:54 -0800)
commita13fbf5ed5b4fc9095f12e955ca3a59b5507ff01
tree1e13229b52e6af3a0fe5639a1722f44e2f741323
parent043e397e48c58b4442ea5124dc1bdc95367a0a33
netfilter: use skb_ip_totlen and iph_totlen

There are also quite some places in netfilter that may process IPv4 TCP
GSO packets, we need to replace them too.

In length_mt(), we have to use u_int32_t/int to accept skb_ip_totlen()
return value, otherwise it may overflow and mismatch. This change will
also help us add selftest for IPv4 BIG TCP in the following patch.

Note that we don't need to replace the one in tcpmss_tg4(), as it will
return if there is data after tcphdr in tcpmss_mangle_packet(). The
same in mangle_contents() in nf_nat_helper.c, it returns false when
skb->len + extra > 65535 in enlarge_skb().

Signed-off-by: Xin Long <lucien.xin@gmail.com>
Reviewed-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
include/net/netfilter/nf_tables_ipv4.h
net/netfilter/ipvs/ip_vs_xmit.c
net/netfilter/nf_log_syslog.c
net/netfilter/xt_length.c