Bug 2300437 (CVE-2024-41062) - CVE-2024-41062 kernel: bluetooth/l2cap: sync sock recv cb and release
Summary: CVE-2024-41062 kernel: bluetooth/l2cap: sync sock recv cb and release
Keywords:
Status: NEW
Alias: CVE-2024-41062
Product: Security Response
Classification: Other
Component: vulnerability
Version: unspecified
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Product Security DevOps Team
QA Contact:
URL:
Whiteboard:
Depends On: 2301601
Blocks:
TreeView+ depends on / blocked
 
Reported: 2024-07-29 15:43 UTC by OSIDB Bzimport
Modified: 2024-07-31 04:21 UTC (History)
4 users (show)

Fixed In Version: kernel 6.1.101, kernel 6.6.42, kernel 6.9.11, kernel 6.10
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed:
Embargoed:


Attachments (Terms of Use)

Description OSIDB Bzimport 2024-07-29 15:43:12 UTC
In the Linux kernel, the following vulnerability has been resolved:

bluetooth/l2cap: sync sock recv cb and release

The problem occurs between the system call to close the sock and hci_rx_work,
where the former releases the sock and the latter accesses it without lock protection.

           CPU0                       CPU1
           ----                       ----
           sock_close                 hci_rx_work
	   l2cap_sock_release         hci_acldata_packet
	   l2cap_sock_kill            l2cap_recv_frame
	   sk_free                    l2cap_conless_channel
	                              l2cap_sock_recv_cb

If hci_rx_work processes the data that needs to be received before the sock is
closed, then everything is normal; Otherwise, the work thread may access the
released sock when receiving data.

Add a chan mutex in the rx callback of the sock to achieve synchronization between
the sock release and recv cb.

Sock is dead, so set chan data to NULL, avoid others use invalid sock pointer.

Comment 1 Mauro Matteo Cascella 2024-07-30 12:00:22 UTC
Upstream advisory:
https://lore.kernel.org/linux-cve-announce/2024072906-CVE-2024-41062-cb85@gregkh/T

Comment 2 Mauro Matteo Cascella 2024-07-30 12:00:42 UTC
Created kernel tracking bugs for this issue:

Affects: fedora-all [bug 2301601]


Note You need to log in before you can comment on or make changes to this bug.