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

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