Blame SOURCES/CVE-2021-32399.patch

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