SEPTEMBER 14, 2026
Live Feed
Back to database
Case File

CVE-2026-89573

HIGH · CVSS 7.8 EPSS 0.13%

Source: NVD + CISA KEV + EPSS · Published 2026-09-11 · Last synced 2026-09-14

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's dm-cache component, specifically in how it handles array blocks with mismatched value sizes. An attacker could exploit this flaw by crafting metadata that leads to improper memory access, potentially resulting in data corruption or system instability. Organizations utilizing Linux systems, particularly those leveraging dm-cache for storage management, should prioritize addressing this vulnerability to mitigate risks associated with data integrity and system reliability.

CVE
CVE-2026-89573
Severity
HIGH
CVSS
7.8
EPSS
0.13%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: dm array: reject an array block whose value size is not the caller's array_block_check() can only compare the header against itself, so a block with value_size 4 and max_entries 1018 is internally consistent and passes. dm-cache keeps two arrays -- mappings at 8 bytes and hints at 4 -- and the roots for both live in the superblock. Point the mappings root at a hint block and __load_mappings() walks it through an info whose value size is 8, so element_at() strides 8 bytes over 4-byte entries and reaches offset 8160 of a 4096-byte block. get_ablock() and __shadow_ablock() are the two places that hold the block and the caller at once. Reject there when the two value sizes disagree. Arrays only ever read their own blocks, so this fires on crafted metadata only.