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-2025-71226

CVE-2025-71226: Linux Kernel iwlwifi PTP Vulnerability

CVE-2025-71226 is a PTP clock registration flaw in the Linux kernel's iwlwifi driver that causes warnings during interface startup. This article covers the technical details, affected versions, impact, and mitigation.

Published: February 20, 2026

CVE-2025-71226 Overview

A vulnerability has been identified in the Linux kernel's Intel WiFi (iwlwifi) driver affecting the Precision Time Protocol (PTP) clock registration functionality. The issue stems from missing settime64 callback implementation in both MVM (Mac Virtual Machine) and MLD (Multi-Link Device) PTP clock implementations, which became a requirement following kernel commit dfb073d32cac.

When attempting to register the PTP clock through ptp_clock_register(), the absence of the ptp_clock_info.settime64 callback triggers kernel warnings and causes the PHC (Physical Hardware Clock) clock registration to fail with error code -22 (EINVAL). This impacts WiFi interface initialization and PTP functionality on affected Intel wireless devices.

Critical Impact

Intel WiFi interfaces using iwlwifi driver may fail to properly initialize PTP clock functionality, potentially affecting time synchronization capabilities and generating kernel warnings during interface startup.

Affected Products

  • Linux kernel iwlwifi driver (MVM module)
  • Linux kernel iwlwifi driver (MLD module)
  • Systems with Intel WiFi hardware utilizing PTP clock functionality

Discovery Timeline

  • 2026-02-18 - CVE CVE-2025-71226 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2025-71226

Vulnerability Analysis

This vulnerability is a Driver Vulnerability affecting the Linux kernel's Intel wireless networking driver. The root issue emerged after upstream kernel changes tightened the requirements for PTP clock registration. Specifically, commit dfb073d32cac introduced a mandatory check that requires all PTP clocks to implement the ptp_clock_info.settime64 callback function.

The iwlwifi driver's MVM and MLD implementations register PTP clocks for hardware timestamping and time synchronization purposes. However, these implementations did not include a settime64 handler, as there was no appropriate firmware interface available to support this functionality. When the kernel's PTP subsystem validates the clock registration, it now returns -EINVAL when this required callback is NULL.

The practical impact includes kernel warnings being generated during WiFi interface startup (observable through wpa_supplicant process logs) and failure to register the PHC clock, which may degrade or disable PTP-based time synchronization capabilities for the wireless interface.

Root Cause

The root cause is a missing implementation of the settime64 callback function in the ptp_clock_info structure for both MVM and MLD PTP clock implementations within the iwlwifi driver. This callback became mandatory following changes to the PTP subsystem validation logic in the Linux kernel.

The iwlwifi driver developers noted that there is no appropriate firmware interface available to properly implement the settime64() functionality for setting absolute time on the hardware clock. Without this firmware support, a full implementation is not feasible.

Attack Vector

This is not a remotely exploitable vulnerability in the traditional security sense. The impact is primarily operational, affecting system stability and functionality rather than security. The vulnerability manifests locally during WiFi interface initialization when the iwlwifi driver attempts to register its PTP clock.

The affected code path is triggered through the iwl_mvm_ptp_init() function which calls ptp_clock_register(). Without local system access or specific hardware conditions (Intel WiFi hardware with PTP support), this issue cannot be triggered.

Detection Methods for CVE-2025-71226

Indicators of Compromise

  • Kernel warning messages containing ptp_clock_register and iwl_mvm_ptp_init in system logs
  • Error messages indicating "Failed to register PHC clock (-22)" from the iwlwifi driver
  • wpa_supplicant process triggering warnings in drivers/ptp/ptp_clock.c

Detection Strategies

  • Monitor kernel logs (dmesg or /var/log/kern.log) for PTP clock registration failures from iwlwifi
  • Check for WARNING traces originating from ptp_clock.c:325 during WiFi interface startup
  • Review system logs for iwlwifi-related errors with return code -22 (EINVAL)

Monitoring Recommendations

  • Implement log monitoring for iwlwifi driver errors during system boot and WiFi interface activation
  • Configure alerting on kernel warning patterns related to PTP subsystem failures
  • Monitor WiFi interface initialization success rates on systems with Intel wireless hardware

How to Mitigate CVE-2025-71226

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the settime64 stub implementation
  • If patching is not immediately possible, the warnings can be ignored as they do not indicate a security vulnerability
  • Review and apply kernel updates from your Linux distribution's security channels

Patch Information

The fix implements a stub settime64 function that returns -EOPTNOTSUPP (operation not supported). This satisfies the PTP subsystem's requirement for the callback to exist while acknowledging that the functionality is not available on this hardware. Two kernel commits address this issue:

  • Kernel Git Commit 81d90d93d22c
  • Kernel Git Commit ff6892ea544c

Workarounds

  • No configuration-based workarounds are available; the fix requires a kernel update
  • The warnings generated do not indicate a security issue and can be safely ignored until patching is completed
  • Consider disabling PTP functionality in iwlwifi if not required (requires kernel rebuild or module parameter if available)
bash
# Verify kernel version after patching
uname -r

# Check for iwlwifi PTP-related errors in kernel logs
dmesg | grep -i "ptp\|iwlwifi\|phc"

# Monitor for registration issues
journalctl -k | grep -i "ptp_clock_register"

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