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

CVE-2025-71089: Linux Kernel IOMMU Privilege Escalation

CVE-2025-71089 is a privilege escalation vulnerability in Linux kernel IOMMU Shared Virtual Addressing that allows exploitation via stale cache entries. This post explains technical details, affected systems, and mitigations.

Updated: January 22, 2026

CVE-2025-71089 Overview

CVE-2025-71089 is a security vulnerability in the Linux kernel related to IOMMU Shared Virtual Addressing (SVA) on x86 architecture. The vulnerability stems from the IOMMU's ability to cache kernel page table entries without receiving proper notification when those page table pages are freed and reallocated. This can lead to Use-After-Free (UAF) and Write-After-Free (WAF) conditions that could potentially be exploited for privilege escalation or data corruption.

Critical Impact

This vulnerability allows the IOMMU to retain stale page table entries after kernel page table pages are freed and reallocated, potentially enabling arbitrary physical memory DMA access or privilege escalation through attacker-controlled memory.

Affected Products

  • Linux kernel with CONFIG_X86 enabled
  • Systems utilizing IOMMU Shared Virtual Addressing (SVA)
  • x86 architecture systems with IOMMU hardware

Discovery Timeline

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

Technical Details for CVE-2025-71089

Vulnerability Analysis

In an IOMMU Shared Virtual Addressing context, the IOMMU hardware shares and walks the CPU's page tables. On x86 architecture, the kernel's virtual address space is mapped into the upper portion of every process's page table. This architectural design means that when SVA is enabled, the IOMMU hardware can walk and cache kernel page table entries.

The core issue is that the Linux kernel lacks a notification mechanism for kernel page table changes—specifically when page table pages are freed and reused. While the IOMMU driver receives notifications about changes to user virtual address mappings, it remains unaware of kernel page table modifications. This creates a dangerous scenario where the IOMMU's internal caches retain stale entries for kernel virtual addresses.

Even though SVA contexts are unprivileged and cannot access kernel mappings directly, the IOMMU still walks kernel-only page tables down to leaf entries before determining the mapping is kernel-restricted. During this process, the IOMMU caches intermediate page table entries, making the vulnerability exploitable.

Root Cause

The root cause of this vulnerability is the absence of a synchronization mechanism between kernel page table management and IOMMU cache invalidation. When kernel page table pages are freed, the IOMMU is never notified to flush its paging cache. The IOMMU may then misinterpret newly allocated data in those freed pages as valid page table entries, potentially walking into attacker-controlled memory regions.

Additionally, the IOMMU may continue to write Accessed and Dirty bits to freed memory while attempting to walk stale page tables, constituting a Write-After-Free condition that could corrupt unrelated data structures.

Attack Vector

The attack vector exploits the timing gap between when kernel page table pages are freed and when they are reallocated for other purposes. An attacker could potentially:

  1. Trigger the freeing of kernel page table pages through legitimate system operations
  2. Allocate memory that reuses the freed page table pages
  3. Craft data in the newly allocated memory that the IOMMU interprets as valid page table entries
  4. Leverage the IOMMU's stale cache entries to perform unauthorized DMA operations to arbitrary physical memory

The vulnerability mechanism involves race conditions between page table deallocation and IOMMU cache invalidation. When a kernel page table page is freed and reallocated, the IOMMU may still hold cached references to the old page table structure. If the newly allocated memory contains attacker-controlled data, the IOMMU could interpret this data as legitimate page table entries, potentially granting DMA access to arbitrary physical memory regions. For detailed technical analysis, refer to the kernel git commits.

Detection Methods for CVE-2025-71089

Indicators of Compromise

  • Unexpected IOMMU faults or errors in kernel logs related to SVA operations
  • Anomalous DMA activity patterns or memory access violations
  • Kernel page table corruption indicators or unexpected memory state changes
  • System instability following IOMMU-related operations on x86 systems

Detection Strategies

  • Monitor kernel logs for IOMMU-related error messages and SVA fault conditions
  • Implement runtime integrity checking for kernel page table structures
  • Use hardware performance counters to detect unusual memory access patterns
  • Deploy kernel tracing to monitor page table allocation and deallocation events

Monitoring Recommendations

  • Enable IOMMU debug logging to capture detailed SVA operation traces
  • Configure system monitoring to alert on unexpected kernel memory allocation patterns
  • Implement memory forensics capabilities to detect potential exploitation attempts
  • Review system logs regularly for indicators of page table corruption or IOMMU cache inconsistencies

How to Mitigate CVE-2025-71089

Immediate Actions Required

  • Apply the latest Linux kernel patches that disable SVA on x86 architecture
  • Update to a patched kernel version that includes the deferred freeing mechanism for kernel page table pages
  • Review and audit systems using IOMMU SVA functionality on x86 platforms
  • Consider temporarily disabling SVA features if immediate patching is not possible

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability by disabling SVA on x86 architecture until the IOMMU can receive proper notification to flush the paging cache before freeing CPU kernel page table pages. The patch series introduces a deferred freeing mechanism for kernel page table pages, providing a safe window to notify the IOMMU to invalidate its caches before pages are reused.

Relevant kernel commits:

  • Commit 240cd7f2812c
  • Commit 72f98ef9a4be
  • Commit c2c3f1a3fd74
  • Commit c341dee80b5d

Workarounds

  • Disable IOMMU SVA functionality on x86 systems until patches are applied
  • Use kernel boot parameters to disable SVA if supported by your kernel version
  • Implement additional access controls to limit exposure of IOMMU-enabled devices
  • Consider network segmentation and isolation for systems that cannot be immediately patched
bash
# Configuration example
# Disable IOMMU SVA via kernel boot parameter (if supported)
# Add to GRUB_CMDLINE_LINUX in /etc/default/grub:
GRUB_CMDLINE_LINUX="iommu.passthrough=1"

# Update GRUB configuration
sudo update-grub

# Verify IOMMU status after reboot
dmesg | grep -i iommu

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

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

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-31430: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31443: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31463: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31459: Linux Kernel Privilege Escalation Flaw
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