Netdev List
 help / color / mirror / Atom feed
* [PATCH net] netfilter: flowtable: Saturate 16-bit flow_tuple->mtu
@ 2026-09-10 16:20 Alice Mikityanska
  2026-09-11 11:31 ` Pablo Neira Ayuso
  0 siblings, 1 reply; 2+ messages in thread
From: Alice Mikityanska @ 2026-09-10 16:20 UTC (permalink / raw)
  To: Pablo Neira Ayuso, Florian Westphal
  Cc: Phil Sutter, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Simon Horman, Felix Fietkau, netfilter-devel,
	coreteam, netdev, Alice Mikityanska, Sashiko

From: Alice Mikityanska <alice@isovalent.com>

ip6_dst_mtu_maybe_forward clamps its return value to IP6_MAX_MTU, which
is 40 bytes bigger than U16_MAX. While it can be a valid IPv6 MTU (IPv6
payload_len doesn't include the header), this value is assigned to the
16-bit flow_tuple->mtu in flow_offload_fill_route.

To avoid the overflow, use U16_MAX for all MTUs bigger than 65535. Since
flow_tuple->mtu is just a threshold for the software flowtable fast
path, packets exceeding it won't be dropped, but rather punted to the
normal forwarding path: nf_flow_offload_ipv6_forward returns 0, and
nf_flow_offload_ipv6_hook returns NF_ACCEPT.

Reported-by: Sashiko <sashiko-bot@kernel.org>
Closes: https://netdev-ai.bots.linux.dev/sashiko/#/patchset/20260901195714.673548-1-alice.kernel%40fastmail.im
Fixes: 4f3780c004ef ("netfilter: nf_flow_table: cache mtu in struct flow_offload_tuple")
Assisted-by: Codex:gpt-5.6-sol
Signed-off-by: Alice Mikityanska <alice@isovalent.com>
---
 net/netfilter/nf_flow_table_core.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net/netfilter/nf_flow_table_core.c b/net/netfilter/nf_flow_table_core.c
index 03241d4bfd5e..8f15540ae206 100644
--- a/net/netfilter/nf_flow_table_core.c
+++ b/net/netfilter/nf_flow_table_core.c
@@ -107,7 +107,8 @@ static int flow_offload_fill_route(struct flow_offload *flow,
 		flow_tuple->mtu = ip_dst_mtu_maybe_forward(dst, true);
 		break;
 	case NFPROTO_IPV6:
-		flow_tuple->mtu = ip6_dst_mtu_maybe_forward(dst, true);
+		flow_tuple->mtu = min(ip6_dst_mtu_maybe_forward(dst, true),
+				      U16_MAX);
 		break;
 	}
 
-- 
2.55.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH net] netfilter: flowtable: Saturate 16-bit flow_tuple->mtu
  2026-09-10 16:20 [PATCH net] netfilter: flowtable: Saturate 16-bit flow_tuple->mtu Alice Mikityanska
@ 2026-09-11 11:31 ` Pablo Neira Ayuso
  0 siblings, 0 replies; 2+ messages in thread
From: Pablo Neira Ayuso @ 2026-09-11 11:31 UTC (permalink / raw)
  To: Alice Mikityanska
  Cc: Florian Westphal, Phil Sutter, David S. Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni, Simon Horman, Felix Fietkau,
	netfilter-devel, coreteam, netdev, Alice Mikityanska, Sashiko

Hi,

On Thu, Sep 10, 2026 at 07:20:52PM +0300, Alice Mikityanska wrote:
> From: Alice Mikityanska <alice@isovalent.com>
> 
> ip6_dst_mtu_maybe_forward clamps its return value to IP6_MAX_MTU, which
> is 40 bytes bigger than U16_MAX. While it can be a valid IPv6 MTU (IPv6
> payload_len doesn't include the header), this value is assigned to the
> 16-bit flow_tuple->mtu in flow_offload_fill_route.
> 
> To avoid the overflow, use U16_MAX for all MTUs bigger than 65535. Since
> flow_tuple->mtu is just a threshold for the software flowtable fast
> path, packets exceeding it won't be dropped, but rather punted to the
> normal forwarding path: nf_flow_offload_ipv6_forward returns 0, and
> nf_flow_offload_ipv6_hook returns NF_ACCEPT.
> 
> Reported-by: Sashiko <sashiko-bot@kernel.org>
> Closes: https://netdev-ai.bots.linux.dev/sashiko/#/patchset/20260901195714.673548-1-alice.kernel%40fastmail.im
> Fixes: 4f3780c004ef ("netfilter: nf_flow_table: cache mtu in struct flow_offload_tuple")
> Assisted-by: Codex:gpt-5.6-sol
> Signed-off-by: Alice Mikityanska <alice@isovalent.com>
> ---
>  net/netfilter/nf_flow_table_core.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/net/netfilter/nf_flow_table_core.c b/net/netfilter/nf_flow_table_core.c
> index 03241d4bfd5e..8f15540ae206 100644
> --- a/net/netfilter/nf_flow_table_core.c
> +++ b/net/netfilter/nf_flow_table_core.c
> @@ -107,7 +107,8 @@ static int flow_offload_fill_route(struct flow_offload *flow,
>  		flow_tuple->mtu = ip_dst_mtu_maybe_forward(dst, true);
>  		break;
>  	case NFPROTO_IPV6:
> -		flow_tuple->mtu = ip6_dst_mtu_maybe_forward(dst, true);
> +		flow_tuple->mtu = min(ip6_dst_mtu_maybe_forward(dst, true),
> +				      U16_MAX);

This reminds me we should not catch the mtu.

>  		break;
>  	}
>  
> -- 
> 2.55.0
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-09-11 11:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-10 16:20 [PATCH net] netfilter: flowtable: Saturate 16-bit flow_tuple->mtu Alice Mikityanska
2026-09-11 11:31 ` Pablo Neira Ayuso

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox