CVE-2026-52996 Details
Description
In the Linux kernel, the following vulnerability has been resolved: ksmbd: fix durable fd leak on ClientGUID mismatch in durable v2 open ksmbd_lookup_fd_cguid() returns a ksmbd_file with its refcount incremented via ksmbd_fp_get(). parse_durable_handle_context() in the DURABLE_REQ_V2 case properly releases this reference on every path inside the ClientGUID-match branch, either by calling ksmbd_put_durable_fd() or by transferring ownership to dh_info->fp for a successful reconnect. However, when an entry exists in the global file table with the same CreateGuid but a different ClientGUID, the code simply falls through to the new-open path without dropping the reference obtained from ksmbd_lookup_fd_cguid(). Per MS-SMB2 section 3.3.5.9.10 ("Handling the SMB2_CREATE_DURABLE_HANDLE_REQUEST_V2 Create Context"), the server MUST locate an Open whose Open.CreateGuid matches the request's CreateGuid AND whose Open.ClientGuid matches the ClientGuid of the connection that received the request. If no such Open is found, the server MUST continue with the normal open execution phase. A CreateGuid hit with a ClientGUID mismatch is therefore the "Open not found" case: proceeding with a new open is correct, but the reference obtained purely as a side effect of the lookup must not be leaked. Repeated requests that hit this mismatch pin global_ft entries, prevent __ksmbd_close_fd() from ever running for the corresponding files, and defeat the durable scavenger, leading to long-lived resource leaks. Release the reference in the mismatch path and clear dh_info->fp so subsequent logic does not mistake a non-matching lookup result for a reconnect target.
A vulnerability in the Linux kernel's ksmbd component has been addressed, which involved a leak of durable file descriptors due to mismatches in ClientGUID during durable v2 open operations. The issue arose because the function ksmbd_lookup_fd_cguid() would increment the reference count of a ksmbd_file object, but this reference was not properly released when a global file table entry with a matching CreateGuid but different ClientGUID was encountered. This oversight led to persistent resource leaks, as the pinned file table entries prevented the closure of file descriptors and disrupted the intended scavenging of durable handles. The vulnerability has been fixed by ensuring that the reference is released in mismatch cases, thereby allowing for proper management of file descriptors and resources.
Users can upgrade to the latest version of the Linux kernel where this vulnerability has been fixed. Instructions for downloading the patched version are available on the Linux kernel official website.
Metrics
CVSS 4.0 Severity and Vector Strings:
No CVSS 4.0 data is available for this CVE.
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
No SSVC data is available for this CVE.
References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://git.kernel.org/stable/c/06f709d0e531f3e54d88665dd426be3998a774e6 | kernel.org | Patch |
| https://git.kernel.org/stable/c/407b6e699ba8b45b72cc265eed8a1bc8a7191609 | kernel.org | Patch |
| https://git.kernel.org/stable/c/804054d19886ac6628883d82410f6ee42a818664 | kernel.org | Patch |
| https://git.kernel.org/stable/c/8c4a0ef19c8264c150833131af34541495832cd0 | kernel.org | Patch |
| https://git.kernel.org/stable/c/f31beef633fbf2b5af7805fa187a10bcff1d4b49 | kernel.org | Patch |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-401 | Missing Release of Memory after Effective Lifetime | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | >= 6.6.32, < 6.6.141 >= 6.9, < 6.12.91 >= 6.13, < 6.18.33 >= 6.19, < 7.0.10 |
CPE
Remediation
| |
Change History
2 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Jul 15, 2026 | Initial Analysis | [email protected] |
| Jun 24, 2026 | New CVE Received | kernel.org |