Blame SOURCES/0223-video-readers-png-Drop-greyscale-support-to-fix-heap.patch

fd0330
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
fd0330
From: Daniel Axtens <dja@axtens.net>
fd0330
Date: Tue, 6 Jul 2021 18:51:35 +1000
fd0330
Subject: [PATCH] video/readers/png: Drop greyscale support to fix heap
fd0330
 out-of-bounds write
fd0330
fd0330
A 16-bit greyscale PNG without alpha is processed in the following loop:
fd0330
fd0330
      for (i = 0; i < (data->image_width * data->image_height);
fd0330
	   i++, d1 += 4, d2 += 2)
fd0330
	{
fd0330
	  d1[R3] = d2[1];
fd0330
	  d1[G3] = d2[1];
fd0330
	  d1[B3] = d2[1];
fd0330
	}
fd0330
fd0330
The increment of d1 is wrong. d1 is incremented by 4 bytes per iteration,
fd0330
but there are only 3 bytes allocated for storage. This means that image
fd0330
data will overwrite somewhat-attacker-controlled parts of memory - 3 bytes
fd0330
out of every 4 following the end of the image.
fd0330
fd0330
This has existed since greyscale support was added in 2013 in commit
fd0330
3ccf16dff98f (grub-core/video/readers/png.c: Support grayscale).
fd0330
fd0330
Saving starfield.png as a 16-bit greyscale image without alpha in the gimp
fd0330
and attempting to load it causes grub-emu to crash - I don't think this code
fd0330
has ever worked.
fd0330
fd0330
Delete all PNG greyscale support.
fd0330
fd0330
Fixes: CVE-2021-3695
fd0330
fd0330
Signed-off-by: Daniel Axtens <dja@axtens.net>
fd0330
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
fd0330
(cherry picked from commit 0e1d163382669bd734439d8864ee969616d971d9)
fd0330
[rharwood: context conflict]
fd0330
Signed-off-by: Robbie Harwood <rharwood@redhat.com>
fd0330
---
fd0330
 grub-core/video/readers/png.c | 85 +++----------------------------------------
fd0330
 1 file changed, 6 insertions(+), 79 deletions(-)
fd0330
fd0330
diff --git a/grub-core/video/readers/png.c b/grub-core/video/readers/png.c
fd0330
index 8955b8ecfd..a3161e25b6 100644
fd0330
--- a/grub-core/video/readers/png.c
fd0330
+++ b/grub-core/video/readers/png.c
fd0330
@@ -100,7 +100,7 @@ struct grub_png_data
fd0330
 
fd0330
   unsigned image_width, image_height;
fd0330
   int bpp, is_16bit;
fd0330
-  int raw_bytes, is_gray, is_alpha, is_palette;
fd0330
+  int raw_bytes, is_alpha, is_palette;
fd0330
   int row_bytes, color_bits;
fd0330
   grub_uint8_t *image_data;
fd0330
 
fd0330
@@ -296,13 +296,13 @@ grub_png_decode_image_header (struct grub_png_data *data)
fd0330
     data->bpp = 3;
fd0330
   else
fd0330
     {
fd0330
-      data->is_gray = 1;
fd0330
-      data->bpp = 1;
fd0330
+      return grub_error (GRUB_ERR_BAD_FILE_TYPE,
fd0330
+			 "png: color type not supported");
fd0330
     }
fd0330
 
fd0330
   if ((color_bits != 8) && (color_bits != 16)
fd0330
       && (color_bits != 4
fd0330
-	  || !(data->is_gray || data->is_palette)))
fd0330
+	  || !data->is_palette))
fd0330
     return grub_error (GRUB_ERR_BAD_FILE_TYPE,
fd0330
                        "png: bit depth must be 8 or 16");
fd0330
 
fd0330
@@ -331,7 +331,7 @@ grub_png_decode_image_header (struct grub_png_data *data)
fd0330
     }
fd0330
 
fd0330
 #ifndef GRUB_CPU_WORDS_BIGENDIAN
fd0330
-  if (data->is_16bit || data->is_gray || data->is_palette)
fd0330
+  if (data->is_16bit || data->is_palette)
fd0330
 #endif
fd0330
     {
fd0330
       data->image_data = grub_calloc (data->image_height, data->row_bytes);
fd0330
@@ -899,27 +899,8 @@ grub_png_convert_image (struct grub_png_data *data)
fd0330
       int shift;
fd0330
       int mask = (1 << data->color_bits) - 1;
fd0330
       unsigned j;
fd0330
-      if (data->is_gray)
fd0330
-	{
fd0330
-	  /* Generic formula is
fd0330
-	     (0xff * i) / ((1U << data->color_bits) - 1)
fd0330
-	     but for allowed bit depth of 1, 2 and for it's
fd0330
-	     equivalent to
fd0330
-	     (0xff / ((1U << data->color_bits) - 1)) * i
fd0330
-	     Precompute the multipliers to avoid division.
fd0330
-	  */
fd0330
 
fd0330
-	  const grub_uint8_t multipliers[5] = { 0xff, 0xff, 0x55, 0x24, 0x11 };
fd0330
-	  for (i = 0; i < (1U << data->color_bits); i++)
fd0330
-	    {
fd0330
-	      grub_uint8_t col = multipliers[data->color_bits] * i;
fd0330
-	      palette[i][0] = col;
fd0330
-	      palette[i][1] = col;
fd0330
-	      palette[i][2] = col;
fd0330
-	    }
fd0330
-	}
fd0330
-      else
fd0330
-	grub_memcpy (palette, data->palette, 3 << data->color_bits);
fd0330
+      grub_memcpy (palette, data->palette, 3 << data->color_bits);
fd0330
       d1c = d1;
fd0330
       d2c = d2;
fd0330
       for (j = 0; j < data->image_height; j++, d1c += data->image_width * 3,
fd0330
@@ -956,60 +937,6 @@ grub_png_convert_image (struct grub_png_data *data)
fd0330
 	}
fd0330
       return;
fd0330
     }
fd0330
-  
fd0330
-  if (data->is_gray)
fd0330
-    {
fd0330
-      switch (data->bpp)
fd0330
-	{
fd0330
-	case 4:
fd0330
-	  /* 16-bit gray with alpha.  */
fd0330
-	  for (i = 0; i < (data->image_width * data->image_height);
fd0330
-	       i++, d1 += 4, d2 += 4)
fd0330
-	    {
fd0330
-	      d1[R4] = d2[3];
fd0330
-	      d1[G4] = d2[3];
fd0330
-	      d1[B4] = d2[3];
fd0330
-	      d1[A4] = d2[1];
fd0330
-	    }
fd0330
-	  break;
fd0330
-	case 2:
fd0330
-	  if (data->is_16bit)
fd0330
-	    /* 16-bit gray without alpha.  */
fd0330
-	    {
fd0330
-	      for (i = 0; i < (data->image_width * data->image_height);
fd0330
-		   i++, d1 += 4, d2 += 2)
fd0330
-		{
fd0330
-		  d1[R3] = d2[1];
fd0330
-		  d1[G3] = d2[1];
fd0330
-		  d1[B3] = d2[1];
fd0330
-		}
fd0330
-	    }
fd0330
-	  else
fd0330
-	    /* 8-bit gray with alpha.  */
fd0330
-	    {
fd0330
-	      for (i = 0; i < (data->image_width * data->image_height);
fd0330
-		   i++, d1 += 4, d2 += 2)
fd0330
-		{
fd0330
-		  d1[R4] = d2[1];
fd0330
-		  d1[G4] = d2[1];
fd0330
-		  d1[B4] = d2[1];
fd0330
-		  d1[A4] = d2[0];
fd0330
-		}
fd0330
-	    }
fd0330
-	  break;
fd0330
-	  /* 8-bit gray without alpha.  */
fd0330
-	case 1:
fd0330
-	  for (i = 0; i < (data->image_width * data->image_height);
fd0330
-	       i++, d1 += 3, d2++)
fd0330
-	    {
fd0330
-	      d1[R3] = d2[0];
fd0330
-	      d1[G3] = d2[0];
fd0330
-	      d1[B3] = d2[0];
fd0330
-	    }
fd0330
-	  break;
fd0330
-	}
fd0330
-      return;
fd0330
-    }
fd0330
 
fd0330
     {
fd0330
   /* Only copy the upper 8 bit.  */