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

CVE-2026-46030: Linux Kernel Information Disclosure Flaw

CVE-2026-46030 is an information disclosure vulnerability in the Linux kernel EDAC/versalnet component caused by a device_node memory leak. This article covers the technical details, affected systems, and mitigation.

Published: May 28, 2026

CVE-2026-46030 Overview

CVE-2026-46030 is a memory leak vulnerability in the Linux kernel's EDAC (Error Detection And Correction) subsystem, specifically in the versalnet driver. The flaw resides in the mc_probe() function, where of_parse_phandle() returns a device_node reference that the original code never released. The r5_core_node variable remained unfreed on every exit path, leaking kernel memory each time the probe function executed. The fix applies the automatic cleanup attribute __free(device_node), which guarantees of_node_put() is called when the variable goes out of scope.

Critical Impact

Repeated invocation of the affected probe path can exhaust kernel memory over time, degrading system stability on AMD Versal NET platforms running affected Linux kernel builds.

Affected Products

  • Linux kernel builds containing the EDAC versalnet driver prior to the referenced fix commits
  • Stable kernel branches receiving backports identified by commits 17e1369, 5c709b3, and b6e6135
  • Systems based on AMD Versal NET adaptive SoCs using the EDAC memory controller driver

Discovery Timeline

  • 2026-05-27 - CVE CVE-2026-46030 published to NVD
  • 2026-05-27 - Last updated in NVD database

Technical Details for CVE-2026-46030

Vulnerability Analysis

The vulnerability is a kernel memory leak [CWE-401] in the EDAC versalnet memory controller driver. The mc_probe() function calls of_parse_phandle() to obtain a reference to the r5_core_node device tree node. According to the Linux device tree API contract, every device_node reference acquired via of_parse_phandle() must be released by a matching call to of_node_put(). The original implementation omitted this release call on every exit path, including both success and error returns.

Each probe invocation therefore increments the reference count on the corresponding device tree node without a counterbalancing decrement. The node and its associated kernel structures remain pinned in memory until the system reboots. While a single leak is small, repeated probe events — for example through driver reload cycles or hotplug operations — accumulate and waste kernel slab memory.

The maintainers fixed the issue by declaring the variable with the scope-based cleanup attribute __free(device_node). The compiler now emits an automatic of_node_put() call when the variable leaves scope, eliminating the leak on every return path without manual goto-based cleanup.

Root Cause

The root cause is missing reference counting hygiene. The of_parse_phandle() helper transfers ownership of a reference to the caller, but the original mc_probe() implementation treated the returned pointer as a borrowed reference. No of_node_put() call existed on any control flow path through the function.

Attack Vector

This is a local resource management defect rather than a directly exploitable security flaw. Triggering the leak requires the affected versalnet EDAC driver to be probed on hardware that matches its device tree binding. An unprivileged remote attacker cannot reach this code path. The vulnerability is described in prose only because no public proof-of-concept exists, and the upstream commits referenced in the Kernel Git Commit 17e1369, Kernel Git Commit 5c709b3, and Kernel Git Commit b6e6135 provide the authoritative technical detail.

Detection Methods for CVE-2026-46030

Indicators of Compromise

  • Growing kernel slab usage attributable to kmalloc-* caches associated with device tree node allocations on AMD Versal NET systems.
  • Repeated EDAC versalnet probe messages in dmesg correlated with rising Slab values in /proc/meminfo.

Detection Strategies

  • Audit running kernel versions against the patched commit hashes 17e1369, 5c709b3, and b6e6135 to identify unpatched hosts.
  • Use kmemleak (CONFIG_DEBUG_KMEMLEAK=y) on test systems to confirm leaked allocations originating from of_parse_phandle() within mc_probe().
  • Track Slab and SReclaimable trends in /proc/meminfo over driver reload cycles on Versal NET hardware.

Monitoring Recommendations

  • Forward kernel logs and memory telemetry from Linux fleets to a centralized analytics platform for long-term trend analysis.
  • Alert on sustained kernel memory growth on embedded and SoC platforms where the EDAC subsystem loads at boot.
  • Include kernel patch level in asset inventory so out-of-date builds carrying this fix gap are visible to security operations.

How to Mitigate CVE-2026-46030

Immediate Actions Required

  • Upgrade affected Linux kernels to a version that includes commits 17e136993b2b, 5c709b376460, or b6e61356ad24 from the upstream stable tree.
  • Identify hosts running the EDAC versalnet driver by inspecting loaded modules with lsmod | grep versalnet and prioritize their patching.
  • Schedule reboots after kernel package updates to ensure the patched driver is active in memory.

Patch Information

The fix is delivered through three upstream stable kernel commits: Kernel Git Commit 17e1369, Kernel Git Commit 5c709b3, and Kernel Git Commit b6e6135. The patches replace the manually managed device_node reference with the scope-based __free(device_node) cleanup attribute, ensuring of_node_put() is invoked on every exit path from mc_probe(). Apply distribution-provided kernel updates that incorporate these commits.

Workarounds

  • Blacklist the versalnet_edac module on systems where EDAC functionality is not required, preventing the leaking probe path from executing.
  • Avoid repeated driver unload and reload cycles on affected hardware until patched kernels are deployed, limiting accumulation of leaked references.
bash
# Configuration example: blacklist the affected EDAC driver until patched
echo "blacklist versalnet_edac" | sudo tee /etc/modprobe.d/blacklist-versalnet-edac.conf
sudo update-initramfs -u
# Verify the patched commit is present in the running kernel source tree
git log --oneline | grep -E "17e1369|5c709b3|b6e6135"

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

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 17e1369

  • Kernel Git Commit 5c709b3

  • Kernel Git Commit b6e6135
  • Related CVEs
  • CVE-2026-46229: Linux Kernel Information Disclosure Flaw

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

  • CVE-2026-46211: Linux Kernel Information Disclosure Bug

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