ossaudio: fix out of bounds write
authorVolker Rümelin <vr_qemu@t-online.de>
Tue, 7 Jul 2020 18:08:36 +0000 (20:08 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Mon, 13 Jul 2020 09:38:40 +0000 (11:38 +0200)
In function oss_read() a read error currently does not exit the
read loop. With no data to read the variable pos will quickly
underflow and a subsequent successful read overwrites memory
outside the buffer. This patch adds the missing break statement
to the error path of the function.

To reproduce start qemu with -audiodev oss,id=audio0 and in the
guest start audio recording. After some time this will trigger
an exception.

Fixes: 3ba4066d08 "ossaudio: port to the new audio backend api"
Signed-off-by: Volker Rümelin <vr_qemu@t-online.de>
Message-id: 20200707180836.5435-1-vr_qemu@t-online.de
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
audio/ossaudio.c

index f88d076ec236a8de9507f36c3ab151d60d34cf0e..a7dcaa31adebf23a31864a70955b232ae175e486 100644 (file)
@@ -691,6 +691,7 @@ static size_t oss_read(HWVoiceIn *hw, void *buf, size_t len)
                            len, dst);
                 break;
             }
+            break;
         }
 
         pos += nread;