CVE-2023-54307
Memory Leak in Linux Kernel ptp_qoriq Driver Probe Function
Publication date: 2025-12-30
Last updated on: 2025-12-30
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a memory leak in the Linux kernel's ptp_qoriq driver during its probe() function. Specifically, the issue arises because the memory allocated by ioremap() is not properly released when ptp_qoriq_init() returns early with an -ENODEV error. The fix involves changing the code to correctly release the 'base' memory mapping, preventing the leak and improving code readability.
How can this vulnerability impact me? :
The memory leak could lead to increased memory usage and potential resource exhaustion in systems using the ptp_qoriq driver, which might degrade system performance or stability over time if the error path is triggered repeatedly.