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

CVE-2025-71189: Linux Kernel DMAMUX Resource Leak Flaw

CVE-2025-71189 is a resource leak vulnerability in the Linux kernel's DMA engine DMAMUX component that fails to release OF node references on allocation errors. This article covers technical details, impact, and fixes.

Published: February 6, 2026

CVE-2025-71189 Overview

A memory leak vulnerability has been discovered in the Linux kernel's DMA engine subsystem, specifically within the DesignWare DMA multiplexer (dw-dmamux) driver. The vulnerability occurs when the driver fails to properly release an Open Firmware (OF) node reference during route allocation failures, leading to a resource leak condition.

Critical Impact

This vulnerability can cause memory resource exhaustion on systems using the DesignWare DMA multiplexer driver, potentially leading to system instability or denial of service conditions over time.

Affected Products

  • Linux Kernel with DesignWare DMA multiplexer driver enabled
  • Systems using Device Tree configurations with DMA multiplexer functionality
  • Embedded systems and SoCs utilizing the dw-dmamux driver

Discovery Timeline

  • 2026-01-31 - CVE CVE-2025-71189 published to NVD
  • 2026-02-03 - Last updated in NVD database

Technical Details for CVE-2025-71189

Vulnerability Analysis

This vulnerability is classified as a Memory Leak affecting the Linux kernel's DMA engine subsystem. The issue resides in the DesignWare DMA multiplexer driver, which handles routing of DMA requests between peripherals and DMA controllers on systems using Device Tree configurations.

When a DMA route allocation request is initiated, the driver takes a reference to the DMA master's Open Firmware (OF) node. Under normal operation, this reference is properly managed and released when no longer needed. However, when a late-stage route allocation failure occurs, the code path fails to drop the previously acquired reference to the DMA master OF node.

This oversight results in the OF node reference count never being decremented, causing the node to remain allocated in kernel memory indefinitely. Over time, repeated allocation failures can accumulate orphaned references, consuming kernel memory resources.

Root Cause

The root cause is an improper cleanup path in the error handling logic of the DMA route allocation function. When allocation fails after the OF node reference has been taken, the error path does not include the necessary of_node_put() call to release the reference. This violates the kernel's reference counting semantics for Device Tree nodes, where every of_node_get() must have a corresponding of_node_put().

Attack Vector

This vulnerability requires local access to a system running an affected Linux kernel with the DesignWare DMA multiplexer driver enabled. An attacker could potentially trigger repeated DMA route allocation failures through specific system operations or by manipulating hardware states, though practical exploitation would be complex.

The vulnerability manifests in the dmaengine/dw/dmamux subsystem during route allocation failure scenarios. When a DMA route request fails after the driver has already obtained a reference to the DMA master's OF node, the cleanup code does not properly release this reference. The fix ensures that of_node_put() is called on the DMA master node in all failure paths.

For technical implementation details, see the Linux Kernel Commit 8f7a391.

Detection Methods for CVE-2025-71189

Indicators of Compromise

  • Gradual increase in kernel memory usage over time without corresponding user-space memory growth
  • Device Tree node reference count anomalies visible in kernel debugging output
  • Kernel warnings or messages related to OF node reference leaks when CONFIG_OF_DYNAMIC debugging is enabled

Detection Strategies

  • Monitor kernel memory statistics for unexplained growth in slab allocations related to Device Tree nodes
  • Enable kernel tracing on of_node_get and of_node_put functions to identify imbalanced reference counting
  • Review system logs for DMA route allocation failure messages that may indicate triggering conditions

Monitoring Recommendations

  • Implement continuous monitoring of kernel memory utilization on systems using the DesignWare DMA driver
  • Deploy kernel debugging configurations in test environments to detect reference counting issues
  • Use kernel memory leak detection tools such as kmemleak to identify orphaned OF node allocations

How to Mitigate CVE-2025-71189

Immediate Actions Required

  • Apply the official kernel patches from the Linux kernel stable tree immediately
  • Review affected systems for signs of memory degradation that may indicate prior exploitation
  • Consider rebooting affected systems after patching to reclaim any leaked memory resources

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix ensures proper OF node reference handling in all error paths during DMA route allocation.

Apply the appropriate patch for your kernel version:

  • Linux Kernel Commit 8f7a391
  • Linux Kernel Commit db7c79c
  • Linux Kernel Commit eabe40f
  • Linux Kernel Commit ec25e60

Workarounds

  • If immediate patching is not possible, consider periodic system reboots to clear accumulated memory leaks
  • Disable or unload the dw-dmamux driver module if not required for system operation
  • Monitor system memory usage and establish alerting thresholds for abnormal kernel memory consumption
bash
# Check if the dw-dmamux driver is loaded
lsmod | grep dw_dmamux

# Monitor kernel memory usage
cat /proc/meminfo | grep -E "Slab|KernelStack"

# Enable kmemleak for debugging (requires CONFIG_DEBUG_KMEMLEAK)
echo scan > /sys/kernel/debug/kmemleak
cat /sys/kernel/debug/kmemleak

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
  • Linux Kernel Commit 8f7a391

  • Linux Kernel Commit db7c79c

  • Linux Kernel Commit eabe40f

  • Linux Kernel Commit ec25e60
  • 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