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

CVE-2025-71190: Linux Kernel Device Leak Vulnerability

CVE-2025-71190 is a device leak vulnerability in the Linux kernel's bcm-sba-raid DMA engine driver that causes reference leaks during probe failures. This article covers technical details, affected versions, and mitigation.

Published: February 6, 2026

CVE-2025-71190 Overview

A device reference leak vulnerability has been identified in the Linux kernel's dmaengine bcm-sba-raid driver. The vulnerability occurs when the driver fails to properly drop the reference taken when looking up the mailbox device during the probe process. This reference leak can occur on both probe failures and during driver unbind operations.

Critical Impact

Memory resource leak in kernel space that could lead to system resource exhaustion over time, potentially affecting system stability on affected Linux systems using the bcm-sba-raid driver.

Affected Products

  • Linux kernel with bcm-sba-raid dmaengine driver enabled
  • Systems using Broadcom SBA RAID functionality
  • Embedded systems and servers with affected kernel configurations

Discovery Timeline

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

Technical Details for CVE-2025-71190

Vulnerability Analysis

This vulnerability is classified as a Memory Leak affecting the Linux kernel's dmaengine subsystem, specifically the bcm-sba-raid driver. The issue stems from improper resource management during device initialization and cleanup phases.

When the bcm-sba-raid driver performs device probing, it looks up a mailbox device and acquires a reference to it. Under normal circumstances, this reference should be released when the probe fails or when the driver is unbound. However, the vulnerable code path fails to drop this reference in these error and cleanup scenarios.

The consequence is a kernel-level resource leak that persists until the system is rebooted. While the immediate impact of a single leaked reference may be negligible, repeated probe failures or driver load/unload cycles could accumulate leaked references, potentially leading to memory pressure and system degradation over time.

Root Cause

The root cause of this vulnerability is improper reference counting in the bcm-sba-raid driver's probe function. The driver acquires a device reference when looking up the mailbox device but fails to include proper cleanup code in all error paths and in the driver's unbind/remove function.

Reference counting is a critical memory management mechanism in the Linux kernel. When a reference is acquired (typically via functions like get_device() or of_find_device_by_node()), a corresponding release (via put_device()) must be called to properly free resources. Missing this release leads to orphaned references that prevent proper resource cleanup.

Attack Vector

The vulnerability is primarily a local stability concern rather than a directly exploitable security flaw. However, potential attack scenarios include:

A local attacker with privileges to load and unload kernel modules or trigger device probe operations could potentially cause resource exhaustion by repeatedly triggering the vulnerable code path. This could be achieved through:

  1. Manipulating device tree overlays or sysfs entries to trigger repeated probe/unbind cycles
  2. Exploiting conditions that cause probe failures to accumulate leaked references
  3. Using this as part of a larger denial-of-service attack chain targeting system stability

The vulnerability affects the kernel's memory management, making it a concern for systems with high uptime requirements or those running in resource-constrained environments.

Detection Methods for CVE-2025-71190

Indicators of Compromise

  • Gradual increase in kernel memory usage without corresponding user-space activity
  • Unusual device reference counts visible in /sys/bus/ entries
  • Kernel log messages related to bcm-sba-raid probe failures
  • Memory allocation failures in kernel space after extended uptime

Detection Strategies

  • Monitor kernel memory statistics using /proc/meminfo and /proc/slabinfo for unexpected growth patterns
  • Implement kernel tracing via ftrace or eBPF to monitor device reference operations in the dmaengine subsystem
  • Review system logs for repeated bcm-sba-raid driver probe failures or unbind operations
  • Use kernel debugging tools like kmemleak to detect unreleased memory references

Monitoring Recommendations

  • Set up alerting for kernel memory threshold violations on affected systems
  • Implement periodic system health checks that track device driver stability metrics
  • Monitor for patterns of driver load/unload that could indicate exploitation attempts
  • Deploy SentinelOne Singularity Platform to detect anomalous kernel behavior and memory usage patterns

How to Mitigate CVE-2025-71190

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix for this vulnerability
  • If updates cannot be applied immediately, avoid loading/unloading the bcm-sba-raid driver unnecessarily
  • Monitor system memory usage on affected systems for signs of resource leakage
  • Consider disabling the bcm-sba-raid driver if it is not required for system functionality

Patch Information

Multiple patches have been submitted to the Linux kernel stable tree to address this vulnerability. The fix ensures that the device reference acquired during probe is properly released on both probe failures and driver unbind operations.

The following kernel patches address this issue:

  • Kernel Patch 2ed1a9de1f2d
  • Kernel Patch 7c3a46ebf15a
  • Kernel Patch c80ca7bdff15
  • Kernel Patch db6f1d6d3171

Workarounds

  • Blacklist the bcm-sba-raid module if it is not required for system functionality
  • Reduce driver probe/unbind cycles by ensuring stable hardware configuration
  • Implement scheduled system reboots for critical systems to clear accumulated resource leaks
  • Monitor and limit kernel module loading operations on affected systems
bash
# Configuration example
# Blacklist the bcm-sba-raid driver if not needed
echo "blacklist bcm_sba_raid" | sudo tee /etc/modprobe.d/bcm-sba-raid-blacklist.conf
sudo update-initramfs -u

# Verify the module is not loaded
lsmod | grep bcm_sba

# Check current kernel version and available updates
uname -r
apt list --upgradable | grep linux-image

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 Patch Submission

  • Kernel Patch Submission

  • Kernel Patch Submission

  • Kernel Patch Submission
  • 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