]> www.infradead.org Git - users/jedix/linux-maple.git/commit
espintcp: remove encap socket caching to avoid reference leak
authorSabrina Dubroca <sd@queasysnail.net>
Wed, 9 Apr 2025 13:59:57 +0000 (15:59 +0200)
committerSteffen Klassert <steffen.klassert@secunet.com>
Mon, 14 Apr 2025 09:59:17 +0000 (11:59 +0200)
commit028363685bd0b7a19b4a820f82dd905b1dc83999
treec9a2ec248c9ed5a39435d14da5027cbc1c607aba
parent63c1f19a3be3169e51a5812d22a6d0c879414076
espintcp: remove encap socket caching to avoid reference leak

The current scheme for caching the encap socket can lead to reference
leaks when we try to delete the netns.

The reference chain is: xfrm_state -> enacp_sk -> netns

Since the encap socket is a userspace socket, it holds a reference on
the netns. If we delete the espintcp state (through flush or
individual delete) before removing the netns, the reference on the
socket is dropped and the netns is correctly deleted. Otherwise, the
netns may not be reachable anymore (if all processes within the ns
have terminated), so we cannot delete the xfrm state to drop its
reference on the socket.

This patch results in a small (~2% in my tests) performance
regression.

A GC-type mechanism could be added for the socket cache, to clear
references if the state hasn't been used "recently", but it's a lot
more complex than just not caching the socket.

Fixes: e27cca96cd68 ("xfrm: add espintcp (RFC 8229)")
Signed-off-by: Sabrina Dubroca <sd@queasysnail.net>
Reviewed-by: Simon Horman <horms@kernel.org>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
include/net/xfrm.h
net/ipv4/esp4.c
net/ipv6/esp6.c
net/xfrm/xfrm_state.c