diff options
author | Chester Lin <clin@suse.com> | 2020-10-30 14:08:39 +0800 |
---|---|---|
committer | Ard Biesheuvel <ardb@kernel.org> | 2020-11-06 07:40:42 +0100 |
commit | 25519d68344269f9dc58b5bc72f648248a1fafb9 (patch) | |
tree | 5f9d38288d1673da27a741a2974fd00d35bf5886 /arch/x86/include | |
parent | e1ac4b2406d94eddce8ac2c5ab4235f6075a9602 (diff) |
ima: generalize x86/EFI arch glue for other EFI architectures
Move the x86 IMA arch code into security/integrity/ima/ima_efi.c,
so that we will be able to wire it up for arm64 in a future patch.
Co-developed-by: Chester Lin <clin@suse.com>
Signed-off-by: Chester Lin <clin@suse.com>
Acked-by: Mimi Zohar <zohar@linux.ibm.com>
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'arch/x86/include')
-rw-r--r-- | arch/x86/include/asm/efi.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/include/asm/efi.h b/arch/x86/include/asm/efi.h index 7673dc833232..c98f78330b09 100644 --- a/arch/x86/include/asm/efi.h +++ b/arch/x86/include/asm/efi.h @@ -380,4 +380,7 @@ static inline void efi_fake_memmap_early(void) } #endif +#define arch_ima_efi_boot_mode \ + ({ extern struct boot_params boot_params; boot_params.secure_boot; }) + #endif /* _ASM_X86_EFI_H */ |