CVE-2026-23168
BaseFortify
Publication date: 2026-02-14
Last updated on: 2026-03-18
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 6.2 (inc) to 6.6.123 (exc) |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 6.7 (inc) to 6.12.69 (exc) |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 6.0 (inc) to 6.1.162 (exc) |
| linux | linux_kernel | From 6.13 (inc) to 6.18.9 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability exists in the Linux kernel's flexible proportions code, specifically related to the function fprop_new_period(). It involves a race condition between softirq and hardirq contexts that can cause a deadlock. When a timer fires in softirq context, it calls fprop_new_period(), which begins a write sequence. However, if a hardirq is raised during this process, the code may enter an infinite loop because it sees an odd sequence count and keeps looping indefinitely.
This deadlock occurs only if the backing device info (bdi) has configured a maximum fraction of writeout throughput, which is rare but more common in certain cases like FUSE bdis. The fix involves making the write section of the sequence counter safe against interrupts (irqsafe) to prevent this race condition.
How can this vulnerability impact me? :
This vulnerability can cause a deadlock in the Linux kernel's writeout process under certain rare conditions. Specifically, if the system uses a backing device with a configured maximum fraction of writeout throughput (such as FUSE bdis), the kernel may enter an infinite loop during writeback operations. This can lead to system instability, degraded performance, or a hang in the affected subsystem.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
I don't know
What immediate steps should I take to mitigate this vulnerability?
I don't know