CVE-2026-89484
Low risk· EPSS 10%Exploitation Probability (EPSS)
Low risk10th percentile - higher than 10% of all known CVEs
Summary
In the Linux kernel, lockd's nlmclnt_locks_init_private() installs NLM file lock operations even when nlmclnt_find_lockowner() fails to allocate a lockowner. The VFS still tears down the partially initialized file_lock and calls locks_release_private(), which dereferences fl->fl_u.nfs_fl.owner and crashes (NULL dereference). The fix clears fl_ops before initialization and installs NLM operations only after a lockowner is allocated.
Risk Assessment
Can cause a kernel crash (NULL pointer dereference) and denial of service. Affects systems using NFS and lockd under memory pressure.
Recommendation
Update the Linux kernel to a version with the fix that clears fl_ops before initialization. Until patched, monitor memory usage on NFS servers.
Other vulnerabilities in Linux kernel (lockd)
Original NVD description (English source)
In the Linux kernel, the following vulnerability has been resolved: lockd: fix NULL dereference on lockowner allocation failure nlmclnt_locks_init_private() installs NLM file lock operations even when nlmclnt_find_lockowner() fails to allocate a lockowner. nlmclnt_proc() then returns -ENOMEM, but the VFS still tears down the partially initialized file_lock and calls locks_release_private(). That invokes nlmclnt_locks_release_private(), which dereferences fl->fl_u.nfs_fl.owner and crashes because the owner was never installed. Clear fl_ops before attempting to initialize the NLM private state, and install the NLM lock operations only after a lockowner has been allocated successfully.

