CVE-2022-49344: af_unix: Fix a data-race in unix_dgram_peer_wake_me().
In the Linux kernel, the following vulnerability has been resolved:
af_unix: Fix a data-race in unix_dgram_peer_wake_me().
unix_dgram_poll() calls unix_dgram_peer_wake_me() without `other`'s
lock held and check if its receive queue is full. Here we need to
use unix_recvq_full_lockless() instead of unix_recvq_full(), otherwise
KCSAN will report a data-race.
Security readout for executives and security teams
Plain-English summary
CVE-2022-49344 is a Linux kernel race condition in AF_UNIX datagram socket handling. A local, low-privileged user may be able to cause high availability impact. The public record does not show confidentiality or integrity impact, and it is not listed as known exploited in the provided sources.
Executive priority
Handle through normal kernel patch management, with faster scheduling for shared Linux infrastructure. This is not a remote code execution issue in the provided evidence, but availability impact on multi-tenant systems can still create business disruption.
Technical view
The issue is a CWE-362 data race in unix_dgram_peer_wake_me(), where unix_dgram_poll() checks another socket's receive queue without holding that socket's lock. The fix changes the queue-full check to a lockless-safe helper. CVSS is 4.7: local access, high complexity, low privileges, no user interaction, availability impact only.
Likely exposure
Exposure is most relevant on Linux systems running affected kernel builds, especially multi-user hosts, container platforms, shared compute, and servers where untrusted local code can run. Exact exposure depends on distro backports and whether the AF_UNIX stable fixes are included.
Exploitation context
The source bundle does not indicate active exploitation, public weaponization, or CISA KEV listing. Exploitation requires local access, low privileges, and high attack complexity. Treat this primarily as a local denial-of-service risk until vendor-specific evidence says otherwise.
Researcher notes
The public description is narrow and kernel-specific. Validation should focus on whether downstream kernel packages include the stable commits, not only on upstream version labels. The affected-version data in the bundle is incomplete for distro-specific package decisions.
Mitigation direction
Update to a vendor-supported kernel containing the referenced AF_UNIX stable fixes.
Check Linux distribution advisories for backported fixes before relying on upstream version numbers.
Prioritize shared hosts, container platforms, and systems allowing untrusted local users.
Retire unsupported kernels that no longer receive stable security fixes.
Validation and detection
Inventory Linux kernel versions across servers, workstations, and container hosts.
Map installed kernel packages to distro advisories for CVE-2022-49344.
Confirm changelogs include the AF_UNIX unix_dgram_peer_wake_me() race fix.
Review whether untrusted local users or workloads can execute on 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-362: 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-362 · source CWE mapping
Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')
Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition') represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.