First published: Wed Feb 21 2024(Updated: )
In the Linux kernel, the following vulnerability has been resolved: net: tls: handle backlogging of crypto requests Since we're setting the CRYPTO_TFM_REQ_MAY_BACKLOG flag on our requests to the crypto API, crypto_aead_{encrypt,decrypt} can return -EBUSY instead of -EINPROGRESS in valid situations. For example, when the cryptd queue for AESNI is full (easy to trigger with an artificially low cryptd.cryptd_max_cpu_qlen), requests will be enqueued to the backlog but still processed. In that case, the async callback will also be called twice: first with err == -EINPROGRESS, which it seems we can just ignore, then with err == 0. Compared to Sabrina's original patch this version uses the new tls_*crypt_async_wait() helpers and converts the EBUSY to EINPROGRESS to avoid having to modify all the error handling paths. The handling is identical.
Credit: 416baaa9-dc9f-4396-8d5f-8c081fb06d67 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Affected Software | Affected Version | How to fix |
---|---|---|
redhat/kernel | <6.8 | 6.8 |
Linux Kernel | >=4.16.0<6.1.84 | |
Linux Kernel | >=6.2.0<6.6.18 | |
Linux Kernel | >=6.7.0<6.7.6 | |
debian/linux | <=5.10.223-1<=5.10.226-1 | 6.1.123-1 6.1.119-1 6.12.11-1 6.12.12-1 |
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.
CVE-2024-26584 has been categorized as a high-severity vulnerability due to potential impact on cryptographic operations.
To mitigate CVE-2024-26584, update your Linux kernel to version 6.8 or any recommended patched version listed by your distribution.
CVE-2024-26584 affects various versions of the Linux kernel, particularly versions 4.16.0 to 6.7.6 and 6.2.0 to 6.6.18.
CVE-2024-26584 is not considered remotely exploitable, as it requires local access to exploit the vulnerability.
CVE-2024-26584 is classified as a vulnerability related to cryptographic request handling in the Linux kernel.