diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2020-10-19 17:39:30 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2021-10-17 21:34:53 +0200 |
commit | d6d2837e4be508371ccc013bf3cd0732c7ba2584 (patch) | |
tree | c48cc1a260d6bf61e85ef2e1507740447158bb4c | |
parent | 0257623b2da678648b09b31746dcf88fb3d25a73 (diff) | |
download | ffmpeg-d6d2837e4be508371ccc013bf3cd0732c7ba2584.tar.gz |
avformat/mvi: Check count for overflow
Fixes: left shift of 21378748 by 10 places cannot be represented in type 'int'
Fixes: 26449/clusterfuzz-testcase-minimized-ffmpeg_dem_MVI_fuzzer-5680463374712832
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit a413ed98632127342ad04b26e0ba0dc26adb70c9)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/mvi.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/mvi.c b/libavformat/mvi.c index a7cfcb9a7a..ef47e41fc2 100644 --- a/libavformat/mvi.c +++ b/libavformat/mvi.c @@ -122,6 +122,8 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt) count = (mvi->audio_size_counter + mvi->audio_frame_size + 512) >> MVI_FRAC_BITS; if (count > mvi->audio_size_left) count = mvi->audio_size_left; + if ((int64_t)count << MVI_FRAC_BITS > INT_MAX) + return AVERROR_INVALIDDATA; if ((ret = av_get_packet(pb, pkt, count)) < 0) return ret; pkt->stream_index = MVI_AUDIO_STREAM_INDEX; |