mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-03 05:10:03 +02:00
avcodec/ffv1dec: Check if trailer is available
Fixes: out of array read
Fixes: 29750/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FFV1_fuzzer-4808377272238080.fuzz
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 36ad2f41e3
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
fb5c015e7b
commit
cf0317b94f
@ -940,8 +940,10 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPac
|
|||||||
int trailer = 3 + 5*!!f->ec;
|
int trailer = 3 + 5*!!f->ec;
|
||||||
int v;
|
int v;
|
||||||
|
|
||||||
if (i || f->version > 2) v = AV_RB24(buf_p-trailer) + trailer;
|
if (i || f->version > 2) {
|
||||||
else v = buf_p - c->bytestream_start;
|
if (trailer > buf_p - buf) v = INT_MAX;
|
||||||
|
else v = AV_RB24(buf_p-trailer) + trailer;
|
||||||
|
} else v = buf_p - c->bytestream_start;
|
||||||
if (buf_p - c->bytestream_start < v) {
|
if (buf_p - c->bytestream_start < v) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "Slice pointer chain broken\n");
|
av_log(avctx, AV_LOG_ERROR, "Slice pointer chain broken\n");
|
||||||
ff_thread_report_progress(&f->picture, INT_MAX, 0);
|
ff_thread_report_progress(&f->picture, INT_MAX, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user