{"id":"DEBIAN-CVE-2024-36894","details":"In the Linux kernel, the following vulnerability has been resolved:  usb: gadget: f_fs: Fix race between aio_cancel() 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 dwc3_gadget_soft_disconnect()              ...   --\u003e dwc3_stop_active_transfers()     --\u003e dwc3_gadget_giveback(-ESHUTDOWN)       --\u003e ffs_epfile_async_io_complete()   ffs_aio_cancel()         --\u003e usb_ep_free_request()            --\u003e usb_ep_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 (io_data-\u003ereq) the FFS application is also referencing it for the usb_ep_dequeue() call.  This can lead to accessing a stale/hanging pointer.  commit b566d38857fc (\"usb: gadget: f_fs: use io_data-\u003estatus consistently\") relocated the usb_ep_free_request() into ffs_epfile_async_io_complete(). However, in order to properly implement locking to mitigate this issue, the spinlock can't be added to ffs_epfile_async_io_complete(), as usb_ep_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 usb_ep_free_request() back to ffs_user_copy_worker(), and ensuring that it explicitly sets io_data-\u003ereq to NULL after freeing it within the ffs-\u003eeps_lock.  This resolves the race condition above, as the ffs_aio_cancel() routine will not continue attempting to dequeue a request that has already been freed, or the ffs_user_copy_work() not freeing the USB request until the AIO cancel is done referencing it.  This fix depends on   commit b566d38857fc (\"usb: gadget: f_fs: use io_data-\u003estatus   consistently\")","modified":"2026-09-15T09:03:08.521982521Z","published":"2024-05-30T16:15:12.857Z","upstream":["CVE-2024-36894"],"references":[{"type":"ADVISORY","url":"https://security-tracker.debian.org/tracker/CVE-2024-36894"}],"affected":[{"package":{"name":"linux","ecosystem":"Debian:12","purl":"pkg:deb/debian/linux?arch=source&distro=bookworm"},"ranges":[{"type":"ECOSYSTEM","events":[{"introduced":"0"},{"fixed":"6.1.99-1"}]}],"versions":["6.1.27-1","6.1.37-1","6.1.38-1","6.1.38-2","6.1.38-2~bpo11+1","6.1.38-3","6.1.38-4","6.1.38-4~bpo11+1","6.1.52-1","6.1.55-1","6.1.55-1~bpo11+1","6.1.64-1","6.1.66-1","6.1.67-1","6.1.69-1","6.1.69-1~bpo11+1","6.1.76-1","6.1.76-1~bpo11+1","6.1.82-1","6.1.85-1","6.1.90-1","6.1.90-1~bpo11+1","6.1.94-1","6.1.94-1~bpo11+1","6.1.98-1"],"ecosystem_specific":{"urgency":"not yet assigned"},"database_specific":{"source":"https://storage.googleapis.com/osv-test-debian-osv/debian-cve-osv/DEBIAN-CVE-2024-36894.json"}},{"package":{"name":"linux","ecosystem":"Debian:13","purl":"pkg:deb/debian/linux?arch=source&distro=trixie"},"ranges":[{"type":"ECOSYSTEM","events":[{"introduced":"0"},{"fixed":"6.8.11-1"}]}],"ecosystem_specific":{"urgency":"not yet assigned"},"database_specific":{"source":"https://storage.googleapis.com/osv-test-debian-osv/debian-cve-osv/DEBIAN-CVE-2024-36894.json"}},{"package":{"name":"linux","ecosystem":"Debian:14","purl":"pkg:deb/debian/linux?arch=source&distro=forky"},"ranges":[{"type":"ECOSYSTEM","events":[{"introduced":"0"},{"fixed":"6.8.11-1"}]}],"ecosystem_specific":{"urgency":"not yet assigned"},"database_specific":{"source":"https://storage.googleapis.com/osv-test-debian-osv/debian-cve-osv/DEBIAN-CVE-2024-36894.json"}}],"schema_version":"1.9.0","severity":[{"type":"CVSS_V3","score":"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"}]}