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
    • 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-23356

CVE-2026-23356: Linux Kernel Race Condition Vulnerability

CVE-2026-23356 is a race condition vulnerability in the Linux kernel's DRBD module that affects activity log handling and could lead to system crashes. This article covers technical details, impact, and mitigation.

Published: March 27, 2026

CVE-2026-23356 Overview

CVE-2026-23356 is a race condition vulnerability in the Linux kernel's DRBD (Distributed Replicated Block Device) subsystem. The vulnerability exists in the drbd_al_begin_io_nonblock() function, where a logic bug allows operations to proceed even when lc_get_cumulative() fails due to timing issues with lc_try_lock() from other code paths. This results in the code making incorrect assumptions about activity log extent references, potentially leading to kernel crashes and data integrity issues during active resync operations.

Critical Impact

This vulnerability can cause kernel crashes through a BUG_ON(refcnt == 0) trigger in lc_put(), and may compromise the mutual exclusivity guarantees between resync and application I/O operations, potentially leading to data corruption or loss.

Affected Products

  • Linux Kernel (versions utilizing DRBD subsystem)
  • Systems running DRBD-based distributed storage configurations
  • High-availability storage clusters using DRBD replication

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23356 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23356

Vulnerability Analysis

The vulnerability stems from a race condition in the DRBD activity log management code. When drbd_al_begin_io_nonblock() checks whether lc_get_cumulative() should succeed while holding the device->al_lock spinlock, another code path may concurrently invoke lc_try_lock() with unfortunate timing. When this race occurs, the function logs a "LOGIC BUG" message but fails to return an error code, allowing subsequent code to proceed with invalid assumptions.

The consequences of this logic bug are twofold. First, during an active resync operation, the mutual exclusivity between resync operations and application I/O is no longer guaranteed, which can lead to data integrity issues. Second, when the affected request completes, it attempts to release activity log references it never actually acquired, triggering a BUG_ON(refcnt == 0) assertion in lc_put() that crashes the kernel.

Root Cause

The root cause is a failure to properly handle a race condition in the locking mechanism. The code optimistically assumed that if certain conditions appeared favorable, the lc_get_cumulative() operation would succeed. However, the lc_try_lock() call from another execution context could invalidate this assumption between the check and the actual operation—a classic time-of-check time-of-use (TOCTOU) vulnerability pattern.

The fix addresses this by:

  1. Not attempting to predict whether operations will succeed based on pre-conditions
  2. Handling both e == NULL and e->refcnt == 0 conditions gracefully in al_complete_io()
  3. Properly tracking "partially in activity log" states for requests crossing extent boundaries
  4. Returning appropriate error codes from drbd_al_begin_io_nonblock() when operations fail, allowing later retry attempts to resume from where they left off

Attack Vector

This vulnerability requires local access to a system running the affected Linux kernel with DRBD configured. The attack vector involves triggering the race condition between concurrent I/O operations and resync processes. While exploitation requires specific timing conditions, an attacker with local access could potentially:

  1. Craft I/O patterns that increase the likelihood of the race condition
  2. Trigger repeated attempts until the race is won
  3. Cause kernel crashes resulting in denial of service
  4. Potentially corrupt data during DRBD replication operations

The vulnerability is most exploitable in high-load scenarios where DRBD is actively resyncing data while application I/O continues.

Detection Methods for CVE-2026-23356

Indicators of Compromise

  • Kernel log messages containing "LOGIC BUG for enr=" indicating the race condition has been triggered
  • Kernel panic or crash dumps referencing lc_put() with a BUG_ON assertion failure
  • Unexpected DRBD resync failures or data inconsistencies between nodes
  • System instability during DRBD replication operations under heavy I/O load

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for "LOGIC BUG" messages from the DRBD subsystem
  • Implement crash dump analysis to identify BUG_ON(refcnt == 0) triggers in lc_put()
  • Deploy kernel tracing (ftrace, eBPF) to monitor drbd_al_begin_io_nonblock() function calls and return values
  • Configure alerting for unexpected DRBD state changes or synchronization failures

Monitoring Recommendations

  • Enable DRBD-specific logging at debug level during high-availability operations
  • Monitor system stability metrics and correlate with DRBD activity periods
  • Implement automated kernel log parsing for DRBD-related anomalies
  • Track DRBD synchronization completion rates and durations for deviations from baseline

How to Mitigate CVE-2026-23356

Immediate Actions Required

  • Apply the kernel patches from the official kernel git repository immediately
  • Reduce I/O load on affected systems during DRBD resync operations as a temporary measure
  • Schedule maintenance windows to apply kernel updates on DRBD cluster nodes
  • Review DRBD cluster configurations and consider temporary failover arrangements during patching

Patch Information

The Linux kernel maintainers have released patches addressing this vulnerability across multiple stable kernel branches. The fix modifies drbd_al_begin_io_nonblock() to properly handle failure cases and tracks partial activity log states. Patches are available from the following kernel git commits:

  • Kernel Git Commit #7752569
  • Kernel Git Commit #ab14036
  • Kernel Git Commit #d1ef3ae
  • Kernel Git Commit #e91d8d6
  • Kernel Git Commit #eef1390
  • Kernel Git Commit #f558e54

Workarounds

  • Temporarily reduce concurrent I/O operations during DRBD resync to lower race condition probability
  • Consider pausing non-critical application I/O during scheduled DRBD synchronization windows
  • Implement I/O throttling mechanisms to reduce contention on DRBD-managed devices
  • Configure automatic failover in DRBD clusters to minimize service disruption from potential crashes
bash
# Check current kernel version for DRBD vulnerability
uname -r

# Monitor for DRBD-related kernel log messages
dmesg | grep -i "drbd\|LOGIC BUG\|lc_put"

# Check DRBD status on affected systems
drbdadm status

# After patching, verify the new kernel is loaded
cat /proc/version

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
  • Kernel Git Commit #7752569

  • Kernel Git Commit #ab14036

  • Kernel Git Commit #d1ef3ae

  • Kernel Git Commit #e91d8d6

  • Kernel Git Commit #eef1390

  • Kernel Git Commit #f558e54
  • Related CVEs
  • CVE-2026-23411: Linux Kernel Race Condition Vulnerability

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

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

  • CVE-2026-23393: Linux Kernel Race Condition 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
  • 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