CVE Catalog

CVE-2026-68312

Low risk· EPSS 9%
Published: Updated: Translated: NVD NIST

Exploitation Probability (EPSS)

Low risk
0.19%

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

Summary

In the Linux kernel CIFS subsystem, there is a cifsFileInfo leak when kmalloc fails in deferred close drain paths. After cancelling a pending deferred close, if memory allocation fails, the loop breaks but the cifsFileInfo reference and the open server handle are not released.

Risk Assessment

Memory and handle leaks can lead to exhaustion of system resources, potentially causing system or service failure over time.

Recommendation

Apply the Linux kernel patch that saves the cfile with failed allocation in a local variable and calls _cifsFileInfo_put() after releasing the lock.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: cifs: fix cifsFileInfo leak on kmalloc failure in deferred close drain paths In cifs_close_deferred_file(), cifs_close_all_deferred_files(), and cifs_close_deferred_file_under_dentry(), when a pending deferred close is cancelled via cancel_delayed_work(), the subsequent kmalloc_obj() to add the file to the local processing list may fail under memory pressure. The loop breaks immediately, but the cancelled work is no longer pending (it would have called _cifsFileInfo_put()), and the cfile is never added to file_head for processing. The cifsFileInfo reference and the open server handle both leak. Fix by saving the cfile that failed allocation in a local variable, breaking as before, and calling _cifsFileInfo_put() on it after releasing the lock. Any files later in the iteration are unaffected since their deferred work is still pending and will fire normally.

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