A Leader in the 2025 Gartner® Magic Quadrant™ for Endpoint Protection Platforms. Five years running.A Leader in the Gartner® Magic Quadrant™Read the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-23221

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

CVE-2026-23221 is a use-after-free flaw in the Linux kernel fsl-mc bus driver that can cause concurrent memory access issues. This post explains its technical details, affected versions, impact, and mitigation.

Published: February 20, 2026

CVE-2026-23221 Overview

A use-after-free vulnerability has been identified in the Linux kernel's fsl-mc (Freescale Management Complex) bus driver. The driver_override_show() function reads the driver_override string without holding the device_lock, while the corresponding driver_override_store() function uses driver_set_override() to modify and free the string while holding the lock. This race condition can result in concurrent use-after-free if the string is freed by the store function while being read by the show function.

Critical Impact

A local attacker may be able to exploit this race condition to cause memory corruption, potentially leading to information disclosure, denial of service, or in some scenarios, privilege escalation on affected Linux systems.

Affected Products

  • Linux kernel (versions with fsl-mc bus driver)
  • Systems using Freescale/NXP QorIQ DPAA2 architecture
  • Embedded Linux systems with fsl-mc subsystem enabled

Discovery Timeline

  • 2026-02-18 - CVE CVE-2026-23221 published to NVD
  • 2026-02-19 - Last updated in NVD database

Technical Details for CVE-2026-23221

Vulnerability Analysis

This vulnerability represents a classic Time-of-Check Time-of-Use (TOCTOU) race condition in kernel memory management. The fsl-mc bus driver exposes a sysfs interface allowing userspace to read and write the driver_override attribute. The core issue lies in the asymmetric locking strategy between the read and write operations.

The driver_override_show() function, responsible for displaying the current driver override value to userspace via sysfs, accesses the driver_override string pointer without first acquiring the device_lock mutex. Meanwhile, the driver_override_store() function properly holds the device_lock when calling driver_set_override(), which may free the existing string and allocate a new one. This creates a window where one thread reading the string may access memory that has been simultaneously freed by another thread performing a write operation.

Exploitation of this vulnerability requires local access to the system and the ability to interact with the sysfs interface. The impact includes potential kernel memory corruption, which could lead to system instability, information leakage from kernel memory, or in sophisticated attack scenarios, arbitrary code execution in kernel context.

Root Cause

The root cause is improper synchronization in the driver_override_show() function within the fsl-mc bus driver. The function fails to acquire the device_lock before reading the driver_override string pointer, creating a race window with concurrent write operations that properly hold the lock while modifying and freeing the same memory.

Attack Vector

The attack requires local access to a Linux system with the fsl-mc bus driver loaded. An attacker would need to create a race condition by:

  1. Initiating a read operation on the driver_override sysfs attribute via /sys/bus/fsl-mc/devices/*/driver_override
  2. Simultaneously triggering a write operation to the same attribute
  3. Timing the operations to cause the read to access freed memory

The vulnerability affects the sysfs interface exposed by the fsl-mc subsystem. An attacker with sufficient privileges to access the device's sysfs entries could trigger the race condition to potentially corrupt kernel memory or leak sensitive information.

Detection Methods for CVE-2026-23221

Indicators of Compromise

  • Kernel panic or oops messages referencing driver_override_show in the fsl-mc subsystem
  • Unexpected system crashes on systems with fsl-mc hardware
  • Memory corruption warnings in kernel logs related to slab allocator
  • Suspicious concurrent access patterns to fsl-mc sysfs entries in audit logs

Detection Strategies

  • Monitor kernel logs for use-after-free warnings using KASAN (Kernel Address Sanitizer) if enabled
  • Implement audit rules for access to /sys/bus/fsl-mc/devices/*/driver_override paths
  • Deploy kernel live patching solutions to detect and block exploitation attempts
  • Use SentinelOne's Linux agent for real-time kernel exploit detection

Monitoring Recommendations

  • Enable kernel debugging options such as CONFIG_DEBUG_SLAB and CONFIG_KASAN in development environments
  • Configure syslog monitoring for kernel oops messages containing fsl-mc references
  • Implement access control monitoring for sysfs interactions on production systems
  • Review system logs for unusual patterns of concurrent sysfs access operations

How to Mitigate CVE-2026-23221

Immediate Actions Required

  • Apply the latest kernel patches from the official Linux kernel repositories
  • If patching is not immediately possible, restrict access to fsl-mc sysfs entries using filesystem permissions
  • Monitor affected systems for signs of exploitation attempts
  • Consider temporarily disabling the fsl-mc driver if not required for system operation

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix involves holding the device_lock around the read operation in driver_override_show() to ensure proper synchronization with concurrent write operations.

Patches are available in multiple kernel stable branches:

  • Kernel Commit 1d6bd6183e72
  • Kernel Commit a2ae33e1c636
  • Kernel Commit b1983840287
  • Kernel Commit c424e72cfa67
  • Kernel Commit c71dfb7833db
  • Kernel Commit dd8ba8c0c3f3

Workarounds

  • Restrict access to /sys/bus/fsl-mc/devices/*/driver_override using filesystem permissions to limit exposure
  • Implement SELinux or AppArmor policies to control access to fsl-mc sysfs entries
  • Disable the fsl-mc driver module if the hardware is not in use on the affected system
  • Use kernel lockdown mode where supported to limit userspace kernel interactions
bash
# Configuration example
# Restrict access to fsl-mc driver_override sysfs entries
chmod 600 /sys/bus/fsl-mc/devices/*/driver_override

# Blacklist fsl-mc module if not required
echo "blacklist fsl-mc-bus" >> /etc/modprobe.d/blacklist-fsl-mc.conf

# Verify current module status
lsmod | grep fsl_mc

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
  • Linux Kernel Commit Log

  • Linux Kernel Commit Log

  • Linux Kernel Commit Log

  • Linux Kernel Commit Log

  • Linux Kernel Commit Log

  • Linux Kernel Commit Log
  • Related CVEs
  • CVE-2025-71236: Linux Kernel Use-After-Free Vulnerability

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

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

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