]> git.baikalelectronics.ru Git - kernel.git/commit
ALSA: aloop: Fix inconsistent format due to incomplete rule
authorTakashi Iwai <tiwai@suse.de>
Fri, 5 Jan 2018 15:15:33 +0000 (16:15 +0100)
committerTakashi Iwai <tiwai@suse.de>
Fri, 5 Jan 2018 15:40:16 +0000 (16:40 +0100)
commit44de3349b3a51a612e8afc0c86965c16c91944cc
tree0fd9f3ed02f46c34fe8cab7c8a588d21600f1100
parent8630ed1b416ce20d0914eb70d1f20cb184784d1b
ALSA: aloop: Fix inconsistent format due to incomplete rule

The extra hw constraint rule for the formats the aloop driver
introduced has a slight flaw, where it doesn't return a positive value
when the mask got changed.  It came from the fact that it's basically
a copy&paste from snd_hw_constraint_mask64().  The original code is
supposed to be a single-shot and it modifies the mask bits only once
and never after, while what we need for aloop is the dynamic hw rule
that limits the mask bits.

This difference results in the inconsistent state, as the hw_refine
doesn't apply the dependencies fully.  The worse and surprisingly
result is that it causes a crash in OSS emulation when multiple
full-duplex reads/writes are performed concurrently (I leave why it
triggers Oops to readers as a homework).

For fixing this, replace a few open-codes with the standard
snd_mask_*() macros.

Reported-by: syzbot+3902b5220e8ca27889ca@syzkaller.appspotmail.com
Fixes: be048759e261 ("ALSA: snd-aloop: Fix hw_params restrictions and checking")
Cc: <stable@vger.kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/drivers/aloop.c