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

CVE-2026-23419: Linux Kernel Race Condition Vulnerability

CVE-2026-23419 is a race condition flaw in the Linux Kernel's rds_tcp_tune function that creates a circular locking dependency. This article covers the technical details, affected versions, security impact, and mitigation steps.

Updated: May 16, 2026

CVE-2026-23419 Overview

CVE-2026-23419 is a circular locking dependency vulnerability in the Linux kernel's Reliable Datagram Sockets (RDS) over TCP transport. The flaw resides in the rds_tcp_tune() function, where sk_net_refcnt_upgrade() is invoked while the socket lock is held. Because sk_net_refcnt_upgrade() performs memory allocation through get_net_track() and ref_tracker_alloc(), it can re-enter fs_reclaim, creating a lock ordering inversion detected by syzbot. Local users on affected systems can trigger conditions that may lead to deadlock and host availability loss [CWE-667].

Critical Impact

Local triggering of a circular locking dependency in the RDS-TCP path can produce kernel deadlocks and a denial-of-service condition on affected Linux hosts.

Affected Products

  • Linux kernel 5.18 (release)
  • Linux kernel 7.0 release candidates rc1 through rc7
  • Linux kernel branches incorporating the vulnerable rds_tcp_tune() lock ordering

Discovery Timeline

  • 2026-04-03 - CVE-2026-23419 published to NVD
  • 2026-04-27 - Last updated in NVD database

Technical Details for CVE-2026-23419

Vulnerability Analysis

The vulnerability exists in rds_tcp_tune() within the kernel's net/rds subsystem. The function holds the socket lock k-sk_lock-AF_INET6 while calling sk_net_refcnt_upgrade(). That helper performs memory allocations via get_net_track() and ref_tracker_alloc(), which can enter the fs_reclaim path. The combination produces a lock acquisition order that conflicts with paths taking fs_reclaim first, satisfying the kernel lockdep validator's criteria for a circular dependency warning.

Under memory pressure or contended workloads, the conflicting lock ordering can transition from a lockdep warning into an actual deadlock. Affected kernel threads, including the kworker context observed by syzbot, become stuck. The condition impacts host availability without exposing confidentiality or integrity, consistent with the local attack vector and high-availability impact reflected in the advisory.

Root Cause

The root cause is improper lock ordering. sk_net_refcnt_upgrade() allocates memory while the socket lock is held, allowing the slab allocator to invoke fs_reclaim. The fields modified by sk_net_refcnt_upgrade(), namely sk_net_refcnt and ns_tracker, are not accessed by concurrent paths at this point, so the lock is not required to protect them.

Attack Vector

Exploitation requires local code execution with the ability to create RDS sockets and trigger the tuning path. The vulnerability has no remote network reach on its own. A local low-privileged user repeatedly opening RDS-TCP sockets under memory pressure can provoke the deadlock condition and degrade kernel responsiveness.

No public proof-of-concept exploit is available, and the issue has not been reported as exploited in the wild. See the kernel commits referenced in Kernel Git Commit 8babb271 for the corrective patch.

Detection Methods for CVE-2026-23419

Indicators of Compromise

  • Kernel log entries containing WARNING: possible circular locking dependency detected referencing rds_tcp_tune and fs_reclaim.
  • kworker threads stalled while holding k-sk_lock-AF_INET6 and attempting __kmalloc_cache_noprof.
  • Unexpected hangs or soft lockups on hosts that load the rds_tcp kernel module.

Detection Strategies

  • Monitor dmesg and /var/log/kern.log for lockdep warnings naming rds_tcp_tune or sk_net_refcnt_upgrade.
  • Audit installed kernel versions against the fixed commits listed in the kernel.org advisories.
  • Inventory hosts where the rds and rds_tcp modules are loaded, as systems without these modules are not exposed.

Monitoring Recommendations

  • Forward kernel logs to a centralized logging or SIEM platform and alert on lockdep circular dependency warnings.
  • Track kernel package versions across the fleet to confirm patched builds are deployed.
  • Restrict or blacklist the rds module on hosts that do not require RDS connectivity to reduce attack surface.

How to Mitigate CVE-2026-23419

Immediate Actions Required

  • Apply the upstream kernel fix that moves sk_net_refcnt_upgrade() outside the socket lock critical section in rds_tcp_tune().
  • Update to a Linux distribution kernel package that incorporates the referenced stable commits.
  • Blacklist the rds and rds_tcp modules on systems that do not use Reliable Datagram Sockets.

Patch Information

The Linux kernel maintainers released the fix across multiple stable branches. Refer to Kernel Git Commit 026bbaee, Kernel Git Commit 6a877ece, Kernel Git Commit 6ce948fa, Kernel Git Commit 8519e688, and Kernel Git Commit 8babb271 for the authoritative patches.

Workarounds

  • Prevent loading of the affected module by adding install rds /bin/true to a file in /etc/modprobe.d/.
  • Restrict creation of AF_RDS sockets through seccomp profiles or container security policies where feasible.
  • Limit local account access on multi-tenant hosts until the patched kernel is deployed.
bash
# Configuration example: disable the vulnerable RDS modules until patched
echo 'install rds /bin/true' | sudo tee /etc/modprobe.d/disable-rds.conf
echo 'install rds_tcp /bin/true' | sudo tee -a /etc/modprobe.d/disable-rds.conf
sudo rmmod rds_tcp rds 2>/dev/null || true
lsmod | grep -E '^rds'

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

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-667
  • Vendor Resources
  • Kernel Git Commit 026bbaee

  • Kernel Git Commit 6a877ece

  • Kernel Git Commit 6ce948fa

  • Kernel Git Commit 8519e688

  • Kernel Git Commit 8babb271
  • Related CVEs
  • CVE-2026-43342: Linux Kernel Race Condition Vulnerability

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

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

  • CVE-2026-43318: Linux Kernel Race Condition Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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