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

CVE-2026-23348: Linux Kernel Race Condition Vulnerability

CVE-2026-23348 is a race condition flaw in the Linux kernel CXL subsystem that causes NULL pointer dereference when nvdimm objects are created. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-23348 Overview

A race condition vulnerability has been identified in the Linux kernel's CXL (Compute Express Link) subsystem that can trigger a NULL pointer dereference when creating nvdimm objects. The vulnerability occurs due to improper synchronization between the nvdimm_bus object lifecycle and nvdimm device registration, leading to kernel crashes when the cxl_acpi module is removed while orphaned nvdimm devices attempt to reprobe.

Critical Impact

This vulnerability can cause kernel NULL pointer dereference crashes, resulting in system instability and potential denial of service conditions on systems using CXL memory devices.

Affected Products

  • Linux kernel with CXL (Compute Express Link) subsystem enabled
  • Systems using cxl_acpi, cxl_pmem, and libnvdimm kernel modules
  • QEMU virtualized environments with CXL memory simulation

Discovery Timeline

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

Technical Details for CVE-2026-23348

Vulnerability Analysis

The vulnerability resides in the CXL subsystem's handling of nvdimm device registration. When the cxl_translate module creates a dependency on cxl_acpi, orphaned nvdimm objects can attempt to reprobe after cxl_acpi is removed. The nvdimm_bus object, which is registered by the cxl_nvb object during cxl_acpi_probe(), becomes unavailable before the nvdimm devices complete their deregistration.

The race condition manifests in the __nd_device_register() function, where accessing dev->parent (which points to &nvdimm_bus->dev) triggers a NULL pointer dereference at memory address 0x6c. This occurs because the parent device structure has already been freed while the nvdimm device registration is still in progress on the cxl_bus_rescan_queue workqueue.

Root Cause

The root cause is a missing synchronization mechanism between the nvdimm_bus object lifecycle and the nvdimm device probe/registration process. Specifically:

  1. The cxl_nvb driver probe is asynchronous, allowing device registration to proceed before the nvdimm_bus is fully initialized
  2. No lock is held on the cxl_root uport_dev or cxl_nvb->dev when checking nvdimm_bus validity
  3. Orphaned nvdimm devices are not prevented from reprobing after module removal begins

Attack Vector

The vulnerability is triggered through local system manipulation involving kernel module loading/unloading operations. An attacker with local access and appropriate privileges could potentially trigger this condition by:

The crash occurs in the kernel workqueue context (cxl_port cxl_bus_rescan_queue) during the cxl_nvdimm_probe execution path. The call trace shows the NULL pointer dereference occurring in kobject_get() when called from __nd_device_register.part.0() in the libnvdimm module.

The kernel panic includes the following notable elements:

  • BUG type: kernel NULL pointer dereference at address 0x6c
  • Faulting instruction: kobject_get+0xc/0x90
  • Workqueue: cxl_port cxl_bus_rescan_queue [cxl_core]
  • Module chain: cxl_pmem → libnvdimm → cxl_core

Detection Methods for CVE-2026-23348

Indicators of Compromise

  • Kernel panic messages containing "BUG: kernel NULL pointer dereference" with address 0x6c
  • Stack traces showing __nd_device_register or cxl_nvdimm_probe in the call chain
  • System logs indicating workqueue failures in cxl_bus_rescan_queue
  • Unexpected system crashes during CXL module loading or unloading operations

Detection Strategies

  • Monitor kernel logs (dmesg/journald) for NULL pointer dereference events in CXL or nvdimm-related code paths
  • Implement kernel crash dump analysis to identify race condition patterns in CXL subsystem
  • Track module loading/unloading sequences for cxl_acpi, cxl_pmem, and cxl_translate modules
  • Deploy kernel live patching detection to verify vulnerable systems

Monitoring Recommendations

  • Enable kernel crash dump collection (kdump) to capture detailed state during system crashes
  • Configure auditd rules to monitor kernel module load/unload events for CXL-related modules
  • Implement automated log parsing for CXL subsystem error patterns
  • Monitor system stability metrics on servers with CXL-enabled hardware or virtualization

How to Mitigate CVE-2026-23348

Immediate Actions Required

  • Update to a patched Linux kernel version containing the fix commits
  • Avoid rapid loading/unloading cycles of CXL-related kernel modules on production systems
  • Consider temporarily disabling CXL subsystem if not required for operations
  • Implement system monitoring to detect and alert on kernel panics related to this issue

Patch Information

The vulnerability has been resolved through multiple kernel commits that implement proper synchronization:

  1. Set probe_type of cxl_nvb to PROBE_FORCE_SYNCHRONOUS ensuring synchronous driver probing during add_device()
  2. Added validation in __devm_cxl_add_nvdimm_bridge() to verify cxl_nvb driver attachment during cxl_acpi_probe()
  3. Implemented locking on cxl_root uport_dev and cxl_nvb->dev in devm_cxl_add_nvdimm() before validating nvdimm_bus
  4. Added CXL_NVD_F_INVALIDATED flag to cause cxl_nvdimm_probe() to exit with -EBUSY when appropriate

Relevant patches are available from the kernel Git repository:

  • Kernel Git Commit Update
  • Kernel Git Commit Patch
  • Kernel Git Commit Fix

Workarounds

  • Avoid running cxl-translate.sh unit tests or similar CXL diagnostic tools on production systems until patched
  • Implement module loading delays when working with CXL subsystem components
  • Configure systems to prevent automatic module unloading of CXL components
  • Use kernel module blacklisting to prevent loading of cxl_translate if not needed
bash
# Prevent automatic CXL module unloading (temporary workaround)
echo "options cxl_acpi dyndbg=+p" >> /etc/modprobe.d/cxl-workaround.conf

# Blacklist cxl_translate if not required
echo "blacklist cxl_translate" >> /etc/modprobe.d/cxl-blacklist.conf

# Verify current module state
lsmod | grep -E "(cxl|nvdimm)"

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 Patch

  • Kernel Git Commit Fix
  • 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