CVE-2025-40305
BaseFortify
Publication date: 2025-12-08
Last updated on: 2025-12-08
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 involves the Linux kernel's 9p file system code, specifically in the handling of pipe read operations. A recent optimization changed how the system wakes up threads waiting to read data from pipes. Previously, when the pipe was full, the system would wake up the reader thread to process more data. After the optimization, this wakeup no longer occurs as expected, causing the read work function not to schedule further work when needed. The fix changes the request function to use a different polling mechanism (p9_poll_mux) to detect when data is available (EPOLLIN) and properly schedule the read work thread, restoring the intended behavior.
How can this vulnerability impact me? :
This vulnerability can cause the Linux kernel's 9p file system to fail to properly process incoming data when pipes are full, potentially leading to stalled or delayed data reads. This could impact system performance or functionality relying on 9p file system communication, possibly causing applications to hang or behave unexpectedly due to missed wakeups for reading data.