Answer in brief
CVE-2026-89723 records a Unknown severity vulnerability in nilfs2: fix slab-out-of-bounds in nilfs_direct_propagate after truncation. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=36a580eb489f54d81a0534974962e732a314b999 <5d3783c451a546373662ee11ec17019273e68034 || >=36a580eb489f54d81a0534974962e732a314b999 <448636c745a3f3b8582a0b8ce718c890a11c0fa9 || >=36a580eb489f54d81a0534974962e732a314b999 <28362e8ce51377afdec1782e661e808328a10514 || >=36a580eb489f54d81a0534974962e732a314b999 <45662dedb8f272ef7f16e69f13424c4bd0399240 | 5d3783c451a546373662ee11ec17019273e68034, 448636c745a3f3b8582a0b8ce718c890a11c0fa9, 28362e8ce51377afdec1782e661e808328a10514, 45662dedb8f272ef7f16e69f13424c4bd0399240 |
| Linux/Linuxgeneric | 2.6.30 | Not reported |
Published upstream
Sep 11, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Sep 11, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Sep 11, 2026
In the Linux kernel, the following vulnerability has been resolved: nilfs2: fix slab-out-of-bounds in nilfs_direct_propagate after truncation Shuangpeng Bai reported that KASAN detected a slab-out-of-bounds error in nilfs_direct_propagate() during testing. Analysis revealed that after truncating a file, a node block immediately below the B-tree root was not deleted. Instead, it remained in the B-tree node cache in a dirty state. The log writer subsequently detected this block and incorrectly invoked nilfs_direct_propagate() on it, which is designed to handle only data blocks in direct mapping. B-tree nodes in the cache are managed by virtual block numbers, and their logical keys typically exceed the range expected by direct mapping. Consequently, processing such a node as a direct mapping entry triggers a slab-out-of-bounds access. The root cause is that when a B-tree mapping collapses into a direct mapping during truncation, an intermediate node block pointed to by the root node is left behind as garbage instead of being explicitly deleted. This resolves the issue by adding a nilfs_btree_discard() operation to delete the remaining intermediate node block during the conversion. A 'deform' flag is added to the bop_delete interface to explicitly signal that the deletion is part of a mapping transformation. This allows the B-tree mapping implementation to perform the necessary cleanup and discarding of the residual node structure that would be otherwise be left orphaned after the transition.
Quoted source text, attributed separately from HOL analysis.