CVE Catalog

CVE-2026-43376

Critical
Published: Translated: NVD NIST

Summary

A vulnerability has been identified in the Linux kernel within ksmbd, related to a use-after-free error due to immediate freeing of the oplock_info structure. This issue occurs when the pointer is nullified without a grace period delay in RCU, allowing access to already freed memory.

Risk Assessment

This vulnerability may lead to unpredictable system behavior, including potential crashes or security breaches, as an attacker could exploit access to freed memory.

Recommendation

It is recommended to update the Linux kernel to the latest version where a fix has been implemented using call_rcu() for deferred memory freeing.

Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: ksmbd: fix use-after-free by using call_rcu() for oplock_info ksmbd currently frees oplock_info immediately using kfree(), even though it is accessed under RCU read-side critical sections in places like opinfo_get() and proc_show_files(). Since there is no RCU grace period delay between nullifying the pointer and freeing the memory, a reader can still access oplock_info structure after it has been freed. This can leads to a use-after-free especially in opinfo_get() where atomic_inc_not_zero() is called on already freed memory. Fix this by switching to deferred freeing using call_rcu().

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