PatchSiren cyber security CVE debrief
CVE-2026-43353 Git CVE debrief
CVE-2026-43353 describes a race condition in the Linux kernel's mipi-i3c-hci DMA dequeue path. If multiple transfers time out around the same time, concurrent calls into hci_dma_dequeue_xfer() can interfere with one another while stopping, processing, and restarting the DMA ring. The result is an availability and reliability issue for systems using the affected I3C host controller interface path. The published fix serializes the dequeue routine with a mutex.
- Vendor
- Git
- Product
- Unknown
- CVSS
- HIGH 7.8
- CISA KEV
- Not listed in stored evidence
- Original CVE published
- 2026-05-08
- Original CVE updated
- 2026-05-11
- Advisory published
- 2026-05-08
- Advisory updated
- 2026-05-11
Who should care
Linux kernel maintainers, distro and embedded OS vendors, and operators of systems that use the mipi-i3c-hci driver or I3C hardware relying on DMA transfer timeout handling. Security teams responsible for kernel patch management should treat this as a priority if the affected driver is present in production builds.
Technical summary
The vulnerable path is hci_dma_dequeue_xfer() in the Linux kernel's I3C MIPI HCI DMA logic. The function can be entered more than once when separate transfers time out near the same time. Because the routine was not serialized, one instance could stop the ring or restart it while another instance was still processing incomplete transfers, creating an unsafe interleaving. The stated remediation is to add a mutex so the dequeue operation is serialized with respect to itself.
Defensive priority
High. The CVSS vector provided by NVD is CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, indicating local attack requirements but potentially high impact. Even so, the practical exposure is limited to systems using the specific kernel driver path, so patching should be prioritized for embedded and infrastructure systems that include mipi-i3c-hci support.
Recommended defensive actions
- Apply the kernel fix or consume a vendor kernel build that includes the mutex serialization change for hci_dma_dequeue_xfer().
- Inventory Linux systems that include the mipi-i3c-hci driver and any I3C hardware using DMA timeout handling.
- Prioritize patching embedded devices, appliances, and appliances-like infrastructure where kernel updates are slower and I3C hardware may be present.
- Monitor for repeated DMA transfer timeouts or instability in I3C-related device I/O as part of routine validation after updating.
- Track downstream vendor advisories and stable kernel backports referenced by the official Linux kernel links for this CVE.
Evidence notes
This debrief is based on the CVE description and the official NVD metadata supplied in the corpus. The CVE text states that hci_dma_dequeue_xfer() may be invoked in parallel for timeouts, causing the DMA ring stop/start sequence to race with itself, and that the fix is to serialize the function with a mutex. NVD lists the CVSS vector as CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H and includes three kernel.org stable references associated with the record. No additional claims about affected versions, exploitability beyond the supplied vector, or patch contents were used.
Sources and references
Verified primary and authoritative sources
-
CVE-2026-43353 CVE Program record
Publisher, destination, and source semantics verified
URL: https://www.cve.org/CVERecord?id=CVE-2026-43353
CVE Program - Official CVE Program record with source-provided CVE metadata.
-
CVE-2026-43353 NVD vulnerability detail
Publisher, destination, and source semantics verified
URL: https://nvd.nist.gov/vuln/detail/CVE-2026-43353
NIST National Vulnerability Database - Official NIST NVD detail page and source-specific vulnerability assessment.
Supplemental references
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/1dca8aee80eea76d2aae21265de5dd64f6ba0f09
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/4faa1e9c67a2229f6749190aedaf88ce0391efd2
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/b684b420a5bb0ea1b0e13abfdb8ce41c5266e62e
416baaa9-dc9f-4396-8d5f-8c081fb06d67
Methodology and review provenance
AI-assisted synthesis based on stored public vulnerability evidence. System validation, approval state, and publication status do not by themselves establish human review of this revision. PatchSiren helps prioritize defensive review and does not prove exposure or remediation on any system.