[FFmpeg-cvslog] avcodec/sonic: Check for overread
Michael Niedermayer
git at videolan.org
Thu Oct 15 23:55:25 EEST 2020
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Sat Sep 19 11:29:01 2020 +0200| [eeabdef1bf96cdecf80aeb8d0478d008457b048c] | committer: Michael Niedermayer
avcodec/sonic: Check for overread
Fixes: Timeout (too long -> 1.3 sec)
Fixes: 24358/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SONIC_fuzzer-5107284099989504
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=eeabdef1bf96cdecf80aeb8d0478d008457b048c
---
libavcodec/sonic.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/libavcodec/sonic.c b/libavcodec/sonic.c
index e1d37f8780..0d4891ebf4 100644
--- a/libavcodec/sonic.c
+++ b/libavcodec/sonic.c
@@ -1031,6 +1031,9 @@ static int sonic_decode_frame(AVCodecContext *avctx,
{
int x = ch;
+ if (c.overread > MAX_OVERREAD)
+ return AVERROR_INVALIDDATA;
+
predictor_init_state(s->predictor_k, s->predictor_state[ch], s->num_taps);
intlist_read(&c, state, s->coded_samples[ch], s->block_align, 1);
More information about the ffmpeg-cvslog
mailing list