Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-23168

CVE-2026-23168: Linux Kernel Race Condition Vulnerability

CVE-2026-23168 is a race condition flaw in Linux kernel's flexible proportions code that can cause deadlock in hardirq contexts. This post explains the technical details, affected versions, impact, and mitigation.

Published: February 20, 2026

CVE-2026-23168 Overview

CVE-2026-23168 is a race condition vulnerability in the Linux kernel's flexible proportions (flex_proportions) subsystem. The vulnerability exists in the fprop_new_period() function, which is not hardirq safe, leading to a potential deadlock scenario. This issue was reported through lockdep analysis, which detected a locking contention between softirq and hardirq contexts during writeback operations.

The race condition occurs when a timer fires and fprop_new_period() acquires a write lock on the sequence counter while in softirq context. If a hardirq is raised during this critical section, the interrupt handler may attempt to read from the same sequence counter, causing an indefinite loop due to encountering an odd sequence number.

Critical Impact

Systems utilizing FUSE filesystems or block devices with configured maximum writeback throughput fractions are particularly susceptible to this deadlock condition, potentially causing system hangs or unresponsive I/O operations.

Affected Products

  • Linux Kernel (multiple versions)
  • Systems using FUSE filesystems with configured maximum writeback fractions
  • Block device configurations utilizing flex_proportions for I/O scheduling

Discovery Timeline

  • 2026-02-14 - CVE-2026-23168 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2026-23168

Vulnerability Analysis

The vulnerability resides in the Linux kernel's flexible proportions code, specifically within the fprop_new_period() function. This function uses a sequence counter (seqcount) to coordinate access to period-related data structures. The core issue is that the write section of this sequence counter is not interrupt-safe (irqsafe), creating a window for deadlock when hardirqs can preempt softirq processing.

The problematic code path begins when run_timer_softirq invokes writeout_period(), which calls fprop_new_period(). This function acquires a write lock via write_seqcount_begin(&p->sequence). While holding this lock, if a hardirq is raised, the interrupt handler's code path through blk_mq_end_request() → blk_update_request() → ext4_end_bio() → folio_end_writeback() → __wb_writeout_add() → __fprop_add_percpu_max() may call fprop_fraction_percpu(), which attempts to read the sequence counter.

When read_seqcount_begin() encounters an odd sequence number (indicating an ongoing write), it loops indefinitely waiting for the write to complete—a write that cannot complete because the current hardirq context has preempted the softirq that holds the lock.

Root Cause

The root cause is the lack of interrupt protection around the sequence counter write section in fprop_new_period(). The seqcount implementation expects readers to retry when they detect an odd sequence number, but this assumption breaks down when a hardirq interrupts the writer and then attempts to read from the same counter, creating an unresolvable circular dependency.

This scenario is particularly common on systems configured with FUSE block device interfaces (bdis) that set a maximum fraction of writeout throughput, as this triggers the conditional path in __fprop_add_percpu_max() that requires reading the sequence counter.

Attack Vector

This vulnerability is a local denial of service (DoS) condition that can be triggered under specific workload patterns. The attack vector requires:

  1. A system with FUSE filesystems or block devices configured with maximum writeback throughput fractions
  2. High I/O workload that generates concurrent timer events and block device completions
  3. Precise timing where a hardirq fires during the critical section of fprop_new_period()

The vulnerability manifests through the kernel's timer and block I/O subsystems. When a timer callback executes writeout_period() in softirq context and a block I/O completion hardirq fires during the sequence counter's critical section, the system experiences a deadlock. The hardirq handler's call to fprop_fraction_percpu() enters an infinite loop waiting for the sequence counter to become even, while the softirq context cannot progress because it's preempted by the hardirq.

This race condition does not require direct attacker interaction beyond creating I/O pressure conditions that increase the probability of the timing collision.

Detection Methods for CVE-2026-23168

Indicators of Compromise

  • System lockups or hangs during heavy I/O workloads, particularly with FUSE filesystems
  • Kernel lockdep warnings referencing flex_proportions, fprop_new_period, or sequence counter deadlocks
  • Unresponsive processes blocked on I/O operations with no apparent progress

Detection Strategies

  • Enable CONFIG_PROVE_LOCKING (lockdep) in kernel configuration to detect this race condition proactively
  • Monitor system logs for lockdep splats or warnings related to flex_proportions or seqcount locking issues
  • Deploy kernel tracing to identify contention in fprop_new_period() and related writeback functions

Monitoring Recommendations

  • Configure system monitoring to alert on kernel soft lockups or hung task warnings
  • Monitor FUSE filesystem performance metrics for unexpected latency spikes or stalls
  • Implement watchdog timers to detect and recover from kernel deadlock conditions

How to Mitigate CVE-2026-23168

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix for making fprop_new_period() hardirq safe
  • Review system configurations for FUSE filesystems with custom maximum writeback fraction settings
  • Consider temporarily avoiding high-concurrency I/O workloads on affected systems until patched

Patch Information

The fix ensures that the write section of the sequence counter in fprop_new_period() is interrupt-safe by properly disabling interrupts during the critical section. Multiple kernel stable branches have received patches addressing this vulnerability:

  • Linux Kernel Commit 0acc9ba7
  • Linux Kernel Commit 78ede9eb
  • Linux Kernel Commit 884b2590
  • Linux Kernel Commit b91a8429
  • Linux Kernel Commit dd9e2f5b

Workarounds

  • Reduce I/O concurrency on systems with FUSE filesystems until patches can be applied
  • Avoid configuring maximum writeback throughput fractions on vulnerable kernels if possible
  • Implement process isolation to limit the impact of potential deadlocks to non-critical workloads
bash
# Check current kernel version
uname -r

# Verify if lockdep is enabled for detection
grep CONFIG_PROVE_LOCKING /boot/config-$(uname -r)

# Update kernel on Debian/Ubuntu systems
sudo apt update && sudo apt upgrade linux-image-generic

# Update kernel on RHEL/CentOS systems
sudo yum update kernel

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

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit Overview 1

  • Linux Kernel Commit Overview 2

  • Linux Kernel Commit Overview 3

  • Linux Kernel Commit Overview 4

  • Linux Kernel Commit Overview 5
  • Related CVEs
  • CVE-2026-31456: Linux Kernel Race Condition Vulnerability

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

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

  • CVE-2026-31436: Linux Kernel Race Condition Vulnerability
Default Legacy - Prefooter | 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
  • 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