769a8089c1
In not-instrumented code KASAN replaces instrumented memset/memcpy/memmove with not-instrumented analogues __memset/__memcpy/__memove. However, on x86 the EFI stub is not linked with the kernel. It uses not-instrumented mem*() functions from arch/x86/boot/compressed/string.c So we don't replace them with __mem*() variants in EFI stub. On ARM64 the EFI stub is linked with the kernel, so we should replace mem*() functions with __mem*(), because the EFI stub runs before KASAN sets up early shadow. So let's move these #undef mem* into arch's asm/efi.h which is also included by the EFI stub. Also, this will fix the warning in 32-bit build reported by kbuild test robot: efi-stub-helper.c:599:2: warning: implicit declaration of function 'memcpy' [akpm@linux-foundation.org: use 80 cols in comment] Signed-off-by: Andrey Ryabinin <ryabinin.a.a@gmail.com> Reported-by: Fengguang Wu <fengguang.wu@gmail.com> Cc: Will Deacon <will.deacon@arm.com> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Matt Fleming <matt.fleming@intel.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: "H. Peter Anvin" <hpa@zytor.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
47 lines
1.5 KiB
C
47 lines
1.5 KiB
C
|
|
#ifndef _DRIVERS_FIRMWARE_EFI_EFISTUB_H
|
|
#define _DRIVERS_FIRMWARE_EFI_EFISTUB_H
|
|
|
|
/* error code which can't be mistaken for valid address */
|
|
#define EFI_ERROR (~0UL)
|
|
|
|
void efi_char16_printk(efi_system_table_t *, efi_char16_t *);
|
|
|
|
efi_status_t efi_open_volume(efi_system_table_t *sys_table_arg, void *__image,
|
|
void **__fh);
|
|
|
|
efi_status_t efi_file_size(efi_system_table_t *sys_table_arg, void *__fh,
|
|
efi_char16_t *filename_16, void **handle,
|
|
u64 *file_sz);
|
|
|
|
efi_status_t efi_file_read(void *handle, unsigned long *size, void *addr);
|
|
|
|
efi_status_t efi_file_close(void *handle);
|
|
|
|
unsigned long get_dram_base(efi_system_table_t *sys_table_arg);
|
|
|
|
efi_status_t update_fdt(efi_system_table_t *sys_table, void *orig_fdt,
|
|
unsigned long orig_fdt_size,
|
|
void *fdt, int new_fdt_size, char *cmdline_ptr,
|
|
u64 initrd_addr, u64 initrd_size,
|
|
efi_memory_desc_t *memory_map,
|
|
unsigned long map_size, unsigned long desc_size,
|
|
u32 desc_ver);
|
|
|
|
efi_status_t allocate_new_fdt_and_exit_boot(efi_system_table_t *sys_table,
|
|
void *handle,
|
|
unsigned long *new_fdt_addr,
|
|
unsigned long max_addr,
|
|
u64 initrd_addr, u64 initrd_size,
|
|
char *cmdline_ptr,
|
|
unsigned long fdt_addr,
|
|
unsigned long fdt_size);
|
|
|
|
void *get_fdt(efi_system_table_t *sys_table, unsigned long *fdt_size);
|
|
|
|
void efi_get_virtmap(efi_memory_desc_t *memory_map, unsigned long map_size,
|
|
unsigned long desc_size, efi_memory_desc_t *runtime_map,
|
|
int *count);
|
|
|
|
#endif
|