dcavalca / rpms / grub2

Forked from rpms/grub2 3 years ago
Clone

Blame SOURCES/0227-Make-linux_arm_kernel_header.hdr_offset-be-at-the-ri.patch

8631a2
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
8631a2
From: Peter Jones <pjones@redhat.com>
8631a2
Date: Thu, 16 Aug 2018 11:08:11 -0400
8631a2
Subject: [PATCH] Make linux_arm_kernel_header.hdr_offset be at the right place
8631a2
8631a2
The kernel in front of me (slightly edited to make objdump work) looks like:
8631a2
8631a2
00000000  4d 5a 10 13 4d 5a 10 13  4d 5a 10 13 4d 5a 10 13  |MZ..MZ..MZ..MZ..|
8631a2
00000010  4d 5a 10 13 4d 5a 10 13  4d 5a 10 13 00 00 a0 e1  |MZ..MZ..MZ......|
8631a2
00000020  f6 03 00 ea 18 28 6f 01  00 00 00 00 00 32 74 00  |.....(o......2t.|
8631a2
00000030  01 02 03 04 45 45 45 45  74 a2 00 00 40 00 00 00  |....EEEEt...@...|
8631a2
00000040  50 45 00 00 4c 01 04 00  00 00 00 00 00 00 00 00  |PE..L...........|
8631a2
00000050  00 00 00 00 90 00 06 03  0b 01 02 14 00 20 74 00  |............. t.|
8631a2
00000060  00 14 00 00 00 00 00 00  b4 19 00 00 00 10 00 00  |................|
8631a2
00000070  00 30 74 00 00 00 00 00  00 10 00 00 00 02 00 00  |.0t.............|
8631a2
00000080  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
8631a2
00000090  00 44 74 00 00 10 00 00  00 00 00 00 0a 00 00 00  |.Dt.............|
8631a2
000000a0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
8631a2
000000b0  00 00 00 00 06 00 00 00  00 00 00 00 00 00 00 00  |................|
8631a2
000000c0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
8631a2
*
8631a2
8631a2
(I don't know why the MZ header is there 7 times, but the offsets work out, so
8631a2
it's merely a surprising distraction.)
8631a2
8631a2
If linux_arm_kernel_header.reserved2 is 16 bytes, that means hdr_offset is
8631a2
here:
8631a2
8631a2
00000030  01 02 03 04 45 45 45 45  74 a2 00 00 40 00 00 00  |....EEEEt...@...|
8631a2
00000040  50 45 00 00 4c 01 04 00  00 00 00 00 00 00 00 00  |PE..L...........|
8631a2
          ^^^^^^^^^^^
8631a2
8631a2
But it's supposed to be 4 bytes before that.
8631a2
8631a2
This patch makes the reserved field be 3*32 instead of 4*32, and that means we
8631a2
can find the PE header correcrtly at 0x40 by reading the value at 0x3c.
8631a2
8631a2
Signed-off-by: Peter Jones <pjones@redhat.com>
8631a2
---
8631a2
 grub-core/loader/efi/linux.c | 3 +++
8631a2
 include/grub/arm/linux.h     | 2 +-
8631a2
 2 files changed, 4 insertions(+), 1 deletion(-)
8631a2
8631a2
diff --git a/grub-core/loader/efi/linux.c b/grub-core/loader/efi/linux.c
8631a2
index 0622dfa48d4..b56ea0bc041 100644
8631a2
--- a/grub-core/loader/efi/linux.c
8631a2
+++ b/grub-core/loader/efi/linux.c
8631a2
@@ -79,7 +79,10 @@ grub_efi_linux_boot (void *kernel_addr, grub_off_t handover_offset,
8631a2
   offset = 512;
8631a2
 #endif
8631a2
 
8631a2
+  grub_dprintf ("linux", "kernel_addr: %p handover_offset: %p params: %p\n",
8631a2
+		kernel_addr, (void *)(grub_efi_uintn_t)handover_offset, kernel_params);
8631a2
   hf = (handover_func)((char *)kernel_addr + handover_offset + offset);
8631a2
+  grub_dprintf ("linux", "handover_func() = %p\n", hf);
8631a2
   hf (grub_efi_image_handle, grub_efi_system_table, kernel_params);
8631a2
 
8631a2
   return GRUB_ERR_BUG;
8631a2
diff --git a/include/grub/arm/linux.h b/include/grub/arm/linux.h
8631a2
index 5900fc8a40c..bed308f22cb 100644
8631a2
--- a/include/grub/arm/linux.h
8631a2
+++ b/include/grub/arm/linux.h
8631a2
@@ -31,7 +31,7 @@ struct linux_arm_kernel_header {
8631a2
   grub_uint32_t magic;
8631a2
   grub_uint32_t start; /* _start */
8631a2
   grub_uint32_t end;   /* _edata */
8631a2
-  grub_uint32_t reserved2[4];
8631a2
+  grub_uint32_t reserved2[3];
8631a2
   grub_uint32_t hdr_offset;
8631a2
 };
8631a2