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

CVE-2026-31656: Linux Kernel Use-After-Free Vulnerability

CVE-2026-31656 is a use-after-free vulnerability in the Linux Kernel's drm/i915/gt component that causes refcount underflow. This article covers the technical details, affected versions, security impact, and mitigation.

Published: April 30, 2026

CVE-2026-31656 Overview

A use-after-free and refcount underflow vulnerability has been identified in the Linux kernel's Intel i915 graphics driver. The flaw exists in the intel_engine_park_heartbeat function within the DRM (Direct Rendering Manager) subsystem, where a race condition between the heartbeat worker and the engine parking mechanism can lead to a double-free scenario on the engine->heartbeat.systole request object.

The vulnerability occurs when the heartbeat worker reads and attempts to release the engine->heartbeat.systole pointer using i915_request_put() while simultaneously, on another CPU, request retirement can drop the engine wakeref to zero. This triggers __engine_park() followed by intel_engine_park_heartbeat(), which may also attempt to release the same pointer if the heartbeat timer was pending, resulting in a refcount underflow.

Critical Impact

Successful exploitation could allow a local attacker with low privileges to trigger a use-after-free condition, potentially leading to privilege escalation, arbitrary code execution, or system crashes on systems with Intel integrated graphics.

Affected Products

  • Linux Kernel version 5.5 and later
  • Linux Kernel 7.0 release candidates (rc1 through rc7)
  • Systems utilizing Intel i915 graphics drivers (DRM/KMS subsystem)

Discovery Timeline

  • 2026-04-24 - CVE-2026-31656 published to NVD
  • 2026-04-27 - Last updated in NVD database

Technical Details for CVE-2026-31656

Vulnerability Analysis

This vulnerability is classified as CWE-191 (Integer Underflow), though it manifests as a use-after-free condition through a refcount underflow mechanism. The core issue stems from a Time-of-Check Time-of-Use (TOCTOU) race condition in the i915 driver's heartbeat management code.

The heartbeat mechanism in the i915 driver monitors GPU engine health by periodically submitting "heartbeat" requests. When an engine is parked due to inactivity, the driver must safely clean up any pending heartbeat state. The vulnerable code path involves two concurrent operations that can both attempt to decrement the reference count on the same systole request object.

The attack requires local access to the system, and while it has low attack complexity, exploitation timing is critical due to the race condition nature of the vulnerability. An attacker could potentially craft workloads that increase the likelihood of triggering the race window, particularly on multi-core systems where the heartbeat worker and engine retirement can execute in parallel.

Root Cause

The root cause is a non-atomic read-then-clear operation on the engine->heartbeat.systole pointer. The original implementation performed these as two separate steps:

  1. Read the pointer value to check if it's non-NULL
  2. Clear the pointer by setting it to NULL
  3. Call i915_request_put() on the retrieved pointer

This sequence creates a race window where both the heartbeat worker and intel_engine_park_heartbeat() can obtain the same non-NULL pointer before either has a chance to clear it, leading to both paths calling i915_request_put() on the same request and causing a refcount underflow.

Attack Vector

The attack vector is local, requiring an attacker to have low-level access to a system running a vulnerable Linux kernel with Intel i915 graphics hardware. The exploitation scenario involves:

The attacker can manipulate GPU workloads to create conditions where the heartbeat timer is active while engine retirement is occurring. By carefully timing these operations on a multi-core system, an attacker could reliably trigger the race condition. The resulting refcount underflow causes the kernel to access freed memory when the refcount erroneously reaches zero, potentially allowing the attacker to corrupt kernel memory or hijack control flow.

The kernel call trace documented in the vulnerability report shows the race manifesting through the i915-unordered workqueue during engine_retire operations, with the crash occurring at refcount_warn_saturate when the underflow is detected.

Detection Methods for CVE-2026-31656

Indicators of Compromise

  • Kernel warnings or panics with refcount_warn_saturate in the call stack
  • Stack traces showing intel_engine_park_heartbeat followed by __engine_park in kernel logs
  • Unexpected system crashes or freezes when GPU workloads are running on Intel integrated graphics
  • WARN or BUG messages in dmesg output related to i915 request reference counting

Detection Strategies

  • Monitor kernel logs (/var/log/kern.log, dmesg) for refcount saturation warnings involving i915 driver functions
  • Implement kernel tracing (ftrace) to monitor intel_engine_park_heartbeat and i915_request_put function calls
  • Deploy endpoint detection rules that alert on kernel oops or panics with i915-related stack traces
  • Use SentinelOne's kernel integrity monitoring to detect anomalous behavior in DRM subsystem operations

Monitoring Recommendations

  • Enable kernel crash dump collection (kdump) to capture full system state during exploitation attempts
  • Configure alerting for any refcount_warn_saturate messages in system logs
  • Monitor for unusual GPU engine park/unpark frequency patterns that could indicate exploitation attempts
  • Implement rate limiting alerts for i915-related kernel warnings to detect potential denial-of-service attacks

How to Mitigate CVE-2026-31656

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix (commit 13238dc0ee4f9ab8dafa2cca7295736191ae2f42 or its backports)
  • On systems that cannot be immediately patched, consider disabling the i915 heartbeat mechanism if GPU performance monitoring is not critical
  • Monitor affected systems closely for signs of exploitation until patches can be applied
  • Restrict local access to systems with Intel integrated graphics to trusted users only

Patch Information

The fix replaces the non-atomic pointer read and separate clear operations with xchg() in both racing code paths. The xchg() instruction is a single, indivisible hardware operation that atomically reads the old pointer value and writes NULL in one step. This guarantees that only one of the two concurrent callers obtains the non-NULL pointer and performs the reference count decrement, while the other receives NULL and safely skips the operation.

Patches are available through the following kernel git commits:

  • Stable kernel commit 2af8b200
  • Stable kernel commit 455d98ed
  • Stable kernel commit 4c71fd09
  • Stable kernel commit 70d3e622
  • Stable kernel commit 8ce44d28
  • Stable kernel commit a00e92bf
  • Stable kernel commit ca3f48c3

Workarounds

  • Disable the i915 heartbeat feature by setting the i915.enable_heartbeat=0 kernel boot parameter (note: this may affect GPU hang detection)
  • Limit system exposure by restricting physical and network access to affected systems
  • On multi-user systems, implement strict user privilege controls to minimize the attack surface for local exploitation
  • Consider using alternative graphics drivers (e.g., modesetting) if Intel GPU-specific features are not required
bash
# Temporary workaround: Disable i915 heartbeat at boot
# Add to kernel command line in GRUB configuration
GRUB_CMDLINE_LINUX="i915.enable_heartbeat=0"

# After modifying /etc/default/grub, update GRUB configuration
sudo update-grub
sudo reboot

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

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-191
  • Vendor Resources
  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-31745: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-43056: 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