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

CVE-2026-31691: Linux Kernel igb Driver DOS Vulnerability

CVE-2026-31691 is a denial of service vulnerability in the Linux kernel igb driver that causes indefinite blocking when AF_XDP applications terminate abruptly. This article covers technical details, affected versions, and mitigation.

Published: April 30, 2026

CVE-2026-31691 Overview

A denial of service vulnerability exists in the Linux kernel's igb network driver where the napi_synchronize() function in igb_down() can cause an indefinite block when an AF_XDP zero-copy application terminates abruptly. This race condition prevents the network interface from properly shutting down, leading to TX watchdog timeouts and permanently stalled TX queues.

Critical Impact

System network interfaces using the igb driver can become permanently stalled, causing denial of service conditions when AF_XDP zero-copy applications are forcefully terminated.

Affected Products

  • Linux Kernel (igb network driver)
  • Systems using Intel Gigabit Ethernet adapters with AF_XDP zero-copy functionality
  • Linux-based network appliances and servers with igb-based network interfaces

Discovery Timeline

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

Technical Details for CVE-2026-31691

Vulnerability Analysis

The vulnerability resides in the igb_down() function of the Linux kernel's igb network driver. When an AF_XDP zero-copy application terminates abruptly (such as via kill -9), the XSK buffer pool is destroyed while NAPI polling continues. The igb_clean_rx_irq_zc() function repeatedly returns the full budget, which prevents napi_complete_done() from clearing the NAPI_STATE_SCHED flag.

The problematic code path occurs because igb_down() calls napi_synchronize() before napi_disable() for each queue vector. The napi_synchronize() function spins indefinitely waiting for NAPI_STATE_SCHED to clear, but this condition is never satisfied due to the continuous full-budget returns. This creates a deadlock scenario where igb_down() blocks indefinitely, triggering the TX watchdog and leaving the TX queue permanently stalled.

Root Cause

The root cause is the redundant use of napi_synchronize() before napi_disable() in the network interface shutdown path. While napi_synchronize() was originally added to prevent panic conditions caused by Rx traffic arrival during interface shutdown (commit 41f149a285da), the function cannot handle the edge case where NAPI polling continuously returns the full budget.

The napi_disable() function provides stronger guarantees by setting NAPI_STATE_DISABLE, which allows __napi_poll() to check for napi_disable_pending(). When this flag is detected, the kernel forces completion and clears NAPI_STATE_SCHED, breaking the infinite loop that napi_synchronize() cannot escape.

Attack Vector

The vulnerability is triggered locally through the following sequence:

  1. An AF_XDP zero-copy application establishes connections using the igb network interface
  2. The application is forcefully terminated (e.g., via SIGKILL)
  3. The XSK buffer pool is destroyed while NAPI polling remains active
  4. igb_clean_rx_irq_zc() continuously returns full budget values
  5. igb_down() calls napi_synchronize() which spins indefinitely
  6. TX watchdog fires and the network interface becomes permanently stalled

The fix involves removing the redundant napi_synchronize() call and reordering napi_disable() to execute before igb_set_queue_napi(), ensuring the queue-to-NAPI mapping is only cleared after polling has fully stopped.

Detection Methods for CVE-2026-31691

Indicators of Compromise

  • TX watchdog timeout messages in kernel logs (e.g., NETDEV WATCHDOG: eth0 (igb): transmit queue X timed out)
  • Network interfaces becoming unresponsive after AF_XDP application crashes
  • Kernel threads stuck in napi_synchronize() visible in stack traces
  • High CPU usage from spinning NAPI polling threads

Detection Strategies

  • Monitor kernel logs for igb driver TX watchdog timeout events
  • Implement process monitoring for AF_XDP zero-copy applications with automatic cleanup procedures
  • Use kernel tracing to detect prolonged napi_synchronize() blocking states
  • Deploy network health monitoring to detect interface stall conditions

Monitoring Recommendations

  • Configure alerting for TX watchdog timeout events in syslog
  • Implement automated network interface health checks at regular intervals
  • Monitor for unusual patterns in AF_XDP application termination events
  • Track CPU utilization anomalies associated with kernel network threads

How to Mitigate CVE-2026-31691

Immediate Actions Required

  • Apply the kernel patches provided in the stable kernel releases
  • Consider graceful shutdown procedures for AF_XDP zero-copy applications instead of force termination
  • Monitor systems for signs of network interface stalling
  • Have interface reset procedures ready as a temporary workaround

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix removes the redundant napi_synchronize() call and reorders napi_disable() to ensure proper cleanup sequencing. Patches are available through the following kernel git commits:

  • Kernel Git Commit 27f5997
  • Kernel Git Commit 4700471
  • Kernel Git Commit b1e0672

Workarounds

  • Avoid using force termination signals (SIGKILL) on AF_XDP zero-copy applications; implement graceful shutdown handlers using SIGTERM instead
  • Implement application-level cleanup routines to properly release XSK buffer pools before termination
  • If network interface becomes stalled, perform manual interface reset using ip link set <interface> down && ip link set <interface> up
  • Consider using alternative Intel network drivers (ixgbe, ice, i40e) that do not exhibit this behavior if hardware compatibility allows
bash
# Manual interface recovery if stalled
ip link set eth0 down
sleep 2
ip link set eth0 up

# Verify interface status
ip link show eth0
ethtool eth0

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 27f5997

  • Kernel Git Commit 4700471

  • Kernel Git Commit b1e0672
  • Related CVEs
  • CVE-2026-43492: Linux Kernel MPI Integer Underflow DoS

  • CVE-2026-43491: Linux Kernel QRTR NS DoS Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43331: Linux Kernel 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