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

CVE-2026-31563: Linux Kernel Race Condition Vulnerability

CVE-2026-31563 is a race condition vulnerability in the Linux Kernel's macb network driver that causes improper SKB freeing in IRQ-disabled contexts. This article covers technical details, affected versions, and mitigations.

Published: April 30, 2026

CVE-2026-31563 Overview

A race condition vulnerability exists in the Linux kernel's macb network driver related to improper handling of TX socket buffer (SKB) freeing operations. The vulnerability occurs when napi_consume_skb() is called in an IRQ-disabled context, which is not the intended usage of this function. This issue was introduced after commit 6bc8a5098bf4 ("net: macb: Fix tx_ptr_lock locking"), which changed TX SKB freeing to be performed with IRQs disabled.

Critical Impact

This vulnerability can cause kernel warnings and system instability on affected Linux systems using the macb network driver, potentially leading to denial of service conditions on embedded platforms like Xilinx ZynqMP.

Affected Products

  • Linux Kernel version 6.17
  • Linux Kernel versions 7.0-rc1 through 7.0-rc7
  • Systems using the macb network driver (commonly found on ARM-based embedded platforms)

Discovery Timeline

  • April 24, 2026 - CVE CVE-2026-31563 published to NVD
  • April 27, 2026 - Last updated in NVD database

Technical Details for CVE-2026-31563

Vulnerability Analysis

The vulnerability is a race condition in the Linux kernel's macb (Cadence Ethernet MAC) network driver. The root of the issue lies in the interaction between interrupt handling, locking mechanisms, and SKB memory management.

After commit 6bc8a5098bf4 modified the TX path locking behavior, the macb_tx_poll() function began freeing TX SKBs while holding a spinlock with IRQs disabled. This created a problematic situation where napi_consume_skb() was being invoked in an inappropriate context.

When napi_consume_skb() attempts to defer SKB freeing by calling skb_attempt_defer_free(), it may try to enable bottom halves via local_bh_enable(). However, this operation is invalid when hardirqs are already disabled, triggering a kernel warning at kernel/softirq.c:430 in __local_bh_enable_ip().

The call trace shows the problematic execution path: macb_tx_poll → napi_consume_skb → skb_attempt_defer_free → local_bh_enable → __local_bh_enable_ip, where the final function detects the invalid IRQ state and emits a warning.

Root Cause

The root cause is an API misuse where napi_consume_skb() was called in an IRQ-disabled context after the TX path locking changes. The napi_consume_skb() function has internal logic that may call local_bh_enable(), which is explicitly not allowed when hardirqs are disabled. The fix replaces napi_consume_skb() with dev_consume_skb_any(), which is designed to handle SKB freeing regardless of the current IRQ context.

Attack Vector

This vulnerability is triggered locally through normal network operations on systems using the macb network driver. While classified as a network attack vector due to the networking subsystem involvement, exploitation primarily requires the ability to generate network traffic that exercises the TX path of the affected driver.

An attacker with network access to an affected system could potentially:

  1. Send traffic patterns that maximize TX buffer consumption
  2. Trigger the race condition repeatedly to cause system instability
  3. Exploit the resulting kernel warnings to cause denial of service through log flooding or watchdog timeouts

The vulnerability primarily affects embedded systems using Cadence/Synopsys GEM Ethernet controllers, commonly found on platforms like Xilinx ZynqMP, Microchip SAMA5, and similar ARM-based SoCs.

Detection Methods for CVE-2026-31563

Indicators of Compromise

  • Kernel warning messages containing __local_bh_enable_ip+0x174/0x188 in system logs
  • Call traces showing macb_tx_poll → napi_consume_skb → skb_attempt_defer_free → local_bh_enable
  • System log entries indicating softirq/hardirq state violations with the message WARNING: kernel/softirq.c:430

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for warnings related to __local_bh_enable_ip and the macb driver
  • Implement alerting for unexpected kernel call traces involving the network subsystem and IRQ handling
  • Deploy kernel tracing tools to monitor for improper IRQ state transitions in the macb TX path

Monitoring Recommendations

  • Configure log aggregation to capture and alert on kernel warnings from affected systems
  • Use performance monitoring to detect unusual network driver behavior or increased system instability
  • Monitor for elevated kernel warning rates that may indicate exploitation attempts

How to Mitigate CVE-2026-31563

Immediate Actions Required

  • Apply the kernel patches from the stable kernel branches immediately on affected systems
  • Prioritize patching for systems using the macb network driver, particularly ARM-based embedded platforms
  • Consider temporarily reducing network load on critical affected systems until patches can be applied

Patch Information

The Linux kernel maintainers have released patches that replace napi_consume_skb() with dev_consume_skb_any() for freeing TX SKBs in the macb driver. This ensures proper SKB handling regardless of the IRQ context.

Multiple patch commits are available for different stable kernel branches:

  • Kernel Git Commit 647b8a2
  • Kernel Git Commit 78c8b09
  • Kernel Git Commit 92e7081
  • Kernel Git Commit 984350b
  • Kernel Git Commit ca4d05a
  • Kernel Git Commit f4bc913

Workarounds

  • If patching is not immediately possible, consider using an alternative network driver if available for your hardware
  • Reduce network traffic load to minimize the frequency of TX operations triggering the vulnerable code path
  • Monitor affected systems closely for kernel warnings and prepare for rapid response if instability occurs
bash
# Check if your system uses the macb driver
lsmod | grep macb

# Check current kernel version
uname -r

# Review kernel logs for related warnings
dmesg | grep -E "(macb|__local_bh_enable_ip|softirq)"

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

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo
  • Vendor Resources
  • Kernel Git Commit 647b8a2

  • Kernel Git Commit 78c8b09

  • Kernel Git Commit 92e7081

  • Kernel Git Commit 984350b

  • Kernel Git Commit ca4d05a

  • Kernel Git Commit f4bc913
  • Related CVEs
  • CVE-2026-31728: Linux Kernel Race Condition Vulnerability

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

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

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