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

CVE-2026-46201: Linux Kernel Privilege Escalation Flaw

CVE-2026-46201 is a privilege escalation vulnerability in the Linux kernel affecting the drm/xe driver with a dma-buf attachment leak. This article covers technical details, affected versions, impact, and mitigation.

Published: May 28, 2026

CVE-2026-46201 Overview

CVE-2026-46201 is a resource leak vulnerability in the Linux kernel's Intel Xe Direct Rendering Manager (DRM) driver. The issue resides in the xe_gem_prime_import() function, where a failure path in xe_dma_buf_init_obj() does not detach a previously created dma-buf attachment. The dynamic attachment acquired via dma_buf_dynamic_attach() is leaked when object initialization fails, leading to resource accumulation in the kernel's graphics buffer-sharing subsystem.

Critical Impact

Repeated triggering of the failure path leaks dma-buf attachments in kernel memory, potentially leading to resource exhaustion and degraded system stability on hosts running the affected drm/xe driver.

Affected Products

  • Linux kernel drm/xe driver (Intel Xe graphics)
  • Stable kernel branches receiving the cherry-pick from commit a828eb185aac41800df8eae4b60501ccc0dbbe51
  • Systems using xe_gem_prime_import() for dma-buf object import

Discovery Timeline

  • 2026-05-28 - CVE-2026-46201 published to NVD
  • 2026-05-28 - Last updated in NVD database

Technical Details for CVE-2026-46201

Vulnerability Analysis

The vulnerability is a memory/resource leak [CWE-401-class] in the Intel Xe DRM driver's PRIME import path. PRIME is the DRM subsystem mechanism for sharing GEM (Graphics Execution Manager) buffer objects between drivers using dma-buf file descriptors. When user space imports a dma-buf into the Xe driver, xe_gem_prime_import() calls dma_buf_dynamic_attach() to register the driver as a dynamic importer of the buffer.

If the subsequent call to xe_dma_buf_init_obj() fails, the function returns an error without invoking dma_buf_detach(). The dynamic attachment remains registered against the exporter, holding references and consuming kernel resources. The fix adds an explicit dma_buf_detach() call before the error return path.

The patch notes that a simple goto out_err cleanup label cannot be used because xe_dma_buf_init_obj() already frees the buffer object (bo) on failure. Using a shared cleanup label would result in a double-free of the GEM object.

Root Cause

The root cause is missing cleanup of an acquired resource along an error path. The function acquired the attachment via dma_buf_dynamic_attach() but failed to release it with the paired dma_buf_detach() call when object initialization downstream returned an error.

Attack Vector

This is a local kernel-side resource leak. Triggering the leak requires the ability to invoke the GEM PRIME import ioctl against the Xe driver and reach the failure condition in xe_dma_buf_init_obj(). The bug is reachable from local user space with access to the DRM render node. There is no indication of remote exploitation, code execution, or privilege escalation tied to this CVE.

The vulnerability is described by the upstream commits. See the references for technical details: Kernel Git Commit 0afa8b1, Kernel Git Commit 111ab67, Kernel Git Commit d394669, and Kernel Git Commit eea1e10.

Detection Methods for CVE-2026-46201

Indicators of Compromise

  • Growing kernel memory usage attributable to dma-buf attachments without corresponding free operations.
  • Repeated failures of PRIME import ioctls (DRM_IOCTL_PRIME_FD_TO_HANDLE) against the Xe driver from user-space graphics clients.
  • Long-running workloads on Intel Xe hardware showing unexplained kmalloc growth in dma-buf-related slabs.

Detection Strategies

  • Compare the running kernel version against the fixed commits listed in the kernel.org stable tree references.
  • Audit kernel logs (dmesg) for repeated errors originating from xe_gem_prime_import or xe_dma_buf_init_obj.
  • Use slabtop and /proc/slabinfo to track growth in dma-buf and DRM-related slab caches over time.

Monitoring Recommendations

  • Monitor host memory trends on systems running Intel Xe GPUs and alert on sustained kernel slab growth.
  • Track DRM render node access by non-graphics workloads, which can indicate abnormal use of GEM PRIME import paths.
  • Inventory deployed kernel versions across the fleet and flag hosts running unpatched drm/xe builds.

How to Mitigate CVE-2026-46201

Immediate Actions Required

  • Identify all hosts running Linux kernels that include the Intel Xe DRM driver and verify whether they include the fix.
  • Apply the vendor-supplied kernel update from your Linux distribution as soon as it incorporates the upstream stable patches.
  • Restrict access to /dev/dri/renderD* nodes to trusted user accounts and graphics processes to limit who can trigger the import path.

Patch Information

The fix adds an explicit dma_buf_detach() call before the error return in xe_gem_prime_import(). It was backported to stable kernel branches via commits 0afa8b1ef582ecf6fb04097fd356f8741e5005ed, 111ab678471bf1f90d078d5513bb086b70596c3c, d394669e194936d7ce15284a24a5ae334c4c5b74, and eea1e10f8d99c0f04deef707c99705b94bba3b78, cherry-picked from upstream commit a828eb185aac41800df8eae4b60501ccc0dbbe51. Consult your distribution's security tracker for the corresponding package version.

Workarounds

  • If patching is not immediately possible, restrict access to the Xe DRM render node using filesystem permissions and udev rules.
  • Reboot affected hosts periodically to reclaim leaked attachments until the patched kernel is deployed.
  • On systems that do not require Intel Xe GPU acceleration, consider blacklisting the xe kernel module.
bash
# Verify running kernel and module status
uname -r
lsmod | grep -E '^xe '

# Restrict DRM render node access to the 'render' group only
ls -l /dev/dri/renderD*
chgrp render /dev/dri/renderD*
chmod 0660 /dev/dri/renderD*

# Optionally blacklist the xe module if not required
echo 'blacklist xe' | sudo tee /etc/modprobe.d/blacklist-xe.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
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 0afa8b1

  • Kernel Git Commit 111ab67

  • Kernel Git Commit d394669

  • Kernel Git Commit eea1e10
  • Related CVEs
  • CVE-2026-46228: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-46226: Linux Kernel SPI Privilege Escalation

  • CVE-2026-46225: Linux Kernel RSPI Privilege Escalation

  • CVE-2026-46205: Linux Kernel Privilege Escalation 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