[FFmpeg-cvslog] truemotion1: check the header size
Anton Khirnov
git at videolan.org
Mon Mar 10 18:47:18 CET 2014
ffmpeg | branch: release/0.10 | Anton Khirnov <anton at khirnov.net> | Thu Nov 28 10:54:35 2013 +0100| [de0e442e9d6754ae1ad56a8372f45f6aa5e51012] | committer: Reinhard Tartler
truemotion1: check the header size
Fixes invalid reads.
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC:libav-stable at libav.org
(cherry picked from commit 2240e2078d53d3cfce8ff1dda64e58fa72038602)
(cherry picked from commit 76b40a9bf93e387d98aa7dc02ec7a8d13f51722f)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=de0e442e9d6754ae1ad56a8372f45f6aa5e51012
---
libavcodec/truemotion1.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/libavcodec/truemotion1.c b/libavcodec/truemotion1.c
index fcf6004..65a45d8 100644
--- a/libavcodec/truemotion1.c
+++ b/libavcodec/truemotion1.c
@@ -320,6 +320,11 @@ static int truemotion1_decode_header(TrueMotion1Context *s)
return -1;
}
+ if (header.header_size + 1 > s->size) {
+ av_log(s->avctx, AV_LOG_ERROR, "Input packet too small.\n");
+ return AVERROR_INVALIDDATA;
+ }
+
/* unscramble the header bytes with a XOR operation */
memset(header_buffer, 0, 128);
for (i = 1; i < header.header_size; i++)
More information about the ffmpeg-cvslog
mailing list