CVE-2026-64205
Last modified
CVE-2026-64205 is a medium-severity vulnerability rated 5.5/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: i2c: i801: fix hardware state machine corruption in error path A severe livelock and subsequent Hung Task panic were observed in the i2c-i801 driver during concurrent Fuzzing. The crash is caused by an unconditional hardware register cleanup in the error handling path of i801_access(). When i801_check_pre() fails (e.g., returning -EBUSY because the SMBus controller is actively used by BIOS/ACPI), the kernel does not actually acquire the hardware ownership. EPSS estimates a 0.17% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: i2c: i801: fix hardware state machine corruption in error path A severe livelock and subsequent Hung Task panic were observed in the i2c-i801 driver during concurrent Fuzzing. The crash is caused by an unconditional hardware register cleanup in the error handling path of i801_access(). When i801_check_pre() fails (e.g., returning -EBUSY because the SMBus controller is actively used by BIOS/ACPI), the kernel does not actually acquire the hardware ownership. However, the code jumps to the 'out' label and executes: iowrite8(SMBHSTSTS_INUSE_STS | STATUS_FLAGS, SMBHSTSTS(priv)); This forcefully clears the INUSE_STS lock and resets the hardware status flags without owning the controller. Doing so interrupts ongoing BIOS/ACPI transactions and totally corrupts the SMBus hardware state machine. Consequently, all subsequent i801_access() calls fail at the pre-check stage, triggering an endless stream of "SMBus is busy, can't use it!" error logs. Over a slow serial console, this printk flood monopolizes the CPU (Console Livelock), starving other processes trying to acquire the mmap_lock down_read semaphore, ultimately triggering the hung task watchdog. Fix this by moving the 'out' label below the hardware register cleanup. If i801_check_pre() fails, we safely bypass the iowrite8() and only release the software locks (pm_runtime and mutex), strictly adhering to the rule of not releasing resources that were never acquired.
Metrics
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Affected Software
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux Kernel | >= 6.3, < 6.6.148 |
| Linux | Linux Kernel | >= 6.7, < 6.12.101 |
| Linux | Linux Kernel | >= 6.13, < 6.18.39 |
| Linux | Linux Kernel | >= 6.19, < 7.1.4 |
References
Timeline
- Published
- Last Modified
- Status
- Analyzed
Frequently Asked Questions
What is CVE-2026-64205?
How severe is CVE-2026-64205?
How do I fix CVE-2026-64205?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-64190In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-64191In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-64192In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-64193Net::DNS versions through 1.55 for Perl allow remote executi…9.8
- CVE-2026-64194Net::DNS versions through 1.55 for Perl allow Denial of Serv…7.5
- CVE-2026-6420A flaw was found in Keylime. An attacker with root access on…6.3
- CVE-2026-64206In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-64207In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-64208In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-64209In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-6421A vulnerability has been found in Mobatek MobaXterm Home Edi…7
- CVE-2026-64210In the Linux kernel, the following vulnerability has been re…7.5
Are you affected by CVE-2026-64205?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
