Skip to content

Commit

Permalink
avcodec/libvorbisdec: Fix insufficient input checks leading to out of…
Browse files Browse the repository at this point in the history
… array reads

Fixes: 16144/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_LIBVORBIS_fuzzer-5638618940440576
Fixes: out of array read

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
  • Loading branch information
michaelni committed Oct 29, 2019
1 parent 1850c3f commit 069be4a
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions libavcodec/libvorbisdec.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,22 +64,25 @@ static int oggvorbis_decode_init(AVCodecContext *avccontext) {
}
} else if(*p == 2) {
unsigned int offset = 1;
unsigned int sizesum = 1;
p++;
for(i=0; i<2; i++) {
hsizes[i] = 0;
while((*p == 0xFF) && (offset < avccontext->extradata_size)) {
while((*p == 0xFF) && (sizesum < avccontext->extradata_size)) {
hsizes[i] += 0xFF;
offset++;
sizesum += 1 + 0xFF;
p++;
}
if(offset >= avccontext->extradata_size - 1) {
hsizes[i] += *p;
offset++;
sizesum += 1 + *p;
if(sizesum > avccontext->extradata_size) {
av_log(avccontext, AV_LOG_ERROR,
"vorbis header sizes damaged\n");
ret = AVERROR_INVALIDDATA;
goto error;
}
hsizes[i] += *p;
offset++;
p++;
}
hsizes[2] = avccontext->extradata_size - hsizes[0]-hsizes[1]-offset;
Expand Down

0 comments on commit 069be4a

Please sign in to comment.