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

CVE-2026-43041: Linux Kernel Information Disclosure Flaw

CVE-2026-43041 is an information disclosure vulnerability in the Linux kernel's qrtr component caused by a memory leak in radix_tree handling. This article covers the technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-43041 Overview

CVE-2026-43041 is a memory leak vulnerability in the Linux kernel's Qualcomm IPC Router (net/qrtr) subsystem. The flaw resides in the qrtr_tx_flow data structure, which previously used the deprecated radix_tree API. When __radix_tree_create() allocates intermediate nodes and a subsequent allocation fails, already-linked internal nodes remain in the tree without a corresponding leaf entry. These orphaned nodes are never reclaimed because radix_tree_for_each_slot() only iterates over slots containing leaf values. The fix migrates qrtr_tx_flow from radix_tree to xarray, allowing xa_destroy() to properly free internal nodes when the qrtr_node is released.

Critical Impact

Repeated allocation failures on systems using the qrtr networking stack cause unbounded kernel memory consumption that cannot be reclaimed without a reboot.

Affected Products

  • Linux kernel branches containing the qrtr_tx_flowradix_tree implementation in net/qrtr
  • Devices and platforms relying on Qualcomm IPC Router (QRTR) sockets, commonly Qualcomm-based hardware
  • Kernel builds prior to the patches listed in the kernel.org stable commits

Discovery Timeline

  • 2026-05-01 - CVE-2026-43041 published to NVD
  • 2026-05-01 - Last updated in NVD database

Technical Details for CVE-2026-43041

Vulnerability Analysis

The Linux kernel's net/qrtr module uses qrtr_tx_flow to track flow-control state for QRTR socket transmissions. The structure was implemented using the legacy radix_tree API. The __radix_tree_create() function builds the tree by allocating and linking intermediate nodes one level at a time. If any allocation later in the chain fails, earlier intermediate nodes remain attached to the tree.

These orphaned nodes hold no leaf data but consume kernel memory. The standard cleanup iterator radix_tree_for_each_slot() walks only slots that contain leaf values, so the empty internal nodes are skipped during teardown. When the owning qrtr_node is destroyed, the orphaned memory is leaked permanently.

Root Cause

The root cause is the lifecycle mismatch between radix_tree internal node allocation and its cleanup iterator. Partial-failure paths in __radix_tree_create() leave structural nodes in the tree that have no leaf and therefore are invisible to the slot-iteration cleanup. The radix_tree API has been deprecated in favor of xarray, which exposes xa_destroy() to free all internal nodes regardless of leaf presence.

Attack Vector

The leak triggers under conditions that cause memory allocation failures during QRTR transmit-flow tracking. An adversary or workload able to repeatedly open QRTR sockets and induce allocation pressure can amplify the leak, leading to kernel memory exhaustion and denial of service. Exploitation requires the ability to interact with the QRTR subsystem, typically available locally on Qualcomm-based Linux platforms.

No public proof-of-concept exploit code is available. The vulnerability mechanism is documented in the upstream patch series referenced in the kernel mailing list discussion.

Detection Methods for CVE-2026-43041

Indicators of Compromise

  • Steadily increasing kernel slab memory usage attributable to radix_tree_node allocations on systems running QRTR workloads
  • dmesg entries indicating allocation failures originating from net/qrtr code paths
  • Long-running hosts using Qualcomm IPC Router showing unexplained kernel memory pressure that persists across QRTR session teardowns

Detection Strategies

  • Monitor /proc/slabinfo for sustained growth in radix_tree_node counts on kernels predating the fix
  • Track kernel running version against the fixed commits (0fda873, 2428083, 4b75ffa, 5d2249e, 6940290, f2664bc, f2dd9aa, ff134cc) using configuration management tooling
  • Use kernel memory profilers such as kmemleak to identify orphaned radix_tree nodes referenced from qrtr_node structures

Monitoring Recommendations

  • Alert on abnormal growth of kernel non-pageable memory on Qualcomm-based Linux endpoints and embedded devices
  • Capture and review kernel logs for repeated -ENOMEM events emitted from net/qrtr functions
  • Inventory affected kernel versions across the fleet and prioritize Qualcomm-platform devices that depend on QRTR sockets

How to Mitigate CVE-2026-43041

Immediate Actions Required

  • Identify Linux systems running QRTR-dependent workloads, particularly Qualcomm-based hardware and modems
  • Apply the upstream stable kernel patches that replace qrtr_tx_flow's radix_tree with an xarray
  • Reboot affected hosts after patching to release any memory already leaked by the prior implementation

Patch Information

The fix replaces the radix_tree backing of qrtr_tx_flow with an xarray, ensuring xa_destroy() reclaims all internal nodes when a qrtr_node is released. The patch is distributed across multiple stable branches via the following commits: 0fda873, 2428083, 4b75ffa, 5d2249e, 6940290, f2664bc, f2dd9aa, and ff134cc.

Workarounds

  • Where QRTR is not required, unload or disable the qrtr kernel module to remove the affected code path
  • Restrict local access to QRTR sockets so only trusted processes can drive transmit-flow allocations
  • Schedule periodic reboots on long-running, unpatched hosts to reclaim leaked kernel memory until patches can be deployed
bash
# Check if the qrtr module is loaded and disable when not required
lsmod | grep qrtr
sudo modprobe -r qrtr_smd qrtr_tun qrtr
echo "blacklist qrtr" | sudo tee /etc/modprobe.d/blacklist-qrtr.conf

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Patch Commit 0fda873

  • Kernel Patch Commit 2428083

  • Kernel Patch Commit 4b75ffa

  • Kernel Patch Commit 5d2249e

  • Kernel Patch Commit 6940290

  • Kernel Patch Commit f2664bc

  • Kernel Patch Commit f2dd9aa

  • Kernel Patch Commit ff134cc
  • Related CVEs
  • CVE-2026-31708: Linux Kernel Information Disclosure Flaw

  • CVE-2026-43088: Linux Kernel Information Disclosure Flaw

  • CVE-2026-43085: Linux Kernel Information Disclosure Flaw

  • CVE-2026-43089: Linux Kernel Information Disclosure 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