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

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

CVE-2026-22980 is a use-after-free vulnerability in the Linux kernel's nfsd component that can cause memory corruption during server shutdown. This article covers technical details, affected versions, and mitigation.

Published: January 30, 2026

CVE-2026-22980 Overview

CVE-2026-22980 is a race condition vulnerability in the Linux kernel's NFS server (nfsd) component that can lead to a use-after-free condition. The vulnerability exists in the v4_end_grace functionality, where writing to v4_end_grace can race with server shutdown, causing memory to be accessed after it has been freed—particularly affecting reclaim_str_hashtbl.

Critical Impact

This use-after-free vulnerability in the Linux kernel NFS daemon can potentially be exploited to cause system instability, denial of service, or potentially arbitrary code execution in kernel context.

Affected Products

  • Linux Kernel (multiple stable versions affected)
  • Systems running NFSv4 server functionality
  • Enterprise Linux distributions with NFS services enabled

Discovery Timeline

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

Technical Details for CVE-2026-22980

Vulnerability Analysis

The vulnerability stems from a race condition between writing to v4_end_grace and server shutdown operations in the Linux kernel's NFS server implementation. When this race condition occurs, the reclaim_str_hashtbl structure and other memory regions may be accessed after they have already been freed during shutdown, resulting in a classic use-after-free scenario.

The complexity of the vulnerability is compounded by the locking constraints in the nfsd subsystem. The nfsd_mutex cannot be held across the nfsd4_end_grace() call because this mutex is held while client_tracking_op->init() is invoked, which can wait for an upcall to nfsdcltrack. If nfsdcltrack then writes to v4_end_grace, a deadlock occurs.

Root Cause

The root cause is the absence of proper synchronization mechanisms to protect the v4_end_grace operation during concurrent server shutdown. The laundromat work queue also calls nfsd4_end_grace(), and while the server shutdown sequence properly waits for this work to complete before freeing resources, writes to v4_end_grace could inadvertently restart the work item after shutdown has already waited for completion.

The fix introduces two new fields in the nfsd_net structure:

  • client_tracking_active - A flag protected by nn->client_lock that indicates when it is safe to make client tracking calls
  • grace_end_forced - Set when v4_end_grace is written, triggering the laundromat scheduling only when client_tracking_active is also set

Attack Vector

The attack vector for this vulnerability requires local access to a system running the NFS server. An attacker with the ability to trigger v4_end_grace writes while simultaneously initiating server shutdown could exploit the race condition.

The vulnerability is triggered when:

  1. A write to v4_end_grace is initiated (potentially via nfsdcltrack upcall)
  2. Concurrently, the NFS server begins shutdown procedures
  3. The race allows memory access to freed structures like reclaim_str_hashtbl

Since no verified code examples are available for this vulnerability, administrators should refer to the kernel commit changes linked in the external references for detailed technical analysis of the vulnerable code paths and the applied fix. The kernel commit 06600719d0f7a and related patches introduce the spinlock-protected flags that prevent the race condition.

Detection Methods for CVE-2026-22980

Indicators of Compromise

  • Unexpected kernel panics or oops messages related to nfsd, nfsd4_end_grace, or reclaim_str_hashtbl
  • System crashes during NFS server shutdown or restart operations
  • Memory corruption signatures in kernel logs pointing to NFS subsystem structures

Detection Strategies

  • Monitor kernel logs for use-after-free warnings or KASAN (Kernel Address Sanitizer) reports related to nfsd
  • Review dmesg output for anomalous behavior during NFS service stop/start cycles
  • Deploy kernel-level monitoring tools to detect memory access violations in the nfsd module

Monitoring Recommendations

  • Enable KASAN on development/test systems to proactively detect use-after-free conditions
  • Implement centralized kernel log aggregation to identify patterns of NFS-related crashes across fleet
  • Configure alerting for kernel oops or panic events specifically mentioning nfsd components

How to Mitigate CVE-2026-22980

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix for this race condition
  • If immediate patching is not possible, consider temporarily disabling NFSv4 grace period forcing via v4_end_grace if operationally feasible
  • Avoid initiating NFS server shutdowns during high-load client recovery periods
  • Review and test NFS server restart procedures in a staging environment before production deployment

Patch Information

Multiple kernel commits have been released to address this vulnerability. The fix adds proper locking mechanisms using the client_tracking_active and grace_end_forced flags protected by nn->client_lock spinlock. Patches are available across multiple stable kernel branches:

  • Commit 06600719d0f7a
  • Commit 2857bd59feb63
  • Commit 34eb22836e0cd
  • Commit 53f07d095e7e6
  • Commit ba4811c8b433b
  • Commit ca97360860eb0
  • Commit e8bfa2401d4c5

Workarounds

  • Implement controlled shutdown procedures that avoid concurrent v4_end_grace writes during server termination
  • Consider using NFS server hot-standby configurations to minimize shutdown frequency on production systems
  • Temporarily disable external triggers that write to v4_end_grace until patching is complete
bash
# Check current kernel version and NFS server status
uname -r
systemctl status nfs-server

# Verify if patched kernel is available
apt list --upgradable linux-image* 2>/dev/null || yum check-update kernel*

# Apply kernel update (Debian/Ubuntu)
apt update && apt upgrade linux-image-$(uname -r | cut -d- -f1,2)

# Apply kernel update (RHEL/CentOS)
yum update kernel

# Reboot to load patched kernel
systemctl reboot

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 Commit Changes

  • Kernel Commit Changes

  • Kernel Commit Changes

  • Kernel Commit Changes

  • Kernel Commit Changes

  • Kernel Commit Changes

  • Kernel Commit Changes
  • 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