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

CVE-2026-31390: Linux Kernel Memory Leak Vulnerability

CVE-2026-31390 is a memory leak vulnerability in the Linux kernel's drm/xe driver that can cause resource exhaustion. This article covers the technical details, affected versions, impact, and mitigation strategies.

Published: April 10, 2026

CVE-2026-31390 Overview

A memory leak vulnerability has been identified in the Linux kernel's Direct Rendering Manager (DRM) subsystem, specifically within the Intel Xe graphics driver. The vulnerability occurs in the xe_vm_madvise_ioctl function when the check_bo_args_are_sane() validation fails, causing allocated resources to not be properly freed. This results in a memory leak that could lead to resource exhaustion over time.

Critical Impact

Repeated triggering of this vulnerability through failed validation attempts could lead to kernel memory exhaustion, potentially causing system instability or denial of service conditions.

Affected Products

  • Linux Kernel with Intel Xe DRM driver
  • Systems utilizing Intel discrete graphics with the Xe driver
  • Linux distributions shipping affected kernel versions

Discovery Timeline

  • 2026-04-03 - CVE CVE-2026-31390 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-31390

Vulnerability Analysis

This vulnerability is classified as a Memory Leak within the Linux kernel's DRM subsystem. The issue resides in the xe_vm_madvise_ioctl function, which handles memory advice operations for virtual memory management in the Intel Xe graphics driver. When user-supplied buffer object arguments fail the check_bo_args_are_sane() validation, the function's error handling path does not properly release previously allocated virtual memory area (VMA) resources before returning.

The lack of proper cleanup in this specific error path means that each failed ioctl call with invalid arguments will leak kernel memory. While individual leaks may be small, an attacker or errant application repeatedly triggering this condition could gradually exhaust available kernel memory.

Root Cause

The root cause of this vulnerability is an incomplete error handling implementation in the xe_vm_madvise_ioctl function. When the validation function check_bo_args_are_sane() returns a failure, the original code path returned immediately without jumping to the appropriate cleanup label that would free the allocated VMA structures. This is a common programming pattern error in kernel code where resources are allocated early in a function but not all error paths properly release them.

Attack Vector

The attack vector for this vulnerability involves a local user with access to the graphics device making repeated ioctl calls with intentionally malformed buffer object arguments. Since this is a kernel driver vulnerability accessible through the DRM subsystem:

  1. An attacker requires local access to the system with permissions to interact with the graphics device
  2. The attacker crafts ioctl requests that pass initial checks but fail the check_bo_args_are_sane() validation
  3. Each failed request leaks kernel memory
  4. Repeated exploitation over time can exhaust kernel memory resources, leading to denial of service

The vulnerability requires local access and cannot be exploited remotely. The fix introduces a new free_vmas cleanup label that ensures proper resource deallocation when validation fails.

Detection Methods for CVE-2026-31390

Indicators of Compromise

  • Gradual increase in kernel memory usage without corresponding user-space allocation
  • Slab memory exhaustion warnings in kernel logs related to DRM or Xe driver allocations
  • System slowdowns or out-of-memory conditions in systems using Intel Xe graphics

Detection Strategies

  • Monitor kernel memory statistics using tools like /proc/meminfo and /proc/slabinfo for unusual growth in DRM-related allocations
  • Enable kernel memory leak detection tools such as kmemleak during testing environments
  • Audit system calls to the DRM ioctl interface for patterns of repeated failed madvise operations

Monitoring Recommendations

  • Implement system monitoring for kernel memory usage trends on systems with Intel Xe graphics drivers
  • Configure alerts for kernel memory exhaustion warnings in system logs
  • Review audit logs for unusual patterns of DRM ioctl activity from non-privileged processes

How to Mitigate CVE-2026-31390

Immediate Actions Required

  • Apply the latest kernel security patches that include the fix for this vulnerability
  • Update to a patched kernel version that includes commit 29bd06faf727a4b76663e4be0f7d770e2d2a7965 or its backports
  • Consider restricting access to the graphics device for untrusted users if patching is delayed

Patch Information

The Linux kernel maintainers have addressed this vulnerability through multiple commits across stable kernel branches. The fix ensures that when check_bo_args_are_sane() validation fails, execution jumps to the new free_vmas cleanup label to properly release allocated resources before returning.

Patch commits are available at:

  • Kernel Git Commit 0cfe9c4
  • Kernel Git Commit 1c87b48
  • Kernel Git Commit c3aa7b8

Workarounds

  • Limit access to the Intel Xe graphics device to trusted users only by adjusting device permissions
  • Monitor system memory usage and schedule periodic reboots if patching cannot be immediately applied
  • Consider temporarily blacklisting the xe kernel module if Intel Xe graphics functionality is not required
bash
# Restrict graphics device access to trusted groups only
chmod 660 /dev/dri/card*
chgrp video /dev/dri/card*

# Alternatively, blacklist xe module if not required (requires reboot)
echo "blacklist xe" >> /etc/modprobe.d/blacklist-xe.conf

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 0cfe9c4

  • Kernel Git Commit 1c87b48

  • Kernel Git Commit c3aa7b8
  • Related CVEs
  • CVE-2026-31744: Linux Kernel NULL Pointer Vulnerability

  • CVE-2026-31746: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31752: Linux Kernel ND Option Vulnerability

  • CVE-2026-31738: Linux Kernel VXLAN Option Validation 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