]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
Bluetooth: af_bluetooth: Fix Use-After-Free in bt_sock_recvmsg
authorHyunwoo Kim <v4bel@theori.io>
Sat, 9 Dec 2023 10:55:18 +0000 (05:55 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 1 Jan 2024 12:39:03 +0000 (12:39 +0000)
commit37f71e2c9f515834841826f4eb68ec33cfb2a1ff
tree0e0231fc089df30187d5e66f0ef7df0a33c4bca1
parent470896ecbc928bd6f0f2150f057094d28a7e626b
Bluetooth: af_bluetooth: Fix Use-After-Free in bt_sock_recvmsg

commit 2e07e8348ea454615e268222ae3fc240421be768 upstream.

This can cause a race with bt_sock_ioctl() because
bt_sock_recvmsg() gets the skb from sk->sk_receive_queue
and then frees it without holding lock_sock.
A use-after-free for a skb occurs with the following flow.
```
bt_sock_recvmsg() -> skb_recv_datagram() -> skb_free_datagram()
bt_sock_ioctl() -> skb_peek()
```
Add lock_sock to bt_sock_recvmsg() to fix this issue.

Cc: stable@vger.kernel.org
Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Signed-off-by: Hyunwoo Kim <v4bel@theori.io>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/bluetooth/af_bluetooth.c