summaryrefslogtreecommitdiff
path: root/libavcodec/wavpack.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2020-05-02 21:20:45 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2020-05-05 20:07:19 +0200
commit30f5d6751047bbe8974f016c9745da9cd2daa3fc (patch)
tree25718199460881f7ae3203e5b061798cd4dffd72 /libavcodec/wavpack.c
parent94f4fab69f678af5595b94831f754cdf1bde6bf1 (diff)
avcodec/wavpack: Check rate_x and sample rate for overflow
Fixes: shift exponent 32 is too large for 32-bit type 'int' Fixes: 21647/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WAVPACK_fuzzer-5686168323883008 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Reviewed-by: David Bryant <david@wavpack.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/wavpack.c')
-rw-r--r--libavcodec/wavpack.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/libavcodec/wavpack.c b/libavcodec/wavpack.c
index 58ab561a15..ead57063c8 100644
--- a/libavcodec/wavpack.c
+++ b/libavcodec/wavpack.c
@@ -1359,7 +1359,10 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
bytestream2_skip(&gb, ssize);
continue;
}
- rate_x = 1 << bytestream2_get_byte(&gb);
+ rate_x = bytestream2_get_byte(&gb);
+ if (rate_x > 30)
+ return AVERROR_INVALIDDATA;
+ rate_x = 1 << rate_x;
dsd_mode = bytestream2_get_byte(&gb);
if (dsd_mode && dsd_mode != 1 && dsd_mode != 3) {
av_log(avctx, AV_LOG_ERROR, "Invalid DSD encoding mode: %d\n",
@@ -1498,9 +1501,13 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
av_log(avctx, AV_LOG_ERROR, "Custom sample rate missing.\n");
return AVERROR_INVALIDDATA;
}
- new_samplerate = sample_rate * rate_x;
+ new_samplerate = sample_rate;
} else
- new_samplerate = wv_rates[sr] * rate_x;
+ new_samplerate = wv_rates[sr];
+
+ if (new_samplerate * (uint64_t)rate_x > INT_MAX)
+ return AVERROR_INVALIDDATA;
+ new_samplerate *= rate_x;
if (multiblock) {
if (chan)