First published: Wed Apr 17 2024(Updated: )
In the Linux kernel, the following vulnerability has been resolved: bpf: Fix hashtab overflow check on 32-bit arches The hashtab code relies on roundup_pow_of_two() to compute the number of hash buckets, and contains an overflow check by checking if the resulting value is 0. However, on 32-bit arches, the roundup code itself can overflow by doing a 32-bit left-shift of an unsigned long value, which is undefined behaviour, so it is not guaranteed to truncate neatly. This was triggered by syzbot on the DEVMAP_HASH type, which contains the same check, copied from the hashtab code. So apply the same fix to hashtab, by moving the overflow check to before the roundup.
Credit: 416baaa9-dc9f-4396-8d5f-8c081fb06d67 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Affected Software | Affected Version | How to fix |
---|---|---|
Linux Kernel | >=3.19<4.19.311 | |
Linux Kernel | >=4.20<5.4.273 | |
Linux Kernel | >=5.5<5.10.214 | |
Linux Kernel | >=5.11<5.15.153 | |
Linux Kernel | >=5.16<6.1.83 | |
Linux Kernel | >=6.2<6.6.23 | |
Linux Kernel | >=6.7<6.7.11 | |
Linux Kernel | >=6.8<6.8.2 | |
debian/linux | 5.10.223-1 5.10.226-1 6.1.123-1 6.1.119-1 6.12.10-1 6.12.11-1 |
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.
The severity of CVE-2024-26884 is classified as high due to its potential impact on system stability and security.
To fix CVE-2024-26884, upgrade the Linux kernel to one of the patched versions such as 5.10.223-1 or 6.1.123-1.
CVE-2024-26884 affects multiple versions of the Linux kernel from 3.19 to 6.8.2.
Yes, CVE-2024-26884 addresses an issue with hashtab overflow checks that can lead to vulnerabilities on 32-bit architectures.
CVE-2024-26884 involves an overflow check in the hashtab code that incorrectly assumes the result will not be zero.