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
    • 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-23292

CVE-2026-23292: Linux Kernel Race Condition Vulnerability

CVE-2026-23292 is a race condition vulnerability in the Linux kernel SCSI target subsystem that causes recursive locking in configfs operations. This article covers the technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-23292 Overview

A recursive locking vulnerability has been identified in the Linux kernel's SCSI target subsystem within the __configfs_open_file() function. The flaw occurs in the flush_write_buffer operation where the &p->frag_sem semaphore is acquired before calling the target_core_item_dbroot_store() function. This store function subsequently calls filp_open(), which triggers a chain of filesystem operations that attempt to re-acquire the same semaphore, leading to recursive locking conditions.

The vulnerability manifests when target_core_item_dbroot_store() attempts to validate a new file path by opening it. If the path points back to the same configfs file currently being operated on (such as /sys/kernel/config/target/dbroot), the system attempts to acquire the frag_sem semaphore in a nested manner while it's already held, creating a potential deadlock scenario.

Critical Impact

This vulnerability can lead to kernel deadlocks and system instability when specific configfs operations are performed on the SCSI target subsystem, potentially causing denial of service conditions.

Affected Products

  • Linux Kernel (SCSI target subsystem with configfs support)
  • Systems using target_core_mod kernel module
  • Linux distributions with affected kernel versions

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23292 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23292

Vulnerability Analysis

The vulnerability exists in the interaction between the configfs filesystem and the SCSI target core subsystem. When a write operation is performed on a configfs file, the flush_write_buffer() function acquires the frag_sem semaphore before invoking the configured store callback. For SCSI target configfs entries, this callback is target_core_item_dbroot_store().

The problematic behavior occurs because target_core_item_dbroot_store() uses filp_open() to validate file paths. When the provided path references the same configfs file being written to, the kernel's VFS layer initiates a new open operation that traverses through do_filp_open() → path_openat() → do_open() → vfs_open() → do_dentry_open() → __configfs_open_file() → down_read(), ultimately attempting to acquire the frag_sem semaphore that is already held.

This creates a classic deadlock scenario where a thread blocks waiting for a resource it already possesses, which can result in system hangs or kernel soft lockup warnings.

Root Cause

The root cause is the use of filp_open() for path validation within a context where the configfs semaphore is already held. The filp_open() function triggers full filesystem open semantics, including the configfs-specific __configfs_open_file() handler, which requires acquiring the same frag_sem semaphore. This violates the kernel's locking hierarchy and creates a recursive lock acquisition attempt.

The fix modifies target_core_item_dbroot_store() to use kern_path() instead of filp_open(). The kern_path() function performs path resolution and validation without triggering filesystem-specific open handlers, thereby avoiding the configfs semaphore acquisition that causes the recursive locking condition.

Attack Vector

The attack vector for this vulnerability involves local access to the system with permissions to write to SCSI target configfs entries. An attacker or privileged user could trigger this condition by writing a specially crafted path (specifically, the path to the same dbroot configfs file) to the /sys/kernel/config/target/dbroot entry.

The call trace demonstrating the locking sequence is as follows:

  1. configfs_write_iter initiates write operation
  2. flush_write_buffer acquires frag_sem semaphore
  3. target_core_item_dbroot_store is called as the store handler
  4. filp_open is called to validate the provided path
  5. VFS operations lead back to __configfs_open_file
  6. down_read attempts to re-acquire frag_sem, causing deadlock

Detection Methods for CVE-2026-23292

Indicators of Compromise

  • Kernel soft lockup warnings referencing configfs_write_iter or target_core_item_dbroot_store in stack traces
  • System hangs when performing SCSI target configuration operations
  • Kernel log messages indicating "db_root: not a directory: /sys/kernel/config/target/dbroot"
  • Increased CPU usage with processes stuck in uninterruptible sleep state during configfs operations

Detection Strategies

  • Monitor kernel logs for soft lockup warnings involving the SCSI target subsystem
  • Implement audit rules for write operations to /sys/kernel/config/target/dbroot
  • Deploy kernel tracing probes on target_core_item_dbroot_store and __configfs_open_file functions
  • Use kernel livepatching detection tools to identify systems running vulnerable kernel versions

Monitoring Recommendations

  • Configure system monitoring to alert on kernel soft lockup events
  • Implement watchdog timers to detect and recover from potential deadlock conditions
  • Monitor system responsiveness during SCSI target configuration changes
  • Review kernel module loading logs for target_core_mod usage on production systems

How to Mitigate CVE-2026-23292

Immediate Actions Required

  • Apply the kernel patches from the official Linux kernel git repository
  • Restrict access to configfs SCSI target entries to only authorized administrators
  • Avoid automated or scripted operations that write self-referential paths to dbroot
  • Consider temporarily unloading the target_core_mod module if SCSI target functionality is not required

Patch Information

The Linux kernel developers have released patches to address this vulnerability. The fix replaces the use of filp_open() with kern_path() in target_core_item_dbroot_store() to avoid triggering filesystem-specific open handlers that cause the recursive locking condition.

Patch commits are available in the stable kernel git repository:

  • Kernel Git Commit Update 1
  • Kernel Git Commit Update 2
  • Kernel Git Commit Update 3
  • Kernel Git Commit Update 4
  • Kernel Git Commit Update 5
  • Kernel Git Commit Update 6

Workarounds

  • Restrict write access to /sys/kernel/config/target/dbroot using filesystem permissions
  • Implement input validation scripts to prevent writing self-referential paths
  • Use SELinux or AppArmor policies to limit access to SCSI target configfs entries
  • Monitor and audit all operations on the SCSI target configuration interface
bash
# Restrict access to SCSI target configfs (temporary workaround)
chmod 600 /sys/kernel/config/target/dbroot
chown root:root /sys/kernel/config/target/dbroot

# Verify current kernel version for patch status
uname -r

# Check if target_core_mod is loaded
lsmod | grep target_core

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 1

  • Kernel Git Commit Update 2

  • Kernel Git Commit Update 3

  • Kernel Git Commit Update 4

  • Kernel Git Commit Update 5

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

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

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

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