CVE-2024-26748
HighIn the Linux kernel, the following vulnerability has been resolved: usb: cdns3: fix memory double free when handle zero packet 829 if (request->complete) { 830 spin_unlock(&priv_dev->lock); 831 usb_gadget_giveback_request(&priv_ep->endpoint, 832 request); 833 spin_lock(&priv_dev->lock); 834 } 835 836 if (request->buf == priv_dev->zlp_buf) 837 cdns3_gadget_ep_free_request(&priv_ep->endpoint, request); Driver append an additional zero packet request when queue a packet, which length mod max packet size is 0. When transfer complete, run to line 831, usb_gadget_giveback_request() will free this requestion. 836 condition is true, so cdns3_gadget_ep_free_request() free this request again. Log: [ 1920.140696][ T150] BUG: KFENCE: use-after-free read in cdns3_gadget_giveback+0x134/0x2c0 [cdns3] [ 1920.140696][ T150] [ 1920.151837][ T150] Use-after-free read at 0x000000003d1cd10b (in kfence-#36): [ 1920.159082][ T150] cdns3_gadget_giveback+0x134/0x2c0 [cdns3] [ 1920.164988][ T150] cdns3_transfer_completed+0x438/0x5f8 [cdns3] Add check at line 829, skip call usb_gadget_giveback_request() if it is additional zero length packet request. Needn't call usb_gadget_giveback_request() because it is allocated in this driver.
CVSS 3.1 score
7.8
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Weakness type
CWE-415CVE-2024-26748 is classified as CWE-415
See CWE-415 on MITRE CWE for full details on this weakness type.
References
The following references provide additional information about CVE-2024-26748 including vendor advisories, patch commits, exploit details, and third-party analysis. Links are sourced from the NIST NVD database.
-
Mailing List
-
PatchKernel patch commithttps://git.kernel.org/stable/c/1e204a8e9eb514e22a6567fb340ebb47df3f3a48
-
PatchKernel patch commithttps://git.kernel.org/stable/c/3a2a909942b5335b7ea66366d84261b3ed5f89c8
-
PatchKernel patch commithttps://git.kernel.org/stable/c/5fd9e45f1ebcd57181358af28506e8a661a260b3
Frequently asked questions
-
What is CVE-2024-26748?
CVE-2024-26748 is a High severity Linux kernel vulnerability with a CVSS score of 7.8 out of 10 . CVE-2024-26748 has not been confirmed as actively exploited and is not listed in the CISA KEV catalog.
-
What is the CVSS score for CVE-2024-26748?
CVE-2024-26748 has a CVSS score of 7.8 out of 10, rated High severity (CVSS 3.1). The vector string is
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H. -
Is there a patch available for CVE-2024-26748?
No patch is currently available for CVE-2024-26748. Monitor the NIST NVD and your Linux distribution's security advisories for updates.
-
Is CVE-2024-26748 actively exploited?
No — CVE-2024-26748 has not been confirmed as actively exploited. It is not listed in the CISA Known Exploited Vulnerabilities (KEV) catalog.