Ubuntu-focal-kernel/sound
Takashi Iwai 48c22d7172 ALSA: Fix deadlocks with kctl removals at disconnection
BugLink: https://bugs.launchpad.net/bugs/2061091

In snd_card_disconnect(), we set card->shutdown flag at the beginning,
call callbacks and do sync for card->power_ref_sleep 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 snd_power_ref_and_wait() in
  snd_ctl_info() or read/write() inside card->controls_rwsem.

* The system gets disconnected meanwhile, and the driver tries to
  delete a kctl via snd_ctl_remove*(); 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 wait_event() call at the right
timing.  While we're at it, just to be sure, call wait_event_all()
instead of wait_event(), although we don't use exclusive events on
this queue for now.

Link: https://bugzilla.kernel.org/show_bug.cgi?id=218816
Cc: <stable@vger.kernel.org>
Reviewed-by: Jaroslav Kysela <perex@perex.cz>
Link: https://lore.kernel.org/r/20240510101424.6279-1-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
(backported from commit 87988a534d8e12f2e6fc01fe63e6c1925dc5307c)
[gjiang: context change]
Signed-off-by: Guoqing Jiang <guoqing.jiang@canonical.com>
Acked-by: Thibault Ferrante <thibault.ferrante@canonical.com>
Acked-by: Philip Cox <philip.cox@canonical.com>
Acked-by: Chris Chiu <chris.chiu@canonical.com>
Acked-by: Andrei Gherzan <andrei.gherzan@canonical.com>
Signed-off-by: Roxana Nicolescu <roxana.nicolescu@canonical.com>
2024-07-05 10:51:50 +02:00
..
ac97
aoa
arm
atmel
core ALSA: Fix deadlocks with kctl removals at disconnection 2024-07-05 10:51:50 +02:00
drivers treewide: Replace DECLARE_TASKLET() with DECLARE_TASKLET_OLD() 2023-07-10 17:22:08 +02:00
firewire ALSA: firewire-digi00x: prevent potential use after free 2023-08-09 12:25:30 +02:00
hda ALSA: hda: Fix possible null-ptr-deref when assigning a stream 2024-02-02 14:13:08 +01:00
i2c ALSA: i2c/cs8427: fix iec958 mixer control deactivation 2023-07-10 17:22:10 +02:00
isa treewide: Remove uninitialized_var() usage 2023-08-09 12:25:41 +02:00
mips
oss
parisc
pci ALSA: hda/realtek: Update Panasonic CF-SZ6 quirk to support headset with microphone 2024-06-07 15:01:40 +02:00
pcmcia
ppc
sh ALSA: sh: aica: reorder cleanup operations to avoid UAF bugs 2024-06-07 15:01:37 +02:00
soc ASoC: ops: Fix wraparound for mask in snd_soc_get_volsw 2024-06-07 15:01:40 +02:00
sparc
spi
synth ALSA: emux: Avoid potential array out-of-bound in snd_emux_xg_control() 2023-04-18 17:21:01 +02:00
usb ALSA: usb-audio: Stop parsing channels bits when all channels are found. 2024-06-07 15:01:30 +02:00
x86
xen
Kconfig um: Fix hostaudio build errors 2023-10-30 11:42:15 +01:00
Makefile
ac97_bus.c
last.c
sound_core.c