CVE-2024-56533
MediumIn the Linux kernel, the following vulnerability has been resolved: ALSA: usx2y: Use snd_card_free_when_closed() at disconnection The USB disconnect callback is supposed to be short and not too-long waiting. OTOH, the current code uses snd_card_free() at disconnection, but this waits for the close of all used fds, hence it can take long. It eventually blocks the upper layer USB ioctls, which may trigger a soft lockup. An easy workaround is to replace snd_card_free() with snd_card_free_when_closed(). This variant returns immediately while the release of resources is done asynchronously by the card device release at the last close.
CVSS 3.1 score
5.5
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Weakness type
CWE-667CVE-2024-56533 is a Improper Locking vulnerability
What is Improper Locking?
The product does not properly acquire or release a lock, which can lead to unexpected behaviour. Learn more on MITRE CWE
Affected versions
Linux kernel versions
2.6.13
and later are affected. Fixed in
5.10.231,
5.15.174,
6.1.120,
6.6.64,
6.11.11,
6.12.2,
6.13
and their respective stable series.
References
The following references provide additional information about CVE-2024-56533 including vendor advisories, patch commits, exploit details, and third-party analysis. Links are sourced from the NIST NVD database.
-
-
-
PatchKernel patch commithttps://git.kernel.org/stable/c/24fe9f7ca83ec9acf765339054951f5cd9ae5c5d
-
PatchKernel patch commithttps://git.kernel.org/stable/c/7bd8838c0ea886679a32834fdcacab296d072fbe
-
PatchKernel patch commithttps://git.kernel.org/stable/c/befcca1777525e37c659b4129d8ac7463b07ef67
Frequently asked questions
-
What is CVE-2024-56533?
CVE-2024-56533 is a Medium severity Linux kernel vulnerability with a CVSS score of 5.5 out of 10 , classified as an Improper Locking flaw (CWE-667) . It affects Linux kernel versions from 2.6.13 onward and has been patched in 5.10.231, 5.15.174, 6.1.120 and others. CVE-2024-56533 has not been confirmed as actively exploited and is not listed in the CISA KEV catalog.
-
What is the CVSS score for CVE-2024-56533?
CVE-2024-56533 has a CVSS score of 5.5 out of 10, rated Medium severity (CVSS 3.1). The vector string is
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H. -
Is there a patch available for CVE-2024-56533?
Yes — CVE-2024-56533 has been patched. Fixed versions include 5.10.231, 5.15.174, 6.1.120 and others. If you are running Linux kernel 2.6.13 or later up to the fix versions, apply the relevant patch for your kernel branch.
-
Is CVE-2024-56533 actively exploited?
No — CVE-2024-56533 has not been confirmed as actively exploited. It is not listed in the CISA Known Exploited Vulnerabilities (KEV) catalog.
-
What is Improper Locking (CWE-667)?
The product does not properly acquire or release a lock, which can lead to unexpected behaviour. View CWE-667 on MITRE CWE →