Blame SOURCES/0492-font-Fix-integer-overflow-in-BMP-index.patch

351970
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
351970
From: Zhang Boyang <zhangboyang.id@gmail.com>
351970
Date: Mon, 15 Aug 2022 02:04:58 +0800
351970
Subject: [PATCH] font: Fix integer overflow in BMP index
351970
351970
The BMP index (font->bmp_idx) is designed as a reverse lookup table of
351970
char entries (font->char_index), in order to speed up lookups for BMP
351970
chars (i.e. code < 0x10000). The values in BMP index are the subscripts
351970
of the corresponding char entries, stored in grub_uint16_t, while 0xffff
351970
means not found.
351970
351970
This patch fixes the problem of large subscript truncated to grub_uint16_t,
351970
leading BMP index to return wrong char entry or report false miss. The
351970
code now checks for bounds and uses BMP index as a hint, and fallbacks
351970
to binary-search if necessary.
351970
351970
On the occasion add a comment about BMP index is initialized to 0xffff.
351970
351970
Signed-off-by: Zhang Boyang <zhangboyang.id@gmail.com>
351970
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
351970
(cherry picked from commit afda8b60ba0712abe01ae1e64c5f7a067a0e6492)
351970
(cherry picked from commit 6d90568929e11739b56f09ebbce9185ca9c23519)
351970
(cherry picked from commit b8c47c3dd6894b3135db861e3e563f661efad5c3)
351970
---
351970
 grub-core/font/font.c | 13 +++++++++----
351970
 1 file changed, 9 insertions(+), 4 deletions(-)
351970
351970
diff --git a/grub-core/font/font.c b/grub-core/font/font.c
351970
index 1367e44743..059c23dff7 100644
351970
--- a/grub-core/font/font.c
351970
+++ b/grub-core/font/font.c
351970
@@ -300,6 +300,8 @@ load_font_index (grub_file_t file, grub_uint32_t sect_length, struct
351970
   font->bmp_idx = grub_malloc (0x10000 * sizeof (grub_uint16_t));
351970
   if (!font->bmp_idx)
351970
     return 1;
351970
+
351970
+  /* Init the BMP index array to 0xffff. */
351970
   grub_memset (font->bmp_idx, 0xff, 0x10000 * sizeof (grub_uint16_t));
351970
 
351970
 
351970
@@ -328,7 +330,7 @@ load_font_index (grub_file_t file, grub_uint32_t sect_length, struct
351970
 	  return 1;
351970
 	}
351970
 
351970
-      if (entry->code < 0x10000)
351970
+      if (entry->code < 0x10000 && i < 0xffff)
351970
 	font->bmp_idx[entry->code] = i;
351970
 
351970
       last_code = entry->code;
351970
@@ -696,9 +698,12 @@ find_glyph (const grub_font_t font, grub_uint32_t code)
351970
   /* Use BMP index if possible.  */
351970
   if (code < 0x10000 && font->bmp_idx)
351970
     {
351970
-      if (font->bmp_idx[code] == 0xffff)
351970
-	return 0;
351970
-      return &table[font->bmp_idx[code]];
351970
+      if (font->bmp_idx[code] < 0xffff)
351970
+	return &table[font->bmp_idx[code]];
351970
+      /*
351970
+       * When we are here then lookup in BMP index result in miss,
351970
+       * fallthough to binary-search.
351970
+       */
351970
     }
351970
 
351970
   /* Do a binary search in `char_index', which is ordered by code point.  */