]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
4.14-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 23 Dec 2020 18:17:08 +0000 (19:17 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 23 Dec 2020 18:17:08 +0000 (19:17 +0100)
added patches:
bluetooth-fix-slab-out-of-bounds-read-in-hci_le_direct_adv_report_evt.patch

queue-4.14/bluetooth-fix-slab-out-of-bounds-read-in-hci_le_direct_adv_report_evt.patch [new file with mode: 0644]
queue-4.14/series

diff --git a/queue-4.14/bluetooth-fix-slab-out-of-bounds-read-in-hci_le_direct_adv_report_evt.patch b/queue-4.14/bluetooth-fix-slab-out-of-bounds-read-in-hci_le_direct_adv_report_evt.patch
new file mode 100644 (file)
index 0000000..4b4f64d
--- /dev/null
@@ -0,0 +1,53 @@
+From f7e0e8b2f1b0a09b527885babda3e912ba820798 Mon Sep 17 00:00:00 2001
+From: Peilin Ye <yepeilin.cs@gmail.com>
+Date: Wed, 9 Sep 2020 03:17:00 -0400
+Subject: Bluetooth: Fix slab-out-of-bounds read in hci_le_direct_adv_report_evt()
+
+From: Peilin Ye <yepeilin.cs@gmail.com>
+
+commit f7e0e8b2f1b0a09b527885babda3e912ba820798 upstream.
+
+`num_reports` is not being properly checked. A malformed event packet with
+a large `num_reports` number makes hci_le_direct_adv_report_evt() read out
+of bounds. Fix it.
+
+Cc: stable@vger.kernel.org
+Fixes: 2f010b55884e ("Bluetooth: Add support for handling LE Direct Advertising Report events")
+Reported-and-tested-by: syzbot+24ebd650e20bd263ca01@syzkaller.appspotmail.com
+Link: https://syzkaller.appspot.com/bug?extid=24ebd650e20bd263ca01
+Signed-off-by: Peilin Ye <yepeilin.cs@gmail.com>
+Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ net/bluetooth/hci_event.c |   12 +++++-------
+ 1 file changed, 5 insertions(+), 7 deletions(-)
+
+--- a/net/bluetooth/hci_event.c
++++ b/net/bluetooth/hci_event.c
+@@ -5141,20 +5141,18 @@ static void hci_le_direct_adv_report_evt
+                                        struct sk_buff *skb)
+ {
+       u8 num_reports = skb->data[0];
+-      void *ptr = &skb->data[1];
++      struct hci_ev_le_direct_adv_info *ev = (void *)&skb->data[1];
+-      hci_dev_lock(hdev);
++      if (!num_reports || skb->len < num_reports * sizeof(*ev) + 1)
++              return;
+-      while (num_reports--) {
+-              struct hci_ev_le_direct_adv_info *ev = ptr;
++      hci_dev_lock(hdev);
++      for (; num_reports; num_reports--, ev++)
+               process_adv_report(hdev, ev->evt_type, &ev->bdaddr,
+                                  ev->bdaddr_type, &ev->direct_addr,
+                                  ev->direct_addr_type, ev->rssi, NULL, 0);
+-              ptr += sizeof(*ev);
+-      }
+-
+       hci_dev_unlock(hdev);
+ }
index 3b2d849fc626a3ce7d64aec1972872e50688fa00..8721e653305be3ee11db5f2ed1e2ed5f0249a006 100644 (file)
@@ -61,3 +61,4 @@ quota-sanity-check-quota-file-headers-on-load.patch
 media-msi2500-assign-spi-bus-number-dynamically.patch
 crypto-af_alg-avoid-undefined-behavior-accessing-salg_name.patch
 md-fix-a-warning-caused-by-a-race-between-concurrent-md_ioctl-s.patch
+bluetooth-fix-slab-out-of-bounds-read-in-hci_le_direct_adv_report_evt.patch