CVE-2026-22980
BaseFortify
Publication date: 2026-01-23
Last updated on: 2026-04-27
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 5.11 (inc) to 5.15.198 (exc) |
| 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.13 (inc) to 6.18.6 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.6.121 (exc) |
| linux | linux_kernel | From 6.7 (inc) to 6.12.66 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.1.161 (exc) |
| linux | linux_kernel | From 3.18 (inc) to 5.10.248 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-416 | The product reuses or references memory after it has been freed. At some point afterward, the memory may be allocated again and saved in another pointer, while the original pointer references a location somewhere within the new allocation. Any operations using the original pointer are no longer valid because the memory "belongs" to the code that operates on the new pointer. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability in the Linux kernel involves a race condition when writing to the v4_end_grace variable in the NFS daemon (nfsd). The race occurs during server shutdown, where memory can be accessed after it has been freed, leading to a use-after-free condition. The issue arises because locking cannot be held across the nfsd4_end_grace() call due to potential deadlocks, and the work queue that calls nfsd4_end_grace() during shutdown must be carefully managed to avoid restarting work after shutdown has completed. The patch adds new flags and locking mechanisms to ensure safe client tracking calls and prevent scheduling work after shutdown, thereby resolving the race and use-after-free vulnerability.
How can this vulnerability impact me? :
This vulnerability can lead to a use-after-free condition in the Linux kernel's NFS server component, which may cause system instability, crashes, or potentially allow an attacker to execute arbitrary code or cause denial of service by exploiting the race condition during server shutdown.