First published: Wed Sep 18 2024(Updated: )
In the Linux kernel, the following vulnerability has been resolved: Squashfs: sanity check symbolic link size Syzkiller reports a "KMSAN: uninit-value in pick_link" bug. This is caused by an uninitialised page, which is ultimately caused by a corrupted symbolic link size read from disk. The reason why the corrupted symlink size causes an uninitialised page is due to the following sequence of events: 1. squashfs_read_inode() is called to read the symbolic link from disk. This assigns the corrupted value 3875536935 to inode->i_size. 2. Later squashfs_symlink_read_folio() is called, which assigns this corrupted value to the length variable, which being a signed int, overflows producing a negative number. 3. The following loop that fills in the page contents checks that the copied bytes is less than length, which being negative means the loop is skipped, producing an uninitialised page. This patch adds a sanity check which checks that the symbolic link size is not larger than expected. -- V2: fix spelling mistake.
Credit: 416baaa9-dc9f-4396-8d5f-8c081fb06d67 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Affected Software | Affected Version | How to fix |
---|---|---|
Linux Kernel | <4.19.322 | |
Linux Kernel | >=4.20<5.4.284 | |
Linux Kernel | >=5.5<5.10.226 | |
Linux Kernel | >=5.11<5.15.167 | |
Linux Kernel | >=5.16<6.1.110 | |
Linux Kernel | >=6.2<6.6.51 | |
Linux Kernel | >=6.7<6.10.10 | |
Linux Kernel | =6.11-rc1 | |
Linux Kernel | =6.11-rc2 | |
Linux Kernel | =6.11-rc3 | |
debian/linux | <=5.10.223-1 | 5.10.234-1 6.1.129-1 6.1.133-1 6.12.21-1 6.12.22-1 |
debian/linux-6.1 | 6.1.129-1~deb11u1 |
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.
CVE-2024-46744 has been classified as a moderate severity vulnerability affecting the Linux kernel.
CVE-2024-46744 affects various versions of the Linux kernel, specifically versions below 5.10.226 and certain ranges between 4.19 and 6.11-rc3.
To fix CVE-2024-46744, upgrade your Linux kernel to version 5.10.226 or above, or to the specific remedied versions according to your Linux distribution.
CVE-2024-46744 is caused by an uninitialized page resulting from a corrupted symbolic link size read in the Squashfs component of the Linux kernel.
Yes, CVE-2024-46744 can potentially be exploited by attackers to manipulate symbolic links, leading to unauthorized access or system instability.