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

CVE-2026-46127: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-46127 is a buffer overflow flaw in the Linux kernel's RDMA/ocrdma module that causes NULL pointer dereferences during error handling. This article covers the technical details, affected versions, and mitigation.

Published: May 28, 2026

CVE-2026-46127 Overview

CVE-2026-46127 is a NULL pointer dereference vulnerability in the Linux kernel's RDMA/ocrdma driver. The flaw resides in the ocrdma_copy_pd_uresp() function, where the pd->uctx pointer is referenced in error-handling paths before it is initialized. When an error condition triggers these paths, the kernel dereferences a NULL pointer and crashes.

The issue affects systems using the Emulex OneConnect RDMA (ocrdma) driver for InfiniBand and RoCE workloads. Exploitation requires triggering an error during protection domain (PD) user-response copy operations, which can lead to a kernel panic and denial of service [CWE-476].

Critical Impact

Triggering the error path in ocrdma_copy_pd_uresp() causes a kernel NULL pointer dereference, resulting in a system crash and denial of service for affected hosts.

Affected Products

  • Linux kernel builds containing the drivers/infiniband/hw/ocrdma RDMA driver
  • Systems using Emulex OneConnect adapters with RDMA/RoCE enabled
  • Distributions shipping unpatched stable kernel branches prior to the fix commits

Discovery Timeline

  • 2026-05-28 - CVE-2026-46127 published to NVD
  • 2026-05-28 - Last updated in NVD database

Technical Details for CVE-2026-46127

Vulnerability Analysis

The ocrdma_copy_pd_uresp() function in the ocrdma driver constructs a user-space response describing a newly allocated protection domain. The function builds the response structure and copies it to the calling user context. Error-handling branches in this function reference pd->uctx to perform cleanup actions.

The problem is ordering. The pd->uctx field is not assigned until later in the function body. Any error that triggers before that assignment leaves pd->uctx as NULL. Cleanup code then dereferences this NULL pointer and crashes the kernel.

The upstream fix replaces references to pd->uctx in the error paths with the local uctx variable, which is valid throughout the function. This eliminates the NULL dereference without changing the cleanup logic.

Root Cause

The root cause is a use-before-initialization bug in error handling. Developers wrote cleanup code that assumed pd->uctx was populated, but the assignment to that field occurs only on the success path near the end of the function. Compilers and static analyzers did not flag the issue because the pointer is reachable through a valid object reference.

Attack Vector

The attack vector is local. A user with permission to open an ocrdma device file and issue RDMA verbs can request a protection domain allocation. Triggering an error during the user-response copy step, such as by providing crafted parameters or exhausting kernel resources, forces execution into the vulnerable error branch. The resulting kernel crash denies service to all workloads on the host. The vulnerability has not been reported as exploited in the wild and is not listed in the CISA KEV catalog.

No public proof-of-concept code is available. Technical details are documented in the upstream patch commits referenced below.

Detection Methods for CVE-2026-46127

Indicators of Compromise

  • Kernel oops or panic messages referencing ocrdma_copy_pd_uresp in the call stack
  • BUG: unable to handle kernel NULL pointer dereference entries in dmesg or /var/log/kern.log tied to RDMA operations
  • Unexpected reboots on hosts running RDMA workloads with Emulex OneConnect adapters

Detection Strategies

  • Inventory kernel versions across Linux hosts and flag systems running the ocrdma driver without the fix commits applied
  • Monitor kernel crash dumps and kdump artifacts for stack traces involving ocrdma_copy_pd_uresp() or surrounding ocrdma functions
  • Audit RDMA verb usage by non-root users on hosts that expose /dev/infiniband/uverbs* device nodes

Monitoring Recommendations

  • Forward kernel logs to a centralized log platform and alert on NULL pointer dereference events linked to RDMA modules
  • Track repeated process terminations or daemon restarts on RDMA-enabled servers that correlate with kernel faults
  • Review system uptime metrics for unexpected reboots on hosts handling InfiniBand or RoCE traffic

How to Mitigate CVE-2026-46127

Immediate Actions Required

  • Apply the upstream kernel patches that replace pd->uctx references with the local uctx variable in ocrdma_copy_pd_uresp()
  • Update to a stable Linux kernel release that contains the fix commits and reboot affected hosts
  • Restrict access to /dev/infiniband/uverbs* device files to trusted users and service accounts only

Patch Information

The vulnerability is resolved across multiple stable branches. Refer to the upstream commits for the exact code change:

  • Kernel Git Commit 34fbf48
  • Kernel Git Commit 75fc130
  • Kernel Git Commit 8832626
  • Kernel Git Commit e01a957
  • Kernel Git Commit ec44c00

Apply the vendor-supplied kernel update from your Linux distribution once it incorporates these commits.

Workarounds

  • Unload the ocrdma kernel module on hosts that do not require RDMA over Emulex OneConnect adapters using modprobe -r ocrdma
  • Blacklist the ocrdma module in /etc/modprobe.d/ to prevent automatic loading until a patched kernel is deployed
  • Limit local user access on systems that must keep ocrdma enabled, since the vulnerability requires local interaction with RDMA device nodes
bash
# Blacklist the ocrdma module until a patched kernel is installed
echo 'blacklist ocrdma' | sudo tee /etc/modprobe.d/blacklist-ocrdma.conf
sudo modprobe -r ocrdma
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
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

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

  • Kernel Git Commit 75fc130

  • Kernel Git Commit 8832626

  • Kernel Git Commit e01a957

  • Kernel Git Commit ec44c00
  • Related CVEs
  • CVE-2026-46237: Linux Kernel Buffer Overflow Vulnerability

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

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

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