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

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