]> git.baikalelectronics.ru Git - kernel.git/commit
Bluetooth: hci_sock: purge socket queues in the destruct() callback
authorNguyen Dinh Phi <phind.uet@gmail.com>
Thu, 7 Oct 2021 19:04:24 +0000 (03:04 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 11 Mar 2023 15:44:16 +0000 (16:44 +0100)
commit0d1035b9b24802c72c2b35265f96e897b4267734
tree4d98a8f8fcc4c50ec32deb343b960aafe21f6720
parentfd57a63c3c6d349646b0298e127d7b889b186b29
Bluetooth: hci_sock: purge socket queues in the destruct() callback

commit 0be432fe20e7c4573ec6b8c8f609c0b99bac5614 upstream.

The receive path may take the socket right before hci_sock_release(),
but it may enqueue the packets to the socket queues after the call to
skb_queue_purge(), therefore the socket can be destroyed without clear
its queues completely.

Moving these skb_queue_purge() to the hci_sock_destruct() will fix this
issue, because nothing is referencing the socket at this point.

Signed-off-by: Nguyen Dinh Phi <phind.uet@gmail.com>
Reported-by: syzbot+4c4ffd1e1094dae61035@syzkaller.appspotmail.com
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Fedor Pchelkin <pchelkin@ispras.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/bluetooth/hci_sock.c