DEBIAN-CVE-2024-56619
In the Linux kernel, the following vulnerability has been resolved: nilfs2: fix potential out-of-bounds memory access in nilfs_find_entry() Syzbot reported that when searching for records in a directory where the inode's i_size is corrupted and has a large value, memory access outside the folio/page range may occur, or a use-after-free bug may be detected if KASAN is enabled. This is because nilfs_last_byte(), which is called by nilfs_find_entry() and others to calculate the number of valid bytes of directory data in a page from i_size and the page index, loses the upper 32 bits of the 64-bit size information due to an inappropriate type of local variable to which the i_size value is assigned. This caused a large byte offset value due to underflow in the end address calculation in the calling nilfs_find_entry(), resulting in memory access that exceeds the folio/page size. Fix this issue by changing the type of the local variable causing the bit loss from "unsigned int" to "u64". The return value of nilfs_last_byte() is also of type "unsigned int", but it is truncated so as not to exceed PAGE_SIZE and no bit loss occurs, so no change is required.
Risk Scores
Affected Products
| Vendor | Product | Versions |
|---|---|---|
| Debian:11 | linux | 5.10.162-1, 5.10.127-1, 5.10.127-2 |
| Debian:12 | linux | 6.1.76-1, 0, 6.1.106-1 |
| Debian:13 | linux | 0, 0 |
| Debian:11 | linux-6.1 | 0, 6.1.106-3~deb11u2, 6.1.112-1~deb11u1 |
| Debian:14 | linux | 0, 0 |
Timeline
- Dec 27, 2024 CVE Published
- Apr 28, 2026 CVE Updated