CVE-2026-64396
Gravedad:
Pendiente de análisis
Tipo:
No Disponible / Otro tipo
Fecha de publicación:
25/07/2026
Última modificación:
25/07/2026
Descripción
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
ksmbd: fix UAF of struct file_lock in SMB2_LOCK deferred-lock cancellation<br />
<br />
When a blocking byte-range lock request is deferred in the<br />
FILE_LOCK_DEFERRED path, ksmbd registers the asynchronous work into<br />
the connection&#39;s async_requests list via setup_async_work(). The cancel<br />
callback smb2_remove_blocked_lock() holds a reference to the flock.<br />
<br />
If the lock waiter is subsequently woken up but the work state is no<br />
longer KSMBD_WORK_ACTIVE (e.g., due to a concurrent cancellation), the<br />
cleanup path calls locks_free_lock(flock) without dequeuing the work from<br />
the async_requests list. Concurrently, smb2_cancel() walks the list<br />
under conn->request_lock and invokes the cancel callback, which then<br />
dereferences the already freed &#39;flock&#39;. This leads to a slab-use-after-free<br />
inside __wake_up_common.<br />
<br />
Fix this by restructuring the cleanup logic after the worker returns<br />
from ksmbd_vfs_posix_lock_wait(). Move list_del(&smb_lock->llist) and<br />
release_async_work(work) to the top of the cleanup block. This guarantees<br />
that the async work is completely dequeued and serialized under<br />
conn->request_lock before locks_free_lock(flock) is called, rendering<br />
the flock unreachable for any concurrent smb2_cancel().
Impacto
Referencias a soluciones, herramientas e información
- https://git.kernel.org/stable/c/367c42a611fe488b7b03f1f6737f4dee0e8b20a2
- https://git.kernel.org/stable/c/463bbd79698513af4dad50fe1c573825f297ca2e
- https://git.kernel.org/stable/c/5aa1cb01155f96824003baf7997cdf1f150caba3
- https://git.kernel.org/stable/c/5c75275c0fc9a2deb0d8f5604edcb16f288171c8
- https://git.kernel.org/stable/c/7703fd9aba1f2483c8e55f9ff73b7663e0761ed9
- https://git.kernel.org/stable/c/d20d1c8ba5765d1d12eefc0aee6385ab3f240e1e



