CVE-2026-23197
Buffer Overflow in Linux i2c_imx Driver Causes System Crash
Publication date: 2026-02-14
Last updated on: 2026-03-19
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 | 6.19 |
| linux | linux_kernel | From 6.13 (inc) to 6.18.10 (exc) |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-476 | The product dereferences a pointer that it expects to be valid but is NULL. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability exists in the Linux kernel's i2c imx driver. When a block read operation returns an invalid length (either zero or greater than the maximum allowed), the length handler sets an error state (IMX_I2C_STATE_FAILED). However, the interrupt service routine (i2c_imx_master_isr) incorrectly overwrites this error state with a state that continues reading (IMX_I2C_STATE_READ_CONTINUE), leading to an endless read loop.
This endless loop causes buffer overruns and ultimately crashes the system. The fix involves guarding the state transition to preserve the error state set by the length handler, preventing the system from entering the endless loop.
How can this vulnerability impact me? :
This vulnerability can cause the affected Linux system to enter an endless read loop when an invalid block read length is encountered. This loop overruns buffers and crashes the system, potentially leading to denial of service.
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