CVE Catalog

CVE-2026-64139

MediumCVSS 5.5
Published: Updated: Translated: NVD NIST

Exploitation Probability (EPSS)

Low risk
0.14%

3th percentile - higher than 3% of all known CVEs

Summary

In the Linux kernel, the ksmbd module has a memory leak of struct smb_sid in set_posix_acl_entries_dacl(). When the DACL size exceeds 65535 bytes, the newly added check_add_overflow() guard breaks out of the loop but skips freeing the previously allocated memory, causing a leak.

Risk Assessment

An attacker can craft a file with many POSIX ACL entries to repeatedly trigger kernel memory exhaustion, leading to denial of service (DoS) on the SMB server.

Recommendation

Immediately update the Linux kernel to a version containing the fix for the memory leak in ksmbd. If an update is not possible, temporarily disable SMB via ksmbd or restrict share access to trusted users.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: ksmbd: fix SID memory leak in set_posix_acl_entries_dacl() on overflow Commit 299f962c0b02 ("ksmbd: use check_add_overflow() to prevent u16 DACL size overflow") added check_add_overflow() guards that break out of the ACE-building loops in set_posix_acl_entries_dacl() when the accumulated DACL size would wrap past 65535. However, each iteration allocates a struct smb_sid via kmalloc_obj() at the top of the loop and relies on the kfree(sid) call at the end of the loop body (the 'pass_same_sid' label in the first loop, and the explicit kfree at the tail of the second loop) to release it. The newly introduced 'break' statements bypass those kfree() calls, leaking the sid buffer every time an overflow is detected. A malicious or malformed file with enough POSIX ACL entries to trip the overflow check will leak one or more struct smb_sid allocations on every request that touches the file's DACL, providing a trivial kernel memory exhaustion vector. Free sid before breaking out of the loops to plug the leak.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS