Skip to content

Commit 4b31a87

Browse files
qsngregkh
authored andcommitted
xfrm: espintcp: fix UAF during close
commit deb232e upstream. ZDI reported and analyzed a race condition during close for espintcp sockets: espintcp_close() frees emsg->skb via kfree_skb() without holding any socket lock. Concurrently, the xfrm_trans_reinject work queue invokes esp_output_tcp_finish() -> espintcp_push_skb() -> espintcp_push_msgs() -> skb_send_sock_locked(), which reads the same skb as a data source. Fix this by adding a synchronize_rcu() call after resetting sk_prot, since esp_output_tcp_finish() runs under RCU and won't use a socket with sk_prot == &tcp_prot. Simply taking the socket lock in espintcp_close() could lead to leaks, if esp_output_tcp_finish() re-adds an skb in the slot we just freed. After this, the existing barrier() is no longer needed. Cc: stable@vger.kernel.org Fixes: e27cca9 ("xfrm: add espintcp (RFC 8229)") Reported-by: zdi-disclosures@trendmicro.com Signed-off-by: Sabrina Dubroca <sd@queasysnail.net> Reviewed-by: Breno Leitao <leitao@debian.org> Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 84a93b4 commit 4b31a87

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

net/xfrm/espintcp.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,8 @@ static void espintcp_close(struct sock *sk, long timeout)
518518
strp_stop(&ctx->strp);
519519

520520
sk->sk_prot = &tcp_prot;
521-
barrier();
521+
522+
synchronize_rcu();
522523

523524
disable_work_sync(&ctx->work);
524525
strp_done(&ctx->strp);

0 commit comments

Comments
 (0)