CVE-2026-74615
Gravedad:
Pendiente de análisis
Tipo:
No Disponible / Otro tipo
Fecha de publicación:
22/08/2026
Última modificación:
22/08/2026
Descripción
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
vxlan: do not arm the ageing timer on a device that is down<br />
<br />
vxlan_changelink() arms vxlan->age_timer whenever the requested ageing<br />
interval differs from the configured one:<br />
<br />
if (conf.age_interval != vxlan->cfg.age_interval)<br />
mod_timer(&vxlan->age_timer, jiffies);<br />
<br />
There is no netif_running() test, so the timer is armed even on a device<br />
that was never brought up. The only synchronous cancel in the driver is<br />
the timer_delete_sync() in vxlan_stop(), which is .ndo_stop.<br />
netif_close_many() drops devices without IFF_UP before<br />
__dev_close_many() runs, so that cancel is skipped for such a device.<br />
<br />
vxlan_setup() sets dev->needs_free_netdev = true and age_timer is a<br />
member of struct vxlan_dev, so free_netdev() releases the allocation the<br />
timer lives in while it is still queued on a timer_base.<br />
expire_timers() unlinks the entry before it loads timer->function, so<br />
the timer core writes through the freed object&#39;s list pointers:<br />
<br />
BUG: KASAN: slab-use-after-free in __run_timers+0x208/0x654<br />
Write of size 8 at addr ffff00001adace68 by task true/192<br />
__asan_store8+0x84/0xac<br />
__run_timers+0x208/0x654<br />
run_timer_softirq+0x154/0x18c<br />
Allocated by task 189:<br />
alloc_netdev_mqs+0x64/0x720<br />
rtnl_create_link+0x4ac/0x520<br />
rtnl_newlink+0x758/0xd00<br />
Freed by task 191:<br />
netdev_release+0x40/0x58<br />
netdev_run_todo+0x4a4/0x8c0<br />
rtnl_dellink+0x200/0x4e8<br />
<br />
The rtnl operations involved are netns-scoped, so an unprivileged user<br />
can perform them in a new user and network namespace.<br />
<br />
Arming the timer on a down device never had an effect: vxlan_cleanup()<br />
returns early on !netif_running(), and vxlan_open() arms the timer for<br />
any non-zero interval once the device is brought up. Add the missing<br />
test.<br />
<br />
Discovered by XBOW, triaged by Baul Lee
Impacto
Referencias a soluciones, herramientas e información
- https://git.kernel.org/stable/c/26c179d47403d2f919ee914cc02c31d896b59fee
- https://git.kernel.org/stable/c/46bb297ad77680e009244f067f27d51cf5b8c7cf
- https://git.kernel.org/stable/c/619dd29045e439d0b0f8c6d4fec1af447a050680
- https://git.kernel.org/stable/c/6b095e99b9e67ea31f0c4b00260e010898253519
- https://git.kernel.org/stable/c/6b4119af544996a545cf84b16f1dbce829ba0de8
- https://git.kernel.org/stable/c/9dc561f0522c35bdd66e0646a748814a138ec4ca
- https://git.kernel.org/stable/c/b37971686ec59fb027fa4910ba16805e68fddb97
- https://git.kernel.org/stable/c/be44d79d14d7f9ae7c8ffb7272142005341b5123


