Bluetooth: Prevent out-of-bounds read in hci_inquiry_result_with_rssi_evt()
authorPeilin Ye <yepeilin.cs@gmail.com>
Fri, 10 Jul 2020 21:45:26 +0000 (17:45 -0400)
committerMarcel Holtmann <marcel@holtmann.org>
Mon, 13 Jul 2020 16:40:58 +0000 (18:40 +0200)
Check `num_rsp` before using it as for-loop counter. Add `unlock` label.

Cc: stable@vger.kernel.org
Signed-off-by: Peilin Ye <yepeilin.cs@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
net/bluetooth/hci_event.c

index b97d0247983ce3443fd4aa785a2ee41edd816695..61f8c4d12028232b517ead3d2bca5f90ca56e8fb 100644 (file)
@@ -4159,6 +4159,9 @@ static void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev,
                struct inquiry_info_with_rssi_and_pscan_mode *info;
                info = (void *) (skb->data + 1);
 
+               if (skb->len < num_rsp * sizeof(*info) + 1)
+                       goto unlock;
+
                for (; num_rsp; num_rsp--, info++) {
                        u32 flags;
 
@@ -4180,6 +4183,9 @@ static void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev,
        } else {
                struct inquiry_info_with_rssi *info = (void *) (skb->data + 1);
 
+               if (skb->len < num_rsp * sizeof(*info) + 1)
+                       goto unlock;
+
                for (; num_rsp; num_rsp--, info++) {
                        u32 flags;
 
@@ -4200,6 +4206,7 @@ static void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev,
                }
        }
 
+unlock:
        hci_dev_unlock(hdev);
 }