CVE-2026-64165 Details
Description
In the Linux kernel, the following vulnerability has been resolved: ARM: integrator: Fix early initialization Starting with commit bdb249fce9ad4 ("ARM: integrator: read counter using syscon/regmap"), intcp_init_early calls syscon_regmap_lookup_by_compatible which in turn calls of_syscon_register. This function allocates memory. Since the memory management code has not been initialized at that time, the call always fails. It either returns -ENOMEM or crashes as follows. Unable to handle kernel NULL pointer dereference at virtual address 0000000c when read [0000000c] *pgd=00000000 Internal error: Oops: 5 [#1] ARM Modules linked in: CPU: 0 UID: 0 PID: 0 Comm: swapper Not tainted 6.15.0-rc5-00026-g5fcc9bf84ee5 #1 PREEMPT Hardware name: ARM Integrator/CP (Device Tree) PC is at __kmalloc_cache_noprof+0xec/0x39c LR is at __kmalloc_cache_noprof+0x34/0x39c ... Call trace: __kmalloc_cache_noprof from of_syscon_register+0x7c/0x310 of_syscon_register from device_node_get_regmap+0xa4/0xb0 device_node_get_regmap from intcp_init_early+0xc/0x40 intcp_init_early from start_kernel+0x60/0x688 start_kernel from 0x0 The crash is seen due to a dereferenced pointer which is not supposed to be NULL but is NULL if the memory management subsystem has not been initialized. The crash is not seen with all versions of gcc. Some versions such as gcc 9.x apparently do not dereference the pointer, presumably if tracing is disabled. The problem has been reproduced with gcc 10.x, 11.x, and 13.x. Either case, if the crash is not seen, the call to syscon_regmap_lookup_by_compatible returns -ENOMEM, and sched_clock_register is never called. Fix the problem by moving the early initialization code into the standard machine initialization code.
A vulnerability in the Linux kernel's ARM Integrator platform has been addressed. The issue arose during early initialization when the 'intcp_init_early' function called 'syscon_regmap_lookup_by_compatible'. This sequence attempted to allocate memory before the memory management system was ready, leading to failures that either returned an error or caused a kernel crash due to a null pointer dereference. This problem was particularly reproducible with certain versions of the GCC compiler, which dereferenced the null pointer under specific conditions. The crash could be avoided, but doing so would prevent the necessary scheduling clock initialization from occurring. The vulnerability has been fixed by relocating the early initialization code to the standard machine initialization phase, ensuring that the memory management system is fully operational before any allocations are attempted.
Users can apply the latest patches from the Linux kernel stable tree to address this vulnerability. Instructions for downloading the patched version are available in the commit references.
Metrics
CVSS 4.0 Severity and Vector Strings:
No CVSS 4.0 data is available for this CVE.
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
No SSVC data is available for this CVE.
References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://git.kernel.org/stable/c/22c738fb51f2d8b23ddff5cc0ccb2dd685bb39d3 | kernel.org | Patch |
| https://git.kernel.org/stable/c/33ad014abec90f37dade0e00560f28864187e21a | kernel.org | Patch |
| https://git.kernel.org/stable/c/508b1193d63b5e073a3fe103eeb785fcba2d368c | kernel.org | Patch |
| https://git.kernel.org/stable/c/58a112b0973f6cd6bcb8c503d1ff88be411ed0f0 | kernel.org | Patch |
| https://git.kernel.org/stable/c/6624854554c4c2bdfed3559e5c11bb03b16e7bd1 | kernel.org | Patch |
| https://git.kernel.org/stable/c/812103fb6da904bd03d62cf6a9826e537318ceed | kernel.org | Patch |
| https://git.kernel.org/stable/c/90d77b30a666049ad24df463f52e5d529c44e8cd | kernel.org | Patch |
| https://git.kernel.org/stable/c/e984dc22e2c24dc34d6728e338c82b1ce7862753 | kernel.org | Patch |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-476 | NULL Pointer Dereference | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | >= 4.9, < 5.10.258 >= 5.11, < 5.15.209 >= 5.16, < 6.1.175 >= 6.2, < 6.6.142 >= 6.7, < 6.12.92 >= 6.13, < 6.18.34 >= 6.19, < 7.0.11 7.1 rc1 7.1 rc2 7.1 rc3 7.1 rc4 |
CPE
Remediation
| |
Change History
2 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Aug 13, 2026 | Initial Analysis | [email protected] |
| Jul 19, 2026 | New CVE Received | kernel.org |