A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-43420

CVE-2026-43420: Linux Kernel Race Condition Vulnerability

CVE-2026-43420 is a race condition flaw in the Linux kernel's Ceph filesystem during async unlink operations that causes i_nlink underrun. This article covers technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2026-43420 Overview

CVE-2026-43420 is a race condition vulnerability in the Linux kernel's Ceph filesystem client. The flaw resides in the asynchronous unlink path, where the i_nlink inode counter is decremented before the Metadata Server (MDS) completion arrives. A concurrent worker thread processing CEPH_CAP_OP_IMPORT, CEPH_CAP_OP_GRANT, or CEPH_MSG_CLIENT_REPLY messages can call set_nlink() to zero, after which ceph_unlink() decrements the counter again. This triggers a drop_nlink+0x50/0x68 WARNING at fs/inode.c:407 and corrupts inode link state. The issue affects systems mounting CephFS with async dirops enabled.

Critical Impact

A concurrency window between async unlink submission and completion handling allows the i_nlink counter to underflow, producing kernel warnings and inode state inconsistency on CephFS clients.

Affected Products

  • Linux kernel CephFS client (fs/ceph) with async unlink enabled
  • Linux kernel 6.14.11 and prior releases containing the async unlink code path
  • Stable branches receiving fixes via commits 6d5fd8b, 7db008e, 8975b85, 9b31e88, aedd293, b3f5513, ce0123c, and fcc477a

Discovery Timeline

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

Technical Details for CVE-2026-43420

Vulnerability Analysis

The vulnerability is a Time-of-Check Time-of-Use (TOCTOU) race condition [CWE-367] in the CephFS client. During async unlink, ceph_unlink() calls ceph_mdsc_submit_request() to dispatch CEPH_MDS_OP_UNLINK to the MDS without waiting for the reply. The client then optimistically calls drop_nlink() under the assumption the unlink will succeed.

Between request submission and the local drop_nlink() call, a kernel worker thread may process an inbound MDS message. Handlers such as ceph_fill_inode() and handle_cap_grant() invoke set_nlink() with an authoritative count received from the MDS. If a parallel deletion by another client, or the completion of the current unlink, drives i_nlink to zero before the optimistic drop_nlink() executes, the subsequent decrement underflows the counter.

The underflow triggers the WARN_ON at fs/inode.c:407 in drop_nlink(), indicating illegal manipulation of a zero link count. Beyond the warning, the inode link count becomes inconsistent with server state.

Root Cause

The root cause is missing synchronization between the optimistic local drop_nlink() and asynchronous set_nlink() updates driven by MDS replies. The ceph_inode_info.i_ceph_lock spinlock protects set_nlink() in other paths but was not taken around the async unlink decrement, leaving the read-modify-write of i_nlink exposed to concurrent updates.

Attack Vector

The condition is reachable on any CephFS mount that exercises the async unlink path. A local unprivileged user issuing unlinkat() against files where the client holds the required capabilities can trigger the race when a second client deletes the same dentry, or when the MDS reply lands on a worker before the local decrement runs. The reporter reproduced the WARNING on unpatched 6.14.11 kernels under normal workload, confirming it is not theoretical.

The fix adds a zero check protected by i_ceph_lock, mirroring the pattern used in NFS, SMB (inode.i_lock), and AFS (afs_vnode.cb_lock). The decrement is skipped when i_nlink is already zero, eliminating the underflow.

Detection Methods for CVE-2026-43420

Indicators of Compromise

  • Kernel warnings referencing drop_nlink+0x50/0x68 with a call trace through ceph_unlink, vfs_unlink, and do_unlinkat
  • WARNING: CPU: ... at fs/inode.c:407 entries in dmesg or /var/log/kern.log on CephFS clients
  • Inode link count discrepancies between CephFS clients and the MDS observed via stat or getfattr

Detection Strategies

  • Parse kernel ring buffer output for drop_nlink warnings correlated with CephFS mount points and the ceph_unlink symbol
  • Monitor for repeated unlinkat syscall activity from the same process immediately preceding kernel warnings
  • Compare client-side i_nlink values with MDS-reported link counts during filesystem audits

Monitoring Recommendations

  • Forward kernel logs from CephFS clients to a centralized logging pipeline and alert on fs/inode.c warnings
  • Track CephFS client kernel versions across the fleet and flag hosts running pre-patch builds with async dirops enabled
  • Audit MDS reply latency and worker thread scheduling delay, as elongated windows increase race exposure

How to Mitigate CVE-2026-43420

Immediate Actions Required

  • Apply the upstream Ceph fix from one of the stable kernel commits: 6d5fd8b, 7db008e, 8975b85, 9b31e88, aedd293, b3f5513, ce0123c, or fcc477a
  • Reboot CephFS clients into the patched kernel and validate the fs/ceph module reflects the fix
  • Inventory CephFS client kernels and prioritize hosts with high unlink rates or multi-client write workloads

Patch Information

The fix wraps the decrement in ceph_unlink() with the ceph_inode_info.i_ceph_lock spinlock and skips drop_nlink() when i_nlink is already zero. See the upstream stable commits, including Kernel Git Commit 6d5fd8b, Kernel Git Commit 7db008e, Kernel Git Commit 8975b85, Kernel Git Commit 9b31e88, Kernel Git Commit aedd293, Kernel Git Commit b3f5513, Kernel Git Commit ce0123c, and Kernel Git Commit fcc477a.

Workarounds

  • Disable the async dirops feature on affected CephFS mounts to force synchronous unlink behavior until kernels are patched
  • Avoid concurrent deletions of the same dentry from multiple CephFS clients in workloads that cannot disable async unlink
  • Suppress non-fatal impact by ensuring kernel panic_on_warn is not enabled on CephFS clients during the patch rollout window
bash
# Remount CephFS without async dirops to bypass the affected code path
umount /mnt/cephfs
mount -t ceph <mon-addrs>:/ /mnt/cephfs -o name=admin,secretfile=/etc/ceph/admin.secret,wsync

# Verify the mount option is in effect
mount | grep cephfs

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

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechCeph

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

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

  • Kernel Git Commit 7db008e

  • Kernel Git Commit 8975b85

  • Kernel Git Commit 9b31e88

  • Kernel Git Commit aedd293

  • Kernel Git Commit b3f5513

  • Kernel Git Commit ce0123c

  • Kernel Git Commit fcc477a
  • Related CVEs
  • CVE-2026-43408: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43273: Linux Kernel Information Disclosure Flaw

  • CVE-2026-23189: Linux Kernel Privilege Escalation Flaw

  • CVE-2024-48916: Ceph RadosGW Authentication Bypass Flaw
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