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

CVE-2026-23368: Linux Kernel Race Condition Vulnerability

CVE-2026-23368 is a race condition vulnerability in the Linux kernel PHY LED trigger subsystem causing AB-BA deadlock. This article covers the technical details, affected versions, impact, and mitigation strategies.

Published: March 27, 2026

CVE-2026-23368 Overview

A deadlock vulnerability has been identified in the Linux kernel affecting the PHY LED trigger subsystem. The flaw occurs when both LEDS_TRIGGER_NETDEV and LED_TRIGGER_PHY kernel configuration options are enabled simultaneously. An AB-BA deadlock condition arises due to improper lock ordering between triggers_list_lock and rtnl_mutex during PHY attachment and LED trigger activation operations.

Critical Impact

This vulnerability can cause system hangs and denial of service conditions when LED triggers are registered during PHY device attachment, potentially affecting network availability on affected Linux systems.

Affected Products

  • Linux kernel with LED_TRIGGER_PHY enabled
  • Linux kernel with LEDS_TRIGGER_NETDEV enabled
  • Systems using MediaTek network drivers (mtk_open)

Discovery Timeline

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

Technical Details for CVE-2026-23368

Vulnerability Analysis

The vulnerability represents a classic AB-BA deadlock scenario in the Linux kernel's network PHY subsystem. The deadlock occurs due to inconsistent lock acquisition ordering between two different code paths:

In the first path, LED_TRIGGER_PHY registers LED triggers during phy_attach_direct() while already holding the rtnl_mutex (acquired via dev_ioctl()). The code then attempts to acquire triggers_list_lock through led_trigger_register().

In the second path, LEDS_TRIGGER_NETDEV activation first acquires triggers_list_lock via led_trigger_set(), then attempts to acquire rtnl_mutex through register_netdevice_notifier() called from netdev_trig_activate().

This creates a circular dependency where each path holds one lock while waiting for the other, resulting in a permanent deadlock condition that can freeze the affected system.

Root Cause

The root cause is the placement of phy_led_triggers_register() within the phy_attach_direct() function, which executes while the RTNL lock is held. The PHY LED trigger registration does not actually require RTNL protection as it does not interact with the network stack in a way that needs this synchronization. Additionally, there is no requirement for the PHY to be attached to a MAC controller before registering triggers, as the triggers only utilize phydev state information.

Attack Vector

The deadlock can be triggered through normal system operation when:

  1. A user or application enables the netdev LED trigger on any LED device (Path B - acquires triggers_list_lock first)
  2. Simultaneously, a network interface is being brought up or a PHY device is being attached (Path A - acquires rtnl_mutex first)

This is not a remotely exploitable vulnerability but represents a local denial of service condition that can occur during normal system operation. The deadlock manifests when network device ioctl operations and LED trigger sysfs writes occur concurrently.

The kernel stack traces reveal the deadlock occurring through the mtk_open() function in the MediaTek ethernet driver, though any driver using phylink_fwnode_phy_connect() with PHY LED triggers enabled would be susceptible.

Detection Methods for CVE-2026-23368

Indicators of Compromise

  • System becomes unresponsive during network interface initialization
  • Kernel log messages showing hung task warnings related to led_trigger_register or phy_attach_direct
  • Processes blocked in D (uninterruptible sleep) state waiting on rtnl_mutex or triggers_list_lock
  • Network interfaces failing to come up with extended timeouts

Detection Strategies

  • Monitor system logs for hung task warnings mentioning PHY or LED subsystems
  • Use lockdep kernel debugging feature to detect lock ordering violations
  • Monitor /proc/lockdep_chains for circular lock dependencies
  • Deploy kernel probes on led_trigger_register() and phy_led_triggers_register() to detect contention

Monitoring Recommendations

  • Enable CONFIG_LOCKDEP in development environments to proactively detect lock ordering issues
  • Monitor for extended D-state processes using tools like ps or process accounting
  • Implement watchdog monitoring for network interface bring-up operations
  • Review kernel logs regularly for INFO: task blocked messages

How to Mitigate CVE-2026-23368

Immediate Actions Required

  • Apply the kernel patches from the stable kernel tree
  • Disable LED_TRIGGER_PHY configuration option if PHY LED triggers are not required
  • Avoid concurrent LED trigger configuration changes during network interface operations
  • Consider temporarily disabling LEDS_TRIGGER_NETDEV until patches are applied

Patch Information

The Linux kernel development team has resolved this vulnerability by moving the phy_led_triggers_register() call to the PHY probe and release functions, which do not hold the RTNL lock. Multiple patch commits have been released across stable kernel branches:

  • Commit 241cd64cf2e3
  • Commit 2764dcb3c35d
  • Commit c33523b8fd2d
  • Commit c6ffc2d2338d
  • Commit c8dbdc6e380e
  • Commit cde2d0b5ab5d

Workarounds

  • Disable PHY LED triggers by setting CONFIG_LED_TRIGGER_PHY=n in kernel configuration
  • Serialize network interface operations and LED trigger configuration changes
  • Use udev rules to delay LED trigger configuration until after network initialization completes
bash
# Configuration example
# Disable PHY LED triggers in kernel config
echo "CONFIG_LED_TRIGGER_PHY=n" >> /path/to/kernel/.config

# Alternatively, prevent concurrent access via systemd ordering
# /etc/systemd/system/network-led.service.d/override.conf
# [Unit]
# After=network.target

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 Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

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

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

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

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