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

CVE-2025-68770: Linux Kernel bnxt_en XDP_TX DoS Flaw

CVE-2025-68770 is a denial of service vulnerability in the Linux kernel bnxt_en driver affecting XDP_TX packet handling. Incorrect event flag clearing can cause RX ring exhaustion. This article covers technical details, impact, and mitigation.

Updated: January 22, 2026

CVE-2025-68770 Overview

CVE-2025-68770 is a vulnerability in the Linux kernel's Broadcom NetXtreme-C/E (bnxt_en) network driver that affects the XDP_TX (eXpress Data Path Transmit) code path. The vulnerability stems from incorrect clearing of event flags in the bnxt_rx_xdp() function during NAPI polling loops. This improper flag handling can cause the driver to fail to ring the TX doorbell, resulting in the RX ring becoming empty and all packets being dropped.

Critical Impact

This vulnerability can cause complete network packet loss on affected interfaces due to RX ring exhaustion when XDP_TX is in use, effectively creating a denial of service condition for network traffic processing.

Affected Products

  • Linux kernel with bnxt_en driver (Broadcom NetXtreme-C/E NICs)
  • Systems using XDP (eXpress Data Path) with Broadcom network adapters
  • Linux distributions running affected kernel versions with bnxt_en module loaded

Discovery Timeline

  • 2026-01-13 - CVE CVE-2025-68770 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-68770

Vulnerability Analysis

The vulnerability exists in the XDP_TX handling within the bnxt_en driver's receive path. During NAPI polling, the __bnxt_poll_work() function calls bnxt_rx_pkt(), which in turn calls bnxt_rx_xdp(). These functions may loop multiple times within a single NAPI poll cycle, setting various event flags during different iterations.

The core issue is that when processing XDP_TX actions, the code incorrectly clears event flags that may have been set during earlier iterations of the polling loop. Specifically, if the BNXT_TX_EVENT flag was set in a previous iteration (indicating pending XDP_TX packets ready for transmission), a subsequent XDP_TX action will clear this flag. Under normal conditions, the BNXT_TX_EVENT flag would be re-set when __bnxt_xmit_xdp() is successfully called. However, if the TX ring is full and cannot accept more packets, the flag remains cleared.

This creates a state where the TX producer index has advanced but the driver will not ring the TX doorbell because it doesn't recognize there are pending transmissions. The consequence is that the RX ring associated with the TX XDP ring gradually empties as the driver refuses to refill it while it perceives there are forever-pending XDP_TX packets.

For multi-buffer XDP_TX scenarios, there was also unnecessary clearing of event flags and setting of BNXT_AGG_EVENT, when the aggregation event flag should already have been set earlier in bnxt_rx_pkt().

Root Cause

The root cause is a race condition in event flag management within the NAPI polling loop. The driver's logic for clearing and setting event flags in bnxt_rx_xdp() does not properly account for the iterative nature of NAPI polling, where multiple packets may be processed with different XDP actions in sequence. The flag clearing operation is too aggressive, wiping out state information from previous iterations that is still relevant.

Attack Vector

This is a kernel vulnerability that primarily manifests as a denial of service condition. The attack vector is local or network-based depending on the system's exposure:

  • Systems using XDP programs for packet processing (load balancers, packet forwarders, DDoS mitigation) are directly affected
  • The vulnerability is triggered through normal network traffic processing when XDP_TX actions are executed
  • High packet rates or specific traffic patterns that cause TX ring pressure can accelerate the manifestation of the bug
  • No authentication is required to trigger the condition, as it can be induced through standard network traffic

Detection Methods for CVE-2025-68770

Indicators of Compromise

  • Sudden and complete packet drops on interfaces using Broadcom NetXtreme-C/E NICs with XDP
  • RX ring buffer exhaustion showing zero available descriptors in ethtool -S statistics
  • TX XDP ring showing non-zero pending packets that never decrease
  • Network interfaces becoming unresponsive despite no hardware errors reported

Detection Strategies

  • Monitor ethtool -S <interface> for rx_buf_ring_empty or similar statistics that indicate RX ring exhaustion
  • Implement monitoring for XDP statistics showing TX completion failures
  • Check kernel logs for bnxt_en driver warnings related to TX ring or doorbell issues
  • Use BPF tracing to monitor bnxt_rx_xdp() and __bnxt_xmit_xdp() return values for anomalies

Monitoring Recommendations

  • Set up alerts for sudden drops in network throughput on systems using XDP with Broadcom NICs
  • Monitor NAPI polling statistics and TX completion rates for asymmetric behavior
  • Implement regular health checks on XDP-enabled interfaces that verify packet flow
  • Use kernel tracing (ftrace or perf) on production systems to detect flag handling anomalies

How to Mitigate CVE-2025-68770

Immediate Actions Required

  • Apply the kernel patches referenced in the commit history immediately on affected systems
  • If patching is not immediately possible, consider temporarily disabling XDP on affected interfaces
  • Monitor affected systems closely for signs of packet loss or RX ring exhaustion
  • Plan maintenance windows for kernel updates on systems running XDP workloads with Broadcom NICs

Patch Information

The fix modifies the event flag handling in bnxt_rx_xdp() to only clear BNXT_RX_EVENT when __bnxt_xmit_xdp() has been successfully called, preserving the BNXT_TX_EVENT flag state from previous iterations. Multiple patches have been committed to the stable kernel trees:

  • Kernel Git Commit 0373d5c
  • Kernel Git Commit 4b83902a
  • Kernel Git Commit f17e0c12

Workarounds

  • Disable XDP on affected Broadcom NetXtreme-C/E interfaces until patches can be applied
  • Use alternative NIC drivers or hardware for XDP workloads if possible
  • Implement XDP_REDIRECT instead of XDP_TX as a temporary workaround where architecturally feasible
  • Reduce TX ring pressure by tuning ring sizes or implementing rate limiting upstream
bash
# Temporary workaround: Remove XDP program from interface
ip link set dev <interface> xdp off

# Verify XDP is disabled
ip link show dev <interface>

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

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

  • Kernel Git Commit 4b83902a

  • Kernel Git Commit f17e0c12
  • Related CVEs
  • CVE-2026-31418: Linux Kernel Netfilter IPset DoS Flaw

  • CVE-2026-31420: Linux Kernel Bridge MRP DoS Vulnerability

  • CVE-2026-31415: Linux Kernel IPv6 DoS Vulnerability

  • CVE-2026-31424: Linux Kernel Netfilter DoS 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