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

CVE-2025-71187: Linux Kernel RZ-DMAC Resource Vulnerability

CVE-2025-71187 is a resource management flaw in the Linux kernel's RZ-DMAC dmaengine driver that causes device reference leaks during probe failures. This article covers technical details, affected systems, and mitigation.

Published: February 6, 2026

CVE-2025-71187 Overview

A device reference leak vulnerability has been identified in the Linux kernel's DMA engine subsystem, specifically within the Renesas RZ DMA controller (rz-dmac) driver. The vulnerability occurs when the driver fails to properly release device references during probe failures, such as during probe deferral scenarios. This Memory Leak vulnerability can lead to resource exhaustion in systems utilizing the affected DMA controller driver.

Critical Impact

Systems using the Renesas RZ DMA controller driver may experience resource leakage when device probe operations fail, potentially leading to system instability or denial of service conditions over time.

Affected Products

  • Linux kernel with dmaengine: sh: rz-dmac driver enabled
  • Systems utilizing Renesas RZ series SoCs with DMA controller
  • Embedded Linux deployments using ICU device lookups

Discovery Timeline

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

Technical Details for CVE-2025-71187

Vulnerability Analysis

This vulnerability represents a Memory Leak issue in the Linux kernel's DMA engine subsystem. The rz-dmac driver acquires a reference to the ICU (Interrupt Controller Unit) device during its probe function but fails to release this reference when the probe operation encounters an error and needs to abort.

When the kernel attempts to initialize the RZ DMA controller, it looks up and obtains a reference to the associated ICU device. Under normal successful probe conditions, this reference is managed properly throughout the driver's lifecycle. However, when probe failures occur—particularly during probe deferral scenarios where a dependency isn't yet available—the error handling path does not include the necessary put_device() call to drop the reference that was acquired.

Root Cause

The root cause of this vulnerability is improper resource cleanup in the error handling paths of the rz-dmac driver's probe function. When the driver performs a device lookup for the ICU device using functions like of_find_device_by_node() or similar, it increments the reference count on the target device. The error paths in the probe function fail to decrement this reference count before returning, resulting in a leaked device reference.

This type of bug is common in kernel drivers where complex initialization sequences require multiple resource acquisitions, and error handling must carefully reverse each successful acquisition step.

Attack Vector

The attack vector for this vulnerability is primarily local, requiring the attacker to have the ability to trigger probe failures or probe deferrals on the affected system. While direct exploitation for code execution is unlikely, the vulnerability can be leveraged for:

  1. Resource Exhaustion: Repeated triggering of probe failures can cause accumulated device reference leaks, potentially exhausting kernel memory resources
  2. System Destabilization: In embedded systems with limited resources, the memory leak could lead to system instability or crashes
  3. Denial of Service: An attacker with local access could potentially force repeated module load/unload cycles to accelerate resource exhaustion

The vulnerability requires local system access and the presence of the affected driver in the kernel configuration.

Detection Methods for CVE-2025-71187

Indicators of Compromise

  • Unexpected increase in kernel memory usage over time on systems using RZ DMA controllers
  • Device reference count anomalies visible in /sys/devices/ filesystem
  • Kernel log messages indicating probe deferral for rz-dmac devices

Detection Strategies

  • Monitor kernel memory allocation patterns for gradual unexplained growth
  • Implement kernel debugging options like CONFIG_DEBUG_KOBJECT to track object reference counts
  • Review dmesg output for repeated rz-dmac probe deferral messages

Monitoring Recommendations

  • Enable kernel memory leak detection tools such as kmemleak when debugging suspected systems
  • Track device reference counts through sysfs interfaces on production systems
  • Configure alerting for abnormal memory consumption patterns in embedded deployments

How to Mitigate CVE-2025-71187

Immediate Actions Required

  • Update the Linux kernel to a version containing the fix patches
  • Review systems using Renesas RZ series SoCs for exposure to this vulnerability
  • Monitor affected systems for signs of memory exhaustion until patches can be applied

Patch Information

The vulnerability has been resolved in the Linux kernel through patches that ensure the device reference acquired during ICU device lookup is properly dropped in all probe failure scenarios.

The fix has been committed to the stable kernel tree. Administrators should apply the patches referenced in the following commits:

  • Linux Kernel Patch - commit 926d1666420c
  • Linux Kernel Commit Update - commit 9fb490323997

Workarounds

  • Disable the rz-dmac driver if not required for system operation by blacklisting the module
  • Ensure all driver dependencies are available to minimize probe deferral occurrences
  • Implement periodic system reboots on affected embedded systems until patching is possible
bash
# Blacklist the rz-dmac driver if not needed
echo "blacklist rz-dmac" >> /etc/modprobe.d/blacklist-rz-dmac.conf
# Update initramfs after blacklisting
update-initramfs -u

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 Patch

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