]> git.sesse.net Git - ffmpeg/commitdiff
h264: prevent theoretical infinite loop in SEI parsing
authorVittorio Giovara <vittorio.giovara@gmail.com>
Wed, 30 Jul 2014 18:33:36 +0000 (19:33 +0100)
committerVittorio Giovara <vittorio.giovara@gmail.com>
Fri, 1 Aug 2014 12:08:32 +0000 (13:08 +0100)
Properly address CVE-2011-3946 and parse bitstream as described in the spec.

CC: libav-stable@libav.org
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
libavcodec/h264_sei.c

index 33230b7dfa9f5f7380fda33edf110064fbb346dc..52ff2ff4bb086948926ae8a1e349d22eccb40a1d 100644 (file)
@@ -222,14 +222,20 @@ int ff_h264_decode_sei(H264Context *h)
         int size = 0;
         int type = 0;
         int ret  = 0;
+        int last = 0;
 
-        do
-            type += show_bits(&h->gb, 8);
-        while (get_bits(&h->gb, 8) == 255);
+        while (get_bits_left(&h->gb) >= 8 &&
+               (last = get_bits(&h->gb, 8)) == 255) {
+            type += 255;
+        }
+        type += last;
 
-        do
-            size += show_bits(&h->gb, 8);
-        while (get_bits(&h->gb, 8) == 255);
+        last = 0;
+        while (get_bits_left(&h->gb) >= 8 &&
+               (last = get_bits(&h->gb, 8)) == 255) {
+            size += 255;
+        }
+        size += last;
 
         if (size > get_bits_left(&h->gb) / 8) {
             av_log(h->avctx, AV_LOG_ERROR, "SEI type %d truncated at %d\n",