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

CVE-2026-23313: Linux Kernel i40e Preemption Vulnerability

CVE-2026-23313 is a preemption count leak flaw in the Linux kernel i40e driver caused by improper CPU handling in napi poll tracepoint. This article covers the technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-23313 Overview

A vulnerability has been discovered in the Linux kernel's i40e network driver that causes a preempt count leak in the NAPI poll tracepoint. The issue stems from improper use of get_cpu() in the tracepoint assignment without a corresponding put_cpu() call, leading to preemption count imbalance during soft interrupt handling.

Critical Impact

This vulnerability can cause system instability and potential denial of service conditions due to preemption count leaks in the network receive soft interrupt path, affecting systems using Intel i40e network adapters.

Affected Products

  • Linux kernel with i40e network driver
  • Systems using Intel Ethernet Controller X710/XL710 family adapters
  • Linux distributions with affected kernel versions

Discovery Timeline

  • March 25, 2026 - CVE CVE-2026-23313 published to NVD
  • March 25, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23313

Vulnerability Analysis

The vulnerability exists in the i40e driver's NAPI poll tracepoint implementation. When network packets are processed through the softirq mechanism, the driver incorrectly uses get_cpu() to retrieve the current processor ID within the tracepoint assignment code path. The function get_cpu() disables preemption and returns the current CPU number, but the corresponding put_cpu() call that should re-enable preemption is never executed.

This creates an asymmetric preemption count, as evidenced by kernel warning messages showing the preempt count changing from 00000100 to 00000101 during softirq processing. The NET_RX softirq path is particularly affected, causing the kernel to detect and report this inconsistency.

Root Cause

The root cause is a programming error in the tracepoint instrumentation code within the i40e driver. The developer used get_cpu() when they only needed the processor ID without disabling preemption. The correct function to use in this context is smp_processor_id(), which returns the current CPU number without modifying the preemption state.

The fix involves replacing get_cpu() with smp_processor_id() in the tracepoint assignment, eliminating the preemption count leak entirely.

Attack Vector

The attack vector for this vulnerability is currently unknown. However, the vulnerability manifests during normal network packet processing when:

  1. Network traffic arrives on an interface managed by the i40e driver
  2. The NAPI poll mechanism is invoked to process received packets
  3. Tracepoints are enabled for monitoring driver behavior
  4. The preemption count becomes unbalanced, potentially leading to system instability

The vulnerability can cause gradual system degradation as preemption counts accumulate incorrectly over time, potentially leading to soft lockups or other denial of service conditions on systems under heavy network load.

Detection Methods for CVE-2026-23313

Indicators of Compromise

  • Kernel warning messages containing "huh, entered softirq 3 NET_RX with preempt_count" in system logs
  • Preemption count mismatch warnings during network operations
  • System instability or soft lockups on systems with i40e network adapters
  • Degraded network performance under high traffic loads

Detection Strategies

  • Monitor kernel logs (dmesg) for softirq preemption count warnings
  • Deploy monitoring for i40e driver-specific error messages
  • Implement kernel tracing to detect preemption count anomalies
  • Use SentinelOne Singularity platform to monitor for kernel-level anomalies and stability issues

Monitoring Recommendations

  • Enable kernel logging at appropriate verbosity levels to capture softirq warnings
  • Configure alerting for preemption count leak messages in centralized log management systems
  • Monitor system uptime and stability metrics on affected systems
  • Track i40e driver events through kernel event monitoring tools

How to Mitigate CVE-2026-23313

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix
  • If unable to immediately patch, consider disabling i40e tracepoints temporarily
  • Monitor affected systems for signs of instability
  • Plan maintenance windows for kernel updates on production systems

Patch Information

The fix has been committed to the stable Linux kernel tree. The patch replaces the problematic get_cpu() call with smp_processor_id() in the tracepoint assignment code. Multiple kernel commits address this issue:

  • Kernel Git Commit Update
  • Kernel Git Commit Fix
  • Kernel Git Commit Security Patch
  • Kernel Git Commit Improvement

Administrators should apply the appropriate patch for their kernel version from the stable kernel repository.

Workarounds

  • Disable i40e driver tracepoints if not required for debugging purposes
  • Reduce network load on affected systems until patches can be applied
  • Consider using alternative network drivers if available for your hardware
  • Implement system monitoring to detect and respond to stability issues promptly
bash
# Configuration example
# Disable i40e tracepoints temporarily (if available)
echo 0 > /sys/kernel/debug/tracing/events/i40e/enable

# Verify current kernel version
uname -r

# Check for available kernel updates
apt-get update && apt-cache policy linux-image-generic
# or for RHEL/CentOS
yum check-update kernel

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

  • Vulnerability Details
  • TypeOther

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

  • Kernel Git Commit Security Patch

  • Kernel Git Commit Improvement
  • Related CVEs
  • CVE-2026-23457: Linux Kernel Integer Truncation Vulnerability

  • CVE-2026-23442: Linux Kernel IPv6 SRv6 Null Pointer Flaw

  • CVE-2026-23431: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31391: Linux Kernel Atmel SHA204A OOM 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