CVE-2026-64452
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 />
6lowpan: fix NHC entry use-after-free on error path<br />
<br />
lowpan_nhc_do_uncompression() looks up an NHC descriptor while holding<br />
lowpan_nhc_lock. If the descriptor has no uncompress callback, the error<br />
path drops the lock before printing nhc->name.<br />
<br />
lowpan_nhc_del() removes descriptors under the same lock and then relies<br />
on synchronize_net() before the owning module can be unloaded. That only<br />
waits for net RX RCU readers. lowpan_header_decompress() is also exported<br />
and can be reached from callers that are not necessarily covered by the net<br />
core RX critical section, for example the Bluetooth 6LoWPAN L2CAP receive<br />
path.<br />
<br />
This leaves a race where one task drops lowpan_nhc_lock in the error path,<br />
another task unregisters and frees the matching descriptor after<br />
synchronize_net() returns, and the first task then dereferences nhc->name<br />
for the warning.<br />
<br />
With the post-unlock window widened, KASAN reports:<br />
<br />
BUG: KASAN: slab-use-after-free in lowpan_nhc_do_uncompression+0x1f4/0x220<br />
Read of size 8<br />
lowpan_nhc_do_uncompression<br />
lowpan_header_decompress<br />
<br />
Fix this by printing the warning before dropping lowpan_nhc_lock, so the<br />
descriptor name is read while unregister is still excluded. The malformed<br />
packet is still rejected with -ENOTSUPP.
Impacto
Referencias a soluciones, herramientas e información
- https://git.kernel.org/stable/c/0beccbcf50de125be5520d0ffc59af4bb8655482
- https://git.kernel.org/stable/c/1720db928e5a58ca7d75ac1d514c3b73fd7061a7
- https://git.kernel.org/stable/c/593b78bb3c7ef0c6e9ae6fdf5afa80a5f7573168
- https://git.kernel.org/stable/c/80b5c8779acee0550845394fb3e5176a398aa24c
- https://git.kernel.org/stable/c/9c2f5c0829a8c8b904dae36be6d8056b719ac605
- https://git.kernel.org/stable/c/a8e3a94711134e898c6021a6b77374efa91b3639
- https://git.kernel.org/stable/c/b713aa0cc344f10f7a9928a230b5f5e780d04078
- https://git.kernel.org/stable/c/cc27aea4d454abfb385ee2c9499c78b96db9b728



