Browse Source

avcodec/rasc: Check uncompressed dlta size

We assume that if the compressed size is bigger than if each byte is encoded in a single raw packet
that the data is invalid.

Fixes: Out of memory
Fixes: 12208/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RASC_fuzzer-5648916473708544

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n4.2
Michael Niedermayer 6 years ago
parent
commit
f4079d5174
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavcodec/rasc.c

+ 2
- 0
libavcodec/rasc.c View File

@@ -353,6 +353,8 @@ static int decode_dlta(AVCodecContext *avctx,
compression = bytestream2_get_le32(gb); compression = bytestream2_get_le32(gb);


if (compression == 1) { if (compression == 1) {
if (w * h * s->bpp * 3 < uncompressed_size)
return AVERROR_INVALIDDATA;
ret = decode_zlib(avctx, avpkt, size, uncompressed_size); ret = decode_zlib(avctx, avpkt, size, uncompressed_size);
if (ret < 0) if (ret < 0)
return ret; return ret;


Loading…
Cancel
Save