[FFmpeg-devel] [PATCH] avcodec/vmdaudio: Check block_align more

Paul B Mahol onemda at gmail.com
Mon Jan 6 17:15:47 EET 2020


ok

On 1/6/20, Michael Niedermayer <michael at niedermayer.cc> wrote:
> Fixes: signed integer overflow: 2147483647 + 1 cannot be represented in type
> 'int'
> Fixes:
> 19788/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VMDAUDIO_fuzzer-5743379690553344
>
> Found-by: continuous fuzzing process
> https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
> Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> ---
>  libavcodec/vmdaudio.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/libavcodec/vmdaudio.c b/libavcodec/vmdaudio.c
> index c7826fa3ce..dfbd49fd84 100644
> --- a/libavcodec/vmdaudio.c
> +++ b/libavcodec/vmdaudio.c
> @@ -76,7 +76,9 @@ static av_cold int vmdaudio_decode_init(AVCodecContext
> *avctx)
>          av_log(avctx, AV_LOG_ERROR, "invalid number of channels\n");
>          return AVERROR(EINVAL);
>      }
> -    if (avctx->block_align < 1 || avctx->block_align % avctx->channels) {
> +    if (avctx->block_align < 1 || avctx->block_align % avctx->channels ||
> +        avctx->block_align > INT_MAX - avctx->channels
> +    ) {
>          av_log(avctx, AV_LOG_ERROR, "invalid block align\n");
>          return AVERROR(EINVAL);
>      }
> --
> 2.24.0
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request at ffmpeg.org with subject "unsubscribe".


More information about the ffmpeg-devel mailing list