CVE Catalog

CVE-2026-97901

Unknown
Published: Translated: NVD NIST

Summary

In the Linux kernel, the gennetlink policy dump keeps pointers to the target family's operation and policy tables in its callback state. The target family's module is not pinned, so it can be unregistered and unloaded while a policy dump is pending. Advancing the dump then dereferences policy memory from the unloaded module.

Risk Assessment

This can lead to a use-after-free and potential kernel code execution or system crash by a local attacker. It affects system stability and security.

Recommendation

Update the Linux kernel to a version containing the fix that pins the target family's module during policy dump. If update is not possible, restrict access to netlink operations.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: genetlink: pin family module during policy dump The generic netlink controller's policy dump keeps pointers to the target family's operation and policy tables in its callback state. A dump may be split across multiple skbs and remain pending after the initial request. Netlink pins the module which owns the dump callback, but in this case that is the controller's owner rather than the target family's owner. The target family can consequently be unregistered and its module unloaded while a policy dump is pending. Advancing the dump then dereferences policy memory from the unloaded module. Take a reference to the target family's module when the dump starts. Drop it from the error and done paths. This matches the lifetime for which the dump context retains the family and policy pointers.

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