[FFmpeg-cvslog] avformat/wavdec: Check that smv block fits in available space
Michael Niedermayer
git at videolan.org
Mon May 22 04:01:18 EEST 2023
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Sun Mar 5 00:51:38 2023 +0100| [a76efafdb9be966ae3ad52b32370dc644dd582bf] | 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>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a76efafdb9be966ae3ad52b32370dc644dd582bf
---
libavformat/wavdec.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c
index e3f790fcc9..97e69ab2ee 100644
--- a/libavformat/wavdec.c
+++ b/libavformat/wavdec.c
@@ -730,6 +730,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