First published: Mon Jul 29 2024(Updated: )
In the Linux kernel, the following vulnerability has been resolved: io_uring: fix possible deadlock in io_register_iowq_max_workers() The io_register_iowq_max_workers() function calls io_put_sq_data(), which acquires the sqd->lock without releasing the uring_lock. Similar to the commit 009ad9f0c6ee ("io_uring: drop ctx->uring_lock before acquiring sqd->lock"), this can lead to a potential deadlock situation. To resolve this issue, the uring_lock is released before calling io_put_sq_data(), and then it is re-acquired after the function call. This change ensures that the locks are acquired in the correct order, preventing the possibility of a deadlock.
Credit: 416baaa9-dc9f-4396-8d5f-8c081fb06d67 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Affected Software | Affected Version | How to fix |
---|---|---|
Linux Kernel | <6.9.11 | |
debian/linux | <=5.10.223-1 | 5.10.234-1 6.1.129-1 6.1.128-1 6.12.20-1 6.12.21-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.
The severity of CVE-2024-41080 is categorized as a moderate impact due to the potential for a deadlock in the Linux kernel.
To fix CVE-2024-41080, it is recommended to update to the latest patched versions of the Linux kernel provided by your distribution.
CVE-2024-41080 affects Linux kernel versions prior to 5.10.226 and certain patched versions within the 6.1 series.
CVE-2024-41080 is not considered a remote exploit vulnerability, as it primarily involves local conditions leading to a deadlock.
The function io_register_iowq_max_workers() is involved in the deadlock issue identified in CVE-2024-41080 within the Linux kernel's io_uring subsystem.