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

CVE-2026-43253: Linux Kernel AMD IOMMU DoS Vulnerability

CVE-2026-43253 is a denial of service flaw in the Linux kernel AMD IOMMU that causes soft lockups under stress when iommu.strict=1 is enabled. This article covers the technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-43253 Overview

CVE-2026-43253 is a Linux kernel vulnerability in the AMD Input-Output Memory Management Unit (IOMMU) driver. The flaw resides in the completion wait path used when iommu.strict=1 is set. The function wait_on_sem() busy-waits while holding iommu->lock with interrupts disabled, which can produce soft lockups on stressed systems. The kernel maintainers resolved the issue by moving the completion wait in iommu_completion_wait() outside of the spinlock, since polling the hardware-updated cmd_sem does not require the lock.

Critical Impact

Holding iommu->lock during the busy wait increases lock contention and extends the window with interrupts disabled, leading to soft lockups under load on AMD platforms running with strict IOMMU mode.

Affected Products

  • Linux kernel — AMD IOMMU driver (drivers/iommu/amd)
  • Systems configured with iommu.strict=1
  • AMD-based platforms relying on iommu_completion_wait()

Discovery Timeline

  • 2026-05-06 - CVE-2026-43253 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43253

Vulnerability Analysis

The AMD IOMMU driver issues a completion wait command to the hardware command buffer and then polls a semaphore (cmd_sem) until the IOMMU signals completion. In the affected code path, iommu_completion_wait() invokes wait_on_sem() while still holding iommu->lock with local interrupts disabled. The wait is a busy poll, so the CPU spins inside the critical section until the hardware updates the semaphore value.

Under strict translation mode (iommu.strict=1), every DMA unmap forces an invalidation and completion wait. High DMA pressure causes many CPUs to contend for iommu->lock while one CPU spins with interrupts off. The combined effect is extended IRQ-off windows that the kernel watchdog reports as soft lockups. The fix relocates the busy wait outside the spinlock, because cmd_sem is updated by hardware and does not depend on driver state guarded by the lock.

Root Cause

The root cause is improper scope of a spinlock-protected region. The driver held iommu->lock for longer than required, covering a hardware poll loop that has no shared software state to protect. This is a locking and concurrency design flaw rather than a memory safety issue.

Attack Vector

The condition is triggered by workloads that generate sustained IOMMU command traffic on AMD hardware running strict mode. A local user or workload that drives heavy DMA mapping and unmapping can amplify lock contention and provoke soft lockups, resulting in degraded availability. Remote exploitation is not described in the upstream commit message.

The vulnerability is a kernel availability issue. The upstream patch refactors iommu_completion_wait() so that wait_on_sem() runs after the spinlock is released. See the upstream fixes in Kernel Git Commit 496269d, Kernel Git Commit 715c263, Kernel Git Commit d2a0cac, Kernel Git Commit e15768e, and Kernel Git Commit f2f65b28.

Detection Methods for CVE-2026-43253

Indicators of Compromise

  • Kernel log entries containing soft lockup - CPU#N stuck with stack frames pointing to iommu_completion_wait or wait_on_sem in drivers/iommu/amd.
  • RCU stall warnings or watchdog BUG messages on AMD hosts running iommu.strict=1.
  • Sudden DMA throughput drops on AMD platforms correlated with kernel watchdog events.

Detection Strategies

  • Inspect dmesg and /var/log/messages for soft lockup traces referencing AMD IOMMU symbols.
  • Compare running kernel version against the fixed commits listed in the upstream references.
  • Audit boot parameters in /proc/cmdline to identify hosts using iommu.strict=1, which are the exposed configurations.

Monitoring Recommendations

  • Forward kernel ring buffer events to centralized logging and alert on soft lockup and iommu keyword combinations.
  • Track host availability metrics (CPU steal, IRQ-off duration) on AMD servers handling high DMA workloads.
  • Maintain a current kernel inventory across the fleet to identify unpatched AMD hosts.

How to Mitigate CVE-2026-43253

Immediate Actions Required

  • Apply the upstream Linux kernel patches referenced above or update to a stable kernel release that incorporates them.
  • Identify AMD hosts running with iommu.strict=1 and prioritize them for patching.
  • Reboot patched systems so the corrected iommu_completion_wait() path is loaded.

Patch Information

The fix moves wait_on_sem() out of the iommu->lock critical section in the AMD IOMMU completion wait path. Distribution-supplied kernels that backport commits 496269d, 715c263, d2a0cac, e15768e, or f2f65b28 resolve the soft lockup behavior. Consult vendor advisories from Red Hat, SUSE, Ubuntu, and Debian for backported package versions.

Workarounds

  • Where operationally acceptable, switch from iommu.strict=1 to lazy invalidation (iommu.strict=0) to reduce completion-wait pressure until patched kernels are deployed.
  • Reduce DMA-intensive workloads on affected AMD hosts during the patch window.
  • Pin sensitive workloads to non-AMD hosts or to already-patched nodes if mixed environments are available.
bash
# Check current IOMMU mode and kernel version on AMD hosts
cat /proc/cmdline | tr ' ' '\n' | grep -i iommu
uname -r

# Temporary mitigation: boot with lazy invalidation instead of strict
# Edit /etc/default/grub and update GRUB_CMDLINE_LINUX, e.g.:
#   GRUB_CMDLINE_LINUX="... iommu.strict=0 ..."
sudo update-grub   # Debian/Ubuntu
# or
sudo grub2-mkconfig -o /boot/grub2/grub.cfg   # RHEL/SUSE

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 496269d

  • Kernel Git Commit 715c263

  • Kernel Git Commit d2a0cac

  • Kernel Git Commit e15768e

  • Kernel Git Commit f2f65b28
  • Related CVEs
  • CVE-2026-31739: Linux Kernel Tegra Crypto DoS Vulnerability

  • CVE-2026-43054: Linux Kernel tcm_loop DOS Vulnerability

  • CVE-2026-31736: Linux Kernel MTK PPE DoS Vulnerability

  • CVE-2026-31727: Linux Kernel USB Gadget 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