Tom Rini | 70df9d6 | 2018-05-07 17:02:21 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 2 | /* |
| 3 | * EFI image loader |
| 4 | * |
| 5 | * based partly on wine code |
| 6 | * |
| 7 | * Copyright (c) 2016 Alexander Graf |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | #include <efi_loader.h> |
| 12 | #include <pe.h> |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 13 | |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 14 | const efi_guid_t efi_global_variable_guid = EFI_GLOBAL_VARIABLE_GUID; |
Heinrich Schuchardt | 788ad41 | 2019-04-20 07:39:11 +0200 | [diff] [blame] | 15 | const efi_guid_t efi_guid_device_path = EFI_DEVICE_PATH_PROTOCOL_GUID; |
| 16 | const efi_guid_t efi_guid_loaded_image = EFI_LOADED_IMAGE_PROTOCOL_GUID; |
| 17 | const efi_guid_t efi_guid_loaded_image_device_path = |
| 18 | EFI_LOADED_IMAGE_DEVICE_PATH_PROTOCOL_GUID; |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 19 | const efi_guid_t efi_simple_file_system_protocol_guid = |
| 20 | EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID; |
| 21 | const efi_guid_t efi_file_info_guid = EFI_FILE_INFO_GUID; |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 22 | |
Ivan Gorinov | 749d5c1 | 2018-04-05 18:32:06 -0700 | [diff] [blame] | 23 | static int machines[] = { |
Alexander Graf | 8aec308 | 2018-06-18 17:22:57 +0200 | [diff] [blame] | 24 | #if defined(__aarch64__) |
Ivan Gorinov | 749d5c1 | 2018-04-05 18:32:06 -0700 | [diff] [blame] | 25 | IMAGE_FILE_MACHINE_ARM64, |
Alexander Graf | 8aec308 | 2018-06-18 17:22:57 +0200 | [diff] [blame] | 26 | #elif defined(__arm__) |
Ivan Gorinov | 749d5c1 | 2018-04-05 18:32:06 -0700 | [diff] [blame] | 27 | IMAGE_FILE_MACHINE_ARM, |
| 28 | IMAGE_FILE_MACHINE_THUMB, |
| 29 | IMAGE_FILE_MACHINE_ARMNT, |
| 30 | #endif |
| 31 | |
Alexander Graf | 8aec308 | 2018-06-18 17:22:57 +0200 | [diff] [blame] | 32 | #if defined(__x86_64__) |
Ivan Gorinov | 749d5c1 | 2018-04-05 18:32:06 -0700 | [diff] [blame] | 33 | IMAGE_FILE_MACHINE_AMD64, |
Alexander Graf | 8aec308 | 2018-06-18 17:22:57 +0200 | [diff] [blame] | 34 | #elif defined(__i386__) |
Ivan Gorinov | 749d5c1 | 2018-04-05 18:32:06 -0700 | [diff] [blame] | 35 | IMAGE_FILE_MACHINE_I386, |
| 36 | #endif |
| 37 | |
Alexander Graf | 8aec308 | 2018-06-18 17:22:57 +0200 | [diff] [blame] | 38 | #if defined(__riscv) && (__riscv_xlen == 32) |
Ivan Gorinov | 749d5c1 | 2018-04-05 18:32:06 -0700 | [diff] [blame] | 39 | IMAGE_FILE_MACHINE_RISCV32, |
| 40 | #endif |
| 41 | |
Alexander Graf | 8aec308 | 2018-06-18 17:22:57 +0200 | [diff] [blame] | 42 | #if defined(__riscv) && (__riscv_xlen == 64) |
Ivan Gorinov | 749d5c1 | 2018-04-05 18:32:06 -0700 | [diff] [blame] | 43 | IMAGE_FILE_MACHINE_RISCV64, |
| 44 | #endif |
| 45 | 0 }; |
| 46 | |
Heinrich Schuchardt | 0fcdb7a | 2019-02-16 15:22:13 +0100 | [diff] [blame] | 47 | /** |
| 48 | * efi_print_image_info() - print information about a loaded image |
Heinrich Schuchardt | 83d96b7 | 2018-04-05 11:56:21 +0200 | [diff] [blame] | 49 | * |
| 50 | * If the program counter is located within the image the offset to the base |
| 51 | * address is shown. |
| 52 | * |
Heinrich Schuchardt | 3c3a735 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 53 | * @obj: EFI object |
Heinrich Schuchardt | 83d96b7 | 2018-04-05 11:56:21 +0200 | [diff] [blame] | 54 | * @image: loaded image |
| 55 | * @pc: program counter (use NULL to suppress offset output) |
Heinrich Schuchardt | 0fcdb7a | 2019-02-16 15:22:13 +0100 | [diff] [blame] | 56 | * Return: status code |
Heinrich Schuchardt | 83d96b7 | 2018-04-05 11:56:21 +0200 | [diff] [blame] | 57 | */ |
Heinrich Schuchardt | 3c3a735 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 58 | static efi_status_t efi_print_image_info(struct efi_loaded_image_obj *obj, |
| 59 | struct efi_loaded_image *image, |
| 60 | void *pc) |
Heinrich Schuchardt | 83d96b7 | 2018-04-05 11:56:21 +0200 | [diff] [blame] | 61 | { |
Heinrich Schuchardt | 83d96b7 | 2018-04-05 11:56:21 +0200 | [diff] [blame] | 62 | printf("UEFI image"); |
| 63 | printf(" [0x%p:0x%p]", |
AKASHI Takahiro | 068879a | 2018-10-11 04:09:58 -0700 | [diff] [blame] | 64 | image->image_base, image->image_base + image->image_size - 1); |
| 65 | if (pc && pc >= image->image_base && |
| 66 | pc < image->image_base + image->image_size) |
| 67 | printf(" pc=0x%zx", pc - image->image_base); |
Heinrich Schuchardt | 83d96b7 | 2018-04-05 11:56:21 +0200 | [diff] [blame] | 68 | if (image->file_path) |
| 69 | printf(" '%pD'", image->file_path); |
| 70 | printf("\n"); |
| 71 | return EFI_SUCCESS; |
| 72 | } |
| 73 | |
Heinrich Schuchardt | 0fcdb7a | 2019-02-16 15:22:13 +0100 | [diff] [blame] | 74 | /** |
| 75 | * efi_print_image_infos() - print information about all loaded images |
Heinrich Schuchardt | 83d96b7 | 2018-04-05 11:56:21 +0200 | [diff] [blame] | 76 | * |
| 77 | * @pc: program counter (use NULL to suppress offset output) |
| 78 | */ |
| 79 | void efi_print_image_infos(void *pc) |
| 80 | { |
| 81 | struct efi_object *efiobj; |
| 82 | struct efi_handler *handler; |
| 83 | |
| 84 | list_for_each_entry(efiobj, &efi_obj_list, link) { |
| 85 | list_for_each_entry(handler, &efiobj->protocols, link) { |
| 86 | if (!guidcmp(handler->guid, &efi_guid_loaded_image)) { |
| 87 | efi_print_image_info( |
Heinrich Schuchardt | 3c3a735 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 88 | (struct efi_loaded_image_obj *)efiobj, |
Heinrich Schuchardt | 83d96b7 | 2018-04-05 11:56:21 +0200 | [diff] [blame] | 89 | handler->protocol_interface, pc); |
| 90 | } |
| 91 | } |
| 92 | } |
| 93 | } |
| 94 | |
Heinrich Schuchardt | 0fcdb7a | 2019-02-16 15:22:13 +0100 | [diff] [blame] | 95 | /** |
| 96 | * efi_loader_relocate() - relocate UEFI binary |
| 97 | * |
| 98 | * @rel: pointer to the relocation table |
| 99 | * @rel_size: size of the relocation table in bytes |
| 100 | * @efi_reloc: actual load address of the image |
| 101 | * @pref_address: preferred load address of the image |
| 102 | * Return: status code |
| 103 | */ |
xypron.glpk@gmx.de | 6ec97d2 | 2017-07-04 00:12:58 +0200 | [diff] [blame] | 104 | static efi_status_t efi_loader_relocate(const IMAGE_BASE_RELOCATION *rel, |
Ivan Gorinov | c7270bc | 2018-05-02 16:36:02 -0700 | [diff] [blame] | 105 | unsigned long rel_size, void *efi_reloc, |
| 106 | unsigned long pref_address) |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 107 | { |
Ivan Gorinov | c7270bc | 2018-05-02 16:36:02 -0700 | [diff] [blame] | 108 | unsigned long delta = (unsigned long)efi_reloc - pref_address; |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 109 | const IMAGE_BASE_RELOCATION *end; |
| 110 | int i; |
| 111 | |
Ivan Gorinov | c7270bc | 2018-05-02 16:36:02 -0700 | [diff] [blame] | 112 | if (delta == 0) |
| 113 | return EFI_SUCCESS; |
| 114 | |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 115 | end = (const IMAGE_BASE_RELOCATION *)((const char *)rel + rel_size); |
Heinrich Schuchardt | e9644cc | 2019-02-16 15:36:33 +0100 | [diff] [blame] | 116 | while (rel < end && rel->SizeOfBlock) { |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 117 | const uint16_t *relocs = (const uint16_t *)(rel + 1); |
| 118 | i = (rel->SizeOfBlock - sizeof(*rel)) / sizeof(uint16_t); |
| 119 | while (i--) { |
Alexander Graf | 0703225 | 2016-08-18 23:45:18 +0200 | [diff] [blame] | 120 | uint32_t offset = (uint32_t)(*relocs & 0xfff) + |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 121 | rel->VirtualAddress; |
| 122 | int type = *relocs >> EFI_PAGE_SHIFT; |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 123 | uint64_t *x64 = efi_reloc + offset; |
| 124 | uint32_t *x32 = efi_reloc + offset; |
| 125 | uint16_t *x16 = efi_reloc + offset; |
| 126 | |
| 127 | switch (type) { |
| 128 | case IMAGE_REL_BASED_ABSOLUTE: |
| 129 | break; |
| 130 | case IMAGE_REL_BASED_HIGH: |
| 131 | *x16 += ((uint32_t)delta) >> 16; |
| 132 | break; |
| 133 | case IMAGE_REL_BASED_LOW: |
| 134 | *x16 += (uint16_t)delta; |
| 135 | break; |
| 136 | case IMAGE_REL_BASED_HIGHLOW: |
| 137 | *x32 += (uint32_t)delta; |
| 138 | break; |
| 139 | case IMAGE_REL_BASED_DIR64: |
| 140 | *x64 += (uint64_t)delta; |
| 141 | break; |
Alexander Graf | 71f9120 | 2018-06-05 19:20:32 +0200 | [diff] [blame] | 142 | #ifdef __riscv |
| 143 | case IMAGE_REL_BASED_RISCV_HI20: |
| 144 | *x32 = ((*x32 & 0xfffff000) + (uint32_t)delta) | |
| 145 | (*x32 & 0x00000fff); |
| 146 | break; |
| 147 | case IMAGE_REL_BASED_RISCV_LOW12I: |
| 148 | case IMAGE_REL_BASED_RISCV_LOW12S: |
| 149 | /* We know that we're 4k aligned */ |
| 150 | if (delta & 0xfff) { |
| 151 | printf("Unsupported reloc offset\n"); |
| 152 | return EFI_LOAD_ERROR; |
| 153 | } |
| 154 | break; |
| 155 | #endif |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 156 | default: |
| 157 | printf("Unknown Relocation off %x type %x\n", |
| 158 | offset, type); |
xypron.glpk@gmx.de | 6ec97d2 | 2017-07-04 00:12:58 +0200 | [diff] [blame] | 159 | return EFI_LOAD_ERROR; |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 160 | } |
| 161 | relocs++; |
| 162 | } |
| 163 | rel = (const IMAGE_BASE_RELOCATION *)relocs; |
| 164 | } |
xypron.glpk@gmx.de | 6ec97d2 | 2017-07-04 00:12:58 +0200 | [diff] [blame] | 165 | return EFI_SUCCESS; |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | void __weak invalidate_icache_all(void) |
| 169 | { |
| 170 | /* If the system doesn't support icache_all flush, cross our fingers */ |
| 171 | } |
| 172 | |
Heinrich Schuchardt | 0fcdb7a | 2019-02-16 15:22:13 +0100 | [diff] [blame] | 173 | /** |
| 174 | * efi_set_code_and_data_type() - determine the memory types to be used for code |
| 175 | * and data. |
Heinrich Schuchardt | faef0e7 | 2018-01-19 20:24:41 +0100 | [diff] [blame] | 176 | * |
Heinrich Schuchardt | 0fcdb7a | 2019-02-16 15:22:13 +0100 | [diff] [blame] | 177 | * @loaded_image_info: image descriptor |
| 178 | * @image_type: field Subsystem of the optional header for |
Heinrich Schuchardt | faef0e7 | 2018-01-19 20:24:41 +0100 | [diff] [blame] | 179 | * Windows specific field |
| 180 | */ |
| 181 | static void efi_set_code_and_data_type( |
| 182 | struct efi_loaded_image *loaded_image_info, |
| 183 | uint16_t image_type) |
| 184 | { |
| 185 | switch (image_type) { |
| 186 | case IMAGE_SUBSYSTEM_EFI_APPLICATION: |
| 187 | loaded_image_info->image_code_type = EFI_LOADER_CODE; |
| 188 | loaded_image_info->image_data_type = EFI_LOADER_DATA; |
| 189 | break; |
| 190 | case IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER: |
| 191 | loaded_image_info->image_code_type = EFI_BOOT_SERVICES_CODE; |
| 192 | loaded_image_info->image_data_type = EFI_BOOT_SERVICES_DATA; |
| 193 | break; |
| 194 | case IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER: |
Heinrich Schuchardt | 467fd7a | 2018-01-31 18:45:35 +0000 | [diff] [blame] | 195 | case IMAGE_SUBSYSTEM_EFI_ROM: |
Heinrich Schuchardt | faef0e7 | 2018-01-19 20:24:41 +0100 | [diff] [blame] | 196 | loaded_image_info->image_code_type = EFI_RUNTIME_SERVICES_CODE; |
| 197 | loaded_image_info->image_data_type = EFI_RUNTIME_SERVICES_DATA; |
| 198 | break; |
| 199 | default: |
| 200 | printf("%s: invalid image type: %u\n", __func__, image_type); |
| 201 | /* Let's assume it is an application */ |
| 202 | loaded_image_info->image_code_type = EFI_LOADER_CODE; |
| 203 | loaded_image_info->image_data_type = EFI_LOADER_DATA; |
| 204 | break; |
| 205 | } |
| 206 | } |
| 207 | |
Heinrich Schuchardt | 408fbcc | 2018-12-26 12:49:09 +0100 | [diff] [blame] | 208 | /** |
| 209 | * efi_load_pe() - relocate EFI binary |
| 210 | * |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 211 | * This function loads all sections from a PE binary into a newly reserved |
Heinrich Schuchardt | 408fbcc | 2018-12-26 12:49:09 +0100 | [diff] [blame] | 212 | * piece of memory. On success the entry point is returned as handle->entry. |
| 213 | * |
| 214 | * @handle: loaded image handle |
| 215 | * @efi: pointer to the EFI binary |
| 216 | * @loaded_image_info: loaded image protocol |
| 217 | * Return: status code |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 218 | */ |
Heinrich Schuchardt | 408fbcc | 2018-12-26 12:49:09 +0100 | [diff] [blame] | 219 | efi_status_t efi_load_pe(struct efi_loaded_image_obj *handle, void *efi, |
| 220 | struct efi_loaded_image *loaded_image_info) |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 221 | { |
| 222 | IMAGE_NT_HEADERS32 *nt; |
| 223 | IMAGE_DOS_HEADER *dos; |
| 224 | IMAGE_SECTION_HEADER *sections; |
| 225 | int num_sections; |
| 226 | void *efi_reloc; |
| 227 | int i; |
| 228 | const IMAGE_BASE_RELOCATION *rel; |
| 229 | unsigned long rel_size; |
| 230 | int rel_idx = IMAGE_DIRECTORY_ENTRY_BASERELOC; |
Ivan Gorinov | c7270bc | 2018-05-02 16:36:02 -0700 | [diff] [blame] | 231 | uint64_t image_base; |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 232 | unsigned long virt_size = 0; |
Ivan Gorinov | 749d5c1 | 2018-04-05 18:32:06 -0700 | [diff] [blame] | 233 | int supported = 0; |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 234 | |
| 235 | dos = efi; |
| 236 | if (dos->e_magic != IMAGE_DOS_SIGNATURE) { |
| 237 | printf("%s: Invalid DOS Signature\n", __func__); |
Heinrich Schuchardt | 408fbcc | 2018-12-26 12:49:09 +0100 | [diff] [blame] | 238 | return EFI_LOAD_ERROR; |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | nt = (void *) ((char *)efi + dos->e_lfanew); |
| 242 | if (nt->Signature != IMAGE_NT_SIGNATURE) { |
| 243 | printf("%s: Invalid NT Signature\n", __func__); |
Heinrich Schuchardt | 408fbcc | 2018-12-26 12:49:09 +0100 | [diff] [blame] | 244 | return EFI_LOAD_ERROR; |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 245 | } |
| 246 | |
Ivan Gorinov | 749d5c1 | 2018-04-05 18:32:06 -0700 | [diff] [blame] | 247 | for (i = 0; machines[i]; i++) |
| 248 | if (machines[i] == nt->FileHeader.Machine) { |
| 249 | supported = 1; |
| 250 | break; |
| 251 | } |
| 252 | |
| 253 | if (!supported) { |
| 254 | printf("%s: Machine type 0x%04x is not supported\n", |
| 255 | __func__, nt->FileHeader.Machine); |
Heinrich Schuchardt | 408fbcc | 2018-12-26 12:49:09 +0100 | [diff] [blame] | 256 | return EFI_LOAD_ERROR; |
Ivan Gorinov | 749d5c1 | 2018-04-05 18:32:06 -0700 | [diff] [blame] | 257 | } |
| 258 | |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 259 | /* Calculate upper virtual address boundary */ |
| 260 | num_sections = nt->FileHeader.NumberOfSections; |
| 261 | sections = (void *)&nt->OptionalHeader + |
| 262 | nt->FileHeader.SizeOfOptionalHeader; |
| 263 | |
| 264 | for (i = num_sections - 1; i >= 0; i--) { |
| 265 | IMAGE_SECTION_HEADER *sec = §ions[i]; |
| 266 | virt_size = max_t(unsigned long, virt_size, |
| 267 | sec->VirtualAddress + sec->Misc.VirtualSize); |
| 268 | } |
| 269 | |
| 270 | /* Read 32/64bit specific header bits */ |
Ivan Gorinov | 749d5c1 | 2018-04-05 18:32:06 -0700 | [diff] [blame] | 271 | if (nt->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR64_MAGIC) { |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 272 | IMAGE_NT_HEADERS64 *nt64 = (void *)nt; |
| 273 | IMAGE_OPTIONAL_HEADER64 *opt = &nt64->OptionalHeader; |
Ivan Gorinov | c7270bc | 2018-05-02 16:36:02 -0700 | [diff] [blame] | 274 | image_base = opt->ImageBase; |
Heinrich Schuchardt | faef0e7 | 2018-01-19 20:24:41 +0100 | [diff] [blame] | 275 | efi_set_code_and_data_type(loaded_image_info, opt->Subsystem); |
| 276 | efi_reloc = efi_alloc(virt_size, |
| 277 | loaded_image_info->image_code_type); |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 278 | if (!efi_reloc) { |
Heinrich Schuchardt | b10f299 | 2017-12-22 19:16:57 +0100 | [diff] [blame] | 279 | printf("%s: Could not allocate %lu bytes\n", |
| 280 | __func__, virt_size); |
Heinrich Schuchardt | 408fbcc | 2018-12-26 12:49:09 +0100 | [diff] [blame] | 281 | return EFI_OUT_OF_RESOURCES; |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 282 | } |
Heinrich Schuchardt | 408fbcc | 2018-12-26 12:49:09 +0100 | [diff] [blame] | 283 | handle->entry = efi_reloc + opt->AddressOfEntryPoint; |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 284 | rel_size = opt->DataDirectory[rel_idx].Size; |
| 285 | rel = efi_reloc + opt->DataDirectory[rel_idx].VirtualAddress; |
Heinrich Schuchardt | 4c07b8e | 2018-04-03 22:29:32 +0200 | [diff] [blame] | 286 | virt_size = ALIGN(virt_size, opt->SectionAlignment); |
Ivan Gorinov | 749d5c1 | 2018-04-05 18:32:06 -0700 | [diff] [blame] | 287 | } else if (nt->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR32_MAGIC) { |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 288 | IMAGE_OPTIONAL_HEADER32 *opt = &nt->OptionalHeader; |
Ivan Gorinov | c7270bc | 2018-05-02 16:36:02 -0700 | [diff] [blame] | 289 | image_base = opt->ImageBase; |
Heinrich Schuchardt | faef0e7 | 2018-01-19 20:24:41 +0100 | [diff] [blame] | 290 | efi_set_code_and_data_type(loaded_image_info, opt->Subsystem); |
| 291 | efi_reloc = efi_alloc(virt_size, |
| 292 | loaded_image_info->image_code_type); |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 293 | if (!efi_reloc) { |
Heinrich Schuchardt | b10f299 | 2017-12-22 19:16:57 +0100 | [diff] [blame] | 294 | printf("%s: Could not allocate %lu bytes\n", |
| 295 | __func__, virt_size); |
Heinrich Schuchardt | 408fbcc | 2018-12-26 12:49:09 +0100 | [diff] [blame] | 296 | return EFI_OUT_OF_RESOURCES; |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 297 | } |
Heinrich Schuchardt | 408fbcc | 2018-12-26 12:49:09 +0100 | [diff] [blame] | 298 | handle->entry = efi_reloc + opt->AddressOfEntryPoint; |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 299 | rel_size = opt->DataDirectory[rel_idx].Size; |
| 300 | rel = efi_reloc + opt->DataDirectory[rel_idx].VirtualAddress; |
Heinrich Schuchardt | 4c07b8e | 2018-04-03 22:29:32 +0200 | [diff] [blame] | 301 | virt_size = ALIGN(virt_size, opt->SectionAlignment); |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 302 | } else { |
| 303 | printf("%s: Invalid optional header magic %x\n", __func__, |
| 304 | nt->OptionalHeader.Magic); |
Heinrich Schuchardt | 408fbcc | 2018-12-26 12:49:09 +0100 | [diff] [blame] | 305 | return EFI_LOAD_ERROR; |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 306 | } |
| 307 | |
AKASHI Takahiro | 068879a | 2018-10-11 04:09:58 -0700 | [diff] [blame] | 308 | /* Copy PE headers */ |
| 309 | memcpy(efi_reloc, efi, sizeof(*dos) + sizeof(*nt) |
| 310 | + nt->FileHeader.SizeOfOptionalHeader |
| 311 | + num_sections * sizeof(IMAGE_SECTION_HEADER)); |
| 312 | |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 313 | /* Load sections into RAM */ |
| 314 | for (i = num_sections - 1; i >= 0; i--) { |
| 315 | IMAGE_SECTION_HEADER *sec = §ions[i]; |
| 316 | memset(efi_reloc + sec->VirtualAddress, 0, |
| 317 | sec->Misc.VirtualSize); |
| 318 | memcpy(efi_reloc + sec->VirtualAddress, |
| 319 | efi + sec->PointerToRawData, |
| 320 | sec->SizeOfRawData); |
| 321 | } |
| 322 | |
| 323 | /* Run through relocations */ |
Ivan Gorinov | c7270bc | 2018-05-02 16:36:02 -0700 | [diff] [blame] | 324 | if (efi_loader_relocate(rel, rel_size, efi_reloc, |
| 325 | (unsigned long)image_base) != EFI_SUCCESS) { |
xypron.glpk@gmx.de | 6ec97d2 | 2017-07-04 00:12:58 +0200 | [diff] [blame] | 326 | efi_free_pages((uintptr_t) efi_reloc, |
| 327 | (virt_size + EFI_PAGE_MASK) >> EFI_PAGE_SHIFT); |
Heinrich Schuchardt | 408fbcc | 2018-12-26 12:49:09 +0100 | [diff] [blame] | 328 | return EFI_LOAD_ERROR; |
xypron.glpk@gmx.de | 6ec97d2 | 2017-07-04 00:12:58 +0200 | [diff] [blame] | 329 | } |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 330 | |
| 331 | /* Flush cache */ |
Simon Glass | d25bb30 | 2016-11-07 08:47:04 -0700 | [diff] [blame] | 332 | flush_cache((ulong)efi_reloc, |
Alexander Graf | 59254d6 | 2018-04-23 07:59:47 +0200 | [diff] [blame] | 333 | ALIGN(virt_size, EFI_CACHELINE_SIZE)); |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 334 | invalidate_icache_all(); |
| 335 | |
| 336 | /* Populate the loaded image interface bits */ |
AKASHI Takahiro | 068879a | 2018-10-11 04:09:58 -0700 | [diff] [blame] | 337 | loaded_image_info->image_base = efi_reloc; |
| 338 | loaded_image_info->image_size = virt_size; |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 339 | |
Heinrich Schuchardt | 408fbcc | 2018-12-26 12:49:09 +0100 | [diff] [blame] | 340 | return EFI_SUCCESS; |
Alexander Graf | 4e0c1c1 | 2016-03-04 01:09:58 +0100 | [diff] [blame] | 341 | } |