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

CVE-2026-31492: Linux Kernel Use-After-Free Vulnerability

CVE-2026-31492 is a use-after-free vulnerability in the Linux kernel's RDMA/irdma module that can cause system instability. This article covers the technical details, affected kernel versions, security impact, and mitigation.

Published: April 23, 2026

CVE-2026-31492 Overview

A vulnerability has been resolved in the Linux kernel's RDMA/irdma driver related to the improper initialization of a completion object. In the irdma_create_qp function, if ib_copy_to_udata fails, it calls irdma_destroy_qp to clean up resources. However, this cleanup routine attempts to wait on the free_qp completion structure which has not yet been initialized, leading to undefined behavior and potential system instability.

Critical Impact

Uninitialized completion use in the kernel RDMA subsystem can cause kernel panics, system hangs, or denial of service conditions when RDMA queue pair creation fails during error handling paths.

Affected Products

  • Linux kernel with RDMA/irdma driver enabled
  • Systems utilizing Intel RDMA Ethernet adapters
  • Kernel configurations with CONFIG_INFINIBAND_IRDMA enabled

Discovery Timeline

  • 2026-04-22 - CVE CVE-2026-31492 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2026-31492

Vulnerability Analysis

This vulnerability exists in the error handling path of the irdma_create_qp function within the Linux kernel's RDMA/irdma driver. The RDMA (Remote Direct Memory Access) subsystem allows for high-performance, low-latency networking by enabling direct memory access between systems without involving the CPU.

When creating a Queue Pair (QP) in the irdma driver, the irdma_create_qp function performs several initialization steps. One critical step involves copying data to userspace via ib_copy_to_udata. If this operation fails, the function enters an error handling path that calls irdma_destroy_qp to clean up any partially initialized resources.

The problem arises because the free_qp completion structure is not initialized before the ib_copy_to_udata call. When irdma_destroy_qp is invoked during error cleanup, it attempts to wait on this uninitialized completion object using a call such as wait_for_completion. Operating on an uninitialized completion structure results in undefined behavior, which can manifest as kernel panics, system hangs, or other stability issues.

Root Cause

The root cause is a missing initialization of the free_qp completion structure in the irdma_create_qp function. The completion object must be initialized using init_completion() before any potential code path could attempt to wait on it. The original code positioned the initialization after the ib_copy_to_udata call, leaving a window where failure of that function would trigger cleanup code that references the uninitialized completion.

Attack Vector

This vulnerability is triggered through the error handling path when RDMA queue pair creation fails. While the attack vector is not fully characterized, it could potentially be exploited by:

  1. A local user with permissions to create RDMA resources causing the ib_copy_to_udata function to fail
  2. Crafting userspace RDMA operations that trigger the specific error condition
  3. Memory exhaustion or other system stress conditions that could cause the copy-to-userspace operation to fail

The fix involves moving the init_completion(&iwqp->free_qp) call to occur before the ib_copy_to_udata invocation, ensuring the completion structure is always properly initialized before any error path could attempt to use it. See the kernel commit 11a95521 for the complete fix implementation.

Detection Methods for CVE-2026-31492

Indicators of Compromise

  • Kernel panic logs referencing irdma_destroy_qp or wait_for_completion functions
  • System hangs during RDMA queue pair creation or destruction operations
  • Kernel oops or BUG messages in system logs related to the irdma driver
  • Unexpected RDMA connection failures accompanied by system instability

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for irdma driver errors or completion-related panics
  • Implement kernel tracing on RDMA subsystem functions to identify abnormal error paths
  • Deploy SentinelOne Singularity platform for real-time kernel-level monitoring and anomaly detection
  • Review audit logs for unusual RDMA resource creation patterns from non-privileged processes

Monitoring Recommendations

  • Configure kernel panic logging to persistent storage to capture crash dumps for analysis
  • Enable RDMA subsystem debugging with echo 1 > /sys/kernel/debug/dynamic_debug/control for irdma module
  • Set up alerting on repeated RDMA queue pair creation failures from the same process
  • Use SentinelOne's kernel visibility features to monitor driver behavior patterns

How to Mitigate CVE-2026-31492

Immediate Actions Required

  • Update the Linux kernel to a version containing the fix (check kernel changelogs for commits 11a95521, 3cb88c12, ac1da7bd, af310407, cd1534c8, or f7299683)
  • If kernel updates cannot be immediately applied, consider temporarily unloading the irdma module if RDMA functionality is not critical
  • Review systems using Intel RDMA adapters and prioritize patching based on exposure
  • Monitor affected systems for signs of instability or kernel panics related to RDMA operations

Patch Information

The vulnerability has been fixed across multiple kernel stable branches. The fix involves initializing the free_qp completion before the ib_copy_to_udata call to ensure proper cleanup can occur on error. Patches are available in the following commits:

  • Linux Kernel Commit 11a95521
  • Linux Kernel Commit 3cb88c12
  • Linux Kernel Commit ac1da7bd
  • Linux Kernel Commit af310407
  • Linux Kernel Commit cd1534c8
  • Linux Kernel Commit f7299683

Workarounds

  • Temporarily disable the irdma kernel module using modprobe -r irdma if RDMA functionality is not required
  • Blacklist the irdma module in /etc/modprobe.d/blacklist.conf to prevent automatic loading
  • Restrict access to RDMA device files to limit exposure to trusted users only
  • Consider using alternative RDMA drivers if available for your hardware
bash
# Disable irdma module temporarily
sudo modprobe -r irdma

# Blacklist irdma module to prevent loading at boot
echo "blacklist irdma" | sudo tee /etc/modprobe.d/blacklist-irdma.conf

# Update initramfs after blacklisting
sudo update-initramfs -u

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 11a95521

  • Linux Kernel Commit 3cb88c12

  • Linux Kernel Commit ac1da7bd

  • Linux Kernel Commit af310407

  • Linux Kernel Commit cd1534c8

  • Linux Kernel Commit f7299683
  • Related CVEs
  • CVE-2026-31745: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43048: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43049: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43056: Linux Kernel Use-After-Free 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