nalika / rpms / grub2

Forked from rpms/grub2 2 years ago
Clone

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

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