2018-07-12 14:56:34 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2016-03-04 18:32:29 +00:00
|
|
|
From: Matthew Garrett <mjg59@coreos.com>
|
2021-03-12 21:54:28 +00:00
|
|
|
Date: Sun, 9 Aug 2015 16:12:39 -0700
|
2018-07-10 18:39:10 +00:00
|
|
|
Subject: [PATCH] Rework linux command
|
2016-03-04 18:32:29 +00:00
|
|
|
|
|
|
|
We want a single buffer that contains the entire kernel image in order to
|
|
|
|
perform a TPM measurement. Allocate one and copy the entire kernel into it
|
|
|
|
before pulling out the individual blocks later on.
|
2021-03-12 21:54:28 +00:00
|
|
|
|
|
|
|
Signed-off-by: Matthew Garrett <mjg59@coreos.com>
|
2016-03-04 18:32:29 +00:00
|
|
|
---
|
2021-03-12 21:54:28 +00:00
|
|
|
grub-core/loader/i386/linux.c | 35 +++++++++++++++++++++++------------
|
|
|
|
1 file changed, 23 insertions(+), 12 deletions(-)
|
2016-03-04 18:32:29 +00:00
|
|
|
|
|
|
|
diff --git a/grub-core/loader/i386/linux.c b/grub-core/loader/i386/linux.c
|
2022-03-31 21:21:43 +00:00
|
|
|
index 9f74a96b1..dccf3bb30 100644
|
2016-03-04 18:32:29 +00:00
|
|
|
--- a/grub-core/loader/i386/linux.c
|
|
|
|
+++ b/grub-core/loader/i386/linux.c
|
2021-03-12 21:54:28 +00:00
|
|
|
@@ -649,13 +649,15 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
2018-07-17 14:20:54 +00:00
|
|
|
{
|
2016-03-04 18:32:29 +00:00
|
|
|
grub_file_t file = 0;
|
2018-07-10 19:08:14 +00:00
|
|
|
struct linux_i386_kernel_header lh;
|
2018-07-17 14:20:54 +00:00
|
|
|
+ grub_uint8_t *linux_params_ptr;
|
2016-03-04 18:32:29 +00:00
|
|
|
grub_uint8_t setup_sects;
|
|
|
|
- grub_size_t real_size, prot_size, prot_file_size;
|
|
|
|
+ grub_size_t real_size, prot_size, prot_file_size, kernel_offset;
|
|
|
|
grub_ssize_t len;
|
|
|
|
int i;
|
|
|
|
grub_size_t align, min_align;
|
|
|
|
int relocatable;
|
|
|
|
grub_uint64_t preferred_address = GRUB_LINUX_BZIMAGE_ADDR;
|
|
|
|
+ grub_uint8_t *kernel = NULL;
|
|
|
|
|
|
|
|
grub_dl_ref (my_mod);
|
|
|
|
|
2021-03-12 21:54:28 +00:00
|
|
|
@@ -669,7 +671,15 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
2016-03-04 18:32:29 +00:00
|
|
|
if (! file)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
- if (grub_file_read (file, &lh, sizeof (lh)) != sizeof (lh))
|
|
|
|
+ len = grub_file_size (file);
|
|
|
|
+ kernel = grub_malloc (len);
|
|
|
|
+ if (!kernel)
|
|
|
|
+ {
|
|
|
|
+ grub_error (GRUB_ERR_OUT_OF_MEMORY, N_("cannot allocate kernel buffer"));
|
|
|
|
+ goto fail;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (grub_file_read (file, kernel, len) != len)
|
|
|
|
{
|
|
|
|
if (!grub_errno)
|
|
|
|
grub_error (GRUB_ERR_BAD_OS, N_("premature end of file %s"),
|
2021-03-12 21:54:28 +00:00
|
|
|
@@ -677,6 +687,9 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
2016-03-04 18:32:29 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ grub_memcpy (&lh, kernel, sizeof (lh));
|
|
|
|
+ kernel_offset = sizeof (lh);
|
|
|
|
+
|
|
|
|
if (lh.boot_flag != grub_cpu_to_le16_compile_time (0xaa55))
|
|
|
|
{
|
|
|
|
grub_error (GRUB_ERR_BAD_OS, "invalid magic number");
|
2021-03-12 21:54:28 +00:00
|
|
|
@@ -784,13 +797,11 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
2019-08-15 06:01:31 +00:00
|
|
|
/* We've already read lh so there is no need to read it second time. */
|
|
|
|
len -= sizeof(lh);
|
2016-03-04 18:32:29 +00:00
|
|
|
|
2021-03-12 21:54:28 +00:00
|
|
|
- if ((len > 0) &&
|
|
|
|
- (grub_file_read (file, (char *) &linux_params + sizeof (lh), len) != len))
|
|
|
|
+ linux_params_ptr = (void *)&linux_params;
|
|
|
|
+ if (len > 0)
|
|
|
|
{
|
2016-03-04 18:32:29 +00:00
|
|
|
- if (!grub_errno)
|
|
|
|
- grub_error (GRUB_ERR_BAD_OS, N_("premature end of file %s"),
|
|
|
|
- argv[0]);
|
|
|
|
- goto fail;
|
2021-03-12 21:54:28 +00:00
|
|
|
+ grub_memcpy (linux_params_ptr + sizeof (lh), kernel + kernel_offset, len);
|
|
|
|
+ kernel_offset += len;
|
|
|
|
}
|
2016-03-04 18:32:29 +00:00
|
|
|
|
2021-03-12 21:54:28 +00:00
|
|
|
linux_params.code32_start = prot_mode_target + lh.code32_start - GRUB_LINUX_BZIMAGE_ADDR;
|
|
|
|
@@ -853,7 +864,7 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
2016-03-04 18:32:29 +00:00
|
|
|
|
|
|
|
/* The other parameters are filled when booting. */
|
|
|
|
|
|
|
|
- grub_file_seek (file, real_size + GRUB_DISK_SECTOR_SIZE);
|
|
|
|
+ kernel_offset = real_size + GRUB_DISK_SECTOR_SIZE;
|
|
|
|
|
|
|
|
grub_dprintf ("linux", "bzImage, setup=0x%x, size=0x%x\n",
|
|
|
|
(unsigned) real_size, (unsigned) prot_size);
|
2021-03-12 21:54:28 +00:00
|
|
|
@@ -1007,9 +1018,7 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
2019-08-15 06:01:31 +00:00
|
|
|
}
|
2016-03-04 18:32:29 +00:00
|
|
|
|
|
|
|
len = prot_file_size;
|
|
|
|
- if (grub_file_read (file, prot_mode_mem, len) != len && !grub_errno)
|
|
|
|
- grub_error (GRUB_ERR_BAD_OS, N_("premature end of file %s"),
|
|
|
|
- argv[0]);
|
|
|
|
+ grub_memcpy (prot_mode_mem, kernel + kernel_offset, len);
|
|
|
|
|
|
|
|
if (grub_errno == GRUB_ERR_NONE)
|
|
|
|
{
|
2021-03-12 21:54:28 +00:00
|
|
|
@@ -1020,6 +1029,8 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
2016-03-04 18:32:29 +00:00
|
|
|
|
|
|
|
fail:
|
|
|
|
|
|
|
|
+ grub_free (kernel);
|
|
|
|
+
|
|
|
|
if (file)
|
|
|
|
grub_file_close (file);
|
|
|
|
|