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

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