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

CVE-2026-31658: Linux Kernel DOS Vulnerability

CVE-2026-31658 is a denial of service vulnerability in Linux Kernel caused by a memory leak in the altera-tse network driver. This article covers technical details, affected versions, and mitigation strategies.

Published: April 30, 2026

CVE-2026-31658 Overview

A memory leak vulnerability has been identified in the Linux kernel's Altera Triple-Speed Ethernet (TSE) network driver. The flaw exists in the tse_start_xmit() function, where a failure in dma_map_single() causes the function to return NETDEV_TX_OK without properly freeing the associated socket buffer (skb). Since NETDEV_TX_OK signals to the network stack that the packet was successfully consumed, the skb is never released, resulting in memory leakage on every DMA mapping failure.

Critical Impact

Repeated DMA mapping failures can lead to kernel memory exhaustion and system denial of service, affecting availability of systems using Altera TSE network interfaces.

Affected Products

  • Linux Kernel versions from 3.15 through affected stable branches
  • Linux Kernel 7.0 release candidates (rc1 through rc7)
  • Systems utilizing Altera Triple-Speed Ethernet network controllers

Discovery Timeline

  • 2026-04-24 - CVE-2026-31658 published to NVD
  • 2026-04-27 - Last updated in NVD database

Technical Details for CVE-2026-31658

Vulnerability Analysis

This vulnerability is classified as CWE-401 (Missing Release of Memory after Effective Lifetime). The flaw occurs in the Altera TSE network driver's transmit path, specifically within the tse_start_xmit() function responsible for initiating packet transmission.

When network packets are transmitted, the driver must map the socket buffer to a DMA-accessible memory region using dma_map_single(). Under normal operation, this mapping allows the network hardware to directly access the packet data for transmission. However, DMA mapping can fail due to various conditions including IOMMU restrictions, memory fragmentation, or resource exhaustion.

The vulnerable code path returns NETDEV_TX_OK after a DMA mapping failure without first freeing the skb. The network stack interprets NETDEV_TX_OK as confirmation that the driver has taken ownership of the packet and will handle its lifecycle. Consequently, the stack does not attempt to free or requeue the packet, leaving the memory allocated but unreferenced.

Root Cause

The root cause is improper error handling in the tse_start_xmit() function. When dma_map_single() returns an invalid DMA address (checked via dma_mapping_error()), the function should free the skb using dev_kfree_skb_any() before returning. The missing cleanup call causes the socket buffer to leak, with the memory remaining allocated until the system is rebooted.

Attack Vector

This vulnerability requires local access to exploit. An attacker with the ability to generate network traffic through an affected Altera TSE interface could potentially trigger repeated DMA mapping failures under specific system conditions. While this attack requires privileged access and specific hardware configuration, sustained exploitation could exhaust kernel memory resources, leading to system instability or denial of service. The attack is limited to systems with Altera TSE network hardware and does not enable information disclosure or code execution.

The fix involves adding a dev_kfree_skb_any() call before returning NETDEV_TX_OK in the error handling path, ensuring proper memory cleanup when DMA mapping fails.

Detection Methods for CVE-2026-31658

Indicators of Compromise

  • Unexplained growth in kernel memory usage (slab allocations) over time on systems with Altera TSE network interfaces
  • Increasing skbuff_head_cache or skbuff_fclone_cache slab entries without corresponding network traffic justification
  • Kernel warnings or OOM (Out of Memory) killer activation on systems with Altera TSE drivers loaded

Detection Strategies

  • Monitor /proc/slabinfo for abnormal growth in skbuff-related slab caches
  • Use dmesg to review kernel logs for DMA mapping errors from the altera_tse driver module
  • Implement memory usage trending alerts for systems running the affected driver

Monitoring Recommendations

  • Deploy kernel memory monitoring with alerting on sustained growth patterns in network buffer allocations
  • Configure SentinelOne Singularity agent to monitor kernel module behavior and memory anomalies
  • Enable kernel tracing for DMA mapping failures on affected systems to identify potential exploitation attempts

How to Mitigate CVE-2026-31658

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix for CVE-2026-31658
  • If immediate patching is not possible, consider temporarily disabling Altera TSE network interfaces on critical systems
  • Monitor affected systems for signs of memory exhaustion until patches can be applied
  • Review kernel logs for existing DMA mapping errors that may indicate ongoing memory leakage

Patch Information

The Linux kernel maintainers have released patches across multiple stable branches. The fix adds proper skb cleanup by calling dev_kfree_skb_any() before returning from the error path in tse_start_xmit(). Patches are available from the following kernel git commits:

  • Kernel Git Commit 2eb9d67
  • Kernel Git Commit 3aca300
  • Kernel Git Commit 60f462c
  • Kernel Git Commit 6dede39
  • Kernel Git Commit 9f3ec44
  • Kernel Git Commit ae2cd46
  • Kernel Git Commit cb1d318
  • Kernel Git Commit d5ec406

Workarounds

  • Reduce network load on affected interfaces to minimize the frequency of potential DMA mapping failures
  • Implement memory usage monitoring and automatic service restart procedures if memory thresholds are exceeded
  • Consider using alternative network drivers or interfaces if available until patching is complete
bash
# Check if the Altera TSE driver is loaded
lsmod | grep altera_tse

# Monitor kernel slab cache for memory leak indicators
watch -n 5 'cat /proc/slabinfo | grep -E "skbuff|kmalloc"'

# Check current kernel version
uname -r

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

  • 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
  • CWE-401
  • Vendor Resources
  • Kernel Git Commit Update 1

  • Kernel Git Commit Update 2

  • Kernel Git Commit Update 3

  • Kernel Git Commit Update 4

  • Kernel Git Commit Update 5

  • Kernel Git Commit Update 6

  • Kernel Git Commit Update 7

  • Kernel Git Commit Update 8
  • 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