Bug 2513398 (CVE-2026-68312) - CVE-2026-68312 kernel: cifs: fix cifsFileInfo leak on kmalloc failure in deferred close drain paths
Summary: CVE-2026-68312 kernel: cifs: fix cifsFileInfo leak on kmalloc failure in defe...
Keywords:
Status: NEW
Alias: CVE-2026-68312
Product: Security Response
Classification: Other
Component: vulnerability
Version: unspecified
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Product Security
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2026-08-10 12:35 UTC by OSIDB Bzimport
Modified: 2026-08-26 13:15 UTC (History)
17 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed:
Embargoed:


Attachments (Terms of Use)

Description OSIDB Bzimport 2026-08-10 12:35:08 UTC
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.

Comment 1 Mauro Matteo Cascella 2026-08-11 18:50:56 UTC
Upstream advisory:
https://lore.kernel.org/linux-cve-announce/2026081032-CVE-2026-68312-6ef4@gregkh/T


Note You need to log in before you can comment on or make changes to this bug.