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-2026-23163

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

CVE-2026-23163 is a use-after-free vulnerability in the Linux kernel's AMD GPU driver that causes NULL pointer dereference on APUs. This article covers the technical details, affected systems, and mitigation strategies.

Published: February 20, 2026

CVE-2026-23163 Overview

A NULL pointer dereference vulnerability has been identified in the Linux kernel's AMD GPU (amdgpu) driver, specifically within the amdgpu_gmc_filter_faults_remove() function. This vulnerability affects AMD APUs including Raven and Renoir (GC 9.1.0, 9.2.2, 9.3.0) and can lead to a kernel crash when retry faults are enabled.

The vulnerability occurs because the ih1 and ih2 interrupt ring buffers are not initialized on APUs by design, as these secondary IH rings are only available on discrete GPUs. However, amdgpu_gmc_filter_faults_remove() unconditionally uses ih1 to get the timestamp of the last interrupt entry, resulting in a NULL pointer dereference when amdgpu_ih_decode_iv_ts_helper() attempts to access ih->ring[].

Critical Impact

Systems running affected AMD APUs with retry fault handling enabled (noretry=0) may experience kernel crashes and system instability, leading to denial of service conditions.

Affected Products

  • Linux kernel with amdgpu driver on AMD Raven APU (GC 9.1.0)
  • Linux kernel with amdgpu driver on AMD Renoir APU (GC 9.2.2, 9.3.0)
  • Systems with retry fault handling enabled (noretry=0)

Discovery Timeline

  • 2026-02-14 - CVE CVE-2026-23163 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2026-23163

Vulnerability Analysis

This Null Pointer Dereference vulnerability exists in the AMD GPU driver's fault filtering mechanism. The issue stems from an architectural assumption that was violated when retry fault handling was enabled on APU platforms.

On discrete GPUs, the ih1 and ih2 secondary interrupt handler rings are properly initialized and available. However, on APUs like Raven and Renoir, the vega10_ih_sw_init() function explicitly skips initialization of these secondary IH rings when AMD_IS_APU is set. This is intentional behavior, as these secondary rings serve no purpose on integrated graphics hardware.

The problematic code path is triggered when amdgpu_gmc_filter_faults_remove() is called from the SVM (Shared Virtual Memory) page fault recovery path. This function unconditionally attempts to use ih1 to retrieve the timestamp of the last interrupt entry through amdgpu_ih_decode_iv_ts_helper(), which dereferences the uninitialized ring pointer.

This issue was exposed by commit 1446226d32a4 which changed the default for Renoir APU from noretry=1 to noretry=0, enabling retry fault handling and exercising the buggy code path that had previously remained dormant.

Root Cause

The root cause is a missing NULL pointer check before accessing the ih1 interrupt ring buffer in amdgpu_gmc_filter_faults_remove(). The code assumes that secondary IH rings are always available, but this assumption is invalid for APU configurations where ih1.ring_size is zero and the ring is not allocated.

The fix adds a proper check for ih1.ring_size before attempting to use the ring, and restores soft IH support from commit dd299441654f for hardware that doesn't support secondary hardware IH rings.

Attack Vector

The vulnerability is triggered through the following kernel call path when retry faults are enabled on affected APUs:

  1. A page fault occurs that requires SVM recovery
  2. gmc_v9_0_process_interrupt() handles the GPU interrupt
  3. amdgpu_vm_handle_fault() initiates fault recovery
  4. svm_range_restore_pages() processes the page fault
  5. amdgpu_gmc_filter_faults_remove() is called to clean up fault tracking
  6. amdgpu_ih_decode_iv_ts_helper() dereferences the NULL ih->ring[] pointer
  7. Kernel crash occurs with a NULL pointer dereference at address 0x0000000000000004

The crash manifests with the following call trace:

BUG: kernel NULL pointer dereference, address: 0000000000000004
RIP: 0010:amdgpu_ih_decode_iv_ts_helper+0x22/0x40 [amdgpu]
Call Trace:
amdgpu_gmc_filter_faults_remove+0x60/0x130 [amdgpu]
svm_range_restore_pages+0xae5/0x11c0 [amdgpu]
amdgpu_vm_handle_fault+0xc8/0x340 [amdgpu]
gmc_v9_0_process_interrupt+0x191/0x220 [amdgpu]
amdgpu_irq_dispatch+0xed/0x2c0 [amdgpu]
amdgpu_ih_process+0x84/0x100 [amdgpu]

Detection Methods for CVE-2026-23163

Indicators of Compromise

  • Kernel crash logs showing NULL pointer dereference at amdgpu_ih_decode_iv_ts_helper+0x22/0x40
  • System logs containing BUG: kernel NULL pointer dereference with amdgpu module in the call trace
  • Unexpected system reboots on AMD Raven or Renoir APU systems under GPU workloads
  • Kernel panic events correlating with SVM (Shared Virtual Memory) operations

Detection Strategies

  • Monitor kernel logs for NULL pointer dereference errors involving the amdgpu driver module
  • Implement automated log analysis for crash signatures matching the amdgpu_gmc_filter_faults_remove call path
  • Track system stability metrics on AMD APU systems, particularly those running GC 9.x hardware
  • Use crash analysis tools to identify recurring patterns in kernel dumps related to GPU interrupt handling

Monitoring Recommendations

  • Deploy kernel crash monitoring solutions such as kdump or systemd-coredump to capture crash dumps
  • Configure alerting for kernel oops and panic events involving amdgpu driver components
  • Monitor system uptime and stability metrics on systems with AMD Raven and Renoir APUs
  • Implement centralized log aggregation to correlate GPU-related crashes across fleet deployments

How to Mitigate CVE-2026-23163

Immediate Actions Required

  • Update the Linux kernel to a version containing the fix (commit 6ce8d536c80aa1f059e82184f0d1994436b1d526)
  • As a temporary workaround, set noretry=1 module parameter for amdgpu to disable retry fault handling
  • Review system logs for evidence of prior crashes related to this vulnerability
  • Prioritize patching on systems running AMD Raven or Renoir APUs with GPU-intensive workloads

Patch Information

The vulnerability has been resolved in the Linux kernel through multiple stable branch commits. The fix adds a check for ih1.ring_size before attempting to use the ring buffer and restores soft IH support for hardware that doesn't support secondary hardware IH rings.

Patch commits are available at:

  • Kernel Stable Commit 7611d7faccc1
  • Kernel Stable Commit 8b1ecc9377bc
  • Kernel Stable Commit ac251d17d8af
  • Kernel Stable Commit c74e2dbb5316

Workarounds

  • Disable retry fault handling by loading the amdgpu module with noretry=1 parameter
  • Add amdgpu.noretry=1 to kernel boot parameters in GRUB configuration
  • Consider disabling SVM functionality if not required for workload operations
  • Monitor for kernel updates from your distribution and apply patches as they become available
bash
# Configuration example
# Temporary workaround: Disable retry fault handling on AMD APUs
# Add to /etc/modprobe.d/amdgpu.conf
options amdgpu noretry=1

# Or add to kernel boot parameters in /etc/default/grub
# GRUB_CMDLINE_LINUX="amdgpu.noretry=1"
# Then run: sudo update-grub

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

  • EPSS Probability0.02%

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

  • Kernel Git Commit Update

  • Kernel Git Commit Update

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

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

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

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