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

CVE-2026-23067: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-23067 is a buffer overflow flaw in the Linux kernel's IOMMU io-pgtable-arm component caused by a signedness bug that corrupts IOVA addresses. This article covers the technical details, affected versions, and mitigation.

Published: February 6, 2026

CVE-2026-23067 Overview

A signedness bug has been identified in the Linux kernel's IOMMU io-pgtable-arm implementation. The __arm_lpae_unmap() function returns a size_t type but was incorrectly returning -ENOENT (a negative error code) when encountering an unmapped PTE. Since size_t is an unsigned type, the negative value -ENOENT (typically -2) becomes a large positive value (0xFFFFFFFFFFFFFFFE on 64-bit systems), causing corruption in the IOVA address calculations.

Critical Impact

This vulnerability can cause IOVA address overflow in the __iommu_unmap() loop and trigger BUG_ON in iommu_pgsize() due to invalid address alignment, potentially leading to kernel crashes and system instability.

Affected Products

  • Linux Kernel (io-pgtable-arm IOMMU implementation)
  • Systems using ARM LPAE page table format
  • Devices with ARM-based IOMMU hardware

Discovery Timeline

  • 2026-02-04 - CVE-2026-23067 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2026-23067

Vulnerability Analysis

The vulnerability exists in the IOMMU io-pgtable-arm subsystem of the Linux kernel. The core issue is a type mismatch where __arm_lpae_unmap() is defined to return size_t (an unsigned integer type representing memory sizes) but was returning -ENOENT, which is a negative error code. This fundamental type confusion creates a dangerous situation where error handling becomes corrupted value propagation.

When an unmapped PTE is encountered, the function returns -ENOENT instead of a valid size value. On 64-bit systems, this negative value is interpreted as an extremely large unsigned value (0xFFFFFFFFFFFFFFFE). This corrupted value then propagates through the call chain, causing the IOVA address to overflow when added in __iommu_unmap(), ultimately triggering a BUG_ON assertion in iommu_pgsize() due to the resulting invalid address alignment.

Root Cause

The root cause is improper return type handling in the __arm_lpae_unmap() function. The function signature declares a size_t return type, but the implementation was returning a signed negative error code (-ENOENT). This violates the semantic contract of the function, as size_t values should represent non-negative sizes. The implicit conversion from signed to unsigned caused the error value to become a massive positive integer, corrupting subsequent calculations.

The proper fix returns 0 instead of -ENOENT, indicating that nothing was unmapped. This approach maintains type safety while preserving error signaling through the existing WARN_ON mechanism. This fix aligns with the behavior of other io-pgtable implementations (io-pgtable-arm-v7s and io-pgtable-dart) which already return 0 on error conditions.

Attack Vector

The vulnerability is triggered through the IOMMU unmap path when the kernel attempts to unmap a PTE that is not currently mapped. The corrupted return value causes the following chain of events:

  1. __arm_lpae_unmap() returns -ENOENT cast to size_t, becoming 0xFFFFFFFFFFFFFFFE
  2. arm_lpae_unmap_pages() passes this corrupted value up the call stack
  3. __iommu_unmap() adds this value to the IOVA address, causing overflow
  4. iommu_pgsize() receives an invalid, misaligned address and triggers BUG_ON

This results in a kernel panic or system crash. While the attack vector is unknown and there is no known active exploitation, this vulnerability could potentially be triggered by malformed DMA operations or driver bugs that attempt to unmap non-existent mappings.

Detection Methods for CVE-2026-23067

Indicators of Compromise

  • Kernel panic messages referencing iommu_pgsize() or BUG_ON assertions
  • System logs showing IOMMU-related crashes or unexpected behavior
  • Debug traces indicating corrupted IOVA addresses with extremely large values
  • Kernel oops messages in the __iommu_unmap() code path

Detection Strategies

  • Monitor kernel logs for IOMMU subsystem errors and BUG_ON triggers
  • Implement kernel debugging with IOMMU tracing enabled to catch address corruption
  • Use static analysis tools to identify similar signedness issues in kernel code
  • Enable kernel address sanitizer (KASAN) for runtime memory corruption detection

Monitoring Recommendations

  • Configure persistent kernel logging to capture crash dumps for forensic analysis
  • Set up automated alerting for kernel panic events related to IOMMU operations
  • Monitor system stability metrics on ARM-based systems with IOMMU enabled
  • Review kernel audit logs for unusual DMA mapping/unmapping patterns

How to Mitigate CVE-2026-23067

Immediate Actions Required

  • Apply the official kernel patch from the stable kernel tree immediately
  • Reboot systems after patching to ensure the fix is active in the running kernel
  • Prioritize patching on ARM-based systems with active IOMMU usage
  • Review and test any custom IOMMU-dependent drivers for similar issues

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix modifies __arm_lpae_unmap() to return 0 instead of -ENOENT when encountering an unmapped PTE, maintaining proper size_t semantics while preserving error signaling through the existing WARN_ON mechanism.

Official patches are available from the kernel.org stable tree:

  • Kernel Git Commit 374e7af67d9d
  • Kernel Git Commit 41ec69885478

Workarounds

  • If immediate patching is not possible, consider disabling IOMMU on affected systems temporarily (reduces security posture)
  • Implement additional monitoring for kernel panics to detect exploitation attempts
  • Avoid workloads that may trigger frequent DMA unmapping operations until patched
  • Consider using alternative virtualization strategies that do not rely on ARM LPAE IOMMU
bash
# Check current kernel version for vulnerability status
uname -r

# Verify IOMMU is enabled (for identifying affected systems)
dmesg | grep -i iommu

# Monitor for IOMMU-related kernel issues
journalctl -k | grep -E "(iommu|BUG_ON|lpae)"

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-31449: Linux Kernel Buffer Overflow Vulnerability

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

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

  • CVE-2026-31450: Linux Kernel Buffer Overflow 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