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

CVE-2025-71132: Linux Kernel Race Condition Vulnerability

CVE-2025-71132 is a race condition vulnerability in the Linux kernel smc91x driver affecting PREEMPT_RT systems. This causes IRQ context issues leading to system instability. This article covers technical details, impact, and fixes.

Published: January 23, 2026

CVE-2025-71132 Overview

A race condition vulnerability has been identified in the Linux kernel's smc91x network driver when compiled with PREEMPT_RT (Real-Time) support. The flaw exists in the interrupt context handling, where smc_special_trylock() disables IRQs but smc_special_unlock() fails to properly restore IRQs on PREEMPT_RT configurations. This mismatch causes workqueue atomic leaks and RCU state inconsistencies, potentially leading to system instability or denial of service conditions.

Critical Impact

Systems running PREEMPT_RT-enabled Linux kernels with SMC91x network controllers may experience kernel warnings, workqueue leaks, and potential system instability due to improper IRQ context handling.

Affected Products

  • Linux kernel with PREEMPT_RT enabled
  • Systems using SMC91x network driver (smc91x.c)
  • ARM FVP (Fixed Virtual Platform) RevC and similar embedded platforms

Discovery Timeline

  • 2026-01-14 - CVE CVE-2025-71132 published to NVD
  • 2026-01-19 - Last updated in NVD database

Technical Details for CVE-2025-71132

Vulnerability Analysis

The vulnerability resides in the locking mechanism used by the smc91x network driver when operating under PREEMPT_RT (Real-Time preemption) kernel configurations. The driver uses custom spinlock wrappers (smc_special_trylock() and smc_special_unlock()) to manage critical sections during network operations. However, these functions exhibit asymmetric behavior on PREEMPT_RT systems.

When smc_special_trylock() acquires the lock, it disables hardware interrupts to protect the critical section. The problem arises in smc_special_unlock(), which calls spin_unlock_irqrestore(). On PREEMPT_RT systems, this does not properly restore the IRQ state, causing rcu_read_unlock_bh() in __dev_queue_xmit() to fail when attempting to invoke rcu_read_unlock() through __local_bh_enable_ip() after current->softirq_disable_cnt reaches zero.

This results in RCU state tracking inconsistencies, manifesting as kernel BUG warnings indicating workqueue leaked atomic or RCU contexts during network multicast operations, particularly during mld_ifc_work workqueue execution.

Root Cause

The root cause is the inconsistent handling of IRQ disabling and restoring between smc_special_trylock() and smc_special_unlock() functions on PREEMPT_RT kernel configurations. While PREEMPT_RT modifies spinlock behavior for real-time guarantees, the smc91x driver's custom lock wrapper functions do not account for these differences, creating an IRQ state mismatch that corrupts RCU tracking.

Attack Vector

This vulnerability can be triggered locally when network activity occurs on systems with PREEMPT_RT-enabled kernels using the SMC91x network driver. The issue manifests during normal network operations, particularly when IPv6 multicast listener discovery (MLD) workqueues execute concurrent network transmissions.

The attack surface is limited to local denial of service conditions on affected embedded systems. An attacker with local access could potentially cause system instability by generating network traffic that triggers the vulnerable code path during MLD processing.

Detection Methods for CVE-2025-71132

Indicators of Compromise

  • Kernel log messages containing BUG: workqueue leaked atomic, lock or RCU warnings
  • Stack traces referencing mld_ifc_work, process_scheduled_works, or worker_thread
  • System instability or network driver issues on PREEMPT_RT enabled systems using SMC91x hardware
  • RCU state inconsistency messages with RCU=0->1 patterns in kernel logs

Detection Strategies

  • Monitor kernel ring buffer (dmesg) for workqueue atomic leak warnings associated with the smc91x driver
  • Implement audit rules for kernel BUG messages related to preemption and RCU state tracking
  • Review system logs for network driver anomalies on embedded ARM platforms using SMC91x controllers
  • Deploy kernel tracing to identify IRQ context mismatches during network operations

Monitoring Recommendations

  • Enable kernel watchdog and panic-on-BUG configurations to detect and respond to locking violations
  • Implement centralized log collection for kernel warnings across affected embedded systems
  • Configure alerts for PREEMPT and RCU related kernel messages on PREEMPT_RT deployments
  • Monitor network driver health metrics on systems using the smc91x module

How to Mitigate CVE-2025-71132

Immediate Actions Required

  • Identify systems running PREEMPT_RT-enabled kernels with SMC91x network hardware
  • Apply the official kernel patches that replace smc_special_trylock() with spin_trylock_irqsave()
  • Schedule maintenance windows to update affected embedded systems and ARM platforms
  • Consider temporarily disabling PREEMPT_RT if patching is not immediately possible on critical systems

Patch Information

The Linux kernel maintainers have released patches to resolve this issue by replacing the smc_special_trylock() function with the standard spin_trylock_irqsave() call, which properly handles IRQ context on both standard and PREEMPT_RT configurations.

Multiple stable kernel commits address this vulnerability:

  • Commit 1c4cb705e733
  • Commit 36561b86cb25
  • Commit 6402078bd9d1
  • Commit 9d222141b001
  • Commit b6018d5c1a8f
  • Commit ef277ae121b3

Workarounds

  • Disable PREEMPT_RT configuration if real-time preemption is not required for the deployment
  • Use an alternative network driver or hardware if the smc91x driver is not essential
  • Implement network isolation on affected embedded systems to reduce attack surface
  • Configure kernel panic behavior to ensure system recovery if workqueue leaks occur
bash
# Check if system is affected
uname -a | grep -i preempt
lsmod | grep smc91x

# Verify kernel configuration for PREEMPT_RT
zcat /proc/config.gz | grep CONFIG_PREEMPT_RT

# Apply kernel update on Debian/Ubuntu-based systems
apt update && apt upgrade linux-image-*

# On embedded systems, rebuild kernel with patched smc91x driver
make ARCH=arm menuconfig
make ARCH=arm -j$(nproc)

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

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

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

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit
  • Related CVEs
  • CVE-2026-23440: Linux Kernel Race Condition Vulnerability

  • CVE-2026-23434: Linux Kernel Race Condition Vulnerability

  • CVE-2026-23436: Linux Kernel Race Condition Vulnerability

  • CVE-2026-23463: Linux Kernel QBMAN Race Condition 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