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

CVE-2026-23148: Linux Kernel Race Condition Vulnerability

CVE-2026-23148 is a race condition flaw in the Linux kernel's nvmet subsystem that causes NULL pointer dereferences. This post covers the technical details, affected versions, potential impact, and mitigation.

Published: February 20, 2026

CVE-2026-23148 Overview

A race condition vulnerability has been identified in the Linux kernel's NVMe Target (nvmet) subsystem, specifically within the nvmet_bio_done() function. This vulnerability can cause a NULL pointer dereference in blk_cgroup_bio_start(), resulting in a kernel crash and potential denial of service conditions on systems utilizing NVMe over Fabrics target functionality.

Critical Impact

This race condition can cause kernel crashes on systems running NVMe Target services, leading to denial of service and potential system instability in storage infrastructure environments.

Affected Products

  • Linux Kernel (nvmet module)
  • Systems utilizing NVMe over Fabrics target functionality
  • Block storage subsystems with cgroup integration

Discovery Timeline

  • 2026-02-14 - CVE CVE-2026-23148 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2026-23148

Vulnerability Analysis

This vulnerability is a classic Time-of-Check Time-of-Use (TOCTOU) race condition occurring in the NVMe Target subsystem's bio completion handling. The issue arises from improper ordering of operations in nvmet_bio_done(), where the request completion callback can trigger a re-submission of the same request before the bio has been properly cleaned up.

The race manifests in the following sequence: when a bio completes, nvmet_bio_done() calls nvmet_req_complete(), which invokes the queue_response callback. This callback can re-queue and re-submit the same request, reusing the same inline_bio from nvmet_req. Concurrently, nvmet_req_bio_put() (called after nvmet_req_complete()) invokes bio_uninit() for the inline_bio, which sets bio->bi_blkg to NULL. When the re-submitted bio enters submit_bio_noacct_nocheck(), the subsequent call to blk_cgroup_bio_start() dereferences bio->bi_blkg, causing a NULL pointer dereference and kernel panic.

Root Cause

The root cause is the incorrect ordering of function calls in nvmet_bio_done(). The function calls nvmet_req_complete() before nvmet_req_bio_put(), creating a window where the request can be re-submitted while the bio structure is still considered valid, but then immediately invalidated by the bio cleanup routine. The bi_blkg field is set to NULL by bio_uninit(), but the re-submitted bio expects this field to contain a valid pointer to the block cgroup structure.

Attack Vector

The attack vector for this vulnerability is local and requires the ability to generate NVMe Target I/O operations that trigger rapid bio completion and re-submission cycles. The vulnerability is triggered through a race condition that depends on specific timing conditions during concurrent bio processing.

The kernel crash manifests with the following call trace pattern:

BUG: kernel NULL pointer dereference, address: 0000000000000028
#PF: supervisor read access in kernel mode
RIP: 0010:blk_cgroup_bio_start+0x10/0xd0
Call Trace:
submit_bio_noacct_nocheck+0x44/0x250
nvmet_bdev_execute_rw+0x254/0x370 [nvmet]
process_one_work+0x193/0x3c0
worker_thread+0x281/0x3a0

The fix reorders the operations in nvmet_bio_done() to call nvmet_req_bio_put() BEFORE nvmet_req_complete(), ensuring the bio is properly cleaned up before any potential re-submission can occur.

Detection Methods for CVE-2026-23148

Indicators of Compromise

  • Kernel panic messages containing BUG: kernel NULL pointer dereference with RIP pointing to blk_cgroup_bio_start
  • Call traces showing nvmet_bdev_execute_rw in the backtrace
  • System crashes or unexpected reboots on NVMe Target servers under high I/O load
  • Kernel oops messages referencing the nvmet module

Detection Strategies

  • Monitor kernel logs for NULL pointer dereference errors associated with the nvmet module
  • Implement kernel panic detection and alerting mechanisms
  • Review dmesg output for blk_cgroup_bio_start crash signatures
  • Enable kernel crash dump collection (kdump) for post-mortem analysis

Monitoring Recommendations

  • Configure syslog monitoring for kernel panic events on systems running nvmet services
  • Set up automated alerts for unexpected system reboots on NVMe Target infrastructure
  • Monitor system stability metrics for NVMe over Fabrics deployments
  • Enable kernel tracing on nvmet functions during high-load scenarios for proactive detection

How to Mitigate CVE-2026-23148

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix
  • Review NVMe Target deployments for signs of instability or crashes
  • Consider temporarily reducing I/O load on affected systems until patches are applied
  • Implement monitoring for kernel panic events related to nvmet

Patch Information

The vulnerability has been addressed through kernel patches that reorder the function calls in nvmet_bio_done(). The fix ensures that nvmet_req_bio_put() is called BEFORE nvmet_req_complete(), eliminating the race condition window.

The patches are available through the stable kernel branches:

  • Kernel Commit 0fcee2cfc4b2
  • Kernel Commit 68207ceefd71
  • Kernel Commit ee10b06980ac

Workarounds

  • If immediate patching is not possible, consider disabling the nvmet module on non-critical systems
  • Reduce concurrent I/O operations on NVMe Target systems to minimize the likelihood of triggering the race condition
  • Implement redundant NVMe Target infrastructure to maintain availability during potential crashes
  • Monitor affected systems closely and schedule maintenance windows for kernel updates
bash
# Check current kernel version and nvmet module status
uname -r
lsmod | grep nvmet

# Verify kernel patches are applied by checking commit history
# Update kernel to latest stable version with the fix

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 Commit Log

  • Kernel Commit Log

  • Kernel Commit Log
  • 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