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

CVE-2026-46270: Linux Kernel Use-After-Free Vulnerability

CVE-2026-46270 is a use-after-free vulnerability in the Linux kernel's rt9455 power supply driver that can crash systems or corrupt memory. This post explains its impact, affected versions, and mitigation steps.

Published: June 4, 2026

CVE-2026-46270 Overview

CVE-2026-46270 is a use-after-free vulnerability in the Linux kernel's rt9455 power supply driver. The flaw stems from incorrect ordering of device-managed (devm_) resource allocation in the driver's probe routine. The IRQ is requested before the power_supply handle is registered, causing the power_supply handle to be deallocated before the interrupt handler during device removal. An interrupt firing in this race window invokes power_supply_changed() against a freed handle, leading to kernel memory corruption or a system crash.

Critical Impact

A race condition between IRQ deregistration and power_supply handle teardown can trigger a use-after-free, resulting in kernel crashes or silent memory corruption on systems using the rt9455 battery charger driver.

Affected Products

  • Linux kernel versions containing the drivers/power/supply/rt9455.c driver prior to the fix
  • Stable kernel branches referenced by the eight upstream commits listed below
  • Embedded and mobile platforms using the Richtek RT9455 battery charger IC

Discovery Timeline

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

Technical Details for CVE-2026-46270

Vulnerability Analysis

The rt9455 driver uses Linux's device-managed resource framework, where devm_ allocations are automatically released in reverse order during driver detach. The driver registers its interrupt handler with devm_request_threaded_irq() before registering the power_supply handle with devm_power_supply_register(). Because deallocation is LIFO, the power_supply handle is freed before the IRQ handler is unregistered.

During this short window in the removal path, a hardware interrupt can still fire and invoke the registered handler. The handler calls power_supply_changed() against the already-freed power_supply structure, producing a classic use-after-free [CWE-416]. A symmetric problem exists during probe: an early interrupt can fire before power_supply registration completes, causing the handler to operate on an uninitialized handle.

Root Cause

The root cause is incorrect ordering of device-managed resource registrations. The driver requests the IRQ before allocating and registering the dependent power_supply object. This violates the invariant that an interrupt handler must outlive the data structures it dereferences.

Attack Vector

Triggering the condition requires the rt9455 hardware to assert an interrupt during driver probe or removal. Exploitation is local and depends on physical or driver-binding access to the device. The primary impact is kernel instability and potential memory corruption rather than remote compromise. See the upstream fixes such as commit 64e15155095f and commit 721449a15170 for the corrected ordering.

Detection Methods for CVE-2026-46270

Indicators of Compromise

  • Kernel oops or panic traces referencing power_supply_changed or rt9455 in the call stack
  • KASAN reports flagging use-after-free in the power supply subsystem on affected kernels
  • Unexpected system reboots or memory corruption symptoms on devices using the RT9455 charger IC

Detection Strategies

  • Inventory running kernel versions across Linux endpoints and compare against the fixed commits in the kernel.org stable tree
  • Enable KASAN on test builds to surface latent use-after-free conditions in the power supply driver path
  • Review dmesg and persistent kernel logs for crashes correlated with charger hotplug or driver unbind events

Monitoring Recommendations

  • Collect kernel crash dumps centrally and search for rt9455 or power_supply_changed frames
  • Track CONFIG_CHARGER_RT9455 build status on managed device images to identify exposed fleets
  • Alert on repeated unexplained reboots on embedded Linux devices that integrate Richtek charger ICs

How to Mitigate CVE-2026-46270

Immediate Actions Required

  • Apply the upstream Linux stable kernel updates that reorder IRQ registration after power_supply registration in the rt9455 driver
  • Rebuild and redeploy custom kernels that include drivers/power/supply/rt9455.c with the fix backported
  • Validate that vendor-supplied kernels for affected embedded platforms include the patch before shipping firmware updates

Patch Information

The fix is available across multiple stable branches via the following commits: 2178dc65d45e, 62d753b916bd, 64e15155095f, 721449a15170, a39f8f06216f, af261f218a76, d4e2e3c3caa2, and e2febe375e5e. The fix requests the IRQ only after the power_supply handle is registered, ensuring the handler never accesses a freed or uninitialized structure.

Workarounds

  • Disable the CONFIG_CHARGER_RT9455 kernel option on systems that do not require the driver
  • Avoid runtime unbinding or module unloading of rt9455 on production devices until the patch is applied
  • Restrict physical access to devices integrating the RT9455 charger to reduce opportunities for triggering driver probe and removal cycles

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

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

  • Kernel Git Commit Update 2

  • Kernel Git Commit Update 3

  • Kernel Git Commit Update 4

  • Kernel Git Commit Update 5

  • Kernel Git Commit Update 6

  • Kernel Git Commit Update 7

  • Kernel Git Commit Update 8
  • Related CVEs
  • CVE-2026-46267: Linux Kernel NFC Use-After-Free Flaw

  • CVE-2026-46264: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-46259: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-46246: Linux Kernel Use-After-Free 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