From: Peilin Ye Date: Fri, 10 Jul 2020 21:39:18 +0000 (-0400) Subject: Bluetooth: Prevent out-of-bounds read in hci_inquiry_result_evt() X-Git-Tag: v4.9.233~156 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=855a93a756ee2f17c3b81705acf8aea464107608;p=platform%2Fkernel%2Flinux-amlogic.git Bluetooth: Prevent out-of-bounds read in hci_inquiry_result_evt() commit 75bbd2ea50ba1c5d9da878a17e92eac02fe0fd3a upstream. Check `num_rsp` before using it as for-loop counter. Cc: stable@vger.kernel.org Signed-off-by: Peilin Ye Signed-off-by: Marcel Holtmann Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 0ce196ba9e0e..29bb402368d3 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -2094,7 +2094,7 @@ static void hci_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb) BT_DBG("%s num_rsp %d", hdev->name, num_rsp); - if (!num_rsp) + if (!num_rsp || skb->len < num_rsp * sizeof(*info) + 1) return; if (hci_dev_test_flag(hdev, HCI_PERIODIC_INQ))