Skip to main content

Linux Kernel CVE-2026-64165

| EUVDEUVD-2026-45850 MEDIUM
NULL Pointer Dereference (CWE-476)
2026-07-19 Linux GHSA-w8wx-87mq-w4r7
5.5
CVSS 3.1 · NVD
Share

Severity by source

NVD PRIMARY
5.5 MEDIUM
AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
vuln.today AI
5.1 MEDIUM

Crash requires specific ARM Integrator/CP hardware (AC:H); occurs in swapper PID 0 before any authentication context exists (PR:N); only availability impact.

3.1 AV:L/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
4.0 AV:L/AC:H/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
SUSE
MEDIUM
qualitative

Primary rating from NVD.

CVSS VectorNVD

Attack Vector
Local
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High

Lifecycle Timeline

5
Analysis Generated
Aug 13, 2026 - 16:12 vuln.today
CVSS changed
Aug 13, 2026 - 15:37 NVD
5.5 (MEDIUM)
Patch available
Jul 19, 2026 - 17:03 EUVD
CVE Published
Jul 19, 2026 - 15:40 cve.org
UNKNOWN (no severity yet)
CVE Published
Jul 19, 2026 - 15:40 nvd
MEDIUM 5.5

DescriptionNVD

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.

AnalysisAI

Early boot initialization on ARM Integrator/CP hardware in the Linux kernel triggers a NULL pointer dereference by invoking memory allocation routines before the memory management subsystem is operational, causing a kernel panic that renders affected systems unbootable. The regression was introduced by commit bdb249fce9ad4 and affects all Linux stable branches from that point through patched releases (5.10.258, 5.15.209, 6.1.175, 6.6.142, 6.12.92, 6.18.34, 7.0.11, 7.1). No public exploit exists, CISA KEV does not list this vulnerability, and EPSS sits at 0.17% (7th percentile), reflecting the narrowly scoped, hardware-specific nature of the defect.

Technical ContextAI

The vulnerability (CWE-476: NULL Pointer Dereference) originates in the ARM Integrator/CP platform driver within the Linux kernel. Commit bdb249fce9ad4 modified intcp_init_early - a callback executed extremely early in boot from start_kernel before memory management is initialized - to call syscon_regmap_lookup_by_compatible. That function chains into of_syscon_register, which calls __kmalloc_cache_noprof to allocate heap memory. Because the SLAB/page allocator is not yet active at this phase, the allocator either returns NULL (causing a dereference of offset 0x0000000c, an uninitialized struct field) or returns -ENOMEM, silently skipping sched_clock_register. The call trace confirms the path: start_kernel → intcp_init_early → device_node_get_regmap → of_syscon_register → __kmalloc_cache_noprof. CPE cpe:2.3:a:linux:linux:*:*:*:*:*:*:*:* covers all affected stable branches. The crash is compiler-dependent: gcc 10.x, 11.x, and 13.x reproduce it; gcc 9.x apparently avoids the dereference, though the silent -ENOMEM path still causes incorrect initialization.

RemediationAI

The primary fix is to upgrade to a patched Linux kernel: 5.10.258, 5.15.209, 6.1.175, 6.6.142, 6.12.92, 6.18.34, 7.0.11, or 7.1. Stable-tree patch commits are available at https://git.kernel.org/stable/c/22c738fb51f2d8b23ddff5cc0ccb2dd685bb39d3, https://git.kernel.org/stable/c/812103fb6da904bd03d62cf6a9826e537318ceed, and six additional backport commits referenced in the CVE. Ubuntu users should apply USN-8575-1 via standard package management. For systems that cannot be patched immediately, a compensating control is to build the kernel without ARM Integrator/CP platform support (disable CONFIG_ARCH_INTEGRATOR or omit the Integrator machine descriptor); the trade-off is loss of hardware support entirely. Alternatively, using a gcc 9.x toolchain may avoid the crash (the pointer is not dereferenced) but will still silently skip sched_clock_register, leaving the scheduler clock unregistered - a functional defect with performance implications. Neither workaround substitutes for the upstream fix.

Vendor StatusVendor

SUSE

Severity: Moderate
Product Status
SUSE Linux Enterprise Desktop 15 SP7 Not-Affected
SUSE Linux Enterprise Desktop 15 SP7 Not-Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Not-Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Not-Affected
SUSE Linux Enterprise High Availability Extension 16.0 Not-Affected

Share

CVE-2026-64165 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy