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

CVE-2026-45910: Linux Kernel Race Condition Vulnerability

CVE-2026-45910 is a race condition vulnerability in the Linux kernel RDMA/rxe component that affects QP timer handlers and can lead to reference count issues. This article covers technical details, impact, and mitigation.

Published: May 28, 2026

CVE-2026-45910 Overview

CVE-2026-45910 is a race condition vulnerability in the Linux kernel's Soft RoCE (RDMA over Converged Ethernet) driver, specifically in the rxe module located at drivers/infiniband/sw/rxe/. The flaw exists between the retransmit_timer() callback and rxe_destroy_qp(), allowing a Queue Pair's (QP) reference count to drop to zero during timer handler execution. This leads to a use-after-free condition flagged by refcount_t: underflow warnings in the kernel log. The issue affects systems leveraging the software RDMA transport, including ARM64 platforms such as the Raspberry Pi 4 referenced in the original report.

Critical Impact

Concurrent execution of QP timer callbacks and QP destruction can trigger a use-after-free on the QP reference counter, producing kernel warnings and potential memory safety violations in the RDMA subsystem.

Affected Products

  • Linux kernel versions containing the rdma_rxe driver prior to the fix
  • Linux kernel 6.19.0-rc5 confirmed affected in the reported trace
  • Distributions shipping the Soft RoCE (rxe) software RDMA transport

Discovery Timeline

  • 2026-05-27 - CVE CVE-2026-45910 published to NVD
  • 2026-05-27 - Last updated in NVD database

Technical Details for CVE-2026-45910

Vulnerability Analysis

The vulnerability resides in the rdma_rxe driver, which implements RDMA semantics in software over standard Ethernet. The retransmit_timer() function executes asynchronously from the kernel timer subsystem and operates on a Queue Pair object. Concurrently, rxe_destroy_qp() can run on another CPU, invoking __rxe_cleanup() and __rxe_put(), which decrement the QP reference count to zero. When this occurs while the timer handler is still executing, the timer callback subsequently calls rxe_sched_task(), which triggers WARN_ON(rxe_read(task->qp) <= 0) because the reference count has already been released.

Root Cause

The root cause is missing reference counting inside the QP timer callbacks. The timer handler acquires a spinlock but does not take a reference on the QP, so a parallel destruction path can release the final reference while the timer is mid-execution. Once __rxe_put() drops the count to zero, rxe_qp_do_cleanup() proceeds to flush pending work, racing the active timer callback and producing refcount underflow warnings.

Attack Vector

Exploitation requires the ability to create and destroy RDMA Queue Pairs through the Soft RoCE driver, typically available to local processes with access to the /dev/infiniband/ interfaces. The race is triggered by issuing concurrent QP teardown operations while retransmission timers are active. The reporter notes the warning is likely harmless in practice because rxe_qp_do_cleanup() eventually flushes pending timers and requests, however the underflow indicates a genuine memory safety defect that could be weaponized under specific timing conditions.

The vulnerability mechanism is documented in the upstream commit messages. See the Linux Kernel Commit 756c93d6 for the authoritative technical description and patch flow analysis.

Detection Methods for CVE-2026-45910

Indicators of Compromise

  • Kernel log entries containing WARNING: drivers/infiniband/sw/rxe/rxe_task.c at lines 38, 111, or 249
  • refcount_t: underflow; use-after-free warnings originating from refcount_warn_saturate with rxe_sched_task or do_work in the call stack
  • Repeated stack traces involving retransmit_timer+0x130 and call_timer_fn from rdma_rxe

Detection Strategies

  • Monitor dmesg and journalctl -k output for kernel WARN_ON events referencing the rdma_rxe module
  • Audit hosts loading the rdma_rxe kernel module via lsmod | grep rdma_rxe and inventory systems exposing Soft RoCE
  • Correlate workload patterns that create and tear down QPs at high frequency with kernel warnings in centralized logging

Monitoring Recommendations

  • Forward kernel ring buffer events to a centralized log pipeline and alert on rxe_task.c warnings or refcount underflow strings
  • Track loaded kernel modules and version drift across the fleet to identify hosts still running unpatched rdma_rxe
  • Inspect process activity touching /dev/infiniband/ devices and the rdma-core userspace stack for unexpected callers

How to Mitigate CVE-2026-45910

Immediate Actions Required

  • Apply the upstream Linux kernel patches that add rxe_get(qp) and rxe_put(qp) calls around timer callback execution
  • If patching is not immediately feasible, unload the rdma_rxe module on hosts that do not require Soft RoCE functionality
  • Inventory all systems where the rdma_rxe module is loaded at boot and prioritize them for kernel updates

Patch Information

The fix ensures the QP's reference count is held and validity is checked within timer callbacks. The corrective patches have been merged into the stable kernel tree across multiple branches:

  • Linux Kernel Commit 3c2ae79
  • Linux Kernel Commit 5ae9da02
  • Linux Kernel Commit 756c93d6
  • Linux Kernel Commit 87bf6469
  • Linux Kernel Commit da379ca1

Workarounds

  • Blacklist the rdma_rxe module on systems that do not require software RDMA: add blacklist rdma_rxe to /etc/modprobe.d/blacklist-rxe.conf
  • Restrict access to /dev/infiniband/ device nodes to trusted users and services via filesystem permissions
  • Limit creation and destruction of RDMA Queue Pairs to controlled application workloads where timing-sensitive teardown patterns can be avoided
bash
# Configuration example - disable Soft RoCE module where not required
echo "blacklist rdma_rxe" | sudo tee /etc/modprobe.d/blacklist-rxe.conf
sudo rmmod rdma_rxe 2>/dev/null || true
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
  • TypeRace Condition

  • Vendor/TechLinux

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit - 3c2ae79

  • Linux Kernel Commit - 5ae9da02

  • Linux Kernel Commit - 756c93d6

  • Linux Kernel Commit - 87bf6469

  • Linux Kernel Commit - da379ca1
  • Related CVEs
  • CVE-2026-46152: Linux Kernel Race Condition Vulnerability

  • CVE-2026-46137: Linux Kernel Race Condition Vulnerability

  • CVE-2026-45917: Linux Kernel IPVS Race Condition Flaw

  • CVE-2026-31728: Linux Kernel Race Condition 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