CSIRTS // UNIFIED SECURITY ADVISORY FEEDSYS ● ONLINE · POWERED BY INTELFUSIONS.COM

CVE-2026-80678

highCVSS 8.4covered by 2 sourcesfirst seen 2026-08-11
In the Linux kernel, the following vulnerability has been resolved: i2c: imx: Fix slave registration race and error handling In i2c_imx_reg_slave(), the slave pointer was assigned before pm_runtime_resume_and_get(). If pm_runtime_resume_and_get() failed, the error path returned without clearing i2c_imx->slave, leaving it non-NULL and causing all subsequent registration attempts to fail with -EBUSY. Additionally, because this driver uses a shared IRQ, the interrupt handler i2c_imx_isr() can execute concurrently and, after acquiring slave_lock, dereference i2c_imx->slave. The previous fix attempt added a lockless i2c_imx->slave = NULL on the error path, but that could race with the ISR under the lock and still cause a NULL pointer dereference. Fix both issues by deferring the assignment of i2c_imx->slave and i2c_imx->last_slave_event to after a successful resume, and by performing the assignment inside the slave_lock critical section. This guarantees that the slave pointer is never left stale on the error path and is always valid when observed by the interrupt handler.

CSIRTS triage

What
Race condition in i2c imx slave registration with improper error handling.
Who is affected
Systems using i2c imx slave mode across various Linux kernel versions.
Urgency
Medium priority; not currently exploited and rated medium severity but race conditions can be difficult to reproduce and debug.
Action
Update to a patched Linux kernel version that includes the race condition fix for i2c imx slave registration.

AI-assisted analysis generated from the source advisory — verify against the original.

⚡ Watch CVE-2026-80678

Get an email if CVE-2026-80678 is added to CISA KEV, gains public exploit code, or a new advisory cites it — max one per day, one-click unsubscribe.

Exploitation outlook

Advisory coverage (2)

External references

NVD record for CVE-2026-80678

CVE.org record

Embed the live status

CVE-2026-80678 live status badge — this badge updates automatically when the KEV or exploit status changes. How to embed it →

[![CVE-2026-80678 status](https://www.csirts.com/badge/CVE-2026-80678)](https://www.csirts.com/cve/CVE-2026-80678)