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

CVE-2026-43318: Linux Kernel Race Condition Vulnerability

CVE-2026-43318 is a race condition flaw in the Linux Kernel's drm/amdgpu component affecting synchronization in dma_buf move operations. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 18, 2026

CVE-2026-43318 Overview

CVE-2026-43318 is a synchronization defect in the Linux kernel's AMD GPU driver (drm/amdgpu). The flaw resides in amdgpu_dma_buf_move_notify, the callback invoked when a shared buffer object (BO) backing a DMA-buf is invalidated. The function incorrectly assumes that page tables can be updated immediately, while in-flight jobs may still reference the original buffer location. In multi-GPU configurations without P2P PCI support, this race causes the importing GPU to access stale mappings and trigger page faults. The issue affects Linux kernel 7.0 release candidates rc1 through rc7 and earlier branches identified in the upstream commits.

Critical Impact

A local user running graphics workloads across multiple GPUs can trigger GPU page faults, leading to driver instability and denial of service on systems using the AMD GPU driver.

Affected Products

  • Linux kernel 7.0-rc1 through 7.0-rc7
  • Linux kernel stable branches prior to commits 3307459e, 82a7ea35, 89a9389a, and b18fc0ab
  • Systems using the amdgpu DRM driver, particularly multi-GPU configurations without P2P PCI support

Discovery Timeline

  • 2026-05-08 - CVE-2026-43318 published to NVD
  • 2026-05-15 - Last updated in NVD database

Technical Details for CVE-2026-43318

Vulnerability Analysis

The vulnerability is a race condition [CWE-NVD-noinfo] in the AMD GPU driver's DMA-buf invalidation path. When a buffer object shared across GPUs is migrated, amdgpu_dma_buf_move_notify must notify importing devices so they can update their page tables. A prior change made amdgpu_vm_handle_moved proceed as though immediate page table updates were safe by passing a ticket. This assumption is invalid when jobs targeting the buffer are still executing on the exporting GPU.

The upstream commit message describes a concrete scenario. With glxgears rendering on GPU0 and Xorg compositing on GPU1, the kernel may update GPU1's page tables while a tiled-to-linear blit job is still running on GPU0. The blit operation then references a buffer mapping that has already been torn down, producing a GPU page fault.

Root Cause

The root cause is improper synchronization between DMA-buf move notifications and outstanding GPU work. The fix removes the assumption that holding the reservation ticket grants permission to update page tables immediately. Instead, the driver waits for in-flight jobs on the shared buffer to complete before allowing the importer to refresh its mappings.

Attack Vector

Exploitation requires local access with the ability to submit GPU work. An unprivileged user running graphics or compute workloads on a system with multiple AMD GPUs, or any configuration that exercises the cross-device DMA-buf import path, can trigger the race. The result is a high-impact availability issue: GPU page faults, driver hangs, or system-wide graphics stack failure. Confidentiality and integrity are not directly impacted.

No verified public proof-of-concept is available. The reproduction described in the kernel changelog uses standard graphics workloads (glxgears plus Xorg) on dual-GPU systems without P2P PCI support.

Detection Methods for CVE-2026-43318

Indicators of Compromise

  • Kernel log messages from the amdgpu driver reporting GPU page faults, VM faults, or ring timeouts on systems with shared DMA-buf workloads
  • Unexpected drm_sched job timeouts or GPU reset events correlated with multi-GPU rendering sessions
  • Repeated X server or Wayland compositor crashes on hosts running AMD graphics with secondary GPUs

Detection Strategies

  • Inventory running kernel versions across the Linux fleet and flag hosts on 7.0-rc1 through 7.0-rc7 or unpatched stable branches using the amdgpu driver
  • Monitor dmesg and journalctl -k for amdgpu VM fault entries and correlate with user-level graphics process activity
  • Track GPU reset counters exposed under /sys/kernel/debug/dri/*/amdgpu_gpu_recover where debugfs is enabled

Monitoring Recommendations

  • Forward kernel logs to a centralized logging or SIEM platform and alert on amdgpu page fault patterns
  • Baseline normal GPU job completion behavior so anomalous timeouts and resets are surfaced quickly
  • For workstations running multi-GPU graphics workloads, enable crash reporting to capture driver state at fault time

How to Mitigate CVE-2026-43318

Immediate Actions Required

  • Update the Linux kernel to a version containing the upstream fixes referenced by commits 3307459e, 82a7ea35, 89a9389a, and b18fc0ab
  • Apply distribution security updates for the kernel package on all hosts using AMD GPUs
  • Restrict local access on multi-user systems with AMD graphics until patches are deployed

Patch Information

The fix corrects synchronization in amdgpu_dma_buf_move_notify so that page table updates wait for outstanding GPU jobs to complete on the shared buffer object. Patched commits are available upstream: Kernel commit 3307459e, Kernel commit 82a7ea35, Kernel commit 89a9389a, and Kernel commit b18fc0ab.

Workarounds

  • Avoid cross-GPU DMA-buf sharing by binding graphics sessions to a single AMD GPU using DRI_PRIME configuration where practical
  • On systems with P2P PCI support between GPUs, ensure it is enabled in firmware to bypass the affected code path
  • Disable secondary GPUs on affected hosts until the patched kernel is deployed if the workload permits
bash
# Verify the running kernel version and check for amdgpu in use
uname -r
lsmod | grep amdgpu

# After patching, reboot into the updated kernel
sudo reboot

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

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

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

  • Kernel Git Commit Change

  • Kernel Git Commit Change

  • Kernel Git Commit Change
  • Related CVEs
  • CVE-2026-43342: Linux Kernel Race Condition Vulnerability

  • CVE-2026-43340: Linux Kernel Race Condition Vulnerability

  • CVE-2026-43353: Linux Kernel Race Condition Vulnerability

  • CVE-2026-43319: Linux Kernel Race Condition 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