In the Synopsys DesignWare I2C driver (drivers/i2c/i2cdw.c) operating in target/slave mode, the rxfull interrupt handler gates the writerequested() callback on dw->state != CMDSEND, and dw->state is only reset to READY on a STOP interrupt. The STARTDET interrupt, whose handler in i2cdwslavereadclearintrbits() would reset the state on every (re)START, was never added to the enabled interrupt mask in i2cdwslaveregister(), so that recovery path was dead code.
As a result, if the STOP interrupt is lost (bus glitch/reset, or a concurrent master driving STOP) or the bus master issues a legal WRITE-repeated-START-WRITE sequence with the same direction, the driver remains in CMDSEND permanently and never invokes writerequested() again for the life of the target.
An I2C master on the same physical bus can deliberately trigger this, causing the I2C target function to malfunction for all subsequent write transactions and desynchronizing consumer framing state (e.g. MCTP-over-I2C), a recoverable-by-reset denial of service of the target peripheral.
The fix unmasks START_DET so the state is reset at every bus (re)START. Impact is availability-only over a local board-level bus; no memory corruption results in the in-tree consumer, whose per-byte buffer write is independently bounds-checked.
{
"unresolved_ranges": [
{
"source": "AFFECTED_FIELD",
"extracted_events": [
{
"introduced": "4.0.0"
},
{
"fixed": "4.5.0"
}
]
}
],
"cna_assigner": "zephyr",
"cwe_ids": [
"CWE-835"
],
"osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/10xxx/CVE-2026-10683.json"
}"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-10683.json"
"2026-08-12T15:31:11Z"
[
{
"source": "https://github.com/zephyrproject-rtos/zephyr/commit/06e2053efe0e324d71cc29cdd95160fff643730a",
"signature_version": "v1",
"deprecated": false,
"digest": {
"function_hash": "261125271030485017726160332381652751231",
"length": 393.0
},
"target": {
"file": "drivers/i2c/i2c_dw.c",
"function": "i2c_dw_slave_register"
},
"id": "CVE-2026-10683-0799dc68",
"signature_type": "Function"
},
{
"source": "https://github.com/zephyrproject-rtos/zephyr/commit/06e2053efe0e324d71cc29cdd95160fff643730a",
"signature_version": "v1",
"deprecated": false,
"digest": {
"line_hashes": [
"255591437134857589937708010298062393603",
"64382804278621535320506292630013939402",
"144762833809583362601439954007040076642",
"226977662593441869553561445572539660034",
"298269660203600123058288265849479113319"
],
"threshold": 0.9
},
"target": {
"file": "drivers/i2c/i2c_dw.c"
},
"id": "CVE-2026-10683-f8758e72",
"signature_type": "Line"
}
]