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-2026-23186

CVE-2026-23186: Linux Kernel Race Condition Vulnerability

CVE-2026-23186 is a race condition vulnerability in the Linux kernel's acpi_power_meter driver that causes deadlocks during device removal. This article covers the technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2026-23186 Overview

A deadlock vulnerability has been identified in the Linux kernel's acpi_power_meter hardware monitoring driver. The issue occurs within the acpi_power_meter_notify() callback function, which improperly calls hwmon_device_unregister() while holding a lock that is also acquired by callbacks in sysfs attributes of the device being unregistered. This creates a deadlock condition between sysfs access and device removal operations.

Critical Impact

Systems running affected Linux kernel versions may experience system hangs or unresponsive behavior when the ACPI power meter hardware monitoring subsystem processes device notifications, potentially leading to denial of service conditions.

Affected Products

  • Linux kernel with acpi_power_meter hwmon driver enabled
  • Systems using ACPI power metering functionality
  • Enterprise servers and workstations with ACPI power management hardware

Discovery Timeline

  • 2026-02-14 - CVE CVE-2026-23186 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2026-23186

Vulnerability Analysis

This vulnerability represents a classic deadlock race condition in the Linux kernel's hardware monitoring subsystem. The acpi_power_meter driver implements a notification callback (acpi_power_meter_notify()) that handles various ACPI notifications including device configuration changes. When processing METER_NOTIFY_CONFIG notifications, the function attempts to unregister the hwmon device while holding an internal lock.

The problem arises because the same lock is required by sysfs attribute callbacks that may be executing concurrently during device access. This creates a circular dependency where the notification handler waits for sysfs operations to complete (which need the lock), while sysfs operations wait for the lock held by the notification handler.

Additionally, the fix addresses a secondary race condition where two concurrent METER_NOTIFY_CONFIG notifications could attempt to remove the same device simultaneously, potentially causing use-after-free or double-free conditions.

Root Cause

The root cause is improper lock ordering and scope in the acpi_power_meter_notify() function. The original implementation called hwmon_device_unregister() within a critical section protected by a lock that is shared with sysfs attribute callbacks. This violates the lock ordering principle and creates conditions for deadlock.

The fix involves:

  1. Moving hwmon_device_unregister() outside the inner lock scope
  2. Adding a new static mutex to serialize the entire switch statement in acpi_power_meter_notify()
  3. Protecting hwmon_device_register_with_info() with the outer lock to prevent concurrent manipulation of the resource object
  4. Adding error checking for hwmon_device_register_with_info() failures to prevent unregistration of error pointers

Attack Vector

This vulnerability has a local attack vector. An attacker with local access could potentially trigger the deadlock condition by manipulating ACPI notifications or timing sysfs accesses to coincide with device removal events. The attack requires the ability to interact with the ACPI subsystem or generate specific hardware events.

The vulnerability manifests through the interaction between the notification callback and sysfs attribute access. When a METER_NOTIFY_CONFIG notification is received, the driver attempts to unregister and potentially re-register the hwmon device. If a user-space process is simultaneously reading sysfs attributes (such as power measurements), the deadlock occurs when both code paths attempt to acquire the same lock.

For technical details on the fix implementation, see the kernel git commits referenced in this advisory.

Detection Methods for CVE-2026-23186

Indicators of Compromise

  • System hangs or freezes during ACPI power meter device operations
  • Kernel soft lockup warnings in system logs mentioning acpi_power_meter functions
  • Processes stuck in uninterruptible sleep (D state) when accessing /sys/class/hwmon/ paths related to power meters
  • Watchdog timer events triggered by kernel deadlocks

Detection Strategies

  • Monitor kernel logs for soft lockup messages containing acpi_power_meter_notify or related function names
  • Implement system monitoring to detect processes stuck in D state for extended periods
  • Use kernel lockdep debugging (if enabled) to identify potential deadlock scenarios
  • Monitor for increased system load or unresponsive hwmon interfaces

Monitoring Recommendations

  • Enable kernel lockdep debugging in development/testing environments to proactively identify lock ordering issues
  • Configure watchdog timers to detect and respond to system hangs
  • Implement monitoring for sysfs access latency to hwmon devices
  • Set up alerting for kernel soft lockup warnings in production environments

How to Mitigate CVE-2026-23186

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the deadlock fix
  • If immediate patching is not possible, consider disabling the acpi_power_meter module if not required
  • Limit access to hwmon sysfs interfaces to reduce potential attack surface
  • Monitor systems for signs of deadlock or system instability

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix introduces proper lock ordering by moving device unregistration outside the inner lock scope and adding a new serialization mutex. The patches are available through the kernel stable branches:

  • Kernel Git Commit #615901b
  • Kernel Git Commit #8860ddf

Apply the appropriate kernel update for your distribution to remediate this vulnerability.

Workarounds

  • Blacklist or unload the acpi_power_meter kernel module if ACPI power metering functionality is not required
  • Restrict access to hwmon sysfs interfaces using appropriate file permissions or SELinux/AppArmor policies
  • Avoid automated monitoring scripts that frequently poll power meter sysfs attributes until patched
  • Consider using alternative power monitoring mechanisms if available
bash
# Temporarily disable the acpi_power_meter module
sudo modprobe -r acpi_power_meter

# Blacklist the module to prevent loading at boot
echo "blacklist acpi_power_meter" | sudo tee /etc/modprobe.d/blacklist-acpi-power-meter.conf

# Verify the module is not loaded
lsmod | grep acpi_power_meter

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.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit #615901b

  • Kernel Git Commit #8860ddf
  • 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