A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2025-71122

CVE-2025-71122: Linux Kernel Buffer Overflow Vulnerability

CVE-2025-71122 is a buffer overflow vulnerability in the Linux Kernel's iommufd selftest infrastructure that affects test kernels with CONFIG_IOMMUFD_TEST. This article covers technical details, affected versions, and mitigations.

Updated: May 16, 2026

CVE-2025-71122 Overview

CVE-2025-71122 is a Linux kernel vulnerability in the iommufd selftest infrastructure. The flaw resides in the IOMMU_TEST_OP_ADD_RESERVED test ioctl, where unchecked user-supplied length values can overflow internal arithmetic. This overflow corrupts the reserved interval tree and triggers a WARN_ON. The bug was identified by the syzkaller fuzzer and only affects kernels built with CONFIG_IOMMUFD_TEST enabled, which is typically restricted to development and testing builds rather than production distributions.

Critical Impact

A local authenticated user can trigger an integer overflow in the iommufd selftest ioctl path, corrupting kernel data structures and producing a WARN_ON that signals kernel state integrity loss.

Affected Products

  • Linux Kernel 6.2 (with CONFIG_IOMMUFD_TEST enabled)
  • Linux Kernel 6.19-rc1 through 6.19-rc8
  • Linux distributions shipping test-enabled kernels with iommufd selftest support

Discovery Timeline

  • 2026-01-14 - CVE-2025-71122 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2025-71122

Vulnerability Analysis

The vulnerability lives in the iommufd selftest path, specifically the IOMMU_TEST_OP_ADD_RESERVED operation. This test ioctl accepts a user-controlled length value and uses it in arithmetic that determines an interval range stored in the reserved interval tree. When the input is large enough, the arithmetic wraps around and produces an out-of-bounds interval. The resulting corrupted entry in the reserved interval tree triggers a WARN_ON inside the kernel, indicating a violation of an internal invariant. Because the flaw is scoped to CONFIG_IOMMUFD_TEST builds, production kernels without this option are not exposed. However, distributions and developers who ship debug or test kernels for QA, kernel CI, or research workloads remain affected.

Root Cause

The root cause is missing validation of a user-supplied length parameter before it participates in unchecked arithmetic. Without an overflow check, the multiplication or addition used to compute the interval end can wrap, leading to an invalid range entry. The fix introduces explicit validation of user input length in the test ioctl path before it is consumed by interval tree operations. This vulnerability is classified as an Integer Overflow ([CWE-190 category]) leading to kernel data structure corruption.

Attack Vector

Exploitation requires local access and the ability to invoke the iommufd test ioctl. An attacker with local low-privileged access can send a crafted IOMMU_TEST_OP_ADD_RESERVED ioctl with a length value chosen to overflow the interval calculation. The resulting WARN_ON indicates kernel state corruption, which on production builds without panic-on-warn produces a kernel log entry, but on hardened systems with panic_on_warn set can cause a denial of service. Network exploitation is not possible because the attack surface is a local ioctl interface.

No public proof-of-concept code is available for this issue. The condition was discovered through syzkaller-driven kernel fuzzing rather than a published exploit.

Detection Methods for CVE-2025-71122

Indicators of Compromise

  • Kernel log entries containing WARN_ON traces originating from the iommufd selftest reserved interval tree code paths
  • Unexpected invocation of IOMMU_TEST_OP_ADD_RESERVED ioctls from non-test workloads or unprivileged user sessions
  • Presence of CONFIG_IOMMUFD_TEST=y in deployed production kernels, which by itself indicates an exposed attack surface

Detection Strategies

  • Audit running kernel configuration for CONFIG_IOMMUFD_TEST and flag any systems where the test option is enabled outside of development environments
  • Monitor dmesg and journalctl -k for kernel warnings referencing iommufd or interval tree corruption
  • Apply syscall and ioctl auditing through auditd to record processes invoking iommufd device nodes such as /dev/iommu

Monitoring Recommendations

  • Forward kernel ring buffer logs to a centralized logging system and alert on WARN_ON events tied to iommufd subsystems
  • Track local privilege baselines and unusual ioctl activity from interactive shells and container workloads
  • Include kernel configuration drift checks in compliance scans to catch test-enabled kernels reaching production hosts

How to Mitigate CVE-2025-71122

Immediate Actions Required

  • Identify all Linux hosts running kernels built with CONFIG_IOMMUFD_TEST and prioritize patching or kernel replacement
  • Apply the upstream stable kernel fixes referenced in the kernel.org commits as soon as vendor packages are available
  • For production fleets, rebuild or switch to kernels with CONFIG_IOMMUFD_TEST disabled, since the test option is not intended for production use
  • Restrict access to iommufd device nodes through filesystem permissions and Linux capabilities to limit who can call the test ioctl

Patch Information

The fix validates user input length in the IOMMU_TEST_OP_ADD_RESERVED ioctl handler before performing the arithmetic that populates the reserved interval tree. The patches are available in the following upstream commits: Kernel Git Commit 4cc829d, Kernel Git Commit b166b8e, Kernel Git Commit e6a973a, and Kernel Git Commit e6c122c. Apply the corresponding backports for any 6.2 and 6.19 release-candidate kernels in use.

Workarounds

  • Disable the iommufd test infrastructure by rebuilding the kernel with CONFIG_IOMMUFD_TEST unset, which removes the vulnerable code path entirely
  • Remove or restrict permissions on /dev/iommu so only trusted administrative users can issue iommufd ioctls
  • Avoid setting panic_on_warn=1 on hosts running affected test kernels until the patch is applied to prevent denial-of-service escalation from the WARN_ON
bash
# Configuration example
# Check whether the running kernel exposes the vulnerable test option
grep CONFIG_IOMMUFD_TEST /boot/config-$(uname -r)

# Restrict access to the iommufd device node
chmod 600 /dev/iommu
chown root:root /dev/iommu

# Monitor for WARN_ON events tied to iommufd
journalctl -k --since "1 hour ago" | grep -iE "iommufd|WARN_ON"

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.02%

  • 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
  • NVD-CWE-noinfo
  • Vendor Resources
  • Kernel Git Commit Reference 1

  • Kernel Git Commit Reference 2

  • Kernel Git Commit Reference 3

  • Kernel Git Commit Reference 4
  • Related CVEs
  • CVE-2026-46263: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-46260: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-46258: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-46237: Linux Kernel Buffer Overflow Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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