目标达成 感谢每一位支持者 — 我们达成了 100% 目标!

目标: 1000 元 · 已筹: 1336

100%

CVE-2026-14367— I3C IBI 工作节点链表数据竞争漏洞

一分钟漏洞结论

影响对象
zephyrproject zephyr
利用判断
尚无明确在野利用证据,仍需结合暴露面评估
建议动作
优先检查厂商安全公告和参考链接中的修复版本;无法立即升级时,限制受影响服务暴露并加强监测。

位于 中的 I3C IBI(中断前中断)子系统通过一个名为 的无锁空闲链表来分发静态分配的工作节点,该链表由普通的 实现,不提供任何同步机制。分配辅助函数( 、 、 、 、 )直接从中断服务例程(ISR)上下文调用 ,而工作队列处理函数 则从工作队列线程中通过 归还节点,且两侧均未使用锁保护。 由于 和 既非原子操作也不具备中断安全性,当 IBI 中断在工作队列线程执行 操作的中途触发(或在启用 时发生真正的并行访问)时,会在共享链表上产生竞争条件。这会破坏链表链接:一个节点可能被同时交给两个消费者,节点可能丢失,

CVSS 3.1 · Low

可能的 ATT&CK 技术 1 AI

T1401
获取后续新漏洞提醒 登录后订阅

一、 漏洞 CVE-2026-14367 基础信息

漏洞信息

对漏洞内容有疑问?看看神龙的深度分析是否有帮助!
查看神龙十问 ↗

尽管我们使用了先进的大模型技术,但其输出仍可能包含不准确或过时的信息。神龙努力确保数据的准确性,但请您根据实际情况进行核实和判断。

Vulnerability Title
I3C IBI work-node free-list data race between ISR and workqueue thread
来源: CVE Program / CVE List V5
Vulnerability 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.
来源: CVE Program / CVE List V5
CVSS Information
CVSS:3.1/AV:P/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:L
来源: CVE Program / CVE List V5
Vulnerability Type
使用共享资源的并发执行不恰当同步问题(竞争条件)
来源: CVE Program / CVE List V5

受影响产品

厂商 产品 影响版本 CPE 订阅
zephyrproject zephyr 3.2.0 ~ 4.4.2 -

二、漏洞 CVE-2026-14367 的公开POC

# POC 描述 源链接 神龙链接
AI 生成 POC 高级

未找到公开 POC。

登录以生成 AI POC

三、漏洞 CVE-2026-14367 的情报信息

登录查看更多情报信息。

CVE-2026-14367 其他参考 (2)

同批安全公告 · zephyrproject · 2026-08-31 · 共 4 条

CVE-2026-14696 6.5 MEDIUM Linux Kernel 以太网桥 RX 包泄漏致服务拒绝漏洞
CVE-2026-14366 6.4 MEDIUM SiWx91x WiFi驱动TX包重复解引用/释放后使用漏洞
CVE-2026-14368 5.4 MEDIUM Zephyr LwM2M 解析器 NUL 写入越界漏洞

IV. Related Vulnerabilities

V. Comments for CVE-2026-14367

暂无评论


发表评论