CVE-2026-89739

Source
https://cve.org/CVERecord?id=CVE-2026-89739
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-89739.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-89739
Downstream
Published
2026-09-11T19:46:46Z
Modified
2026-09-13T03:47:20Z
Summary
usb: dwc3: gadget: Fix use-after-free in dwc3_gadget_free_endpoints due to race condition
Details

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

usb: dwc3: gadget: Fix use-after-free in dwc3_gadget_free_endpoints due to race condition

In dwc3_gadget_init_endpoint, &dep->nostream_work is bound with dwc3_nostream_work, and dwc3_gadget_endpoint_stream_event can queue this delayed work on system_percpu_wq when a DEPEVT_STREAM_NOSTREAM event is received.

If we remove the gadget, dwc3_gadget_free_endpoints makes cleanup and the memory allocated for dep with kzalloc() is released by kfree(dep), while the delayed work mentioned above may still be pending or running. The sequence of operations that may lead to a UAF bug is as follows:

CPU0 CPU1

                                      | dwc3_thread_interrupt
                                      | dwc3_endpoint_interrupt
                                      | dwc3_gadget_endpoint_stream_event
                                      | queue_delayed_work(system_percpu_wq,
                                      |                    &dep->nostream_work)

dwc3_gadget_free_endpoints | dwc3_free_trb_pool(dep) | list_del(&dep->endpoint.ep_list) | dwc3_debugfs_remove_endpoint_dir(dep) | kfree(dep) | // dep is freed | | dwc3_nostream_work | // use dep (use-after-free)

Fix it by canceling the delayed work before kfree(dep) in dwc3_gadget_free_endpoints.

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/89xxx/CVE-2026-89739.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
dcfe437492e27d54f3ac491aed024da760f5c43c
Fixed
448e95c0f3eaa8d99f16ccae92ab94545f14413b
Fixed
93e08b13a7a30e4e78556d993720e0bc36231ec7
Fixed
9c855832790cd488d87de1885974f4c37cfe7358

Database specific

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

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
6.14.0
Fixed
6.18.50
Type
ECOSYSTEM
Events
Introduced
6.19.0
Fixed
7.2.4

Database specific

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