CVE-2026-53394
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
19/07/2026
Last modified:
17/08/2026
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
nfsd: avoid leaking pre-allocated openowner on unconfirmed retry race<br />
<br />
When find_or_alloc_open_stateowner() encounters an unconfirmed owner, it<br />
calls release_openowner() and sets oo = NULL. Control then falls through<br />
past the `if (oo)` guard -- which would have freed any pre-allocated<br />
`new` -- and unconditionally executes `new = alloc_stateowner(...)`. If<br />
`new` was already allocated on a prior iteration, the pointer is<br />
silently overwritten and the previous allocation (slab object + owner<br />
name buffer) is leaked.<br />
<br />
This requires a race: two NFSv4.0 OPEN threads with the same owner<br />
string, where a concurrent thread inserts a new unconfirmed owner into<br />
the hash between retry iterations. The window is narrow but repeatable<br />
under adversarial conditions.<br />
<br />
Fix by adding `goto retry` after `oo = NULL` so the already-allocated<br />
`new` is reused on the next iteration rather than overwritten.
Impact
Base Score 3.x
7.50
Severity 3.x
HIGH
Vulnerable products and versions
| CPE | From | Up to |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.10 (including) | 6.12.95 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.13 (including) | 6.18.38 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.19 (including) | 7.1.3 (excluding) |
To consult the complete list of CPE names with products and versions, see this page



