[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen stable-4.5] efi: avoid calling boot services after ExitBootServices()
commit 6971bb6b222e9fa1d3faf7ce98d4dd9b4a224feb Author: Ross Lagerwall <ross.lagerwall@xxxxxxxxxx> AuthorDate: Thu Jun 18 08:54:08 2015 +0200 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Thu Jun 18 08:54:08 2015 +0200 efi: avoid calling boot services after ExitBootServices() After the first call to ExitBootServices(), avoid calling any boot services (except GetMemoryMap() and ExitBootServices()) by setting setting efi_bs to NULL and halting in blexit(). Only GetMemoryMap() and ExitBootServices() are explicitly allowed to be called after the first call to ExitBootServices() and so are are called via SystemTable->BootServices. Suggested-by: Jan Beulich <jbeulich@xxxxxxxx> Signed-off-by: Ross Lagerwall <ross.lagerwall@xxxxxxxxxx> Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> master commit: d4300db3a03a0cd999745135d7879fc4b6b5aa61 master date: 2015-06-10 12:00:10 +0200 --- xen/arch/arm/efi/efi-boot.h | 6 ++++++ xen/arch/x86/efi/efi-boot.h | 7 +++++++ xen/common/efi/boot.c | 13 ++++++++++--- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/xen/arch/arm/efi/efi-boot.h b/xen/arch/arm/efi/efi-boot.h index 0bde0a1..cf9c3c6 100644 --- a/xen/arch/arm/efi/efi-boot.h +++ b/xen/arch/arm/efi/efi-boot.h @@ -6,6 +6,7 @@ #include <xen/device_tree.h> #include <xen/libfdt/libfdt.h> #include <asm/setup.h> +#include <asm/smp.h> void noreturn efi_xen_start(void *fdt_ptr, uint32_t fdt_size); @@ -522,6 +523,11 @@ static void __init efi_arch_blexit(void) efi_bs->FreePool(memmap); } +static void __init efi_arch_halt(void) +{ + stop_cpu(); +} + static void __init efi_arch_load_addr_check(EFI_LOADED_IMAGE *loaded_image) { if ( (unsigned long)loaded_image->ImageBase & ((1 << 12) - 1) ) diff --git a/xen/arch/x86/efi/efi-boot.h b/xen/arch/x86/efi/efi-boot.h index cd14c19..9f41793 100644 --- a/xen/arch/x86/efi/efi-boot.h +++ b/xen/arch/x86/efi/efi-boot.h @@ -614,6 +614,13 @@ static void __init efi_arch_blexit(void) efi_bs->FreePages(ucode.addr, PFN_UP(ucode.size)); } +static void __init efi_arch_halt(void) +{ + local_irq_disable(); + for ( ; ; ) + halt(); +} + static void __init efi_arch_load_addr_check(EFI_LOADED_IMAGE *loaded_image) { xen_phys_start = (UINTN)loaded_image->ImageBase; diff --git a/xen/common/efi/boot.c b/xen/common/efi/boot.c index 9f3e075..3b87f7e 100644 --- a/xen/common/efi/boot.c +++ b/xen/common/efi/boot.c @@ -214,6 +214,9 @@ static void __init noreturn blexit(const CHAR16 *str) PrintStr((CHAR16 *)str); PrintStr(newline); + if ( !efi_bs ) + efi_arch_halt(); + if ( cfg.addr ) efi_bs->FreePages(cfg.addr, PFN_UP(cfg.size)); if ( kernel.addr ) @@ -1057,8 +1060,10 @@ efi_start(EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *SystemTable) for ( retry = 0; ; retry = 1 ) { efi_memmap_size = info_size; - status = efi_bs->GetMemoryMap(&efi_memmap_size, efi_memmap, &map_key, - &efi_mdesc_size, &mdesc_ver); + status = SystemTable->BootServices->GetMemoryMap(&efi_memmap_size, + efi_memmap, &map_key, + &efi_mdesc_size, + &mdesc_ver); if ( EFI_ERROR(status) ) PrintErrMesg(L"Cannot obtain memory map", status); @@ -1067,7 +1072,9 @@ efi_start(EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *SystemTable) efi_arch_pre_exit_boot(); - status = efi_bs->ExitBootServices(ImageHandle, map_key); + status = SystemTable->BootServices->ExitBootServices(ImageHandle, + map_key); + efi_bs = NULL; if ( status != EFI_INVALID_PARAMETER || retry ) break; } -- generated by git-patchbot for /home/xen/git/xen.git#stable-4.5 _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |