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
    • 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-71099

CVE-2025-71099: Linux Kernel Use-After-Free Vulnerability

CVE-2025-71099 is a use-after-free flaw in the Linux kernel's drm/xe/oa driver that could allow attackers to exploit race conditions. This post covers the technical details, affected versions, and mitigation steps.

Updated: January 22, 2026

CVE-2025-71099 Overview

A use-after-free vulnerability has been identified in the Linux kernel's DRM/XE OA (Observation Architecture) subsystem. The flaw exists in the xe_oa_add_config_ioctl() function, where the oa_config->id field is accessed after releasing the metrics_lock mutex. Since this lock protects the lifetime of the oa_config object, a race condition can occur where an attacker with knowledge of the configuration ID can call xe_oa_remove_config_ioctl() with precise timing to free the oa_config structure before it is dereferenced, resulting in a use-after-free condition.

Critical Impact

This use-after-free vulnerability in the Linux kernel's DRM/XE OA subsystem could potentially allow local attackers to cause system instability or escalate privileges through carefully timed race condition exploitation.

Affected Products

  • Linux Kernel (DRM/XE OA subsystem)
  • Systems utilizing Intel Xe graphics drivers with OA functionality

Discovery Timeline

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

Technical Details for CVE-2025-71099

Vulnerability Analysis

This vulnerability is a classic time-of-check time-of-use (TOCTOU) race condition that manifests as a use-after-free. The xe_oa_add_config_ioctl() function is responsible for adding OA configuration entries, and it properly acquires the metrics_lock mutex to protect shared data structures during the configuration process. However, after releasing the lock, the function continues to access the oa_config->id field.

The fundamental issue is that once the metrics_lock is dropped, there is no guarantee that the oa_config structure remains valid. An attacker who can predict or guess the configuration ID can race to call xe_oa_remove_config_ioctl() in the window between when the lock is released and when oa_config->id is dereferenced. If the removal succeeds before the dereference, the code will access freed memory.

Root Cause

The root cause is improper lock scope management in xe_oa_add_config_ioctl(). The metrics_lock mutex is designed to protect the oa_config object's lifetime, but the function accesses oa_config->id outside of the critical section protected by this lock. This violates the locking discipline and creates a window of vulnerability where the object can be freed by another thread while still being accessed.

Attack Vector

The attack requires local access to the system with the ability to invoke ioctl calls on the DRM/XE device. An attacker would need to:

  1. Monitor or predict OA configuration IDs being created
  2. Trigger the xe_oa_add_config_ioctl() function to add a new configuration
  3. Race to call xe_oa_remove_config_ioctl() with the target ID during the narrow window after metrics_lock is released but before oa_config->id is accessed

The fix involves caching the id value in a local variable while still holding the metrics_lock, ensuring that the ID access occurs within the protected critical section. This eliminates the race condition by guaranteeing the oa_config structure cannot be freed before the ID is safely copied.

Detection Methods for CVE-2025-71099

Indicators of Compromise

  • Unexpected kernel crashes or panics related to DRM/XE subsystem
  • Memory corruption errors in system logs referencing xe_oa functions
  • Unusual ioctl activity targeting DRM devices with rapid add/remove config patterns
  • Kernel KASAN (Kernel Address Sanitizer) reports indicating use-after-free in xe_oa_add_config_ioctl

Detection Strategies

  • Enable KASAN (Kernel Address Sanitizer) to detect use-after-free memory access violations
  • Monitor system logs for kernel oops or panics originating from DRM/XE OA code paths
  • Deploy behavioral monitoring for suspicious ioctl call patterns on DRM devices
  • Utilize SentinelOne's kernel-level threat detection to identify exploitation attempts

Monitoring Recommendations

  • Enable kernel debugging options and memory debugging tools in development environments
  • Implement audit logging for ioctl system calls targeting graphics devices
  • Monitor for processes repeatedly calling OA configuration add/remove operations in rapid succession

How to Mitigate CVE-2025-71099

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix
  • If updates cannot be applied immediately, restrict access to DRM/XE devices to trusted users only
  • Monitor systems for signs of exploitation attempts targeting the DRM/XE subsystem
  • Consider disabling XE OA functionality if not required for operations

Patch Information

The vulnerability has been resolved in the upstream Linux kernel. The fix caches the oa_config->id value in a local variable while the metrics_lock is held, ensuring safe access without race conditions. The patch has been cherry-picked from commit 28aeaed130e8e587fd1b73b6d66ca41ccc5a1a31.

Patches are available from the following kernel git commits:

  • Kernel Git Commit 7cdb9a9
  • Kernel Git Commit c6d30b6
  • Kernel Git Commit dcb1719

Workarounds

  • Restrict access to DRM device nodes (/dev/dri/*) to privileged users only
  • Apply mandatory access control policies (SELinux, AppArmor) to limit which processes can interact with graphics devices
  • Disable XE OA functionality in kernel configuration if not required (CONFIG_DRM_XE_OA=n)
bash
# Restrict DRM device access as temporary mitigation
chmod 600 /dev/dri/renderD*
chown root:root /dev/dri/renderD*

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

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

  • Kernel Git Commit Summary 2

  • Kernel Git Commit Summary 3
  • Related CVEs
  • CVE-2026-23462: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-23458: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-23435: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-23456: Linux Kernel Use-After-Free 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