Skip to content

Commit 757e4df

Browse files
committed
tcp: properly terminate timers for kernel sockets
jira LE-1907 cve CVE-2024-35910 Rebuild_History Non-Buildable kernel-4.18.0-553.16.1.el8_10 commit-author Eric Dumazet <[email protected]> commit 151c9c7 We had various syzbot reports about tcp timers firing after the corresponding netns has been dismantled. Fortunately Josef Bacik could trigger the issue more often, and could test a patch I wrote two years ago. When TCP sockets are closed, we call inet_csk_clear_xmit_timers() to 'stop' the timers. inet_csk_clear_xmit_timers() can be called from any context, including when socket lock is held. This is the reason it uses sk_stop_timer(), aka del_timer(). This means that ongoing timers might finish much later. For user sockets, this is fine because each running timer holds a reference on the socket, and the user socket holds a reference on the netns. For kernel sockets, we risk that the netns is freed before timer can complete, because kernel sockets do not hold reference on the netns. This patch adds inet_csk_clear_xmit_timers_sync() function that using sk_stop_timer_sync() to make sure all timers are terminated before the kernel socket is released. Modules using kernel sockets close them in their netns exit() handler. Also add sock_not_owned_by_me() helper to get LOCKDEP support : inet_csk_clear_xmit_timers_sync() must not be called while socket lock is held. It is very possible we can revert in the future commit 3a58f13 ("net: rds: acquire refcount on TCP sockets") which attempted to solve the issue in rds only. (net/smc/af_smc.c and net/mptcp/subflow.c have similar code) We probably can remove the check_net() tests from tcp_out_of_resources() and __tcp_close() in the future. Reported-by: Josef Bacik <[email protected]> Closes: https://lore.kernel.org/netdev/20240314210740.GA2823176@perftesting/ Fixes: 26abe14 ("net: Modify sk_alloc to not reference count the netns of kernel sockets.") Fixes: 8a68173 ("net: sk_clone_lock() should only do get_net() if the parent is not a kernel socket") Link: https://lore.kernel.org/bpf/CANn89i+484ffqb93aQm1N-tjxxvb3WDKX0EbD7318RwRgsatjw@mail.gmail.com/ Signed-off-by: Eric Dumazet <[email protected]> Tested-by: Josef Bacik <[email protected]> Cc: Tetsuo Handa <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]> (cherry picked from commit 151c9c7) Signed-off-by: Jonathan Maple <[email protected]>
1 parent d644d68 commit 757e4df

File tree

4 files changed

+24
-0
lines changed

4 files changed

+24
-0
lines changed

include/net/inet_connection_sock.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ void inet_csk_init_xmit_timers(struct sock *sk,
179179
void (*delack_handler)(struct timer_list *),
180180
void (*keepalive_handler)(struct timer_list *));
181181
void inet_csk_clear_xmit_timers(struct sock *sk);
182+
void inet_csk_clear_xmit_timers_sync(struct sock *sk);
182183

183184
static inline void inet_csk_schedule_ack(struct sock *sk)
184185
{

include/net/sock.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1712,6 +1712,13 @@ static inline void sock_owned_by_me(const struct sock *sk)
17121712
#endif
17131713
}
17141714

1715+
static inline void sock_not_owned_by_me(const struct sock *sk)
1716+
{
1717+
#ifdef CONFIG_LOCKDEP
1718+
WARN_ON_ONCE(lockdep_sock_is_held(sk) && debug_locks);
1719+
#endif
1720+
}
1721+
17151722
static inline bool sock_owned_by_user(const struct sock *sk)
17161723
{
17171724
sock_owned_by_me(sk);

net/ipv4/inet_connection_sock.c

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,20 @@ void inet_csk_clear_xmit_timers(struct sock *sk)
568568
}
569569
EXPORT_SYMBOL(inet_csk_clear_xmit_timers);
570570

571+
void inet_csk_clear_xmit_timers_sync(struct sock *sk)
572+
{
573+
struct inet_connection_sock *icsk = inet_csk(sk);
574+
575+
/* ongoing timer handlers need to acquire socket lock. */
576+
sock_not_owned_by_me(sk);
577+
578+
icsk->icsk_pending = icsk->icsk_ack.pending = 0;
579+
580+
sk_stop_timer_sync(sk, &icsk->icsk_retransmit_timer);
581+
sk_stop_timer_sync(sk, &icsk->icsk_delack_timer);
582+
sk_stop_timer_sync(sk, &sk->sk_timer);
583+
}
584+
571585
void inet_csk_delete_keepalive_timer(struct sock *sk)
572586
{
573587
sk_stop_timer(sk, &sk->sk_timer);

net/ipv4/tcp.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2536,6 +2536,8 @@ void tcp_close(struct sock *sk, long timeout)
25362536
lock_sock(sk);
25372537
__tcp_close(sk, timeout);
25382538
release_sock(sk);
2539+
if (!sk->sk_net_refcnt)
2540+
inet_csk_clear_xmit_timers_sync(sk);
25392541
sock_put(sk);
25402542
}
25412543
EXPORT_SYMBOL(tcp_close);

0 commit comments

Comments
 (0)