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

CVE-2026-43127: Linux Kernel Race Condition Vulnerability

CVE-2026-43127 is a race condition flaw in the Linux kernel's ntfs3 filesystem that causes circular locking dependency deadlocks. This article covers the technical details, affected versions, and mitigation strategies.

Published: May 7, 2026

CVE-2026-43127 Overview

CVE-2026-43127 is a circular locking dependency in the Linux kernel's ntfs3 filesystem driver. Syzbot detected an AB-BA deadlock between wnd->rw_lock (held in sbi->used.bitmap) and ni->file.run_lock during NTFS run unpacking operations. The flaw resides in the run_unpack_ex() function, which acquires the bitmap lock before attempting to take the run lock through ntfs_refresh_zone(). A concurrent call path through ntfs_extend_mft() takes those locks in the opposite order, producing the deadlock condition. The issue affects Linux kernels that include the ntfs3 driver and has been resolved upstream through stable tree commits.

Critical Impact

Concurrent NTFS operations can deadlock kernel threads, causing filesystem hangs and denial of service on systems mounting NTFS volumes via the ntfs3 driver.

Affected Products

  • Linux kernel with ntfs3 filesystem driver enabled
  • Stable kernel branches receiving commits 08ce2fee1b86, b014372b6223, and b8d22d9d8260
  • Systems mounting NTFS volumes using the in-tree ntfs3 driver

Discovery Timeline

  • 2026-05-06 - CVE-2026-43127 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43127

Vulnerability Analysis

The vulnerability is a classic AB-BA lock ordering violation [Race Condition / Deadlock] inside the ntfs3 filesystem implementation. Two kernel paths acquire the same pair of locks in opposite orders. The first path, ntfs_extend_mft(), takes ni->file.run_lock first and then wnd->rw_lock. The second path, run_unpack_ex(), takes wnd->rw_lock first and then attempts to acquire ni->file.run_lock indirectly through ntfs_refresh_zone(). When two threads execute these paths concurrently, each thread blocks waiting for a lock held by the other. The result is a kernel-level deadlock that hangs filesystem I/O on the affected NTFS volume. Syzbot's lockdep instrumentation detected the inverse acquisition order during fuzzing of the ntfs3 driver.

Root Cause

The root cause is inconsistent lock acquisition order across the ntfs3 Master File Table (MFT) extension and run unpacking code paths. run_unpack_ex() calls ntfs_refresh_zone() while already holding wnd->rw_lock, and ntfs_refresh_zone() then attempts a blocking down_read() on ni->file.run_lock. Lock hierarchy was not enforced between these two subsystems, so the bitmap lock and the run lock could be acquired in either order.

Attack Vector

Triggering the deadlock requires concurrent NTFS operations that exercise both code paths simultaneously. A local user with the ability to perform reads or writes against an NTFS volume mounted with ntfs3 can induce the condition through crafted filesystem activity. Successful triggering hangs kernel threads holding the contested locks, producing a denial of service on the filesystem and any process waiting on it.

No exploitation code is available, and the public references consist solely of upstream kernel patches. The fix replaces down_read() with down_read_trylock() in run_unpack_ex(). When the trylock fails, the function skips ntfs_refresh_zone() and defers MFT zone refresh to the next MFT operation, eliminating the blocking acquisition that produced the cycle.

Detection Methods for CVE-2026-43127

Indicators of Compromise

  • Kernel lockdep warnings referencing wnd->rw_lock and ni->file.run_lock with circular dependency traces
  • Hung task warnings from threads stuck inside run_unpack_ex or ntfs_extend_mft
  • NTFS volume I/O stalls coinciding with elevated D state process counts

Detection Strategies

  • Enable CONFIG_PROVE_LOCKING and CONFIG_LOCKDEP on test kernels to surface AB-BA lock reports during NTFS workloads
  • Monitor dmesg for INFO: possible circular locking dependency detected messages tied to ntfs3 symbols
  • Track kernel version and patch level against fixed commits 08ce2fee1b86, b014372b6223, and b8d22d9d8260

Monitoring Recommendations

  • Alert on khungtaskd warnings and processes blocked longer than kernel.hung_task_timeout_secs while accessing NTFS mounts
  • Collect kernel panic and soft lockup telemetry from hosts mounting NTFS volumes
  • Audit which workloads use the ntfs3 driver versus the legacy ntfs or FUSE-based ntfs-3g to scope exposure

How to Mitigate CVE-2026-43127

Immediate Actions Required

  • Apply the upstream stable kernel update containing the run_unpack_ex trylock fix to all systems using ntfs3
  • Identify hosts mounting NTFS volumes with the in-tree ntfs3 driver and prioritize them for patching
  • Validate the fix in non-production by exercising concurrent read and write workloads on NTFS volumes

Patch Information

The vulnerability is resolved by three stable tree commits: kernel.org commit 08ce2fee1b86, kernel.org commit b014372b6223, and kernel.org commit b8d22d9d8260. The change replaces down_read() with down_read_trylock() when acquiring run_lock inside run_unpack_ex(). If the lock is contended, the code skips ntfs_refresh_zone() and defers refresh to the next MFT operation.

Workarounds

  • Mount NTFS volumes read-only where write activity is not required, reducing concurrent paths into ntfs_extend_mft()
  • Use the userspace ntfs-3g FUSE driver instead of the in-tree ntfs3 driver until the patch is deployed
  • Avoid loading the ntfs3 module on systems that do not require NTFS access by blacklisting it in /etc/modprobe.d/
bash
# Blacklist the ntfs3 module until patched kernel is deployed
echo 'blacklist ntfs3' | sudo tee /etc/modprobe.d/blacklist-ntfs3.conf
sudo update-initramfs -u
# Verify running kernel includes the fix commit
uname -r
git -C /usr/src/linux log --oneline | grep -E '08ce2fee1b86|b014372b6223|b8d22d9d8260'

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 Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

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

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

  • CVE-2026-31700: 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