Blame SOURCES/CVE-2021-33034.patch

db14cb
From: Joe Lawrence <joe.lawrence@redhat.com>
db14cb
Subject: [RHEL8.4 KPATCH v2] bluetooth: kpatch fixes for CVE-2021-33034
db14cb
Date: Thu, 10 Jun 2021 09:06:37 -0400
db14cb
9c2a32
Changes since last build:
9c2a32
[x86_64]:
9c2a32
hci_event.o: changed function: hci_event_packet
9c2a32
9c2a32
[ppc64le]:
9c2a32
hci_event.o: changed function: hci_event_packet
9c2a32
hci_event.o: new function: hci_resolve_name
9c2a32
9c2a32
---------------------------
9c2a32
9c2a32
Kernels:
9c2a32
4.18.0-305.el8
9c2a32
4.18.0-305.3.1.el8_4
9c2a32
9c2a32
Modifications:
9c2a32
- Remove modification of struct hci_chan and add hchan_amp
9c2a32
  shadow variable as flag instead
9c2a32
9c2a32
commit 418fac0a2503c7e5b310052431cecab67a0efb8f
9c2a32
Author: Gopal Tiwari <gtiwari@redhat.com>
9c2a32
Date:   Thu May 20 11:27:10 2021 +0530
9c2a32
9c2a32
    Bluetooth: verify AMP hci_chan before amp_destroy
9c2a32
9c2a32
    Bugzilla: https://bugzilla.redhat.com/1962544
9c2a32
    CVE: CVE-2021-33034
9c2a32
    Y-Commit: 162078c99ca2f976692d81b532a9eea80332cf82
9c2a32
9c2a32
    O-Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1962546
9c2a32
9c2a32
    O-CVE: CVE-2021-33034
9c2a32
9c2a32
    Testing: Verified by me with the help of reproducer.
9c2a32
    https://bugzilla.redhat.com/show_bug.cgi?id=1962546#c1
9c2a32
9c2a32
    Upstream: Merged.
9c2a32
9c2a32
    commit 5c4c8c9544099bb9043a10a5318130a943e32fc3
9c2a32
    Author: Archie Pusaka <apusaka@chromium.org>
9c2a32
    Date:   Mon Mar 22 14:03:11 2021 +0800
9c2a32
9c2a32
    Bluetooth: verify AMP hci_chan before amp_destroy
9c2a32
9c2a32
    hci_chan can be created in 2 places: hci_loglink_complete_evt() if
9c2a32
    it is an AMP hci_chan, or l2cap_conn_add() otherwise. In theory,
9c2a32
    Only AMP hci_chan should be removed by a call to
9c2a32
    hci_disconn_loglink_complete_evt(). However, the controller might mess
9c2a32
    up, call that function, and destroy an hci_chan which is not initiated
9c2a32
    by hci_loglink_complete_evt().
9c2a32
9c2a32
    This patch adds a verification that the destroyed hci_chan must have
9c2a32
    been init'd by hci_loglink_complete_evt().
9c2a32
9c2a32
    Example crash call trace:
9c2a32
    Call Trace:
9c2a32
     __dump_stack lib/dump_stack.c:77 [inline]
9c2a32
     dump_stack+0xe3/0x144 lib/dump_stack.c:118
9c2a32
     print_address_description+0x67/0x22a mm/kasan/report.c:256
9c2a32
     kasan_report_error mm/kasan/report.c:354 [inline]
9c2a32
     kasan_report mm/kasan/report.c:412 [inline]
9c2a32
     kasan_report+0x251/0x28f mm/kasan/report.c:396
9c2a32
     hci_send_acl+0x3b/0x56e net/bluetooth/hci_core.c:4072
9c2a32
     l2cap_send_cmd+0x5af/0x5c2 net/bluetooth/l2cap_core.c:877
9c2a32
     l2cap_send_move_chan_cfm_icid+0x8e/0xb1 net/bluetooth/l2cap_core.c:4661
9c2a32
     l2cap_move_fail net/bluetooth/l2cap_core.c:5146 [inline]
9c2a32
     l2cap_move_channel_rsp net/bluetooth/l2cap_core.c:5185 [inline]
9c2a32
     l2cap_bredr_sig_cmd net/bluetooth/l2cap_core.c:5464 [inline]
9c2a32
     l2cap_sig_channel net/bluetooth/l2cap_core.c:5799 [inline]
9c2a32
     l2cap_recv_frame+0x1d12/0x51aa net/bluetooth/l2cap_core.c:7023
9c2a32
     l2cap_recv_acldata+0x2ea/0x693 net/bluetooth/l2cap_core.c:7596
9c2a32
     hci_acldata_packet net/bluetooth/hci_core.c:4606 [inline]
9c2a32
     hci_rx_work+0x2bd/0x45e net/bluetooth/hci_core.c:4796
9c2a32
     process_one_work+0x6f8/0xb50 kernel/workqueue.c:2175
9c2a32
     worker_thread+0x4fc/0x670 kernel/workqueue.c:2321
9c2a32
     kthread+0x2f0/0x304 kernel/kthread.c:253
9c2a32
     ret_from_fork+0x3a/0x50 arch/x86/entry/entry_64.S:415
9c2a32
9c2a32
    Allocated by task 38:
9c2a32
     set_track mm/kasan/kasan.c:460 [inline]
9c2a32
     kasan_kmalloc+0x8d/0x9a mm/kasan/kasan.c:553
9c2a32
     kmem_cache_alloc_trace+0x102/0x129 mm/slub.c:2787
9c2a32
     kmalloc include/linux/slab.h:515 [inline]
9c2a32
     kzalloc include/linux/slab.h:709 [inline]
9c2a32
     hci_chan_create+0x86/0x26d net/bluetooth/hci_conn.c:1674
9c2a32
     l2cap_conn_add.part.0+0x1c/0x814 net/bluetooth/l2cap_core.c:7062
9c2a32
     l2cap_conn_add net/bluetooth/l2cap_core.c:7059 [inline]
9c2a32
     l2cap_connect_cfm+0x134/0x852 net/bluetooth/l2cap_core.c:7381
9c2a32
     hci_connect_cfm+0x9d/0x122 include/net/bluetooth/hci_core.h:1404
9c2a32
     hci_remote_ext_features_evt net/bluetooth/hci_event.c:4161 [inline]
9c2a32
     hci_event_packet+0x463f/0x72fa net/bluetooth/hci_event.c:5981
9c2a32
     hci_rx_work+0x197/0x45e net/bluetooth/hci_core.c:4791
9c2a32
     process_one_work+0x6f8/0xb50 kernel/workqueue.c:2175
9c2a32
     worker_thread+0x4fc/0x670 kernel/workqueue.c:2321
9c2a32
     kthread+0x2f0/0x304 kernel/kthread.c:253
9c2a32
     ret_from_fork+0x3a/0x50 arch/x86/entry/entry_64.S:415
9c2a32
9c2a32
    Freed by task 1732:
9c2a32
     set_track mm/kasan/kasan.c:460 [inline]
9c2a32
     __kasan_slab_free mm/kasan/kasan.c:521 [inline]
9c2a32
     __kasan_slab_free+0x106/0x128 mm/kasan/kasan.c:493
9c2a32
     slab_free_hook mm/slub.c:1409 [inline]
9c2a32
     slab_free_freelist_hook+0xaa/0xf6 mm/slub.c:1436
9c2a32
     slab_free mm/slub.c:3009 [inline]
9c2a32
     kfree+0x182/0x21e mm/slub.c:3972
9c2a32
     hci_disconn_loglink_complete_evt net/bluetooth/hci_event.c:4891 [inline]
9c2a32
     hci_event_packet+0x6a1c/0x72fa net/bluetooth/hci_event.c:6050
9c2a32
     hci_rx_work+0x197/0x45e net/bluetooth/hci_core.c:4791
9c2a32
     process_one_work+0x6f8/0xb50 kernel/workqueue.c:2175
9c2a32
     worker_thread+0x4fc/0x670 kernel/workqueue.c:2321
9c2a32
     kthread+0x2f0/0x304 kernel/kthread.c:253
9c2a32
     ret_from_fork+0x3a/0x50 arch/x86/entry/entry_64.S:415
9c2a32
9c2a32
    The buggy address belongs to the object at ffff8881d7af9180
9c2a32
     which belongs to the cache kmalloc-128 of size 128
9c2a32
    The buggy address is located 24 bytes inside of
9c2a32
     128-byte region [ffff8881d7af9180, ffff8881d7af9200)
9c2a32
    The buggy address belongs to the page:
9c2a32
    page:ffffea00075ebe40 count:1 mapcount:0 mapping:ffff8881da403200 index:0x0
9c2a32
    flags: 0x8000000000000200(slab)
9c2a32
    raw: 8000000000000200 dead000000000100 dead000000000200 ffff8881da403200
9c2a32
    raw: 0000000000000000 0000000080150015 00000001ffffffff 0000000000000000
9c2a32
    page dumped because: kasan: bad access detected
9c2a32
9c2a32
    Memory state around the buggy address:
9c2a32
     ffff8881d7af9080: fc fc fc fc fc fc fc fc fb fb fb fb fb fb fb fb
9c2a32
     ffff8881d7af9100: fb fb fb fb fb fb fb fb fc fc fc fc fc fc fc fc
9c2a32
    >ffff8881d7af9180: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
9c2a32
                                ^
9c2a32
     ffff8881d7af9200: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
9c2a32
     ffff8881d7af9280: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
9c2a32
9c2a32
    Signed-off-by: Archie Pusaka <apusaka@chromium.org>
9c2a32
    Reported-by: syzbot+98228e7407314d2d4ba2@syzkaller.appspotmail.com
9c2a32
    Reviewed-by: Alain Michaud <alainm@chromium.org>
9c2a32
    Reviewed-by: Abhishek Pandit-Subedi <abhishekpandit@chromium.org>
9c2a32
    Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
9c2a32
    (cherry picked from commit 5c4c8c9544099bb9043a10a5318130a943e32fc3)
9c2a32
    Signed-off-by: Gopal Tiwari <gtiwari@redhat.com>
9c2a32
    Signed-off-by: Jan Stancek <jstancek@redhat.com>
9c2a32
9c2a32
Signed-off-by: Joel Savitz <jsavitz@redhat.com> for v1
9c2a32
Signed-off-by: Joe Lawrence <joe.lawrence@redhat.com>
db14cb
Acked-by: Artem Savkov <asavkov@redhat.com>
db14cb
Acked-by: Yannick Cote <ycote@redhat.com>
db14cb
9c2a32
---
9c2a32
9c2a32
v2:
9c2a32
- minor code cleanup from v1, removed intermediate variables
9c2a32
- I tried forcing hci_resolve_name() as always_inline on ppc64le, but
9c2a32
  this cascaded into a series of neverending inline / half inline / etc.
9c2a32
  compiler decisions that I could never completely eliminate.
9c2a32
9c2a32
Z-MR: https://gitlab.com/redhat/rhel/src/kernel/rhel-8/-/merge_requests/692
9c2a32
9c2a32
KT0 test PASS: https://beaker.engineering.redhat.com/jobs/5457381
9c2a32
for kpatch-patch-4_18_0-193_1_2-1-12.el8_2 scratch build:
9c2a32
https://brewweb.engineering.redhat.com/brew/taskinfo?taskID=37373415
9c2a32
9c2a32
 net/bluetooth/hci_event.c | 11 ++++++++++-
9c2a32
 1 file changed, 10 insertions(+), 1 deletion(-)
9c2a32
9c2a32
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c
9c2a32
index 8a7af33b0a3e..e66687f5b701 100644
9c2a32
--- a/net/bluetooth/hci_event.c
9c2a32
+++ b/net/bluetooth/hci_event.c
9c2a32
@@ -29,6 +29,9 @@
9c2a32
 #include <net/bluetooth/bluetooth.h>
9c2a32
 #include <net/bluetooth/hci_core.h>
9c2a32
 #include <net/bluetooth/mgmt.h>
9c2a32
+#include <linux/livepatch.h>
9c2a32
+
9c2a32
+#define KLP_CVE_2021_33034_HCHAN_AMP 0x2021330340000000
9c2a32
 
9c2a32
 #include "hci_request.h"
9c2a32
 #include "hci_debugfs.h"
9c2a32
@@ -4929,6 +4932,11 @@ static void hci_loglink_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
9c2a32
 		return;
9c2a32
 
9c2a32
 	hchan->handle = le16_to_cpu(ev->handle);
9c2a32
+	if (!klp_shadow_get_or_alloc(hchan, KLP_CVE_2021_33034_HCHAN_AMP,
9c2a32
+				     0, GFP_KERNEL, NULL, NULL)) {
9c2a32
+		hci_chan_del(hchan);
9c2a32
+		return;
9c2a32
+	}
9c2a32
 
9c2a32
 	BT_DBG("hcon %p mgr %p hchan %p", hcon, hcon->amp_mgr, hchan);
9c2a32
 
9c2a32
@@ -4961,9 +4969,10 @@ static void hci_disconn_loglink_complete_evt(struct hci_dev *hdev,
9c2a32
 	hci_dev_lock(hdev);
9c2a32
 
9c2a32
 	hchan = hci_chan_lookup_handle(hdev, le16_to_cpu(ev->handle));
9c2a32
-	if (!hchan)
9c2a32
+	if (!hchan || !klp_shadow_get(hchan, KLP_CVE_2021_33034_HCHAN_AMP))
9c2a32
 		goto unlock;
9c2a32
 
9c2a32
+	klp_shadow_free(hchan, KLP_CVE_2021_33034_HCHAN_AMP, NULL);
9c2a32
 	amp_destroy_logical_link(hchan, ev->reason);
9c2a32
 
9c2a32
 unlock:
9c2a32
-- 
9c2a32
2.26.3
9c2a32