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

CVE-2026-43064: Linux Kernel Workqueue Release Flaw

CVE-2026-43064 is a resource management flaw in the Linux kernel's dmaengine subsystem where workqueues aren't properly released. This article covers technical details, affected versions, impact, and mitigation.

Published: May 7, 2026

CVE-2026-43064 Overview

CVE-2026-43064 is a resource management flaw in the Linux kernel's idxd dmaengine driver. The driver supports Intel Data Streaming Accelerator (DSA) and Intel In-Memory Analytics Accelerator (IAA) devices. The workqueue associated with a DSA or IAA device is not released when the device object is freed. Each release path therefore leaks the kernel workqueue allocation, causing unbounded resource consumption over repeated bind and unbind cycles.

Critical Impact

Repeated DSA/IAA device release operations leak kernel workqueues, leading to memory exhaustion and degraded system stability on hosts that use Intel accelerator hardware.

Affected Products

  • Linux kernel builds with the idxd dmaengine driver enabled (CONFIG_INTEL_IDXD)
  • Systems using Intel Data Streaming Accelerator (DSA) hardware
  • Systems using Intel In-Memory Analytics Accelerator (IAA) hardware

Discovery Timeline

  • 2026-05-05 - CVE-2026-43064 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43064

Vulnerability Analysis

The idxd driver in drivers/dma/idxd/ manages Intel DSA and IAA accelerators. Each work queue (wq) associated with these devices has a backing kernel workqueue created during configuration. When the device object reaches its .release() callback, the driver frees the surrounding structures but does not call destroy_workqueue() on the associated kernel workqueue. The workqueue allocation, including its worker pool references and per-CPU data, persists in kernel memory after the parent object is gone.

Repeated cycles of configuring, enabling, disabling, and releasing wqs accumulate orphaned workqueues. This produces a slow but deterministic kernel memory leak. The flaw is a classic resource cleanup bug rather than an exploitable memory corruption primitive, and it requires local privileges to manipulate the accelerator devices.

Root Cause

The root cause is missing teardown logic in the device release path. The driver allocates a workqueue during initialization but the matching destroy_workqueue() call was absent from the .release() handler. The fix adds the release call so the workqueue is destroyed in lockstep with the parent object, restoring symmetric allocation and free semantics.

Attack Vector

Exploitation requires local access and the ability to bind, configure, or unbind idxd devices, which is normally restricted to privileged users or the accel-config tooling. A user with these privileges who repeatedly cycles wq state can exhaust kernel memory and degrade host availability. The vulnerability does not provide code execution or privilege escalation. Refer to the upstream commits for technical detail, including Kernel Git Commit 2bb9e9e and Kernel Git Commit fd4cb61.

Detection Methods for CVE-2026-43064

Indicators of Compromise

  • Steady growth of kernel Slab and KernelStack values in /proc/meminfo on hosts with DSA or IAA hardware
  • Increasing count of kworker threads or workqueue entries in /sys/kernel/debug/workqueue/ over time
  • Repeated idxd bind/unbind events in dmesg correlated with rising kernel memory consumption

Detection Strategies

  • Audit kernel package versions across the fleet and flag hosts running unpatched idxd builds with DSA or IAA devices present in lspci output
  • Track long-term trends in kernel memory utilization on accelerator-equipped hosts and alert on sustained upward drift without a corresponding workload change
  • Inspect /sys/bus/dsa/devices/ and /sys/bus/iax/devices/ lifecycle events through audit logging to detect frequent reconfiguration of wqs

Monitoring Recommendations

  • Forward kernel memory metrics and dmesg logs to a centralized analytics platform for longitudinal analysis
  • Build dashboards that correlate idxd device state changes with workqueue counts and slab growth
  • Alert when host uptime combined with kernel memory growth exceeds an established baseline for accelerator hosts

How to Mitigate CVE-2026-43064

Immediate Actions Required

  • Apply the upstream stable kernel updates that include the idxd release-path fix to all hosts using DSA or IAA hardware
  • Reboot patched hosts to clear previously leaked workqueues from kernel memory
  • Restrict access to accel-config and idxd sysfs interfaces to administrators who require accelerator management

Patch Information

The fix adds the missing workqueue teardown to the idxd device .release() path. It has been backported across multiple stable trees. Reference the upstream commits: Kernel Git Commit 3d33de3, Kernel Git Commit 958e965, Kernel Git Commit d02c24a, and Kernel Git Commit fc34f19. Distribution-specific advisories from Red Hat, SUSE, Debian, and Ubuntu typically follow the upstream stable releases.

Workarounds

  • Avoid repeated bind/unbind and reconfiguration cycles of DSA and IAA wqs on unpatched hosts
  • Schedule periodic reboots on long-running accelerator hosts to release accumulated kernel workqueue allocations
  • Disable the idxd driver via module blacklist on systems that do not require DSA or IAA acceleration
bash
# Blacklist the idxd driver on systems that do not require DSA/IAA
echo 'blacklist idxd' | sudo tee /etc/modprobe.d/blacklist-idxd.conf
sudo update-initramfs -u

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 2bb9e9e

  • Kernel Git Commit 3d33de3

  • Kernel Git Commit 958e965

  • Kernel Git Commit d02c24a

  • Kernel Git Commit fc34f19

  • Kernel Git Commit fd4cb61
  • Related CVEs
  • CVE-2026-46239: Linux Kernel OV5647 PM Refcount Leak

  • CVE-2026-46235: Linux Kernel saa7164 Memory Vulnerability

  • CVE-2026-46230: Linux Kernel AMDGPU VCN3 OOB Vulnerability

  • CVE-2026-46224: Linux Kernel DRM/XE Memory Leak Bug
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