CVE-2022-49922: nfc: nfcmrvl: Fix potential memory leak in nfcmrvl_i2c_nci_send()
In the Linux kernel, the following vulnerability has been resolved:
nfc: nfcmrvl: Fix potential memory leak in nfcmrvl_i2c_nci_send()
nfcmrvl_i2c_nci_send() will be called by nfcmrvl_nci_send(), and skb
should be freed in nfcmrvl_i2c_nci_send(). However, nfcmrvl_nci_send()
will only free skb when i2c_master_send() return >=0, which means skb
will memleak when i2c_master_send() failed. Free skb no matter whether
i2c_master_send() succeeds.
Security readout for executives and security teams
Plain-English summary
CVE-2022-49922 is a Linux kernel memory leak in an NFC driver path. A local, low-privileged actor could potentially trigger failed NFC I2C sends and consume memory, affecting availability. There is no source-provided evidence of active exploitation or KEV listing.
Executive priority
Treat as routine-to-priority Linux patching, higher for fleets with NFC hardware, embedded Linux, or kiosk-like devices. It is not currently supported by the sources as an internet-exploited emergency, but availability impact can matter on sensitive systems.
Technical view
The issue is in nfcmrvl_i2c_nci_send(). When i2c_master_send() failed, the socket buffer was not freed, causing a memory leak. The kernel fix frees the skb regardless of send success. CVSS 3.1 is 5.5: local attack vector, low complexity, low privileges, no confidentiality or integrity impact, high availability impact.
Likely exposure
Exposure is most relevant to Linux systems running affected kernel versions with the nfcmrvl NFC I2C driver present or enabled. The source lists Linux 4.4 through 6.1-era affected versions and stable fix commits. Systems without this driver or NFC hardware are likely lower exposure, but validation is required.
Exploitation context
Sources indicate local access and low privileges are required. The practical impact is denial of service through memory exhaustion, not data theft or code execution. The provided sources do not report public exploitation, weaponized exploit availability, or inclusion in CISA KEV.
Researcher notes
The CVE record describes a resolved CWE-401 memory leak in nfcmrvl_i2c_nci_send(). Affected-version data in the bundle is broad and includes stable commit references. Confirm exposure through kernel source/config, module presence, and distribution backports rather than upstream version alone.
Mitigation direction
Update to a vendor kernel containing the referenced stable fixes.
Prioritize systems with NFC hardware or nfcmrvl driver exposure.
If patching is delayed, check vendor guidance for supported workarounds.
Consider disabling unused NFC functionality where operationally safe and vendor-supported.
Validation and detection
Inventory Linux kernel versions across servers, endpoints, and embedded devices.
Check whether nfcmrvl or related NFC I2C driver support is enabled.
Map installed kernels against vendor advisories and stable fix commits.
Confirm patched kernels are installed and running after reboot.
Monitor for unusual memory pressure on potentially exposed systems.
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cwe · low confidence lookup
CWE-401: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
CWE-401 · source CWE mapping
Missing Release of Memory after Effective Lifetime
Missing Release of Memory after Effective Lifetime represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.