CVE-2026-14367
Last modified
CVE-2026-14367 is a low-severity vulnerability rated 3.1/10 on the CVSS scale. The I3C IBI subsystem in drivers/i3c/i3c_ibi_workq.c hands out statically-allocated work nodes through a free-list i3c_ibi_work_nodes_free implemented as a plain sys_slist_t, which provides no synchronization. The allocation helpers (i3c_ibi_work_enqueue, i3c_ibi_work_enqueue_target_irq, i3c_ibi_work_enqueue_hotjoin, i3c_ibi_work_enqueue_controller_request, i3c_ibi_work_enqueue_cb) called sys_slist_get() directly from ISR context, while the workqueue handler i3c_ibi_work_handler() returned nodes with sys_slist_append() from the workqueue thread, with no lock on either side. Because sys_slist_get() and sys_slist_append() are neither atomic nor interrupt-safe, an IBI interrupt that fires while the workqueue thread is mid-append (or a truly parallel access under CONFIG_SMP) races on the shared list. EPSS estimates a 0.10% chance of exploitation in the next 30 days.
Description
The I3C IBI subsystem in drivers/i3c/i3c_ibi_workq.c hands out statically-allocated work nodes through a free-list i3c_ibi_work_nodes_free implemented as a plain sys_slist_t, which provides no synchronization. The allocation helpers (i3c_ibi_work_enqueue, i3c_ibi_work_enqueue_target_irq, i3c_ibi_work_enqueue_hotjoin, i3c_ibi_work_enqueue_controller_request, i3c_ibi_work_enqueue_cb) called sys_slist_get() directly from ISR context, while the workqueue handler i3c_ibi_work_handler() returned nodes with sys_slist_append() from the workqueue thread, with no lock on either side. Because sys_slist_get() and sys_slist_append() are neither atomic nor interrupt-safe, an IBI interrupt that fires while the workqueue thread is mid-append (or a truly parallel access under CONFIG_SMP) races on the shared list. This corrupts the list linkage: a node may be handed to two consumers, a node may be lost, or the head/tail pointers may be left inconsistent so sys_slist_get() returns a stale or garbage pointer. In the double-hand-out case the subsequent memcpy(ibi_node, ibi_work, sizeof(*ibi_node)) overwrites a node still in flight; a garbage pointer turns the same memcpy into an out-of-bounds write. The race is driven by I3C bus traffic — IBIs, hot-joins, and controller-role requests originate from target devices on the bus, and I3C supports hot-joining devices. An attacker controlling an I3C peripheral on the board's chip-to-chip bus can generate high-frequency interrupts timed to collide with the free operation. Exploitation requires physical access to the bus and winning a narrow timing window; the most realistic impact is a crash or hang (denial of service), with memory corruption possible but hard to control. The fix wraps all free-list sys_slist_get()/sys_slist_append() operations in the new ibi_work_alloc()/ibi_work_free() helpers, each guarded by a k_spinlock (ibi_work_lock), closing the race across ISR and thread contexts.
Metrics
CVSS:3.1/AV:P/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:L
Weakness Enumeration
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| zephyrproject | zephyr | >= 3.2.0, < 4.4.2 |
References
Timeline
- Published
- Last Modified
- Status
- Awaiting Analysis
Frequently Asked Questions
What is CVE-2026-14367?
How severe is CVE-2026-14367?
How do I fix CVE-2026-14367?
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-14361The consul-template library before version 0.42.1 is vulnera…4.7
- CVE-2026-14362HashiCorp memberlist before version 0.6.0 is vulnerable to a…4.9
- CVE-2026-14363Improper neutralization of special elements used in an SQL c…9.8
- CVE-2026-14364The TrueBooker – Appointment Booking and Scheduler System pl…9.8
- CVE-2026-14365The TrueBooker – Appointment Booking and Scheduler System pl…9.8
- CVE-2026-14366The Silicon Labs SiWx917 WiFi driver's transmit callback siw…6.4
- CVE-2026-14368The LwM2M JSON content formatter's get_string() in subsys/ne…5.4
- CVE-2026-1437Reflected Cross-Site Scripting (XSS) vulnerability in the Gr…6.1
- CVE-2026-14371The Lenovo XClarity Integrator for Windows Admin Center plug…8.8
- CVE-2026-14372The Bit Form – Contact Form, Payment Forms, Multi Step Forms…7.1
- CVE-2026-14373HashiCorp Nomad and Nomad Enterprise did not enforce the all…7.7
- CVE-2026-1438Reflected Cross-Site Scripting (XSS) vulnerability in the Gr…6.1
Are you affected by CVE-2026-14367?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
