Answer in brief
CVE-2024-58094 records a High severity (CVSS 7.8) vulnerability in jfs: add check read-only before truncation in jfs_truncate_nolock(). 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.
| Product | Affected versions | Fixed versions |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:2.6.12:-:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:2.6.12:rc2:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:2.6.12:rc3:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:2.6.12:rc4:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:2.6.12:rc5:*:*:*:*:*:* | Not reported | Not reported |
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <f605bc3e162f5c6faa9bd3602ce496053d06a4bb || >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <b5799dd77054c1ec49b0088b006c9908e256843b | f605bc3e162f5c6faa9bd3602ce496053d06a4bb, b5799dd77054c1ec49b0088b006c9908e256843b |
| Linux/Linuxgeneric | 2.6.12 | Not reported |
| Linux/Linuxgeneric | >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <b98506e61e1bb6764c6711198cfab826df8ca952 || >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <1fee021d6cf1d41b3f6e3fd028939be8f5d5c5db || >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <b57a8983916fc2cf54fd8de3afc733c6b3d1c0e5 || >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <41da1715cd24e177678f93ee27f737b095fc838b || >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <77038187890ea82d237b05c8a9c4e08a38b1efcb || >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <f605bc3e162f5c6faa9bd3602ce496053d06a4bb || >=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <b5799dd77054c1ec49b0088b006c9908e256843b | b98506e61e1bb6764c6711198cfab826df8ca952, 1fee021d6cf1d41b3f6e3fd028939be8f5d5c5db, b57a8983916fc2cf54fd8de3afc733c6b3d1c0e5, 41da1715cd24e177678f93ee27f737b095fc838b, 77038187890ea82d237b05c8a9c4e08a38b1efcb, f605bc3e162f5c6faa9bd3602ce496053d06a4bb, b5799dd77054c1ec49b0088b006c9908e256843b |
Published upstream
Apr 16, 2025
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Sep 2, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 5, 2026
In the Linux kernel, the following vulnerability has been resolved: jfs: add check read-only before truncation in jfs_truncate_nolock() Added a check for "read-only" mode in the `jfs_truncate_nolock` function to avoid errors related to writing to a read-only filesystem. Call stack: block_write_begin() { jfs_write_failed() { jfs_truncate() { jfs_truncate_nolock() { txEnd() { ... log = JFS_SBI(tblk->sb)->log; // (log == NULL) If the `isReadOnly(ip)` condition is triggered in `jfs_truncate_nolock`, the function execution will stop, and no further data modification will occur. Instead, the `xtTruncate` function will be called with the "COMMIT_WMAP" flag, preventing modifications in "read-only" mode.
Quoted source text, attributed separately from HOL analysis.