SEPTEMBER 15, 2026
Live Feed
Back to database
Case File

CVE-2026-89718

UNKNOWN · CVSS N/A EPSS 0.15%

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

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's zram module, specifically in the writeback_store() and read_block_state() functions, which can lead to out-of-bounds memory access due to inconsistent table scan bounds after device reinitialization. If a device is reset with a smaller disksize, the bounds calculated prior to acquiring the device lock may reference outdated data, potentially resulting in memory corruption or system instability. Organizations using Linux systems with zram enabled should prioritize applying the patch to mitigate the risk of exploitation.

CVE
CVE-2026-89718
Severity
UNKNOWN
CVSS
N/A
EPSS
0.15%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: zram: fix out-of-bounds access in writeback_store() Patch series "zram: fix stale scan bounds after reinitialization". Both writeback_store() and read_block_state() derive their table scan bounds from zram->disksize before acquiring dev_lock. If the device is reset and reinitialized with a smaller disksize between that read and lock acquisition, the bound can describe the old table while the scan operates on the new one. This can lead to out-of-bounds slot accesses. Move both bound calculations under dev_lock so each bound remains consistent with the table throughout its scan. Keep the fixes separate because the affected interfaces originate from different commits and can be backported independently. This patch (of 2): writeback_store() calculates the table scan bounds before taking dev_lock. A reset followed by reconfiguration with a smaller disksize can therefore replace zram->table while writeback_store() is waiting for the lock. Once it acquires the lock, it sees an initialized device but scans the new table using the old upper bound, resulting in an out-of-bounds access. Calculate the number of pages while holding dev_lock so the scan bound matches the table protected by the lock.