Blame SOURCES/LibRaw-CVE-2020-15503.patch

03b3ac
diff -urNp LibRaw-0.19.5.orig/libraw/libraw_const.h LibRaw-0.19.5/libraw/libraw_const.h
03b3ac
--- LibRaw-0.19.5.orig/libraw/libraw_const.h	2020-08-10 18:32:18.669459968 +0200
03b3ac
+++ LibRaw-0.19.5/libraw/libraw_const.h	2020-08-10 18:48:10.462282067 +0200
03b3ac
@@ -24,6 +24,12 @@ it under the terms of the one of two lic
03b3ac
 #define LIBRAW_MAX_ALLOC_MB 2048L
03b3ac
 #endif
03b3ac
 
03b3ac
+/* limit thumbnail size, default is 512Mb*/
03b3ac
+#ifndef LIBRAW_MAX_THUMBNAIL_MB
03b3ac
+#define LIBRAW_MAX_THUMBNAIL_MB 512L
03b3ac
+#endif
03b3ac
+
03b3ac
+
03b3ac
 /* Change to non-zero to allow (broken) CRW (and other) files metadata 
03b3ac
    loop prevention */
03b3ac
 #ifndef LIBRAW_METADATA_LOOP_PREVENTION
03b3ac
diff -urNp LibRaw-0.19.5.orig/src/libraw_cxx.cpp LibRaw-0.19.5/src/libraw_cxx.cpp
03b3ac
--- LibRaw-0.19.5.orig/src/libraw_cxx.cpp	2020-08-10 18:32:18.672459987 +0200
03b3ac
+++ LibRaw-0.19.5/src/libraw_cxx.cpp	2020-08-10 18:49:18.616688826 +0200
03b3ac
@@ -3712,6 +3712,21 @@ libraw_processed_image_t *LibRaw::dcraw_
03b3ac
     return NULL;
03b3ac
   }
03b3ac
 
03b3ac
+  if (T.tlength < 64u)
03b3ac
+  {
03b3ac
+      if (errcode)
03b3ac
+          *errcode = EINVAL;
03b3ac
+      return NULL;
03b3ac
+  }
03b3ac
+
03b3ac
+  if (INT64(T.tlength) > 1024ULL * 1024ULL * LIBRAW_MAX_THUMBNAIL_MB)
03b3ac
+  {
03b3ac
+      if (errcode)
03b3ac
+          *errcode = LIBRAW_TOO_BIG;
03b3ac
+      return NULL;
03b3ac
+  }
03b3ac
+
03b3ac
+
03b3ac
   if (T.tformat == LIBRAW_THUMBNAIL_BITMAP)
03b3ac
   {
03b3ac
     libraw_processed_image_t *ret = (libraw_processed_image_t *)::malloc(sizeof(libraw_processed_image_t) + T.tlength);
03b3ac
@@ -3976,6 +3991,12 @@ void LibRaw::kodak_thumb_loader()
03b3ac
   if (ID.toffset + est_datasize > ID.input->size() + THUMB_READ_BEYOND)
03b3ac
     throw LIBRAW_EXCEPTION_IO_EOF;
03b3ac
 
03b3ac
+  if(INT64(T.theight) * INT64(T.twidth) > 1024ULL * 1024ULL * LIBRAW_MAX_THUMBNAIL_MB)
03b3ac
+      throw LIBRAW_EXCEPTION_IO_CORRUPT;
03b3ac
+
03b3ac
+  if (INT64(T.theight) * INT64(T.twidth) < 64ULL)
03b3ac
+      throw LIBRAW_EXCEPTION_IO_CORRUPT;
03b3ac
+
03b3ac
   // some kodak cameras
03b3ac
   ushort s_height = S.height, s_width = S.width, s_iwidth = S.iwidth, s_iheight = S.iheight;
03b3ac
   ushort s_flags = libraw_internal_data.unpacker_data.load_flags;
03b3ac
@@ -4237,6 +4258,25 @@ int LibRaw::unpack_thumb(void)
03b3ac
   CHECK_ORDER_LOW(LIBRAW_PROGRESS_IDENTIFY);
03b3ac
   CHECK_ORDER_BIT(LIBRAW_PROGRESS_THUMB_LOAD);
03b3ac
 
03b3ac
+#define THUMB_SIZE_CHECKT(A) \
03b3ac
+  do { \
03b3ac
+    if (INT64(A) > 1024ULL * 1024ULL * LIBRAW_MAX_THUMBNAIL_MB) throw LIBRAW_EXCEPTION_IO_CORRUPT; \
03b3ac
+    if (INT64(A) > 0 &&  INT64(A) < 64ULL)        throw LIBRAW_EXCEPTION_IO_CORRUPT; \
03b3ac
+  } while (0)
03b3ac
+
03b3ac
+#define THUMB_SIZE_CHECKTNZ(A) \
03b3ac
+  do { \
03b3ac
+    if (INT64(A) > 1024ULL * 1024ULL * LIBRAW_MAX_THUMBNAIL_MB) throw LIBRAW_EXCEPTION_IO_CORRUPT; \
03b3ac
+    if (INT64(A) < 64ULL)        throw LIBRAW_EXCEPTION_IO_CORRUPT; \
03b3ac
+  } while (0)
03b3ac
+
03b3ac
+
03b3ac
+#define THUMB_SIZE_CHECKWH(W,H) \
03b3ac
+  do { \
03b3ac
+    if (INT64(W)*INT64(H) > 1024ULL * 1024ULL * LIBRAW_MAX_THUMBNAIL_MB) throw LIBRAW_EXCEPTION_IO_CORRUPT; \
03b3ac
+    if (INT64(W)*INT64(H) < 64ULL)        throw LIBRAW_EXCEPTION_IO_CORRUPT; \
03b3ac
+  } while (0)
03b3ac
+
03b3ac
   try
03b3ac
   {
03b3ac
     if (!libraw_internal_data.internal_data.input)
03b3ac
@@ -4267,6 +4307,7 @@ int LibRaw::unpack_thumb(void)
03b3ac
 
03b3ac
         if (INT64(ID.toffset) + tsize > ID.input->size() + THUMB_READ_BEYOND)
03b3ac
           throw LIBRAW_EXCEPTION_IO_EOF;
03b3ac
+        THUMB_SIZE_CHECKT(tsize);
03b3ac
       }
03b3ac
       else
03b3ac
       {
03b3ac
@@ -4280,6 +4321,7 @@ int LibRaw::unpack_thumb(void)
03b3ac
       ID.input->seek(ID.toffset, SEEK_SET);
03b3ac
       if (write_thumb == &LibRaw::jpeg_thumb)
03b3ac
       {
03b3ac
+        THUMB_SIZE_CHECKTNZ(T.tlength);
03b3ac
         if (T.thumb)
03b3ac
           free(T.thumb);
03b3ac
         T.thumb = (char *)malloc(T.tlength);
03b3ac
@@ -4326,6 +4368,7 @@ int LibRaw::unpack_thumb(void)
03b3ac
       {
03b3ac
         if (t_bytesps > 1)
03b3ac
           throw LIBRAW_EXCEPTION_IO_CORRUPT; // 8-bit thumb, but parsed for more bits
03b3ac
+        THUMB_SIZE_CHECKWH(T.twidth, T.theight);
03b3ac
         int t_length = T.twidth * T.theight * t_colors;
03b3ac
 
03b3ac
         if (T.tlength && T.tlength < t_length) // try to find tiff ifd with needed offset
03b3ac
@@ -4351,8 +4394,12 @@ int LibRaw::unpack_thumb(void)
03b3ac
                 T.tcolors = 1;
03b3ac
             }
03b3ac
             T.tlength = total_size;
03b3ac
+            THUMB_SIZE_CHECKTNZ(T.tlength);
03b3ac
             if (T.thumb)
03b3ac
               free(T.thumb);
03b3ac
+            
03b3ac
+            THUMB_SIZE_CHECKTNZ(T.tlength);
03b3ac
+            
03b3ac
             T.thumb = (char *)malloc(T.tlength);
03b3ac
             merror(T.thumb, "ppm_thumb()");
03b3ac
 
03b3ac
@@ -4400,10 +4447,15 @@ int LibRaw::unpack_thumb(void)
03b3ac
         if (t_bytesps > 2)
03b3ac
           throw LIBRAW_EXCEPTION_IO_CORRUPT; // 16-bit thumb, but parsed for more bits
03b3ac
         int o_bps = (imgdata.params.raw_processing_options & LIBRAW_PROCESSING_USE_PPM16_THUMBS) ? 2 : 1;
03b3ac
+        THUMB_SIZE_CHECKWH(T.twidth, T.theight);
03b3ac
         int o_length = T.twidth * T.theight * t_colors * o_bps;
03b3ac
         int i_length = T.twidth * T.theight * t_colors * 2;
03b3ac
         if (!T.tlength)
03b3ac
           T.tlength = o_length;
03b3ac
+        THUMB_SIZE_CHECKTNZ(o_length);
03b3ac
+        THUMB_SIZE_CHECKTNZ(i_length);
03b3ac
+        THUMB_SIZE_CHECKTNZ(T.tlength);
03b3ac
+
03b3ac
         ushort *t_thumb = (ushort *)calloc(i_length, 1);
03b3ac
         ID.input->read(t_thumb, 1, i_length);
03b3ac
         if ((libraw_internal_data.unpacker_data.order == 0x4949) == (ntohs(0x1234) == 0x1234))