Blame SOURCES/0031-CVE-2022-2056-CVE-2022-2057-CVE-2022-2058-fix-the-FP.patch

b45dc8
From fddff26550de7a5ea9735649a74aa3829e461ae5 Mon Sep 17 00:00:00 2001
b45dc8
From: 4ugustus <wangdw.augustus@qq.com>
b45dc8
Date: Sat, 11 Jun 2022 09:31:43 +0000
b45dc8
Subject: [PATCH] (CVE-2022-2056 CVE-2022-2057 CVE-2022-2058) fix the FPE in
b45dc8
 tiffcrop (#415, #427, and #428)
b45dc8
b45dc8
(cherry picked from commit dd1bcc7abb26094e93636e85520f0d8f81ab0fab)
b45dc8
---
b45dc8
 libtiff/tif_aux.c |  9 +++++++
b45dc8
 libtiff/tiffiop.h |  1 +
b45dc8
 tools/tiffcrop.c  | 62 ++++++++++++++++++++++++++---------------------
b45dc8
 3 files changed, 44 insertions(+), 28 deletions(-)
b45dc8
b45dc8
diff --git a/libtiff/tif_aux.c b/libtiff/tif_aux.c
b45dc8
index 2071d19c..4d1869b4 100644
b45dc8
--- a/libtiff/tif_aux.c
b45dc8
+++ b/libtiff/tif_aux.c
b45dc8
@@ -408,6 +408,15 @@ float _TIFFClampDoubleToFloat( double val )
b45dc8
     return (float)val;
b45dc8
 }
b45dc8
 
b45dc8
+uint32 _TIFFClampDoubleToUInt32(double val)
b45dc8
+{
b45dc8
+    if( val < 0 )
b45dc8
+        return 0;
b45dc8
+    if( val > 0xFFFFFFFFU || val != val )
b45dc8
+        return 0xFFFFFFFFU;
b45dc8
+    return (uint32)val;
b45dc8
+}
b45dc8
+
b45dc8
 int _TIFFSeekOK(TIFF* tif, toff_t off)
b45dc8
 {
b45dc8
     /* Huge offsets, especially -1 / UINT64_MAX, can cause issues */
b45dc8
diff --git a/libtiff/tiffiop.h b/libtiff/tiffiop.h
b45dc8
index 05ba735b..5b106e03 100644
b45dc8
--- a/libtiff/tiffiop.h
b45dc8
+++ b/libtiff/tiffiop.h
b45dc8
@@ -378,6 +378,7 @@ extern double _TIFFUInt64ToDouble(uint64);
b45dc8
 extern float _TIFFUInt64ToFloat(uint64);
b45dc8
 
b45dc8
 extern float _TIFFClampDoubleToFloat(double);
b45dc8
+extern uint32 _TIFFClampDoubleToUInt32(double);
b45dc8
 
b45dc8
 extern tmsize_t
b45dc8
 _TIFFReadEncodedStripAndAllocBuffer(TIFF* tif, uint32 strip,
b45dc8
diff --git a/tools/tiffcrop.c b/tools/tiffcrop.c
b45dc8
index 83cf80ad..ea0b98be 100644
b45dc8
--- a/tools/tiffcrop.c
b45dc8
+++ b/tools/tiffcrop.c
b45dc8
@@ -5140,17 +5140,17 @@ computeInputPixelOffsets(struct crop_mask *crop, struct image_data *image,
b45dc8
       {
b45dc8
       if ((crop->res_unit == RESUNIT_INCH) || (crop->res_unit == RESUNIT_CENTIMETER))
b45dc8
         {
b45dc8
-	x1 = (uint32) (crop->corners[i].X1 * scale * xres);
b45dc8
-	x2 = (uint32) (crop->corners[i].X2 * scale * xres);
b45dc8
-	y1 = (uint32) (crop->corners[i].Y1 * scale * yres);
b45dc8
-	y2 = (uint32) (crop->corners[i].Y2 * scale * yres);
b45dc8
+	x1 = _TIFFClampDoubleToUInt32(crop->corners[i].X1 * scale * xres);
b45dc8
+	x2 = _TIFFClampDoubleToUInt32(crop->corners[i].X2 * scale * xres);
b45dc8
+	y1 = _TIFFClampDoubleToUInt32(crop->corners[i].Y1 * scale * yres);
b45dc8
+	y2 = _TIFFClampDoubleToUInt32(crop->corners[i].Y2 * scale * yres);
b45dc8
         }
b45dc8
       else
b45dc8
         {
b45dc8
-	x1 = (uint32) (crop->corners[i].X1);
b45dc8
-	x2 = (uint32) (crop->corners[i].X2);
b45dc8
-	y1 = (uint32) (crop->corners[i].Y1);
b45dc8
-	y2 = (uint32) (crop->corners[i].Y2);       
b45dc8
+	x1 = _TIFFClampDoubleToUInt32(crop->corners[i].X1);
b45dc8
+	x2 = _TIFFClampDoubleToUInt32(crop->corners[i].X2);
b45dc8
+	y1 = _TIFFClampDoubleToUInt32(crop->corners[i].Y1);
b45dc8
+	y2 = _TIFFClampDoubleToUInt32(crop->corners[i].Y2);
b45dc8
 	}
b45dc8
       if (x1 < 1)
b45dc8
         crop->regionlist[i].x1 = 0;
b45dc8
@@ -5213,17 +5213,17 @@ computeInputPixelOffsets(struct crop_mask *crop, struct image_data *image,
b45dc8
     {
b45dc8
     if (crop->res_unit != RESUNIT_INCH && crop->res_unit != RESUNIT_CENTIMETER)
b45dc8
       { /* User has specified pixels as reference unit */
b45dc8
-      tmargin = (uint32)(crop->margins[0]);
b45dc8
-      lmargin = (uint32)(crop->margins[1]);
b45dc8
-      bmargin = (uint32)(crop->margins[2]);
b45dc8
-      rmargin = (uint32)(crop->margins[3]);
b45dc8
+      tmargin = _TIFFClampDoubleToUInt32(crop->margins[0]);
b45dc8
+      lmargin = _TIFFClampDoubleToUInt32(crop->margins[1]);
b45dc8
+      bmargin = _TIFFClampDoubleToUInt32(crop->margins[2]);
b45dc8
+      rmargin = _TIFFClampDoubleToUInt32(crop->margins[3]);
b45dc8
       }
b45dc8
     else
b45dc8
       { /* inches or centimeters specified */
b45dc8
-      tmargin = (uint32)(crop->margins[0] * scale * yres);
b45dc8
-      lmargin = (uint32)(crop->margins[1] * scale * xres);
b45dc8
-      bmargin = (uint32)(crop->margins[2] * scale * yres);
b45dc8
-      rmargin = (uint32)(crop->margins[3] * scale * xres);
b45dc8
+      tmargin = _TIFFClampDoubleToUInt32(crop->margins[0] * scale * yres);
b45dc8
+      lmargin = _TIFFClampDoubleToUInt32(crop->margins[1] * scale * xres);
b45dc8
+      bmargin = _TIFFClampDoubleToUInt32(crop->margins[2] * scale * yres);
b45dc8
+      rmargin = _TIFFClampDoubleToUInt32(crop->margins[3] * scale * xres);
b45dc8
       }
b45dc8
 
b45dc8
     if ((lmargin + rmargin) > image->width)
b45dc8
@@ -5253,24 +5253,24 @@ computeInputPixelOffsets(struct crop_mask *crop, struct image_data *image,
b45dc8
   if (crop->res_unit != RESUNIT_INCH && crop->res_unit != RESUNIT_CENTIMETER)
b45dc8
     {
b45dc8
     if (crop->crop_mode & CROP_WIDTH)
b45dc8
-      width = (uint32)crop->width;
b45dc8
+      width = _TIFFClampDoubleToUInt32(crop->width);
b45dc8
     else
b45dc8
       width = image->width - lmargin - rmargin;
b45dc8
 
b45dc8
     if (crop->crop_mode & CROP_LENGTH)
b45dc8
-      length  = (uint32)crop->length;
b45dc8
+      length  = _TIFFClampDoubleToUInt32(crop->length);
b45dc8
     else
b45dc8
       length = image->length - tmargin - bmargin;
b45dc8
     }
b45dc8
   else
b45dc8
     {
b45dc8
     if (crop->crop_mode & CROP_WIDTH)
b45dc8
-      width = (uint32)(crop->width * scale * image->xres);
b45dc8
+      width = _TIFFClampDoubleToUInt32(crop->width * scale * image->xres);
b45dc8
     else
b45dc8
       width = image->width - lmargin - rmargin;
b45dc8
 
b45dc8
     if (crop->crop_mode & CROP_LENGTH)
b45dc8
-      length  = (uint32)(crop->length * scale * image->yres);
b45dc8
+      length  = _TIFFClampDoubleToUInt32(crop->length * scale * image->yres);
b45dc8
     else
b45dc8
       length = image->length - tmargin - bmargin;
b45dc8
     }
b45dc8
@@ -5669,13 +5669,13 @@ computeOutputPixelOffsets (struct crop_mask *crop, struct image_data *image,
b45dc8
     {
b45dc8
     if (page->res_unit == RESUNIT_INCH || page->res_unit == RESUNIT_CENTIMETER)
b45dc8
       { /* inches or centimeters specified */
b45dc8
-      hmargin = (uint32)(page->hmargin * scale * page->hres * ((image->bps + 7)/ 8));
b45dc8
-      vmargin = (uint32)(page->vmargin * scale * page->vres * ((image->bps + 7)/ 8));
b45dc8
+      hmargin = _TIFFClampDoubleToUInt32(page->hmargin * scale * page->hres * ((image->bps + 7) / 8));
b45dc8
+      vmargin = _TIFFClampDoubleToUInt32(page->vmargin * scale * page->vres * ((image->bps + 7) / 8));
b45dc8
       }
b45dc8
     else
b45dc8
       { /* Otherwise user has specified pixels as reference unit */
b45dc8
-      hmargin = (uint32)(page->hmargin * scale * ((image->bps + 7)/ 8));
b45dc8
-      vmargin = (uint32)(page->vmargin * scale * ((image->bps + 7)/ 8));
b45dc8
+      hmargin = _TIFFClampDoubleToUInt32(page->hmargin * scale * ((image->bps + 7) / 8));
b45dc8
+      vmargin = _TIFFClampDoubleToUInt32(page->vmargin * scale * ((image->bps + 7) / 8));
b45dc8
       }
b45dc8
 
b45dc8
     if ((hmargin * 2.0) > (pwidth * page->hres))
b45dc8
@@ -5713,13 +5713,13 @@ computeOutputPixelOffsets (struct crop_mask *crop, struct image_data *image,
b45dc8
     {
b45dc8
     if (page->mode & PAGE_MODE_PAPERSIZE )
b45dc8
       {
b45dc8
-      owidth  = (uint32)((pwidth * page->hres) - (hmargin * 2));
b45dc8
-      olength = (uint32)((plength * page->vres) - (vmargin * 2));
b45dc8
+      owidth  = _TIFFClampDoubleToUInt32((pwidth * page->hres) - (hmargin * 2));
b45dc8
+      olength = _TIFFClampDoubleToUInt32((plength * page->vres) - (vmargin * 2));
b45dc8
       }
b45dc8
     else
b45dc8
       {
b45dc8
-      owidth = (uint32)(iwidth - (hmargin * 2 * page->hres));
b45dc8
-      olength = (uint32)(ilength - (vmargin * 2 * page->vres));
b45dc8
+      owidth = _TIFFClampDoubleToUInt32(iwidth - (hmargin * 2 * page->hres));
b45dc8
+      olength = _TIFFClampDoubleToUInt32(ilength - (vmargin * 2 * page->vres));
b45dc8
       }
b45dc8
     }
b45dc8
 
b45dc8
@@ -5728,6 +5728,12 @@ computeOutputPixelOffsets (struct crop_mask *crop, struct image_data *image,
b45dc8
   if (olength > ilength)
b45dc8
     olength = ilength;
b45dc8
 
b45dc8
+  if (owidth == 0 || olength == 0)
b45dc8
+  {
b45dc8
+    TIFFError("computeOutputPixelOffsets", "Integer overflow when calculating the number of pages");
b45dc8
+    exit(EXIT_FAILURE);
b45dc8
+  }
b45dc8
+
b45dc8
   /* Compute the number of pages required for Portrait or Landscape */
b45dc8
   switch (page->orient)
b45dc8
     {