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

CVE-2026-43066: Linux Kernel ext4 Memory Leak Vulnerability

CVE-2026-43066 is a memory leak flaw in the Linux kernel ext4 filesystem that fails to release buffer references in error paths. This article covers the technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-43066 Overview

CVE-2026-43066 is a memory leak vulnerability in the Linux kernel's ext4 filesystem implementation. The flaw resides in the ext4_fc_replay_inode() function, which handles fast commit replay operations during journal recovery. The function calls ext4_get_fc_inode_loc() to retrieve inode location data, acquiring a buffer head reference (iloc.bh) that must be released via brelse(). Several error paths jump to the out label without releasing this reference, leaking buffer head memory on each error condition. The issue was identified during code review by a contributor named Joseph and resolved across multiple stable Linux kernel branches.

Critical Impact

Repeated buffer head leaks during ext4 fast commit replay error conditions can degrade kernel memory availability, potentially leading to resource exhaustion on systems performing frequent journal recovery operations.

Affected Products

  • Linux kernel ext4 filesystem subsystem
  • Multiple stable kernel branches receiving the backported fix
  • Systems using ext4 with the fast commit (fast_commit) feature enabled

Discovery Timeline

  • 2026-05-05 - CVE-2026-43066 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43066

Vulnerability Analysis

The vulnerability exists in the ext4 fast commit replay code path. When ext4_fc_replay_inode() is invoked during journal recovery, it calls ext4_get_fc_inode_loc() to obtain the on-disk location of an inode. This call returns a reference to a buffer head structure stored in iloc.bh, which the caller is responsible for releasing.

Four distinct error paths within the function fail to release iloc.bh before exiting:

  • ext4_handle_dirty_metadata() failure
  • sync_dirty_buffer() failure
  • ext4_mark_inode_used() failure
  • ext4_iget() failure

Each failed call jumps to the out label, bypassing the required brelse() invocation. Additionally, the function previously returned 0 regardless of internal errors, masking failure conditions from upper layers of the journal replay logic.

Root Cause

The root cause is a missing resource cleanup in error handling paths, classified as a memory leak [CWE-401]. The function lacked a dedicated cleanup label that releases the buffer head before returning. Coupled with improper error propagation, the defect both leaks kernel memory and silently swallows replay failures.

Attack Vector

The vulnerability is triggered locally during ext4 fast commit replay, which occurs after an unclean shutdown or crash on a filesystem mounted with fast commit enabled. Triggering the leak requires specific failures in metadata handling, buffer synchronization, inode marking, or inode retrieval during replay. The flaw does not provide a direct path to code execution or privilege escalation, but repeated triggering can exhaust kernel buffer head allocations.

The upstream patch introduces an out_brelse label placed before the existing out label, ensuring brelse(iloc.bh) runs on every error exit. The fix also propagates errors from ext4_fc_replay_inode() to its callers instead of unconditionally returning 0. Patch details are available in the Linux Kernel Commit f7817ad and related stable backports.

Detection Methods for CVE-2026-43066

Indicators of Compromise

  • Growing Buffers value in /proc/meminfo on systems performing repeated ext4 journal replay
  • Increasing slab usage for buffer_head entries visible in /proc/slabinfo
  • Repeated ext4 fast commit replay errors logged to the kernel ring buffer (dmesg) during mount operations

Detection Strategies

  • Monitor kernel version inventories to identify hosts running unpatched kernel branches affected by the listed stable commits
  • Track ext4 mount events followed by fast commit replay errors using audit and syslog telemetry
  • Correlate slab memory growth with buffer_head allocations on long-running systems mounting ext4 volumes

Monitoring Recommendations

  • Enable kernel telemetry collection on Linux hosts and forward dmesg and journal logs to centralized analysis
  • Track kmem_cache statistics over time to detect abnormal buffer_head retention
  • Alert on repeated unclean ext4 shutdowns that trigger fast commit replay paths

How to Mitigate CVE-2026-43066

Immediate Actions Required

  • Apply the upstream Linux kernel patch or update to a stable kernel version that includes the fix from the referenced commits
  • Inventory Linux systems using ext4 with fast commit enabled and prioritize patching long-running hosts
  • Reboot affected systems after kernel updates to load the patched kernel image

Patch Information

The fix is distributed across multiple stable branches via commits including 0892f12, 19782b4, 5a63033, 9c90449, c426231, ca99cbc, ec0a750, and f7817ad. Distribution vendors typically incorporate these stable patches into their kernel update streams.

Workarounds

  • Disable the ext4 fast commit feature on affected volumes by mounting without fast_commit until a patched kernel is deployed
  • Ensure clean shutdowns to minimize fast commit replay invocations that exercise the vulnerable code path
  • Monitor and reboot systems exhibiting buffer head slab growth before resource exhaustion impacts service availability

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 0892f12

  • Linux Kernel Commit 19782b4

  • Linux Kernel Commit 5a63033

  • Linux Kernel Commit 9c90449

  • Linux Kernel Commit c426231

  • Linux Kernel Commit ca99cbc

  • Linux Kernel Commit ec0a750

  • Linux Kernel Commit f7817ad
  • Related CVEs
  • CVE-2026-43093: Linux Kernel XSK UMEM Validation Flaw

  • CVE-2026-43209: Linux Kernel Minix Filesystem Vulnerability

  • CVE-2026-43156: Linux Kernel Pegasus USB Driver Vulnerability

  • CVE-2026-23442: Linux Kernel NULL Pointer 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