CVE-2026-53399
Gravedad CVSS v3.1:
CRÍTICA
Tipo:
CWE-476
Desreferencia a puntero nulo (NULL)
Fecha de publicación:
19/07/2026
Última modificación:
29/07/2026
Descripción
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
nfsd: release layout stid on setlease failure<br />
<br />
nfs4_alloc_stid() publishes the new stid into cl->cl_stateids via<br />
idr_alloc_cyclic() under cl_lock before returning to<br />
nfsd4_alloc_layout_stateid(). When nfsd4_layout_setlease() then<br />
fails, the error path frees the layout stateid directly with<br />
kmem_cache_free() without ever calling idr_remove(), leaving the<br />
IDR slot pointing at freed slab memory. Any subsequent IDR walker<br />
(states_show, client teardown) dereferences the dangling pointer.<br />
<br />
The correct teardown for an IDR-published stid is nfs4_put_stid(),<br />
which removes the IDR slot under cl_lock, dispatches sc_free<br />
(nfsd4_free_layout_stateid) to release ls->ls_file via<br />
nfsd4_close_layout(), and drops the nfs4_file reference in its<br />
tail.<br />
<br />
A second issue blocks that switch: nfsd4_free_layout_stateid()<br />
unconditionally inspects ls->ls_fence_work via<br />
delayed_work_pending() under ls_lock, but<br />
INIT_DELAYED_WORK(&ls->ls_fence_work, ...) currently runs only<br />
after the setlease call. On the setlease-failure path the<br />
destructor would touch an uninitialized delayed_work.<br />
<br />
nfsd4_alloc_layout_stateid()<br />
nfs4_alloc_stid() /* idr_alloc_cyclic under cl_lock */<br />
nfsd4_layout_setlease() /* fails */<br />
nfs4_put_stid()<br />
nfsd4_free_layout_stateid()<br />
delayed_work_pending(&ls->ls_fence_work) /* needs INIT */<br />
nfsd4_close_layout() /* nfsd_file_put(ls->ls_file) */<br />
put_nfs4_file()<br />
<br />
Fix by hoisting the ls_fenced / ls_fence_delay / INIT_DELAYED_WORK<br />
initialization above the nfsd4_layout_setlease() call, and replace<br />
the manual nfsd_file_put + put_nfs4_file + kmem_cache_free cleanup<br />
with a single nfs4_put_stid(stp).
Impacto
Puntuación base 3.x
9.80
Gravedad 3.x
CRÍTICA
Productos y versiones vulnerables
| CPE | Desde | Hasta |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 4.0 (incluyendo) | 5.10.261 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.11 (incluyendo) | 5.15.212 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.16 (incluyendo) | 6.1.178 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.2 (incluyendo) | 6.6.145 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.7 (incluyendo) | 6.12.96 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.13 (incluyendo) | 6.18.39 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.19 (incluyendo) | 7.1.3 (excluyendo) |
Para consultar la lista completa de nombres de CPE con productos y versiones, ver esta página
Referencias a soluciones, herramientas e información
- https://git.kernel.org/stable/c/2e0a5d6d62600b8c614d1b55e50ef94035d6adf9
- https://git.kernel.org/stable/c/30d55c8aabb261bc3f427d6b9aae7ef6206063f9
- https://git.kernel.org/stable/c/48a586e382e4db1dbf958d44b63e081df5f8ed04
- https://git.kernel.org/stable/c/7bbb7ce74051c8be4b69ff44ce3db370600dae61
- https://git.kernel.org/stable/c/83c2b7797742339bb768f83935f7ca33950db138
- https://git.kernel.org/stable/c/8dee7c278f1c2b5bb80e17a6281c3812fc8b0cdd
- https://git.kernel.org/stable/c/d369e5edfaaf83a448016e2f1da392b2174be801
- https://git.kernel.org/stable/c/d788ef40a7517d22c97ab01700e4ae4c611b6f2f



