Skip to content

Commit 8293e61

Browse files
xdek42gregkh
authored andcommitted
ALSA: usb-audio: Fix an out-of-bounds bug in __snd_usb_parse_audio_interface()
commit e53f47f upstream. There may be a bad USB audio device with a USB ID of (0x04fa, 0x4201) and the number of it's interfaces less than 4, an out-of-bounds read bug occurs when parsing the interface descriptor for this device. Fix this by checking the number of interfaces. Signed-off-by: Dongxiang Ke <kdx.glider@gmail.com> Link: https://lore.kernel.org/r/20220906024928.10951-1-kdx.glider@gmail.com Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent ef38df2 commit 8293e61

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sound/usb/stream.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1105,7 +1105,7 @@ static int __snd_usb_parse_audio_interface(struct snd_usb_audio *chip,
11051105
* Dallas DS4201 workaround: It presents 5 altsettings, but the last
11061106
* one misses syncpipe, and does not produce any sound.
11071107
*/
1108-
if (chip->usb_id == USB_ID(0x04fa, 0x4201))
1108+
if (chip->usb_id == USB_ID(0x04fa, 0x4201) && num >= 4)
11091109
num = 4;
11101110

11111111
for (i = 0; i < num; i++) {

0 commit comments

Comments
 (0)