CVE-2026-64570
Gravedad:
Pendiente de análisis
Tipo:
No Disponible / Otro tipo
Fecha de publicación:
05/08/2026
Última modificación:
05/08/2026
Descripción
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
wifi: mac80211: fix fils_discovery double free on alloc failure<br />
<br />
ieee80211_set_fils_discovery() calls kfree_rcu() on the old template<br />
before allocating the replacement. If the kzalloc() then fails, it<br />
returns -ENOMEM while link->u.ap.fils_discovery still points at the<br />
object already queued for freeing. A later update or AP teardown<br />
(ieee80211_stop_ap()) re-queues that same rcu_head; the second free is<br />
caught by KASAN when the RCU sheaf is processed in softirq:<br />
<br />
BUG: KASAN: double-free in rcu_free_sheaf (mm/slub.c:5850)<br />
Free of addr ffff88800c065280 by task swapper/0/0<br />
...<br />
__rcu_free_sheaf_prepare (mm/slub.c:2634 mm/slub.c:2940)<br />
rcu_free_sheaf (mm/slub.c:5850)<br />
rcu_core (kernel/rcu/tree.c:2617 kernel/rcu/tree.c:2869)<br />
handle_softirqs (kernel/softirq.c:622)<br />
The buggy address belongs to the cache kmalloc-96 of size 96<br />
<br />
Queue the old object for kfree_rcu() only after the new one is published,<br />
matching ieee80211_set_probe_resp() and ieee80211_set_s1g_short_beacon().



