Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-23283

CVE-2026-23283: Linux Kernel PM Runtime Leak Vulnerability

CVE-2026-23283 is a PM runtime reference leak in the Linux kernel's fp9931 regulator driver that occurs when regmap_read() fails. This article covers the technical details, affected kernel versions, and mitigation strategies.

Published: March 27, 2026

CVE-2026-23283 Overview

A Power Management (PM) runtime reference leak vulnerability has been identified in the Linux kernel's FP9931 voltage regulator driver. The flaw exists within the fp9931_hwmon_read() function, where a failed regmap_read() operation causes the function to return an error code without properly releasing the PM runtime reference by calling pm_runtime_put_autosuspend(). This resource management error can lead to system instability and potential denial of service conditions.

Critical Impact

Improper PM reference handling can prevent devices from entering low-power states, leading to resource exhaustion and system instability in embedded Linux systems utilizing the FP9931 regulator.

Affected Products

  • Linux kernel with FP9931 regulator driver enabled
  • Embedded systems using FP9931 voltage regulator
  • Hardware monitoring subsystem (hwmon) implementations with FP9931 support

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23283 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23283

Vulnerability Analysis

The vulnerability is classified as a Memory Leak affecting the Linux kernel's regulator subsystem. The FP9931 driver implements hardware monitoring functionality through the hwmon interface, which requires proper PM runtime reference counting to manage device power states.

When fp9931_hwmon_read() is invoked to retrieve sensor data, the function acquires a PM runtime reference to ensure the device is powered and accessible. Under normal operation, after reading the data, the function should release this reference via pm_runtime_put_autosuspend(). However, when regmap_read() encounters an error condition, the error handling path returns immediately without releasing the acquired PM reference.

This oversight results in a persistent reference count increment that is never balanced by a corresponding decrement. Over time or with repeated failed read operations, the accumulated leaked references prevent the PM subsystem from transitioning the device to low-power states.

Root Cause

The root cause is improper error handling in the fp9931_hwmon_read() function. The function fails to call pm_runtime_put_autosuspend() in the error path when regmap_read() fails. This violates the PM runtime reference counting contract, which requires that every pm_runtime_get_*() call be paired with a corresponding pm_runtime_put_*() call, regardless of the execution path taken.

Attack Vector

The attack vector is local and requires the ability to trigger hardware monitoring read operations on a system with the FP9931 regulator driver loaded. An attacker or faulty hardware condition that causes repeated regmap_read() failures could exploit this vulnerability to:

  1. Prevent the system from entering power-saving states
  2. Exhaust kernel resources through accumulated reference counts
  3. Cause system instability in resource-constrained embedded environments

The vulnerability description and fix can be reviewed in the kernel commit fix and kernel commit update.

Detection Methods for CVE-2026-23283

Indicators of Compromise

  • Unexpected PM runtime reference counts on FP9931 devices visible in /sys/kernel/debug/pm_runtime/
  • Device unable to enter low-power suspend states
  • Kernel log messages indicating PM reference count imbalance
  • Elevated power consumption on affected embedded systems

Detection Strategies

  • Monitor PM runtime status through debugfs interfaces for abnormal reference counts
  • Implement kernel runtime PM debugging with CONFIG_PM_RUNTIME_DEBUG enabled
  • Use static analysis tools to audit PM reference counting in kernel drivers
  • Deploy SentinelOne Singularity XDR for real-time kernel anomaly detection

Monitoring Recommendations

  • Enable kernel PM runtime debugging to track reference count changes
  • Monitor system power states for unexpected wake-lock behavior
  • Implement automated alerts for hwmon subsystem errors in system logs
  • Review dmesg output for regmap read failures on FP9931 devices

How to Mitigate CVE-2026-23283

Immediate Actions Required

  • Update to the latest stable Linux kernel version containing the fix
  • If unable to update immediately, consider disabling hwmon functionality for FP9931 if not required
  • Monitor affected systems for signs of resource exhaustion
  • Review system logs for evidence of exploitation attempts

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix ensures that pm_runtime_put_autosuspend() is called in all code paths, including the error path when regmap_read() fails.

Official patch commits are available at:

  • Kernel Commit Fix
  • Kernel Commit Update

Workarounds

  • Disable FP9931 hwmon support if hardware monitoring is not required for your deployment
  • Implement userspace monitoring to detect and respond to PM reference leaks
  • Consider using alternative regulator drivers if available for your hardware platform
  • Apply vendor-specific kernel patches if your distribution has not yet merged the upstream fix
bash
# Check current PM runtime status for FP9931 devices
cat /sys/kernel/debug/pm_runtime/* | grep -i fp9931

# Verify kernel version includes the fix
uname -r

# Monitor for regmap errors in kernel logs
dmesg | grep -i "fp9931\|regmap"

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 Commit Update

  • Kernel Commit Fix
  • Related CVEs
  • CVE-2026-31439: Linux Kernel XDMA Error Handling Flaw

  • CVE-2026-31441: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31434: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31435: Linux Kernel Read Abandonment 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