Bluetooth: hci_uart: Check if socket buffer is ERR_PTR in h4_recv_buf()
authorMyungho Jung <mhjungk@gmail.com>
Tue, 22 Jan 2019 08:33:26 +0000 (00:33 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 27 Mar 2019 05:14:41 +0000 (14:14 +0900)
commit4e0ca4bfa2bcd766a576a90694213033f5b63292
tree9863fc8e50d52f6dc00d1eb980a9d48d9fe8a64a
parent6bef442eea18ce95afec1bad4927cb9d68c1505e
Bluetooth: hci_uart: Check if socket buffer is ERR_PTR in h4_recv_buf()

commit 1dc2d785156cbdc80806c32e8d2c7c735d0b4721 upstream.

h4_recv_buf() callers store the return value to socket buffer and
recursively pass the buffer to h4_recv_buf() without protection. So,
ERR_PTR returned from h4_recv_buf() can be dereferenced, if called again
before setting the socket buffer to NULL from previous error. Check if
skb is ERR_PTR in h4_recv_buf().

Reported-by: syzbot+017a32f149406df32703@syzkaller.appspotmail.com
Signed-off-by: Myungho Jung <mhjungk@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/bluetooth/h4_recv.h
drivers/bluetooth/hci_h4.c