e1531466e1
This change updates grub to the 2.04 release. The new release changed how grub is built, so the bootstrap and bootstrap.conf files have to be added to the dist-git. Also, the gitignore file changed so it has to be updated. Since the patches have been forward ported to 2.04, there's no need for a logic to maintain a patch with the delta between the release and the grub master branch. So the release-to-master.patch is dropped and no longer is updated by the do-rebase script. Also since gnulib isn't part of the grub repository anymore and cloned by the boostrap tool, a gnulib tarball is included as other source file and copied before calling the bootstrap tool. That way grub can be built even in builders that only have access to the sources lookaside cache. Resolves: rhbz#1727279 Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
107 lines
3.3 KiB
Diff
107 lines
3.3 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Peter Jones <pjones@redhat.com>
|
|
Date: Thu, 1 Jun 2017 10:06:38 -0400
|
|
Subject: [PATCH] Use grub_efi_...() memory helpers where reasonable.
|
|
|
|
This uses grub_efi_allocate_pool(), grub_efi_free_pool(), and
|
|
grub_efi_free_pages() instead of open-coded efi_call_N() calls, so we
|
|
get more reasonable type checking.
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
|
---
|
|
grub-core/loader/efi/chainloader.c | 24 +++++++++---------------
|
|
1 file changed, 9 insertions(+), 15 deletions(-)
|
|
|
|
diff --git a/grub-core/loader/efi/chainloader.c b/grub-core/loader/efi/chainloader.c
|
|
index 5aa3a5dc7dd..3a724a9fcbf 100644
|
|
--- a/grub-core/loader/efi/chainloader.c
|
|
+++ b/grub-core/loader/efi/chainloader.c
|
|
@@ -65,7 +65,7 @@ grub_chainloader_unload (void)
|
|
|
|
b = grub_efi_system_table->boot_services;
|
|
efi_call_1 (b->unload_image, image_handle);
|
|
- efi_call_2 (b->free_pages, address, pages);
|
|
+ grub_efi_free_pages (address, pages);
|
|
|
|
grub_free (file_path);
|
|
grub_free (cmdline);
|
|
@@ -108,7 +108,7 @@ grub_chainloader_boot (void)
|
|
}
|
|
|
|
if (exit_data)
|
|
- efi_call_1 (b->free_pool, exit_data);
|
|
+ grub_efi_free_pool (exit_data);
|
|
|
|
grub_loader_unset ();
|
|
|
|
@@ -506,10 +506,9 @@ grub_efi_get_media_file_path (grub_efi_device_path_t *dp)
|
|
static grub_efi_boolean_t
|
|
handle_image (void *data, grub_efi_uint32_t datasize)
|
|
{
|
|
- grub_efi_boot_services_t *b;
|
|
grub_efi_loaded_image_t *li, li_bak;
|
|
grub_efi_status_t efi_status;
|
|
- char *buffer = NULL;
|
|
+ void *buffer = NULL;
|
|
char *buffer_aligned = NULL;
|
|
grub_efi_uint32_t i;
|
|
struct grub_pe32_section_table *section;
|
|
@@ -520,8 +519,6 @@ handle_image (void *data, grub_efi_uint32_t datasize)
|
|
int found_entry_point = 0;
|
|
int rc;
|
|
|
|
- b = grub_efi_system_table->boot_services;
|
|
-
|
|
rc = read_header (data, datasize, &context);
|
|
if (rc < 0)
|
|
{
|
|
@@ -561,8 +558,8 @@ handle_image (void *data, grub_efi_uint32_t datasize)
|
|
grub_dprintf ("chain", "image size is %08"PRIxGRUB_UINT64_T", datasize is %08x\n",
|
|
context.image_size, datasize);
|
|
|
|
- efi_status = efi_call_3 (b->allocate_pool, GRUB_EFI_LOADER_DATA,
|
|
- buffer_size, &buffer);
|
|
+ efi_status = grub_efi_allocate_pool (GRUB_EFI_LOADER_DATA, buffer_size,
|
|
+ &buffer);
|
|
|
|
if (efi_status != GRUB_EFI_SUCCESS)
|
|
{
|
|
@@ -794,14 +791,14 @@ handle_image (void *data, grub_efi_uint32_t datasize)
|
|
|
|
grub_dprintf ("chain", "entry_point returned %ld\n", efi_status);
|
|
grub_memcpy (li, &li_bak, sizeof (grub_efi_loaded_image_t));
|
|
- efi_status = efi_call_1 (b->free_pool, buffer);
|
|
+ efi_status = grub_efi_free_pool (buffer);
|
|
|
|
return 1;
|
|
|
|
error_exit:
|
|
grub_dprintf ("chain", "error_exit: grub_errno: %d\n", grub_errno);
|
|
if (buffer)
|
|
- efi_call_1 (b->free_pool, buffer);
|
|
+ grub_efi_free_pool (buffer);
|
|
|
|
return 0;
|
|
}
|
|
@@ -809,10 +806,7 @@ error_exit:
|
|
static grub_err_t
|
|
grub_secureboot_chainloader_unload (void)
|
|
{
|
|
- grub_efi_boot_services_t *b;
|
|
-
|
|
- b = grub_efi_system_table->boot_services;
|
|
- efi_call_2 (b->free_pages, address, pages);
|
|
+ grub_efi_free_pages (address, pages);
|
|
grub_free (file_path);
|
|
grub_free (cmdline);
|
|
cmdline = 0;
|
|
@@ -1079,7 +1073,7 @@ fail:
|
|
grub_free (file_path);
|
|
|
|
if (address)
|
|
- efi_call_2 (b->free_pages, address, pages);
|
|
+ grub_efi_free_pages (address, pages);
|
|
|
|
if (cmdline)
|
|
grub_free (cmdline);
|