The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-43353

CVE-2026-43353: Linux Kernel Race Condition Vulnerability

CVE-2026-43353 is a race condition flaw in the Linux Kernel's MIPI I3C HCI DMA ring dequeue mechanism that allows concurrent timeout operations to interfere. This article covers the technical details, impact, and mitigation.

Published: May 18, 2026

CVE-2026-43353 Overview

CVE-2026-43353 is a race condition vulnerability in the Linux kernel's i3c MIPI I3C Host Controller Interface (HCI) driver. The flaw resides in the hci_dma_dequeue_xfer() function, which handles transfer timeouts on the HCI DMA ring. The function is not serialized and can race with itself when multiple transfers time out concurrently. Parallel invocations may stop or restart the DMA ring at unexpected times, corrupting driver state. The vulnerability is classified under [CWE-362] (Concurrent Execution using Shared Resource with Improper Synchronization). It affects Linux kernel versions including 7.0-rc1, 7.0-rc2, and 7.0-rc3.

Critical Impact

Local attackers with low privileges can trigger concurrent DMA dequeue paths, leading to driver state corruption that impacts confidentiality, integrity, and availability on affected systems.

Affected Products

  • Linux Kernel 7.0-rc1
  • Linux Kernel 7.0-rc2
  • Linux Kernel 7.0-rc3

Discovery Timeline

  • 2026-05-08 - CVE-2026-43353 published to NVD
  • 2026-05-15 - Last updated in NVD database

Technical Details for CVE-2026-43353

Vulnerability Analysis

The vulnerability exists in the MIPI I3C HCI driver path responsible for cleaning up DMA transfers that fail to complete within their timeout window. When hci_dma_dequeue_xfer() is invoked, it stops the DMA ring, walks incomplete transfers, processes them, and then restarts the ring. The function assumes single-threaded execution but lacks any locking primitive to enforce that assumption.

When several outstanding transfers time out within a narrow window, the kernel can dispatch parallel calls into hci_dma_dequeue_xfer() from different timeout contexts. The two instances then operate on the same ring state without coordination. One caller can restart the ring while another still expects it to be stopped, leaving the controller in an inconsistent state and corrupting the transfer queue accounting.

Root Cause

The root cause is a missing synchronization primitive around a critical section that mutates shared DMA ring state. The fix introduces a mutex so that hci_dma_dequeue_xfer() is serialized with respect to itself, ensuring that ring stop, processing, and restart steps complete atomically.

Attack Vector

Exploitation requires local access with low privileges on a system that exposes the MIPI I3C HCI driver to user-influenced workloads. An attacker who can induce transfer timeouts on the I3C bus can race the unserialized cleanup path to corrupt driver state. The vulnerability is not network reachable and requires no user interaction. The resulting state corruption can disrupt device communication and may be leveraged to undermine system integrity. See the kernel commit fix for the technical patch details.

Detection Methods for CVE-2026-43353

Indicators of Compromise

  • Kernel log entries from the mipi-i3c-hci driver indicating repeated transfer timeouts or unexpected ring state transitions.
  • Soft lockups, hung tasks, or warnings originating from the i3c subsystem in dmesg output.
  • Unexplained I3C device communication failures coinciding with high transfer volume.

Detection Strategies

  • Audit running kernel versions across Linux fleets and flag systems built on 7.0-rc1 through 7.0-rc3 that include the unpatched i3c HCI driver.
  • Correlate mipi-i3c-hci driver error events with periods of elevated I3C bus activity to surface race-related anomalies.
  • Enable kernel lockdep and KCSAN on test systems to detect data races in the i3c dequeue path during validation.

Monitoring Recommendations

  • Forward kernel ring buffer events to a centralized log pipeline and alert on i3c subsystem warnings.
  • Monitor for kernel panics or driver resets tied to the mipi-i3c-hci module across production hosts.
  • Track patch deployment status for stable kernel updates referenced in the vendor advisory.

How to Mitigate CVE-2026-43353

Immediate Actions Required

  • Apply the upstream kernel patches referenced in the stable tree commits as soon as distribution updates are available.
  • Inventory systems running Linux kernel 7.0-rc1, 7.0-rc2, or 7.0-rc3 and prioritize them for patching.
  • Restrict local access to systems exposing the MIPI I3C HCI controller until patches are deployed.

Patch Information

The fix adds a mutex to serialize hci_dma_dequeue_xfer() against itself. Three stable tree commits address the issue: 1dca8aee80ee, 4faa1e9c67a2, and b684b420a5bb. Rebuild and reboot affected kernels after applying the patch.

Workarounds

  • Where the I3C controller is not required, blacklist the mipi-i3c-hci module to remove the vulnerable code path from the running kernel.
  • Limit physical and logical access to hosts that expose I3C peripherals to reduce the local attack surface.
  • Pin production deployments to released stable kernels rather than 7.0 release candidates until the fix is broadly available.
bash
# Blacklist the vulnerable driver where not required
echo "blacklist mipi-i3c-hci" | sudo tee /etc/modprobe.d/blacklist-mipi-i3c-hci.conf
sudo update-initramfs -u
sudo reboot

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechLinux Kernel

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-362
  • Vendor Resources
  • Kernel Git Commit Change

  • Kernel Git Commit Update

  • Kernel Git Commit Modification
  • Related CVEs
  • CVE-2026-43342: Linux Kernel Race Condition Vulnerability

  • CVE-2026-43340: Linux Kernel Race Condition Vulnerability

  • CVE-2026-43318: Linux Kernel Race Condition Vulnerability

  • CVE-2026-43319: Linux Kernel Race Condition Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English