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

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

CVE-2026-43460 is a use-after-free vulnerability in the Linux kernel's SPI Rockchip driver that can cause double-free issues. This article covers the technical details, affected versions, impact, and mitigation strategies.

Published: May 18, 2026

CVE-2026-43460 Overview

CVE-2026-43460 is a double-free vulnerability in the Linux kernel spi-rockchip-sfc driver. The driver registers its SPI controller using devm_spi_register_controller(), which automatically unregisters the controller through the device-managed (devm) cleanup path when the device is removed. The remove() callback then makes an additional manual call to spi_unregister_controller(), producing a double-free condition. Maintainers resolved the issue by switching the probe path to spi_register_controller() so that controller unregistration occurs before the DMA buffer is unmapped.

Critical Impact

Local triggering of the double-free during device removal can corrupt kernel memory structures and destabilize systems using Rockchip Serial Flash Controller hardware.

Affected Products

  • Linux kernel versions containing the spi-rockchip-sfc driver prior to the fix commits
  • Systems using Rockchip Serial Flash Controller (SFC) hardware
  • Distributions shipping the affected upstream stable kernel branches

Discovery Timeline

  • 2026-05-08 - CVE-2026-43460 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-43460

Vulnerability Analysis

The spi-rockchip-sfc driver manages the Rockchip Serial Flash Controller used to interface with SPI NOR flash devices. During probe, the driver registers the SPI controller using the device-managed helper devm_spi_register_controller(). The devm framework records this registration and automatically invokes the corresponding unregister routine when the device is torn down.

The driver's remove() callback also directly calls spi_unregister_controller() on the same controller. When the device is removed, the manual call executes first, releasing the controller's resources. The devm cleanup then runs a second unregistration on already-freed structures, producing a double-free [CWE-415].

A secondary correctness issue motivated the same patch. The driver unmaps its DMA buffer during teardown, but the devm-driven unregister ordering could allow the controller to remain active after the DMA buffer is released. Switching to spi_register_controller() in probe gives the driver explicit control over teardown ordering.

Root Cause

The root cause is duplicated cleanup logic. Using devm_spi_register_controller() transfers ownership of unregistration to the devm subsystem. Retaining the manual spi_unregister_controller() call in remove() violates the devm contract and causes the same resource to be released twice.

Attack Vector

Triggering the flaw requires the device removal path to execute on a system with the affected driver bound to Rockchip SFC hardware. Local attackers with the ability to unbind the driver, unload the module, or initiate device hot-removal can reach the vulnerable code. Successful exploitation produces kernel memory corruption that typically results in a denial of service, with potential for further impact depending on heap state at the time of the second free.

No verified public proof-of-concept code is available. See the upstream fix commits for the precise code change: kernel.org commit 111e2863, kernel.org commit 85fb5335, and kernel.org commit b6051f2b.

Detection Methods for CVE-2026-43460

Indicators of Compromise

  • Kernel oops or panic messages referencing spi_unregister_controller, rockchip_sfc, or SLUB double-free warnings during module unload or device removal.
  • KASAN reports flagging double-free or use-after-free conditions in the SPI subsystem on Rockchip platforms.
  • Unexpected SPI flash access failures or storage subsystem instability following driver unbind operations.

Detection Strategies

  • Audit installed kernel package versions against the fixed upstream stable releases referenced in the kernel.org commits.
  • Enable KASAN and SLUB debugging on test builds to surface the double-free during driver removal testing.
  • Monitor dmesg and persistent kernel logs for SPI subsystem errors correlated with device hot-removal events.

Monitoring Recommendations

  • Forward kernel logs from Rockchip-based devices to a centralized logging platform and alert on panic, oops, and KASAN signatures.
  • Track module load and unload events for spi-rockchip-sfc to identify abnormal driver lifecycle activity.
  • Include affected kernel versions in vulnerability management scans and inventory reports for embedded and edge fleets.

How to Mitigate CVE-2026-43460

Immediate Actions Required

  • Identify hosts and embedded devices running kernels with the unpatched spi-rockchip-sfc driver, particularly Rockchip-based platforms.
  • Apply the upstream stable kernel updates that include the three fix commits referenced by the NVD entry.
  • Restrict the ability to unbind kernel drivers or hot-remove devices to privileged administrative accounts only.

Patch Information

The fix replaces devm_spi_register_controller() with spi_register_controller() in the probe path and removes redundant unregistration logic, ensuring the controller is unregistered before the DMA buffer is unmapped. The patch is available in upstream Linux stable trees via the commits 111e2863372c, 85fb53351e6a, and b6051f2bdd4b. Consume the fix through your distribution's kernel updates.

Workarounds

  • Avoid unbinding or unloading the spi-rockchip-sfc driver on production systems until the patched kernel is deployed.
  • Where the SPI flash controller is not required, blacklist the spi-rockchip-sfc module to prevent the vulnerable code path from being reachable.
  • Limit physical and administrative access to affected devices to reduce the opportunity to trigger driver removal.
bash
# Verify running kernel version and check for the rockchip-sfc driver
uname -r
lsmod | grep spi_rockchip_sfc

# Optional: blacklist the module until patched kernel is installed
echo 'blacklist spi_rockchip_sfc' | sudo tee /etc/modprobe.d/cve-2026-43460.conf
sudo update-initramfs -u

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

  • EPSS Probability0.02%

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

  • Kernel Git Commit Change

  • Kernel Git Commit Change
  • Related CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-43335: 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