CVE-2026-53397 Details
Description
In the Linux kernel, the following vulnerability has been resolved: nfsd: fix posix_acl leak on SETACL decode failure nfsaclsvc_decode_setaclargs() and nfs3svc_decode_setaclargs() each call nfs_stream_decode_acl() twice, first for NFS_ACL and then for NFS_DFACL. Each successful call transfers ownership of a freshly allocated posix_acl into argp->acl_access or argp->acl_default. If the first call succeeds but the second fails, the decoder returns false and argp->acl_access is left dangling. ACLPROC2_SETACL.pc_release was wired to nfssvc_release_attrstat and ACLPROC3_SETACL.pc_release was wired to nfs3svc_release_fhandle. Both only call fh_put() and have no knowledge of the ACL fields on argp. The posix_acl_release() pairs sat at the out: labels inside nfsacld_proc_setacl() and nfsd3_proc_setacl(), but svc_process() skips pc_func when pc_decode returns false, so that cleanup is unreachable on decode failure: svc_process_common() pc_decode() /* decode_setaclargs: false */ /* pc_func skipped */ pc_release() /* fh_put only -- ACLs leaked */ The orphaned posix_acl is leaked for the lifetime of the server. Fix by adding nfsaclsvc_release_setacl() and nfs3svc_release_setacl(), which release both argp->acl_access and argp->acl_default in addition to fh_put(), and wiring them as pc_release for their respective SETACL procedures. pc_release runs on every path svc_process() takes after decode, including decode failure, so the posix_acl_release() pairs are removed from the proc functions' out: labels to keep ownership in one place. This matches the existing release_getacl() pattern used by the sibling GETACL procedures.
A vulnerability in the Linux kernel's NFS server implementation can lead to a memory leak of POSIX Access Control Lists (ACLs). This issue arises in the handling of SETACL operations for NFSv3, where the ACL decoder can leave allocated ACLs dangling if an error occurs during processing. The leaked ACLs persist for the lifetime of the server, potentially leading to increased memory usage and degradation of server performance.
Users can upgrade to the latest version of the Linux kernel, where this vulnerability has been addressed.
Metrics
CVSS 4.0 Severity and Vector Strings:
No CVSS 4.0 data is available for this CVE.
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
No SSVC data is available for this CVE.
References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://git.kernel.org/stable/c/0853ac544c590880d797b04daa33fcb72b6be0e1 | kernel.org | Patch |
| https://git.kernel.org/stable/c/136b416593f1349cf6f72c8e3d18f0f204ee8545 | kernel.org | Patch |
| https://git.kernel.org/stable/c/1e96239fddcefacf6afe6c498357be68eacbcabc | kernel.org | Patch |
| https://git.kernel.org/stable/c/887f92ceccf3eacd5f2402db21254d66372fae00 | kernel.org | Patch |
| https://git.kernel.org/stable/c/a5b42c1e4ff2befaa6b96f7cbf32174751eba083 | kernel.org | Patch |
| https://git.kernel.org/stable/c/b2eb1ffd511d1b3c3e21122f97cbbccea411e277 | kernel.org | Patch |
| https://git.kernel.org/stable/c/b94c4be77682aab06d65ca7296149e3bcfb37353 | kernel.org | Patch |
| https://git.kernel.org/stable/c/bd69a825485168ef74e815ecb286754b570fdcc7 | kernel.org | Patch |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-401 | Missing Release of Memory after Effective Lifetime | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | >= 2.6.13, < 5.10.260 >= 5.11, < 5.15.211 >= 5.16, < 6.1.177 >= 6.2, < 6.6.144 >= 6.7, < 6.12.95 >= 6.13, < 6.18.38 >= 6.19, < 7.1.3 |
CPE
Remediation
| |
Change History
4 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Aug 17, 2026 | CVE Modified | kernel.org |
| Jul 29, 2026 | Initial Analysis | [email protected] |
| Jul 20, 2026 | CVE Modified | kernel.org |
| Jul 19, 2026 | New CVE Received | kernel.org |