2f7a8021b5
Details: https://lists.gnu.org/archive/html/grub-devel/2020-07/msg00034.html Fixes the following security issues: * CVE-2020-10713 A flaw was found in grub2, prior to version 2.06. An attacker may use the GRUB 2 flaw to hijack and tamper the GRUB verification process. This flaw also allows the bypass of Secure Boot protections. In order to load an untrusted or modified kernel, an attacker would first need to establish access to the system such as gaining physical access, obtain the ability to alter a pxe-boot network, or have remote access to a networked system with root access. With this access, an attacker could then craft a string to cause a buffer overflow by injecting a malicious payload that leads to arbitrary code execution within GRUB. The highest threat from this vulnerability is to data confidentiality and integrity as well as system availability. * CVE-2020-14308 In grub2 versions before 2.06 the grub memory allocator doesn't check for possible arithmetic overflows on the requested allocation size. This leads the function to return invalid memory allocations which can be further used to cause possible integrity, confidentiality and availability impacts during the boot process. * CVE-2020-14309 There's an issue with grub2 in all versions before 2.06 when handling squashfs filesystems containing a symbolic link with name length of UINT32 bytes in size. The name size leads to an arithmetic overflow leading to a zero-size allocation further causing a heap-based buffer overflow with attacker controlled data. * CVE-2020-14310 An integer overflow in read_section_from_string may lead to a heap based buffer overflow. * CVE-2020-14311 An integer overflow in grub_ext2_read_link may lead to a heap-based buffer overflow. * CVE-2020-15706 GRUB2 contains a race condition in grub_script_function_create() leading to a use-after-free vulnerability which can be triggered by redefining a function whilst the same function is already executing, leading to arbitrary code execution and secure boot restriction bypass * CVE-2020-15707 Integer overflows were discovered in the functions grub_cmd_initrd and grub_initrd_init in the efilinux component of GRUB2, as shipped in Debian, Red Hat, and Ubuntu (the functionality is not included in GRUB2 upstream), leading to a heap-based buffer overflow. These could be triggered by an extremely large number of arguments to the initrd command on 32-bit architectures, or a crafted filesystem with very large files on any architecture. An attacker could use this to execute arbitrary code and bypass UEFI Secure Boot restrictions. This issue affects GRUB2 version 2.04 and prior versions. Signed-off-by: Stefan Sørensen <stefan.sorensen@spectralink.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
247 lines
6.8 KiB
Diff
247 lines
6.8 KiB
Diff
From 5775eb40862b67468ced816e6d7560dbe22a3670 Mon Sep 17 00:00:00 2001
|
|
From: Peter Jones <pjones@redhat.com>
|
|
Date: Mon, 15 Jun 2020 12:15:29 -0400
|
|
Subject: [PATCH] calloc: Make sure we always have an overflow-checking
|
|
calloc() available
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
This tries to make sure that everywhere in this source tree, we always have
|
|
an appropriate version of calloc() (i.e. grub_calloc(), xcalloc(), etc.)
|
|
available, and that they all safely check for overflow and return NULL when
|
|
it would occur.
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
|
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
|
|
Signed-off-by: Stefan Sørensen <stefan.sorensen@spectralink.com>
|
|
---
|
|
grub-core/kern/emu/misc.c | 12 +++++++++
|
|
grub-core/kern/emu/mm.c | 10 ++++++++
|
|
grub-core/kern/mm.c | 40 ++++++++++++++++++++++++++++++
|
|
grub-core/lib/libgcrypt_wrap/mem.c | 11 ++++++--
|
|
grub-core/lib/posix_wrap/stdlib.h | 8 +++++-
|
|
include/grub/emu/misc.h | 1 +
|
|
include/grub/mm.h | 6 +++++
|
|
7 files changed, 85 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/grub-core/kern/emu/misc.c b/grub-core/kern/emu/misc.c
|
|
index 65db79baa..dfd8a8ec4 100644
|
|
--- a/grub-core/kern/emu/misc.c
|
|
+++ b/grub-core/kern/emu/misc.c
|
|
@@ -85,6 +85,18 @@ grub_util_error (const char *fmt, ...)
|
|
exit (1);
|
|
}
|
|
|
|
+void *
|
|
+xcalloc (grub_size_t nmemb, grub_size_t size)
|
|
+{
|
|
+ void *p;
|
|
+
|
|
+ p = calloc (nmemb, size);
|
|
+ if (!p)
|
|
+ grub_util_error ("%s", _("out of memory"));
|
|
+
|
|
+ return p;
|
|
+}
|
|
+
|
|
void *
|
|
xmalloc (grub_size_t size)
|
|
{
|
|
diff --git a/grub-core/kern/emu/mm.c b/grub-core/kern/emu/mm.c
|
|
index f262e95e3..145b01d37 100644
|
|
--- a/grub-core/kern/emu/mm.c
|
|
+++ b/grub-core/kern/emu/mm.c
|
|
@@ -25,6 +25,16 @@
|
|
#include <string.h>
|
|
#include <grub/i18n.h>
|
|
|
|
+void *
|
|
+grub_calloc (grub_size_t nmemb, grub_size_t size)
|
|
+{
|
|
+ void *ret;
|
|
+ ret = calloc (nmemb, size);
|
|
+ if (!ret)
|
|
+ grub_error (GRUB_ERR_OUT_OF_MEMORY, N_("out of memory"));
|
|
+ return ret;
|
|
+}
|
|
+
|
|
void *
|
|
grub_malloc (grub_size_t size)
|
|
{
|
|
diff --git a/grub-core/kern/mm.c b/grub-core/kern/mm.c
|
|
index ee88ff611..f2822a836 100644
|
|
--- a/grub-core/kern/mm.c
|
|
+++ b/grub-core/kern/mm.c
|
|
@@ -67,8 +67,10 @@
|
|
#include <grub/dl.h>
|
|
#include <grub/i18n.h>
|
|
#include <grub/mm_private.h>
|
|
+#include <grub/safemath.h>
|
|
|
|
#ifdef MM_DEBUG
|
|
+# undef grub_calloc
|
|
# undef grub_malloc
|
|
# undef grub_zalloc
|
|
# undef grub_realloc
|
|
@@ -375,6 +377,30 @@ grub_memalign (grub_size_t align, grub_size_t size)
|
|
return 0;
|
|
}
|
|
|
|
+/*
|
|
+ * Allocate NMEMB instances of SIZE bytes and return the pointer, or error on
|
|
+ * integer overflow.
|
|
+ */
|
|
+void *
|
|
+grub_calloc (grub_size_t nmemb, grub_size_t size)
|
|
+{
|
|
+ void *ret;
|
|
+ grub_size_t sz = 0;
|
|
+
|
|
+ if (grub_mul (nmemb, size, &sz))
|
|
+ {
|
|
+ grub_error (GRUB_ERR_OUT_OF_RANGE, N_("overflow is detected"));
|
|
+ return NULL;
|
|
+ }
|
|
+
|
|
+ ret = grub_memalign (0, sz);
|
|
+ if (!ret)
|
|
+ return NULL;
|
|
+
|
|
+ grub_memset (ret, 0, sz);
|
|
+ return ret;
|
|
+}
|
|
+
|
|
/* Allocate SIZE bytes and return the pointer. */
|
|
void *
|
|
grub_malloc (grub_size_t size)
|
|
@@ -561,6 +587,20 @@ grub_mm_dump (unsigned lineno)
|
|
grub_printf ("\n");
|
|
}
|
|
|
|
+void *
|
|
+grub_debug_calloc (const char *file, int line, grub_size_t nmemb, grub_size_t size)
|
|
+{
|
|
+ void *ptr;
|
|
+
|
|
+ if (grub_mm_debug)
|
|
+ grub_printf ("%s:%d: calloc (0x%" PRIxGRUB_SIZE ", 0x%" PRIxGRUB_SIZE ") = ",
|
|
+ file, line, size);
|
|
+ ptr = grub_calloc (nmemb, size);
|
|
+ if (grub_mm_debug)
|
|
+ grub_printf ("%p\n", ptr);
|
|
+ return ptr;
|
|
+}
|
|
+
|
|
void *
|
|
grub_debug_malloc (const char *file, int line, grub_size_t size)
|
|
{
|
|
diff --git a/grub-core/lib/libgcrypt_wrap/mem.c b/grub-core/lib/libgcrypt_wrap/mem.c
|
|
index beeb661a3..74c6eafe5 100644
|
|
--- a/grub-core/lib/libgcrypt_wrap/mem.c
|
|
+++ b/grub-core/lib/libgcrypt_wrap/mem.c
|
|
@@ -4,6 +4,7 @@
|
|
#include <grub/crypto.h>
|
|
#include <grub/dl.h>
|
|
#include <grub/env.h>
|
|
+#include <grub/safemath.h>
|
|
|
|
GRUB_MOD_LICENSE ("GPLv3+");
|
|
|
|
@@ -36,7 +37,10 @@ void *
|
|
gcry_xcalloc (size_t n, size_t m)
|
|
{
|
|
void *ret;
|
|
- ret = grub_zalloc (n * m);
|
|
+ size_t sz;
|
|
+ if (grub_mul (n, m, &sz))
|
|
+ grub_fatal ("gcry_xcalloc would overflow");
|
|
+ ret = grub_zalloc (sz);
|
|
if (!ret)
|
|
grub_fatal ("gcry_xcalloc failed");
|
|
return ret;
|
|
@@ -56,7 +60,10 @@ void *
|
|
gcry_xcalloc_secure (size_t n, size_t m)
|
|
{
|
|
void *ret;
|
|
- ret = grub_zalloc (n * m);
|
|
+ size_t sz;
|
|
+ if (grub_mul (n, m, &sz))
|
|
+ grub_fatal ("gcry_xcalloc would overflow");
|
|
+ ret = grub_zalloc (sz);
|
|
if (!ret)
|
|
grub_fatal ("gcry_xcalloc failed");
|
|
return ret;
|
|
diff --git a/grub-core/lib/posix_wrap/stdlib.h b/grub-core/lib/posix_wrap/stdlib.h
|
|
index 3b46f47ff..7a8d385e9 100644
|
|
--- a/grub-core/lib/posix_wrap/stdlib.h
|
|
+++ b/grub-core/lib/posix_wrap/stdlib.h
|
|
@@ -21,6 +21,7 @@
|
|
|
|
#include <grub/mm.h>
|
|
#include <grub/misc.h>
|
|
+#include <grub/safemath.h>
|
|
|
|
static inline void
|
|
free (void *ptr)
|
|
@@ -37,7 +38,12 @@ malloc (grub_size_t size)
|
|
static inline void *
|
|
calloc (grub_size_t size, grub_size_t nelem)
|
|
{
|
|
- return grub_zalloc (size * nelem);
|
|
+ grub_size_t sz;
|
|
+
|
|
+ if (grub_mul (size, nelem, &sz))
|
|
+ return NULL;
|
|
+
|
|
+ return grub_zalloc (sz);
|
|
}
|
|
|
|
static inline void *
|
|
diff --git a/include/grub/emu/misc.h b/include/grub/emu/misc.h
|
|
index ce464cfd0..ff9c48a64 100644
|
|
--- a/include/grub/emu/misc.h
|
|
+++ b/include/grub/emu/misc.h
|
|
@@ -47,6 +47,7 @@ grub_util_device_is_mapped (const char *dev);
|
|
#define GRUB_HOST_PRIuLONG_LONG "llu"
|
|
#define GRUB_HOST_PRIxLONG_LONG "llx"
|
|
|
|
+void * EXPORT_FUNC(xcalloc) (grub_size_t nmemb, grub_size_t size) WARN_UNUSED_RESULT;
|
|
void * EXPORT_FUNC(xmalloc) (grub_size_t size) WARN_UNUSED_RESULT;
|
|
void * EXPORT_FUNC(xrealloc) (void *ptr, grub_size_t size) WARN_UNUSED_RESULT;
|
|
char * EXPORT_FUNC(xstrdup) (const char *str) WARN_UNUSED_RESULT;
|
|
diff --git a/include/grub/mm.h b/include/grub/mm.h
|
|
index 28e2e53eb..9c38dd3ca 100644
|
|
--- a/include/grub/mm.h
|
|
+++ b/include/grub/mm.h
|
|
@@ -29,6 +29,7 @@
|
|
#endif
|
|
|
|
void grub_mm_init_region (void *addr, grub_size_t size);
|
|
+void *EXPORT_FUNC(grub_calloc) (grub_size_t nmemb, grub_size_t size);
|
|
void *EXPORT_FUNC(grub_malloc) (grub_size_t size);
|
|
void *EXPORT_FUNC(grub_zalloc) (grub_size_t size);
|
|
void EXPORT_FUNC(grub_free) (void *ptr);
|
|
@@ -48,6 +49,9 @@ extern int EXPORT_VAR(grub_mm_debug);
|
|
void grub_mm_dump_free (void);
|
|
void grub_mm_dump (unsigned lineno);
|
|
|
|
+#define grub_calloc(nmemb, size) \
|
|
+ grub_debug_calloc (GRUB_FILE, __LINE__, nmemb, size)
|
|
+
|
|
#define grub_malloc(size) \
|
|
grub_debug_malloc (GRUB_FILE, __LINE__, size)
|
|
|
|
@@ -63,6 +67,8 @@ void grub_mm_dump (unsigned lineno);
|
|
#define grub_free(ptr) \
|
|
grub_debug_free (GRUB_FILE, __LINE__, ptr)
|
|
|
|
+void *EXPORT_FUNC(grub_debug_calloc) (const char *file, int line,
|
|
+ grub_size_t nmemb, grub_size_t size);
|
|
void *EXPORT_FUNC(grub_debug_malloc) (const char *file, int line,
|
|
grub_size_t size);
|
|
void *EXPORT_FUNC(grub_debug_zalloc) (const char *file, int line,
|
|
--
|
|
2.26.2
|
|
|