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

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