CVE-2026-97905

Source
https://cve.org/CVERecord?id=CVE-2026-97905
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-97905.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-97905
Downstream
Published
2026-09-25T10:22:31Z
Modified
2026-09-26T03:48:41Z
Summary
cpufreq: zero-initialize policy cpumask before sysfs publication
Details

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

cpufreq: zero-initialize policy cpumask before sysfs publication

cpufreq_policy_alloc() allocates policy->cpus with alloc_cpumask_var(), i.e. without __GFP_ZERO, unlike the sibling related_cpus and real_cpus masks. With CONFIG_CPUMASK_OFFSTACK=y the mask is a separate kmalloc_node() allocation, so its bitmap holds whatever the slab allocator left behind:

cpufreq_online() cpufreq_policy_alloc() alloc_cpumask_var(&policy->cpus) /* bitmap is uninitialized / kobject_init_and_add() / policy%u/ appears in sysfs / cpufreq_policy_online() cpumask_copy(policy->cpus, cpumask_of(cpu)) / first valid value */

This leaves a window in which the sysfs attributes are already reachable while policy->cpus is still garbage. show()/store() gate on policy_is_inactive(), i.e. cpumask_empty(policy->cpus), so a non-zero bitmap makes them run the attribute callbacks on a policy that is not initialized yet.

Fix this by using zalloc_cpumask_var() for policy->cpus.

Database specific
{
    "cna_assigner":  "Linux",
    "osv_generated_from":  "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/97xxx/CVE-2026-97905.json"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
2fc3384dc75bf7333384c7a16d12c796f61c3f56
Fixed
0de2f3918fbbbb767e7e716178194b66560dd12a
Fixed
6e166b9281dec98aed19213a84235250e5fdb081
Fixed
bbc0472d2270bf732142ca71579d6ede636174ed
Fixed
54d37bcf2f497140b9207968557ddb484058e749

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-97905.json"

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
4.2.0
Fixed
6.12.111
Type
ECOSYSTEM
Events
Introduced
6.13.0
Fixed
6.18.53
Type
ECOSYSTEM
Events
Introduced
6.19.0
Fixed
7.2.7

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-97905.json"