Blame SOURCES/CVE-2021-33034.patch

a4df0d
From: Joe Lawrence <joe.lawrence@redhat.com>
a4df0d
Subject: [RHEL7.9 KPATCH v2] bluetooth: kpatch fixes for CVE-2021-33034
a4df0d
Date: Thu, 10 Jun 2021 16:45:14 -0400
a4df0d
a4df0d
Kernels:
a4df0d
3.10.0-1160.el7
a4df0d
3.10.0-1160.2.1.el7
a4df0d
3.10.0-1160.2.2.el7
a4df0d
3.10.0-1160.6.1.el7
a4df0d
3.10.0-1160.11.1.el7
a4df0d
3.10.0-1160.15.2.el7
a4df0d
3.10.0-1160.21.1.el7
a4df0d
3.10.0-1160.24.1.el7
a4df0d
3.10.0-1160.25.1.el7
a4df0d
3.10.0-1160.31.1.el7
a4df0d
a4df0d
Changes since last build:
a4df0d
[x86_64]:
a4df0d
hci_event.o: changed function: hci_event_packet
a4df0d
hci_event.o: changed function: hci_loglink_complete_evt.isra.120
a4df0d
hci_event.o: new function: hci_remote_name_evt.isra.69
a4df0d
hci_event.o: new function: hci_user_passkey_request_evt.isra.111
a4df0d
a4df0d
[ppc64le]:
a4df0d
hci_event.o: changed function: hci_cmd_status_evt
a4df0d
hci_event.o: changed function: hci_event_packet
a4df0d
hci_event.o: changed function: hci_inquiry_complete_evt.isra.37
a4df0d
hci_event.o: changed function: hci_inquiry_result_evt.isra.46
a4df0d
hci_event.o: changed function: hci_keypress_notify_evt.isra.109
a4df0d
hci_event.o: changed function: hci_le_meta_evt
a4df0d
hci_event.o: changed function: hci_link_key_request_evt.isra.49
a4df0d
hci_event.o: changed function: hci_num_comp_blocks_evt.isra.117
a4df0d
hci_event.o: changed function: hci_remote_ext_features_evt.isra.64
a4df0d
hci_event.o: changed function: hci_sync_conn_complete_evt.isra.103
a4df0d
hci_event.o: changed function: hci_user_passkey_notify_evt.isra.108
a4df0d
hci_event.o: new function: conn_set_key
a4df0d
hci_event.o: new function: hci_auth_complete_evt.isra.61
a4df0d
hci_event.o: new function: hci_conn_request_evt.isra.56
a4df0d
hci_event.o: new function: hci_inquiry_result_with_rssi_evt.isra.47
a4df0d
hci_event.o: new function: hci_io_capa_request_evt.isra.104
a4df0d
hci_event.o: new function: hci_outgoing_auth_needed.isra.2.part.3
a4df0d
hci_event.o: new function: hci_pscan_rep_mode_evt.isra.54
a4df0d
hci_event.o: new function: hci_remote_host_features_evt.isra.55
a4df0d
hci_event.o: new function: hci_simple_pair_complete_evt.isra.62
a4df0d
a4df0d
---------------------------
a4df0d
a4df0d
Kernels:
a4df0d
3.10.0-1160.el7
a4df0d
3.10.0-1160.2.1.el7
a4df0d
3.10.0-1160.2.2.el7
a4df0d
3.10.0-1160.6.1.el7
a4df0d
3.10.0-1160.11.1.el7
a4df0d
3.10.0-1160.15.2.el7
a4df0d
3.10.0-1160.21.1.el7
a4df0d
3.10.0-1160.24.1.el7
a4df0d
3.10.0-1160.25.1.el7
a4df0d
3.10.0-1160.31.1.el7
a4df0d
a4df0d
Modifications: none
a4df0d
a4df0d
commit e103bba0f15a04cb71a2a472973a1ad79aabfd7a
a4df0d
Author: Gopal Tiwari <gtiwari@redhat.com>
a4df0d
Date:   Thu May 20 12:01:15 2021 +0530
a4df0d
a4df0d
    Bluetooth: verify AMP hci_chan before amp_destroy
a4df0d
a4df0d
    Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1962532
a4df0d
a4df0d
    CVE: CVE-2021-33034
a4df0d
a4df0d
    Testing: Sanity_only.
a4df0d
a4df0d
    Upstream: Merged.
a4df0d
a4df0d
    commit 5c4c8c9544099bb9043a10a5318130a943e32fc3
a4df0d
    Author: Archie Pusaka <apusaka@chromium.org>
a4df0d
    Date:   Mon Mar 22 14:03:11 2021 +0800
a4df0d
a4df0d
        Bluetooth: verify AMP hci_chan before amp_destroy
a4df0d
a4df0d
        hci_chan can be created in 2 places: hci_loglink_complete_evt() if
a4df0d
        it is an AMP hci_chan, or l2cap_conn_add() otherwise. In theory,
a4df0d
        Only AMP hci_chan should be removed by a call to
a4df0d
        hci_disconn_loglink_complete_evt(). However, the controller might mess
a4df0d
        up, call that function, and destroy an hci_chan which is not initiated
a4df0d
        by hci_loglink_complete_evt().
a4df0d
a4df0d
        This patch adds a verification that the destroyed hci_chan must have
a4df0d
        been init'd by hci_loglink_complete_evt().
a4df0d
a4df0d
        Example crash call trace:
a4df0d
        Call Trace:
a4df0d
         __dump_stack lib/dump_stack.c:77 [inline]
a4df0d
         dump_stack+0xe3/0x144 lib/dump_stack.c:118
a4df0d
         print_address_description+0x67/0x22a mm/kasan/report.c:256
a4df0d
         kasan_report_error mm/kasan/report.c:354 [inline]
a4df0d
         kasan_report mm/kasan/report.c:412 [inline]
a4df0d
         kasan_report+0x251/0x28f mm/kasan/report.c:396
a4df0d
         hci_send_acl+0x3b/0x56e net/bluetooth/hci_core.c:4072
a4df0d
         l2cap_send_cmd+0x5af/0x5c2 net/bluetooth/l2cap_core.c:877
a4df0d
         l2cap_send_move_chan_cfm_icid+0x8e/0xb1 net/bluetooth/l2cap_core.c:4661
a4df0d
         l2cap_move_fail net/bluetooth/l2cap_core.c:5146 [inline]
a4df0d
         l2cap_move_channel_rsp net/bluetooth/l2cap_core.c:5185 [inline]
a4df0d
         l2cap_bredr_sig_cmd net/bluetooth/l2cap_core.c:5464 [inline]
a4df0d
         l2cap_sig_channel net/bluetooth/l2cap_core.c:5799 [inline]
a4df0d
         l2cap_recv_frame+0x1d12/0x51aa net/bluetooth/l2cap_core.c:7023
a4df0d
         l2cap_recv_acldata+0x2ea/0x693 net/bluetooth/l2cap_core.c:7596
a4df0d
         hci_acldata_packet net/bluetooth/hci_core.c:4606 [inline]
a4df0d
         hci_rx_work+0x2bd/0x45e net/bluetooth/hci_core.c:4796
a4df0d
         process_one_work+0x6f8/0xb50 kernel/workqueue.c:2175
a4df0d
         worker_thread+0x4fc/0x670 kernel/workqueue.c:2321
a4df0d
         kthread+0x2f0/0x304 kernel/kthread.c:253
a4df0d
         ret_from_fork+0x3a/0x50 arch/x86/entry/entry_64.S:415
a4df0d
a4df0d
        Allocated by task 38:
a4df0d
         set_track mm/kasan/kasan.c:460 [inline]
a4df0d
         kasan_kmalloc+0x8d/0x9a mm/kasan/kasan.c:553
a4df0d
         kmem_cache_alloc_trace+0x102/0x129 mm/slub.c:2787
a4df0d
         kmalloc include/linux/slab.h:515 [inline]
a4df0d
         kzalloc include/linux/slab.h:709 [inline]
a4df0d
         hci_chan_create+0x86/0x26d net/bluetooth/hci_conn.c:1674
a4df0d
         l2cap_conn_add.part.0+0x1c/0x814 net/bluetooth/l2cap_core.c:7062
a4df0d
         l2cap_conn_add net/bluetooth/l2cap_core.c:7059 [inline]
a4df0d
         l2cap_connect_cfm+0x134/0x852 net/bluetooth/l2cap_core.c:7381
a4df0d
         hci_connect_cfm+0x9d/0x122 include/net/bluetooth/hci_core.h:1404
a4df0d
         hci_remote_ext_features_evt net/bluetooth/hci_event.c:4161 [inline]
a4df0d
         hci_event_packet+0x463f/0x72fa net/bluetooth/hci_event.c:5981
a4df0d
         hci_rx_work+0x197/0x45e net/bluetooth/hci_core.c:4791
a4df0d
         process_one_work+0x6f8/0xb50 kernel/workqueue.c:2175
a4df0d
         worker_thread+0x4fc/0x670 kernel/workqueue.c:2321
a4df0d
         kthread+0x2f0/0x304 kernel/kthread.c:253
a4df0d
         ret_from_fork+0x3a/0x50 arch/x86/entry/entry_64.S:415
a4df0d
a4df0d
        Freed by task 1732:
a4df0d
         set_track mm/kasan/kasan.c:460 [inline]
a4df0d
         __kasan_slab_free mm/kasan/kasan.c:521 [inline]
a4df0d
         __kasan_slab_free+0x106/0x128 mm/kasan/kasan.c:493
a4df0d
         slab_free_hook mm/slub.c:1409 [inline]
a4df0d
         slab_free_freelist_hook+0xaa/0xf6 mm/slub.c:1436
a4df0d
         slab_free mm/slub.c:3009 [inline]
a4df0d
         kfree+0x182/0x21e mm/slub.c:3972
a4df0d
         hci_disconn_loglink_complete_evt net/bluetooth/hci_event.c:4891 [inline]
a4df0d
         hci_event_packet+0x6a1c/0x72fa net/bluetooth/hci_event.c:6050
a4df0d
         hci_rx_work+0x197/0x45e net/bluetooth/hci_core.c:4791
a4df0d
         process_one_work+0x6f8/0xb50 kernel/workqueue.c:2175
a4df0d
         worker_thread+0x4fc/0x670 kernel/workqueue.c:2321
a4df0d
         kthread+0x2f0/0x304 kernel/kthread.c:253
a4df0d
         ret_from_fork+0x3a/0x50 arch/x86/entry/entry_64.S:415
a4df0d
a4df0d
       The buggy address belongs to the object at ffff8881d7af9180
a4df0d
         which belongs to the cache kmalloc-128 of size 128
a4df0d
        The buggy address is located 24 bytes inside of
a4df0d
         128-byte region [ffff8881d7af9180, ffff8881d7af9200)
a4df0d
        The buggy address belongs to the page:
a4df0d
        page:ffffea00075ebe40 count:1 mapcount:0 mapping:ffff8881da403200 index:0x0
a4df0d
        flags: 0x8000000000000200(slab)
a4df0d
        raw: 8000000000000200 dead000000000100 dead000000000200 ffff8881da403200
a4df0d
        raw: 0000000000000000 0000000080150015 00000001ffffffff 0000000000000000
a4df0d
        page dumped because: kasan: bad access detected
a4df0d
a4df0d
        Memory state around the buggy address:
a4df0d
         ffff8881d7af9080: fc fc fc fc fc fc fc fc fb fb fb fb fb fb fb fb
a4df0d
         ffff8881d7af9100: fb fb fb fb fb fb fb fb fc fc fc fc fc fc fc fc
a4df0d
        >ffff8881d7af9180: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
a4df0d
                                    ^
a4df0d
         ffff8881d7af9200: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
a4df0d
         ffff8881d7af9280: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
a4df0d
a4df0d
        Signed-off-by: Archie Pusaka <apusaka@chromium.org>
a4df0d
        Reported-by: syzbot+98228e7407314d2d4ba2@syzkaller.appspotmail.com
a4df0d
        Reviewed-by: Alain Michaud <alainm@chromium.org>
a4df0d
        Reviewed-by: Abhishek Pandit-Subedi <abhishekpandit@chromium.org>
a4df0d
        Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
a4df0d
a4df0d
    Signed-off-by: Gopal Tiwari <gtiwari@redhat.com>
a4df0d
a4df0d
Signed-off-by: Joel Savitz <jsavitz@redhat.com> for v1
a4df0d
Signed-off-by: Joe Lawrence <joe.lawrence@redhat.com>
a4df0d
Acked-by: Artem Savkov <asavkov@redhat.com>
a4df0d
Acked-by: Yannick Cote <ycote@redhat.com>
a4df0d
---
a4df0d
a4df0d
v1:
a4df0d
- not posted, but Joel sent to my e-mail
a4df0d
a4df0d
v2:
a4df0d
- minor code cleanup from v1, removed intermediate variables
a4df0d
- a bunchmore ppc64le inlines changed, but this time I didn't attempt
a4df0d
  to steer the compiler.  I assume it's a similar fool's errand as with
a4df0d
  8.4, only with even more functions to worry about.
a4df0d
- tested repro on ppc64le
a4df0d
a4df0d
Z-Status: merged
a4df0d
a4df0d
KT0 test PASS: https://beaker.engineering.redhat.com/jobs/5461337
a4df0d
for kpatch-patch-3_10_0-1160-1-7.el7 scratch build:
a4df0d
https://brewweb.engineering.redhat.com/brew/taskinfo?taskID=37392562
a4df0d
a4df0d
 net/bluetooth/hci_event.c | 11 ++++++++++-
a4df0d
 1 file changed, 10 insertions(+), 1 deletion(-)
a4df0d
a4df0d
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c
a4df0d
index e17aacbc5630..613b2493288f 100644
a4df0d
--- a/net/bluetooth/hci_event.c
a4df0d
+++ b/net/bluetooth/hci_event.c
a4df0d
@@ -29,6 +29,9 @@
a4df0d
 #include <net/bluetooth/bluetooth.h>
a4df0d
 #include <net/bluetooth/hci_core.h>
a4df0d
 #include <net/bluetooth/mgmt.h>
a4df0d
+#include <linux/livepatch.h>
a4df0d
+
a4df0d
+#define KLP_CVE_2021_33034_HCHAN_AMP 0x2021330340000000
a4df0d
 
a4df0d
 #include "hci_request.h"
a4df0d
 #include "hci_debugfs.h"
a4df0d
@@ -4394,6 +4397,11 @@ static void hci_loglink_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
a4df0d
 		return;
a4df0d
 
a4df0d
 	hchan->handle = le16_to_cpu(ev->handle);
a4df0d
+	if (!klp_shadow_get_or_alloc(hchan, KLP_CVE_2021_33034_HCHAN_AMP,
a4df0d
+				     0, GFP_KERNEL, NULL, NULL)) {
a4df0d
+		hci_chan_del(hchan);
a4df0d
+		return;
a4df0d
+	}
a4df0d
 
a4df0d
 	BT_DBG("hcon %p mgr %p hchan %p", hcon, hcon->amp_mgr, hchan);
a4df0d
 
a4df0d
@@ -4426,9 +4434,10 @@ static void hci_disconn_loglink_complete_evt(struct hci_dev *hdev,
a4df0d
 	hci_dev_lock(hdev);
a4df0d
 
a4df0d
 	hchan = hci_chan_lookup_handle(hdev, le16_to_cpu(ev->handle));
a4df0d
-	if (!hchan)
a4df0d
+	if (!hchan || !klp_shadow_get(hchan, KLP_CVE_2021_33034_HCHAN_AMP))
a4df0d
 		goto unlock;
a4df0d
 
a4df0d
+	klp_shadow_free(hchan, KLP_CVE_2021_33034_HCHAN_AMP, NULL);
a4df0d
 	amp_destroy_logical_link(hchan, ev->reason);
a4df0d
 
a4df0d
 unlock:
a4df0d
-- 
a4df0d
2.26.3
a4df0d
a4df0d