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

CVE-2026-46194: Linux Kernel Race Condition Vulnerability

CVE-2026-46194 is a race condition vulnerability in the Linux kernel's f2fs file system affecting extent node handling. It allows concurrent writeback to corrupt node counts during inode cleanup. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: May 28, 2026

CVE-2026-46194 Overview

CVE-2026-46194 is a race condition vulnerability in the Linux kernel's f2fs (Flash-Friendly File System) implementation. The flaw resides in f2fs_destroy_extent_node(), which fails to set the FI_NO_EXTENT flag before clearing extent nodes. Concurrent kworker writeback can insert new extent nodes into the same extent tree while destruction is in progress, triggering a f2fs_bug_on() assertion in __destroy_extent_node(). The vulnerability affects systems running f2fs and may result in kernel panics or filesystem instability under specific concurrent I/O conditions.

Critical Impact

Concurrent execution of inode drop and writeback paths can trigger a kernel BUG assertion, leading to denial of service on systems using the f2fs filesystem.

Affected Products

  • Linux kernel versions containing the affected f2fs extent node implementation
  • Systems using the f2fs (Flash-Friendly File System) for storage
  • Distributions shipping unpatched stable kernels

Discovery Timeline

  • 2026-05-28 - CVE-2026-46194 published to NVD
  • 2026-05-28 - Last updated in NVD database

Technical Details for CVE-2026-46194

Vulnerability Analysis

The vulnerability is a race condition [CWE-362] in the f2fs filesystem's extent tree management. When f2fs_drop_inode() runs with I_SYNC set, it invokes f2fs_destroy_extent_node(), which iterates over the extent tree and frees nodes under et->lock. At the same time, a kworker performing writeback can call __writeback_single_inode → f2fs_outplace_write_data → f2fs_update_read_extent_cache → __update_extent_tree_range, which inserts new extent nodes into the same tree.

Because FI_NO_EXTENT is not set during destruction, the writeback path has no signal to stop inserting nodes. After the destroy loop exits with node_cnt == 0, the inserted node leaves node_cnt > 0, triggering f2fs_bug_on(node_cnt) and a kernel BUG.

Root Cause

The root cause is missing synchronization state between two concurrent code paths operating on the same extent tree. f2fs_destroy_extent_node() did not set FI_NO_EXTENT under et->lock, diverging from other callers such as __update_extent_tree_range and __drop_extent_tree. Additionally, __update_extent_tree_range() only checked FI_NO_EXTENT for the EX_READ extent type, leaving EX_BLOCK_AGE updates entirely unprotected against this class of race.

Attack Vector

Triggering the race requires concurrent filesystem activity producing inode eviction with I_SYNC set while writeback is updating extent caches on the same inode. Exploitation is local and likely requires the ability to generate sustained I/O on f2fs volumes. The practical impact is a kernel assertion failure resulting in denial of service. No memory corruption primitive has been documented in the available references.

No verified code examples are available. See the upstream commits referenced below for the precise patch and reproduction context.

Detection Methods for CVE-2026-46194

Indicators of Compromise

  • Kernel panic or BUG messages referencing __destroy_extent_node or f2fs_bug_on in dmesg or /var/log/kern.log
  • Unexpected system reboots correlated with heavy f2fs write activity
  • Stack traces showing f2fs_drop_inode and f2fs_outplace_write_data executing concurrently

Detection Strategies

  • Audit kernel logs for f2fs BUG_ON assertions following inode eviction events
  • Monitor running kernel versions across the fleet to identify systems lacking the upstream fix
  • Correlate filesystem error events with workloads producing simultaneous writeback and inode drops

Monitoring Recommendations

  • Centralize kernel log collection and alert on f2fs_bug_on or Oops patterns
  • Track f2fs-specific performance counters and inode cache eviction rates
  • Capture crash dumps via kdump for forensic analysis of kernel BUG events

How to Mitigate CVE-2026-46194

Immediate Actions Required

  • Identify systems running f2fs and inventory kernel versions in use
  • Apply the upstream stable kernel patches that introduce FI_NO_EXTENT under et->lock in __destroy_extent_node()
  • Schedule reboots on patched systems to activate the corrected kernel

Patch Information

The fix sets FI_NO_EXTENT under et->lock in __destroy_extent_node(), aligning it with __update_extent_tree_range and __drop_extent_tree. The patch also extends the FI_NO_EXTENT check to cover both EX_READ and EX_BLOCK_AGE extent tree types. Upstream commits are available at the Linux Kernel commit 0559a0e962aa, commit 42dd1c91f993, commit ab1eaf9d5c99, commit b0e4395870eb, and commit ed78aeebef05.

Workarounds

  • Migrate workloads off f2fs to ext4 or xfs where feasible until patches are deployed
  • Reduce concurrent heavy write workloads on f2fs volumes to lower the probability of the race triggering
  • Apply distribution stable kernel updates as soon as vendor backports become available
bash
# Verify kernel version and check for f2fs mounts
uname -r
mount | grep f2fs

# After patching, reboot to activate fixed kernel
sudo 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
  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update
  • Related CVEs
  • CVE-2026-46223: Linux Kernel Race Condition Vulnerability

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

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

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