blob: d5de6df16d84bdc149a881098549d5f8082d9738 [file] [log] [blame]
Tom Rini70df9d62018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Graf4e0c1c12016-03-04 01:09:58 +01002/*
3 * EFI image loader
4 *
5 * based partly on wine code
6 *
7 * Copyright (c) 2016 Alexander Graf
Alexander Graf4e0c1c12016-03-04 01:09:58 +01008 */
9
10#include <common.h>
Simon Glass63334482019-11-14 12:57:39 -070011#include <cpu_func.h>
Alexander Graf4e0c1c12016-03-04 01:09:58 +010012#include <efi_loader.h>
13#include <pe.h>
Alexander Graf4e0c1c12016-03-04 01:09:58 +010014
Rob Clarkc84c1102017-09-13 18:05:38 -040015const efi_guid_t efi_global_variable_guid = EFI_GLOBAL_VARIABLE_GUID;
Heinrich Schuchardt788ad412019-04-20 07:39:11 +020016const efi_guid_t efi_guid_device_path = EFI_DEVICE_PATH_PROTOCOL_GUID;
17const efi_guid_t efi_guid_loaded_image = EFI_LOADED_IMAGE_PROTOCOL_GUID;
18const efi_guid_t efi_guid_loaded_image_device_path =
19 EFI_LOADED_IMAGE_DEVICE_PATH_PROTOCOL_GUID;
Rob Clark53142032017-09-13 18:05:34 -040020const efi_guid_t efi_simple_file_system_protocol_guid =
21 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID;
22const efi_guid_t efi_file_info_guid = EFI_FILE_INFO_GUID;
Alexander Graf4e0c1c12016-03-04 01:09:58 +010023
Ivan Gorinov749d5c12018-04-05 18:32:06 -070024static int machines[] = {
Alexander Graf8aec3082018-06-18 17:22:57 +020025#if defined(__aarch64__)
Ivan Gorinov749d5c12018-04-05 18:32:06 -070026 IMAGE_FILE_MACHINE_ARM64,
Alexander Graf8aec3082018-06-18 17:22:57 +020027#elif defined(__arm__)
Ivan Gorinov749d5c12018-04-05 18:32:06 -070028 IMAGE_FILE_MACHINE_ARM,
29 IMAGE_FILE_MACHINE_THUMB,
30 IMAGE_FILE_MACHINE_ARMNT,
31#endif
32
Alexander Graf8aec3082018-06-18 17:22:57 +020033#if defined(__x86_64__)
Ivan Gorinov749d5c12018-04-05 18:32:06 -070034 IMAGE_FILE_MACHINE_AMD64,
Alexander Graf8aec3082018-06-18 17:22:57 +020035#elif defined(__i386__)
Ivan Gorinov749d5c12018-04-05 18:32:06 -070036 IMAGE_FILE_MACHINE_I386,
37#endif
38
Alexander Graf8aec3082018-06-18 17:22:57 +020039#if defined(__riscv) && (__riscv_xlen == 32)
Ivan Gorinov749d5c12018-04-05 18:32:06 -070040 IMAGE_FILE_MACHINE_RISCV32,
41#endif
42
Alexander Graf8aec3082018-06-18 17:22:57 +020043#if defined(__riscv) && (__riscv_xlen == 64)
Ivan Gorinov749d5c12018-04-05 18:32:06 -070044 IMAGE_FILE_MACHINE_RISCV64,
45#endif
46 0 };
47
Heinrich Schuchardt0fcdb7a2019-02-16 15:22:13 +010048/**
49 * efi_print_image_info() - print information about a loaded image
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020050 *
51 * If the program counter is located within the image the offset to the base
52 * address is shown.
53 *
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +020054 * @obj: EFI object
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020055 * @image: loaded image
56 * @pc: program counter (use NULL to suppress offset output)
Heinrich Schuchardt0fcdb7a2019-02-16 15:22:13 +010057 * Return: status code
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020058 */
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +020059static efi_status_t efi_print_image_info(struct efi_loaded_image_obj *obj,
60 struct efi_loaded_image *image,
61 void *pc)
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020062{
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020063 printf("UEFI image");
64 printf(" [0x%p:0x%p]",
AKASHI Takahiro068879a2018-10-11 04:09:58 -070065 image->image_base, image->image_base + image->image_size - 1);
66 if (pc && pc >= image->image_base &&
67 pc < image->image_base + image->image_size)
68 printf(" pc=0x%zx", pc - image->image_base);
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020069 if (image->file_path)
70 printf(" '%pD'", image->file_path);
71 printf("\n");
72 return EFI_SUCCESS;
73}
74
Heinrich Schuchardt0fcdb7a2019-02-16 15:22:13 +010075/**
76 * efi_print_image_infos() - print information about all loaded images
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020077 *
78 * @pc: program counter (use NULL to suppress offset output)
79 */
80void efi_print_image_infos(void *pc)
81{
82 struct efi_object *efiobj;
83 struct efi_handler *handler;
84
85 list_for_each_entry(efiobj, &efi_obj_list, link) {
86 list_for_each_entry(handler, &efiobj->protocols, link) {
87 if (!guidcmp(handler->guid, &efi_guid_loaded_image)) {
88 efi_print_image_info(
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +020089 (struct efi_loaded_image_obj *)efiobj,
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020090 handler->protocol_interface, pc);
91 }
92 }
93 }
94}
95
Heinrich Schuchardt0fcdb7a2019-02-16 15:22:13 +010096/**
97 * efi_loader_relocate() - relocate UEFI binary
98 *
99 * @rel: pointer to the relocation table
100 * @rel_size: size of the relocation table in bytes
101 * @efi_reloc: actual load address of the image
102 * @pref_address: preferred load address of the image
103 * Return: status code
104 */
xypron.glpk@gmx.de6ec97d22017-07-04 00:12:58 +0200105static efi_status_t efi_loader_relocate(const IMAGE_BASE_RELOCATION *rel,
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700106 unsigned long rel_size, void *efi_reloc,
107 unsigned long pref_address)
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100108{
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700109 unsigned long delta = (unsigned long)efi_reloc - pref_address;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100110 const IMAGE_BASE_RELOCATION *end;
111 int i;
112
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700113 if (delta == 0)
114 return EFI_SUCCESS;
115
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100116 end = (const IMAGE_BASE_RELOCATION *)((const char *)rel + rel_size);
Heinrich Schuchardte9644cc2019-02-16 15:36:33 +0100117 while (rel < end && rel->SizeOfBlock) {
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100118 const uint16_t *relocs = (const uint16_t *)(rel + 1);
119 i = (rel->SizeOfBlock - sizeof(*rel)) / sizeof(uint16_t);
120 while (i--) {
Alexander Graf07032252016-08-18 23:45:18 +0200121 uint32_t offset = (uint32_t)(*relocs & 0xfff) +
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100122 rel->VirtualAddress;
123 int type = *relocs >> EFI_PAGE_SHIFT;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100124 uint64_t *x64 = efi_reloc + offset;
125 uint32_t *x32 = efi_reloc + offset;
126 uint16_t *x16 = efi_reloc + offset;
127
128 switch (type) {
129 case IMAGE_REL_BASED_ABSOLUTE:
130 break;
131 case IMAGE_REL_BASED_HIGH:
132 *x16 += ((uint32_t)delta) >> 16;
133 break;
134 case IMAGE_REL_BASED_LOW:
135 *x16 += (uint16_t)delta;
136 break;
137 case IMAGE_REL_BASED_HIGHLOW:
138 *x32 += (uint32_t)delta;
139 break;
140 case IMAGE_REL_BASED_DIR64:
141 *x64 += (uint64_t)delta;
142 break;
Alexander Graf71f91202018-06-05 19:20:32 +0200143#ifdef __riscv
144 case IMAGE_REL_BASED_RISCV_HI20:
145 *x32 = ((*x32 & 0xfffff000) + (uint32_t)delta) |
146 (*x32 & 0x00000fff);
147 break;
148 case IMAGE_REL_BASED_RISCV_LOW12I:
149 case IMAGE_REL_BASED_RISCV_LOW12S:
150 /* We know that we're 4k aligned */
151 if (delta & 0xfff) {
152 printf("Unsupported reloc offset\n");
153 return EFI_LOAD_ERROR;
154 }
155 break;
156#endif
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100157 default:
158 printf("Unknown Relocation off %x type %x\n",
159 offset, type);
xypron.glpk@gmx.de6ec97d22017-07-04 00:12:58 +0200160 return EFI_LOAD_ERROR;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100161 }
162 relocs++;
163 }
164 rel = (const IMAGE_BASE_RELOCATION *)relocs;
165 }
xypron.glpk@gmx.de6ec97d22017-07-04 00:12:58 +0200166 return EFI_SUCCESS;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100167}
168
169void __weak invalidate_icache_all(void)
170{
171 /* If the system doesn't support icache_all flush, cross our fingers */
172}
173
Heinrich Schuchardt0fcdb7a2019-02-16 15:22:13 +0100174/**
175 * efi_set_code_and_data_type() - determine the memory types to be used for code
176 * and data.
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100177 *
Heinrich Schuchardt0fcdb7a2019-02-16 15:22:13 +0100178 * @loaded_image_info: image descriptor
179 * @image_type: field Subsystem of the optional header for
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100180 * Windows specific field
181 */
182static void efi_set_code_and_data_type(
183 struct efi_loaded_image *loaded_image_info,
184 uint16_t image_type)
185{
186 switch (image_type) {
187 case IMAGE_SUBSYSTEM_EFI_APPLICATION:
188 loaded_image_info->image_code_type = EFI_LOADER_CODE;
189 loaded_image_info->image_data_type = EFI_LOADER_DATA;
190 break;
191 case IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER:
192 loaded_image_info->image_code_type = EFI_BOOT_SERVICES_CODE;
193 loaded_image_info->image_data_type = EFI_BOOT_SERVICES_DATA;
194 break;
195 case IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER:
Heinrich Schuchardt467fd7a2018-01-31 18:45:35 +0000196 case IMAGE_SUBSYSTEM_EFI_ROM:
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100197 loaded_image_info->image_code_type = EFI_RUNTIME_SERVICES_CODE;
198 loaded_image_info->image_data_type = EFI_RUNTIME_SERVICES_DATA;
199 break;
200 default:
201 printf("%s: invalid image type: %u\n", __func__, image_type);
202 /* Let's assume it is an application */
203 loaded_image_info->image_code_type = EFI_LOADER_CODE;
204 loaded_image_info->image_data_type = EFI_LOADER_DATA;
205 break;
206 }
207}
208
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100209/**
210 * efi_load_pe() - relocate EFI binary
211 *
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100212 * This function loads all sections from a PE binary into a newly reserved
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100213 * piece of memory. On success the entry point is returned as handle->entry.
214 *
215 * @handle: loaded image handle
216 * @efi: pointer to the EFI binary
217 * @loaded_image_info: loaded image protocol
218 * Return: status code
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100219 */
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100220efi_status_t efi_load_pe(struct efi_loaded_image_obj *handle, void *efi,
221 struct efi_loaded_image *loaded_image_info)
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100222{
223 IMAGE_NT_HEADERS32 *nt;
224 IMAGE_DOS_HEADER *dos;
225 IMAGE_SECTION_HEADER *sections;
226 int num_sections;
227 void *efi_reloc;
228 int i;
229 const IMAGE_BASE_RELOCATION *rel;
230 unsigned long rel_size;
231 int rel_idx = IMAGE_DIRECTORY_ENTRY_BASERELOC;
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700232 uint64_t image_base;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100233 unsigned long virt_size = 0;
Ivan Gorinov749d5c12018-04-05 18:32:06 -0700234 int supported = 0;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100235
236 dos = efi;
237 if (dos->e_magic != IMAGE_DOS_SIGNATURE) {
238 printf("%s: Invalid DOS Signature\n", __func__);
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100239 return EFI_LOAD_ERROR;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100240 }
241
242 nt = (void *) ((char *)efi + dos->e_lfanew);
243 if (nt->Signature != IMAGE_NT_SIGNATURE) {
244 printf("%s: Invalid NT Signature\n", __func__);
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100245 return EFI_LOAD_ERROR;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100246 }
247
Ivan Gorinov749d5c12018-04-05 18:32:06 -0700248 for (i = 0; machines[i]; i++)
249 if (machines[i] == nt->FileHeader.Machine) {
250 supported = 1;
251 break;
252 }
253
254 if (!supported) {
255 printf("%s: Machine type 0x%04x is not supported\n",
256 __func__, nt->FileHeader.Machine);
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100257 return EFI_LOAD_ERROR;
Ivan Gorinov749d5c12018-04-05 18:32:06 -0700258 }
259
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100260 /* Calculate upper virtual address boundary */
261 num_sections = nt->FileHeader.NumberOfSections;
262 sections = (void *)&nt->OptionalHeader +
263 nt->FileHeader.SizeOfOptionalHeader;
264
265 for (i = num_sections - 1; i >= 0; i--) {
266 IMAGE_SECTION_HEADER *sec = &sections[i];
267 virt_size = max_t(unsigned long, virt_size,
268 sec->VirtualAddress + sec->Misc.VirtualSize);
269 }
270
271 /* Read 32/64bit specific header bits */
Ivan Gorinov749d5c12018-04-05 18:32:06 -0700272 if (nt->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR64_MAGIC) {
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100273 IMAGE_NT_HEADERS64 *nt64 = (void *)nt;
274 IMAGE_OPTIONAL_HEADER64 *opt = &nt64->OptionalHeader;
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700275 image_base = opt->ImageBase;
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100276 efi_set_code_and_data_type(loaded_image_info, opt->Subsystem);
Heinrich Schuchardt37587522019-05-01 20:07:04 +0200277 handle->image_type = opt->Subsystem;
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100278 efi_reloc = efi_alloc(virt_size,
279 loaded_image_info->image_code_type);
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100280 if (!efi_reloc) {
Heinrich Schuchardtb10f2992017-12-22 19:16:57 +0100281 printf("%s: Could not allocate %lu bytes\n",
282 __func__, virt_size);
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100283 return EFI_OUT_OF_RESOURCES;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100284 }
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100285 handle->entry = efi_reloc + opt->AddressOfEntryPoint;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100286 rel_size = opt->DataDirectory[rel_idx].Size;
287 rel = efi_reloc + opt->DataDirectory[rel_idx].VirtualAddress;
Heinrich Schuchardt4c07b8e2018-04-03 22:29:32 +0200288 virt_size = ALIGN(virt_size, opt->SectionAlignment);
Ivan Gorinov749d5c12018-04-05 18:32:06 -0700289 } else if (nt->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR32_MAGIC) {
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100290 IMAGE_OPTIONAL_HEADER32 *opt = &nt->OptionalHeader;
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700291 image_base = opt->ImageBase;
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100292 efi_set_code_and_data_type(loaded_image_info, opt->Subsystem);
Heinrich Schuchardt37587522019-05-01 20:07:04 +0200293 handle->image_type = opt->Subsystem;
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100294 efi_reloc = efi_alloc(virt_size,
295 loaded_image_info->image_code_type);
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100296 if (!efi_reloc) {
Heinrich Schuchardtb10f2992017-12-22 19:16:57 +0100297 printf("%s: Could not allocate %lu bytes\n",
298 __func__, virt_size);
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100299 return EFI_OUT_OF_RESOURCES;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100300 }
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100301 handle->entry = efi_reloc + opt->AddressOfEntryPoint;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100302 rel_size = opt->DataDirectory[rel_idx].Size;
303 rel = efi_reloc + opt->DataDirectory[rel_idx].VirtualAddress;
Heinrich Schuchardt4c07b8e2018-04-03 22:29:32 +0200304 virt_size = ALIGN(virt_size, opt->SectionAlignment);
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100305 } else {
306 printf("%s: Invalid optional header magic %x\n", __func__,
307 nt->OptionalHeader.Magic);
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100308 return EFI_LOAD_ERROR;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100309 }
310
AKASHI Takahiro068879a2018-10-11 04:09:58 -0700311 /* Copy PE headers */
312 memcpy(efi_reloc, efi, sizeof(*dos) + sizeof(*nt)
313 + nt->FileHeader.SizeOfOptionalHeader
314 + num_sections * sizeof(IMAGE_SECTION_HEADER));
315
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100316 /* Load sections into RAM */
317 for (i = num_sections - 1; i >= 0; i--) {
318 IMAGE_SECTION_HEADER *sec = &sections[i];
319 memset(efi_reloc + sec->VirtualAddress, 0,
320 sec->Misc.VirtualSize);
321 memcpy(efi_reloc + sec->VirtualAddress,
322 efi + sec->PointerToRawData,
323 sec->SizeOfRawData);
324 }
325
326 /* Run through relocations */
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700327 if (efi_loader_relocate(rel, rel_size, efi_reloc,
328 (unsigned long)image_base) != EFI_SUCCESS) {
xypron.glpk@gmx.de6ec97d22017-07-04 00:12:58 +0200329 efi_free_pages((uintptr_t) efi_reloc,
330 (virt_size + EFI_PAGE_MASK) >> EFI_PAGE_SHIFT);
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100331 return EFI_LOAD_ERROR;
xypron.glpk@gmx.de6ec97d22017-07-04 00:12:58 +0200332 }
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100333
334 /* Flush cache */
Simon Glassd25bb302016-11-07 08:47:04 -0700335 flush_cache((ulong)efi_reloc,
Alexander Graf59254d62018-04-23 07:59:47 +0200336 ALIGN(virt_size, EFI_CACHELINE_SIZE));
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100337 invalidate_icache_all();
338
339 /* Populate the loaded image interface bits */
AKASHI Takahiro068879a2018-10-11 04:09:58 -0700340 loaded_image_info->image_base = efi_reloc;
341 loaded_image_info->image_size = virt_size;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100342
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100343 return EFI_SUCCESS;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100344}