CVE Catalog

CVE-2026-90164

Unknown
Published: Translated: NVD NIST

Summary

In the Linux kernel, the SMB server (ksmbd) function ksmbd_server_init() does not abort initialization when ksmbd_proc_init() fails. ksmbd_proc_init() returns void, so allocation errors are not detected, leading to use of invalid pointers during later calls to ksmbd_proc_reset() and creation of entries in /proc.

Risk Assessment

This can lead to system crashes or malfunction, and to creation of /proc entries that cannot be removed, potentially enabling privilege escalation or system destabilization.

Recommendation

Apply a kernel patch that checks the result of ksmbd_proc_init() and aborts initialization on error.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: smb/server: abort initialization when proc setup fails ksmbd_server_init() calls ksmbd_proc_init() before creating the remaining proc entries and server subsystems. ksmbd_proc_init() tears down partial state on a procfs or percpu_counter allocation failure, but returns void, so ksmbd_server_init() continues as if the counters were usable. Once userspace starts the server, server_ctrl_handle_init() calls ksmbd_proc_reset(), which reaches percpu_counter_set() with a NULL per-CPU counters pointer on SMP systems. The later ksmbd_proc_create() calls also receive a NULL parent and may create entries in the /proc root; ksmbd_proc_cleanup() cannot remove those entries because ksmbd_proc_fs is NULL.

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