CVE-2026-97926
Received Received - Intake

ufs: Cylinder Group Metadata Validation Flaw

Vulnerability report for CVE-2026-97926, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-09-25

Last updated on: 2026-09-25

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: ufs: validate cylinder group metadata before caching it ufs_read_cylinder() copies the cylinder group index and the rotor positions straight from the on-disk group and caches them without any check: ucpi->c_cgx = fs32_to_cpu(sb, ucg->cg_cgx); ucpi->c_rotor = fs32_to_cpu(sb, ucg->cg_rotor); ucpi->c_frotor = fs32_to_cpu(sb, ucg->cg_frotor); ucpi->c_irotor = fs32_to_cpu(sb, ucg->cg_irotor); They are then used as indices during allocation and free: - c_cgx indexes the cylinder summary array as UFS_SB(sb)->fs_cs(ucpi->c_cgx), so a value past s_ncg writes a 32 bit count outside the s_csp allocation. - c_frotor becomes a bitmap scan start, start = c_frotor >> 3, and then length = ((s_fpg + 7) >> 3) - start. A start beyond the block bitmap wraps the unsigned length to a huge value, so ubh_scanc() walks far past the cylinder group buffers. c_irotor drives the inode bitmap the same way. A crafted image can set any of these freely, turning an ordinary allocation into an out of bounds access. Reject a cylinder group whose recorded index does not match the group being read, or whose rotors fall outside the group, before the metadata is cached. Valid filesystems keep cg_cgx equal to the group number and the rotors within the group, so only malformed images are rejected.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-09-25
Last Modified
2026-09-25
Generated
2026-09-25
AI Q&A
2026-09-25
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Currently, no data is known.

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability in the Linux kernel involves the UFS filesystem not validating cylinder group metadata before caching it. The kernel copies values like cylinder group index and rotor positions directly from disk without checks, leading to potential out-of-bounds memory access when these values are used later for allocation or bitmap operations.

Detection Guidance

This vulnerability affects the UFS filesystem in the Linux kernel. Detection requires checking if your system is running a vulnerable kernel version. Use uname -a to check the kernel version. If the version is below the patched release, the system is likely vulnerable. Inspect UFS filesystem metadata for corruption or inconsistencies using fsck.ufs or similar tools.

Impact Analysis

An attacker could exploit this by crafting a malicious filesystem image that sets invalid cylinder group or rotor values. This could cause the kernel to access memory outside allocated buffers, potentially leading to crashes, data corruption, or privilege escalation if exploited.

Mitigation Strategies

Update the Linux kernel to the latest patched version immediately. Avoid mounting or using UFS filesystems from untrusted sources. If UFS is not required, consider disabling the UFS module. Monitor kernel security advisories for further updates.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-97926. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart