CVE Catalog

CVE-2026-80865

Unknown
Published: Translated: NVD NIST

Summary

In the Linux kernel's BPF subsystem, copy_user_syms used __get_user without a prior access_ok call on the user space pointer. This missing check could lead to improper memory access. The fix adds the missing access_ok call for the whole pointer array and simplifies the error path.

Risk Assessment

It could allow unauthorized kernel memory reads or lead to a crash if a user passes an invalid pointer.

Recommendation

Apply the kernel patch that adds an access_ok call in copy_user_syms.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: bpf: Add missing access_ok call to copy_user_syms As reported by sashiko we use __get_user without prior access_ok call on the user space pointer. Adding the missing call for the whole pointer array. Plus removing the err check in the error path, because it's not needed and also we can return -ENOMEM directly from the first kvmalloc_array fail path. [1] https://lore.kernel.org/bpf/[email protected]/

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