]> git.baikalelectronics.ru Git - kernel.git/commit
ALSA: seq: Fix link corruption by event error handling
authorTakashi Iwai <tiwai@suse.de>
Tue, 28 Feb 2017 21:15:51 +0000 (22:15 +0100)
committerTakashi Iwai <tiwai@suse.de>
Tue, 28 Feb 2017 21:15:51 +0000 (22:15 +0100)
commit2a3ee416bf6c83f1b01294ddc23be361d77f7fe0
tree8f6aef03fd1ea117451942feb37df49709c0f7cf
parentad7e2b31afb785d13a2091c4f4751526d8f270ee
ALSA: seq: Fix link corruption by event error handling

The sequencer FIFO management has a bug that may lead to a corruption
(shortage) of the cell linked list.  When a sequencer client faces an
error at the event delivery, it tries to put back the dequeued cell.
When the first queue was put back, this forgot the tail pointer
tracking, and the link will be screwed up.

Although there is no memory corruption, the sequencer client may stall
forever at exit while flushing the pending FIFO cells in
snd_seq_pool_done(), as spotted by syzkaller.

This patch addresses the missing tail pointer tracking at
snd_seq_fifo_cell_putback().  Also the patch makes sure to clear the
cell->enxt pointer at snd_seq_fifo_event_in() for avoiding a similar
mess-up of the FIFO linked list.

Reported-by: Dmitry Vyukov <dvyukov@google.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/core/seq/seq_fifo.c