CVE-2022-50555
Severity CVSS v4.0:
Pending analysis
Type:
CWE-476
NULL Pointer Dereference
Publication date:
07/10/2025
Last modified:
05/02/2026
Description
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.
Impact
Base Score 3.x
5.50
Severity 3.x
MEDIUM
Vulnerable products and versions
| CPE | From | Up to |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 4.17 (including) | 4.19.264 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 4.20 (including) | 5.4.223 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.5 (including) | 5.10.153 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.11 (including) | 5.15.77 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.16 (including) | 6.0.7 (excluding) |
| cpe:2.3:o:linux:linux_kernel:6.1:rc1:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.1:rc2:*:*:*:*:*:* |
To consult the complete list of CPE names with products and versions, see this page
References to Advisories, Solutions, and Tools
- 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



