]> git.sesse.net Git - ffmpeg/commitdiff
smackerdec: Check that the last indexes are within the table.
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 25 Jan 2012 21:28:57 +0000 (22:28 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 25 Jan 2012 21:32:11 +0000 (22:32 +0100)
Fixes CVE-2011-3944

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/smacker.c

index 30f99b488d03b64041c202b141624f0b714c4610..2a8bae8a1b0699d564571fe12179a162b5107d47 100644 (file)
@@ -259,6 +259,11 @@ static int smacker_decode_header_tree(SmackVContext *smk, GetBitContext *gb, int
     if(ctx.last[0] == -1) ctx.last[0] = huff.current++;
     if(ctx.last[1] == -1) ctx.last[1] = huff.current++;
     if(ctx.last[2] == -1) ctx.last[2] = huff.current++;
+    if(huff.current > huff.length){
+        ctx.last[0] = ctx.last[1] = ctx.last[2] = 1;
+        av_log(smk->avctx, AV_LOG_ERROR, "bigtree damaged\n");
+        return -1;
+    }
 
     *recodes = huff.values;