]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ALSA: pcm : Call kill_fasync() in stream lock
authorTakashi Iwai <tiwai@suse.de>
Mon, 12 Dec 2016 16:33:06 +0000 (17:33 +0100)
committerJiri Slaby <jslaby@suse.cz>
Tue, 13 Dec 2016 15:19:13 +0000 (16:19 +0100)
commit3af0be0536e71b0ed55620aca65f9144bf2c1088
treef4642a4d5d791f834ed5dc062cceb405718c35ce
parenta9c4561ef479f2cb522504276bce86c8dbeaa31d
ALSA: pcm : Call kill_fasync() in stream lock

commit 3aa02cb664c5fb1042958c8d1aa8c35055a2ebc4 upstream.

Currently kill_fasync() is called outside the stream lock in
snd_pcm_period_elapsed().  This is potentially racy, since the stream
may get released even during the irq handler is running.  Although
snd_pcm_release_substream() calls snd_pcm_drop(), this doesn't
guarantee that the irq handler finishes, thus the kill_fasync() call
outside the stream spin lock may be invoked after the substream is
detached, as recently reported by KASAN.

As a quick workaround, move kill_fasync() call inside the stream
lock.  The fasync is rarely used interface, so this shouldn't have a
big impact from the performance POV.

Ideally, we should implement some sync mechanism for the proper finish
of stream and irq handler.  But this oneliner should suffice for most
cases, so far.

Reported-by: Baozeng Ding <sploving1@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
sound/core/pcm_lib.c