CVE-2026-93224
Received Received - Intake

Memory Leak in Linux Kernel svcrdma Module

Vulnerability report for CVE-2026-93224, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-09-24

Last updated on: 2026-09-25

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: svcrdma: Fix unmatched rn_unregister on failed accept When svc_rdma_accept() takes the errout path before rpcrdma_rn_register() has succeeded, the existing cleanup block calls rpcrdma_rn_unregister(dev, &newxprt->sc_rn) unconditionally. svcxprt_rdma is kzalloc'd, so on that path sc_rn.rn_index is 0 and sc_rn.rn_done is NULL; the unregister therefore xa_erase()s another caller's slot 0 and performs an unmatched kref_put() on the rpcrdma_device's rd_kref. The same errout also brackets the cleanup with svc_xprt_get()/ svc_xprt_put() around the kref_init() birth reference. The kref goes 1 -> 2 -> 1 and never reaches 0, so the svcxprt_rdma (and the net/ns_tracker it pinned) is leaked on every failed accept. rpcrdma_rn_register() writes rn->rn_done last, only after xa_alloc() and kref_get() have both succeeded, so rn_done == NULL is a natural "never registered" sentinel. Guard rpcrdma_rn_unregister() with an early return when rn_done is NULL, and clear rn_done before the matching xa_erase() so a repeated unregister is also a no-op. With that guard in place, the accept errout drops the kref_init() birth reference via svc_xprt_put(), which dispatches svc_rdma_free(). Teardown of sc_qp, sc_sq_cq, sc_rq_cq, and sc_pd runs under existing IS_ERR/NULL guards in svc_rdma_free(); sc_rn is covered by the new rn_done sentinel; sc_cm_id is non-NULL on every errout path because svc_rdma_accept() dereferences it above the first goto errout. svc_xprt_free() drops the module reference associated with the freed transport, and svc_handle_xprt() drops its pre-acquired reference when ->xpo_accept() returns NULL. Take a replacement module reference before svc_xprt_put() so the two module_put()s remain balanced. The rn_done guard also covers svc_rdma_free()'s non-listener call to rpcrdma_rn_unregister() for transports whose register attempt failed or never ran.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-09-24
Last Modified
2026-09-25
Generated
2026-09-25
AI Q&A
2026-09-24
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
linux linux_kernel *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This is a Linux kernel vulnerability where a memory leak occurs during failed RDMA (Remote Direct Memory Access) connection acceptances. When svc_rdma_accept() fails before completing registration, cleanup code incorrectly unregisters another process's memory slot and fails to release a reference counter, causing a resource leak.

Detection Guidance

This vulnerability is specific to the Linux kernel's svcrdma module and involves memory leaks during failed RDMA connection attempts. Detection requires checking kernel logs for svcrdma-related errors or examining kernel memory usage patterns for unexpected growth in svcxprt_rdma structures. No direct network commands detect this, but monitoring tools like dmesg, journalctl, or kernel tracing may reveal issues.

Impact Analysis

The vulnerability causes memory leaks in the Linux kernel during RDMA operations. This could lead to gradual system resource exhaustion, potentially causing performance degradation or system instability over time if many failed RDMA connections occur.

Compliance Impact

This vulnerability is a memory leak in the Linux kernel's svcrdma module during failed RDMA connection accepts. It does not directly affect data confidentiality, integrity, or availability in a way that would violate GDPR or HIPAA compliance requirements. The issue involves resource exhaustion but does not expose or alter sensitive data.

Mitigation Strategies

Apply the kernel patch that resolves this issue. Update to a Linux kernel version containing the fix for CVE-2026-93224. If patching is not immediately possible, disable the svcrdma service if not required, though this may impact NFS over RDMA functionality.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-93224. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart