The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-2025-71149

CVE-2025-71149: Linux Kernel io_uring Poll Vulnerability

CVE-2025-71149 is a poll handling flaw in Linux kernel's io_uring subsystem that causes completion events to be lost during POLL_REMOVE operations. This article covers technical details, affected versions, and fixes.

Published: January 30, 2026

CVE-2025-71149 Overview

A vulnerability has been resolved in the Linux kernel related to the io_uring subsystem's poll mechanism. Specifically, the io_poll_add() function's return value is not correctly handled during POLL_REMOVE operations with updates. When the io_uring core was updated to handle completions consistently with fixed return codes, the POLL_REMOVE opcode with updates became partially broken.

The issue manifests when a POLL_ADD is pending and POLL_REMOVE is used to update the events of that request. If the update causes the POLL_ADD to trigger, the completion is lost and a Completion Queue Entry (CQE) is never posted. Additionally, when an update causes an existing POLL_ADD to complete, the completion value is incorrectly overwritten with -ECANCELED instead of retaining the value set by io_poll_add().

Critical Impact

Applications using io_uring poll operations may experience lost completions and incorrect error codes, potentially leading to application hangs or unexpected behavior in I/O-intensive workloads.

Affected Products

  • Linux Kernel (io_uring subsystem)
  • Systems utilizing io_uring for asynchronous I/O operations
  • Applications depending on POLL_ADD/POLL_REMOVE event handling

Discovery Timeline

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

Technical Details for CVE-2025-71149

Vulnerability Analysis

This vulnerability exists within the Linux kernel's io_uring subsystem, which provides high-performance asynchronous I/O capabilities. The io_uring interface uses submission and completion queues to handle I/O operations efficiently, and poll operations allow applications to wait for events on file descriptors.

The bug was introduced when the io_uring core was refactored to handle completions more consistently with standardized return codes. During this refactoring, the interaction between POLL_ADD and POLL_REMOVE opcodes was inadvertently broken.

The vulnerability creates two distinct failure modes:

  1. Lost Completions: When POLL_REMOVE is used to update the events of a pending POLL_ADD request, and that update triggers the poll condition, the completion notification is lost. The application never receives the CQE it expects, which can cause indefinite waits or application hangs.

  2. Incorrect Error Codes: When an update causes a POLL_ADD to complete, the completion value is unconditionally overwritten with -ECANCELED. This masks the actual result that io_poll_add() intended to return, causing applications to misinterpret successful operations as cancellations.

Root Cause

The root cause lies in improper handling of the return value from io_poll_add() during poll update operations. When the io_uring core was updated for consistent completion handling, the code path for POLL_REMOVE with updates failed to properly propagate the completion status from io_poll_add(). The function's return value indicates whether the poll condition was immediately satisfied, but this information was being discarded or overwritten during update operations.

Attack Vector

This is a logic error vulnerability in the Linux kernel that primarily affects system stability and application correctness rather than security directly. The attack vector involves:

  1. An application using io_uring submits a POLL_ADD request for a file descriptor
  2. Before the poll completes, a POLL_REMOVE operation with an update is issued to modify the events being monitored
  3. If the new event mask causes the poll condition to be immediately satisfied, the completion is lost
  4. The application waits indefinitely for a CQE that will never arrive, or receives an incorrect -ECANCELED status

While this vulnerability does not directly enable privilege escalation or code execution, it could potentially be leveraged as part of a denial-of-service condition by causing critical applications to hang or malfunction.

Detection Methods for CVE-2025-71149

Indicators of Compromise

  • Applications using io_uring experiencing unexplained hangs during poll update operations
  • Increased occurrence of -ECANCELED errors from io_uring poll operations without corresponding cancellation requests
  • Missing CQE entries in io_uring completion queues after POLL_REMOVE with update operations

Detection Strategies

  • Monitor system logs for io_uring-related errors or warnings indicating poll completion anomalies
  • Implement application-level tracing for io_uring operations to identify missing completions
  • Use kernel tracing tools (ftrace, perf) to monitor io_poll_add() return values and CQE posting behavior
  • Deploy SentinelOne Singularity Platform for comprehensive kernel-level monitoring and anomaly detection

Monitoring Recommendations

  • Enable io_uring-specific tracepoints in the kernel for debugging affected systems
  • Monitor application performance metrics for unexpected latency spikes in I/O operations
  • Review application crash dumps and hang reports for patterns consistent with this vulnerability
  • Implement timeout mechanisms in applications using io_uring poll operations as a defensive measure

How to Mitigate CVE-2025-71149

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the fix for this vulnerability
  • Review applications using io_uring poll update functionality for potential exposure
  • Consider implementing application-level workarounds to avoid POLL_REMOVE with updates until patching is complete
  • Monitor critical applications for signs of poll completion loss or incorrect error codes

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix ensures that:

  1. Completions from io_poll_add() during update operations are properly posted to the completion queue
  2. The completion value set by io_poll_add() is retained and not overwritten with -ECANCELED

Multiple kernel commits have been published to address this issue across stable kernel branches:

  • Kernel Git Commit 0126560
  • Kernel Git Commit 13a8f7b
  • Kernel Git Commit 84230ad
  • Kernel Git Commit 8b777ab
  • Kernel Git Commit c1669c0

Workarounds

  • Avoid using POLL_REMOVE with updates on pending POLL_ADD requests until the kernel is patched
  • Implement timeout-based fallback mechanisms in applications to detect and recover from lost completions
  • Consider using alternative polling mechanisms (epoll, select) for critical applications until patching is complete
  • Add application-level retry logic for poll operations that return unexpected -ECANCELED errors
bash
# Check current kernel version
uname -r

# Update kernel on Debian/Ubuntu systems
sudo apt update && sudo apt upgrade linux-image-generic

# Update kernel on RHEL/CentOS systems
sudo yum update kernel

# Verify the patch is applied by checking kernel version after reboot
uname -r

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

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

  • Kernel Git Commit 13a8f7b

  • Kernel Git Commit 84230ad

  • Kernel Git Commit 8b777ab

  • Kernel Git Commit c1669c0
  • Related CVEs
  • CVE-2026-31421: Linux Kernel cls_fw NULL Pointer Vulnerability

  • CVE-2026-31416: Linux Kernel Netfilter Header Vulnerability

  • CVE-2026-31417: Linux Kernel X.25 Overflow Vulnerability

  • CVE-2026-23457: Linux Kernel Integer Truncation 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