VYPR
Unrated severityNVD Advisory· Published Dec 24, 2025· Updated Apr 15, 2026

CVE-2023-54056

CVE-2023-54056

Description

In the Linux kernel, the following vulnerability has been resolved:

kheaders: Use array declaration instead of char

Under CONFIG_FORTIFY_SOURCE, memcpy() will check the size of destination and source buffers. Defining kernel_headers_data as "char" would trip this check. Since these addresses are treated as byte arrays, define them as arrays (as done everywhere else).

This was seen with:

$ cat /sys/kernel/kheaders.tar.xz >> /dev/null

detected buffer overflow in memcpy kernel BUG at lib/string_helpers.c:1027! ... RIP: 0010:fortify_panic+0xf/0x20 [...] Call Trace:

ikheaders_read+0x45/0x50 [kheaders] kernfs_fop_read_iter+0x1a4/0x2f0 ...

AI Insight

LLM-synthesized narrative grounded in this CVE's description and references.

A Linux kernel buffer overflow (CVE-2023-54056) occurs when reading kernel headers because the kheaders data variable is declared as a single char, causing FORTIFY_SOURCE to trigger a false BUG.

The vulnerability lies in the Linux kernel's kheaders module, which exposes kernel headers as a compressed tar archive via /sys/kernel/kheaders.tar.xz. The global variable kernel_headers_data was declared as a single char instead of a proper byte array, causing the FORTIFY_SOURCE protection mechanism to misinterpret the intended array size when memcpy() operations are performed on it.

To exploit this, a user with local access can simply read the sysfs file /sys/kernel/kheaders.tar.xz. When the kernel's ikheaders_read function copies the kernel headers data, the FORTIFY_SOURCE check sees the destination as a one-byte buffer and triggers a false positive buffer overflow detection, leading to a kernel panic.

The impact is a local denial of service. An unprivileged local user can trigger a kernel BUG (machine check exception) and crash the system by issuing a simple cat command on the exposed sysfs file. This does not require any special capabilities beyond the ability to read the sysfs node.

The fix changes the declaration of kernel_headers_data to an array (e.g., extern char kernel_headers_data[]), which correctly conveys the object's length to FORTIFY_SOURCE checks. Patched versions are available in the stable kernel trees; users should apply the corresponding commit for their kernel version [1][2][3].

AI Insight generated on May 19, 2026. Synthesized from this CVE's description and the cited reference URLs; citations are validated against the source bundle.

Affected products

1

Patches

7

Vulnerability mechanics

Generated on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

7

News mentions

0

No linked articles in our index yet.