PatchSiren cyber security CVE debrief
CVE-2026-53399 Linux CVE debrief
A Linux kernel vulnerability, CVE-2026-53399, was resolved by releasing layout stid on setlease failure. The nfsd4_alloc_layout_stateid() function publishes a new stid into cl->cl_stateids via idr_alloc_cyclic() under cl_lock before returning to nfsd4_layout_setlease(). When nfsd4_layout_setlease() fails, the error path frees the layout stateid directly with kmem_cache_free() without calling idr_remove(), leaving the IDR slot pointing at freed slab memory. The correct teardown for an IDR-published stid is nfs4_put_stid(), which removes the IDR slot under cl_lock, dispatches sc_free (nfsd4_free_layout_stateid) to release ls->ls_file via nfsd4_close_layout(), and drops the nfs4_file reference. System administrators and security teams responsible for Linux kernel-based systems should be aware of this vulnerability and take necessary actions to ensure their systems are updated with the patched kernel.
- Vendor
- Linux
- Product
- Unknown
- CVSS
- CRITICAL 9.8
- CISA KEV
- Not listed in stored evidence
- Original CVE published
- 2026-07-19
- Original CVE updated
- 2026-08-17
- Advisory published
- 2026-07-19
- Advisory updated
- 2026-08-17
Who should care
System administrators and security teams responsible for Linux kernel-based systems should be aware of this vulnerability and take necessary actions to ensure their systems are updated with the patched kernel. They should verify the patched kernel, monitor system logs for potential exploitation attempts, and review compensating controls for exposed systems.
Technical summary
The vulnerability is caused by the failure of nfsd4_layout_setlease() to release the layout stid, leading to a dangling pointer in the IDR slot. The correct teardown for an IDR-published stid is nfs4_put_stid(), which removes the IDR slot under cl_lock, dispatches sc_free (nfsd4_free_layout_stateid) to release ls->ls_file via nfsd4_close_layout(), and drops the nfs4_file reference. This issue can be resolved by hoisting the ls_fenced / ls_fence_delay / INIT_DELAYED_WORK initialization above the nfsd4_layout_setlease() call and replacing the manual nfsd_file_put + put_nfs4_file + kmem_cache_free cleanup with a single nfs4_put_stid(stp).
Defensive priority
High
Recommended defensive actions
- Update Linux kernel to the latest version
- Verify and apply patches for nfsd4_alloc_layout_stateid() and nfsd4_layout_setlease()
- Monitor system logs for potential exploitation attempts
- Review compensating controls for exposed systems while remediation is scheduled and verified
- Check relevant monitoring, detection, and logs for exposed assets that need extra review
- Track exceptions, retest remediated assets, and close the item only after evidence is documented
- Confirm whether affected product deployments exist in managed environments and assign an owner for follow-up
Evidence notes
The CVE record was published on 2026-07-19T12:16:51.063Z and has not been modified since then. The NVD entry is currently Received. There is no additional information available about the vulnerability beyond what is provided in the CVE record and NVD entry. The Linux kernel vulnerability, CVE-2026-53399, was resolved by releasing layout stid on setlease failure. The nfsd4_alloc_layout_stateid() function publishes a new stid into cl->cl_stateids via idr_alloc_cyclic() under cl_lock before returning to nfsd4_layout_setlease(). When nfsd4_layout_setlease() fails, the error path frees the layout stateid directly with kmem_cache_free() without calling idr_remove(), leaving the IDR slot pointing at freed slab memory. System administrators and security teams should verify the patched kernel and monitor system logs for potential exploitation attempts.
Sources and references
Verified primary and authoritative sources
-
CVE-2026-53399 CVE Program record
Publisher, destination, and source semantics verified
URL: https://www.cve.org/CVERecord?id=CVE-2026-53399
CVE Program - Official CVE Program record with source-provided CVE metadata.
-
CVE-2026-53399 NVD vulnerability detail
Publisher, destination, and source semantics verified
URL: https://nvd.nist.gov/vuln/detail/CVE-2026-53399
NIST National Vulnerability Database - Official NIST NVD detail page and source-specific vulnerability assessment.
Supplemental references
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/30d55c8aabb261bc3f427d6b9aae7ef6206063f9
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/83c2b7797742339bb768f83935f7ca33950db138
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/8dee7c278f1c2b5bb80e17a6281c3812fc8b0cdd
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/d369e5edfaaf83a448016e2f1da392b2174be801
416baaa9-dc9f-4396-8d5f-8c081fb06d67
Methodology and review provenance
AI-assisted synthesis based on stored public vulnerability evidence. System validation, approval state, and publication status do not by themselves establish human review of this revision. PatchSiren helps prioritize defensive review and does not prove exposure or remediation on any system.