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

CVE-2025-71079: Linux Kernel NFC Race Condition Flaw

CVE-2025-71079 is a race condition flaw in the Linux kernel NFC subsystem causing deadlock between nfc_unregister_device and rfkill_fop_write. This article covers technical details, affected versions, and fixes.

Updated: January 22, 2026

CVE-2025-71079 Overview

A deadlock vulnerability has been identified in the Linux kernel's NFC (Near Field Communication) subsystem. The vulnerability exists due to a lock ordering inversion between device_lock and rfkill_global_mutex in the interaction between nfc_unregister_device() and rfkill_fop_write() functions. This creates a classic ABBA deadlock scenario that can cause system hangs and denial of service conditions.

Critical Impact

This vulnerability can lead to system deadlock conditions when concurrent NFC device operations occur, potentially causing denial of service on affected Linux systems with NFC hardware enabled.

Affected Products

  • Linux Kernel (NFC subsystem)
  • Linux systems with NFC hardware and rfkill support enabled

Discovery Timeline

  • 2026-01-13 - CVE CVE-2025-71079 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-71079

Vulnerability Analysis

This vulnerability represents a Deadlock condition in the Linux kernel's NFC subsystem. The deadlock occurs due to improper lock ordering between two critical synchronization primitives: device_lock and rfkill_global_mutex.

When two threads attempt to acquire these locks in opposite orders simultaneously, neither thread can proceed, resulting in a system deadlock. This can cause the affected system to become unresponsive, requiring a hard reboot to recover.

The vulnerability specifically affects the NFC device unregistration path when it races with rfkill write operations. The deadlock manifests when Thread A (executing rfkill_fop_write()) holds rfkill_global_mutex and waits for device_lock, while Thread B (executing nfc_unregister_device()) holds device_lock and waits for rfkill_global_mutex.

Root Cause

The root cause is a lock ordering inversion between two kernel synchronization mechanisms:

Thread A execution path (rfkill_fop_write):

  1. Acquires rfkill_global_mutex
  2. Calls rfkill_set_block()
  3. Calls nfc_rfkill_set_block()
  4. Calls nfc_dev_down()
  5. Attempts to acquire device_lock (blocked)

Thread B execution path (nfc_unregister_device):

  1. Acquires device_lock
  2. Calls rfkill_unregister()
  3. Attempts to acquire rfkill_global_mutex (blocked)

This creates the classic ABBA deadlock pattern where each thread holds a lock that the other thread needs, and neither can proceed.

Attack Vector

The attack vector for this vulnerability involves triggering concurrent NFC device operations. An attacker with local access to a system with NFC hardware could potentially trigger this deadlock by:

  1. Initiating rfkill operations on NFC devices (via /dev/rfkill or rfkill sysfs interfaces)
  2. Simultaneously triggering NFC device unregistration events
  3. The race condition between these operations can lead to the deadlock state

While this requires local access and specific timing, it could be exploited for denial of service attacks on systems where NFC functionality is critical.

Detection Methods for CVE-2025-71079

Indicators of Compromise

  • System hangs or freezes when performing NFC-related operations
  • Kernel lockup warnings in system logs related to NFC or rfkill subsystems
  • Unresponsive rfkill commands or NFC device management tools
  • Kernel soft lockup messages mentioning nfc_unregister_device or rfkill_fop_write

Detection Strategies

  • Monitor kernel logs for deadlock warnings involving NFC and rfkill subsystems
  • Implement watchdog monitoring to detect system hangs during NFC operations
  • Use lockdep (Linux kernel lock dependency validator) to detect lock ordering issues
  • Monitor for extended D-state (uninterruptible sleep) processes related to NFC operations

Monitoring Recommendations

  • Enable kernel lock debugging (CONFIG_PROVE_LOCKING) to detect lock ordering violations
  • Configure system watchdogs to alert on kernel soft lockups
  • Monitor /var/log/kern.log and dmesg output for NFC-related warnings
  • Implement automated system health checks that include NFC subsystem status

How to Mitigate CVE-2025-71079

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the fix
  • If immediate patching is not possible, consider disabling NFC functionality on affected systems
  • Monitor systems for signs of deadlock conditions and implement automated recovery mechanisms
  • Review system configurations to identify critical systems using NFC hardware

Patch Information

The fix has been committed to the Linux kernel stable trees. The patch moves rfkill_unregister() and rfkill_destroy() outside the device_lock critical section by storing the rfkill pointer in a local variable before releasing the lock. This maintains thread safety while eliminating the deadlock condition.

Patches are available through the following kernel commits:

  • Kernel Commit 1ab526d
  • Kernel Commit 6b93c8a
  • Kernel Commit 8fc4632
  • Kernel Commit ee41f4f
  • Kernel Commit f3a8a7c

Workarounds

  • Disable NFC functionality by blacklisting NFC kernel modules (e.g., blacklist nfc in /etc/modprobe.d/)
  • Use rfkill to persistently disable NFC hardware: rfkill block nfc
  • Limit access to rfkill interfaces to reduce attack surface
  • Implement system monitoring with automatic reboot capabilities for deadlock recovery
bash
# Configuration example
# Disable NFC kernel modules as a workaround
echo "blacklist nfc" >> /etc/modprobe.d/disable-nfc.conf
echo "blacklist nfc_hci" >> /etc/modprobe.d/disable-nfc.conf

# Alternatively, use rfkill to block NFC devices
rfkill block nfc

# Verify NFC is disabled
rfkill list nfc

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

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

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

  • Linux Kernel Commit Log

  • Linux Kernel Commit Log

  • Linux Kernel Commit Log

  • Linux Kernel Commit Log
  • Related CVEs
  • CVE-2026-23440: Linux Kernel Race Condition Vulnerability

  • CVE-2026-23434: Linux Kernel Race Condition Vulnerability

  • CVE-2026-23436: Linux Kernel Race Condition Vulnerability

  • CVE-2026-23463: Linux Kernel QBMAN Race Condition Flaw
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