Blame SOURCES/CVE-2021-32399.patch

593325
From: Artem Savkov <asavkov@redhat.com>
593325
Subject: [RHEL-7.9 CVE-2021-32399 KPATCH] bluetooth: eliminate the potential race condition when removing the HCI controller
593325
Date: Wed,  7 Jul 2021 17:13:32 +0200
593325
593325
Kernels:
593325
3.10.0-1160.el7
593325
3.10.0-1160.2.1.el7
593325
3.10.0-1160.2.2.el7
593325
3.10.0-1160.6.1.el7
593325
3.10.0-1160.11.1.el7
593325
3.10.0-1160.15.2.el7
593325
3.10.0-1160.21.1.el7
593325
3.10.0-1160.24.1.el7
593325
3.10.0-1160.25.1.el7
593325
3.10.0-1160.31.1.el7
593325
593325
Changes since last build:
593325
[x86_64]:
593325
hci_request.o: changed function: hci_req_sync
593325
593325
[ppc64le]:
593325
hci_request.o: changed function: bg_scan_update
593325
hci_request.o: changed function: connectable_update_work
593325
hci_request.o: changed function: discov_off
593325
hci_request.o: changed function: discov_update
593325
hci_request.o: changed function: discoverable_update_work
593325
hci_request.o: changed function: hci_req_sync
593325
hci_request.o: changed function: le_scan_disable_work
593325
hci_request.o: changed function: le_scan_restart_work
593325
hci_request.o: changed function: scan_update_work
593325
593325
---------------------------
593325
593325
Kernels:
593325
3.10.0-1160.el7
593325
3.10.0-1160.2.1.el7
593325
3.10.0-1160.2.2.el7
593325
3.10.0-1160.6.1.el7
593325
3.10.0-1160.11.1.el7
593325
3.10.0-1160.15.2.el7
593325
3.10.0-1160.21.1.el7
593325
3.10.0-1160.24.1.el7
593325
3.10.0-1160.25.1.el7
593325
3.10.0-1160.31.1.el7
593325
3.10.0-1160.36.2.el7
593325
593325
Modifications: none
593325
Z-MR: https://gitlab.com/redhat/rhel/src/kernel/rhel-7/-/merge_requests/171
593325
593325
commit 168b363c94eac82c2e3531bd2ae9dfa2f369d4be
593325
Author: Gopal Tiwari <gtiwari@redhat.com>
593325
Date:   Mon Jun 14 13:04:00 2021 +0530
593325
593325
    bluetooth: eliminate the potential race condition when removing the HCI controller
593325
593325
    Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1971457
593325
593325
    Upstream: merged.
593325
593325
    Testing: Sanity_only.
593325
593325
    commit e2cb6b891ad2b8caa9131e3be70f45243df82a80
593325
    Author: Lin Ma <linma@zju.edu.cn>
593325
    Date:   Mon Apr 12 19:17:57 2021 +0800
593325
593325
        bluetooth: eliminate the potential race condition when removing the HCI controller
593325
593325
        There is a possible race condition vulnerability between issuing a HCI
593325
        command and removing the cont.  Specifically, functions hci_req_sync()
593325
        and hci_dev_do_close() can race each other like below:
593325
593325
        thread-A in hci_req_sync()      |   thread-B in hci_dev_do_close()
593325
                                        |   hci_req_sync_lock(hdev);
593325
        test_bit(HCI_UP, &hdev->flags); |
593325
        ...                             |   test_and_clear_bit(HCI_UP, &hdev->flags)
593325
        hci_req_sync_lock(hdev);        |
593325
                                        |
593325
        In this commit we alter the sequence in function hci_req_sync(). Hence,
593325
        the thread-A cannot issue th.
593325
593325
        Signed-off-by: Lin Ma <linma@zju.edu.cn>
593325
        Cc: Marcel Holtmann <marcel@holtmann.org>
593325
        Fixes: 7c6a329e4447 ("[Bluetooth] Fix regression from using default link policy")
593325
        Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
593325
593325
    Signed-off-by: Gopal Tiwari <gtiwari@redhat.com>
593325
593325
Signed-off-by: Artem Savkov <asavkov@redhat.com>
593325
Acked-by: Joe Lawrence <joe.lawrence@redhat.com>
593325
Acked-by: Yannick Cote <ycote@redhat.com>
593325
---
593325
 net/bluetooth/hci_request.c | 12 ++++++++----
593325
 1 file changed, 8 insertions(+), 4 deletions(-)
593325
593325
diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c
593325
index 1015d9c8d97dd..9e25e77042503 100644
593325
--- a/net/bluetooth/hci_request.c
593325
+++ b/net/bluetooth/hci_request.c
593325
@@ -275,12 +275,16 @@ int hci_req_sync(struct hci_dev *hdev, int (*req)(struct hci_request *req,
593325
 {
593325
 	int ret;
593325
 
593325
-	if (!test_bit(HCI_UP, &hdev->flags))
593325
-		return -ENETDOWN;
593325
-
593325
 	/* Serialize all requests */
593325
 	hci_req_sync_lock(hdev);
593325
-	ret = __hci_req_sync(hdev, req, opt, timeout, hci_status);
593325
+	/* check the state after obtaing the lock to protect the HCI_UP
593325
+	 * against any races from hci_dev_do_close when the controller
593325
+	 * gets removed.
593325
+	 */
593325
+	if (test_bit(HCI_UP, &hdev->flags))
593325
+		ret = __hci_req_sync(hdev, req, opt, timeout, hci_status);
593325
+	else
593325
+		ret = -ENETDOWN;
593325
 	hci_req_sync_unlock(hdev);
593325
 
593325
 	return ret;
593325
-- 
593325
2.26.3
593325
593325