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