Commit ccc27ae7 authored by Ard Biesheuvel's avatar Ard Biesheuvel

efi/libstub: Drop __pure getter for efi_system_table

The practice of using __pure getter functions to access global
variables in the EFI stub dates back to the time when we had to
carefully prevent GOT entries from being emitted, because we
could not rely on the toolchain to do this for us.

Today, we use the hidden visibility pragma for all EFI stub source
files, which now all live in the same subdirectory, and we apply a
sanity check on the objects, so we can get rid of these getter
functions and simply refer to global data objects directly.

Start with efi_system_table(), and convert it into a global variable.
While at it, make it a pointer-to-const, because we can.
Signed-off-by: default avatarArd Biesheuvel <ardb@kernel.org>
parent 54439370
...@@ -339,15 +339,17 @@ static inline u32 efi64_convert_status(efi_status_t status) ...@@ -339,15 +339,17 @@ static inline u32 efi64_convert_status(efi_status_t status)
#define efi_bs_call(func, ...) \ #define efi_bs_call(func, ...) \
(efi_is_native() \ (efi_is_native() \
? efi_system_table()->boottime->func(__VA_ARGS__) \ ? efi_system_table->boottime->func(__VA_ARGS__) \
: __efi64_thunk_map(efi_table_attr(efi_system_table(), \ : __efi64_thunk_map(efi_table_attr(efi_system_table, \
boottime), func, __VA_ARGS__)) boottime), \
func, __VA_ARGS__))
#define efi_rt_call(func, ...) \ #define efi_rt_call(func, ...) \
(efi_is_native() \ (efi_is_native() \
? efi_system_table()->runtime->func(__VA_ARGS__) \ ? efi_system_table->runtime->func(__VA_ARGS__) \
: __efi64_thunk_map(efi_table_attr(efi_system_table(), \ : __efi64_thunk_map(efi_table_attr(efi_system_table, \
runtime), func, __VA_ARGS__)) runtime), \
func, __VA_ARGS__))
extern bool efi_reboot_required(void); extern bool efi_reboot_required(void);
extern bool efi_is_table_address(unsigned long phys_addr); extern bool efi_is_table_address(unsigned long phys_addr);
......
...@@ -287,8 +287,8 @@ efi_status_t efi_exit_boot_services(void *handle, ...@@ -287,8 +287,8 @@ efi_status_t efi_exit_boot_services(void *handle,
void *get_efi_config_table(efi_guid_t guid) void *get_efi_config_table(efi_guid_t guid)
{ {
unsigned long tables = efi_table_attr(efi_system_table(), tables); unsigned long tables = efi_table_attr(efi_system_table, tables);
int nr_tables = efi_table_attr(efi_system_table(), nr_tables); int nr_tables = efi_table_attr(efi_system_table, nr_tables);
int i; int i;
for (i = 0; i < nr_tables; i++) { for (i = 0; i < nr_tables; i++) {
...@@ -305,7 +305,7 @@ void *get_efi_config_table(efi_guid_t guid) ...@@ -305,7 +305,7 @@ void *get_efi_config_table(efi_guid_t guid)
void efi_char16_printk(efi_char16_t *str) void efi_char16_printk(efi_char16_t *str)
{ {
efi_call_proto(efi_table_attr(efi_system_table(), con_out), efi_call_proto(efi_table_attr(efi_system_table, con_out),
output_string, str); output_string, str);
} }
......
...@@ -38,12 +38,7 @@ ...@@ -38,12 +38,7 @@
static u64 virtmap_base = EFI_RT_VIRTUAL_BASE; static u64 virtmap_base = EFI_RT_VIRTUAL_BASE;
static bool flat_va_mapping; static bool flat_va_mapping;
static efi_system_table_t *sys_table; const efi_system_table_t *efi_system_table;
__pure efi_system_table_t *efi_system_table(void)
{
return sys_table;
}
static struct screen_info *setup_graphics(void) static struct screen_info *setup_graphics(void)
{ {
...@@ -167,10 +162,10 @@ efi_status_t efi_entry(efi_handle_t handle, efi_system_table_t *sys_table_arg) ...@@ -167,10 +162,10 @@ efi_status_t efi_entry(efi_handle_t handle, efi_system_table_t *sys_table_arg)
efi_properties_table_t *prop_tbl; efi_properties_table_t *prop_tbl;
unsigned long max_addr; unsigned long max_addr;
sys_table = sys_table_arg; efi_system_table = sys_table_arg;
/* Check if we were booted by the EFI firmware */ /* Check if we were booted by the EFI firmware */
if (sys_table->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE) { if (efi_system_table->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE) {
status = EFI_INVALID_PARAMETER; status = EFI_INVALID_PARAMETER;
goto fail; goto fail;
} }
...@@ -184,7 +179,7 @@ efi_status_t efi_entry(efi_handle_t handle, efi_system_table_t *sys_table_arg) ...@@ -184,7 +179,7 @@ efi_status_t efi_entry(efi_handle_t handle, efi_system_table_t *sys_table_arg)
* information about the running image, such as size and the command * information about the running image, such as size and the command
* line. * line.
*/ */
status = sys_table->boottime->handle_protocol(handle, status = efi_system_table->boottime->handle_protocol(handle,
&loaded_image_proto, (void *)&image); &loaded_image_proto, (void *)&image);
if (status != EFI_SUCCESS) { if (status != EFI_SUCCESS) {
pr_efi_err("Failed to get loaded image protocol\n"); pr_efi_err("Failed to get loaded image protocol\n");
......
...@@ -31,13 +31,13 @@ extern bool __pure noinitrd(void); ...@@ -31,13 +31,13 @@ extern bool __pure noinitrd(void);
extern bool __pure is_quiet(void); extern bool __pure is_quiet(void);
extern bool __pure novamap(void); extern bool __pure novamap(void);
extern __pure efi_system_table_t *efi_system_table(void); extern const efi_system_table_t *efi_system_table;
#ifndef efi_bs_call #ifndef efi_bs_call
#define efi_bs_call(func, ...) efi_system_table()->boottime->func(__VA_ARGS__) #define efi_bs_call(func, ...) efi_system_table->boottime->func(__VA_ARGS__)
#endif #endif
#ifndef efi_rt_call #ifndef efi_rt_call
#define efi_rt_call(func, ...) efi_system_table()->runtime->func(__VA_ARGS__) #define efi_rt_call(func, ...) efi_system_table->runtime->func(__VA_ARGS__)
#endif #endif
#ifndef efi_is_native #ifndef efi_is_native
#define efi_is_native() (true) #define efi_is_native() (true)
......
...@@ -110,7 +110,7 @@ static efi_status_t update_fdt(void *orig_fdt, unsigned long orig_fdt_size, ...@@ -110,7 +110,7 @@ static efi_status_t update_fdt(void *orig_fdt, unsigned long orig_fdt_size,
/* Add FDT entries for EFI runtime services in chosen node. */ /* Add FDT entries for EFI runtime services in chosen node. */
node = fdt_subnode_offset(fdt, 0, "chosen"); node = fdt_subnode_offset(fdt, 0, "chosen");
fdt_val64 = cpu_to_fdt64((u64)(unsigned long)efi_system_table()); fdt_val64 = cpu_to_fdt64((u64)(unsigned long)efi_system_table);
status = fdt_setprop_var(fdt, node, "linux,uefi-system-table", fdt_val64); status = fdt_setprop_var(fdt, node, "linux,uefi-system-table", fdt_val64);
if (status) if (status)
...@@ -314,7 +314,7 @@ efi_status_t allocate_new_fdt_and_exit_boot(void *handle, ...@@ -314,7 +314,7 @@ efi_status_t allocate_new_fdt_and_exit_boot(void *handle,
return EFI_SUCCESS; return EFI_SUCCESS;
/* Install the new virtual address map */ /* Install the new virtual address map */
svam = efi_system_table()->runtime->set_virtual_address_map; svam = efi_system_table->runtime->set_virtual_address_map;
status = svam(runtime_entry_count * desc_size, desc_size, status = svam(runtime_entry_count * desc_size, desc_size,
desc_ver, runtime_map); desc_ver, runtime_map);
...@@ -348,7 +348,7 @@ efi_status_t allocate_new_fdt_and_exit_boot(void *handle, ...@@ -348,7 +348,7 @@ efi_status_t allocate_new_fdt_and_exit_boot(void *handle,
efi_free(MAX_FDT_SIZE, *new_fdt_addr); efi_free(MAX_FDT_SIZE, *new_fdt_addr);
fail: fail:
efi_system_table()->boottime->free_pool(runtime_map); efi_system_table->boottime->free_pool(runtime_map);
return EFI_LOAD_ERROR; return EFI_LOAD_ERROR;
} }
......
...@@ -20,15 +20,10 @@ ...@@ -20,15 +20,10 @@
/* Maximum physical address for 64-bit kernel with 4-level paging */ /* Maximum physical address for 64-bit kernel with 4-level paging */
#define MAXMEM_X86_64_4LEVEL (1ull << 46) #define MAXMEM_X86_64_4LEVEL (1ull << 46)
static efi_system_table_t *sys_table; const efi_system_table_t *efi_system_table;
extern const bool efi_is64; extern const bool efi_is64;
extern u32 image_offset; extern u32 image_offset;
__pure efi_system_table_t *efi_system_table(void)
{
return sys_table;
}
__attribute_const__ bool efi_is_64bit(void) __attribute_const__ bool efi_is_64bit(void)
{ {
if (IS_ENABLED(CONFIG_EFI_MIXED)) if (IS_ENABLED(CONFIG_EFI_MIXED))
...@@ -227,7 +222,7 @@ static const efi_char16_t apple[] = L"Apple"; ...@@ -227,7 +222,7 @@ static const efi_char16_t apple[] = L"Apple";
static void setup_quirks(struct boot_params *boot_params) static void setup_quirks(struct boot_params *boot_params)
{ {
efi_char16_t *fw_vendor = (efi_char16_t *)(unsigned long) efi_char16_t *fw_vendor = (efi_char16_t *)(unsigned long)
efi_table_attr(efi_system_table(), fw_vendor); efi_table_attr(efi_system_table, fw_vendor);
if (!memcmp(fw_vendor, apple, sizeof(apple))) { if (!memcmp(fw_vendor, apple, sizeof(apple))) {
if (IS_ENABLED(CONFIG_APPLE_PROPERTIES)) if (IS_ENABLED(CONFIG_APPLE_PROPERTIES))
...@@ -377,10 +372,10 @@ efi_status_t __efiapi efi_pe_entry(efi_handle_t handle, ...@@ -377,10 +372,10 @@ efi_status_t __efiapi efi_pe_entry(efi_handle_t handle,
unsigned long ramdisk_addr; unsigned long ramdisk_addr;
unsigned long ramdisk_size; unsigned long ramdisk_size;
sys_table = sys_table_arg; efi_system_table = sys_table_arg;
/* Check if we were booted by the EFI firmware */ /* Check if we were booted by the EFI firmware */
if (sys_table->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE) if (efi_system_table->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE)
efi_exit(handle, EFI_INVALID_PARAMETER); efi_exit(handle, EFI_INVALID_PARAMETER);
status = efi_bs_call(handle_protocol, handle, &proto, (void **)&image); status = efi_bs_call(handle_protocol, handle, &proto, (void **)&image);
...@@ -446,7 +441,7 @@ efi_status_t __efiapi efi_pe_entry(efi_handle_t handle, ...@@ -446,7 +441,7 @@ efi_status_t __efiapi efi_pe_entry(efi_handle_t handle,
} }
} }
efi_stub_entry(handle, sys_table, boot_params); efi_stub_entry(handle, sys_table_arg, boot_params);
/* not reached */ /* not reached */
fail2: fail2:
...@@ -651,14 +646,14 @@ static efi_status_t exit_boot_func(struct efi_boot_memmap *map, ...@@ -651,14 +646,14 @@ static efi_status_t exit_boot_func(struct efi_boot_memmap *map,
: EFI32_LOADER_SIGNATURE; : EFI32_LOADER_SIGNATURE;
memcpy(&p->efi->efi_loader_signature, signature, sizeof(__u32)); memcpy(&p->efi->efi_loader_signature, signature, sizeof(__u32));
p->efi->efi_systab = (unsigned long)efi_system_table(); p->efi->efi_systab = (unsigned long)efi_system_table;
p->efi->efi_memdesc_size = *map->desc_size; p->efi->efi_memdesc_size = *map->desc_size;
p->efi->efi_memdesc_version = *map->desc_ver; p->efi->efi_memdesc_version = *map->desc_ver;
p->efi->efi_memmap = (unsigned long)*map->map; p->efi->efi_memmap = (unsigned long)*map->map;
p->efi->efi_memmap_size = *map->map_size; p->efi->efi_memmap_size = *map->map_size;
#ifdef CONFIG_X86_64 #ifdef CONFIG_X86_64
p->efi->efi_systab_hi = (unsigned long)efi_system_table() >> 32; p->efi->efi_systab_hi = (unsigned long)efi_system_table >> 32;
p->efi->efi_memmap_hi = (unsigned long)*map->map >> 32; p->efi->efi_memmap_hi = (unsigned long)*map->map >> 32;
#endif #endif
...@@ -719,10 +714,10 @@ unsigned long efi_main(efi_handle_t handle, ...@@ -719,10 +714,10 @@ unsigned long efi_main(efi_handle_t handle,
efi_status_t status; efi_status_t status;
unsigned long cmdline_paddr; unsigned long cmdline_paddr;
sys_table = sys_table_arg; efi_system_table = sys_table_arg;
/* Check if we were booted by the EFI firmware */ /* Check if we were booted by the EFI firmware */
if (sys_table->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE) if (efi_system_table->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE)
efi_exit(handle, EFI_INVALID_PARAMETER); efi_exit(handle, EFI_INVALID_PARAMETER);
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment