Blame SOURCES/0291-normal-charset-Fix-an-integer-overflow-in-grub_unico.patch

b35c50
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
b35c50
From: Zhang Boyang <zhangboyang.id@gmail.com>
b35c50
Date: Fri, 28 Oct 2022 21:31:39 +0800
b35c50
Subject: [PATCH] normal/charset: Fix an integer overflow in
b35c50
 grub_unicode_aglomerate_comb()
b35c50
b35c50
The out->ncomb is a bit-field of 8 bits. So, the max possible value is 255.
b35c50
However, code in grub_unicode_aglomerate_comb() doesn't check for an
b35c50
overflow when incrementing out->ncomb. If out->ncomb is already 255,
b35c50
after incrementing it will get 0 instead of 256, and cause illegal
b35c50
memory access in subsequent processing.
b35c50
b35c50
This patch introduces GRUB_UNICODE_NCOMB_MAX to represent the max
b35c50
acceptable value of ncomb. The code now checks for this limit and
b35c50
ignores additional combining characters when limit is reached.
b35c50
b35c50
Reported-by: Daniel Axtens <dja@axtens.net>
b35c50
Signed-off-by: Zhang Boyang <zhangboyang.id@gmail.com>
b35c50
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
b35c50
(cherry picked from commit da90d62316a3b105d2fbd7334d6521936bd6dcf6)
b35c50
---
b35c50
 grub-core/normal/charset.c | 3 +++
b35c50
 include/grub/unicode.h     | 2 ++
b35c50
 2 files changed, 5 insertions(+)
b35c50
b35c50
diff --git a/grub-core/normal/charset.c b/grub-core/normal/charset.c
b35c50
index 7a5a7c153c..c243ca6dae 100644
b35c50
--- a/grub-core/normal/charset.c
b35c50
+++ b/grub-core/normal/charset.c
b35c50
@@ -472,6 +472,9 @@ grub_unicode_aglomerate_comb (const grub_uint32_t *in, grub_size_t inlen,
b35c50
 	  if (!haveout)
b35c50
 	    continue;
b35c50
 
b35c50
+	  if (out->ncomb == GRUB_UNICODE_NCOMB_MAX)
b35c50
+	    continue;
b35c50
+
b35c50
 	  if (comb_type == GRUB_UNICODE_COMB_MC
b35c50
 	      || comb_type == GRUB_UNICODE_COMB_ME
b35c50
 	      || comb_type == GRUB_UNICODE_COMB_MN)
b35c50
diff --git a/include/grub/unicode.h b/include/grub/unicode.h
b35c50
index 4de986a857..c4f6fca043 100644
b35c50
--- a/include/grub/unicode.h
b35c50
+++ b/include/grub/unicode.h
b35c50
@@ -147,7 +147,9 @@ struct grub_unicode_glyph
b35c50
   grub_uint8_t bidi_level:6; /* minimum: 6 */
b35c50
   enum grub_bidi_type bidi_type:5; /* minimum: :5 */
b35c50
 
b35c50
+#define GRUB_UNICODE_NCOMB_MAX ((1 << 8) - 1)
b35c50
   unsigned ncomb:8;
b35c50
+
b35c50
   /* Hint by unicode subsystem how wide this character usually is.
b35c50
      Real width is determined by font. Set only in UTF-8 stream.  */
b35c50
   int estimated_width:8;