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-43309

CVE-2026-43309: Linux Kernel dm-raid DoS Vulnerability

CVE-2026-43309 is a denial of service vulnerability in Linux Kernel's dm-raid that causes system hangs when stopping RAID arrays with suspended metadata devices. This article covers technical details, affected versions, impact, and mitigation.

Published: May 18, 2026

CVE-2026-43309 Overview

CVE-2026-43309 is a Linux kernel vulnerability in the multiple device (md) RAID subsystem when accessed through the device-mapper dm-raid target. Stopping a RAID array under specific suspend conditions causes the system to hang indefinitely. The issue arises during teardown of dm-raid managed device trees, where the destructor attempts to flush the write-intent bitmap to already-suspended metadata devices. The affected code paths exist in Linux kernel versions starting from the 6.0 release series. Exploitation requires local access with privileges sufficient to manage RAID arrays through device-mapper.

Critical Impact

A local privileged user can trigger an indefinite system hang during dm-raid array teardown, resulting in denial of service on storage subsystems managed by md RAID with metadata.

Affected Products

  • Linux Kernel 6.0 (including release candidates rc3 through rc7)
  • Linux Kernel branches incorporating the affected md_stop() flush logic via dm-raid
  • Distributions shipping kernels prior to the commits 24783dd0, 338378df, and cefcb929

Discovery Timeline

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

Technical Details for CVE-2026-43309

Vulnerability Analysis

The vulnerability resides in the interaction between the device-mapper dm-raid target and the md RAID subsystem during array teardown. When a dm-raid managed device tree is suspended from top to bottom, the top-level RAID device is suspended first, followed by its underlying metadata and data devices. Removing the top-level device after this ordering triggers the dm-raid destructor, which calls md_stop(). The md_stop() routine attempts to flush the write-intent bitmap by issuing writes to the metadata sub-devices. Because those sub-devices are already in a suspended state, the writes cannot complete and the destructor blocks indefinitely.

The affected component is the kernel storage stack, and the impact is limited to availability of storage I/O paths managed by md RAID. The vulnerability falls under the kernel vulnerability category and is tracked under [NVD-CWE-noinfo].

Root Cause

The root cause is the unconditional write-intent bitmap flush in md_stop() when invoked from the dm-raid destructor path. The flush logic did not distinguish between a suspend context, where the underlying devices remain writable, and a destructor context, where the metadata devices have already been suspended. Issuing bitmap writes to suspended block devices results in I/O submissions that never complete.

Attack Vector

The attack vector is local and requires the ability to configure and manipulate device-mapper RAID targets. A local user with privileges to suspend dm-raid device trees and remove the top-level RAID device can deterministically trigger the hang. The vulnerability does not provide code execution, information disclosure, or integrity impact. The impact is confined to availability through indefinite blocking of kernel threads involved in the teardown.

No public proof-of-concept exploit is referenced in the enriched data, and the EPSS data indicates a low predicted exploitation likelihood. The vulnerability has not been observed in active exploitation campaigns. Triggering the condition requires specific dm-raid suspend ordering, which is not a typical accidental user action.

Detection Methods for CVE-2026-43309

Indicators of Compromise

  • Kernel threads associated with dm-raid teardown appearing in uninterruptible sleep (D state) for extended periods
  • hung_task warnings in dmesg referencing md_stop, bitmap write paths, or dm-raid destructor functions
  • Stalled dmsetup remove operations targeting RAID-backed mappings while underlying devices remain suspended

Detection Strategies

  • Monitor kernel logs for hung task timeouts originating from md or dm-raid call stacks after RAID array operations
  • Audit storage management activity that suspends dm-raid device trees followed by top-level device removal
  • Track running kernel versions across the fleet and correlate against the patched commits 24783dd0, 338378df, and cefcb929

Monitoring Recommendations

  • Enable CONFIG_DETECT_HUNG_TASK and review khungtaskd output for blocked tasks in storage subsystems
  • Alert on prolonged dmsetup or LVM RAID operations that fail to return
  • Aggregate kernel telemetry into a centralized data store to correlate storage stalls with RAID configuration changes

How to Mitigate CVE-2026-43309

Immediate Actions Required

  • Apply the upstream kernel fix or vendor backport that incorporates commits 24783dd0, 338378df, and cefcb929
  • Restrict privileges required to invoke dmsetup suspend and dmsetup remove on RAID-backed targets to trusted administrators
  • Avoid suspending dm-raid device trees from top to bottom prior to removing the top-level device until the patched kernel is installed

Patch Information

The fix prevents bitmap flushing when md_stop() is invoked from the dm-raid destructor context and avoids a quiesce/unquiesce cycle that could also generate I/O. Write-intent bitmap flushing remains permitted when md_stop() is called from the dm-raid suspend context. The patch uses md_is_rdwr() to distinguish between suspend and destructor paths. Patched commits are available at Kernel Git Commit 24783d, Kernel Git Commit 338378d, and Kernel Git Commit cefcb92.

Workarounds

  • Reorder teardown so that underlying metadata and data devices are not suspended before the top-level RAID device is removed
  • Limit shell and orchestration access to device-mapper administration utilities on systems that cannot be patched immediately
  • Schedule maintenance windows for kernel updates on hosts running md RAID with write-intent bitmaps enabled through dm-raid

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

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

  • Kernel Git Commit 338378d

  • Kernel Git Commit cefcb92
  • Related CVEs
  • CVE-2026-43492: Linux Kernel MPI Integer Underflow DoS

  • CVE-2026-43491: Linux Kernel QRTR NS DoS Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

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

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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