CVE-2024-36894

Source
https://cve.org/CVERecord?id=CVE-2024-36894
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2024-36894.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2024-36894
Downstream
Related
Published
2024-05-30T15:28:59.689Z
Modified
2026-03-14T12:34:15.369048Z
Severity
  • 5.6 (Medium) CVSS_V3 - CVSS:3.1/AV:P/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:H CVSS Calculator
Summary
usb: gadget: f_fs: Fix race between aio_cancel() and AIO request complete
Details

In the Linux kernel, the following vulnerability has been resolved:

usb: gadget: ffs: Fix race between aiocancel() and AIO request complete

FFS based applications can utilize the aio_cancel() callback to dequeue pending USB requests submitted to the UDC. There is a scenario where the FFS application issues an AIO cancel call, while the UDC is handling a soft disconnect. For a DWC3 based implementation, the callstack looks like the following:

DWC3 Gadget                               FFS Application

dwc3gadgetsoftdisconnect() ... --> dwc3stopactivetransfers() --> dwc3gadgetgiveback(-ESHUTDOWN) --> ffsepfileasynciocomplete() ffsaiocancel() --> usbepfreerequest() --> usbep_dequeue()

There is currently no locking implemented between the AIO completion handler and AIO cancel, so the issue occurs if the completion routine is running in parallel to an AIO cancel call coming from the FFS application. As the completion call frees the USB request (iodata->req) the FFS application is also referencing it for the usbep_dequeue() call. This can lead to accessing a stale/hanging pointer.

commit b566d38857fc ("usb: gadget: ffs: use iodata->status consistently") relocated the usbepfreerequest() into ffsepfileasynciocomplete(). However, in order to properly implement locking to mitigate this issue, the spinlock can't be added to ffsepfileasynciocomplete(), as usbep_dequeue() (if successfully dequeuing a USB request) will call the function driver's completion handler in the same context. Hence, leading into a deadlock.

Fix this issue by moving the usbepfreerequest() back to ffsusercopyworker(), and ensuring that it explicitly sets iodata->req to NULL after freeing it within the ffs->epslock. This resolves the race condition above, as the ffsaiocancel() routine will not continue attempting to dequeue a request that has already been freed, or the ffsusercopy_work() not freeing the USB request until the AIO cancel is done referencing it.

This fix depends on commit b566d38857fc ("usb: gadget: ffs: use iodata->status consistently")

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2024/36xxx/CVE-2024-36894.json"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
2e4c7553cd6f9c68bb741582dcb614edcbeca70f
Fixed
f71a53148ce34898fef099b75386a3a9f4449311
Fixed
9e72ef59cbe61cd1243857a6418ca92104275867
Fixed
e500b1c4e29ad0bd1c1332a1eaea2913627a92dd
Fixed
3613e5023f09b3308545e9d1acda86017ebd418a
Fixed
a0fdccb1c9e027e3195f947f61aa87d6d0d2ea14
Fixed
73c05ad46bb4fbbdb346004651576d1c8dbcffbb
Fixed
d7461830823242702f5d84084bcccb25159003f4
Fixed
24729b307eefcd7c476065cd7351c1a018082c19

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2024-36894.json"