efi_loader: check map_key in ExitBootServices
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Mon, 2 Jul 2018 10:53:55 +0000 (12:53 +0200)
committerAlexander Graf <agraf@suse.de>
Wed, 25 Jul 2018 12:59:44 +0000 (14:59 +0200)
The UEFI spec requires that the memory map key is checked in
ExitBootServices().

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
include/efi_loader.h
lib/efi_loader/efi_boottime.c
lib/efi_loader/efi_memory.c

index a0495db2918ab5241b3a34ea03efd1540aa6b1cc..3cbec15c29734037398da6c8cfa9b0431b744a5f 100644 (file)
@@ -82,6 +82,9 @@ const char *__efi_nesting_dec(void);
 #define EFI_CACHELINE_SIZE 128
 #endif
 
+/* Key identifying current memory map */
+extern efi_uintn_t efi_memory_map_key;
+
 extern struct efi_runtime_services efi_runtime_services;
 extern struct efi_system_table systab;
 
index 86cb9ba479a585c27af948e15cc08b480f751fe8..6bd64b9df9c85aee0daedec6abb02db0f4f10c32 100644 (file)
@@ -1854,6 +1854,10 @@ static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
 
        EFI_ENTRY("%p, %ld", image_handle, map_key);
 
+       /* Check that the caller has read the current memory map */
+       if (map_key != efi_memory_map_key)
+               return EFI_INVALID_PARAMETER;
+
        /* Make sure that notification functions are not called anymore */
        efi_tpl = TPL_HIGH_LEVEL;
 
index bad87042695c25dfd7945a48e000da690b12d760..967c3f733e4c581e2e0adc13c7507d6cf74c71f5 100644 (file)
@@ -15,6 +15,8 @@
 
 DECLARE_GLOBAL_DATA_PTR;
 
+efi_uintn_t efi_memory_map_key;
+
 struct efi_mem_list {
        struct list_head link;
        struct efi_mem_desc desc;
@@ -160,9 +162,13 @@ uint64_t efi_add_memory_map(uint64_t start, uint64_t pages, int memory_type,
        debug("%s: 0x%" PRIx64 " 0x%" PRIx64 " %d %s\n", __func__,
              start, pages, memory_type, overlap_only_ram ? "yes" : "no");
 
+       if (memory_type >= EFI_MAX_MEMORY_TYPE)
+               return EFI_INVALID_PARAMETER;
+
        if (!pages)
                return start;
 
+       ++efi_memory_map_key;
        newlist = calloc(1, sizeof(*newlist));
        newlist->desc.type = memory_type;
        newlist->desc.physical_start = start;
@@ -487,7 +493,7 @@ efi_status_t efi_get_memory_map(efi_uintn_t *memory_map_size,
        }
 
        if (map_key)
-               *map_key = 0;
+               *map_key = efi_memory_map_key;
 
        return EFI_SUCCESS;
 }