A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-46252

CVE-2026-46252: Linux Kernel Race Condition Vulnerability

CVE-2026-46252 is a race condition vulnerability in the Linux kernel regulator core that causes locking issues in error paths. This post covers the technical details, affected versions, impact, and mitigation steps.

Published: June 4, 2026

CVE-2026-46252 Overview

CVE-2026-46252 is a locking defect in the Linux kernel's regulator subsystem. The flaw resides in the regulator_resolve_supply() error path within drivers/regulator/core.c. When late enabling of a supply regulator fails, the code calls _regulator_put() without holding the required regulator_list_mutex. This triggers a lockdep warning and exposes the regulator device (rdev) to concurrent access while its supply pointer is cleared. The defect is a kernel-internal correctness issue affecting power management code paths.

Critical Impact

The locking violation can produce kernel warnings and race conditions during regulator supply resolution, potentially destabilizing power management state on affected systems.

Affected Products

  • Linux kernel (mainline) — drivers/regulator/core.c regulator core subsystem
  • Stable kernel branches receiving the upstream backport identified by commits 497330b203d2 and c66e0db0f372
  • Linux distributions that ship vulnerable stable kernels prior to applying the fix

Discovery Timeline

  • 2026-06-03 - CVE-2026-46252 published to NVD
  • 2026-06-03 - Last updated in NVD database

Technical Details for CVE-2026-46252

Vulnerability Analysis

The defect is a kernel locking error [CWE-667-class] in the Linux regulator framework. When regulator_resolve_supply() attempts late enabling of a supply regulator and that operation fails, the error path invokes _regulator_put() directly. The internal _regulator_put() helper assumes that callers already hold regulator_list_mutex. The error path violates this contract.

Lockdep detects the missing lock and emits a warning at drivers/regulator/core.c:2649, with the call trace passing through _regulator_put, regulator_resolve_supply, and regulator_register_resolve_supply. Beyond the warning, the code clears the supply pointer on the regulator device without serialization. Concurrent access to the same rdev during this window can read or modify inconsistent state.

The fix switches the error path to the public regulator_put() wrapper, which acquires the mutex. The fix also adds explicit locking around the supply pointer clearing so that no concurrent code path observes a partially updated rdev.

Root Cause

The root cause is an API contract violation. The internal helper _regulator_put() requires regulator_list_mutex to be held by its caller, but the failure handler in regulator_resolve_supply() calls it directly without acquiring the lock. A secondary root cause is the absence of any synchronization protecting the clearing of the supply pointer on rdev.

Attack Vector

This is a kernel correctness defect rather than a remotely reachable vulnerability. Triggering the warning requires a failure during late enable of a supply regulator, which occurs in early device probe paths. There is no published proof-of-concept and no evidence of in-the-wild exploitation. The defect is not listed in the CISA Known Exploited Vulnerabilities catalog.

The vulnerability manifests in kernel power management code. See the Kernel Git Commit Reference for the full patch details.

Detection Methods for CVE-2026-46252

Indicators of Compromise

  • Kernel log entries containing WARNING: drivers/regulator/core.c:2649 at _regulator_put
  • Call traces referencing regulator_resolve_supply and regulator_register_resolve_supply during boot or device probe
  • Unexpected lockdep splats associated with regulator_list_mutex on systems running affected stable kernels

Detection Strategies

  • Inventory running kernel versions across the fleet and compare against the stable trees that include commits 497330b203d2 and c66e0db0f372
  • Enable CONFIG_PROVE_LOCKING and CONFIG_LOCKDEP on test systems to surface the warning during regulator probe failures
  • Parse dmesg and journalctl -k output for the specific warning string and stack frames listed above

Monitoring Recommendations

  • Forward kernel ring buffer events to a centralized log platform and alert on WARNING: entries from drivers/regulator/core.c
  • Track package and kernel update status across Linux endpoints so that unpatched stable kernels are visible to operators
  • Correlate regulator subsystem warnings with device probe failures to identify hardware platforms exercising the affected path

How to Mitigate CVE-2026-46252

Immediate Actions Required

  • Apply the stable kernel update containing commits 497330b203d2c59c5ff3fa4c34d14494d7203bc3 and c66e0db0f37290b53c57994f998bb55590364fd0
  • Rebuild and redeploy any custom kernels that carry the regulator core code from before the fix
  • Subscribe to your Linux distribution's security advisory feed for kernel package updates referencing CVE-2026-46252

Patch Information

The upstream fix replaces the direct call to _regulator_put() in the error path of regulator_resolve_supply() with regulator_put(), which correctly acquires regulator_list_mutex. The patch also introduces locking around clearing the supply pointer on rdev to prevent concurrent access. Refer to the upstream commit c66e0db0f372 and the companion commit 497330b203d2 for the full diff.

Workarounds

  • No runtime workaround is available; the defect resides in kernel locking semantics and requires a code change
  • On systems where the warning is observed but the kernel cannot be updated immediately, document the affected hardware platforms and avoid configurations that exercise late supply enable failures
  • Test the fix in a staging environment before broad rollout, since the surrounding code is scheduled for removal in a follow-up commit
bash
# Verify the running kernel version and check for the fix
uname -r

# On Debian/Ubuntu, update the kernel package
sudo apt update && sudo apt install --only-upgrade linux-image-generic

# On RHEL/Fedora, update the kernel package
sudo dnf update kernel

# Reboot into the patched kernel
sudo systemctl reboot

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

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

  • Kernel Git Commit Reference
  • Related CVEs
  • CVE-2026-46272: Linux Kernel Race Condition Vulnerability

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

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

  • CVE-2026-46208: Linux Kernel Race Condition Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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