f4c76c0
From b1ce9da47f7d73a793f8e41ad4575d09e4ef9e9b Mon Sep 17 00:00:00 2001
481bf3b
From: Matthew Garrett <mjg@redhat.com>
481bf3b
Date: Tue, 10 Jul 2012 11:58:52 -0400
f4c76c0
Subject: [PATCH 03/74] Add support for linuxefi
481bf3b
481bf3b
---
481bf3b
 grub-core/Makefile.core.def       |   8 +
481bf3b
 grub-core/kern/efi/mm.c           |  32 ++++
481bf3b
 grub-core/loader/i386/efi/linux.c | 371 ++++++++++++++++++++++++++++++++++++++
481bf3b
 include/grub/efi/efi.h            |   3 +
481bf3b
 include/grub/i386/linux.h         |   1 +
481bf3b
 5 files changed, 415 insertions(+)
481bf3b
 create mode 100644 grub-core/loader/i386/efi/linux.c
481bf3b
481bf3b
diff --git a/grub-core/Makefile.core.def b/grub-core/Makefile.core.def
8c6b1ac
index a6101de..a056b42 100644
481bf3b
--- a/grub-core/Makefile.core.def
481bf3b
+++ b/grub-core/Makefile.core.def
8c6b1ac
@@ -1692,6 +1692,14 @@ module = {
481bf3b
 };
481bf3b
 
481bf3b
 module = {
481bf3b
+  name = linuxefi;
481bf3b
+  efi = loader/i386/efi/linux.c;
481bf3b
+  efi = lib/cmdline.c;
481bf3b
+  enable = i386_efi;
481bf3b
+  enable = x86_64_efi;
481bf3b
+};
481bf3b
+
481bf3b
+module = {
481bf3b
   name = chain;
481bf3b
   efi = loader/efi/chainloader.c;
481bf3b
   i386_pc = loader/i386/pc/chainloader.c;
481bf3b
diff --git a/grub-core/kern/efi/mm.c b/grub-core/kern/efi/mm.c
8c6b1ac
index 20a47aa..efb15cc 100644
481bf3b
--- a/grub-core/kern/efi/mm.c
481bf3b
+++ b/grub-core/kern/efi/mm.c
481bf3b
@@ -49,6 +49,38 @@ static grub_efi_uintn_t finish_desc_size;
481bf3b
 static grub_efi_uint32_t finish_desc_version;
481bf3b
 int grub_efi_is_finished = 0;
481bf3b
 
481bf3b
+/* Allocate pages below a specified address */
481bf3b
+void *
481bf3b
+grub_efi_allocate_pages_max (grub_efi_physical_address_t max,
481bf3b
+			     grub_efi_uintn_t pages)
481bf3b
+{
481bf3b
+  grub_efi_status_t status;
481bf3b
+  grub_efi_boot_services_t *b;
481bf3b
+  grub_efi_physical_address_t address = max;
481bf3b
+
481bf3b
+  if (max > 0xffffffff)
481bf3b
+    return 0;
481bf3b
+
481bf3b
+  b = grub_efi_system_table->boot_services;
481bf3b
+  status = efi_call_4 (b->allocate_pages, GRUB_EFI_ALLOCATE_MAX_ADDRESS, GRUB_EFI_LOADER_DATA, pages, &address);
481bf3b
+
481bf3b
+  if (status != GRUB_EFI_SUCCESS)
481bf3b
+    return 0;
481bf3b
+
481bf3b
+  if (address == 0)
481bf3b
+    {
481bf3b
+      /* Uggh, the address 0 was allocated... This is too annoying,
481bf3b
+	 so reallocate another one.  */
481bf3b
+      address = max;
481bf3b
+      status = efi_call_4 (b->allocate_pages, GRUB_EFI_ALLOCATE_MAX_ADDRESS, GRUB_EFI_LOADER_DATA, pages, &address);
481bf3b
+      grub_efi_free_pages (0, pages);
481bf3b
+      if (status != GRUB_EFI_SUCCESS)
481bf3b
+	return 0;
481bf3b
+    }
481bf3b
+
481bf3b
+  return (void *) ((grub_addr_t) address);
481bf3b
+}
481bf3b
+
481bf3b
 /* Allocate pages. Return the pointer to the first of allocated pages.  */
481bf3b
 void *
481bf3b
 grub_efi_allocate_pages (grub_efi_physical_address_t address,
481bf3b
diff --git a/grub-core/loader/i386/efi/linux.c b/grub-core/loader/i386/efi/linux.c
481bf3b
new file mode 100644
481bf3b
index 0000000..b79e632
481bf3b
--- /dev/null
481bf3b
+++ b/grub-core/loader/i386/efi/linux.c
481bf3b
@@ -0,0 +1,371 @@
481bf3b
+/*
481bf3b
+ *  GRUB  --  GRand Unified Bootloader
481bf3b
+ *  Copyright (C) 2012  Free Software Foundation, Inc.
481bf3b
+ *
481bf3b
+ *  GRUB is free software: you can redistribute it and/or modify
481bf3b
+ *  it under the terms of the GNU General Public License as published by
481bf3b
+ *  the Free Software Foundation, either version 3 of the License, or
481bf3b
+ *  (at your option) any later version.
481bf3b
+ *
481bf3b
+ *  GRUB is distributed in the hope that it will be useful,
481bf3b
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
481bf3b
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
481bf3b
+ *  GNU General Public License for more details.
481bf3b
+ *
481bf3b
+ *  You should have received a copy of the GNU General Public License
481bf3b
+ *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
481bf3b
+ */
481bf3b
+
481bf3b
+#include <grub/loader.h>
481bf3b
+#include <grub/file.h>
481bf3b
+#include <grub/err.h>
481bf3b
+#include <grub/types.h>
481bf3b
+#include <grub/mm.h>
481bf3b
+#include <grub/cpu/linux.h>
481bf3b
+#include <grub/command.h>
481bf3b
+#include <grub/i18n.h>
481bf3b
+#include <grub/lib/cmdline.h>
481bf3b
+#include <grub/efi/efi.h>
481bf3b
+
481bf3b
+GRUB_MOD_LICENSE ("GPLv3+");
481bf3b
+
481bf3b
+static grub_dl_t my_mod;
481bf3b
+static int loaded;
481bf3b
+static void *kernel_mem;
481bf3b
+static grub_uint64_t kernel_size;
481bf3b
+static grub_uint8_t *initrd_mem;
481bf3b
+static grub_uint32_t handover_offset;
481bf3b
+struct linux_kernel_params *params;
481bf3b
+static char *linux_cmdline;
481bf3b
+
481bf3b
+#define BYTES_TO_PAGES(bytes)   (((bytes) + 0xfff) >> 12)
481bf3b
+
481bf3b
+#define SHIM_LOCK_GUID \
481bf3b
+  { 0x605dab50, 0xe046, 0x4300, {0xab, 0xb6, 0x3d, 0xd8, 0x10, 0xdd, 0x8b, 0x23} }
481bf3b
+
481bf3b
+struct grub_efi_shim_lock
481bf3b
+{
481bf3b
+  grub_efi_status_t (*verify) (void *buffer, grub_uint32_t size);
481bf3b
+};
481bf3b
+typedef struct grub_efi_shim_lock grub_efi_shim_lock_t;
481bf3b
+
481bf3b
+static grub_efi_boolean_t
481bf3b
+grub_linuxefi_secure_validate (void *data, grub_uint32_t size)
481bf3b
+{
481bf3b
+  grub_efi_guid_t guid = SHIM_LOCK_GUID;
481bf3b
+  grub_efi_shim_lock_t *shim_lock;
481bf3b
+
481bf3b
+  shim_lock = grub_efi_locate_protocol(&guid, NULL);
481bf3b
+
481bf3b
+  if (!shim_lock)
481bf3b
+    return 1;
481bf3b
+
481bf3b
+  if (shim_lock->verify(data, size) == GRUB_EFI_SUCCESS)
481bf3b
+    return 1;
481bf3b
+
481bf3b
+  return 0;
481bf3b
+}
481bf3b
+
481bf3b
+typedef void(*handover_func)(void *, grub_efi_system_table_t *, struct linux_kernel_params *);
481bf3b
+
481bf3b
+static grub_err_t
481bf3b
+grub_linuxefi_boot (void)
481bf3b
+{
481bf3b
+  handover_func hf;
481bf3b
+  int offset = 0;
481bf3b
+
481bf3b
+#ifdef __x86_64__
481bf3b
+  offset = 512;
481bf3b
+#endif
481bf3b
+
481bf3b
+  hf = (handover_func)((char *)kernel_mem + handover_offset + offset);
481bf3b
+
481bf3b
+  asm volatile ("cli");
481bf3b
+
481bf3b
+  hf (grub_efi_image_handle, grub_efi_system_table, params);
481bf3b
+
481bf3b
+  /* Not reached */
481bf3b
+  return GRUB_ERR_NONE;
481bf3b
+}
481bf3b
+
481bf3b
+static grub_err_t
481bf3b
+grub_linuxefi_unload (void)
481bf3b
+{
481bf3b
+  grub_dl_unref (my_mod);
481bf3b
+  loaded = 0;
481bf3b
+  if (initrd_mem)
481bf3b
+    grub_efi_free_pages((grub_efi_physical_address_t)initrd_mem, BYTES_TO_PAGES(params->ramdisk_size));
481bf3b
+  if (linux_cmdline)
481bf3b
+    grub_efi_free_pages((grub_efi_physical_address_t)linux_cmdline, BYTES_TO_PAGES(params->cmdline_size + 1));
481bf3b
+  if (kernel_mem)
481bf3b
+    grub_efi_free_pages((grub_efi_physical_address_t)kernel_mem, BYTES_TO_PAGES(kernel_size));
481bf3b
+  if (params)
481bf3b
+    grub_efi_free_pages((grub_efi_physical_address_t)params, BYTES_TO_PAGES(16384));
481bf3b
+  return GRUB_ERR_NONE;
481bf3b
+}
481bf3b
+
481bf3b
+static grub_err_t
481bf3b
+grub_cmd_initrd (grub_command_t cmd __attribute__ ((unused)),
481bf3b
+                 int argc, char *argv[])
481bf3b
+{
481bf3b
+  grub_file_t *files = 0;
481bf3b
+  int i, nfiles = 0;
481bf3b
+  grub_size_t size = 0;
481bf3b
+  grub_uint8_t *ptr;
481bf3b
+
481bf3b
+  if (argc == 0)
481bf3b
+    {
481bf3b
+      grub_error (GRUB_ERR_BAD_ARGUMENT, N_("filename expected"));
481bf3b
+      goto fail;
481bf3b
+    }
481bf3b
+
481bf3b
+  if (!loaded)
481bf3b
+    {
481bf3b
+      grub_error (GRUB_ERR_BAD_ARGUMENT, N_("you need to load the kernel first"));
481bf3b
+      goto fail;
481bf3b
+    }
481bf3b
+
481bf3b
+  files = grub_zalloc (argc * sizeof (files[0]));
481bf3b
+  if (!files)
481bf3b
+    goto fail;
481bf3b
+
481bf3b
+  for (i = 0; i < argc; i++)
481bf3b
+    {
481bf3b
+      grub_file_filter_disable_compression ();
481bf3b
+      files[i] = grub_file_open (argv[i]);
481bf3b
+      if (! files[i])
481bf3b
+        goto fail;
481bf3b
+      nfiles++;
481bf3b
+      size += ALIGN_UP (grub_file_size (files[i]), 4);
481bf3b
+    }
481bf3b
+
481bf3b
+  initrd_mem = grub_efi_allocate_pages_max (0x3fffffff, BYTES_TO_PAGES(size));
481bf3b
+
481bf3b
+  if (!initrd_mem)
481bf3b
+    {
481bf3b
+      grub_error (GRUB_ERR_OUT_OF_MEMORY, N_("can't allocate initrd"));
481bf3b
+      goto fail;
481bf3b
+    }
481bf3b
+
481bf3b
+  params->ramdisk_size = size;
481bf3b
+  params->ramdisk_image = (grub_uint32_t)(grub_uint64_t) initrd_mem;
481bf3b
+
481bf3b
+  ptr = initrd_mem;
481bf3b
+
481bf3b
+  for (i = 0; i < nfiles; i++)
481bf3b
+    {
481bf3b
+      grub_ssize_t cursize = grub_file_size (files[i]);
481bf3b
+      if (grub_file_read (files[i], ptr, cursize) != cursize)
481bf3b
+        {
481bf3b
+          if (!grub_errno)
481bf3b
+            grub_error (GRUB_ERR_FILE_READ_ERROR, N_("premature end of file %s"),
481bf3b
+                        argv[i]);
481bf3b
+          goto fail;
481bf3b
+        }
481bf3b
+      ptr += cursize;
481bf3b
+      grub_memset (ptr, 0, ALIGN_UP_OVERHEAD (cursize, 4));
481bf3b
+      ptr += ALIGN_UP_OVERHEAD (cursize, 4);
481bf3b
+    }
481bf3b
+
481bf3b
+  params->ramdisk_size = size;
481bf3b
+
481bf3b
+ fail:
481bf3b
+  for (i = 0; i < nfiles; i++)
481bf3b
+    grub_file_close (files[i]);
481bf3b
+  grub_free (files);
481bf3b
+
481bf3b
+  if (initrd_mem && grub_errno)
481bf3b
+    grub_efi_free_pages((grub_efi_physical_address_t)initrd_mem, BYTES_TO_PAGES(size));
481bf3b
+
481bf3b
+  return grub_errno;
481bf3b
+}
481bf3b
+
481bf3b
+static grub_err_t
481bf3b
+grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
481bf3b
+		int argc, char *argv[])
481bf3b
+{
481bf3b
+  grub_file_t file = 0;
481bf3b
+  struct linux_kernel_header lh;
481bf3b
+  grub_ssize_t len, start, filelen;
481bf3b
+  void *kernel;
481bf3b
+
481bf3b
+  grub_dl_ref (my_mod);
481bf3b
+
481bf3b
+  if (argc == 0)
481bf3b
+    {
481bf3b
+      grub_error (GRUB_ERR_BAD_ARGUMENT, N_("filename expected"));
481bf3b
+      goto fail;
481bf3b
+    }
481bf3b
+
481bf3b
+  file = grub_file_open (argv[0]);
481bf3b
+  if (! file)
481bf3b
+    goto fail;
481bf3b
+
481bf3b
+  filelen = grub_file_size (file);
481bf3b
+
481bf3b
+  kernel = grub_malloc(filelen);
481bf3b
+
481bf3b
+  if (!kernel)
481bf3b
+    {
481bf3b
+      grub_error (GRUB_ERR_OUT_OF_MEMORY, N_("cannot allocate kernel buffer"));
481bf3b
+      goto fail;
481bf3b
+    }
481bf3b
+
481bf3b
+  if (grub_file_read (file, kernel, filelen) != filelen)
481bf3b
+    {
481bf3b
+      grub_error (GRUB_ERR_FILE_READ_ERROR, N_("Can't read kernel %s"), argv[0]);
481bf3b
+      goto fail;
481bf3b
+    }
481bf3b
+
481bf3b
+  if (! grub_linuxefi_secure_validate (kernel, filelen))
481bf3b
+    {
481bf3b
+      grub_error (GRUB_ERR_INVALID_COMMAND, N_("%s has invalid signature"), argv[0]);
481bf3b
+      grub_free (kernel);
481bf3b
+      goto fail;
481bf3b
+    }
481bf3b
+
481bf3b
+  grub_file_seek (file, 0);
481bf3b
+
481bf3b
+  grub_free(kernel);
481bf3b
+
481bf3b
+  params = grub_efi_allocate_pages_max (0x3fffffff, BYTES_TO_PAGES(16384));
481bf3b
+
481bf3b
+  if (! params)
481bf3b
+    {
481bf3b
+      grub_error (GRUB_ERR_OUT_OF_MEMORY, "cannot allocate kernel parameters");
481bf3b
+      goto fail;
481bf3b
+    }
481bf3b
+
481bf3b
+  memset (params, 0, 16384);
481bf3b
+
481bf3b
+  if (grub_file_read (file, &lh, sizeof (lh)) != sizeof (lh))
481bf3b
+    {
481bf3b
+      if (!grub_errno)
481bf3b
+	grub_error (GRUB_ERR_BAD_OS, N_("premature end of file %s"),
481bf3b
+		    argv[0]);
481bf3b
+      goto fail;
481bf3b
+    }
481bf3b
+
481bf3b
+  if (lh.boot_flag != grub_cpu_to_le16 (0xaa55))
481bf3b
+    {
481bf3b
+      grub_error (GRUB_ERR_BAD_OS, N_("invalid magic number"));
481bf3b
+      goto fail;
481bf3b
+    }
481bf3b
+
481bf3b
+  if (lh.setup_sects > GRUB_LINUX_MAX_SETUP_SECTS)
481bf3b
+    {
481bf3b
+      grub_error (GRUB_ERR_BAD_OS, N_("too many setup sectors"));
481bf3b
+      goto fail;
481bf3b
+    }
481bf3b
+
481bf3b
+  if (lh.version < grub_cpu_to_le16 (0x020b))
481bf3b
+    {
481bf3b
+      grub_error (GRUB_ERR_BAD_OS, N_("kernel too old"));
481bf3b
+      goto fail;
481bf3b
+    }
481bf3b
+
481bf3b
+  if (!lh.handover_offset)
481bf3b
+    {
481bf3b
+      grub_error (GRUB_ERR_BAD_OS, N_("kernel doesn't support EFI handover"));
481bf3b
+      goto fail;
481bf3b
+    }
481bf3b
+
481bf3b
+  linux_cmdline = grub_efi_allocate_pages_max(0x3fffffff,
481bf3b
+					 BYTES_TO_PAGES(lh.cmdline_size + 1));
481bf3b
+
481bf3b
+  if (!linux_cmdline)
481bf3b
+    {
481bf3b
+      grub_error (GRUB_ERR_OUT_OF_MEMORY, N_("can't allocate cmdline"));
481bf3b
+      goto fail;
481bf3b
+    }
481bf3b
+
481bf3b
+  grub_memcpy (linux_cmdline, LINUX_IMAGE, sizeof (LINUX_IMAGE));
481bf3b
+  grub_create_loader_cmdline (argc, argv,
481bf3b
+                              linux_cmdline + sizeof (LINUX_IMAGE) - 1,
481bf3b
+			      lh.cmdline_size - (sizeof (LINUX_IMAGE) - 1));
481bf3b
+
481bf3b
+  lh.cmd_line_ptr = (grub_uint32_t)(grub_uint64_t)linux_cmdline;
481bf3b
+
481bf3b
+  handover_offset = lh.handover_offset;
481bf3b
+
481bf3b
+  start = (lh.setup_sects + 1) * 512;
481bf3b
+  len = grub_file_size(file) - start;
481bf3b
+
481bf3b
+  kernel_mem = grub_efi_allocate_pages(lh.pref_address,
481bf3b
+				       BYTES_TO_PAGES(lh.init_size));
481bf3b
+
481bf3b
+  if (!kernel_mem)
481bf3b
+    kernel_mem = grub_efi_allocate_pages_max(0x3fffffff,
481bf3b
+					     BYTES_TO_PAGES(lh.init_size));
481bf3b
+
481bf3b
+  if (!kernel_mem)
481bf3b
+    {
481bf3b
+      grub_error (GRUB_ERR_OUT_OF_MEMORY, N_("can't allocate kernel"));
481bf3b
+      goto fail;
481bf3b
+    }
481bf3b
+
481bf3b
+  if (grub_file_seek (file, start) == (grub_off_t) -1)
481bf3b
+    {
481bf3b
+      grub_error (GRUB_ERR_BAD_OS, N_("premature end of file %s"),
481bf3b
+		  argv[0]);
481bf3b
+      goto fail;
481bf3b
+    }
481bf3b
+
481bf3b
+  if (grub_file_read (file, kernel_mem, len) != len && !grub_errno)
481bf3b
+    {
481bf3b
+      grub_error (GRUB_ERR_BAD_OS, N_("premature end of file %s"),
481bf3b
+		  argv[0]);
481bf3b
+    }
481bf3b
+
481bf3b
+  if (grub_errno == GRUB_ERR_NONE)
481bf3b
+    {
481bf3b
+      grub_loader_set (grub_linuxefi_boot, grub_linuxefi_unload, 0);
481bf3b
+      loaded = 1;
481bf3b
+      lh.code32_start = (grub_uint32_t)(grub_uint64_t) kernel_mem;
481bf3b
+    }
481bf3b
+
481bf3b
+  memcpy(params, &lh, 2 * 512);
481bf3b
+
481bf3b
+  params->type_of_loader = 0x21;
481bf3b
+
481bf3b
+ fail:
481bf3b
+
481bf3b
+  if (file)
481bf3b
+    grub_file_close (file);
481bf3b
+
481bf3b
+  if (grub_errno != GRUB_ERR_NONE)
481bf3b
+    {
481bf3b
+      grub_dl_unref (my_mod);
481bf3b
+      loaded = 0;
481bf3b
+    }
481bf3b
+
481bf3b
+  if (linux_cmdline && !loaded)
481bf3b
+    grub_efi_free_pages((grub_efi_physical_address_t)linux_cmdline, BYTES_TO_PAGES(lh.cmdline_size + 1));
481bf3b
+
481bf3b
+  if (kernel_mem && !loaded)
481bf3b
+    grub_efi_free_pages((grub_efi_physical_address_t)kernel_mem, BYTES_TO_PAGES(kernel_size));
481bf3b
+
481bf3b
+  if (params && !loaded)
481bf3b
+    grub_efi_free_pages((grub_efi_physical_address_t)params, BYTES_TO_PAGES(16384));
481bf3b
+
481bf3b
+  return grub_errno;
481bf3b
+}
481bf3b
+
481bf3b
+static grub_command_t cmd_linux, cmd_initrd;
481bf3b
+
481bf3b
+GRUB_MOD_INIT(linuxefi)
481bf3b
+{
481bf3b
+  cmd_linux =
481bf3b
+    grub_register_command ("linuxefi", grub_cmd_linux,
481bf3b
+                           0, N_("Load Linux."));
481bf3b
+  cmd_initrd =
481bf3b
+    grub_register_command ("initrdefi", grub_cmd_initrd,
481bf3b
+                           0, N_("Load initrd."));
481bf3b
+  my_mod = mod;
481bf3b
+}
481bf3b
+
481bf3b
+GRUB_MOD_FINI(linuxefi)
481bf3b
+{
481bf3b
+  grub_unregister_command (cmd_linux);
481bf3b
+  grub_unregister_command (cmd_initrd);
481bf3b
+}
481bf3b
diff --git a/include/grub/efi/efi.h b/include/grub/efi/efi.h
8c6b1ac
index 0e6fd86..9a2da0e 100644
481bf3b
--- a/include/grub/efi/efi.h
481bf3b
+++ b/include/grub/efi/efi.h
481bf3b
@@ -40,6 +40,9 @@ void EXPORT_FUNC(grub_efi_stall) (grub_efi_uintn_t microseconds);
481bf3b
 void *
481bf3b
 EXPORT_FUNC(grub_efi_allocate_pages) (grub_efi_physical_address_t address,
481bf3b
 				      grub_efi_uintn_t pages);
481bf3b
+void *
481bf3b
+EXPORT_FUNC(grub_efi_allocate_pages_max) (grub_efi_physical_address_t max,
481bf3b
+					  grub_efi_uintn_t pages);
481bf3b
 void EXPORT_FUNC(grub_efi_free_pages) (grub_efi_physical_address_t address,
481bf3b
 				       grub_efi_uintn_t pages);
481bf3b
 int
481bf3b
diff --git a/include/grub/i386/linux.h b/include/grub/i386/linux.h
481bf3b
index da0ca3b..fc36bda 100644
481bf3b
--- a/include/grub/i386/linux.h
481bf3b
+++ b/include/grub/i386/linux.h
481bf3b
@@ -139,6 +139,7 @@ struct linux_kernel_header
481bf3b
   grub_uint64_t setup_data;
481bf3b
   grub_uint64_t pref_address;
481bf3b
   grub_uint32_t init_size;
481bf3b
+  grub_uint32_t handover_offset;
481bf3b
 } GRUB_PACKED;
481bf3b
 
481bf3b
 /* Boot parameters for Linux based on 2.6.12. This is used by the setup
481bf3b
-- 
8c6b1ac
2.4.3
481bf3b