CVE-2025-38048
BaseFortify
Publication date: 2025-06-18
Last updated on: 2025-12-17
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | to 5.15.185 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.1.141 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.6.93 (exc) |
| linux | linux_kernel | From 6.7 (inc) to 6.12.31 (exc) |
| linux | linux_kernel | From 6.13 (inc) to 6.14.9 (exc) |
| linux | linux_kernel | 6.15 |
| linux | linux_kernel | 6.15 |
| linux | linux_kernel | 6.15 |
| debian | debian_linux | 11.0 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-362 | The product contains a concurrent code sequence that requires temporary, exclusive access to a shared resource, but a timing window exists in which the shared resource can be modified by another code sequence operating concurrently. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a data race condition in the Linux kernel's virtio_ring driver. Specifically, the event_triggered variable is accessed concurrently without proper synchronization, causing inconsistent reads and writes. This can lead to the driver temporarily misinterpreting whether the device should send an interrupt notification, but it does not cause a functional failure beyond this optimization hint being unreliable. The issue was fixed by marking the access as data_racy to avoid the race condition.
How can this vulnerability impact me? :
The impact of this vulnerability is limited to a temporary incorrect suggestion by the driver that the device should not send an interrupt notification. Since event_triggered is only an optimization hint, this race condition does not cause a crash or data corruption but may affect performance or interrupt handling efficiency temporarily.