Merge tag 'efi-2019-07-rc1-3' of git://git.denx.de/u-boot-efi
Pull request for UEFI sub-system for v2019.07-rc1 (3) This patch series reworks the implementation of the `bootefi` command to remove code duplication by using the LoadImage() boot service to load binaries. Missing short texts for UEFI protocols are added for display by the `efidebug dh` command. Missing parameter checks for AllocatePages() and CreateDeviceNode() are implemented. The constants for protocol GUIDs are changed to match the names in the UEFI specification.
This commit is contained in:
@@ -53,7 +53,7 @@ void efi_puts(struct efi_priv *priv, const char *str)
|
||||
int efi_init(struct efi_priv *priv, const char *banner, efi_handle_t image,
|
||||
struct efi_system_table *sys_table)
|
||||
{
|
||||
efi_guid_t loaded_image_guid = LOADED_IMAGE_PROTOCOL_GUID;
|
||||
efi_guid_t loaded_image_guid = EFI_LOADED_IMAGE_PROTOCOL_GUID;
|
||||
struct efi_boot_services *boot = sys_table->boottime;
|
||||
struct efi_loaded_image *loaded_image;
|
||||
int ret;
|
||||
|
||||
@@ -278,7 +278,7 @@ efi_status_t EFIAPI efi_main(efi_handle_t image,
|
||||
struct efi_gop *gop;
|
||||
struct efi_entry_gopmode mode;
|
||||
struct efi_entry_systable table;
|
||||
efi_guid_t efi_gop_guid = EFI_GOP_GUID;
|
||||
efi_guid_t efi_gop_guid = EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID;
|
||||
efi_uintn_t key, desc_size, size;
|
||||
efi_status_t ret;
|
||||
u32 version;
|
||||
|
||||
@@ -120,14 +120,14 @@ static void *get_var(u16 *name, const efi_guid_t *vendor,
|
||||
* if successful. This checks that the EFI_LOAD_OPTION is active (enabled)
|
||||
* and that the specified file to boot exists.
|
||||
*/
|
||||
static void *try_load_entry(uint16_t n, struct efi_device_path **device_path,
|
||||
struct efi_device_path **file_path)
|
||||
static efi_status_t try_load_entry(u16 n, efi_handle_t *handle)
|
||||
{
|
||||
struct efi_load_option lo;
|
||||
u16 varname[] = L"Boot0000";
|
||||
u16 hexmap[] = L"0123456789ABCDEF";
|
||||
void *load_option, *image = NULL;
|
||||
void *load_option;
|
||||
efi_uintn_t size;
|
||||
efi_status_t ret;
|
||||
|
||||
varname[4] = hexmap[(n & 0xf000) >> 12];
|
||||
varname[5] = hexmap[(n & 0x0f00) >> 8];
|
||||
@@ -136,19 +136,18 @@ static void *try_load_entry(uint16_t n, struct efi_device_path **device_path,
|
||||
|
||||
load_option = get_var(varname, &efi_global_variable_guid, &size);
|
||||
if (!load_option)
|
||||
return NULL;
|
||||
return EFI_LOAD_ERROR;
|
||||
|
||||
efi_deserialize_load_option(&lo, load_option);
|
||||
|
||||
if (lo.attributes & LOAD_OPTION_ACTIVE) {
|
||||
u32 attributes;
|
||||
efi_status_t ret;
|
||||
|
||||
debug("%s: trying to load \"%ls\" from %pD\n",
|
||||
__func__, lo.label, lo.file_path);
|
||||
|
||||
ret = efi_load_image_from_path(lo.file_path, &image, &size);
|
||||
|
||||
ret = EFI_CALL(efi_load_image(true, efi_root, lo.file_path,
|
||||
NULL, 0, handle));
|
||||
if (ret != EFI_SUCCESS)
|
||||
goto error;
|
||||
|
||||
@@ -159,17 +158,22 @@ static void *try_load_entry(uint16_t n, struct efi_device_path **device_path,
|
||||
L"BootCurrent",
|
||||
(efi_guid_t *)&efi_global_variable_guid,
|
||||
attributes, size, &n));
|
||||
if (ret != EFI_SUCCESS)
|
||||
if (ret != EFI_SUCCESS) {
|
||||
if (EFI_CALL(efi_unload_image(*handle))
|
||||
!= EFI_SUCCESS)
|
||||
printf("Unloading image failed\n");
|
||||
goto error;
|
||||
}
|
||||
|
||||
printf("Booting: %ls\n", lo.label);
|
||||
efi_dp_split_file_path(lo.file_path, device_path, file_path);
|
||||
} else {
|
||||
ret = EFI_LOAD_ERROR;
|
||||
}
|
||||
|
||||
error:
|
||||
free(load_option);
|
||||
|
||||
return image;
|
||||
return ret;
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -177,12 +181,10 @@ error:
|
||||
* EFI variable, the available load-options, finding and returning
|
||||
* the first one that can be loaded successfully.
|
||||
*/
|
||||
void *efi_bootmgr_load(struct efi_device_path **device_path,
|
||||
struct efi_device_path **file_path)
|
||||
efi_status_t efi_bootmgr_load(efi_handle_t *handle)
|
||||
{
|
||||
u16 bootnext, *bootorder;
|
||||
efi_uintn_t size;
|
||||
void *image = NULL;
|
||||
int i, num;
|
||||
efi_status_t ret;
|
||||
|
||||
@@ -209,10 +211,9 @@ void *efi_bootmgr_load(struct efi_device_path **device_path,
|
||||
/* load BootNext */
|
||||
if (ret == EFI_SUCCESS) {
|
||||
if (size == sizeof(u16)) {
|
||||
image = try_load_entry(bootnext, device_path,
|
||||
file_path);
|
||||
if (image)
|
||||
return image;
|
||||
ret = try_load_entry(bootnext, handle);
|
||||
if (ret == EFI_SUCCESS)
|
||||
return ret;
|
||||
}
|
||||
} else {
|
||||
printf("Deleting BootNext failed\n");
|
||||
@@ -223,19 +224,20 @@ void *efi_bootmgr_load(struct efi_device_path **device_path,
|
||||
bootorder = get_var(L"BootOrder", &efi_global_variable_guid, &size);
|
||||
if (!bootorder) {
|
||||
printf("BootOrder not defined\n");
|
||||
ret = EFI_NOT_FOUND;
|
||||
goto error;
|
||||
}
|
||||
|
||||
num = size / sizeof(uint16_t);
|
||||
for (i = 0; i < num; i++) {
|
||||
debug("%s: trying to load Boot%04X\n", __func__, bootorder[i]);
|
||||
image = try_load_entry(bootorder[i], device_path, file_path);
|
||||
if (image)
|
||||
ret = try_load_entry(bootorder[i], handle);
|
||||
if (ret == EFI_SUCCESS)
|
||||
break;
|
||||
}
|
||||
|
||||
free(bootorder);
|
||||
|
||||
error:
|
||||
return image;
|
||||
return ret;
|
||||
}
|
||||
|
||||
@@ -1591,6 +1591,7 @@ failure:
|
||||
* @size: size of the loaded image
|
||||
* Return: status code
|
||||
*/
|
||||
static
|
||||
efi_status_t efi_load_image_from_path(struct efi_device_path *file_path,
|
||||
void **buffer, efi_uintn_t *size)
|
||||
{
|
||||
@@ -1699,19 +1700,11 @@ efi_status_t EFIAPI efi_load_image(bool boot_policy,
|
||||
&source_size);
|
||||
if (ret != EFI_SUCCESS)
|
||||
goto error;
|
||||
/*
|
||||
* split file_path which contains both the device and
|
||||
* file parts:
|
||||
*/
|
||||
efi_dp_split_file_path(file_path, &dp, &fp);
|
||||
} else {
|
||||
/* In this case, file_path is the "device" path, i.e.
|
||||
* something like a HARDWARE_DEVICE:MEMORY_MAPPED
|
||||
*/
|
||||
dest_buffer = source_buffer;
|
||||
dp = file_path;
|
||||
fp = NULL;
|
||||
}
|
||||
/* split file_path which contains both the device and file parts */
|
||||
efi_dp_split_file_path(file_path, &dp, &fp);
|
||||
ret = efi_setup_loaded_image(dp, fp, image_obj, &info);
|
||||
if (ret == EFI_SUCCESS)
|
||||
ret = efi_load_pe(*image_obj, dest_buffer, info);
|
||||
@@ -2664,6 +2657,7 @@ efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
|
||||
}
|
||||
|
||||
current_image = image_handle;
|
||||
EFI_PRINT("Jumping into 0x%p\n", image_obj->entry);
|
||||
ret = EFI_CALL(image_obj->entry(image_handle, &systab));
|
||||
|
||||
/*
|
||||
|
||||
@@ -335,6 +335,9 @@ struct efi_device_path *efi_dp_create_device_node(const u8 type,
|
||||
{
|
||||
struct efi_device_path *ret;
|
||||
|
||||
if (length < sizeof(struct efi_device_path))
|
||||
return NULL;
|
||||
|
||||
ret = dp_alloc(length);
|
||||
if (!ret)
|
||||
return ret;
|
||||
@@ -917,14 +920,14 @@ struct efi_device_path *efi_dp_from_mem(uint32_t memory_type,
|
||||
*
|
||||
* @full_path: device path including device and file path
|
||||
* @device_path: path of the device
|
||||
* @file_path: relative path of the file
|
||||
* @file_path: relative path of the file or NULL if there is none
|
||||
* Return: status code
|
||||
*/
|
||||
efi_status_t efi_dp_split_file_path(struct efi_device_path *full_path,
|
||||
struct efi_device_path **device_path,
|
||||
struct efi_device_path **file_path)
|
||||
{
|
||||
struct efi_device_path *p, *dp, *fp;
|
||||
struct efi_device_path *p, *dp, *fp = NULL;
|
||||
|
||||
*device_path = NULL;
|
||||
*file_path = NULL;
|
||||
@@ -935,7 +938,7 @@ efi_status_t efi_dp_split_file_path(struct efi_device_path *full_path,
|
||||
while (!EFI_DP_TYPE(p, MEDIA_DEVICE, FILE_PATH)) {
|
||||
p = efi_dp_next(p);
|
||||
if (!p)
|
||||
return EFI_INVALID_PARAMETER;
|
||||
goto out;
|
||||
}
|
||||
fp = efi_dp_dup(p);
|
||||
if (!fp)
|
||||
@@ -944,6 +947,7 @@ efi_status_t efi_dp_split_file_path(struct efi_device_path *full_path,
|
||||
p->sub_type = DEVICE_PATH_SUB_TYPE_END;
|
||||
p->length = sizeof(*p);
|
||||
|
||||
out:
|
||||
*device_path = dp;
|
||||
*file_path = fp;
|
||||
return EFI_SUCCESS;
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#include <part.h>
|
||||
#include <malloc.h>
|
||||
|
||||
const efi_guid_t efi_block_io_guid = BLOCK_IO_GUID;
|
||||
const efi_guid_t efi_block_io_guid = EFI_BLOCK_IO_PROTOCOL_GUID;
|
||||
|
||||
/**
|
||||
* struct efi_disk_obj - EFI disk object
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
static const efi_guid_t efi_gop_guid = EFI_GOP_GUID;
|
||||
static const efi_guid_t efi_gop_guid = EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID;
|
||||
|
||||
/**
|
||||
* struct efi_gop_obj - graphical output protocol object
|
||||
|
||||
@@ -12,10 +12,10 @@
|
||||
#include <pe.h>
|
||||
|
||||
const efi_guid_t efi_global_variable_guid = EFI_GLOBAL_VARIABLE_GUID;
|
||||
const efi_guid_t efi_guid_device_path = DEVICE_PATH_GUID;
|
||||
const efi_guid_t efi_guid_loaded_image = LOADED_IMAGE_GUID;
|
||||
const efi_guid_t efi_guid_loaded_image_device_path
|
||||
= LOADED_IMAGE_DEVICE_PATH_GUID;
|
||||
const efi_guid_t efi_guid_device_path = EFI_DEVICE_PATH_PROTOCOL_GUID;
|
||||
const efi_guid_t efi_guid_loaded_image = EFI_LOADED_IMAGE_PROTOCOL_GUID;
|
||||
const efi_guid_t efi_guid_loaded_image_device_path =
|
||||
EFI_LOADED_IMAGE_DEVICE_PATH_PROTOCOL_GUID;
|
||||
const efi_guid_t efi_simple_file_system_protocol_guid =
|
||||
EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID;
|
||||
const efi_guid_t efi_file_info_guid = EFI_FILE_INFO_GUID;
|
||||
|
||||
@@ -376,6 +376,10 @@ efi_status_t efi_allocate_pages(int type, int memory_type,
|
||||
efi_status_t r = EFI_SUCCESS;
|
||||
uint64_t addr;
|
||||
|
||||
/* Check import parameters */
|
||||
if (memory_type >= EFI_PERSISTENT_MEMORY_TYPE &&
|
||||
memory_type <= 0x6FFFFFFF)
|
||||
return EFI_INVALID_PARAMETER;
|
||||
if (!memory)
|
||||
return EFI_INVALID_PARAMETER;
|
||||
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
#include <efi_loader.h>
|
||||
#include <malloc.h>
|
||||
|
||||
static const efi_guid_t efi_net_guid = EFI_SIMPLE_NETWORK_GUID;
|
||||
static const efi_guid_t efi_pxe_guid = EFI_PXE_GUID;
|
||||
static const efi_guid_t efi_net_guid = EFI_SIMPLE_NETWORK_PROTOCOL_GUID;
|
||||
static const efi_guid_t efi_pxe_guid = EFI_PXE_BASE_CODE_PROTOCOL_GUID;
|
||||
static struct efi_pxe_packet *dhcp_ack;
|
||||
static bool new_rx_packet;
|
||||
static void *new_tx_packet;
|
||||
|
||||
@@ -11,6 +11,8 @@
|
||||
|
||||
const efi_guid_t efi_u_boot_guid = U_BOOT_GUID;
|
||||
|
||||
efi_handle_t efi_root = NULL;
|
||||
|
||||
struct efi_root_dp {
|
||||
struct efi_device_path_vendor vendor;
|
||||
struct efi_device_path end;
|
||||
@@ -26,7 +28,6 @@ struct efi_root_dp {
|
||||
*/
|
||||
efi_status_t efi_root_node_register(void)
|
||||
{
|
||||
efi_handle_t root = NULL;
|
||||
struct efi_root_dp *dp;
|
||||
|
||||
/* Create device path protocol */
|
||||
@@ -46,7 +47,7 @@ efi_status_t efi_root_node_register(void)
|
||||
dp->end.length = sizeof(struct efi_device_path);
|
||||
|
||||
/* Create root node and install protocols */
|
||||
return EFI_CALL(efi_install_multiple_protocol_interfaces(&root,
|
||||
return EFI_CALL(efi_install_multiple_protocol_interfaces(&efi_root,
|
||||
/* Device path protocol */
|
||||
&efi_guid_device_path, dp,
|
||||
/* Device path to text protocol */
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#include <common.h>
|
||||
#include <efi_api.h>
|
||||
|
||||
static const efi_guid_t loaded_image_guid = LOADED_IMAGE_GUID;
|
||||
static const efi_guid_t loaded_image_guid = EFI_LOADED_IMAGE_PROTOCOL_GUID;
|
||||
static const efi_guid_t fdt_guid = EFI_FDT_GUID;
|
||||
static const efi_guid_t acpi_guid = EFI_ACPI_TABLE_GUID;
|
||||
static const efi_guid_t smbios_guid = SMBIOS_TABLE_GUID;
|
||||
|
||||
@@ -23,7 +23,6 @@ efi_selftest_events.o \
|
||||
efi_selftest_event_groups.o \
|
||||
efi_selftest_exception.o \
|
||||
efi_selftest_exitbootservices.o \
|
||||
efi_selftest_fdt.o \
|
||||
efi_selftest_gop.o \
|
||||
efi_selftest_loaded_image.o \
|
||||
efi_selftest_manageprotocols.o \
|
||||
@@ -42,6 +41,10 @@ efi_selftest_watchdog.o
|
||||
obj-$(CONFIG_CPU_V7) += efi_selftest_unaligned.o
|
||||
obj-$(CONFIG_EFI_LOADER_HII) += efi_selftest_hii.o
|
||||
|
||||
ifeq ($(CONFIG_GENERATE_ACPI_TABLE),)
|
||||
obj-y += efi_selftest_fdt.o
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_BLK)$(CONFIG_PARTITIONS),yy)
|
||||
obj-y += efi_selftest_block_device.o
|
||||
endif
|
||||
|
||||
@@ -23,7 +23,7 @@ static const struct efi_gop_pixel DARK_BLUE = {128, 0, 0, 0};
|
||||
static const struct efi_gop_pixel LIGHT_BLUE = {255, 192, 192, 0};
|
||||
|
||||
static struct efi_boot_services *boottime;
|
||||
static efi_guid_t efi_gop_guid = EFI_GOP_GUID;
|
||||
static efi_guid_t efi_gop_guid = EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID;
|
||||
static struct efi_gop *gop;
|
||||
static struct efi_gop_pixel *bitmap;
|
||||
static struct efi_event *event;
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
|
||||
static struct efi_boot_services *boottime;
|
||||
|
||||
static const efi_guid_t block_io_protocol_guid = BLOCK_IO_GUID;
|
||||
static const efi_guid_t guid_device_path = DEVICE_PATH_GUID;
|
||||
static const efi_guid_t block_io_protocol_guid = EFI_BLOCK_IO_PROTOCOL_GUID;
|
||||
static const efi_guid_t guid_device_path = EFI_DEVICE_PATH_PROTOCOL_GUID;
|
||||
static const efi_guid_t guid_simple_file_system_protocol =
|
||||
EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID;
|
||||
static const efi_guid_t guid_file_system_info = EFI_FILE_SYSTEM_INFO_GUID;
|
||||
|
||||
@@ -20,7 +20,7 @@ struct interface {
|
||||
void (EFIAPI * inc)(void);
|
||||
} interface;
|
||||
|
||||
static efi_guid_t guid_device_path = DEVICE_PATH_GUID;
|
||||
static efi_guid_t guid_device_path = EFI_DEVICE_PATH_PROTOCOL_GUID;
|
||||
|
||||
static efi_guid_t guid_device_path_to_text_protocol =
|
||||
EFI_DEVICE_PATH_TO_TEXT_PROTOCOL_GUID;
|
||||
|
||||
@@ -13,13 +13,15 @@
|
||||
#include <efi_selftest.h>
|
||||
#include <linux/libfdt.h>
|
||||
|
||||
static struct efi_boot_services *boottime;
|
||||
static const struct efi_system_table *systemtab;
|
||||
static const struct efi_boot_services *boottime;
|
||||
static const char *fdt;
|
||||
|
||||
/* This should be sufficient for */
|
||||
#define BUFFERSIZE 0x100000
|
||||
|
||||
static efi_guid_t fdt_guid = EFI_FDT_GUID;
|
||||
static const efi_guid_t fdt_guid = EFI_FDT_GUID;
|
||||
static const efi_guid_t acpi_guid = EFI_ACPI_TABLE_GUID;
|
||||
|
||||
/*
|
||||
* Convert FDT value to host endianness.
|
||||
@@ -115,6 +117,23 @@ static char *get_property(const u16 *property)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* efi_st_get_config_table() - get configuration table
|
||||
*
|
||||
* @guid: GUID of the configuration table
|
||||
* Return: pointer to configuration table or NULL
|
||||
*/
|
||||
static void *efi_st_get_config_table(const efi_guid_t *guid)
|
||||
{
|
||||
size_t i;
|
||||
|
||||
for (i = 0; i < systab.nr_tables; i++) {
|
||||
if (!guidcmp(guid, &systemtab->tables[i].guid))
|
||||
return systemtab->tables[i].table;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
* Setup unit test.
|
||||
*
|
||||
@@ -125,21 +144,22 @@ static char *get_property(const u16 *property)
|
||||
static int setup(const efi_handle_t img_handle,
|
||||
const struct efi_system_table *systable)
|
||||
{
|
||||
efi_uintn_t i;
|
||||
void *acpi;
|
||||
|
||||
systemtab = systable;
|
||||
boottime = systable->boottime;
|
||||
|
||||
/* Find configuration tables */
|
||||
for (i = 0; i < systable->nr_tables; ++i) {
|
||||
if (!efi_st_memcmp(&systable->tables[i].guid, &fdt_guid,
|
||||
sizeof(efi_guid_t)))
|
||||
fdt = systable->tables[i].table;
|
||||
}
|
||||
acpi = efi_st_get_config_table(&acpi_guid);
|
||||
fdt = efi_st_get_config_table(&fdt_guid);
|
||||
|
||||
if (!fdt) {
|
||||
efi_st_error("Missing device tree\n");
|
||||
return EFI_ST_FAILURE;
|
||||
}
|
||||
|
||||
if (acpi) {
|
||||
efi_st_error("Found ACPI table and device tree\n");
|
||||
return EFI_ST_FAILURE;
|
||||
}
|
||||
return EFI_ST_SUCCESS;
|
||||
}
|
||||
|
||||
@@ -183,5 +203,4 @@ EFI_UNIT_TEST(fdt) = {
|
||||
.phase = EFI_EXECUTE_BEFORE_BOOTTIME_EXIT,
|
||||
.setup = setup,
|
||||
.execute = execute,
|
||||
.on_request = true,
|
||||
};
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
#include <efi_selftest.h>
|
||||
|
||||
static struct efi_boot_services *boottime;
|
||||
static efi_guid_t efi_gop_guid = EFI_GOP_GUID;
|
||||
static efi_guid_t efi_gop_guid = EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID;
|
||||
static struct efi_gop *gop;
|
||||
|
||||
/*
|
||||
|
||||
@@ -27,7 +27,7 @@ static struct efi_boot_services *boottime;
|
||||
static efi_handle_t handle_image;
|
||||
static efi_handle_t handle_volume;
|
||||
|
||||
static const efi_guid_t guid_device_path = DEVICE_PATH_GUID;
|
||||
static const efi_guid_t guid_device_path = EFI_DEVICE_PATH_PROTOCOL_GUID;
|
||||
static const efi_guid_t guid_simple_file_system_protocol =
|
||||
EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID;
|
||||
static const efi_guid_t guid_file_info = EFI_FILE_INFO_GUID;
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
#include <common.h>
|
||||
#include <efi_api.h>
|
||||
|
||||
static efi_guid_t loaded_image_protocol_guid = LOADED_IMAGE_GUID;
|
||||
static efi_guid_t loaded_image_protocol_guid = EFI_LOADED_IMAGE_PROTOCOL_GUID;
|
||||
|
||||
/**
|
||||
* check_loaded_image_protocol() - check image_base/image_size
|
||||
|
||||
@@ -66,7 +66,7 @@ struct dhcp {
|
||||
static struct efi_boot_services *boottime;
|
||||
static struct efi_simple_network *net;
|
||||
static struct efi_event *timer;
|
||||
static const efi_guid_t efi_net_guid = EFI_SIMPLE_NETWORK_GUID;
|
||||
static const efi_guid_t efi_net_guid = EFI_SIMPLE_NETWORK_PROTOCOL_GUID;
|
||||
/* IP packet ID */
|
||||
static unsigned int net_ip_id;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user