From: Luiz Augusto von Dentz Date: Mon, 22 Sep 2025 20:27:51 +0000 (-0400) Subject: Bluetooth: ISO: Fix possible UAF on iso_conn_free X-Git-Tag: v6.18-rc1~132^2~26^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9950f095d6c875dbe0c9ebfcf972ec88fdf26fc8;p=thirdparty%2Flinux.git Bluetooth: ISO: Fix possible UAF on iso_conn_free This attempt to fix similar issue to sco_conn_free where if the conn->sk is not set to NULL may lead to UAF on iso_conn_free. Fixes: ccf74f2390d6 ("Bluetooth: Add BTPROTO_ISO socket type") Signed-off-by: Luiz Augusto von Dentz --- diff --git a/net/bluetooth/iso.c b/net/bluetooth/iso.c index 5c68c0ea7d974..d24c7a1ace92b 100644 --- a/net/bluetooth/iso.c +++ b/net/bluetooth/iso.c @@ -761,6 +761,13 @@ static void iso_sock_kill(struct sock *sk) BT_DBG("sk %p state %d", sk, sk->sk_state); + /* Sock is dead, so set conn->sk to NULL to avoid possible UAF */ + if (iso_pi(sk)->conn) { + iso_conn_lock(iso_pi(sk)->conn); + iso_pi(sk)->conn->sk = NULL; + iso_conn_unlock(iso_pi(sk)->conn); + } + /* Kill poor orphan */ bt_sock_unlink(&iso_sk_list, sk); sock_set_flag(sk, SOCK_DEAD);