44f318a38d
Porting patches from grub2_2.06-3~deb11u1 to fix below CVEs: CVE-2021-3695 CVE-2021-3696 CVE-2021-3697 CVE-2022-28733 CVE-2022-28734 The source code of grub2_2.06-3~deb11u1 is from: https://snapshot.debian.org/archive/debian/20220807T030023Z/pool /main/g/grub2/grub2_2.06-3~deb11u1.debian.tar.xz The relationship between commits and CVEs is as below: (1)CVE-2021-3695 commit <video/readers/png: Drop greyscale support to fix heap out-of-bounds write> (2)CVE-2021-3696 commit <video/readers/png: Avoid heap OOB R/W inserting huff table items> (3)CVE-2021-3697 commit <video/readers/jpeg: Block int underflow -> wild pointer write> (4)CVE-2022-28733 commit <net/ip: Do IP fragment maths safely> (5)CVE-2022-28734 commit <net/http: Fix OOB write for split http headers> commit <net/http: Error out on headers with LF without CR> Test plan: - PASS: build grub2/grub-efi. - PASS: build-image and install and boot up on lab/qemu. - PASS: check that the "stx.N" version number is right for both bios(grub2 ver) and uefi(grub-efi ver) boot. Partial-Bug: #2034119 Signed-off-by: Li Zhou <li.zhou@windriver.com> Change-Id: Ia27b1ee225f13e9c4ad08a0828f93ea37f8d3dfb
172 lines
4.7 KiB
Diff
172 lines
4.7 KiB
Diff
From 157486f818ecbe26b7962f5795a8f48393ba5169 Mon Sep 17 00:00:00 2001
|
|
From: Daniel Axtens <dja@axtens.net>
|
|
Date: Tue, 6 Jul 2021 18:51:35 +1000
|
|
Subject: [PATCH 1/6] video/readers/png: Drop greyscale support to fix heap
|
|
out-of-bounds write
|
|
|
|
A 16-bit greyscale PNG without alpha is processed in the following loop:
|
|
|
|
for (i = 0; i < (data->image_width * data->image_height);
|
|
i++, d1 += 4, d2 += 2)
|
|
{
|
|
d1[R3] = d2[1];
|
|
d1[G3] = d2[1];
|
|
d1[B3] = d2[1];
|
|
}
|
|
|
|
The increment of d1 is wrong. d1 is incremented by 4 bytes per iteration,
|
|
but there are only 3 bytes allocated for storage. This means that image
|
|
data will overwrite somewhat-attacker-controlled parts of memory - 3 bytes
|
|
out of every 4 following the end of the image.
|
|
|
|
This has existed since greyscale support was added in 2013 in commit
|
|
3ccf16dff98f (grub-core/video/readers/png.c: Support grayscale).
|
|
|
|
Saving starfield.png as a 16-bit greyscale image without alpha in the gimp
|
|
and attempting to load it causes grub-emu to crash - I don't think this code
|
|
has ever worked.
|
|
|
|
Delete all PNG greyscale support.
|
|
|
|
Fixes: CVE-2021-3695
|
|
|
|
Signed-off-by: Daniel Axtens <dja@axtens.net>
|
|
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
|
|
---
|
|
grub-core/video/readers/png.c | 87 +++--------------------------------
|
|
1 file changed, 7 insertions(+), 80 deletions(-)
|
|
|
|
diff --git a/grub-core/video/readers/png.c b/grub-core/video/readers/png.c
|
|
index 4827b9c..1e35eae 100644
|
|
--- a/grub-core/video/readers/png.c
|
|
+++ b/grub-core/video/readers/png.c
|
|
@@ -100,7 +100,7 @@ struct grub_png_data
|
|
|
|
unsigned image_width, image_height;
|
|
int bpp, is_16bit;
|
|
- int raw_bytes, is_gray, is_alpha, is_palette;
|
|
+ int raw_bytes, is_alpha, is_palette;
|
|
int row_bytes, color_bits;
|
|
grub_uint8_t *image_data;
|
|
|
|
@@ -284,13 +284,13 @@ grub_png_decode_image_header (struct grub_png_data *data)
|
|
data->bpp = 3;
|
|
else
|
|
{
|
|
- data->is_gray = 1;
|
|
- data->bpp = 1;
|
|
+ return grub_error (GRUB_ERR_BAD_FILE_TYPE,
|
|
+ "png: color type not supported");
|
|
}
|
|
|
|
if ((color_bits != 8) && (color_bits != 16)
|
|
&& (color_bits != 4
|
|
- || !(data->is_gray || data->is_palette)))
|
|
+ || !data->is_palette))
|
|
return grub_error (GRUB_ERR_BAD_FILE_TYPE,
|
|
"png: bit depth must be 8 or 16");
|
|
|
|
@@ -319,7 +319,7 @@ grub_png_decode_image_header (struct grub_png_data *data)
|
|
}
|
|
|
|
#ifndef GRUB_CPU_WORDS_BIGENDIAN
|
|
- if (data->is_16bit || data->is_gray || data->is_palette)
|
|
+ if (data->is_16bit || data->is_palette)
|
|
#endif
|
|
{
|
|
data->image_data = grub_calloc (data->image_height, data->row_bytes);
|
|
@@ -863,27 +863,8 @@ grub_png_convert_image (struct grub_png_data *data)
|
|
int shift;
|
|
int mask = (1 << data->color_bits) - 1;
|
|
unsigned j;
|
|
- if (data->is_gray)
|
|
- {
|
|
- /* Generic formula is
|
|
- (0xff * i) / ((1U << data->color_bits) - 1)
|
|
- but for allowed bit depth of 1, 2 and for it's
|
|
- equivalent to
|
|
- (0xff / ((1U << data->color_bits) - 1)) * i
|
|
- Precompute the multipliers to avoid division.
|
|
- */
|
|
-
|
|
- const grub_uint8_t multipliers[5] = { 0xff, 0xff, 0x55, 0x24, 0x11 };
|
|
- for (i = 0; i < (1U << data->color_bits); i++)
|
|
- {
|
|
- grub_uint8_t col = multipliers[data->color_bits] * i;
|
|
- palette[i][0] = col;
|
|
- palette[i][1] = col;
|
|
- palette[i][2] = col;
|
|
- }
|
|
- }
|
|
- else
|
|
- grub_memcpy (palette, data->palette, 3 << data->color_bits);
|
|
+
|
|
+ grub_memcpy (palette, data->palette, 3 << data->color_bits);
|
|
d1c = d1;
|
|
d2c = d2;
|
|
for (j = 0; j < data->image_height; j++, d1c += data->image_width * 3,
|
|
@@ -920,60 +901,6 @@ grub_png_convert_image (struct grub_png_data *data)
|
|
}
|
|
return;
|
|
}
|
|
-
|
|
- if (data->is_gray)
|
|
- {
|
|
- switch (data->bpp)
|
|
- {
|
|
- case 4:
|
|
- /* 16-bit gray with alpha. */
|
|
- for (i = 0; i < (data->image_width * data->image_height);
|
|
- i++, d1 += 4, d2 += 4)
|
|
- {
|
|
- d1[R4] = d2[3];
|
|
- d1[G4] = d2[3];
|
|
- d1[B4] = d2[3];
|
|
- d1[A4] = d2[1];
|
|
- }
|
|
- break;
|
|
- case 2:
|
|
- if (data->is_16bit)
|
|
- /* 16-bit gray without alpha. */
|
|
- {
|
|
- for (i = 0; i < (data->image_width * data->image_height);
|
|
- i++, d1 += 4, d2 += 2)
|
|
- {
|
|
- d1[R3] = d2[1];
|
|
- d1[G3] = d2[1];
|
|
- d1[B3] = d2[1];
|
|
- }
|
|
- }
|
|
- else
|
|
- /* 8-bit gray with alpha. */
|
|
- {
|
|
- for (i = 0; i < (data->image_width * data->image_height);
|
|
- i++, d1 += 4, d2 += 2)
|
|
- {
|
|
- d1[R4] = d2[1];
|
|
- d1[G4] = d2[1];
|
|
- d1[B4] = d2[1];
|
|
- d1[A4] = d2[0];
|
|
- }
|
|
- }
|
|
- break;
|
|
- /* 8-bit gray without alpha. */
|
|
- case 1:
|
|
- for (i = 0; i < (data->image_width * data->image_height);
|
|
- i++, d1 += 3, d2++)
|
|
- {
|
|
- d1[R3] = d2[0];
|
|
- d1[G3] = d2[0];
|
|
- d1[B3] = d2[0];
|
|
- }
|
|
- break;
|
|
- }
|
|
- return;
|
|
- }
|
|
|
|
{
|
|
/* Only copy the upper 8 bit. */
|
|
--
|
|
2.17.1
|
|
|