blob: a18ce0a5705eb887c04f45ad84762158e56b1416 [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>
11#include <efi_loader.h>
12#include <pe.h>
Alexander Graf4e0c1c12016-03-04 01:09:58 +010013
Rob Clarkc84c1102017-09-13 18:05:38 -040014const efi_guid_t efi_global_variable_guid = EFI_GLOBAL_VARIABLE_GUID;
Alexander Graf4e0c1c12016-03-04 01:09:58 +010015const efi_guid_t efi_guid_device_path = DEVICE_PATH_GUID;
16const efi_guid_t efi_guid_loaded_image = LOADED_IMAGE_GUID;
Rob Clark53142032017-09-13 18:05:34 -040017const efi_guid_t efi_simple_file_system_protocol_guid =
18 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID;
19const efi_guid_t efi_file_info_guid = EFI_FILE_INFO_GUID;
Alexander Graf4e0c1c12016-03-04 01:09:58 +010020
Ivan Gorinov749d5c12018-04-05 18:32:06 -070021static int machines[] = {
Alexander Graf8aec3082018-06-18 17:22:57 +020022#if defined(__aarch64__)
Ivan Gorinov749d5c12018-04-05 18:32:06 -070023 IMAGE_FILE_MACHINE_ARM64,
Alexander Graf8aec3082018-06-18 17:22:57 +020024#elif defined(__arm__)
Ivan Gorinov749d5c12018-04-05 18:32:06 -070025 IMAGE_FILE_MACHINE_ARM,
26 IMAGE_FILE_MACHINE_THUMB,
27 IMAGE_FILE_MACHINE_ARMNT,
28#endif
29
Alexander Graf8aec3082018-06-18 17:22:57 +020030#if defined(__x86_64__)
Ivan Gorinov749d5c12018-04-05 18:32:06 -070031 IMAGE_FILE_MACHINE_AMD64,
Alexander Graf8aec3082018-06-18 17:22:57 +020032#elif defined(__i386__)
Ivan Gorinov749d5c12018-04-05 18:32:06 -070033 IMAGE_FILE_MACHINE_I386,
34#endif
35
Alexander Graf8aec3082018-06-18 17:22:57 +020036#if defined(__riscv) && (__riscv_xlen == 32)
Ivan Gorinov749d5c12018-04-05 18:32:06 -070037 IMAGE_FILE_MACHINE_RISCV32,
38#endif
39
Alexander Graf8aec3082018-06-18 17:22:57 +020040#if defined(__riscv) && (__riscv_xlen == 64)
Ivan Gorinov749d5c12018-04-05 18:32:06 -070041 IMAGE_FILE_MACHINE_RISCV64,
42#endif
43 0 };
44
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020045/*
46 * Print information about a loaded image.
47 *
48 * If the program counter is located within the image the offset to the base
49 * address is shown.
50 *
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +020051 * @obj: EFI object
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020052 * @image: loaded image
53 * @pc: program counter (use NULL to suppress offset output)
54 * @return: status code
55 */
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +020056static efi_status_t efi_print_image_info(struct efi_loaded_image_obj *obj,
57 struct efi_loaded_image *image,
58 void *pc)
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020059{
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020060 printf("UEFI image");
61 printf(" [0x%p:0x%p]",
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +020062 obj->reloc_base, obj->reloc_base + obj->reloc_size - 1);
63 if (pc && pc >= obj->reloc_base &&
64 pc < obj->reloc_base + obj->reloc_size)
65 printf(" pc=0x%zx", pc - obj->reloc_base);
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020066 if (image->file_path)
67 printf(" '%pD'", image->file_path);
68 printf("\n");
69 return EFI_SUCCESS;
70}
71
72/*
73 * Print information about all loaded images.
74 *
75 * @pc: program counter (use NULL to suppress offset output)
76 */
77void efi_print_image_infos(void *pc)
78{
79 struct efi_object *efiobj;
80 struct efi_handler *handler;
81
82 list_for_each_entry(efiobj, &efi_obj_list, link) {
83 list_for_each_entry(handler, &efiobj->protocols, link) {
84 if (!guidcmp(handler->guid, &efi_guid_loaded_image)) {
85 efi_print_image_info(
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +020086 (struct efi_loaded_image_obj *)efiobj,
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020087 handler->protocol_interface, pc);
88 }
89 }
90 }
91}
92
xypron.glpk@gmx.de6ec97d22017-07-04 00:12:58 +020093static efi_status_t efi_loader_relocate(const IMAGE_BASE_RELOCATION *rel,
Ivan Gorinovc7270bc2018-05-02 16:36:02 -070094 unsigned long rel_size, void *efi_reloc,
95 unsigned long pref_address)
Alexander Graf4e0c1c12016-03-04 01:09:58 +010096{
Ivan Gorinovc7270bc2018-05-02 16:36:02 -070097 unsigned long delta = (unsigned long)efi_reloc - pref_address;
Alexander Graf4e0c1c12016-03-04 01:09:58 +010098 const IMAGE_BASE_RELOCATION *end;
99 int i;
100
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700101 if (delta == 0)
102 return EFI_SUCCESS;
103
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100104 end = (const IMAGE_BASE_RELOCATION *)((const char *)rel + rel_size);
105 while (rel < end - 1 && rel->SizeOfBlock) {
106 const uint16_t *relocs = (const uint16_t *)(rel + 1);
107 i = (rel->SizeOfBlock - sizeof(*rel)) / sizeof(uint16_t);
108 while (i--) {
Alexander Graf07032252016-08-18 23:45:18 +0200109 uint32_t offset = (uint32_t)(*relocs & 0xfff) +
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100110 rel->VirtualAddress;
111 int type = *relocs >> EFI_PAGE_SHIFT;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100112 uint64_t *x64 = efi_reloc + offset;
113 uint32_t *x32 = efi_reloc + offset;
114 uint16_t *x16 = efi_reloc + offset;
115
116 switch (type) {
117 case IMAGE_REL_BASED_ABSOLUTE:
118 break;
119 case IMAGE_REL_BASED_HIGH:
120 *x16 += ((uint32_t)delta) >> 16;
121 break;
122 case IMAGE_REL_BASED_LOW:
123 *x16 += (uint16_t)delta;
124 break;
125 case IMAGE_REL_BASED_HIGHLOW:
126 *x32 += (uint32_t)delta;
127 break;
128 case IMAGE_REL_BASED_DIR64:
129 *x64 += (uint64_t)delta;
130 break;
Alexander Graf71f91202018-06-05 19:20:32 +0200131#ifdef __riscv
132 case IMAGE_REL_BASED_RISCV_HI20:
133 *x32 = ((*x32 & 0xfffff000) + (uint32_t)delta) |
134 (*x32 & 0x00000fff);
135 break;
136 case IMAGE_REL_BASED_RISCV_LOW12I:
137 case IMAGE_REL_BASED_RISCV_LOW12S:
138 /* We know that we're 4k aligned */
139 if (delta & 0xfff) {
140 printf("Unsupported reloc offset\n");
141 return EFI_LOAD_ERROR;
142 }
143 break;
144#endif
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100145 default:
146 printf("Unknown Relocation off %x type %x\n",
147 offset, type);
xypron.glpk@gmx.de6ec97d22017-07-04 00:12:58 +0200148 return EFI_LOAD_ERROR;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100149 }
150 relocs++;
151 }
152 rel = (const IMAGE_BASE_RELOCATION *)relocs;
153 }
xypron.glpk@gmx.de6ec97d22017-07-04 00:12:58 +0200154 return EFI_SUCCESS;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100155}
156
157void __weak invalidate_icache_all(void)
158{
159 /* If the system doesn't support icache_all flush, cross our fingers */
160}
161
162/*
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100163 * Determine the memory types to be used for code and data.
164 *
165 * @loaded_image_info image descriptor
166 * @image_type field Subsystem of the optional header for
167 * Windows specific field
168 */
169static void efi_set_code_and_data_type(
170 struct efi_loaded_image *loaded_image_info,
171 uint16_t image_type)
172{
173 switch (image_type) {
174 case IMAGE_SUBSYSTEM_EFI_APPLICATION:
175 loaded_image_info->image_code_type = EFI_LOADER_CODE;
176 loaded_image_info->image_data_type = EFI_LOADER_DATA;
177 break;
178 case IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER:
179 loaded_image_info->image_code_type = EFI_BOOT_SERVICES_CODE;
180 loaded_image_info->image_data_type = EFI_BOOT_SERVICES_DATA;
181 break;
182 case IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER:
Heinrich Schuchardt467fd7a2018-01-31 18:45:35 +0000183 case IMAGE_SUBSYSTEM_EFI_ROM:
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100184 loaded_image_info->image_code_type = EFI_RUNTIME_SERVICES_CODE;
185 loaded_image_info->image_data_type = EFI_RUNTIME_SERVICES_DATA;
186 break;
187 default:
188 printf("%s: invalid image type: %u\n", __func__, image_type);
189 /* Let's assume it is an application */
190 loaded_image_info->image_code_type = EFI_LOADER_CODE;
191 loaded_image_info->image_data_type = EFI_LOADER_DATA;
192 break;
193 }
194}
195
196/*
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100197 * This function loads all sections from a PE binary into a newly reserved
198 * piece of memory. On successful load it then returns the entry point for
199 * the binary. Otherwise NULL.
200 */
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +0200201void *efi_load_pe(struct efi_loaded_image_obj *handle, void *efi,
202 struct efi_loaded_image *loaded_image_info)
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100203{
204 IMAGE_NT_HEADERS32 *nt;
205 IMAGE_DOS_HEADER *dos;
206 IMAGE_SECTION_HEADER *sections;
207 int num_sections;
208 void *efi_reloc;
209 int i;
210 const IMAGE_BASE_RELOCATION *rel;
211 unsigned long rel_size;
212 int rel_idx = IMAGE_DIRECTORY_ENTRY_BASERELOC;
213 void *entry;
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700214 uint64_t image_base;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100215 uint64_t image_size;
216 unsigned long virt_size = 0;
Ivan Gorinov749d5c12018-04-05 18:32:06 -0700217 int supported = 0;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100218
219 dos = efi;
220 if (dos->e_magic != IMAGE_DOS_SIGNATURE) {
221 printf("%s: Invalid DOS Signature\n", __func__);
222 return NULL;
223 }
224
225 nt = (void *) ((char *)efi + dos->e_lfanew);
226 if (nt->Signature != IMAGE_NT_SIGNATURE) {
227 printf("%s: Invalid NT Signature\n", __func__);
228 return NULL;
229 }
230
Ivan Gorinov749d5c12018-04-05 18:32:06 -0700231 for (i = 0; machines[i]; i++)
232 if (machines[i] == nt->FileHeader.Machine) {
233 supported = 1;
234 break;
235 }
236
237 if (!supported) {
238 printf("%s: Machine type 0x%04x is not supported\n",
239 __func__, nt->FileHeader.Machine);
240 return NULL;
241 }
242
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100243 /* Calculate upper virtual address boundary */
244 num_sections = nt->FileHeader.NumberOfSections;
245 sections = (void *)&nt->OptionalHeader +
246 nt->FileHeader.SizeOfOptionalHeader;
247
248 for (i = num_sections - 1; i >= 0; i--) {
249 IMAGE_SECTION_HEADER *sec = &sections[i];
250 virt_size = max_t(unsigned long, virt_size,
251 sec->VirtualAddress + sec->Misc.VirtualSize);
252 }
253
254 /* Read 32/64bit specific header bits */
Ivan Gorinov749d5c12018-04-05 18:32:06 -0700255 if (nt->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR64_MAGIC) {
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100256 IMAGE_NT_HEADERS64 *nt64 = (void *)nt;
257 IMAGE_OPTIONAL_HEADER64 *opt = &nt64->OptionalHeader;
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700258 image_base = opt->ImageBase;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100259 image_size = opt->SizeOfImage;
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100260 efi_set_code_and_data_type(loaded_image_info, opt->Subsystem);
261 efi_reloc = efi_alloc(virt_size,
262 loaded_image_info->image_code_type);
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100263 if (!efi_reloc) {
Heinrich Schuchardtb10f2992017-12-22 19:16:57 +0100264 printf("%s: Could not allocate %lu bytes\n",
265 __func__, virt_size);
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100266 return NULL;
267 }
268 entry = efi_reloc + opt->AddressOfEntryPoint;
269 rel_size = opt->DataDirectory[rel_idx].Size;
270 rel = efi_reloc + opt->DataDirectory[rel_idx].VirtualAddress;
Heinrich Schuchardt4c07b8e2018-04-03 22:29:32 +0200271 virt_size = ALIGN(virt_size, opt->SectionAlignment);
Ivan Gorinov749d5c12018-04-05 18:32:06 -0700272 } else if (nt->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR32_MAGIC) {
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100273 IMAGE_OPTIONAL_HEADER32 *opt = &nt->OptionalHeader;
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700274 image_base = opt->ImageBase;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100275 image_size = opt->SizeOfImage;
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100276 efi_set_code_and_data_type(loaded_image_info, opt->Subsystem);
277 efi_reloc = efi_alloc(virt_size,
278 loaded_image_info->image_code_type);
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100279 if (!efi_reloc) {
Heinrich Schuchardtb10f2992017-12-22 19:16:57 +0100280 printf("%s: Could not allocate %lu bytes\n",
281 __func__, virt_size);
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100282 return NULL;
283 }
284 entry = efi_reloc + opt->AddressOfEntryPoint;
285 rel_size = opt->DataDirectory[rel_idx].Size;
286 rel = efi_reloc + opt->DataDirectory[rel_idx].VirtualAddress;
Heinrich Schuchardt4c07b8e2018-04-03 22:29:32 +0200287 virt_size = ALIGN(virt_size, opt->SectionAlignment);
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100288 } else {
289 printf("%s: Invalid optional header magic %x\n", __func__,
290 nt->OptionalHeader.Magic);
291 return NULL;
292 }
293
294 /* Load sections into RAM */
295 for (i = num_sections - 1; i >= 0; i--) {
296 IMAGE_SECTION_HEADER *sec = &sections[i];
297 memset(efi_reloc + sec->VirtualAddress, 0,
298 sec->Misc.VirtualSize);
299 memcpy(efi_reloc + sec->VirtualAddress,
300 efi + sec->PointerToRawData,
301 sec->SizeOfRawData);
302 }
303
304 /* Run through relocations */
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700305 if (efi_loader_relocate(rel, rel_size, efi_reloc,
306 (unsigned long)image_base) != EFI_SUCCESS) {
xypron.glpk@gmx.de6ec97d22017-07-04 00:12:58 +0200307 efi_free_pages((uintptr_t) efi_reloc,
308 (virt_size + EFI_PAGE_MASK) >> EFI_PAGE_SHIFT);
309 return NULL;
310 }
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100311
312 /* Flush cache */
Simon Glassd25bb302016-11-07 08:47:04 -0700313 flush_cache((ulong)efi_reloc,
Alexander Graf59254d62018-04-23 07:59:47 +0200314 ALIGN(virt_size, EFI_CACHELINE_SIZE));
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100315 invalidate_icache_all();
316
317 /* Populate the loaded image interface bits */
318 loaded_image_info->image_base = efi;
319 loaded_image_info->image_size = image_size;
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +0200320 handle->reloc_base = efi_reloc;
321 handle->reloc_size = virt_size;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100322
323 return entry;
324}