]> git.karo-electronics.de Git - linux-beck.git/commitdiff
efi: Check EFI_MEMORY_DESCRIPTOR version explicitly
authorArd Biesheuvel <ard.biesheuvel@linaro.org>
Mon, 25 Apr 2016 20:06:40 +0000 (21:06 +0100)
committerIngo Molnar <mingo@kernel.org>
Thu, 28 Apr 2016 09:33:51 +0000 (11:33 +0200)
Our efi_memory_desc_t type is based on EFI_MEMORY_DESCRIPTOR version 1 in
the UEFI spec. No version updates are expected, but since we are about to
introduce support for new firmware tables that use the same descriptor
type, it makes sense to at least warn if we encounter other versions.

Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Matt Fleming <matt@codeblueprint.co.uk>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-efi@vger.kernel.org
Link: http://lkml.kernel.org/r/1461614832-17633-9-git-send-email-matt@codeblueprint.co.uk
Signed-off-by: Ingo Molnar <mingo@kernel.org>
arch/x86/platform/efi/efi.c
drivers/firmware/efi/arm-init.c

index 88d2fb2cb3ef5eaa648fc364c0b560f841501d07..dde46cd78b8f35a821391b4b0c7934f9f67e5521 100644 (file)
@@ -211,6 +211,10 @@ int __init efi_memblock_x86_reserve_range(void)
        efi.memmap.desc_size    = e->efi_memdesc_size;
        efi.memmap.desc_version = e->efi_memdesc_version;
 
+       WARN(efi.memmap.desc_version != 1,
+            "Unexpected EFI_MEMORY_DESCRIPTOR version %ld",
+            efi.memmap.desc_version);
+
        memblock_reserve(pmap, efi.memmap.nr_map * efi.memmap.desc_size);
 
        return 0;
index 90a9b473e45c7ca39a7936d11369d2b9a77df873..a84dddb54c14943a9cfcfbcde6ec7562f2f640b6 100644 (file)
@@ -198,6 +198,10 @@ void __init efi_init(void)
        efi.memmap.desc_size = params.desc_size;
        efi.memmap.desc_version = params.desc_ver;
 
+       WARN(efi.memmap.desc_version != 1,
+            "Unexpected EFI_MEMORY_DESCRIPTOR version %ld",
+             efi.memmap.desc_version);
+
        if (uefi_init() < 0)
                return;