CVE-2022-50555
Gravedad CVSS v3.1:
MEDIA
Tipo:
CWE-476
Desreferencia a puntero nulo (NULL)
Fecha de publicación:
07/10/2025
Última modificación:
05/02/2026
Descripción
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
tipc: fix a null-ptr-deref in tipc_topsrv_accept<br />
<br />
syzbot found a crash in tipc_topsrv_accept:<br />
<br />
KASAN: null-ptr-deref in range [0x0000000000000008-0x000000000000000f]<br />
Workqueue: tipc_rcv tipc_topsrv_accept<br />
RIP: 0010:kernel_accept+0x22d/0x350 net/socket.c:3487<br />
Call Trace:<br />
<br />
tipc_topsrv_accept+0x197/0x280 net/tipc/topsrv.c:460<br />
process_one_work+0x991/0x1610 kernel/workqueue.c:2289<br />
worker_thread+0x665/0x1080 kernel/workqueue.c:2436<br />
kthread+0x2e4/0x3a0 kernel/kthread.c:376<br />
ret_from_fork+0x1f/0x30 arch/x86/entry/entry_64.S:306<br />
<br />
It was caused by srv->listener that might be set to null by<br />
tipc_topsrv_stop() in net .exit whereas it&#39;s still used in<br />
tipc_topsrv_accept() worker.<br />
<br />
srv->listener is protected by srv->idr_lock in tipc_topsrv_stop(), so add<br />
a check for srv->listener under srv->idr_lock in tipc_topsrv_accept() to<br />
avoid the null-ptr-deref. To ensure the lsock is not released during the<br />
tipc_topsrv_accept(), move sock_release() after tipc_topsrv_work_stop()<br />
where it&#39;s waiting until the tipc_topsrv_accept worker to be done.<br />
<br />
Note that sk_callback_lock is used to protect sk->sk_user_data instead of<br />
srv->listener, and it should check srv in tipc_topsrv_listener_data_ready()<br />
instead. This also ensures that no more tipc_topsrv_accept worker will be<br />
started after tipc_conn_close() is called in tipc_topsrv_stop() where it<br />
sets sk->sk_user_data to null.
Impacto
Puntuación base 3.x
5.50
Gravedad 3.x
MEDIA
Productos y versiones vulnerables
| CPE | Desde | Hasta |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 4.17 (incluyendo) | 4.19.264 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 4.20 (incluyendo) | 5.4.223 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.5 (incluyendo) | 5.10.153 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.11 (incluyendo) | 5.15.77 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.16 (incluyendo) | 6.0.7 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:6.1:rc1:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.1:rc2:*:*:*:*:*:* |
Para consultar la lista completa de nombres de CPE con productos y versiones, ver esta página
Referencias a soluciones, herramientas e información
- https://git.kernel.org/stable/c/24b129aed8730e48f47d852d58d76825ab6f407c
- https://git.kernel.org/stable/c/32a3d4660b34ce49ac0162338ebe362098e2f5df
- https://git.kernel.org/stable/c/7a939503fc32bff4ed60800b73ff7fbb4aea2142
- https://git.kernel.org/stable/c/82cb4e4612c633a9ce320e1773114875604a3cce
- https://git.kernel.org/stable/c/ce69bdac2310152bb70845024d5d704c52aabfc3
- https://git.kernel.org/stable/c/cedb41664e27b2cae7e21487f1bee22dcd84037d



