Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-22991

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

CVE-2026-22991 is a use-after-free vulnerability in the Linux kernel's libceph component that can cause NULL pointer dereferences during partial memory allocation failures. This article covers technical details, impact, and fixes.

Published: January 30, 2026

CVE-2026-22991 Overview

A NULL pointer dereference vulnerability has been identified in the Linux kernel's libceph component. The vulnerability exists in the free_choose_arg_map() function, which may dereference a NULL pointer if its caller fails after a partial memory allocation. This flaw occurs specifically in the decode_choose_args() function when allocation of arg_map->args fails—execution jumps to the fail label and free_choose_arg_map() is called with an improperly initialized structure.

Critical Impact

A NULL pointer dereference in kernel space can lead to a kernel panic, causing system crashes and denial of service conditions on affected Linux systems running Ceph storage configurations.

Affected Products

  • Linux Kernel (multiple stable versions)
  • Systems utilizing the libceph kernel module
  • Ceph storage cluster client implementations

Discovery Timeline

  • 2026-01-23 - CVE CVE-2026-22991 published to NVD
  • 2026-01-26 - Last updated in NVD database

Technical Details for CVE-2026-22991

Vulnerability Analysis

This vulnerability is a classic NULL pointer dereference resulting from inadequate error handling during memory allocation operations. The root issue lies in the sequencing of operations within decode_choose_args(): the function updates arg_map->size to a non-zero value before actually allocating memory for arg_map->args. When the subsequent memory allocation fails, the cleanup routine free_choose_arg_map() incorrectly assumes the memory was allocated because arg_map->size indicates a non-zero count.

The libceph module is responsible for handling communication between Linux systems and Ceph distributed storage clusters. The CRUSH algorithm (Controlled Replication Under Scalable Hashing) uses choose_arg structures for data placement calculations. When these structures fail to allocate properly during cluster map decoding, the cleanup path becomes vulnerable.

Root Cause

The vulnerability stems from a race between state modification and memory allocation. The arg_map->size field is set prior to the corresponding memory allocation for arg_map->args. When allocation fails:

  1. arg_map->size contains a non-zero value
  2. arg_map->args remains NULL (allocation failed)
  3. free_choose_arg_map() iterates based on size and attempts to access NULL args pointer

The fix adds explicit NULL pointer checks before iterating over arg_map->args, making the cleanup function resilient to partial allocation states regardless of when the failure occurs.

Attack Vector

The attack vector for this vulnerability involves scenarios where memory allocation can be induced to fail during Ceph cluster map decoding operations. While local access would typically be required to trigger memory pressure conditions, systems under heavy memory load or those processing malformed CRUSH map data could potentially encounter this condition. The vulnerability could be triggered through:

  • Memory exhaustion scenarios causing kmalloc failures
  • Processing of malformed or oversized CRUSH map configurations
  • Cluster reconfiguration events during low-memory conditions

Detection Methods for CVE-2026-22991

Indicators of Compromise

  • Kernel panic or oops messages referencing free_choose_arg_map or libceph module functions
  • System crashes occurring during Ceph cluster map updates or client mount operations
  • Kernel log entries showing NULL pointer dereference in the ceph subsystem

Detection Strategies

  • Monitor kernel logs for NULL pointer dereference errors involving libceph components using dmesg or syslog
  • Implement kernel crash dump analysis to identify stack traces pointing to free_choose_arg_map() function
  • Use kernel tracing tools (ftrace, eBPF) to monitor ceph module function calls during cluster operations

Monitoring Recommendations

  • Deploy kernel event monitoring for oops and panic conditions in production environments
  • Configure kdump for automatic kernel crash dump collection to capture forensic evidence
  • Monitor Ceph client connection and map decode operations for anomalous failures

How to Mitigate CVE-2026-22991

Immediate Actions Required

  • Update Linux kernel to patched versions containing the fix for free_choose_arg_map() resilience
  • Review and apply kernel patches from the official Git commits provided by kernel maintainers
  • Consider temporarily reducing memory pressure on affected systems if immediate patching is not possible

Patch Information

Multiple kernel stable branches have received patches to address this vulnerability. The fix adds NULL pointer checks to free_choose_arg_map() before iterating over the args array, ensuring safe cleanup regardless of allocation state.

Official patches are available from the following kernel Git commits:

  • Kernel Git Commit 8081faaf
  • Kernel Git Commit 851241d3
  • Kernel Git Commit 9b3730da
  • Kernel Git Commit c4c2152a
  • Kernel Git Commit e3fe30e5
  • Kernel Git Commit ec1850f6
  • Kernel Git Commit f21c3fdb

Workarounds

  • Unload the libceph kernel module if Ceph storage is not required on affected systems
  • Ensure adequate system memory is available to minimize allocation failure scenarios
  • Consider using userspace Ceph clients (librados) instead of kernel clients until patching is complete
bash
# Check if libceph module is loaded
lsmod | grep ceph

# Unload libceph module if not in use (temporary workaround)
sudo modprobe -r ceph
sudo modprobe -r libceph

# Verify current kernel version
uname -r

# Update kernel to patched version (example for Debian/Ubuntu)
sudo apt update && sudo apt upgrade linux-image-$(uname -r)

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.03%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 8081faaf

  • Kernel Git Commit 851241d3

  • Kernel Git Commit 9b3730da

  • Kernel Git Commit c4c2152a

  • Kernel Git Commit e3fe30e5

  • Kernel Git Commit ec1850f6

  • Kernel Git Commit f21c3fdb
  • Related CVEs
  • CVE-2026-31475: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-31444: 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