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

CVE-2026-23179: Linux Kernel NVMe-TCP DoS Vulnerability

CVE-2026-23179 is a denial of service flaw in the Linux kernel's NVMe-TCP implementation causing deadlock during socket closure. This article covers the technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2026-23179 Overview

A deadlock vulnerability has been identified in the Linux kernel's NVMe-oF TCP target subsystem (nvmet-tcp). The issue occurs in the nvmet_tcp_listen_data_ready() function when a socket is closed while in the TCP_LISTEN state. During socket closure, a callback is triggered to flush all outstanding packets, which calls nvmet_tcp_listen_data_ready() with the sk_callback_lock already held. Without proper state checking, the function attempts to acquire the same lock, resulting in a deadlock condition that can hang the system.

Critical Impact

This vulnerability can cause system hangs due to deadlock conditions in the NVMe-oF TCP target subsystem, potentially affecting storage availability in enterprise environments using NVMe over Fabrics.

Affected Products

  • Linux kernel (versions with nvmet-tcp subsystem)
  • Systems using NVMe-oF (NVMe over Fabrics) TCP target functionality
  • Enterprise storage deployments leveraging NVMe-TCP protocol

Discovery Timeline

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

Technical Details for CVE-2026-23179

Vulnerability Analysis

This vulnerability exists in the NVMe-oF TCP target implementation within the Linux kernel. The nvmet_tcp_listen_data_ready() function is a callback handler invoked when data becomes available on a listening TCP socket. The core issue stems from improper lock state management during socket teardown operations.

When a TCP socket in the TCP_LISTEN state is closed, the kernel initiates cleanup procedures that flush outstanding network packets. This cleanup operation invokes the nvmet_tcp_listen_data_ready() callback while already holding the sk_callback_lock. The vulnerable code path then attempts to acquire the same sk_callback_lock, which it cannot obtain since the lock is non-recursive. This creates a classic deadlock scenario where the calling thread waits indefinitely for a lock it already holds.

The impact of this vulnerability is a complete system hang affecting NVMe-oF TCP target operations. In enterprise storage environments where NVMe over Fabrics is deployed for high-performance storage networking, this could lead to denial of service conditions affecting storage availability.

Root Cause

The root cause is a missing state check before lock acquisition in the nvmet_tcp_listen_data_ready() function. The function should verify whether the socket is in TCP_LISTEN state before attempting to acquire sk_callback_lock. Without this check, the code path that handles socket closure can trigger a recursive lock acquisition attempt on the same non-recursive spinlock.

Attack Vector

The vulnerability is triggered through specific socket state transitions during connection teardown. An attacker or system condition that causes rapid socket close operations while the nvmet-tcp target is actively listening could potentially trigger this deadlock. The attack surface includes:

The deadlock condition can be triggered when network connections to the NVMe-oF TCP target are terminated abruptly or during high connection churn scenarios. The vulnerability manifests when the socket closure callback executes while the socket is still in TCP_LISTEN state, causing the data ready handler to be invoked with locks already held. For detailed technical analysis, see the kernel git commits referenced in the external references.

Detection Methods for CVE-2026-23179

Indicators of Compromise

  • System hangs or unresponsive behavior specifically affecting NVMe-oF TCP target operations
  • Kernel soft lockup warnings or hung task warnings in system logs related to nvmet_tcp threads
  • Storage connectivity failures for clients connecting via NVMe-TCP protocol

Detection Strategies

  • Monitor for kernel lockup warnings in /var/log/kern.log or dmesg output containing references to nvmet_tcp or sk_callback_lock
  • Implement watchdog monitoring for NVMe-oF target services to detect unresponsive states
  • Use kernel tracing tools (ftrace, bpftrace) to monitor lock acquisition patterns in nvmet-tcp code paths

Monitoring Recommendations

  • Configure kernel lockup detection with appropriate timeouts using kernel.hung_task_timeout_secs
  • Enable NMI watchdog for detecting hard lockups that may result from deadlock escalation
  • Monitor NVMe-oF target connection statistics for abnormal connection failures or timeouts

How to Mitigate CVE-2026-23179

Immediate Actions Required

  • Review deployed Linux kernel versions for affected nvmet-tcp implementations
  • Plan maintenance windows to apply kernel patches addressing this deadlock condition
  • Consider temporarily disabling NVMe-oF TCP target functionality if immediate patching is not possible

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix involves adding a check for the TCP_LISTEN state before attempting to acquire sk_callback_lock() in the nvmet_tcp_listen_data_ready() function. Patches are available through the official kernel git repository:

  • Kernel Git Commit 1c90f93
  • Kernel Git Commit 2fa8961
  • Kernel Git Commit 6e0c750

Workarounds

  • If NVMe-oF TCP target functionality is not required, unload the nvmet_tcp kernel module to eliminate the attack surface
  • Implement network-level access controls to limit connections to NVMe-oF TCP target ports from trusted hosts only
  • Monitor systems for signs of deadlock and implement automated recovery procedures
bash
# Unload nvmet-tcp module if not in use
modprobe -r nvmet_tcp

# Check if module is loaded
lsmod | grep nvmet_tcp

# Block external access to NVMe-oF TCP port (typically 8009)
iptables -A INPUT -p tcp --dport 8009 -j DROP

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

  • Vulnerability Details
  • TypeDOS

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

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-31418: Linux Kernel Netfilter IPset DoS Flaw

  • CVE-2026-31420: Linux Kernel Bridge MRP DoS Vulnerability

  • CVE-2026-31415: Linux Kernel IPv6 DoS Vulnerability

  • CVE-2026-31424: Linux Kernel Netfilter DoS 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