2018-07-12 14:56:34 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2018-05-16 15:10:54 +00:00
|
|
|
From: Sebastian Krahmer <krahmer@suse.com>
|
|
|
|
Date: Tue, 28 Nov 2017 17:24:38 +0800
|
2018-07-10 18:39:10 +00:00
|
|
|
Subject: [PATCH] AUDIT-0: http boot tracker bug
|
2018-05-16 15:10:54 +00:00
|
|
|
|
|
|
|
Fixing a memory leak in case of error, and a integer overflow, leading to a
|
|
|
|
heap overflow due to overly large chunk sizes.
|
|
|
|
|
|
|
|
We need to check against some maximum value, otherwise values like 0xffffffff
|
|
|
|
will eventually lead in the allocation functions to small sized buffers, since
|
|
|
|
the len is rounded up to the next reasonable alignment. The following memcpy
|
|
|
|
will then smash the heap, leading to RCE.
|
|
|
|
|
|
|
|
This is no big issue for pure http boot, since its going to execute an
|
|
|
|
untrusted kernel anyway, but it will break trusted boot scenarios, where only
|
|
|
|
signed code is allowed to be executed.
|
|
|
|
|
|
|
|
Signed-off-by: Michael Chang <mchang@suse.com>
|
|
|
|
---
|
|
|
|
grub-core/net/efi/net.c | 4 +++-
|
2024-07-10 18:20:32 +00:00
|
|
|
grub-core/net/http.c | 8 +++++++-
|
|
|
|
2 files changed, 10 insertions(+), 2 deletions(-)
|
2018-05-16 15:10:54 +00:00
|
|
|
|
|
|
|
diff --git a/grub-core/net/efi/net.c b/grub-core/net/efi/net.c
|
2024-07-10 18:20:32 +00:00
|
|
|
index 1a19ee27144..ed04f05ad21 100644
|
2018-05-16 15:10:54 +00:00
|
|
|
--- a/grub-core/net/efi/net.c
|
|
|
|
+++ b/grub-core/net/efi/net.c
|
|
|
|
@@ -645,8 +645,10 @@ grub_efihttp_chunk_read (grub_file_t file, char *buf,
|
|
|
|
|
|
|
|
rd = efi_net_interface (read, file, chunk, sz);
|
|
|
|
|
|
|
|
- if (rd <= 0)
|
|
|
|
+ if (rd <= 0) {
|
|
|
|
+ grub_free (chunk);
|
|
|
|
return rd;
|
|
|
|
+ }
|
|
|
|
|
|
|
|
if (buf)
|
|
|
|
{
|
|
|
|
diff --git a/grub-core/net/http.c b/grub-core/net/http.c
|
2024-07-10 18:20:32 +00:00
|
|
|
index f389bf03d96..af486198399 100644
|
2018-05-16 15:10:54 +00:00
|
|
|
--- a/grub-core/net/http.c
|
|
|
|
+++ b/grub-core/net/http.c
|
2024-07-10 18:20:32 +00:00
|
|
|
@@ -29,7 +29,11 @@
|
2018-05-16 15:10:54 +00:00
|
|
|
|
2024-07-10 18:20:32 +00:00
|
|
|
GRUB_MOD_LICENSE ("GPLv3+");
|
|
|
|
|
|
|
|
-#define HTTP_PORT ((grub_uint16_t) 80)
|
|
|
|
+enum
|
|
|
|
+ {
|
2018-05-16 15:10:54 +00:00
|
|
|
+ HTTP_PORT = 80,
|
|
|
|
+ HTTP_MAX_CHUNK_SIZE = 0x80000000
|
2024-07-10 18:20:32 +00:00
|
|
|
+ };
|
2018-05-16 15:10:54 +00:00
|
|
|
|
2024-07-10 18:20:32 +00:00
|
|
|
typedef struct http_data
|
|
|
|
{
|
|
|
|
@@ -82,6 +86,8 @@ parse_line (grub_file_t file, http_data_t data, char *ptr, grub_size_t len)
|
2018-05-16 15:10:54 +00:00
|
|
|
if (data->in_chunk_len == 2)
|
|
|
|
{
|
|
|
|
data->chunk_rem = grub_strtoul (ptr, 0, 16);
|
|
|
|
+ if (data->chunk_rem > HTTP_MAX_CHUNK_SIZE)
|
|
|
|
+ return GRUB_ERR_NET_PACKET_TOO_BIG;
|
|
|
|
grub_errno = GRUB_ERR_NONE;
|
|
|
|
if (data->chunk_rem == 0)
|
|
|
|
{
|