Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2025-68802

CVE-2025-68802: Linux Kernel XE Driver DoS Vulnerability

CVE-2025-68802 is a denial of service vulnerability in the Linux kernel XE driver that allows excessive memory allocation through unbounded num_syncs values. This article covers the technical details, impact, and patches.

Updated: January 22, 2026

CVE-2025-68802 Overview

A resource exhaustion vulnerability exists in the Linux kernel's DRM/Xe driver subsystem. The exec and vm_bind ioctl handlers allow userspace to specify an arbitrary num_syncs value without proper bounds checking. When a very large num_syncs value is provided, the kernel attempts to perform an excessively large memory allocation, triggering kernel warnings from the page allocator and potentially leading to a denial of service condition.

Critical Impact

Local attackers can trigger kernel memory allocation warnings and potentially cause system instability by providing malicious input to the DRM/Xe ioctl interface.

Affected Products

  • Linux kernel with DRM/Xe driver (Intel Xe graphics)
  • Systems running Intel Xe GPU hardware with vulnerable kernel versions

Discovery Timeline

  • 2026-01-13 - CVE CVE-2025-68802 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-68802

Vulnerability Analysis

The vulnerability resides in the Intel Xe graphics driver's ioctl handling code, specifically within the xe_exec_ioctl and vm_bind functions. These ioctls accept a num_syncs parameter from userspace that controls memory allocation sizes for synchronization objects. The kernel trusts this userspace-provided value without implementing appropriate bounds validation.

When an attacker supplies an extremely large num_syncs value, the kmalloc_array_noprof function attempts to allocate a correspondingly massive memory block. This triggers the kernel's page allocator warning mechanism at mm/page_alloc.c:5124 within the __alloc_frozen_pages_noprof function, as the allocation request exceeds reasonable limits for a single allocation.

The call trace demonstrates the exploitation path: the attack flows from userspace through the VFS ioctl handler, into the DRM ioctl dispatcher, and finally to the Xe-specific xe_exec_ioctl function where the vulnerable allocation occurs.

Root Cause

The root cause is missing input validation on the num_syncs parameter in the DRM/Xe ioctl handlers. The kernel code directly uses the userspace-provided value to calculate allocation sizes via kmalloc_array_noprof without first checking whether the value falls within reasonable bounds. This violates the principle of never trusting user input in kernel code.

Attack Vector

Exploitation requires local access to the system with permissions to interact with the DRM device node (typically /dev/dri/*). An attacker can craft a malicious ioctl call to either the exec or vm_bind interface, specifying an extremely large num_syncs value. The attack does not require elevated privileges beyond basic access to the graphics device, which is commonly available to unprivileged users on desktop systems.

The exploitation mechanism involves the following sequence:

  1. Open a file descriptor to the Intel Xe DRM device
  2. Construct an ioctl request with a maliciously large num_syncs value
  3. Issue the ioctl syscall to trigger the oversized allocation
  4. The kernel attempts the allocation and emits warnings, potentially impacting system stability

Detection Methods for CVE-2025-68802

Indicators of Compromise

  • Kernel log messages containing warnings from __alloc_frozen_pages_noprof at mm/page_alloc.c:5124
  • Call traces showing allocation failures originating from xe_exec_ioctl or xe_vm_bind_ioctl
  • Unusual ioctl activity targeting DRM Xe device nodes from unprivileged processes
  • Memory allocation failures or pressure events correlated with graphics driver operations

Detection Strategies

  • Monitor kernel logs (dmesg) for page allocator warnings with call traces pointing to drivers/gpu/drm/xe/xe_exec.c
  • Implement auditd rules to track ioctl syscalls targeting /dev/dri/* device nodes
  • Use eBPF probes to monitor allocation sizes requested through the DRM subsystem
  • Alert on repeated kernel warnings from the memory management subsystem

Monitoring Recommendations

  • Configure syslog forwarding to aggregate kernel warning messages from affected systems
  • Set up alerting for allocation failure patterns in the DRM/Xe driver call paths
  • Monitor system memory pressure metrics for anomalous spikes correlated with graphics operations
  • Enable ftrace or perf monitoring on production systems to capture exploitation attempts

How to Mitigate CVE-2025-68802

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the DRM_XE_MAX_SYNCS bounds check
  • Review systems running Intel Xe graphics hardware for vulnerable kernel versions
  • Consider restricting access to DRM device nodes for untrusted users as a temporary measure
  • Monitor affected systems for exploitation attempts while planning updates

Patch Information

The fix introduces a new constant DRM_XE_MAX_SYNCS set to 1024, establishing a reasonable upper bound for the num_syncs parameter. Any ioctl request specifying a num_syncs value exceeding this limit is rejected at the top of the exec function before any allocation attempt occurs.

The kernel patches are available through the following Git commits:

  • Kernel Git Commit 1d200017f55f
  • Kernel Git Commit 8e4613040091
  • Kernel Git Commit e281d1fd6903

The original fix was cherry-picked from commit b07bac9bd708ec468cd1b8a5fe70ae2ac9b0a11c.

Workarounds

  • Restrict access to DRM device nodes by modifying udev rules or file permissions to limit exposure
  • Use kernel security modules (SELinux, AppArmor) to create policies restricting ioctl access to DRM devices
  • Deploy the patched kernel version as the primary remediation strategy
  • Consider disabling the Xe driver via kernel module blacklisting if Intel Xe graphics support is not required
bash
# Restrict DRM device access (temporary workaround)
# Add udev rule to limit DRM device permissions
echo 'SUBSYSTEM=="drm", MODE="0660", GROUP="video"' > /etc/udev/rules.d/99-drm-restrict.rules
udevadm control --reload-rules && udevadm trigger

# Verify kernel version includes the fix
uname -r
# Check kernel changelog for DRM_XE_MAX_SYNCS implementation

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

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

  • Kernel Git Commit Overview

  • Kernel Git Commit Overview
  • Related CVEs
  • CVE-2026-31465: Linux Kernel Writeback DoS Vulnerability

  • CVE-2026-31472: Linux Kernel IPTFS DoS Vulnerability

  • CVE-2026-31451: Linux Kernel ext4 DOS Vulnerability

  • CVE-2026-31448: Linux Kernel ext4 DoS Vulnerability
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