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

CVE-2026-43404: Linux Kernel Race Condition Vulnerability

CVE-2026-43404 is a race condition flaw in the Linux kernel's hmm_range_fault() function that can cause livelock and system starvation. This article covers the technical details, affected versions, and mitigation strategies.

Published: May 18, 2026

CVE-2026-43404 Overview

CVE-2026-43404 is a livelock and starvation vulnerability in the Linux kernel memory management subsystem. The flaw resides in hmm_range_fault(), which can spin indefinitely while attempting to acquire a device-private folio lock during do_swap_page processing. When the process holding the folio lock depends on a work item scheduled on the same CPU as the spinning hmm_range_fault() caller, the work item is starved and the system enters a state that never resolves. The condition was reproduced by the xe_exec_system_allocator IGT test and has been resolved upstream.

Critical Impact

A workload using Heterogeneous Memory Management (HMM) with device-private memory can trigger a livelock that halts forward progress on the affected CPU until the system is reset.

Affected Products

  • Linux kernel — mm subsystem (hmm_range_fault() path)
  • Linux kernel — migration entry handling (migration_entry_wait_on_locked())
  • Workloads using device-private memory with HMM (for example, Xe DRM driver paths exercised by xe_exec_system_allocator)

Discovery Timeline

  • 2026-05-08 - CVE-2026-43404 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-43404

Vulnerability Analysis

The defect lives in the Linux kernel HMM page-fault path. When hmm_range_fault() encounters a device-private folio in do_swap_page(), it calls folio_trylock() to acquire the folio lock so the page can be migrated back to system RAM. On folio_trylock() failure, the original implementation retries in a tight loop until the lock is obtained.

The spinning thread never voluntarily yields the CPU. If the lock holder is blocked inside migrate_device_unmap() waiting on lru_add_drain_all(), which schedules a short work item on every online CPU, the work item assigned to the spinning CPU cannot run. The result is a circular wait between two kernel threads on the same CPU.

The upstream fix replaces the busy retry with a wait on the folio. migration_entry_wait_on_locked() was renamed to softleaf_entry_wait_on_locked() and is now invoked from do_swap_page() so the faulting thread sleeps until the folio lock is released, allowing the deferred work item to execute.

Root Cause

The root cause is an uncoordinated retry loop combined with a CPU-bound work dependency. Three preconditions must align: device-private and system memory folios are both processed in migrate_device_unmap(), the device-private folio has a mapcount > 1 so migration PTE insertion is deferred to try_to_migrate(), and the kernel is built with no or voluntary preemption only. This is a Race Condition class defect.

Attack Vector

Exploitation requires a local workload that drives HMM with device-private memory and triggers concurrent migration. No remote vector is documented. The realistic impact is a Denial of Service through kernel livelock rather than privilege escalation or data disclosure. No public proof of concept exists beyond the xe_exec_system_allocator IGT regression test that reproduced the issue.

No verified exploit code is available. Technical details are documented in the upstream commits referenced in Kernel Git Commit b570f37a, Kernel Git Commit 7e6e2fc9, and Kernel Git Commit 94b6d0ba.

Detection Methods for CVE-2026-43404

Indicators of Compromise

  • A kernel thread stuck in hmm_range_fault() consuming 100% of a single CPU with no forward progress.
  • Another task simultaneously blocked inside migrate_device_unmap() calling lru_add_drain_all().
  • Soft lockup or RCU stall warnings referencing do_swap_page, hmm_range_fault, or folio_trylock in dmesg.

Detection Strategies

  • Collect kernel stack traces with echo l > /proc/sysrq-trigger or perf record when a CPU appears pinned; look for the hmm_range_fault → folio_trylock retry pattern.
  • Enable CONFIG_SOFTLOCKUP_DETECTOR and CONFIG_DETECT_HUNG_TASK so the kernel logs hangs that match this signature.
  • Inventory hosts running GPU compute or HMM-enabled drivers, including the Xe DRM driver, and compare running kernel versions against the patched commits.

Monitoring Recommendations

  • Forward kernel logs to a centralized log platform and alert on soft lockup, rcu: INFO: rcu_sched self-detected stall, and stack frames containing hmm_range_fault.
  • Track per-CPU utilization on GPU compute nodes and flag sustained single-core saturation that does not correlate with user workload.
  • Monitor uptime regressions and unplanned reboots on hosts using device-private memory drivers.

How to Mitigate CVE-2026-43404

Immediate Actions Required

  • Apply the upstream stable kernel updates that include commit a69d1ab971a624c6f112cea61536569d579c3215 and the cherry-picks referenced in the NVD entry.
  • Prioritize patching on hosts running GPU compute, AI training, or other workloads that use HMM with device-private memory.
  • Reboot patched systems to ensure the updated do_swap_page() and softleaf_entry_wait_on_locked() paths are loaded.

Patch Information

The fix replaces the folio_trylock() spin with a wait on the folio in do_swap_page(). migration_entry_wait_on_locked() is renamed to softleaf_entry_wait_on_locked() and a stub is added for !CONFIG_MIGRATION builds with a WARN_ON_ONCE() guard. Patched commits: b570f37a, 7e6e2fc9, and 94b6d0ba.

Workarounds

  • Build the kernel with CONFIG_PREEMPT=y (full preemption) to break precondition (c) and prevent the livelock from manifesting.
  • Avoid running workloads that drive concurrent device-private folio migration on affected kernels until patches are deployed.
  • Where feasible, disable or unload drivers that exercise the HMM device-private path on unpatched hosts.
bash
# Verify the running kernel includes the fix and check preemption model
uname -r
zgrep -E 'CONFIG_PREEMPT|CONFIG_MIGRATION' /boot/config-$(uname -r)

# Inspect for the livelock signature in kernel logs
dmesg -T | grep -E 'soft lockup|hmm_range_fault|migrate_device_unmap'

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit Details

  • Kernel Git Commit Details

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

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

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

  • CVE-2026-43318: Linux Kernel Race Condition 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