* [PATCH] ASoC: soc-compress: fix use-after-free in soc_compr_trigger_fe() during BE list traversal
[not found] <CGME20260604065510epcas2p4867ac51f94ba7385d72849b573b44976@epcas2p4.samsung.com>
@ 2026-06-04 6:55 ` Shinhyung Kang
2026-06-16 20:42 ` Mark Brown
0 siblings, 1 reply; 2+ messages in thread
From: Shinhyung Kang @ 2026-06-04 6:55 UTC (permalink / raw)
To: 'Takashi Iwai', alsa-devel, broonie
The DPCM compress trigger path traverses the FE's BE client list in
dpcm_be_dai_trigger() without holding card->pcm_mutex, while
dpcm_be_disconnect() can concurrently remove and free entries from
that same list under pcm_mutex protection.
This causes a use-after-free when for_each_dpcm_be() advances to the
next list node after releasing a BE's stream lock between iterations,
and the snd_soc_dpcm entry has already been kfree()'d by a concurrent
dpcm_be_disconnect() call.
Crash signature observed:
Unable to handle kernel paging request at virtual address dead0000000000e8
Call trace:
dpcm_be_dai_trigger+0x90/0x3f0
soc_compr_trigger_fe+0xa8/0x144
snd_compr_ioctl+0xc98/0x2010
__arm64_sys_ioctl+0x164/0x784
Race condition timeline:
Thread A (soc_compr_trigger_fe):
snd_soc_card_mutex_lock() <- holds card->mutex only
dpcm_be_dai_trigger()
for_each_dpcm_be(fe, stream, dpcm) {
snd_pcm_stream_lock_irqsave_nested(be_substream);
...
snd_pcm_stream_unlock_irqrestore(be_substream);
/* WINDOW: next iteration reads dpcm->list_be.next */
}
Thread B (snd_soc_dpcm_runtime_update via DAPM):
snd_soc_dpcm_mutex_lock() <- holds card->pcm_mutex
dpcm_be_disconnect()
snd_pcm_stream_lock_irq(fe_substream);
list_del(&dpcm->list_be); <- removes from list
snd_pcm_stream_unlock_irq();
kfree(dpcm); <- frees the struct
The PCM trigger path (dpcm_fe_dai_trigger) is protected against this
race by checking runtime_update and deferring to trigger_pending when
a concurrent update is in progress. The compress trigger path
(soc_compr_trigger_fe) lacks this deferred-trigger mechanism, so the
only correct fix is to hold pcm_mutex for the duration of the BE list
traversal, as is done in all other compress FE operations such as
soc_compr_open_fe() and soc_compr_set_params().
Signed-off-by: Shinhyung Kang <s47.kang@samsung.com>
---
sound/soc/soc-compress.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sound/soc/soc-compress.c b/sound/soc/soc-compress.c
index b8402802ae78..615ce7a0e8d9 100644
--- a/sound/soc/soc-compress.c
+++ b/sound/soc/soc-compress.c
@@ -285,6 +285,7 @@ static int soc_compr_trigger_fe(struct snd_compr_stream
*cstream, int cmd)
return snd_soc_component_compr_trigger(cstream, cmd);
snd_soc_card_mutex_lock(fe->card);
+ snd_soc_dpcm_mutex_lock(fe);
ret = snd_soc_dai_compr_trigger(cpu_dai, cstream, cmd);
if (ret < 0)
@@ -315,6 +316,7 @@ static int soc_compr_trigger_fe(struct snd_compr_stream
*cstream, int cmd)
out:
fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
+ snd_soc_dpcm_mutex_unlock(fe);
snd_soc_card_mutex_unlock(fe->card);
return ret;
}
--
2.21.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] ASoC: soc-compress: fix use-after-free in soc_compr_trigger_fe() during BE list traversal
2026-06-04 6:55 ` [PATCH] ASoC: soc-compress: fix use-after-free in soc_compr_trigger_fe() during BE list traversal Shinhyung Kang
@ 2026-06-16 20:42 ` Mark Brown
0 siblings, 0 replies; 2+ messages in thread
From: Mark Brown @ 2026-06-16 20:42 UTC (permalink / raw)
To: Shinhyung Kang; +Cc: 'Takashi Iwai', alsa-devel
[-- Attachment #1: Type: text/plain, Size: 633 bytes --]
On Thu, Jun 04, 2026 at 03:55:10PM +0900, Shinhyung Kang wrote:
> The DPCM compress trigger path traverses the FE's BE client list in
> dpcm_be_dai_trigger() without holding card->pcm_mutex, while
> dpcm_be_disconnect() can concurrently remove and free entries from
> that same list under pcm_mutex protection.
This patch seems to be mangled somehow:
Applying: ASoC: soc-compress: fix use-after-free in soc_compr_trigger_fe() during BE list traversal
Patch failed at 0001 ASoC: soc-compress: fix use-after-free in soc_compr_trigger_fe() during BE list traversal
error: corrupt patch at line 10
error: could not build fake ancestor
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-06-16 20:43 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <CGME20260604065510epcas2p4867ac51f94ba7385d72849b573b44976@epcas2p4.samsung.com>
2026-06-04 6:55 ` [PATCH] ASoC: soc-compress: fix use-after-free in soc_compr_trigger_fe() during BE list traversal Shinhyung Kang
2026-06-16 20:42 ` Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox