CVE-2022-50764
Data Race in Linux Kernel IPv6 SIT Tunnels Causing Stats Corruption
Publication date: 2025-12-24
Last updated on: 2025-12-24
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability in the Linux kernel involves a data race condition where multiple CPUs concurrently update the dev->stats.tx_error field in IPv6 sit tunnels. The issue arises because sit tunnels are marked as NETIF_F_LLTX, so their ndo_start_xmit() function is not protected by a spinlock, leading to unsafe concurrent updates on both transmit (tx) and receive (rx) paths.
How can this vulnerability impact me? :
The vulnerability can lead to data races causing inconsistent or corrupted network statistics in the Linux kernel's IPv6 sit tunnels. This may affect network reliability or monitoring accuracy, potentially leading to incorrect error reporting or network behavior under concurrent CPU usage.