CVE-2026-23212
Data Race in Linux Kernel Bonding Driver Causes Potential Instability
Publication date: 2026-02-18
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 6.2 (inc) to 6.6.123 (exc) |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 6.7 (inc) to 6.12.69 (exc) |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 6.13 (inc) to 6.18.9 (exc) |
| linux | linux_kernel | From 2.6.19 (inc) to 6.1.162 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-367 | The product checks the state of a resource before using that resource, but the resource's state can change between the check and the use in a way that invalidates the results of the check. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability exists in the Linux kernel's bonding driver, specifically related to data races around the variables slave->last_rx and slave->target_last_arp_rx. These variables can be read and written without proper locking, which can cause race conditions.
The issue was identified by syzbot as a data race detected by KCSAN (Kernel Concurrency Sanitizer) in the bond_rcv_validate function. The fix involved adding READ_ONCE() and WRITE_ONCE() annotations to ensure atomic access and prevent concurrent read/write conflicts.
How can this vulnerability impact me? :
This vulnerability can lead to data races in the Linux kernel bonding driver, which may cause unpredictable behavior such as corrupted data or kernel crashes. Since bonding is used for network interface aggregation, this could impact network reliability and stability.
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