blob: f53ef367ec1d6fe805910a2b0cde2d8255f8ecf9 [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
Heinrich Schuchardteb676572020-08-25 17:51:20 +000010#define LOG_CATEGORY LOGC_EFI
11
Alexander Graf4e0c1c12016-03-04 01:09:58 +010012#include <common.h>
Simon Glass63334482019-11-14 12:57:39 -070013#include <cpu_func.h>
Alexander Graf4e0c1c12016-03-04 01:09:58 +010014#include <efi_loader.h>
Heinrich Schuchardteb676572020-08-25 17:51:20 +000015#include <log.h>
AKASHI Takahiro0e104e32020-04-14 11:51:44 +090016#include <malloc.h>
Alexander Graf4e0c1c12016-03-04 01:09:58 +010017#include <pe.h>
AKASHI Takahiro0e104e32020-04-14 11:51:44 +090018#include <sort.h>
Heinrich Schuchardt2aa09422020-05-07 17:57:43 +020019#include <crypto/pkcs7_parser.h>
Patrick Wildtfbc745c2020-05-07 02:17:14 +020020#include <linux/err.h>
Alexander Graf4e0c1c12016-03-04 01:09:58 +010021
Rob Clarkc84c1102017-09-13 18:05:38 -040022const efi_guid_t efi_global_variable_guid = EFI_GLOBAL_VARIABLE_GUID;
Heinrich Schuchardt788ad412019-04-20 07:39:11 +020023const efi_guid_t efi_guid_device_path = EFI_DEVICE_PATH_PROTOCOL_GUID;
24const efi_guid_t efi_guid_loaded_image = EFI_LOADED_IMAGE_PROTOCOL_GUID;
25const efi_guid_t efi_guid_loaded_image_device_path =
26 EFI_LOADED_IMAGE_DEVICE_PATH_PROTOCOL_GUID;
Rob Clark53142032017-09-13 18:05:34 -040027const efi_guid_t efi_simple_file_system_protocol_guid =
28 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID;
29const efi_guid_t efi_file_info_guid = EFI_FILE_INFO_GUID;
Alexander Graf4e0c1c12016-03-04 01:09:58 +010030
Ivan Gorinov749d5c12018-04-05 18:32:06 -070031static int machines[] = {
Alexander Graf8aec3082018-06-18 17:22:57 +020032#if defined(__aarch64__)
Ivan Gorinov749d5c12018-04-05 18:32:06 -070033 IMAGE_FILE_MACHINE_ARM64,
Alexander Graf8aec3082018-06-18 17:22:57 +020034#elif defined(__arm__)
Ivan Gorinov749d5c12018-04-05 18:32:06 -070035 IMAGE_FILE_MACHINE_ARM,
36 IMAGE_FILE_MACHINE_THUMB,
37 IMAGE_FILE_MACHINE_ARMNT,
38#endif
39
Alexander Graf8aec3082018-06-18 17:22:57 +020040#if defined(__x86_64__)
Ivan Gorinov749d5c12018-04-05 18:32:06 -070041 IMAGE_FILE_MACHINE_AMD64,
Alexander Graf8aec3082018-06-18 17:22:57 +020042#elif defined(__i386__)
Ivan Gorinov749d5c12018-04-05 18:32:06 -070043 IMAGE_FILE_MACHINE_I386,
44#endif
45
Alexander Graf8aec3082018-06-18 17:22:57 +020046#if defined(__riscv) && (__riscv_xlen == 32)
Ivan Gorinov749d5c12018-04-05 18:32:06 -070047 IMAGE_FILE_MACHINE_RISCV32,
48#endif
49
Alexander Graf8aec3082018-06-18 17:22:57 +020050#if defined(__riscv) && (__riscv_xlen == 64)
Ivan Gorinov749d5c12018-04-05 18:32:06 -070051 IMAGE_FILE_MACHINE_RISCV64,
52#endif
53 0 };
54
Heinrich Schuchardt0fcdb7a2019-02-16 15:22:13 +010055/**
56 * efi_print_image_info() - print information about a loaded image
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020057 *
58 * If the program counter is located within the image the offset to the base
59 * address is shown.
60 *
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +020061 * @obj: EFI object
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020062 * @image: loaded image
63 * @pc: program counter (use NULL to suppress offset output)
Heinrich Schuchardt0fcdb7a2019-02-16 15:22:13 +010064 * Return: status code
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020065 */
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +020066static efi_status_t efi_print_image_info(struct efi_loaded_image_obj *obj,
67 struct efi_loaded_image *image,
68 void *pc)
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020069{
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020070 printf("UEFI image");
71 printf(" [0x%p:0x%p]",
AKASHI Takahiro068879a2018-10-11 04:09:58 -070072 image->image_base, image->image_base + image->image_size - 1);
73 if (pc && pc >= image->image_base &&
74 pc < image->image_base + image->image_size)
75 printf(" pc=0x%zx", pc - image->image_base);
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020076 if (image->file_path)
77 printf(" '%pD'", image->file_path);
78 printf("\n");
79 return EFI_SUCCESS;
80}
81
Heinrich Schuchardt0fcdb7a2019-02-16 15:22:13 +010082/**
83 * efi_print_image_infos() - print information about all loaded images
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020084 *
85 * @pc: program counter (use NULL to suppress offset output)
86 */
87void efi_print_image_infos(void *pc)
88{
89 struct efi_object *efiobj;
90 struct efi_handler *handler;
91
92 list_for_each_entry(efiobj, &efi_obj_list, link) {
93 list_for_each_entry(handler, &efiobj->protocols, link) {
94 if (!guidcmp(handler->guid, &efi_guid_loaded_image)) {
95 efi_print_image_info(
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +020096 (struct efi_loaded_image_obj *)efiobj,
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +020097 handler->protocol_interface, pc);
98 }
99 }
100 }
101}
102
Heinrich Schuchardt0fcdb7a2019-02-16 15:22:13 +0100103/**
104 * efi_loader_relocate() - relocate UEFI binary
105 *
106 * @rel: pointer to the relocation table
107 * @rel_size: size of the relocation table in bytes
108 * @efi_reloc: actual load address of the image
109 * @pref_address: preferred load address of the image
110 * Return: status code
111 */
xypron.glpk@gmx.de6ec97d22017-07-04 00:12:58 +0200112static efi_status_t efi_loader_relocate(const IMAGE_BASE_RELOCATION *rel,
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700113 unsigned long rel_size, void *efi_reloc,
114 unsigned long pref_address)
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100115{
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700116 unsigned long delta = (unsigned long)efi_reloc - pref_address;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100117 const IMAGE_BASE_RELOCATION *end;
118 int i;
119
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700120 if (delta == 0)
121 return EFI_SUCCESS;
122
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100123 end = (const IMAGE_BASE_RELOCATION *)((const char *)rel + rel_size);
Heinrich Schuchardte9644cc2019-02-16 15:36:33 +0100124 while (rel < end && rel->SizeOfBlock) {
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100125 const uint16_t *relocs = (const uint16_t *)(rel + 1);
126 i = (rel->SizeOfBlock - sizeof(*rel)) / sizeof(uint16_t);
127 while (i--) {
Alexander Graf07032252016-08-18 23:45:18 +0200128 uint32_t offset = (uint32_t)(*relocs & 0xfff) +
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100129 rel->VirtualAddress;
130 int type = *relocs >> EFI_PAGE_SHIFT;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100131 uint64_t *x64 = efi_reloc + offset;
132 uint32_t *x32 = efi_reloc + offset;
133 uint16_t *x16 = efi_reloc + offset;
134
135 switch (type) {
136 case IMAGE_REL_BASED_ABSOLUTE:
137 break;
138 case IMAGE_REL_BASED_HIGH:
139 *x16 += ((uint32_t)delta) >> 16;
140 break;
141 case IMAGE_REL_BASED_LOW:
142 *x16 += (uint16_t)delta;
143 break;
144 case IMAGE_REL_BASED_HIGHLOW:
145 *x32 += (uint32_t)delta;
146 break;
147 case IMAGE_REL_BASED_DIR64:
148 *x64 += (uint64_t)delta;
149 break;
Alexander Graf71f91202018-06-05 19:20:32 +0200150#ifdef __riscv
151 case IMAGE_REL_BASED_RISCV_HI20:
152 *x32 = ((*x32 & 0xfffff000) + (uint32_t)delta) |
153 (*x32 & 0x00000fff);
154 break;
155 case IMAGE_REL_BASED_RISCV_LOW12I:
156 case IMAGE_REL_BASED_RISCV_LOW12S:
157 /* We know that we're 4k aligned */
158 if (delta & 0xfff) {
Heinrich Schuchardteb676572020-08-25 17:51:20 +0000159 log_err("Unsupported reloc offset\n");
Alexander Graf71f91202018-06-05 19:20:32 +0200160 return EFI_LOAD_ERROR;
161 }
162 break;
163#endif
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100164 default:
Heinrich Schuchardteb676572020-08-25 17:51:20 +0000165 log_err("Unknown Relocation off %x type %x\n",
166 offset, type);
xypron.glpk@gmx.de6ec97d22017-07-04 00:12:58 +0200167 return EFI_LOAD_ERROR;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100168 }
169 relocs++;
170 }
171 rel = (const IMAGE_BASE_RELOCATION *)relocs;
172 }
xypron.glpk@gmx.de6ec97d22017-07-04 00:12:58 +0200173 return EFI_SUCCESS;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100174}
175
176void __weak invalidate_icache_all(void)
177{
178 /* If the system doesn't support icache_all flush, cross our fingers */
179}
180
Heinrich Schuchardt0fcdb7a2019-02-16 15:22:13 +0100181/**
182 * efi_set_code_and_data_type() - determine the memory types to be used for code
183 * and data.
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100184 *
Heinrich Schuchardt0fcdb7a2019-02-16 15:22:13 +0100185 * @loaded_image_info: image descriptor
186 * @image_type: field Subsystem of the optional header for
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100187 * Windows specific field
188 */
189static void efi_set_code_and_data_type(
190 struct efi_loaded_image *loaded_image_info,
191 uint16_t image_type)
192{
193 switch (image_type) {
194 case IMAGE_SUBSYSTEM_EFI_APPLICATION:
195 loaded_image_info->image_code_type = EFI_LOADER_CODE;
196 loaded_image_info->image_data_type = EFI_LOADER_DATA;
197 break;
198 case IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER:
199 loaded_image_info->image_code_type = EFI_BOOT_SERVICES_CODE;
200 loaded_image_info->image_data_type = EFI_BOOT_SERVICES_DATA;
201 break;
202 case IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER:
Heinrich Schuchardt467fd7a2018-01-31 18:45:35 +0000203 case IMAGE_SUBSYSTEM_EFI_ROM:
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100204 loaded_image_info->image_code_type = EFI_RUNTIME_SERVICES_CODE;
205 loaded_image_info->image_data_type = EFI_RUNTIME_SERVICES_DATA;
206 break;
207 default:
Heinrich Schuchardteb676572020-08-25 17:51:20 +0000208 log_err("invalid image type: %u\n", image_type);
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100209 /* Let's assume it is an application */
210 loaded_image_info->image_code_type = EFI_LOADER_CODE;
211 loaded_image_info->image_data_type = EFI_LOADER_DATA;
212 break;
213 }
214}
215
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900216#ifdef CONFIG_EFI_SECURE_BOOT
217/**
Heinrich Schuchardt72bc7142020-05-30 06:44:48 +0200218 * cmp_pe_section() - compare virtual addresses of two PE image sections
219 * @arg1: pointer to pointer to first section header
220 * @arg2: pointer to pointer to second section header
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900221 *
Heinrich Schuchardt72bc7142020-05-30 06:44:48 +0200222 * Compare the virtual addresses of two sections of an portable executable.
223 * The arguments are defined as const void * to allow usage with qsort().
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900224 *
Heinrich Schuchardt72bc7142020-05-30 06:44:48 +0200225 * Return: -1 if the virtual address of arg1 is less than that of arg2,
226 * 0 if the virtual addresses are equal, 1 if the virtual address
227 * of arg1 is greater than that of arg2.
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900228 */
229static int cmp_pe_section(const void *arg1, const void *arg2)
230{
231 const IMAGE_SECTION_HEADER *section1, *section2;
232
233 section1 = *((const IMAGE_SECTION_HEADER **)arg1);
234 section2 = *((const IMAGE_SECTION_HEADER **)arg2);
235
236 if (section1->VirtualAddress < section2->VirtualAddress)
237 return -1;
238 else if (section1->VirtualAddress == section2->VirtualAddress)
239 return 0;
240 else
241 return 1;
242}
243
244/**
Heinrich Schuchardtda6d6072020-05-30 05:48:08 +0200245 * efi_image_parse() - parse a PE image
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900246 * @efi: Pointer to image
247 * @len: Size of @efi
248 * @regp: Pointer to a list of regions
249 * @auth: Pointer to a pointer to authentication data in PE
250 * @auth_len: Size of @auth
251 *
252 * Parse image binary in PE32(+) format, assuming that sanity of PE image
253 * has been checked by a caller.
254 * On success, an address of authentication data in @efi and its size will
255 * be returned in @auth and @auth_len, respectively.
256 *
257 * Return: true on success, false on error
258 */
259bool efi_image_parse(void *efi, size_t len, struct efi_image_regions **regp,
260 WIN_CERTIFICATE **auth, size_t *auth_len)
261{
262 struct efi_image_regions *regs;
263 IMAGE_DOS_HEADER *dos;
264 IMAGE_NT_HEADERS32 *nt;
265 IMAGE_SECTION_HEADER *sections, **sorted;
266 int num_regions, num_sections, i;
267 int ctidx = IMAGE_DIRECTORY_ENTRY_SECURITY;
268 u32 align, size, authsz, authoff;
269 size_t bytes_hashed;
270
271 dos = (void *)efi;
272 nt = (void *)(efi + dos->e_lfanew);
AKASHI Takahiro0d5eba42020-07-08 14:01:53 +0900273 authoff = 0;
274 authsz = 0;
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900275
276 /*
277 * Count maximum number of regions to be digested.
278 * We don't have to have an exact number here.
279 * See efi_image_region_add()'s in parsing below.
280 */
281 num_regions = 3; /* for header */
282 num_regions += nt->FileHeader.NumberOfSections;
283 num_regions++; /* for extra */
284
285 regs = calloc(sizeof(*regs) + sizeof(struct image_region) * num_regions,
286 1);
287 if (!regs)
288 goto err;
289 regs->max = num_regions;
290
291 /*
292 * Collect data regions for hash calculation
293 * 1. File headers
294 */
295 if (nt->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR64_MAGIC) {
296 IMAGE_NT_HEADERS64 *nt64 = (void *)nt;
297 IMAGE_OPTIONAL_HEADER64 *opt = &nt64->OptionalHeader;
298
299 /* Skip CheckSum */
300 efi_image_region_add(regs, efi, &opt->CheckSum, 0);
301 if (nt64->OptionalHeader.NumberOfRvaAndSizes <= ctidx) {
302 efi_image_region_add(regs,
AKASHI Takahirob69546f2020-05-08 14:51:59 +0900303 &opt->Subsystem,
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900304 efi + opt->SizeOfHeaders, 0);
305 } else {
306 /* Skip Certificates Table */
307 efi_image_region_add(regs,
AKASHI Takahirob69546f2020-05-08 14:51:59 +0900308 &opt->Subsystem,
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900309 &opt->DataDirectory[ctidx], 0);
310 efi_image_region_add(regs,
311 &opt->DataDirectory[ctidx] + 1,
312 efi + opt->SizeOfHeaders, 0);
AKASHI Takahiro0d5eba42020-07-08 14:01:53 +0900313
314 authoff = opt->DataDirectory[ctidx].VirtualAddress;
315 authsz = opt->DataDirectory[ctidx].Size;
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900316 }
317
318 bytes_hashed = opt->SizeOfHeaders;
319 align = opt->FileAlignment;
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900320 } else if (nt->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR32_MAGIC) {
321 IMAGE_OPTIONAL_HEADER32 *opt = &nt->OptionalHeader;
322
AKASHI Takahiro0d5eba42020-07-08 14:01:53 +0900323 /* Skip CheckSum */
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900324 efi_image_region_add(regs, efi, &opt->CheckSum, 0);
AKASHI Takahiro0d5eba42020-07-08 14:01:53 +0900325 if (nt->OptionalHeader.NumberOfRvaAndSizes <= ctidx) {
326 efi_image_region_add(regs,
327 &opt->Subsystem,
328 efi + opt->SizeOfHeaders, 0);
329 } else {
330 /* Skip Certificates Table */
331 efi_image_region_add(regs, &opt->Subsystem,
332 &opt->DataDirectory[ctidx], 0);
333 efi_image_region_add(regs,
334 &opt->DataDirectory[ctidx] + 1,
335 efi + opt->SizeOfHeaders, 0);
336
337 authoff = opt->DataDirectory[ctidx].VirtualAddress;
338 authsz = opt->DataDirectory[ctidx].Size;
339 }
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900340
341 bytes_hashed = opt->SizeOfHeaders;
342 align = opt->FileAlignment;
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900343 } else {
AKASHI Takahirocb0b4112020-06-09 14:09:35 +0900344 EFI_PRINT("%s: Invalid optional header magic %x\n", __func__,
345 nt->OptionalHeader.Magic);
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900346 goto err;
347 }
348
349 /* 2. Sections */
350 num_sections = nt->FileHeader.NumberOfSections;
351 sections = (void *)((uint8_t *)&nt->OptionalHeader +
352 nt->FileHeader.SizeOfOptionalHeader);
353 sorted = calloc(sizeof(IMAGE_SECTION_HEADER *), num_sections);
354 if (!sorted) {
AKASHI Takahirocb0b4112020-06-09 14:09:35 +0900355 EFI_PRINT("%s: Out of memory\n", __func__);
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900356 goto err;
357 }
358
359 /*
360 * Make sure the section list is in ascending order.
361 */
362 for (i = 0; i < num_sections; i++)
363 sorted[i] = &sections[i];
364 qsort(sorted, num_sections, sizeof(sorted[0]), cmp_pe_section);
365
366 for (i = 0; i < num_sections; i++) {
367 if (!sorted[i]->SizeOfRawData)
368 continue;
369
370 size = (sorted[i]->SizeOfRawData + align - 1) & ~(align - 1);
371 efi_image_region_add(regs, efi + sorted[i]->PointerToRawData,
372 efi + sorted[i]->PointerToRawData + size,
373 0);
AKASHI Takahirocb0b4112020-06-09 14:09:35 +0900374 EFI_PRINT("section[%d](%s): raw: 0x%x-0x%x, virt: %x-%x\n",
375 i, sorted[i]->Name,
376 sorted[i]->PointerToRawData,
377 sorted[i]->PointerToRawData + size,
378 sorted[i]->VirtualAddress,
379 sorted[i]->VirtualAddress
380 + sorted[i]->Misc.VirtualSize);
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900381
382 bytes_hashed += size;
383 }
384 free(sorted);
385
386 /* 3. Extra data excluding Certificates Table */
387 if (bytes_hashed + authsz < len) {
Heinrich Schuchardtd054aec2020-07-07 07:23:44 +0200388 EFI_PRINT("extra data for hash: %zu\n",
AKASHI Takahirocb0b4112020-06-09 14:09:35 +0900389 len - (bytes_hashed + authsz));
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900390 efi_image_region_add(regs, efi + bytes_hashed,
391 efi + len - authsz, 0);
392 }
393
394 /* Return Certificates Table */
395 if (authsz) {
396 if (len < authoff + authsz) {
AKASHI Takahirocb0b4112020-06-09 14:09:35 +0900397 EFI_PRINT("%s: Size for auth too large: %u >= %zu\n",
398 __func__, authsz, len - authoff);
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900399 goto err;
400 }
401 if (authsz < sizeof(*auth)) {
AKASHI Takahirocb0b4112020-06-09 14:09:35 +0900402 EFI_PRINT("%s: Size for auth too small: %u < %zu\n",
403 __func__, authsz, sizeof(*auth));
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900404 goto err;
405 }
406 *auth = efi + authoff;
407 *auth_len = authsz;
AKASHI Takahirocb0b4112020-06-09 14:09:35 +0900408 EFI_PRINT("WIN_CERTIFICATE: 0x%x, size: 0x%x\n", authoff,
409 authsz);
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900410 } else {
411 *auth = NULL;
412 *auth_len = 0;
413 }
414
415 *regp = regs;
416
417 return true;
418
419err:
420 free(regs);
421
422 return false;
423}
424
425/**
Heinrich Schuchardtda6d6072020-05-30 05:48:08 +0200426 * efi_image_unsigned_authenticate() - authenticate unsigned image with
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900427 * SHA256 hash
428 * @regs: List of regions to be verified
429 *
430 * If an image is not signed, it doesn't have a signature. In this case,
431 * its message digest is calculated and it will be compared with one of
432 * hash values stored in signature databases.
433 *
434 * Return: true if authenticated, false if not
435 */
436static bool efi_image_unsigned_authenticate(struct efi_image_regions *regs)
437{
438 struct efi_signature_store *db = NULL, *dbx = NULL;
439 bool ret = false;
440
441 dbx = efi_sigstore_parse_sigdb(L"dbx");
442 if (!dbx) {
AKASHI Takahirocb0b4112020-06-09 14:09:35 +0900443 EFI_PRINT("Getting signature database(dbx) failed\n");
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900444 goto out;
445 }
446
447 db = efi_sigstore_parse_sigdb(L"db");
448 if (!db) {
AKASHI Takahirocb0b4112020-06-09 14:09:35 +0900449 EFI_PRINT("Getting signature database(db) failed\n");
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900450 goto out;
451 }
452
453 /* try black-list first */
AKASHI Takahirode924072020-07-08 14:01:57 +0900454 if (efi_signature_lookup_digest(regs, dbx)) {
455 EFI_PRINT("Image is not signed and its digest found in \"dbx\"\n");
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900456 goto out;
457 }
458
459 /* try white-list */
AKASHI Takahirode924072020-07-08 14:01:57 +0900460 if (efi_signature_lookup_digest(regs, db))
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900461 ret = true;
462 else
AKASHI Takahirode924072020-07-08 14:01:57 +0900463 EFI_PRINT("Image is not signed and its digest not found in \"db\" or \"dbx\"\n");
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900464
465out:
466 efi_sigstore_free(db);
467 efi_sigstore_free(dbx);
468
469 return ret;
470}
471
472/**
Heinrich Schuchardtda6d6072020-05-30 05:48:08 +0200473 * efi_image_authenticate() - verify a signature of signed image
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900474 * @efi: Pointer to image
475 * @efi_size: Size of @efi
476 *
477 * A signed image should have its signature stored in a table of its PE header.
478 * So if an image is signed and only if if its signature is verified using
479 * signature databases, an image is authenticated.
480 * If an image is not signed, its validity is checked by using
481 * efi_image_unsigned_authenticated().
482 * TODO:
483 * When AuditMode==0, if the image's signature is not found in
484 * the authorized database, or is found in the forbidden database,
485 * the image will not be started and instead, information about it
486 * will be placed in this table.
487 * When AuditMode==1, an EFI_IMAGE_EXECUTION_INFO element is created
488 * in the EFI_IMAGE_EXECUTION_INFO_TABLE for every certificate found
489 * in the certificate table of every image that is validated.
490 *
491 * Return: true if authenticated, false if not
492 */
493static bool efi_image_authenticate(void *efi, size_t efi_size)
494{
495 struct efi_image_regions *regs = NULL;
496 WIN_CERTIFICATE *wincerts = NULL, *wincert;
497 size_t wincerts_len;
498 struct pkcs7_message *msg = NULL;
499 struct efi_signature_store *db = NULL, *dbx = NULL;
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900500 void *new_efi = NULL;
AKASHI Takahiroeab12752020-07-08 14:01:52 +0900501 u8 *auth, *wincerts_end;
502 size_t new_efi_size, auth_size;
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900503 bool ret = false;
504
Heinrich Schuchardteb676572020-08-25 17:51:20 +0000505 EFI_PRINT("%s: Enter, %d\n", __func__, ret);
AKASHI Takahiro4154b642020-07-08 14:01:56 +0900506
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900507 if (!efi_secure_boot_enabled())
508 return true;
509
510 /*
511 * Size must be 8-byte aligned and the trailing bytes must be
512 * zero'ed. Otherwise hash value may be incorrect.
513 */
514 if (efi_size & 0x7) {
515 new_efi_size = (efi_size + 0x7) & ~0x7ULL;
516 new_efi = calloc(new_efi_size, 1);
517 if (!new_efi)
518 return false;
519 memcpy(new_efi, efi, efi_size);
520 efi = new_efi;
521 efi_size = new_efi_size;
522 }
523
524 if (!efi_image_parse(efi, efi_size, &regs, &wincerts,
525 &wincerts_len)) {
AKASHI Takahirocb0b4112020-06-09 14:09:35 +0900526 EFI_PRINT("Parsing PE executable image failed\n");
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900527 goto err;
528 }
529
530 if (!wincerts) {
531 /* The image is not signed */
532 ret = efi_image_unsigned_authenticate(regs);
533
534 goto err;
535 }
536
537 /*
538 * verify signature using db and dbx
539 */
540 db = efi_sigstore_parse_sigdb(L"db");
541 if (!db) {
AKASHI Takahirocb0b4112020-06-09 14:09:35 +0900542 EFI_PRINT("Getting signature database(db) failed\n");
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900543 goto err;
544 }
545
546 dbx = efi_sigstore_parse_sigdb(L"dbx");
547 if (!dbx) {
AKASHI Takahirocb0b4112020-06-09 14:09:35 +0900548 EFI_PRINT("Getting signature database(dbx) failed\n");
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900549 goto err;
550 }
551
AKASHI Takahiro16411802020-08-14 14:39:23 +0900552 if (efi_signature_lookup_digest(regs, dbx)) {
553 EFI_PRINT("Image's digest was found in \"dbx\"\n");
554 goto err;
555 }
556
AKASHI Takahiro4154b642020-07-08 14:01:56 +0900557 /*
558 * go through WIN_CERTIFICATE list
559 * NOTE:
560 * We may have multiple signatures either as WIN_CERTIFICATE's
561 * in PE header, or as pkcs7 SignerInfo's in SignedData.
562 * So the verification policy here is:
563 * - Success if, at least, one of signatures is verified
AKASHI Takahiro16411802020-08-14 14:39:23 +0900564 * - unless signature is rejected explicitly with its digest.
AKASHI Takahiro4154b642020-07-08 14:01:56 +0900565 */
AKASHI Takahiro16411802020-08-14 14:39:23 +0900566
AKASHI Takahiroeab12752020-07-08 14:01:52 +0900567 for (wincert = wincerts, wincerts_end = (u8 *)wincerts + wincerts_len;
568 (u8 *)wincert < wincerts_end;
569 wincert = (WIN_CERTIFICATE *)
570 ((u8 *)wincert + ALIGN(wincert->dwLength, 8))) {
571 if ((u8 *)wincert + sizeof(*wincert) >= wincerts_end)
572 break;
573
574 if (wincert->dwLength <= sizeof(*wincert)) {
575 EFI_PRINT("dwLength too small: %u < %zu\n",
576 wincert->dwLength, sizeof(*wincert));
577 continue;
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900578 }
AKASHI Takahiroeab12752020-07-08 14:01:52 +0900579
580 EFI_PRINT("WIN_CERTIFICATE_TYPE: 0x%x\n",
581 wincert->wCertificateType);
582
583 auth = (u8 *)wincert + sizeof(*wincert);
584 auth_size = wincert->dwLength - sizeof(*wincert);
585 if (wincert->wCertificateType == WIN_CERT_TYPE_EFI_GUID) {
586 if (auth + sizeof(efi_guid_t) >= wincerts_end)
587 break;
588
589 if (auth_size <= sizeof(efi_guid_t)) {
590 EFI_PRINT("dwLength too small: %u < %zu\n",
591 wincert->dwLength, sizeof(*wincert));
592 continue;
593 }
594 if (guidcmp(auth, &efi_guid_cert_type_pkcs7)) {
595 EFI_PRINT("Certificate type not supported: %pUl\n",
596 auth);
597 continue;
598 }
599
600 auth += sizeof(efi_guid_t);
601 auth_size -= sizeof(efi_guid_t);
602 } else if (wincert->wCertificateType
603 != WIN_CERT_TYPE_PKCS_SIGNED_DATA) {
604 EFI_PRINT("Certificate type not supported\n");
605 continue;
606 }
607
608 msg = pkcs7_parse_message(auth, auth_size);
Patrick Wildtfbc745c2020-05-07 02:17:14 +0200609 if (IS_ERR(msg)) {
AKASHI Takahirocb0b4112020-06-09 14:09:35 +0900610 EFI_PRINT("Parsing image's signature failed\n");
Patrick Wildtfbc745c2020-05-07 02:17:14 +0200611 msg = NULL;
AKASHI Takahiroeab12752020-07-08 14:01:52 +0900612 continue;
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900613 }
614
AKASHI Takahirode924072020-07-08 14:01:57 +0900615 /*
616 * NOTE:
617 * UEFI specification defines two signature types possible
618 * in signature database:
619 * a. x509 certificate, where a signature in image is
620 * a message digest encrypted by RSA public key
621 * (EFI_CERT_X509_GUID)
622 * b. bare hash value of message digest
623 * (EFI_CERT_SHAxxx_GUID)
624 *
625 * efi_signature_verify() handles case (a), while
626 * efi_signature_lookup_digest() handles case (b).
627 *
628 * There is a third type:
629 * c. message digest of a certificate
630 * (EFI_CERT_X509_SHAAxxx_GUID)
631 * This type of signature is used only in revocation list
632 * (dbx) and handled as part of efi_signatgure_verify().
633 */
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900634 /* try black-list first */
AKASHI Takahiro4154b642020-07-08 14:01:56 +0900635 if (efi_signature_verify_one(regs, msg, dbx)) {
AKASHI Takahirocb0b4112020-06-09 14:09:35 +0900636 EFI_PRINT("Signature was rejected by \"dbx\"\n");
AKASHI Takahiro16411802020-08-14 14:39:23 +0900637 continue;
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900638 }
639
AKASHI Takahiro4154b642020-07-08 14:01:56 +0900640 if (!efi_signature_check_signers(msg, dbx)) {
641 EFI_PRINT("Signer(s) in \"dbx\"\n");
AKASHI Takahiro16411802020-08-14 14:39:23 +0900642 continue;
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900643 }
AKASHI Takahirode924072020-07-08 14:01:57 +0900644
645 /* try white-list */
AKASHI Takahiro16411802020-08-14 14:39:23 +0900646 if (efi_signature_verify(regs, msg, db, dbx)) {
647 ret = true;
648 break;
649 }
AKASHI Takahirode924072020-07-08 14:01:57 +0900650
Heinrich Schuchardteb676572020-08-25 17:51:20 +0000651 EFI_PRINT("Signature was not verified by \"db\"\n");
AKASHI Takahirode924072020-07-08 14:01:57 +0900652
AKASHI Takahiro16411802020-08-14 14:39:23 +0900653 if (efi_signature_lookup_digest(regs, db)) {
654 ret = true;
655 break;
656 }
AKASHI Takahirode924072020-07-08 14:01:57 +0900657
Heinrich Schuchardteb676572020-08-25 17:51:20 +0000658 EFI_PRINT("Image's digest was not found in \"db\" or \"dbx\"\n");
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900659 }
660
661err:
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900662 efi_sigstore_free(db);
663 efi_sigstore_free(dbx);
664 pkcs7_free_message(msg);
665 free(regs);
666 free(new_efi);
667
Heinrich Schuchardteb676572020-08-25 17:51:20 +0000668 EFI_PRINT("%s: Exit, %d\n", __func__, ret);
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900669 return ret;
670}
671#else
672static bool efi_image_authenticate(void *efi, size_t efi_size)
673{
674 return true;
675}
676#endif /* CONFIG_EFI_SECURE_BOOT */
677
Heinrich Schuchardtad6e0f72021-01-12 12:40:32 +0100678
679/**
680 * efi_check_pe() - check if a memory buffer contains a PE-COFF image
681 *
682 * @buffer: buffer to check
683 * @size: size of buffer
684 * @nt_header: on return pointer to NT header of PE-COFF image
685 * Return: EFI_SUCCESS if the buffer contains a PE-COFF image
686 */
687efi_status_t efi_check_pe(void *buffer, size_t size, void **nt_header)
688{
689 IMAGE_DOS_HEADER *dos = buffer;
690 IMAGE_NT_HEADERS32 *nt;
691
692 if (size < sizeof(*dos))
693 return EFI_INVALID_PARAMETER;
694
695 /* Check for DOS magix */
696 if (dos->e_magic != IMAGE_DOS_SIGNATURE)
697 return EFI_INVALID_PARAMETER;
698
699 /*
700 * Check if the image section header fits into the file. Knowing that at
701 * least one section header follows we only need to check for the length
702 * of the 64bit header which is longer than the 32bit header.
703 */
704 if (size < dos->e_lfanew + sizeof(IMAGE_NT_HEADERS32))
705 return EFI_INVALID_PARAMETER;
706 nt = (IMAGE_NT_HEADERS32 *)((u8 *)buffer + dos->e_lfanew);
707
708 /* Check for PE-COFF magic */
709 if (nt->Signature != IMAGE_NT_SIGNATURE)
710 return EFI_INVALID_PARAMETER;
711
712 if (nt_header)
713 *nt_header = nt;
714
715 return EFI_SUCCESS;
716}
717
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100718/**
719 * efi_load_pe() - relocate EFI binary
720 *
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100721 * This function loads all sections from a PE binary into a newly reserved
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100722 * piece of memory. On success the entry point is returned as handle->entry.
723 *
724 * @handle: loaded image handle
725 * @efi: pointer to the EFI binary
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900726 * @efi_size: size of @efi binary
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100727 * @loaded_image_info: loaded image protocol
728 * Return: status code
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100729 */
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900730efi_status_t efi_load_pe(struct efi_loaded_image_obj *handle,
731 void *efi, size_t efi_size,
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100732 struct efi_loaded_image *loaded_image_info)
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100733{
734 IMAGE_NT_HEADERS32 *nt;
735 IMAGE_DOS_HEADER *dos;
736 IMAGE_SECTION_HEADER *sections;
737 int num_sections;
738 void *efi_reloc;
739 int i;
740 const IMAGE_BASE_RELOCATION *rel;
741 unsigned long rel_size;
742 int rel_idx = IMAGE_DIRECTORY_ENTRY_BASERELOC;
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700743 uint64_t image_base;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100744 unsigned long virt_size = 0;
Ivan Gorinov749d5c12018-04-05 18:32:06 -0700745 int supported = 0;
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900746 efi_status_t ret;
747
Heinrich Schuchardtad6e0f72021-01-12 12:40:32 +0100748 ret = efi_check_pe(efi, efi_size, (void **)&nt);
749 if (ret != EFI_SUCCESS) {
750 log_err("Not a PE-COFF file\n");
751 return EFI_LOAD_ERROR;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100752 }
753
Ivan Gorinov749d5c12018-04-05 18:32:06 -0700754 for (i = 0; machines[i]; i++)
755 if (machines[i] == nt->FileHeader.Machine) {
756 supported = 1;
757 break;
758 }
759
760 if (!supported) {
Heinrich Schuchardteb676572020-08-25 17:51:20 +0000761 log_err("Machine type 0x%04x is not supported\n",
762 nt->FileHeader.Machine);
Heinrich Schuchardtad6e0f72021-01-12 12:40:32 +0100763 return EFI_LOAD_ERROR;
Ivan Gorinov749d5c12018-04-05 18:32:06 -0700764 }
765
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100766 num_sections = nt->FileHeader.NumberOfSections;
767 sections = (void *)&nt->OptionalHeader +
768 nt->FileHeader.SizeOfOptionalHeader;
769
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900770 if (efi_size < ((void *)sections + sizeof(sections[0]) * num_sections
771 - efi)) {
Heinrich Schuchardteb676572020-08-25 17:51:20 +0000772 log_err("Invalid number of sections: %d\n", num_sections);
Heinrich Schuchardtad6e0f72021-01-12 12:40:32 +0100773 return EFI_LOAD_ERROR;
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900774 }
775
776 /* Authenticate an image */
Heinrich Schuchardt74a84142020-08-27 17:51:32 +0200777 if (efi_image_authenticate(efi, efi_size)) {
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900778 handle->auth_status = EFI_IMAGE_AUTH_PASSED;
Heinrich Schuchardt74a84142020-08-27 17:51:32 +0200779 } else {
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900780 handle->auth_status = EFI_IMAGE_AUTH_FAILED;
Heinrich Schuchardt74a84142020-08-27 17:51:32 +0200781 log_err("Image not authenticated\n");
782 }
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900783
784 /* Calculate upper virtual address boundary */
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100785 for (i = num_sections - 1; i >= 0; i--) {
786 IMAGE_SECTION_HEADER *sec = &sections[i];
787 virt_size = max_t(unsigned long, virt_size,
788 sec->VirtualAddress + sec->Misc.VirtualSize);
789 }
790
791 /* Read 32/64bit specific header bits */
Ivan Gorinov749d5c12018-04-05 18:32:06 -0700792 if (nt->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR64_MAGIC) {
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100793 IMAGE_NT_HEADERS64 *nt64 = (void *)nt;
794 IMAGE_OPTIONAL_HEADER64 *opt = &nt64->OptionalHeader;
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700795 image_base = opt->ImageBase;
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100796 efi_set_code_and_data_type(loaded_image_info, opt->Subsystem);
Heinrich Schuchardt37587522019-05-01 20:07:04 +0200797 handle->image_type = opt->Subsystem;
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100798 efi_reloc = efi_alloc(virt_size,
799 loaded_image_info->image_code_type);
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100800 if (!efi_reloc) {
Heinrich Schuchardteb676572020-08-25 17:51:20 +0000801 log_err("Out of memory\n");
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900802 ret = EFI_OUT_OF_RESOURCES;
803 goto err;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100804 }
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100805 handle->entry = efi_reloc + opt->AddressOfEntryPoint;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100806 rel_size = opt->DataDirectory[rel_idx].Size;
807 rel = efi_reloc + opt->DataDirectory[rel_idx].VirtualAddress;
Heinrich Schuchardt4c07b8e2018-04-03 22:29:32 +0200808 virt_size = ALIGN(virt_size, opt->SectionAlignment);
Ivan Gorinov749d5c12018-04-05 18:32:06 -0700809 } else if (nt->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR32_MAGIC) {
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100810 IMAGE_OPTIONAL_HEADER32 *opt = &nt->OptionalHeader;
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700811 image_base = opt->ImageBase;
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100812 efi_set_code_and_data_type(loaded_image_info, opt->Subsystem);
Heinrich Schuchardt37587522019-05-01 20:07:04 +0200813 handle->image_type = opt->Subsystem;
Heinrich Schuchardtfaef0e72018-01-19 20:24:41 +0100814 efi_reloc = efi_alloc(virt_size,
815 loaded_image_info->image_code_type);
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100816 if (!efi_reloc) {
Heinrich Schuchardteb676572020-08-25 17:51:20 +0000817 log_err("Out of memory\n");
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900818 ret = EFI_OUT_OF_RESOURCES;
819 goto err;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100820 }
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100821 handle->entry = efi_reloc + opt->AddressOfEntryPoint;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100822 rel_size = opt->DataDirectory[rel_idx].Size;
823 rel = efi_reloc + opt->DataDirectory[rel_idx].VirtualAddress;
Heinrich Schuchardt4c07b8e2018-04-03 22:29:32 +0200824 virt_size = ALIGN(virt_size, opt->SectionAlignment);
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100825 } else {
Heinrich Schuchardteb676572020-08-25 17:51:20 +0000826 log_err("Invalid optional header magic %x\n",
827 nt->OptionalHeader.Magic);
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900828 ret = EFI_LOAD_ERROR;
829 goto err;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100830 }
831
AKASHI Takahiro068879a2018-10-11 04:09:58 -0700832 /* Copy PE headers */
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900833 memcpy(efi_reloc, efi,
834 sizeof(*dos)
835 + sizeof(*nt)
836 + nt->FileHeader.SizeOfOptionalHeader
837 + num_sections * sizeof(IMAGE_SECTION_HEADER));
AKASHI Takahiro068879a2018-10-11 04:09:58 -0700838
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100839 /* Load sections into RAM */
840 for (i = num_sections - 1; i >= 0; i--) {
841 IMAGE_SECTION_HEADER *sec = &sections[i];
842 memset(efi_reloc + sec->VirtualAddress, 0,
843 sec->Misc.VirtualSize);
844 memcpy(efi_reloc + sec->VirtualAddress,
845 efi + sec->PointerToRawData,
Asherah Connor4e472d82021-02-09 06:19:48 +0000846 min(sec->Misc.VirtualSize, sec->SizeOfRawData));
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100847 }
848
849 /* Run through relocations */
Ivan Gorinovc7270bc2018-05-02 16:36:02 -0700850 if (efi_loader_relocate(rel, rel_size, efi_reloc,
851 (unsigned long)image_base) != EFI_SUCCESS) {
xypron.glpk@gmx.de6ec97d22017-07-04 00:12:58 +0200852 efi_free_pages((uintptr_t) efi_reloc,
853 (virt_size + EFI_PAGE_MASK) >> EFI_PAGE_SHIFT);
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900854 ret = EFI_LOAD_ERROR;
855 goto err;
xypron.glpk@gmx.de6ec97d22017-07-04 00:12:58 +0200856 }
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100857
858 /* Flush cache */
Simon Glassd25bb302016-11-07 08:47:04 -0700859 flush_cache((ulong)efi_reloc,
Alexander Graf59254d62018-04-23 07:59:47 +0200860 ALIGN(virt_size, EFI_CACHELINE_SIZE));
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100861 invalidate_icache_all();
862
863 /* Populate the loaded image interface bits */
AKASHI Takahiro068879a2018-10-11 04:09:58 -0700864 loaded_image_info->image_base = efi_reloc;
865 loaded_image_info->image_size = virt_size;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100866
AKASHI Takahiro0e104e32020-04-14 11:51:44 +0900867 if (handle->auth_status == EFI_IMAGE_AUTH_PASSED)
868 return EFI_SUCCESS;
869 else
870 return EFI_SECURITY_VIOLATION;
871
872err:
873 return ret;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100874}