aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2021-12-23 20:36:16 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2022-04-09 22:19:40 +0200
commita5b213a89e22e91b2d47544b2300e1819b47ad63 (patch)
tree098c78e1cc5420ed35cbeed69c04ef44149d6881
parent7caa166ac307e062410f51c76385fa1c5e379135 (diff)
downloadffmpeg-a5b213a89e22e91b2d47544b2300e1819b47ad63.tar.gz
avformat/flvdec: timestamps cannot use the full int64 range
We do not support this as we multiply by 1000 Fixes: signed integer overflow: -45318575073853696 * 1000 cannot be represented in type 'long' Fixes: 42804/clusterfuzz-testcase-minimized-ffmpeg_dem_LIVE_FLV_fuzzer-4630325425209344 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 c217ca7718c8e24905d7ba9ede719ae040899476) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavformat/flvdec.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c
index a2fa275b7e..29e9bdd735 100644
--- a/libavformat/flvdec.c
+++ b/libavformat/flvdec.c
@@ -434,6 +434,8 @@ static int parse_keyframes_index(AVFormatContext *s, AVIOContext *ioc, int64_t m
d = av_int2double(avio_rb64(ioc));
if (isnan(d) || d < INT64_MIN || d > INT64_MAX)
goto invalid;
+ if (current_array == &times && (d <= INT64_MIN / 1000 || d >= INT64_MAX / 1000))
+ goto invalid;
current_array[0][i] = d;
}
if (times && filepositions) {