CVE-2024-38600

Source
https://cve.org/CVERecord?id=CVE-2024-38600
Import Source
https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2024-38600.json
JSON Data
https://api.test.osv.dev/v1/vulns/CVE-2024-38600
Downstream
Related
Published
2024-06-19T13:45:48.635Z
Modified
2026-03-20T12:37:09.591063Z
Summary
ALSA: Fix deadlocks with kctl removals at disconnection
Details

In the Linux kernel, the following vulnerability has been resolved:

ALSA: Fix deadlocks with kctl removals at disconnection

In sndcarddisconnect(), we set card->shutdown flag at the beginning, call callbacks and do sync for card->powerrefsleep waiters at the end. The callback may delete a kctl element, and this can lead to a deadlock when the device was in the suspended state. Namely:

  • A process waits for the power up at sndpowerrefandwait() in sndctlinfo() or read/write() inside card->controls_rwsem.

  • The system gets disconnected meanwhile, and the driver tries to delete a kctl via sndctlremove*(); it tries to take card->controls_rwsem again, but this is already locked by the above. Since the sleeper isn't woken up, this deadlocks.

An easy fix is to wake up sleepers before processing the driver disconnect callbacks but right after setting the card->shutdown flag. Then all sleepers will abort immediately, and the code flows again.

So, basically this patch moves the waitevent() call at the right timing. While we're at it, just to be sure, call waiteventall() instead of waitevent(), although we don't use exclusive events on this queue for now.

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2024/38xxx/CVE-2024-38600.json"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
e94fdbd7b25d87e64688bb109e2c550217a4c879
Fixed
ff80185e7b7b547a0911fcfc8aefc61c3e8304d7
Fixed
c2fb439f4f1425a961d20bec818fed2c2d9ef70a
Fixed
2f103287ef7960854808930499d1181bd0145d68
Fixed
88ce3fe255d58a93624b467af036dc3519f309c7
Fixed
6b55e879e7bd023a03888fc6c8339edf82f576f4
Fixed
87988a534d8e12f2e6fc01fe63e6c1925dc5307c

Database specific

source
"https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2024-38600.json"