Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2025-71156

CVE-2025-71156: Linux Kernel GVE Race Condition Vulnerability

CVE-2025-71156 is a race condition flaw in the Linux kernel GVE driver that allows interrupts to fire before NAPI initialization, causing system failures. This article covers technical details, affected versions, and mitigation.

Published: January 30, 2026

CVE-2025-71156 Overview

A race condition vulnerability has been identified in the Linux kernel's Google Virtual Ethernet (GVE) network driver. The vulnerability occurs because interrupts are automatically enabled immediately upon request, allowing them to fire before the associated NAPI (New API) polling context is fully initialized. This timing issue can lead to system instability and potential denial of service conditions.

Critical Impact

Premature interrupt firing before NAPI context initialization can cause kernel panics and system failures, particularly affecting virtualized environments using the GVE driver.

Affected Products

  • Linux kernel with GVE (Google Virtual Ethernet) driver enabled
  • Google Cloud Platform virtual machines using virtio-net/GVE
  • Systems utilizing GVE network interfaces

Discovery Timeline

  • 2026-01-23 - CVE CVE-2025-71156 published to NVD
  • 2026-01-26 - Last updated in NVD database

Technical Details for CVE-2025-71156

Vulnerability Analysis

The vulnerability exists in the interrupt handling initialization sequence of the GVE network driver within the Linux kernel. The core issue is a race condition between interrupt enablement and NAPI context registration.

When the GVE driver requests interrupts, they are immediately enabled by default without waiting for the NAPI polling context to complete initialization. If an interrupt fires during this window, the kernel attempts to invoke NAPI polling functions (__napi_poll) on an incompletely initialized context, triggering failures in the network receive path.

The call trace captured during the failure demonstrates the interrupt firing during the common_interrupt handler, subsequently invoking net_rx_action and __napi_poll before the NAPI data structures are properly configured.

Root Cause

The root cause is the lack of synchronization between interrupt request/enablement and NAPI context initialization in the GVE driver. By default, the request_irq() function enables interrupts immediately upon successful registration. The GVE driver did not use the IRQF_NO_AUTOEN flag to defer interrupt enablement, creating a race window where interrupts could be delivered before the corresponding NAPI context was ready to handle them.

Attack Vector

This vulnerability is triggered through a race condition during driver initialization. The attack vector involves the timing between interrupt registration and NAPI initialization. While this is primarily an internal kernel race condition that manifests during system boot or driver module loading, it could potentially be triggered by:

  • Rapid network interface bring-up/tear-down operations
  • Module loading sequences that stress the initialization path
  • High interrupt load conditions during driver initialization

The vulnerability can cause system instability and denial of service through kernel panics, particularly affecting virtualized workloads on Google Cloud Platform.

Detection Methods for CVE-2025-71156

Indicators of Compromise

  • Kernel panic messages containing __napi_poll in the call trace during GVE driver initialization
  • System crashes during boot on GCE/GCP virtual machines with GVE enabled
  • Log entries showing net_rx_action failures with IRQ context traces
  • Unexpected network interface failures during initialization phases

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for call traces involving __napi_poll, net_rx_action, and common_interrupt in the GVE driver context
  • Implement automated kernel panic detection and analysis to identify race condition symptoms
  • Review system boot logs for any network driver initialization failures
  • Use kernel tracing tools (ftrace, perf) to monitor interrupt timing relative to NAPI registration

Monitoring Recommendations

  • Configure kernel crash dump collection (kdump) to capture diagnostic information during failures
  • Set up alerting on system reboots and kernel panic events for GVE-enabled systems
  • Monitor GVE driver module loading events and correlate with system stability metrics
  • Implement health checks for network interface availability during and after system initialization

How to Mitigate CVE-2025-71156

Immediate Actions Required

  • Apply the latest Linux kernel patches containing the fix for the GVE driver interrupt initialization
  • Schedule maintenance windows to update affected systems running on Google Cloud Platform
  • Consider temporarily using alternative network drivers if GVE stability issues are observed
  • Review and test kernel updates in staging environments before production deployment

Patch Information

The vulnerability has been resolved through kernel commits that modify the GVE driver to use the IRQF_NO_AUTOEN flag when requesting interrupts. This flag prevents automatic interrupt enablement, allowing the driver to explicitly enable interrupts only after NAPI context initialization is complete. The fix also ensures proper interrupt disablement during NAPI teardown.

Patches are available through the stable kernel Git repositories:

  • Kernel Commit 3d970eda003441f66551a91fda16478ac0711617
  • Kernel Commit 48f9277680925e1a8623d6b2c50aadb7af824ace
  • Kernel Commit f5b7f49bd2377916ad57cbd1210c61196daff013

Workarounds

  • If kernel updates cannot be immediately applied, consider disabling the GVE driver and using alternative network drivers where available
  • Reduce interrupt load during system initialization by staggering network interface bring-up
  • Implement system restart policies to recover from potential boot-time race condition failures
  • Monitor for patches from your Linux distribution vendor and apply through standard package management
bash
# Check current kernel version and GVE module status
uname -r
lsmod | grep gve

# Verify if patched kernel is available (distribution-specific)
# For Debian/Ubuntu:
apt update && apt list --upgradable | grep linux-image

# 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
  • TypeRace Condition

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit Log

  • Kernel Git Commit Log

  • Kernel Git Commit Log
  • Related CVEs
  • CVE-2026-31456: Linux Kernel Race Condition Vulnerability

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

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

  • CVE-2026-31436: Linux Kernel Race Condition 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