CVE-2026-52947
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedIn the Linux kernel, the following vulnerability has been resolved: net: qrtr: fix refcount saturation and potential UAF in qrtr_port_remove In qrtr_port_remove(), the socket reference count is decremented via __sock_put() before the port is removed from the qrtr_ports XArray and before the RCU grace period elapses. This breaks the fundamental RCU update paradigm. It exposes a race window where a concurrent RCU reader (such as qrtr_reset_ports() or qrtr_port_lookup()) can obtain a pointer to the socket from the XArray, and attempt to call sock_hold() on a socket whose reference count has already dropped to zero. This exact race condition was hit during syzkaller fuzzing, leading to the following refcount saturation warning and a potential Use-After-Free: refcount_t: saturated; leaking memory. WARNING: CPU: 3 PID: 1273 at lib/refcount.c:22 refcount_warn_saturate+0xae/0x1d0 Modules linked in: qrtr(+) bochs drm_shmem_helper ... Call Trace: <TASK> qrtr_reset_ports net/qrtr/af_qrtr.c:768 [inline] [qrtr] __qrtr_bind.isra.0+0x48b/0x570 net/qrtr/af_qrtr.c:805 [qrtr] qrtr_bind+0x17d/0x210 net/qrtr/af_qrtr.c:901 [qrtr] kernel_bind+0xe4/0x120 net/socket.c:3592 qrtr_ns_init+0x1a6/0x380 net/qrtr/ns.c:715 [qrtr] qrtr_proto_init+0x3b/0xff0 net/qrtr/af_qrtr.c:169 [qrtr] do_one_initcall+0xf5/0x5e0 init/main.c:1283 ... </TASK> Fix this by deferring the reference count decrement until after the xa_erase() and the synchronize_rcu() complete. (Note: The v1 of this patch incorrectly replaced __sock_put() with sock_put(). As Simon Horman pointed out, the callers of qrtr_port_remove() still hold a reference to the socket, so freeing the socket memory here would lead to a subsequent UAF in the caller. Thus, the __sock_put() is kept, but only repositioned to close the RCU race.)
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceIn the Linux kernel's QRTR (Qualcomm IPC Router) subsystem, qrtr_port_remove() incorrectly calls __sock_put() to decrement the socket reference count before removing the port from the XArray and before the RCU grace period elapses. This violates RCU semantics and creates a race window where concurrent RCU readers (qrtr_reset_ports() or qrtr_port_lookup()) can obtain a pointer to a socket whose refcount has already dropped to zero, causing refcount saturation and potential Use-After-Free.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.
NVD · CPE data>= 4.7, < 5.10.259>= 5.11, < 5.15.210>= 5.16, < 6.1.176>= 6.2, < 6.6.143>= 6.7, < 6.12.94>= 6.13, < 6.18.36>= 6.19, < 7.0.13= 7.1CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Local
- Complexity
- Low
- Privileges
- Low
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- High
- Integrity
- High
- Availability
- High
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Check kernel version against affected rangesRun 'uname -r' or 'cat /proc/version' to get the kernel version, then compare against: >= 4.7, < 5.10.259; >= 5.11, < 5.15.210; >= 5.16, < 6.1.176; >= 6.2, < 6.6.143; >= 6.7, < 6.12.94; >= 6.13, < 6.18.36; >= 6.19, < 7.0.13; = 7.1Affected if The installed kernel version falls within any of the listed vulnerable ranges
-
Verify QRTR subsystem is built into the kernelCheck if CONFIG_QRTR and CONFIG_QRTR_TUNNEL are set in kernel config: 'cat /boot/config-$(uname -r) | grep -E "CONFIG_QRTR"' or check /proc/config.gz if availableAffected if QRTR support is compiled into the running kernel (CONFIG_QRTR=m or =y)
-
Confirm qrtr_port_remove function exists in kernelSearch for the vulnerable function in kernel symbols: 'grep -r "qrtr_port_remove" /boot/System.map-$(uname -r) 2>/dev/null || cat /proc/kallsyms | grep qrtr_port_remove'Affected if The function qrtr_port_remove is present in the kernel symbol table
-
Verify the RCU race condition exists in source codeIf kernel source is available, inspect net/qrtr/smd.c or net/qrtr/af_qrtr.c for the qrtr_port_remove function - check if __sock_put() is called before xa_erase() without synchronize_rcu() in betweenAffected if The source code shows __sock_put() called before xa_erase() without the intervening synchronize_rcu() that the fix introduces
You are affected if your kernel version is in the vulnerable ranges AND the QRTR subsystem is enabled, because only then can the RCU race in qrtr_port_remove be triggered.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scoped5.10.2595.15.2106.1.176
Apply the kernel patch that moves __sock_put() to after xa_erase() and synchronize_rcu() complete, then update affected systems to the patched kernel version.
5.10.259, 5.15.210, 6.1.176, or 6.6.143 (depending on your current branch)
- Upgrade the Linux kernel to version 5.10.259 or later if running 5.10.x
- Upgrade the Linux kernel to version 5.15.210 or later if running 5.11-5.15.x
- Upgrade the Linux kernel to version 6.1.176 or later if running 5.16-6.1.x
- Upgrade the Linux kernel to version 6.6.143 or later if running 6.2-6.6.x
- After upgrading, verify the fix is present by checking that qrtr_port_remove() calls __sock_put() after xa_erase() and synchronize_rcu()
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation1.0 h
- Implementation2.0 h
- Testing4.0 h
- Review / QA2.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $2,432.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-52947 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-52947 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data