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

CVE-2026-43445: Linux Kernel e1000 DMA Leak Vulnerability

CVE-2026-43445 is a DMA memory leak flaw in the Linux kernel e1000/e1000e drivers caused by an off-by-one error in TX buffer cleanup. This article covers the technical details, affected kernel versions, and mitigation steps.

Published: May 18, 2026

CVE-2026-43445 Overview

CVE-2026-43445 is a memory leak vulnerability in the Linux kernel affecting the e1000 and e1000e Intel Ethernet network drivers. The flaw resides in the DMA error cleanup path of the transmit (TX) buffer mapping logic. When a DMA mapping operation fails partway through processing a socket buffer (skb), the driver fails to unmap one of the previously mapped buffers due to an off-by-one error. This results in a leaked DMA mapping each time the error path triggers. The issue was introduced by commit c1fa347f20f1, which fixed an earlier infinite loop bug but decremented the count variable incorrectly before the cleanup loop.

Critical Impact

Repeated DMA mapping failures can exhaust kernel DMA resources on systems using e1000 or e1000e Intel Ethernet adapters, potentially causing degraded network performance or resource exhaustion conditions over time.

Affected Products

  • Linux kernel e1000 driver (Intel PRO/1000 Ethernet)
  • Linux kernel e1000e driver (Intel PRO/1000 PCIe Ethernet)
  • Multiple stable kernel branches prior to the patched commits

Discovery Timeline

  • 2026-05-08 - CVE-2026-43445 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-43445

Vulnerability Analysis

The vulnerability exists in the TX buffer mapping path within the e1000 and e1000e network drivers. When the kernel transmits a packet, it must map each fragment of the skb for DMA access by the network adapter. If any mapping fails during this process, the driver enters a dma_error cleanup routine intended to unmap any buffers that were successfully mapped before the failure.

The count variable tracks successful mappings and is incremented after each successful operation. As a result, count already reflects the correct number of buffers requiring cleanup when dma_error is reached. However, the buggy code decremented count before entering the unmap loop, causing the cleanup to skip exactly one mapping. This means that when at least one mapping succeeds before a failure, one DMA mapping is leaked per error event.

Root Cause

The root cause is an off-by-one error introduced by commit c1fa347f20f1 ("e1000/e1000e/igb/igbvf/ixgb/ixgbe: Fix tests of unsigned in *_tx_map()"). That commit corrected an infinite loop introduced by commits 03b1320dfcee and 602c0554d7b0, but in doing so it added an unnecessary pre-decrement of count, breaking the invariant that count equals the number of buffers needing unmapping. This is classified as a memory leak [CWE-401] in kernel DMA resource handling.

Attack Vector

The vulnerability is not directly triggerable by remote attackers. It manifests only when the underlying DMA mapping subsystem returns an error during TX buffer setup, which is a rare runtime condition tied to memory pressure or IOMMU resource exhaustion. The flaw is a reliability and resource-leak issue rather than an exploitable code execution primitive. The vulnerability mechanism is described in the upstream kernel commit messages referenced below; no public proof-of-concept exists.

Detection Methods for CVE-2026-43445

Indicators of Compromise

  • Gradual depletion of available DMA mapping entries on systems using e1000 or e1000e adapters
  • Kernel log messages from e1000/e1000e indicating dma_error paths being exercised under load
  • Long-running hosts showing increased IOMMU resource usage without a corresponding workload change

Detection Strategies

  • Audit the running kernel version against patched stable branches referenced in Kernel Commit fa5ba98 and related backports
  • Monitor /proc/meminfo and IOMMU statistics for unexpected growth in mapped DMA regions
  • Correlate network adapter driver name (e1000, e1000e) with kernel version inventory across the fleet

Monitoring Recommendations

  • Track kernel dmesg output for repeated e1000 or e1000e TX error events
  • Alert on hosts where DMA-mapped memory grows monotonically without bound
  • Include kernel version compliance checks in routine host posture assessments

How to Mitigate CVE-2026-43445

Immediate Actions Required

  • Update affected Linux systems to a kernel version that includes the fix from the referenced upstream commits
  • Inventory hosts using e1000 or e1000e Intel Ethernet drivers, including virtualized environments where these are common emulated NICs
  • Coordinate kernel upgrades with distribution vendors that have backported the patch to supported stable branches

Patch Information

The fix has been merged across multiple stable kernel branches. The relevant upstream commits include Kernel Commit 0606c24, Kernel Commit 0a1fc25, Kernel Commit 10b5e65, Kernel Commit 30e87ad, Kernel Commit 519051c, Kernel Commit 7eaeb77, Kernel Commit e94eaef, and Kernel Commit fa5ba98. Administrators should apply the kernel update provided by their Linux distribution.

Workarounds

  • No supported workaround removes the underlying leak; only the kernel patch resolves the issue
  • On virtualized hosts, switching guest NIC emulation away from e1000/e1000e to virtio-net avoids the affected code path entirely
  • Periodically reboot affected hosts as a temporary measure to reclaim leaked DMA mappings until patches can be deployed
bash
# Verify which kernel version is running and which driver is bound to the NIC
uname -r
ethtool -i eth0 | grep -E '^driver:'
# Expected: driver: e1000 or driver: e1000e on affected systems

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Commit 0606c24

  • Kernel Commit 0a1fc25

  • Kernel Commit 10b5e65

  • Kernel Commit 30e87ad

  • Kernel Commit 519051c

  • Kernel Commit 7eaeb77

  • Kernel Commit e94eaef

  • Kernel Commit fa5ba98
  • Related CVEs
  • CVE-2026-46239: Linux Kernel OV5647 PM Refcount Leak

  • CVE-2026-46235: Linux Kernel saa7164 Memory Vulnerability

  • CVE-2026-46230: Linux Kernel AMDGPU VCN3 OOB Vulnerability

  • CVE-2026-46224: Linux Kernel DRM/XE Memory Leak Bug
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