A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-43385

CVE-2026-43385: Linux Kernel DOS Vulnerability

CVE-2026-43385 is a denial of service flaw in Linux kernel's threaded busypoll that causes RCU tasks stalls. This article covers the technical details, affected kernel versions, security impact, and mitigation strategies.

Published: May 18, 2026

CVE-2026-43385 Overview

CVE-2026-43385 is a Linux kernel vulnerability in the networking subsystem affecting threaded busypoll handling. The flaw causes rcu_tasks grace period stalls when threaded busypoll is enabled on NAPI (New API) network interfaces. The kernel fails to report quiescent state correctly because napi_threaded_poll_loop rarely iterates more than once under busypoll conditions. This results in indefinite RCU (Read-Copy-Update) task stalls, blocking tools such as bpftrace from starting and degrading system stability. The issue was resolved through commits that move quiescent state tracking to the outer napi_threaded_poll function.

Critical Impact

Network-reachable conditions can trigger kernel RCU stalls, producing denial-of-service conditions on Linux systems running threaded busypoll networking workloads.

Affected Products

  • Linux kernel versions implementing threaded NAPI busypoll
  • Systems with NIC drivers operating under napi_threaded_poll
  • Linux distributions consuming upstream stable kernel trees

Discovery Timeline

  • 2026-05-08 - CVE-2026-43385 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-43385

Vulnerability Analysis

The vulnerability resides in the Linux kernel networking stack, specifically in the threaded busypoll path. When threaded busypoll is enabled, the main NAPI polling loop executes inside napi_threaded_poll rather than napi_threaded_poll_loop. The function rcu_softirq_qs_periodic, invoked inside napi_threaded_poll_loop, only reports a quiescent state when last_qs is at least 100ms behind the current jiffies value.

Under threaded busypoll, napi_threaded_poll_loop rarely iterates more than once per outer call. Each invocation resets last_qs to the current jiffies, so the 100ms threshold is never reached. As a result, the kernel never reports a quiescent state for the NAPI kernel thread, and rcu_tasks grace periods stall indefinitely.

Kernel logs show repeated rcu_tasks_wait_gp warnings with grace period age growing into the hundreds of thousands of jiffies. The stalled task is the NAPI kernel thread (for example, napi/eth2-8265) stuck in the running state inside napi_threaded_poll_loop. Tools that depend on RCU task synchronization, such as bpftrace and other BPF-based tracers, hang during startup.

Root Cause

The root cause is incorrect placement of the last_qs timestamp tracking. Because last_qs is stored and reset within napi_threaded_poll_loop, the periodic quiescent state reporting logic in rcu_softirq_qs_periodic cannot detect that the required 100ms has elapsed. The fix moves last_qs tracking to the outer napi_threaded_poll function and uses busy_poll_last_qs to indicate whether napi_threaded_poll_loop is operating in busypoll mode.

Attack Vector

The vulnerability is reachable over the network because sustained packet traffic drives the NAPI threaded busypoll loop. Any workload that keeps the NAPI thread continuously busy on an affected NIC can trigger the stall. The condition impacts availability through kernel RCU stalls and dependent subsystem hangs. No authentication or local access is required to generate the network load that exposes the bug.

The vulnerability manifests through kernel scheduling and RCU subsystem behavior rather than through exploitable code execution paths. See the referenced kernel commits for the precise code change.

Detection Methods for CVE-2026-43385

Indicators of Compromise

  • Kernel log messages matching rcu_tasks_wait_gp: rcu_tasks grace period number N (since boot) is X jiffies old
  • INFO: rcu_tasks detected stalls on tasks entries naming napi/<iface>-<queue> threads
  • Hung or unresponsive bpftrace, bpftool, or other BPF-dependent tools at startup
  • NAPI kernel threads stuck in running state with call traces including napi_threaded_poll_loop and napi_threaded_poll

Detection Strategies

  • Monitor dmesg and journalctl -k for rcu_tasks stall warnings on hosts with threaded NAPI enabled
  • Inspect /sys/class/net/<iface>/threaded to identify interfaces running threaded NAPI
  • Correlate BPF tooling failures with concurrent kernel RCU stall messages
  • Track kernel version against the fix commits 1a86a1f7d889 and 52459201d0df in stable trees

Monitoring Recommendations

  • Centralize kernel ring buffer collection and alert on rcu_tasks detected stalls patterns
  • Baseline expected NAPI thread CPU consumption and alert on threads pinned at 100% with no quiescent transitions
  • Track availability of BPF-based observability agents and treat startup hangs as a high-priority signal

How to Mitigate CVE-2026-43385

Immediate Actions Required

  • Identify hosts with threaded NAPI busypoll enabled by inspecting /sys/class/net/*/threaded
  • Plan rollout of a patched stable kernel containing the upstream fix
  • For systems unable to patch immediately, disable threaded NAPI on affected interfaces to remove the stall condition

Patch Information

The upstream fix relocates last_qs tracking from napi_threaded_poll_loop to napi_threaded_poll, using busy_poll_last_qs as the indicator for busypoll context. Apply the kernel updates referenced in Kernel Git Commit 1a86a1f and Kernel Git Commit 5245920. Update through the distribution package manager once vendor builds incorporating these commits are released.

Workarounds

  • Disable threaded NAPI on affected NICs by writing 0 to /sys/class/net/<iface>/threaded
  • Avoid enabling busypoll on workloads that depend on RCU task synchronization until patched
  • Restrict deployment of BPF tracing tools on impacted hosts until kernel updates are applied
bash
# Configuration example: disable threaded NAPI on an interface
echo 0 | sudo tee /sys/class/net/eth2/threaded

# Verify current state
cat /sys/class/net/eth2/threaded

# Check kernel logs for rcu_tasks stalls
sudo dmesg | grep -E 'rcu_tasks|napi_threaded_poll'

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

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • Technical References
  • Kernel Git Commit - 1a86a1f

  • Kernel Git Commit - 5245920
  • Related CVEs
  • CVE-2026-46220: Linux Kernel AMDGPU SDMA4 DoS Vulnerability

  • CVE-2026-46214: Linux Kernel vsock/virtio DoS Vulnerability

  • CVE-2026-46206: Linux Kernel batman-adv DoS Vulnerability

  • CVE-2026-46193: Linux Kernel AH ESN DoS 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