Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-31523

CVE-2026-31523: Linux Kernel Race Condition Vulnerability

CVE-2026-31523 is a race condition vulnerability in the Linux kernel's nvme-pci driver that may cause double completions during queue resets. This article covers technical details, affected versions, and mitigations.

Published: April 23, 2026

CVE-2026-31523 Overview

A race condition vulnerability has been identified in the Linux kernel's NVMe-PCI driver. The vulnerability exists in the polled queue handling mechanism, where a user can change the polled queue count at runtime. During a reset operation, there is a brief window where a high-priority (hipri) task may attempt to poll a queue before the block layer has updated the queue maps. This race condition between the polling operation and the now interrupt-driven queue may result in double completions.

Critical Impact

This race condition in the NVMe-PCI subsystem can lead to double completions, potentially causing system instability, data corruption, or denial of service conditions on systems using NVMe storage devices with polling enabled.

Affected Products

  • Linux Kernel (NVMe-PCI subsystem)
  • Systems using NVMe storage devices with polled queues
  • Linux distributions with affected kernel versions

Discovery Timeline

  • 2026-04-22 - CVE-2026-31523 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2026-31523

Vulnerability Analysis

This vulnerability is a race condition in the Linux kernel's NVMe-PCI driver, specifically in the polled queue management code. The issue arises from the ability for users to modify the polled queue count at runtime, creating a synchronization gap during reset operations.

When the system undergoes a reset, there exists a timing window where the block layer's queue maps have not yet been updated to reflect the new queue configuration. During this window, a high-priority task may attempt to poll a queue that has transitioned from polling mode to interrupt-driven mode. Since the task still believes the queue is polled while it's actually interrupt-driven, both the polling mechanism and the interrupt handler may attempt to complete the same I/O operation, resulting in double completions.

Double completions in the kernel's block layer can lead to use-after-free conditions, memory corruption, or kernel panics, making this a significant stability and potential security concern for systems utilizing NVMe storage with polling capabilities.

Root Cause

The root cause lies in insufficient synchronization between the user-configurable polled queue count changes and the block layer's queue map updates during reset operations. The NVMe-PCI driver does not properly ensure that high-priority polling tasks cannot access queues that are transitioning between polled and interrupt-driven modes.

Attack Vector

The vulnerability can be triggered through runtime modification of polled queue counts combined with timing-sensitive operations that exploit the reset window. An attacker with local access and the ability to modify NVMe queue parameters could potentially trigger the race condition to cause system instability or denial of service.

The exploitation scenario involves:

  1. Modifying the polled queue count at runtime
  2. Triggering a device reset
  3. Scheduling high-priority I/O tasks that poll the transitioning queues
  4. Racing the queue state change to achieve double completions

Detection Methods for CVE-2026-31523

Indicators of Compromise

  • Unexpected kernel panics or system crashes related to NVMe subsystem
  • Double completion warnings or errors in kernel logs (dmesg)
  • NVMe driver error messages indicating queue state inconsistencies
  • System instability during NVMe device resets or queue reconfiguration

Detection Strategies

  • Monitor kernel logs for NVMe-PCI driver errors and warnings related to queue completions
  • Implement kernel tracing (ftrace) on NVMe polling functions to detect anomalous completion patterns
  • Deploy kernel crash dump analysis to identify double-free or use-after-free conditions in NVMe code paths
  • Use perf or BPF-based tools to monitor NVMe queue transitions during reset operations

Monitoring Recommendations

  • Enable verbose NVMe logging in production environments with polled queues
  • Configure crash dump collection (kdump) to capture kernel state during potential exploitation
  • Implement system monitoring for unexpected NVMe device resets or queue count changes
  • Review audit logs for unauthorized modifications to NVMe device parameters

How to Mitigate CVE-2026-31523

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix
  • Restrict runtime modification of NVMe polled queue counts to authorized administrators only
  • Consider disabling polled queues temporarily on critical systems until patched
  • Monitor systems for signs of exploitation or instability

Patch Information

The Linux kernel development team has released patches to address this vulnerability. Multiple commits have been applied to stable kernel branches:

  • Kernel Commit 0685dd9c
  • Kernel Commit 166e31d7
  • Kernel Commit 6f12734c
  • Kernel Commit 965e2c94
  • Kernel Commit acbc72dd
  • Kernel Commit b222680b
  • Kernel Commit b96c7b25
  • Kernel Commit ba167d59

The patches ensure proper synchronization between polled queue state changes and the block layer's queue map updates, preventing high-priority tasks from polling queues during the transition window.

Workarounds

  • Disable NVMe polled I/O by setting the poll_queues module parameter to 0: nvme_core.poll_queues=0
  • Avoid runtime modification of polled queue counts on production systems
  • Implement access controls to prevent unauthorized users from modifying NVMe device parameters
  • Schedule NVMe configuration changes during maintenance windows with reduced system load
bash
# Configuration example
# Disable NVMe polled queues as a temporary mitigation
# Add to kernel boot parameters or modprobe configuration
echo "options nvme_core poll_queues=0" | sudo tee /etc/modprobe.d/nvme-disable-polling.conf

# Reload NVMe module if possible, or schedule a reboot
sudo modprobe -r nvme && sudo modprobe nvme

# Verify polling is disabled
cat /sys/module/nvme_core/parameters/poll_queues

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

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit
  • Related CVEs
  • CVE-2026-31456: Linux Kernel Race Condition Vulnerability

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

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

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