First published: Tue May 21 2024(Updated: )
In the Linux kernel, the following vulnerability has been resolved: udp: fix race between close() and udp_abort() Kaustubh reported and diagnosed a panic in udp_lib_lookup(). The root cause is udp_abort() racing with close(). Both racing functions acquire the socket lock, but udp{v6}_destroy_sock() release it before performing destructive actions. We can't easily extend the socket lock scope to avoid the race, instead use the SOCK_DEAD flag to prevent udp_abort from doing any action when the critical race happens. Diagnosed-and-tested-by: Kaustubh Pandey <kapandey@codeaurora.org>
Credit: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Affected Software | Affected Version | How to fix |
---|---|---|
Red Hat Kernel-devel | ||
Linux Kernel | >=4.9<4.9.274 | |
Linux Kernel | >=4.10<4.14.238 | |
Linux Kernel | >=4.15<4.19.196 | |
Linux Kernel | >=4.20<5.4.128 | |
Linux Kernel | >=5.5<5.10.46 | |
Linux Kernel | >=5.11<5.12.13 | |
Linux Kernel | =5.13-rc1 | |
Linux Kernel | =5.13-rc2 | |
Linux Kernel | =5.13-rc3 | |
Linux Kernel | =5.13-rc4 | |
Linux Kernel | =5.13-rc5 | |
Linux Kernel | =5.13-rc6 |
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.
CVE-2021-47248 is classified with a medium severity level due to the potential for denial of service.
To fix CVE-2021-47248, users should upgrade their Linux kernel to a patched version released by their distribution.
CVE-2021-47248 may lead to a kernel panic in affected systems, disrupting service operation.
CVE-2021-47248 affects multiple versions of the Linux kernel ranging from 4.9 to 5.13-rc6.
The vulnerability CVE-2021-47248 was reported and diagnosed by a researcher named Kaustubh.