CVE-2026-17051
Last modified
CVE-2026-17051 is a medium-severity vulnerability rated 6/10 on the CVSS scale. The Intel SEDI IPM (inter-processor mailbox) driver in drivers/ipm/ipm_sedi.c handles an inbound message interrupt in ipm_event_dispose(). It read the peer-written doorbell register, extracted the payload length with IPC_HEADER_GET_LENGTH(), and passed that length straight to sedi_ipc_read_msg() to copy the message into struct ipm_sedi_context.incoming_data_buf, without checking it against the buffer size. EPSS estimates a 0.11% chance of exploitation in the next 30 days.
Description
The Intel SEDI IPM (inter-processor mailbox) driver in drivers/ipm/ipm_sedi.c handles an inbound message interrupt in ipm_event_dispose(). It read the peer-written doorbell register, extracted the payload length with IPC_HEADER_GET_LENGTH(), and passed that length straight to sedi_ipc_read_msg() to copy the message into struct ipm_sedi_context.incoming_data_buf, without checking it against the buffer size. The doorbell length field is 10 bits wide (IPC_HEADER_LENGTH_MASK is 0x03FF), so it can encode up to 1023 bytes, while incoming_data_buf is IPC_DATA_LEN_MAX (128) bytes. The bounds check in the underlying HAL sedi_ipc_read_msg() is a DBG_CHECK that compiles away unless CONFIG_DEBUG is set, so no check remained in a production image. The doorbell register is written by the peer processor on the other side of the IPC link — for the intel_ish_5_* targets, the host CPU's ISH driver, reached through the device's memory-mapped register window. Host-side software with driver-level or raw BAR access can therefore set a length of up to 1023 and cause the interrupt handler to copy far past the destination buffer. The affected path requires an application to have registered an IPM receive callback via ipm_register_callback(), which is the driver's normal mode of use. The result is an out-of-bounds write of up to 895 bytes into static (.bss) memory, performed in interrupt context. The overflow first clobbers the rest of struct ipm_sedi_context — including the k_sem and k_mutex used by the transmit path, whose wait queues contain self-referential list pointers — and then adjacent static data, giving a kernel data-structure corruption and crash primitive. The overflowing bytes are read from registers following the message window, a portion of which are themselves peer-programmable. The fix rejects any doorbell whose encoded length exceeds IPC_DATA_LEN_MAX, logging it and acknowledging the doorbell so the peer is not left waiting.
Metrics
Weakness Enumeration
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| zephyrproject | zephyr | >= 3.5.0, < 4.4.2 |
References
Timeline
- Published
- Last Modified
- Status
- Awaiting Analysis
Frequently Asked Questions
What is CVE-2026-17051?
How severe is CVE-2026-17051?
How do I fix CVE-2026-17051?
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-17044The Iptanus File Upload WordPress plugin before 5.1.8 does n…8.6
- CVE-2026-17045IBM i 7.6, 7.5, 7.4, and 7.3 could allow a remote authentica…8.1
- CVE-2026-17047IBM Db2 Mirror for i 7.4, 7.5, and 7.6 could allow a remote …5.4
- CVE-2026-17048A flaw was found in the Keycloak Admin REST API, which is us…4.9
- CVE-2026-1705A vulnerability was detected in D-Link DSL-6641K N8.TR069.20…2.4
- CVE-2026-17050The experimental USB host stack allocates a per-device confi…5.7
- CVE-2026-17052The Time-aware GPIO syscall verification handler z_vrfy_tgpi…7.8
- CVE-2026-17054The Espressif ESP-hosted Wi-Fi driver (drivers/wifi/esp_host…5.3
- CVE-2026-17057IBM i 7.6, 7.5, 7.4, and 7.3 could allow a remote attacker t…9.1
- CVE-2026-17059A flaw was found in the role-users endpoint of the keycloak-…6.5
- CVE-2026-1706The All-in-One Video Gallery plugin for WordPress is vulnera…6.1
- CVE-2026-17060IBM AIX 7.2, and 7.3 and IBM PowerVM VIOS 4.1 could allow a …9.1
Are you affected by CVE-2026-17051?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
