CVE-2026-89687

Summary

In the Linux kernel, the following vulnerability has been resolved:

nfsd: ensure nfsd_file_do_acquire() does not use a non-opened file

->atomic_open is permitted to return success without actually opening the file. It indicates this by calling finish_no_open(). This means dentry_create() can return a file which hasn't been opened. This is extremely unlikely as ->atomic_open handlers typically use finish_no_open() only for already existing files, and dentry_create() isn't called in that case, and the parent being locked should prevent races.

However out of an abundance of caution it seems wise to teach nfsd to only use the file returned by dentry_create() if FMODE_OPENED is set, indicating that it has in fact been opened.

Affected Software

VendorProductVersion RangeStatus
LinuxLinux64a989dbd144e0622371396461b11335459692d2 < a95a1cffacd0203100297001719160160f443dd6affected
LinuxLinux64a989dbd144e0622371396461b11335459692d2 < 5859cc01fee06a2cd7458905a9593082fbab06e1affected
LinuxLinux7.0affected
LinuxLinux0 < 7.0unaffected
LinuxLinux7.2.4 <= 7.2.*unaffected
LinuxLinux7.3-rc1 <= *unaffected

Weaknesses

References