2018-03-15 19:05:59 +00:00
|
|
|
From 7d6ce3346f32a67e07fd3fda9ad65ac76f600628 Mon Sep 17 00:00:00 2001
|
2016-03-04 18:32:29 +00:00
|
|
|
From: Matthew Garrett <mjg59@coreos.com>
|
|
|
|
Date: Sun, 9 Aug 2015 16:20:58 -0700
|
2018-03-15 19:05:59 +00:00
|
|
|
Subject: [PATCH 156/215] Rework linux16 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 int it
|
|
|
|
before pulling out the individual blocks later on.
|
|
|
|
---
|
|
|
|
grub-core/loader/i386/pc/linux.c | 34 +++++++++++++++++++++-------------
|
|
|
|
1 file changed, 21 insertions(+), 13 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/grub-core/loader/i386/pc/linux.c b/grub-core/loader/i386/pc/linux.c
|
2018-02-27 18:56:41 +00:00
|
|
|
index 91283157e30..b864e540333 100644
|
2016-03-04 18:32:29 +00:00
|
|
|
--- a/grub-core/loader/i386/pc/linux.c
|
|
|
|
+++ b/grub-core/loader/i386/pc/linux.c
|
|
|
|
@@ -124,13 +124,14 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
|
|
|
grub_file_t file = 0;
|
|
|
|
struct linux_kernel_header lh;
|
|
|
|
grub_uint8_t setup_sects;
|
|
|
|
- grub_size_t real_size;
|
|
|
|
+ grub_size_t real_size, kernel_offset = 0;
|
|
|
|
grub_ssize_t len;
|
|
|
|
int i;
|
|
|
|
char *grub_linux_prot_chunk;
|
|
|
|
int grub_linux_is_bzimage;
|
|
|
|
grub_addr_t grub_linux_prot_target;
|
|
|
|
grub_err_t err;
|
|
|
|
+ grub_uint8_t *kernel = NULL;
|
|
|
|
|
|
|
|
grub_dl_ref (my_mod);
|
|
|
|
|
|
|
|
@@ -144,7 +145,15 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
|
|
|
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"),
|
|
|
|
@@ -152,6 +161,9 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
|
|
|
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");
|
|
|
|
@@ -315,13 +327,9 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
|
|
|
grub_memmove (grub_linux_real_chunk, &lh, sizeof (lh));
|
|
|
|
|
|
|
|
len = real_size + GRUB_DISK_SECTOR_SIZE - sizeof (lh);
|
|
|
|
- if (grub_file_read (file, grub_linux_real_chunk + sizeof (lh), len) != len)
|
|
|
|
- {
|
|
|
|
- if (!grub_errno)
|
|
|
|
- grub_error (GRUB_ERR_BAD_OS, N_("premature end of file %s"),
|
|
|
|
- argv[0]);
|
|
|
|
- goto fail;
|
|
|
|
- }
|
|
|
|
+ grub_memcpy (grub_linux_real_chunk + sizeof (lh), kernel + kernel_offset,
|
|
|
|
+ len);
|
|
|
|
+ kernel_offset += len;
|
|
|
|
|
|
|
|
if (lh.header != grub_cpu_to_le32_compile_time (GRUB_LINUX_MAGIC_SIGNATURE)
|
|
|
|
|| grub_le_to_cpu16 (lh.version) < 0x0200)
|
|
|
|
@@ -356,10 +364,8 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
|
|
|
}
|
|
|
|
|
|
|
|
len = grub_linux16_prot_size;
|
|
|
|
- if (grub_file_read (file, grub_linux_prot_chunk, grub_linux16_prot_size)
|
|
|
|
- != (grub_ssize_t) grub_linux16_prot_size && !grub_errno)
|
|
|
|
- grub_error (GRUB_ERR_BAD_OS, N_("premature end of file %s"),
|
|
|
|
- argv[0]);
|
|
|
|
+ grub_memcpy (grub_linux_prot_chunk, kernel + kernel_offset, len);
|
|
|
|
+ kernel_offset += len;
|
|
|
|
|
|
|
|
if (grub_errno == GRUB_ERR_NONE)
|
|
|
|
{
|
|
|
|
@@ -369,6 +375,8 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
|
|
|
|
|
|
|
fail:
|
|
|
|
|
|
|
|
+ grub_free (kernel);
|
|
|
|
+
|
|
|
|
if (file)
|
|
|
|
grub_file_close (file);
|
|
|
|
|
|
|
|
--
|
2018-02-27 18:56:41 +00:00
|
|
|
2.15.0
|
2016-03-04 18:32:29 +00:00
|
|
|
|