CVE-2026-23124
Data Race in Linux Kernel IPv6 ndisc_router_discovery Function
Publication date: 2026-02-14
Last updated on: 2026-03-18
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 5.16 (inc) to 6.1.162 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.6.122 (exc) |
| linux | linux_kernel | From 5.15 (inc) to 5.15.199 (exc) |
| linux | linux_kernel | From 6.7 (inc) to 6.12.68 (exc) |
| linux | linux_kernel | From 6.13 (inc) to 6.18.8 (exc) |
| linux | linux_kernel | 6.19 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability exists in the Linux kernel's IPv6 implementation, specifically in the function ndisc_router_discovery(). The issue is a data race condition where the function can read and write the ra_mtu field of the in6_dev structure without properly holding a lock. This means that concurrent accesses to this field can lead to inconsistent or unexpected behavior.
The fix involved adding READ_ONCE() and WRITE_ONCE() macros to document and prevent the data race. These macros ensure that the read and write operations are atomic and properly synchronized.
How can this vulnerability impact me? :
This data race vulnerability could potentially cause inconsistent or corrupted data when the ra_mtu value is accessed concurrently without proper synchronization. While the description notes that IFLA_INET6_RA_MTU is best effort, improper handling could lead to unexpected behavior in IPv6 router discovery processes.
Such inconsistencies might affect network performance or stability, possibly causing packet transmission issues or incorrect MTU settings, which could degrade network communication reliability.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
I don't know
What immediate steps should I take to mitigate this vulnerability?
I don't know