Blame SOURCES/0224-Re-work-some-intricacies-of-PE-loading.patch

f731ee
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
f731ee
From: Peter Jones <pjones@redhat.com>
f731ee
Date: Thu, 9 Jun 2016 12:22:29 -0400
f731ee
Subject: [PATCH] Re-work some intricacies of PE loading.
f731ee
f731ee
The PE spec is not a well written document, and awesomely every place
f731ee
where there's an ambiguous way to read something, Windows' bootmgfw.efi
f731ee
takes a different read than either of them.
f731ee
---
f731ee
 grub-core/loader/efi/chainloader.c | 156 +++++++++++++++++++++++++++++--------
f731ee
 include/grub/efi/pe32.h            |  32 +++++++-
f731ee
 2 files changed, 152 insertions(+), 36 deletions(-)
f731ee
f731ee
diff --git a/grub-core/loader/efi/chainloader.c b/grub-core/loader/efi/chainloader.c
f731ee
index aee8e6becf6..4b77a7d5adb 100644
f731ee
--- a/grub-core/loader/efi/chainloader.c
f731ee
+++ b/grub-core/loader/efi/chainloader.c
f731ee
@@ -301,7 +301,7 @@ image_is_64_bit (grub_pe_header_t *pe_hdr)
f731ee
   return 0;
f731ee
 }
f731ee
 
f731ee
-static const grub_uint16_t machine_type =
f731ee
+static const grub_uint16_t machine_type __attribute__((__unused__)) =
f731ee
 #if defined(__x86_64__)
f731ee
   GRUB_PE32_MACHINE_X86_64;
f731ee
 #elif defined(__aarch64__)
f731ee
@@ -367,10 +367,10 @@ relocate_coff (pe_coff_loader_image_context_t *context,
f731ee
 
f731ee
   reloc_base = image_address (orig, size, section->raw_data_offset);
f731ee
   reloc_base_end = image_address (orig, size, section->raw_data_offset
f731ee
-				  + section->virtual_size - 1);
f731ee
+				  + section->virtual_size);
f731ee
 
f731ee
-  grub_dprintf ("chain", "reloc_base %p reloc_base_end %p\n", reloc_base,
f731ee
-		reloc_base_end);
f731ee
+  grub_dprintf ("chain", "relocate_coff(): reloc_base %p reloc_base_end %p\n",
f731ee
+		reloc_base, reloc_base_end);
f731ee
 
f731ee
   if (!reloc_base && !reloc_base_end)
f731ee
     return GRUB_EFI_SUCCESS;
f731ee
@@ -507,12 +507,13 @@ handle_image (void *data, grub_efi_uint32_t datasize)
f731ee
   grub_efi_status_t efi_status;
f731ee
   char *buffer = NULL;
f731ee
   char *buffer_aligned = NULL;
f731ee
-  grub_efi_uint32_t i, size;
f731ee
+  grub_efi_uint32_t i;
f731ee
   struct grub_pe32_section_table *section;
f731ee
   char *base, *end;
f731ee
   pe_coff_loader_image_context_t context;
f731ee
   grub_uint32_t section_alignment;
f731ee
   grub_uint32_t buffer_size;
f731ee
+  int found_entry_point = 0;
f731ee
 
f731ee
   b = grub_efi_system_table->boot_services;
f731ee
 
f731ee
@@ -526,8 +527,28 @@ handle_image (void *data, grub_efi_uint32_t datasize)
f731ee
       goto error_exit;
f731ee
     }
f731ee
 
f731ee
+  /*
f731ee
+   * The spec says, uselessly, of SectionAlignment:
f731ee
+   * =====
f731ee
+   * The alignment (in bytes) of sections when they are loaded into
f731ee
+   * memory. It must be greater than or equal to FileAlignment. The
f731ee
+   * default is the page size for the architecture.
f731ee
+   * =====
f731ee
+   * Which doesn't tell you whose responsibility it is to enforce the
f731ee
+   * "default", or when.  It implies that the value in the field must
f731ee
+   * be > FileAlignment (also poorly defined), but it appears visual
f731ee
+   * studio will happily write 512 for FileAlignment (its default) and
f731ee
+   * 0 for SectionAlignment, intending to imply PAGE_SIZE.
f731ee
+   *
f731ee
+   * We only support one page size, so if it's zero, nerf it to 4096.
f731ee
+   */
f731ee
   section_alignment = context.section_alignment;
f731ee
+  if (section_alignment == 0)
f731ee
+    section_alignment = 4096;
f731ee
+
f731ee
   buffer_size = context.image_size + section_alignment;
f731ee
+  grub_dprintf ("chain", "image size is %08lx, datasize is %08x\n",
f731ee
+	       context.image_size, datasize);
f731ee
 
f731ee
   efi_status = efi_call_3 (b->allocate_pool, GRUB_EFI_LOADER_DATA,
f731ee
 			   buffer_size, &buffer);
f731ee
@@ -539,7 +560,6 @@ handle_image (void *data, grub_efi_uint32_t datasize)
f731ee
     }
f731ee
 
f731ee
   buffer_aligned = (char *)ALIGN_UP ((grub_addr_t)buffer, section_alignment);
f731ee
-
f731ee
   if (!buffer_aligned)
f731ee
     {
f731ee
       grub_error (GRUB_ERR_OUT_OF_MEMORY, N_("out of memory"));
f731ee
@@ -548,27 +568,62 @@ handle_image (void *data, grub_efi_uint32_t datasize)
f731ee
 
f731ee
   grub_memcpy (buffer_aligned, data, context.size_of_headers);
f731ee
 
f731ee
+  entry_point = image_address (buffer_aligned, context.image_size,
f731ee
+			       context.entry_point);
f731ee
+
f731ee
+  grub_dprintf ("chain", "entry_point: %p\n", entry_point);
f731ee
+  if (!entry_point)
f731ee
+    {
f731ee
+      grub_error (GRUB_ERR_BAD_ARGUMENT, "invalid entry point");
f731ee
+      goto error_exit;
f731ee
+    }
f731ee
+
f731ee
   char *reloc_base, *reloc_base_end;
f731ee
-  reloc_base = image_address (buffer_aligned, datasize,
f731ee
+  grub_dprintf ("chain", "reloc_dir: %p reloc_size: 0x%08x\n",
f731ee
+		(void *)(unsigned long long)context.reloc_dir->rva,
f731ee
+		context.reloc_dir->size);
f731ee
+  reloc_base = image_address (buffer_aligned, context.image_size,
f731ee
 			      context.reloc_dir->rva);
f731ee
   /* RelocBaseEnd here is the address of the last byte of the table */
f731ee
-  reloc_base_end = image_address (buffer_aligned, datasize,
f731ee
+  reloc_base_end = image_address (buffer_aligned, context.image_size,
f731ee
 				  context.reloc_dir->rva
f731ee
 				  + context.reloc_dir->size - 1);
f731ee
+  grub_dprintf ("chain", "reloc_base: %p reloc_base_end: %p\n",
f731ee
+		reloc_base, reloc_base_end);
f731ee
+
f731ee
   struct grub_pe32_section_table *reloc_section = NULL;
f731ee
 
f731ee
   section = context.first_section;
f731ee
   for (i = 0; i < context.number_of_sections; i++, section++)
f731ee
     {
f731ee
-      size = section->virtual_size;
f731ee
-      if (size > section->raw_data_size)
f731ee
-        size = section->raw_data_size;
f731ee
+      char name[9];
f731ee
 
f731ee
       base = image_address (buffer_aligned, context.image_size,
f731ee
 			    section->virtual_address);
f731ee
       end = image_address (buffer_aligned, context.image_size,
f731ee
-			   section->virtual_address + size - 1);
f731ee
+			   section->virtual_address + section->virtual_size -1);
f731ee
 
f731ee
+      grub_strncpy(name, section->name, 9);
f731ee
+      name[8] = '\0';
f731ee
+      grub_dprintf ("chain", "Section %d \"%s\" at %p..%p\n", i,
f731ee
+		   name, base, end);
f731ee
+
f731ee
+      if (end < base)
f731ee
+	{
f731ee
+	  grub_dprintf ("chain", " base is %p but end is %p... bad.\n",
f731ee
+		       base, end);
f731ee
+	  grub_error (GRUB_ERR_BAD_ARGUMENT,
f731ee
+		      "Image has invalid negative size");
f731ee
+	  goto error_exit;
f731ee
+	}
f731ee
+
f731ee
+      if (section->virtual_address <= context.entry_point &&
f731ee
+	  (section->virtual_address + section->raw_data_size - 1)
f731ee
+	  > context.entry_point)
f731ee
+	{
f731ee
+	  found_entry_point++;
f731ee
+	  grub_dprintf ("chain", " section contains entry point\n");
f731ee
+	}
f731ee
 
f731ee
       /* We do want to process .reloc, but it's often marked
f731ee
        * discardable, so we don't want to memcpy it. */
f731ee
@@ -587,21 +642,46 @@ handle_image (void *data, grub_efi_uint32_t datasize)
f731ee
 	  if (section->raw_data_size && section->virtual_size &&
f731ee
 	      base && end && reloc_base == base && reloc_base_end == end)
f731ee
 	    {
f731ee
+	      grub_dprintf ("chain", " section is relocation section\n");
f731ee
 	      reloc_section = section;
f731ee
 	    }
f731ee
+	  else
f731ee
+	    {
f731ee
+	      grub_dprintf ("chain", " section is not reloc section?\n");
f731ee
+	      grub_dprintf ("chain", " rds: 0x%08x, vs: %08x\n",
f731ee
+			    section->raw_data_size, section->virtual_size);
f731ee
+	      grub_dprintf ("chain", " base: %p end: %p\n", base, end);
f731ee
+	      grub_dprintf ("chain", " reloc_base: %p reloc_base_end: %p\n",
f731ee
+			    reloc_base, reloc_base_end);
f731ee
+	    }
f731ee
 	}
f731ee
 
f731ee
-      if (section->characteristics && GRUB_PE32_SCN_MEM_DISCARDABLE)
f731ee
-	continue;
f731ee
+      grub_dprintf ("chain", " Section characteristics are %08x\n",
f731ee
+		   section->characteristics);
f731ee
+      grub_dprintf ("chain", " Section virtual size: %08x\n",
f731ee
+		   section->virtual_size);
f731ee
+      grub_dprintf ("chain", " Section raw_data size: %08x\n",
f731ee
+		   section->raw_data_size);
f731ee
+      if (section->characteristics & GRUB_PE32_SCN_MEM_DISCARDABLE)
f731ee
+	{
f731ee
+	  grub_dprintf ("chain", " Discarding section\n");
f731ee
+	  continue;
f731ee
+	}
f731ee
 
f731ee
       if (!base || !end)
f731ee
         {
f731ee
+	  grub_dprintf ("chain", " section is invalid\n");
f731ee
           grub_error (GRUB_ERR_BAD_ARGUMENT, "Invalid section size");
f731ee
           goto error_exit;
f731ee
         }
f731ee
 
f731ee
-      if (section->virtual_address < context.size_of_headers ||
f731ee
-	  section->raw_data_offset < context.size_of_headers)
f731ee
+      if (section->characteristics & GRUB_PE32_SCN_CNT_UNINITIALIZED_DATA)
f731ee
+	{
f731ee
+	  if (section->raw_data_size != 0)
f731ee
+	    grub_dprintf ("chain", " UNINITIALIZED_DATA section has data?\n");
f731ee
+	}
f731ee
+      else if (section->virtual_address < context.size_of_headers ||
f731ee
+	       section->raw_data_offset < context.size_of_headers)
f731ee
 	{
f731ee
 	  grub_error (GRUB_ERR_BAD_ARGUMENT,
f731ee
 		      "Section %d is inside image headers", i);
f731ee
@@ -609,13 +689,24 @@ handle_image (void *data, grub_efi_uint32_t datasize)
f731ee
 	}
f731ee
 
f731ee
       if (section->raw_data_size > 0)
f731ee
-        grub_memcpy (base, (grub_efi_uint8_t*)data + section->raw_data_offset,
f731ee
-		     size);
f731ee
+	{
f731ee
+	  grub_dprintf ("chain", " copying 0x%08x bytes to %p\n",
f731ee
+			section->raw_data_size, base);
f731ee
+	  grub_memcpy (base,
f731ee
+		       (grub_efi_uint8_t*)data + section->raw_data_offset,
f731ee
+		       section->raw_data_size);
f731ee
+	}
f731ee
 
f731ee
-      if (size < section->virtual_size)
f731ee
-        grub_memset (base + size, 0, section->virtual_size - size);
f731ee
+      if (section->raw_data_size < section->virtual_size)
f731ee
+	{
f731ee
+	  grub_dprintf ("chain", " padding with 0x%08x bytes at %p\n",
f731ee
+			section->virtual_size - section->raw_data_size,
f731ee
+			base + section->raw_data_size);
f731ee
+	  grub_memset (base + section->raw_data_size, 0,
f731ee
+		       section->virtual_size - section->raw_data_size);
f731ee
+	}
f731ee
 
f731ee
-      grub_dprintf ("chain", "copied section %s\n", section->name);
f731ee
+      grub_dprintf ("chain", " finished section %s\n", name);
f731ee
     }
f731ee
 
f731ee
   /* 5 == EFI_IMAGE_DIRECTORY_ENTRY_BASERELOC */
f731ee
@@ -638,12 +729,15 @@ handle_image (void *data, grub_efi_uint32_t datasize)
f731ee
 	}
f731ee
     }
f731ee
 
f731ee
-  entry_point = image_address (buffer_aligned, context.image_size,
f731ee
-			       context.entry_point);
f731ee
-
f731ee
-  if (!entry_point)
f731ee
+  if (!found_entry_point)
f731ee
     {
f731ee
-      grub_error (GRUB_ERR_BAD_ARGUMENT, "invalid entry point");
f731ee
+      grub_error (GRUB_ERR_BAD_ARGUMENT, "entry point is not within sections");
f731ee
+      goto error_exit;
f731ee
+    }
f731ee
+  if (found_entry_point > 1)
f731ee
+    {
f731ee
+      grub_error (GRUB_ERR_BAD_ARGUMENT, "%d sections contain entry point",
f731ee
+		  found_entry_point);
f731ee
       goto error_exit;
f731ee
     }
f731ee
 
f731ee
@@ -661,26 +755,24 @@ handle_image (void *data, grub_efi_uint32_t datasize)
f731ee
   li->load_options_size = cmdline_len;
f731ee
   li->file_path = grub_efi_get_media_file_path (file_path);
f731ee
   li->device_handle = dev_handle;
f731ee
-  if (li->file_path)
f731ee
-    {
f731ee
-      grub_printf ("file path: ");
f731ee
-      grub_efi_print_device_path (li->file_path);
f731ee
-    }
f731ee
-  else
f731ee
+  if (!li->file_path)
f731ee
     {
f731ee
       grub_error (GRUB_ERR_UNKNOWN_DEVICE, "no matching file path found");
f731ee
       goto error_exit;
f731ee
     }
f731ee
 
f731ee
+  grub_dprintf ("chain", "booting via entry point\n");
f731ee
   efi_status = efi_call_2 (entry_point, grub_efi_image_handle,
f731ee
 			   grub_efi_system_table);
f731ee
 
f731ee
+  grub_dprintf ("chain", "entry_point returned %ld\n", efi_status);
f731ee
   grub_memcpy (li, &li_bak, sizeof (grub_efi_loaded_image_t));
f731ee
   efi_status = efi_call_1 (b->free_pool, buffer);
f731ee
 
f731ee
   return 1;
f731ee
 
f731ee
 error_exit:
f731ee
+  grub_dprintf ("chain", "error_exit: grub_errno: %d\n", grub_errno);
f731ee
   if (buffer)
f731ee
       efi_call_1 (b->free_pool, buffer);
f731ee
 
f731ee
diff --git a/include/grub/efi/pe32.h b/include/grub/efi/pe32.h
f731ee
index f79782e1bde..8396bde4917 100644
f731ee
--- a/include/grub/efi/pe32.h
f731ee
+++ b/include/grub/efi/pe32.h
f731ee
@@ -227,12 +227,18 @@ struct grub_pe32_section_table
f731ee
   grub_uint32_t characteristics;
f731ee
 };
f731ee
 
f731ee
+#define GRUB_PE32_SCN_TYPE_NO_PAD		0x00000008
f731ee
 #define GRUB_PE32_SCN_CNT_CODE			0x00000020
f731ee
 #define GRUB_PE32_SCN_CNT_INITIALIZED_DATA	0x00000040
f731ee
-#define GRUB_PE32_SCN_MEM_DISCARDABLE		0x02000000
f731ee
-#define GRUB_PE32_SCN_MEM_EXECUTE		0x20000000
f731ee
-#define GRUB_PE32_SCN_MEM_READ			0x40000000
f731ee
-#define GRUB_PE32_SCN_MEM_WRITE			0x80000000
f731ee
+#define GRUB_PE32_SCN_CNT_UNINITIALIZED_DATA	0x00000080
f731ee
+#define GRUB_PE32_SCN_LNK_OTHER			0x00000100
f731ee
+#define GRUB_PE32_SCN_LNK_INFO			0x00000200
f731ee
+#define GRUB_PE32_SCN_LNK_REMOVE		0x00000800
f731ee
+#define GRUB_PE32_SCN_LNK_COMDAT		0x00001000
f731ee
+#define GRUB_PE32_SCN_GPREL			0x00008000
f731ee
+#define GRUB_PE32_SCN_MEM_16BIT			0x00020000
f731ee
+#define GRUB_PE32_SCN_MEM_LOCKED		0x00040000
f731ee
+#define GRUB_PE32_SCN_MEM_PRELOAD		0x00080000
f731ee
 
f731ee
 #define GRUB_PE32_SCN_ALIGN_1BYTES		0x00100000
f731ee
 #define GRUB_PE32_SCN_ALIGN_2BYTES		0x00200000
f731ee
@@ -241,10 +247,28 @@ struct grub_pe32_section_table
f731ee
 #define GRUB_PE32_SCN_ALIGN_16BYTES		0x00500000
f731ee
 #define GRUB_PE32_SCN_ALIGN_32BYTES		0x00600000
f731ee
 #define GRUB_PE32_SCN_ALIGN_64BYTES		0x00700000
f731ee
+#define GRUB_PE32_SCN_ALIGN_128BYTES		0x00800000
f731ee
+#define GRUB_PE32_SCN_ALIGN_256BYTES		0x00900000
f731ee
+#define GRUB_PE32_SCN_ALIGN_512BYTES		0x00A00000
f731ee
+#define GRUB_PE32_SCN_ALIGN_1024BYTES		0x00B00000
f731ee
+#define GRUB_PE32_SCN_ALIGN_2048BYTES		0x00C00000
f731ee
+#define GRUB_PE32_SCN_ALIGN_4096BYTES		0x00D00000
f731ee
+#define GRUB_PE32_SCN_ALIGN_8192BYTES		0x00E00000
f731ee
 
f731ee
 #define GRUB_PE32_SCN_ALIGN_SHIFT		20
f731ee
 #define GRUB_PE32_SCN_ALIGN_MASK		7
f731ee
 
f731ee
+#define GRUB_PE32_SCN_LNK_NRELOC_OVFL		0x01000000
f731ee
+#define GRUB_PE32_SCN_MEM_DISCARDABLE		0x02000000
f731ee
+#define GRUB_PE32_SCN_MEM_NOT_CACHED		0x04000000
f731ee
+#define GRUB_PE32_SCN_MEM_NOT_PAGED		0x08000000
f731ee
+#define GRUB_PE32_SCN_MEM_SHARED		0x10000000
f731ee
+#define GRUB_PE32_SCN_MEM_EXECUTE		0x20000000
f731ee
+#define GRUB_PE32_SCN_MEM_READ			0x40000000
f731ee
+#define GRUB_PE32_SCN_MEM_WRITE			0x80000000
f731ee
+
f731ee
+
f731ee
+
f731ee
 #define GRUB_PE32_SIGNATURE_SIZE 4
f731ee
 
f731ee
 struct grub_pe32_header