CVE-2026-53089
Gravedad CVSS v3.1:
ALTA
Tipo:
CWE-416
Utilización después de liberación
Fecha de publicación:
24/06/2026
Última modificación:
23/07/2026
Descripción
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
bpf: Fix use-after-free in offloaded map/prog info fill<br />
<br />
When querying info for an offloaded BPF map or program,<br />
bpf_map_offload_info_fill_ns() and bpf_prog_offload_info_fill_ns()<br />
obtain the network namespace with get_net(dev_net(offmap->netdev)).<br />
However, the associated netdev&#39;s netns may be racing with teardown<br />
during netns destruction. If the netns refcount has already reached 0,<br />
get_net() performs a refcount_t increment on 0, triggering:<br />
<br />
refcount_t: addition on 0; use-after-free.<br />
<br />
Although rtnl_lock and bpf_devs_lock ensure the netdev pointer remains<br />
valid, they cannot prevent the netns refcount from reaching zero.<br />
<br />
Fix this by using maybe_get_net() instead of get_net(). maybe_get_net()<br />
uses refcount_inc_not_zero() and returns NULL if the refcount is already<br />
zero, which causes ns_get_path_cb() to fail and the caller to return<br />
-ENOENT -- the correct behavior when the netns is being destroyed.
Impacto
Puntuación base 3.x
7.80
Gravedad 3.x
ALTA
Productos y versiones vulnerables
| CPE | Desde | Hasta |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 4.16 (incluyendo) | 7.0.10 (excluyendo) |
Para consultar la lista completa de nombres de CPE con productos y versiones, ver esta página



