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

CVE-2026-22985: Linux Kernel idpf Driver DoS Vulnerability

CVE-2026-22985 is a denial of service flaw in the Linux kernel idpf driver that causes NULL pointer crashes during early ethtool operations. This article covers technical details, affected versions, and mitigation steps.

Published: January 30, 2026

CVE-2026-22985 Overview

A NULL pointer dereference vulnerability has been identified in the Linux kernel's idpf (Intel Data Plane Function) network driver. The vulnerability occurs when ethtool operations such as rxhash on/off are performed before the network interface is brought up for the first time. The RSS (Receive Side Scaling) LUT (Lookup Table) is not initialized until the interface comes up, resulting in a kernel crash when early ethtool operations attempt to access the uninitialized memory.

Critical Impact

Local users can trigger a kernel panic and system crash by performing ethtool operations on idpf interfaces before they are brought up, leading to a denial of service condition.

Affected Products

  • Linux kernel with idpf driver
  • Systems using Intel Infrastructure Processing Unit (IPU) network interfaces
  • Linux distributions with idpf kernel module enabled

Discovery Timeline

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

Technical Details for CVE-2026-22985

Vulnerability Analysis

This vulnerability is a NULL pointer dereference in the idpf network driver that affects the kernel's stability. The root issue stems from improper initialization ordering where the RSS LUT data structure is only allocated and initialized during the ndo_open operation (when the interface is brought up), but ethtool commands can be issued against the interface before this initialization occurs.

When a user executes ethtool commands like ethtool -K eth2 rxhash off on an idpf interface that has never been brought up, the driver's idpf_set_features() function attempts to access the RSS LUT structure via a memcpy_orig operation. Since the LUT pointer is NULL at this stage, the kernel triggers a page fault resulting in a BUG (kernel panic).

The crash manifests with the following stack trace signature: the idpf_set_features() function calls into memory copy operations that dereference the NULL LUT pointer, originating from netlink-based ethtool feature setting operations through ethnl_set_features().

Root Cause

The fundamental issue is an initialization race condition in the idpf driver's lifecycle management. The RSS LUT allocation was deferred to the ndo_open callback, which is only invoked when the interface transitions to an UP state. However, the driver's feature setting functions (idpf_set_features) do not validate whether the LUT has been initialized before attempting to access it. This missing NULL check combined with the deferred initialization creates a window where NULL pointer access is possible.

Attack Vector

The vulnerability can be triggered locally through the following sequence:

  1. The idpf driver is loaded via modprobe idpf, creating network interfaces
  2. Before the interface is brought up with ip link set eth2 up, an ethtool command is issued
  3. Commands like ethtool -K eth2 rxhash off trigger the idpf_set_features() function
  4. The function attempts to access the uninitialized RSS LUT, causing a NULL pointer dereference
  5. The kernel panics with an Oops message, crashing the system

This is a local denial of service attack requiring the ability to execute ethtool commands on the affected interface.

Detection Methods for CVE-2026-22985

Indicators of Compromise

  • Kernel panic logs containing BUG: kernel NULL pointer dereference with address 0000000000000000
  • Stack traces showing idpf_set_features and memcpy_orig functions
  • Oops messages with #PF: supervisor read access in kernel mode and error_code(0x0000) - not-present page
  • System crashes occurring immediately after ethtool operations on idpf interfaces

Detection Strategies

  • Monitor kernel logs for NULL pointer dereference events in the idpf driver module
  • Implement auditd rules to track ethtool command execution against idpf-managed interfaces
  • Set up kernel crash dump analysis to identify the idpf_set_features function in crash traces
  • Deploy endpoint detection for repeated system reboots correlated with network driver operations

Monitoring Recommendations

  • Configure kdump or crash dump collection to capture kernel panics for forensic analysis
  • Enable kernel tracing on idpf module functions during troubleshooting
  • Monitor for unusual patterns of ethtool commands executed before interface initialization
  • Implement SentinelOne Singularity agent for real-time kernel-level threat detection and system stability monitoring

How to Mitigate CVE-2026-22985

Immediate Actions Required

  • Apply the kernel patches from the stable kernel tree immediately
  • Ensure network interfaces are brought up before performing any ethtool configuration
  • Restrict access to ethtool commands to trusted administrators only
  • Consider temporarily unloading the idpf module on systems where patching is delayed

Patch Information

The fix has been committed to the Linux kernel stable tree. The patch moves RSS LUT initialization from ndo_open to vport creation, ensuring the LUT is always available regardless of interface state. The fix simplifies LUT management by maintaining changes in the driver's soft copy and deferring hardware programming until the interface comes up.

Relevant kernel commits:

  • Kernel Git Commit 83f38f21
  • Kernel Git Commit b29a5a7d

Workarounds

  • Always bring up idpf interfaces with ip link set <interface> up before running ethtool commands
  • Implement startup scripts that ensure proper interface initialization order
  • Use network namespace isolation to restrict access to vulnerable interfaces
  • Consider disabling the idpf module on systems that do not require Intel IPU functionality
bash
# Configuration example
# Ensure interface is up before ethtool operations
ip link set eth2 up
sleep 1
ethtool -K eth2 rxhash off

# Alternative: Add to network startup scripts
# /etc/network/if-pre-up.d/idpf-init
#!/bin/bash
# Bring interface up before any configuration
ip link set $IFACE up || true

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 Change

  • Kernel Git Commit Change
  • Related CVEs
  • CVE-2026-23446: Linux Kernel aqc111 Driver DoS Vulnerability

  • CVE-2026-23451: Linux Kernel Bonding Driver DoS Flaw

  • CVE-2026-23460: Linux Kernel ROSE Protocol DoS Vulnerability

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