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-2022-1975

CVE-2022-1975: Linux Kernel DOS Vulnerability

CVE-2022-1975 is a denial-of-service flaw in the Linux Kernel that allows attackers to crash the system via a sleep-in-atomic bug in NFC netlink code. This article covers technical details, affected versions, and mitigation.

Published: February 17, 2026

CVE-2022-1975 Overview

CVE-2022-1975 is a race condition vulnerability affecting the Linux kernel's NFC (Near Field Communication) netlink subsystem. The vulnerability exists in /net/nfc/netlink.c and manifests as a sleep-in-atomic bug that allows a local attacker to crash the Linux kernel by simulating an NFC device from user-space. This flaw can lead to a denial of service condition, causing system instability or complete system crashes.

Critical Impact

Local attackers can exploit this vulnerability to cause a kernel panic and system crash, resulting in denial of service. The bug occurs when code attempts to sleep (via GFP_KERNEL allocation) while in an atomic context, violating Linux kernel concurrency rules.

Affected Products

  • Linux Kernel version 5.18-rc6
  • Linux Kernel versions with NFC netlink functionality enabled
  • Systems with NFC device simulation capabilities from user-space

Discovery Timeline

  • 2022-08-31 - CVE-2022-1975 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-1975

Vulnerability Analysis

This vulnerability is classified as a race condition, specifically a "sleep-in-atomic" bug. In the Linux kernel, atomic contexts (such as interrupt handlers, spinlock-protected regions, and certain callback functions) are not permitted to perform operations that might sleep or block. The vulnerable code in /net/nfc/netlink.c incorrectly uses GFP_KERNEL flag for memory allocation during a firmware download timeout scenario, which can potentially sleep while waiting for memory to become available.

The flaw allows local users with the ability to simulate NFC devices from user-space to trigger the bug. When the kernel attempts to allocate memory using nlmsg_new() with the GFP_KERNEL flag while in an atomic context, it violates fundamental kernel concurrency constraints, leading to a kernel panic or system crash.

Root Cause

The root cause of this vulnerability is an improper memory allocation flag in the NFC netlink code. The nlmsg_new() function was called with GFP_KERNEL, which allows the kernel to sleep while waiting for memory. However, this function was being called from a context that required atomic (non-sleeping) operations. The fix involves changing the allocation flag from GFP_KERNEL to GFP_ATOMIC, which guarantees the allocation will not sleep.

Attack Vector

The attack vector is local, requiring an attacker to have authenticated access to the target system. The attacker can exploit this vulnerability by:

  1. Simulating an NFC device from user-space
  2. Triggering a firmware download timeout scenario
  3. Causing the kernel to enter the vulnerable code path where the sleep-in-atomic condition occurs
  4. Resulting in a kernel panic and system denial of service

The following patch shows the security fix applied to address this vulnerability:

c
 	struct sk_buff *msg;
 	void *hdr;
 
-	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
+	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
 	if (!msg)
 		return -ENOMEM;

Source: Linux Kernel Commit 4071bf1

Detection Methods for CVE-2022-1975

Indicators of Compromise

  • Unexpected kernel panics or system crashes with call traces involving /net/nfc/netlink.c
  • System logs showing "BUG: sleeping function called from invalid context" messages
  • Kernel oops messages referencing NFC netlink functions
  • Abnormal NFC device simulation activity from unprivileged user accounts

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for sleep-in-atomic warnings or BUG messages related to NFC subsystem
  • Implement audit rules to track NFC-related system calls and netlink socket operations
  • Deploy kernel crash dump analysis to identify exploitation attempts
  • Use kernel tracing tools (ftrace, eBPF) to monitor atomic context violations in NFC code paths

Monitoring Recommendations

  • Configure kernel panic logging to capture detailed stack traces for post-incident analysis
  • Enable kernel debugging options like CONFIG_DEBUG_ATOMIC_SLEEP in development/testing environments to proactively detect similar issues
  • Monitor for unusual user-space processes attempting to interact with NFC subsystem interfaces
  • Implement SentinelOne's Singularity platform for real-time kernel-level threat detection and response

How to Mitigate CVE-2022-1975

Immediate Actions Required

  • Update the Linux kernel to a version containing the security patch (commit 4071bf121d59944d5cd2238de0642f3d7995a997)
  • If immediate patching is not possible, consider disabling NFC functionality if not required
  • Restrict local user access to prevent untrusted users from interacting with NFC subsystems
  • Review and limit permissions for NFC device simulation capabilities

Patch Information

The official fix has been merged into the Linux kernel source tree. The patch modifies /net/nfc/netlink.c to use GFP_ATOMIC instead of GFP_KERNEL for memory allocation in the affected code path. This ensures that the allocation will not sleep, making it safe for use in atomic contexts. System administrators should apply kernel updates from their distribution vendors that include this fix. For reference, the patch is available at the Linux kernel commit repository.

Workarounds

  • Disable NFC support in the kernel by blacklisting NFC-related modules (nfc, nfc_digital, nfc_shdlc)
  • Use kernel module parameters or boot options to prevent NFC module loading
  • Implement access controls to restrict which users can interact with NFC netlink interfaces
  • Consider using SELinux or AppArmor policies to confine NFC-related operations
bash
# Disable NFC kernel modules as a temporary workaround
echo "blacklist nfc" >> /etc/modprobe.d/disable-nfc.conf
echo "blacklist nfc_digital" >> /etc/modprobe.d/disable-nfc.conf
echo "blacklist nfc_shdlc" >> /etc/modprobe.d/disable-nfc.conf

# Unload currently loaded NFC modules (if any)
modprobe -r nfc_digital nfc_shdlc nfc 2>/dev/null

# Verify modules are not loaded
lsmod | grep nfc

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-248

  • NVD-CWE-noinfo
  • Vendor Resources
  • GitHub Linux Commit
  • Related CVEs
  • CVE-2026-31465: Linux Kernel Writeback DoS Vulnerability

  • CVE-2026-31472: Linux Kernel IPTFS DoS Vulnerability

  • CVE-2026-31451: Linux Kernel ext4 DOS Vulnerability

  • CVE-2026-31448: Linux Kernel ext4 DoS 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