CVE-2024-54683: netfilter: IDLETIMER: Fix for possible ABBA deadlock
In the Linux kernel, the following vulnerability has been resolved:
netfilter: IDLETIMER: Fix for possible ABBA deadlock
Deletion of the last rule referencing a given idletimer may happen at the same time as a read of its file in sysfs:
| ====================================================== | WARNING: possible circular locking dependency detected | 6.12.0-rc7-01692-g5e9a28f41134-dirty #594 Not tainted | ------------------------------------------------------ | iptables/3303 is trying to acquire lock: | ffff8881057e04b8 (kn->active#48){++++}-{0:0}, at: kernfsremove+0x20 | | but task is already holding lock: | ffffffffa0249068 (listmutex){+.+.}-{3:3}, at: idletimertgdestroyv] | | which lock already depends on the new lock.
A simple reproducer is:
| #!/bin/bash | | while true; do | iptables -A INPUT -i foo -j IDLETIMER --timeout 10 --label "testme" | iptables -D INPUT -i foo -j IDLETIMER --timeout 10 --label "testme" | done & | while true; do | cat /sys/class/xtidletimer/timers/testme >/dev/null | done
Avoid this by freeing listmutex right after deleting the element from the list, then continuing with the teardown.
Other sources
This CVE was automatically created from a reference found in an email or other text. If you are reading this, then this CVE entry is probably erroneous, since this text should be replaced by the official CVE description automatically.
— Launchpad
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
debian/linuxto a version that resolves this vulnerability.Fixed in 6.12.27-1 - Upgrade
Upgrade to a fixed release to a version that resolves this vulnerability.
Fixed in 6.6.76.1-1 - Upgrade
Upgrade
Linux kernelto a version that resolves this vulnerability.Fixed in 6.12.0-rc7-01692-g5e9a28f41134-dirty
Event History
Frequently Asked Questions
What is the severity of CVE-2024-54683?
CVE-2024-54683 has not been assigned a specific severity rating, but it addresses a potential deadlock issue within the Linux kernel.
How do I fix CVE-2024-54683?
To fix CVE-2024-54683, update your Linux kernel to the latest version that includes the patch for this vulnerability.
Which versions of the Linux kernel are affected by CVE-2024-54683?
CVE-2024-54683 affects Linux kernel versions between 2.6.36 and 6.6.67, as well as 6.7 to 6.12.6, and specific release candidates 6.13-rc1 and 6.13-rc2.
What type of vulnerability is CVE-2024-54683?
CVE-2024-54683 is a concurrency vulnerability that can lead to a deadlock condition in the netfilter idletimer.
Is there a workaround for CVE-2024-54683?
There are no specific workarounds for CVE-2024-54683; the recommended action is to apply the appropriate kernel update.