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

CVE-2026-22990: Linux Kernel libceph BUG_ON Vulnerability

CVE-2026-22990 is a vulnerability in the Linux kernel's libceph component where malicious osdmap corruption can trigger unnecessary system crashes. This article covers the technical details, affected versions, and mitigation.

Published: January 30, 2026

CVE-2026-22990 Overview

A vulnerability has been identified in the Linux kernel's libceph component within the osdmap_apply_incremental() function. The issue stems from an overzealous use of BUG_ON() macro that triggers a kernel panic when processing malformed or maliciously corrupted OSD (Object Storage Daemon) map data. When the incremental osdmap epoch differs from what is expected, the kernel unnecessarily crashes instead of gracefully handling the invalid data.

Critical Impact

Systems running Ceph storage clients can be crashed through maliciously crafted osdmap data, causing denial of service conditions in production environments.

Affected Products

  • Linux Kernel with libceph (Ceph client) module enabled
  • Systems using Ceph distributed storage
  • Multiple kernel stable branches (see patch references)

Discovery Timeline

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

Technical Details for CVE-2026-22990

Vulnerability Analysis

The vulnerability exists in the libceph kernel module, specifically within the osdmap_apply_incremental() function responsible for processing incremental updates to the OSD map. The OSD map is a critical data structure in Ceph that tracks the state and location of storage daemons in the cluster.

The problematic code uses the BUG_ON() macro to validate that the incoming incremental osdmap epoch matches the expected value. While epoch validation is necessary for data integrity, using BUG_ON() represents an overly aggressive error handling approach. The BUG_ON() macro is designed for truly unrecoverable situations and immediately halts the kernel, generating a kernel panic.

In this case, receiving an unexpected epoch value—whether due to network corruption, race conditions, or malicious manipulation—does not represent an unrecoverable state. The proper approach is to treat the incremental osdmap as invalid and reject it gracefully, allowing the system to request a full osdmap refresh.

Root Cause

The root cause is improper use of the BUG_ON() assertion macro for error conditions that should be handled gracefully. The original code assumed that an epoch mismatch could only occur due to a severe programming error, when in reality it can occur due to:

  • Maliciously crafted network packets from a compromised Ceph monitor
  • Data corruption during network transmission
  • Race conditions in osdmap distribution
  • Fuzzing or adversarial inputs targeting the Ceph client

The fix replaces the BUG_ON() with appropriate error handling that marks the incremental osdmap as invalid without crashing the kernel.

Attack Vector

An attacker with the ability to inject or modify network traffic between a Ceph client and monitor could craft malicious osdmap incremental updates with mismatched epoch values. When the vulnerable kernel processes this data, the BUG_ON() triggers, causing an immediate kernel panic and system crash.

The attack requires network access to the Ceph cluster communication path, making it primarily exploitable from:

  • Compromised Ceph monitor nodes
  • Man-in-the-middle positions on the storage network
  • Malicious actors with access to the cluster network segment

Detection Methods for CVE-2026-22990

Indicators of Compromise

  • Unexpected kernel panics with stack traces pointing to osdmap_apply_incremental() in libceph
  • System crashes occurring during Ceph cluster map updates
  • Kernel log entries showing BUG assertions in the ceph module prior to crash
  • Repeated reboots of systems connected to Ceph storage clusters

Detection Strategies

  • Monitor kernel logs for BUG_ON assertions in libceph or ceph-related kernel modules
  • Implement anomaly detection for unexpected Ceph protocol messages with unusual epoch values
  • Track system stability metrics for hosts using Ceph storage to identify crash patterns
  • Deploy kernel crash dump analysis to identify root causes matching this vulnerability signature

Monitoring Recommendations

  • Enable kdump or similar kernel crash dump collection to capture evidence of exploitation attempts
  • Configure centralized logging for kernel messages from systems using Ceph storage
  • Implement network monitoring on Ceph cluster networks to detect anomalous protocol traffic
  • Set up alerting on unexpected system reboots for Ceph client systems

How to Mitigate CVE-2026-22990

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix
  • Review network segmentation for Ceph cluster traffic to limit exposure
  • Ensure Ceph monitor and OSD authentication is properly configured
  • Consider temporarily isolating critical Ceph clients until patches can be applied

Patch Information

Multiple patches have been released for various stable kernel branches. The fix replaces the BUG_ON() with proper error handling that rejects invalid incremental osdmaps without crashing the system. Patches are available through the following kernel commits:

  • Linux Kernel Commit 4b106fb
  • Linux Kernel Commit 6348d70
  • Linux Kernel Commit 6afd2a4
  • Linux Kernel Commit 6c6cec3
  • Linux Kernel Commit 9aa0b0c
  • Linux Kernel Commit d361377
  • Linux Kernel Commit e00c3f7

Workarounds

  • Implement strict network access controls on Ceph cluster networks to prevent unauthorized traffic injection
  • Deploy network intrusion detection to identify potential malicious Ceph protocol manipulation
  • Ensure Ceph authentication (cephx) is enabled and properly configured
  • Consider running Ceph clients on dedicated network segments isolated from untrusted networks
bash
# Example: Verify cephx authentication is enabled in Ceph configuration
grep -E "auth_cluster_required|auth_service_required|auth_client_required" /etc/ceph/ceph.conf
# Expected output should show 'cephx' for all auth settings

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 4b106fb

  • Linux Kernel Commit 6348d70

  • Linux Kernel Commit 6afd2a4

  • Linux Kernel Commit 6c6cec3

  • Linux Kernel Commit 9aa0b0c

  • Linux Kernel Commit d361377

  • Linux Kernel Commit e00c3f7
  • Related CVEs
  • CVE-2026-31439: Linux Kernel XDMA Error Handling Flaw

  • CVE-2026-31441: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31434: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31435: Linux Kernel Read Abandonment 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