[FFmpeg-cvslog] avformat/wavdec: Check that smv block fits in available space

Michael Niedermayer git at videolan.org
Sun Jun 4 22:06:08 EEST 2023


ffmpeg | branch: release/3.4 | Michael Niedermayer <michael at niedermayer.cc> | Sun Mar  5 00:51:38 2023 +0100| [b79b50a3082a602277fc3e006d581b22d08cce18] | committer: Michael Niedermayer

avformat/wavdec: Check that smv block fits in available space

Fixes: OOM
Fixes: 56271/clusterfuzz-testcase-minimized-ffmpeg_dem_WAV_fuzzer-5290810045497344

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit a76efafdb9be966ae3ad52b32370dc644dd582bf)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b79b50a3082a602277fc3e006d581b22d08cce18
---

 libavformat/wavdec.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c
index b7c5f22a3a..0912359133 100644
--- a/libavformat/wavdec.c
+++ b/libavformat/wavdec.c
@@ -647,6 +647,10 @@ smv_retry:
                 goto smv_out;
             }
             size = avio_rl24(s->pb);
+            if (size > wav->smv_block_size) {
+                ret = AVERROR_EOF;
+                goto smv_out;
+            }
             ret  = av_get_packet(s->pb, pkt, size);
             if (ret < 0)
                 goto smv_out;



More information about the ffmpeg-cvslog mailing list