summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Carlsson <johan.carlsson@teenage.engineering>2024-03-13 11:15:09 +0300
committerSasha Levin <sashal@kernel.org>2024-03-27 01:19:58 +0300
commit22cad1b841a63635a38273b799b4791f202ade72 (patch)
tree5cac5bde691e909f212adf7d9f5fcad59fc33557
parentde4bfe60b030c9f30f0caefa07e6c6c0d7f9fd9b (diff)
downloadlinux-22cad1b841a63635a38273b799b4791f202ade72.tar.xz
ALSA: usb-audio: Stop parsing channels bits when all channels are found.
[ Upstream commit a39d51ff1f52cd0b6fe7d379ac93bd8b4237d1b7 ] If a usb audio device sets more bits than the amount of channels it could write outside of the map array. Signed-off-by: Johan Carlsson <johan.carlsson@teenage.engineering> Fixes: 04324ccc75f9 ("ALSA: usb-audio: add channel map support") Message-ID: <20240313081509.9801-1-johan.carlsson@teenage.engineering> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r--sound/usb/stream.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sound/usb/stream.c b/sound/usb/stream.c
index 3d4add94e367..d5409f387945 100644
--- a/sound/usb/stream.c
+++ b/sound/usb/stream.c
@@ -300,9 +300,12 @@ static struct snd_pcm_chmap_elem *convert_chmap(int channels, unsigned int bits,
c = 0;
if (bits) {
- for (; bits && *maps; maps++, bits >>= 1)
+ for (; bits && *maps; maps++, bits >>= 1) {
if (bits & 1)
chmap->map[c++] = *maps;
+ if (c == chmap->channels)
+ break;
+ }
} else {
/* If we're missing wChannelConfig, then guess something
to make sure the channel map is not skipped entirely */