CVE-2023-53045
published 2025-05-02CVE-2023-53045: In the Linux kernel, the following vulnerability has been resolved: usb: gadget: u_audio: don't let userspace block driver unbind In the unbind callback for…
PriorityP420medium5.5CVSS 3.1
AVLACLPRLUINSUCNINAH
EPSS
0.14%
4.1th percentile
In the Linux kernel, the following vulnerability has been resolved:
usb: gadget: u_audio: don't let userspace block driver unbind
In the unbind callback for f_uac1 and f_uac2, a call to snd_card_free()
via g_audio_cleanup() will disconnect the card and then wait for all
resources to be released, which happens when the refcount falls to zero.
Since userspace can keep the refcount incremented by not closing the
relevant file descriptor, the call to unbind may block indefinitely.
This can cause a deadlock during reboot, as evidenced by the following
blocked task observed on my machine:
task:reboot state:D stack:0 pid:2827 ppid:569 flags:0x0000000c
Call trace:
__switch_to+0xc8/0x140
__schedule+0x2f0/0x7c0
schedule+0x60/0xd0
schedule_timeout+0x180/0x1d4
wait_for_completion+0x78/0x180
snd_card_free+0x90/0xa0
g_audio_cleanup+0x2c/0x64
afunc_unbind+0x28/0x60
...
kernel_restart+0x4c/0xac
__do_sys_reboot+0xcc/0x1ec
__arm64_sys_reboot+0x28/0x30
invoke_syscall+0x4c/0x110
...
The issue can also be observed by opening the card with arecord and
then stopping the process through the shell before unbinding:
# arecord -D hw:UAC2Gadget -f S32_LE -c 2 -r 48000 /dev/null
Recording WAVE '/dev/null' : Signed 32 bit Little Endian, Rate 48000 Hz, Stereo
^Z[1]+ Stopped arecord -D hw:UAC2Gadget -f S32_LE -c 2 -r 48000 /dev/null
# echo gadget.0 > /sys/bus/gadget/drivers/configfs-gadget/unbind
(observe that the unbind command never finishes)
Fix the problem by using snd_card_free_when_closed() instead, which will
still disconnect the card as desired, but defer the task of freeing the
resources to the core once userspace closes its file descriptor.
Affected
22 ranges
| Vendor | Product | Version range | Fixed in |
|---|---|---|---|
| debian | linux | < linux 6.1.25-1 (bookworm) | linux 6.1.25-1 (bookworm) |
| linux | linux | — | — |
| linux | linux | >= 132fcb460839a876f5bc8b71bede60f8d0875757 < 3e016ef2e72da93a2ea7afbb45de1b481b44d761 | 3e016ef2e72da93a2ea7afbb45de1b481b44d761 |
| linux | linux | >= 132fcb460839a876f5bc8b71bede60f8d0875757 < 3256e152b645fc1e788ba44c2d8ced690113e3e6 | 3256e152b645fc1e788ba44c2d8ced690113e3e6 |
| linux | linux | >= 132fcb460839a876f5bc8b71bede60f8d0875757 < 0eda2004f38d95ef5715d62be884cd344260535b | 0eda2004f38d95ef5715d62be884cd344260535b |
| linux | linux | >= 132fcb460839a876f5bc8b71bede60f8d0875757 < 33f341c1fc60e172a3515c51bdabee11e83d1ee9 | 33f341c1fc60e172a3515c51bdabee11e83d1ee9 |
| linux | linux | >= 132fcb460839a876f5bc8b71bede60f8d0875757 < b131989797f7287d7fdadb2bababc05a15d44750 | b131989797f7287d7fdadb2bababc05a15d44750 |
| linux | linux | >= 132fcb460839a876f5bc8b71bede60f8d0875757 < 3bc7324e4911351e39c54a62e6ca46321cb10faf | 3bc7324e4911351e39c54a62e6ca46321cb10faf |
| linux | linux | >= 132fcb460839a876f5bc8b71bede60f8d0875757 < 43ca70753dfffd517d2af126da28690f8f615605 | 43ca70753dfffd517d2af126da28690f8f615605 |
| linux | linux | >= 132fcb460839a876f5bc8b71bede60f8d0875757 < 6c67ed9ad9b83e453e808f9b31a931a20a25629b | 6c67ed9ad9b83e453e808f9b31a931a20a25629b |
| linux | linux_kernel | — | — |
| linux | linux_kernel | >= 0 < 5.10.178-1 | 5.10.178-1 |
| linux | linux_kernel | >= 0 < 6.1.25-1 | 6.1.25-1 |
| linux | linux_kernel | >= 0 < 6.1.25-1 | 6.1.25-1 |
| linux | linux_kernel | >= 0 < 6.1.25-1 | 6.1.25-1 |
| linux | linux_kernel | >= 3.4 < 4.14.312 | 4.14.312 |
| linux | linux_kernel | >= 4.15 < 4.19.280 | 4.19.280 |
| linux | linux_kernel | >= 4.20 < 5.4.240 | 5.4.240 |
| linux | linux_kernel | >= 5.11 < 5.15.105 | 5.15.105 |
| linux | linux_kernel | >= 5.16 < 6.1.22 | 6.1.22 |
| linux | linux_kernel | >= 5.5 < 5.10.177 | 5.10.177 |
| linux | linux_kernel | >= 6.2 < 6.2.9 | 6.2.9 |
CVSS provenance
nvdv3.15.5MEDIUMCVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
osv5.5MEDIUM
vendor_debian5.5MEDIUM
vendor_redhat5.5MEDIUM
Stop checking back — get the weekly exploitation signal.
Every Monday: what got weaponized or added to CISA KEV in the last seven days — each CVE cross-linked to its PoC, Nuclei template, and detection rule. Free, one email a week, unsubscribe in one click.
Red Hat
kernel: usb: gadget: u_audio: don't let userspace block driver unbind
vendor_redhat·2025-05-02·CVSS 5.5
CVE-2023-53045 [MEDIUM] kernel: usb: gadget: u_audio: don't let userspace block driver unbind
kernel: usb: gadget: u_audio: don't let userspace block driver unbind
In the Linux kernel, the following vulnerability has been resolved:
usb: gadget: u_audio: don't let userspace block driver unbind
In the unbind callback for f_uac1 and f_uac2, a call to snd_card_free()
via g_audio_cleanup() will disconnect the card and then wait for all
resources to be released, which happens when the refcount falls to zero.
Since userspace can keep the refcount incremented by not closing the
relevant file descriptor, the call to unbind may block indefinitely.
This can cause a deadlock during reboot, as evidenced by the following
blocked task observed on my machine:
task:reboot state:D stack:0 pid:2827 ppid:569 flags:0x0000000c
Call trace:
__switch_to+0xc8/0x140
__schedule+0x2f0/0x7c0
schedule+0x60/0xd0
Debian
CVE-2023-53045: linux - In the Linux kernel, the following vulnerability has been resolved: usb: gadget...
vendor_debian·2023·CVSS 5.5
CVE-2023-53045 [MEDIUM] CVE-2023-53045: linux - In the Linux kernel, the following vulnerability has been resolved: usb: gadget...
In the Linux kernel, the following vulnerability has been resolved: usb: gadget: u_audio: don't let userspace block driver unbind In the unbind callback for f_uac1 and f_uac2, a call to snd_card_free() via g_audio_cleanup() will disconnect the card and then wait for all resources to be released, which happens when the refcount falls to zero. Since userspace can keep the refcount incremented by not closing the relevant file descriptor, the call to unbind may block indefinitely. This can cause a deadlock during reboot, as evidenced by the following blocked task observed on my machine: task:reboot state:D stack:0 pid:2827 ppid:569 flags:0x0000000c Call trace: __switch_to+0xc8/0x140 __schedule+0x2f0/0x7c0 schedule+0x60/0xd0 schedule_timeout+0x180/0x1d4 wait_for_completion+0x78/0x180 snd_card_f
GHSA
GHSA-q37h-r28r-j29c: In the Linux kernel, the following vulnerability has been resolved:
usb: gadget: u_audio: don't let userspace block driver unbind
In the unbind call
ghsa_unreviewed·2025-05-02
CVE-2023-53045 [MEDIUM] CWE-667 GHSA-q37h-r28r-j29c: In the Linux kernel, the following vulnerability has been resolved:
usb: gadget: u_audio: don't let userspace block driver unbind
In the unbind call
In the Linux kernel, the following vulnerability has been resolved:
usb: gadget: u_audio: don't let userspace block driver unbind
In the unbind callback for f_uac1 and f_uac2, a call to snd_card_free()
via g_audio_cleanup() will disconnect the card and then wait for all
resources to be released, which happens when the refcount falls to zero.
Since userspace can keep the refcount incremented by not closing the
relevant file descriptor, the call to unbind may block indefinitely.
This can cause a deadlock during reboot, as evidenced by the following
blocked task observed on my machine:
task:reboot state:D stack:0 pid:2827 ppid:569 flags:0x0000000c
Call trace:
__switch_to+0xc8/0x140
__schedule+0x2f0/0x7c0
schedule+0x60/0xd0
schedule_timeout+0x180/0x1d4
wait_for_completion+0x78/0x180
snd_car
OSV
CVE-2023-53045: In the Linux kernel, the following vulnerability has been resolved: usb: gadget: u_audio: don't let userspace block driver unbind In the unbind callba
osv·2025-05-02·CVSS 5.5
CVE-2023-53045 [MEDIUM] CVE-2023-53045: In the Linux kernel, the following vulnerability has been resolved: usb: gadget: u_audio: don't let userspace block driver unbind In the unbind callba
In the Linux kernel, the following vulnerability has been resolved: usb: gadget: u_audio: don't let userspace block driver unbind In the unbind callback for f_uac1 and f_uac2, a call to snd_card_free() via g_audio_cleanup() will disconnect the card and then wait for all resources to be released, which happens when the refcount falls to zero. Since userspace can keep the refcount incremented by not closing the relevant file descriptor, the call to unbind may block indefinitely. This can cause a deadlock during reboot, as evidenced by the following blocked task observed on my machine: task:reboot state:D stack:0 pid:2827 ppid:569 flags:0x0000000c Call trace: __switch_to+0xc8/0x140 __schedule+0x2f0/0x7c0 schedule+0x60/0xd0 schedule_timeout+0x180/0x1d4 wait_for_completion+0x78/0x180 snd_card_f
No detection rules found.
No public exploits indexed.
https://git.kernel.org/stable/c/0eda2004f38d95ef5715d62be884cd344260535bhttps://git.kernel.org/stable/c/3256e152b645fc1e788ba44c2d8ced690113e3e6https://git.kernel.org/stable/c/33f341c1fc60e172a3515c51bdabee11e83d1ee9https://git.kernel.org/stable/c/3bc7324e4911351e39c54a62e6ca46321cb10fafhttps://git.kernel.org/stable/c/3e016ef2e72da93a2ea7afbb45de1b481b44d761https://git.kernel.org/stable/c/43ca70753dfffd517d2af126da28690f8f615605https://git.kernel.org/stable/c/6c67ed9ad9b83e453e808f9b31a931a20a25629bhttps://git.kernel.org/stable/c/b131989797f7287d7fdadb2bababc05a15d44750
2025-05-02
Published