Answer in brief
CVE-2026-68145 records a High severity (CVSS 7.8) vulnerability in iomap: fix out-of-bounds bitmap_set() with zero-length range. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), 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.
CVSS is 7.8. 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), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=4ce02c67972211be488408c275c8fbf19faf29b3 <fb4fad9105c88b1d82f1b3c39e3b6abea8249af6 || >=4ce02c67972211be488408c275c8fbf19faf29b3 <7037e7bdcd26f46c080b8ce307dee5cb471c4b7c || >=4ce02c67972211be488408c275c8fbf19faf29b3 <c5b6a48a8a716a7730e39af1cad083dc4ec955ce || >=4ce02c67972211be488408c275c8fbf19faf29b3 <9c7d8f7c8994c790fca501dc45ce66e7356cbe05 | fb4fad9105c88b1d82f1b3c39e3b6abea8249af6, 7037e7bdcd26f46c080b8ce307dee5cb471c4b7c, c5b6a48a8a716a7730e39af1cad083dc4ec955ce, 9c7d8f7c8994c790fca501dc45ce66e7356cbe05 |
| Linux/Linuxgeneric | 6.6 | Not reported |
| Linux/Linuxgeneric | >=4ce02c67972211be488408c275c8fbf19faf29b3 <48829622212f6b8f49155889aecc818ba28ba680 || >=4ce02c67972211be488408c275c8fbf19faf29b3 <fb4fad9105c88b1d82f1b3c39e3b6abea8249af6 || >=4ce02c67972211be488408c275c8fbf19faf29b3 <7037e7bdcd26f46c080b8ce307dee5cb471c4b7c || >=4ce02c67972211be488408c275c8fbf19faf29b3 <c5b6a48a8a716a7730e39af1cad083dc4ec955ce || >=4ce02c67972211be488408c275c8fbf19faf29b3 <9c7d8f7c8994c790fca501dc45ce66e7356cbe05 | 48829622212f6b8f49155889aecc818ba28ba680, fb4fad9105c88b1d82f1b3c39e3b6abea8249af6, 7037e7bdcd26f46c080b8ce307dee5cb471c4b7c, c5b6a48a8a716a7730e39af1cad083dc4ec955ce, 9c7d8f7c8994c790fca501dc45ce66e7356cbe05 |
Published upstream
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 23, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 10, 2026
In the Linux kernel, the following vulnerability has been resolved: iomap: fix out-of-bounds bitmap_set() with zero-length range ifs_set_range_dirty() and ifs_set_range_uptodate() compute last_blk as (off + len - 1) >> i_blkbits. When off is 0 and len is 0, the unsigned subtraction underflows to SIZE_MAX, producing a huge last_blk and nr_blks value that causes bitmap_set() to write far beyond the ifs->state allocation. Regarding ifs_set_range_uptodate(), it is temporarily safe because len cannot be passed in as 0. However, for ifs_set_range_dirty() this is reachable from __iomap_write_end(): when copy_folio_from_iter_atomic() returns 0 (e.g. user buffer fault) and the folio is already uptodate, the guard at the top of __iomap_write_end() does not trigger because !folio_test_uptodate() is false, and iomap_set_range_dirty() is called with copied == 0. Add a !len guard to both functions before the computation, so that a zero-length range is a no-op.
Quoted source text, attributed separately from HOL analysis.