]> git.baikalelectronics.ru Git - kernel.git/commit
ALSA: pcm: Fix races among concurrent read/write and buffer changes
authorTakashi Iwai <tiwai@suse.de>
Tue, 22 Mar 2022 17:07:18 +0000 (18:07 +0100)
committerTakashi Iwai <tiwai@suse.de>
Tue, 22 Mar 2022 19:56:27 +0000 (20:56 +0100)
commitcf63ff7e44ab51a0eccdc2f304e1da78b3bb7ddd
tree40a130d5cec20aa161a3b9a853602fa66af29533
parentdd51a34b2abdeb8bbe194ee75956c10b5b113f90
ALSA: pcm: Fix races among concurrent read/write and buffer changes

In the current PCM design, the read/write syscalls (as well as the
equivalent ioctls) are allowed before the PCM stream is running, that
is, at PCM PREPARED state.  Meanwhile, we also allow to re-issue
hw_params and hw_free ioctl calls at the PREPARED state that may
change or free the buffers, too.  The problem is that there is no
protection against those mix-ups.

This patch applies the previously introduced runtime->buffer_mutex to
the read/write operations so that the concurrent hw_params or hw_free
call can no longer interfere during the operation.  The mutex is
unlocked before scheduling, so we don't take it too long.

Cc: <stable@vger.kernel.org>
Reviewed-by: Jaroslav Kysela <perex@perex.cz>
Link: https://lore.kernel.org/r/20220322170720.3529-3-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/core/pcm_lib.c