efi_image_loader.c 9.6 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0+
A
Alexander Graf 已提交
2 3 4 5 6 7 8 9 10 11 12 13
/*
 *  EFI image loader
 *
 *  based partly on wine code
 *
 *  Copyright (c) 2016 Alexander Graf
 */

#include <common.h>
#include <efi_loader.h>
#include <pe.h>

R
Rob Clark 已提交
14
const efi_guid_t efi_global_variable_guid = EFI_GLOBAL_VARIABLE_GUID;
A
Alexander Graf 已提交
15 16
const efi_guid_t efi_guid_device_path = DEVICE_PATH_GUID;
const efi_guid_t efi_guid_loaded_image = LOADED_IMAGE_GUID;
R
Rob Clark 已提交
17 18 19
const efi_guid_t efi_simple_file_system_protocol_guid =
		EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID;
const efi_guid_t efi_file_info_guid = EFI_FILE_INFO_GUID;
A
Alexander Graf 已提交
20

21
static int machines[] = {
22
#if defined(__aarch64__)
23
	IMAGE_FILE_MACHINE_ARM64,
24
#elif defined(__arm__)
25 26 27 28 29
	IMAGE_FILE_MACHINE_ARM,
	IMAGE_FILE_MACHINE_THUMB,
	IMAGE_FILE_MACHINE_ARMNT,
#endif

30
#if defined(__x86_64__)
31
	IMAGE_FILE_MACHINE_AMD64,
32
#elif defined(__i386__)
33 34 35
	IMAGE_FILE_MACHINE_I386,
#endif

36
#if defined(__riscv) && (__riscv_xlen == 32)
37 38 39
	IMAGE_FILE_MACHINE_RISCV32,
#endif

40
#if defined(__riscv) && (__riscv_xlen == 64)
41 42 43 44
	IMAGE_FILE_MACHINE_RISCV64,
#endif
	0 };

45 46
/**
 * efi_print_image_info() - print information about a loaded image
47 48 49 50
 *
 * If the program counter is located within the image the offset to the base
 * address is shown.
 *
51
 * @obj:	EFI object
52 53
 * @image:	loaded image
 * @pc:		program counter (use NULL to suppress offset output)
54
 * Return:	status code
55
 */
56 57 58
static efi_status_t efi_print_image_info(struct efi_loaded_image_obj *obj,
					 struct efi_loaded_image *image,
					 void *pc)
59 60 61
{
	printf("UEFI image");
	printf(" [0x%p:0x%p]",
62 63 64 65
	       obj->reloc_base, obj->reloc_base + obj->reloc_size - 1);
	if (pc && pc >= obj->reloc_base &&
	    pc < obj->reloc_base + obj->reloc_size)
		printf(" pc=0x%zx", pc - obj->reloc_base);
66 67 68 69 70 71
	if (image->file_path)
		printf(" '%pD'", image->file_path);
	printf("\n");
	return EFI_SUCCESS;
}

72 73
/**
 * efi_print_image_infos() - print information about all loaded images
74 75 76 77 78 79 80 81 82 83 84 85
 *
 * @pc:		program counter (use NULL to suppress offset output)
 */
void efi_print_image_infos(void *pc)
{
	struct efi_object *efiobj;
	struct efi_handler *handler;

	list_for_each_entry(efiobj, &efi_obj_list, link) {
		list_for_each_entry(handler, &efiobj->protocols, link) {
			if (!guidcmp(handler->guid, &efi_guid_loaded_image)) {
				efi_print_image_info(
86
					(struct efi_loaded_image_obj *)efiobj,
87 88 89 90 91 92
					handler->protocol_interface, pc);
			}
		}
	}
}

93 94 95 96 97 98 99 100 101
/**
 * efi_loader_relocate() - relocate UEFI binary
 *
 * @rel:		pointer to the relocation table
 * @rel_size:		size of the relocation table in bytes
 * @efi_reloc:		actual load address of the image
 * @pref_address:	preferred load address of the image
 * Return:		status code
 */
102
static efi_status_t efi_loader_relocate(const IMAGE_BASE_RELOCATION *rel,
103 104
			unsigned long rel_size, void *efi_reloc,
			unsigned long pref_address)
A
Alexander Graf 已提交
105
{
106
	unsigned long delta = (unsigned long)efi_reloc - pref_address;
A
Alexander Graf 已提交
107 108 109
	const IMAGE_BASE_RELOCATION *end;
	int i;

110 111 112
	if (delta == 0)
		return EFI_SUCCESS;

A
Alexander Graf 已提交
113
	end = (const IMAGE_BASE_RELOCATION *)((const char *)rel + rel_size);
114
	while (rel < end && rel->SizeOfBlock) {
A
Alexander Graf 已提交
115 116 117
		const uint16_t *relocs = (const uint16_t *)(rel + 1);
		i = (rel->SizeOfBlock - sizeof(*rel)) / sizeof(uint16_t);
		while (i--) {
118
			uint32_t offset = (uint32_t)(*relocs & 0xfff) +
A
Alexander Graf 已提交
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
					  rel->VirtualAddress;
			int type = *relocs >> EFI_PAGE_SHIFT;
			uint64_t *x64 = efi_reloc + offset;
			uint32_t *x32 = efi_reloc + offset;
			uint16_t *x16 = efi_reloc + offset;

			switch (type) {
			case IMAGE_REL_BASED_ABSOLUTE:
				break;
			case IMAGE_REL_BASED_HIGH:
				*x16 += ((uint32_t)delta) >> 16;
				break;
			case IMAGE_REL_BASED_LOW:
				*x16 += (uint16_t)delta;
				break;
			case IMAGE_REL_BASED_HIGHLOW:
				*x32 += (uint32_t)delta;
				break;
			case IMAGE_REL_BASED_DIR64:
				*x64 += (uint64_t)delta;
				break;
140 141 142 143 144 145 146 147 148 149 150 151 152 153
#ifdef __riscv
			case IMAGE_REL_BASED_RISCV_HI20:
				*x32 = ((*x32 & 0xfffff000) + (uint32_t)delta) |
					(*x32 & 0x00000fff);
				break;
			case IMAGE_REL_BASED_RISCV_LOW12I:
			case IMAGE_REL_BASED_RISCV_LOW12S:
				/* We know that we're 4k aligned */
				if (delta & 0xfff) {
					printf("Unsupported reloc offset\n");
					return EFI_LOAD_ERROR;
				}
				break;
#endif
A
Alexander Graf 已提交
154 155 156
			default:
				printf("Unknown Relocation off %x type %x\n",
				       offset, type);
157
				return EFI_LOAD_ERROR;
A
Alexander Graf 已提交
158 159 160 161 162
			}
			relocs++;
		}
		rel = (const IMAGE_BASE_RELOCATION *)relocs;
	}
163
	return EFI_SUCCESS;
A
Alexander Graf 已提交
164 165 166 167 168 169 170
}

void __weak invalidate_icache_all(void)
{
	/* If the system doesn't support icache_all flush, cross our fingers */
}

171 172 173
/**
 * efi_set_code_and_data_type() - determine the memory types to be used for code
 *				  and data.
174
 *
175 176
 * @loaded_image_info:	image descriptor
 * @image_type:		field Subsystem of the optional header for
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
 *			Windows specific field
 */
static void efi_set_code_and_data_type(
			struct efi_loaded_image *loaded_image_info,
			uint16_t image_type)
{
	switch (image_type) {
	case IMAGE_SUBSYSTEM_EFI_APPLICATION:
		loaded_image_info->image_code_type = EFI_LOADER_CODE;
		loaded_image_info->image_data_type = EFI_LOADER_DATA;
		break;
	case IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER:
		loaded_image_info->image_code_type = EFI_BOOT_SERVICES_CODE;
		loaded_image_info->image_data_type = EFI_BOOT_SERVICES_DATA;
		break;
	case IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER:
193
	case IMAGE_SUBSYSTEM_EFI_ROM:
194 195 196 197 198 199 200 201 202 203 204 205
		loaded_image_info->image_code_type = EFI_RUNTIME_SERVICES_CODE;
		loaded_image_info->image_data_type = EFI_RUNTIME_SERVICES_DATA;
		break;
	default:
		printf("%s: invalid image type: %u\n", __func__, image_type);
		/* Let's assume it is an application */
		loaded_image_info->image_code_type = EFI_LOADER_CODE;
		loaded_image_info->image_data_type = EFI_LOADER_DATA;
		break;
	}
}

206 207 208
/**
 * efi_load_pe() - relocate EFI binary
 *
A
Alexander Graf 已提交
209
 * This function loads all sections from a PE binary into a newly reserved
210 211 212 213 214 215
 * piece of memory. On success the entry point is returned as handle->entry.
 *
 * @handle:		loaded image handle
 * @efi:		pointer to the EFI binary
 * @loaded_image_info:	loaded image protocol
 * Return:		status code
A
Alexander Graf 已提交
216
 */
217 218
efi_status_t efi_load_pe(struct efi_loaded_image_obj *handle, void *efi,
			 struct efi_loaded_image *loaded_image_info)
A
Alexander Graf 已提交
219 220 221 222 223 224 225 226 227 228
{
	IMAGE_NT_HEADERS32 *nt;
	IMAGE_DOS_HEADER *dos;
	IMAGE_SECTION_HEADER *sections;
	int num_sections;
	void *efi_reloc;
	int i;
	const IMAGE_BASE_RELOCATION *rel;
	unsigned long rel_size;
	int rel_idx = IMAGE_DIRECTORY_ENTRY_BASERELOC;
229
	uint64_t image_base;
A
Alexander Graf 已提交
230 231
	uint64_t image_size;
	unsigned long virt_size = 0;
232
	int supported = 0;
A
Alexander Graf 已提交
233 234 235 236

	dos = efi;
	if (dos->e_magic != IMAGE_DOS_SIGNATURE) {
		printf("%s: Invalid DOS Signature\n", __func__);
237
		return EFI_LOAD_ERROR;
A
Alexander Graf 已提交
238 239 240 241 242
	}

	nt = (void *) ((char *)efi + dos->e_lfanew);
	if (nt->Signature != IMAGE_NT_SIGNATURE) {
		printf("%s: Invalid NT Signature\n", __func__);
243
		return EFI_LOAD_ERROR;
A
Alexander Graf 已提交
244 245
	}

246 247 248 249 250 251 252 253 254
	for (i = 0; machines[i]; i++)
		if (machines[i] == nt->FileHeader.Machine) {
			supported = 1;
			break;
		}

	if (!supported) {
		printf("%s: Machine type 0x%04x is not supported\n",
		       __func__, nt->FileHeader.Machine);
255
		return EFI_LOAD_ERROR;
256 257
	}

A
Alexander Graf 已提交
258 259 260 261 262 263 264 265 266 267 268 269
	/* Calculate upper virtual address boundary */
	num_sections = nt->FileHeader.NumberOfSections;
	sections = (void *)&nt->OptionalHeader +
			    nt->FileHeader.SizeOfOptionalHeader;

	for (i = num_sections - 1; i >= 0; i--) {
		IMAGE_SECTION_HEADER *sec = &sections[i];
		virt_size = max_t(unsigned long, virt_size,
				  sec->VirtualAddress + sec->Misc.VirtualSize);
	}

	/* Read 32/64bit specific header bits */
270
	if (nt->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR64_MAGIC) {
A
Alexander Graf 已提交
271 272
		IMAGE_NT_HEADERS64 *nt64 = (void *)nt;
		IMAGE_OPTIONAL_HEADER64 *opt = &nt64->OptionalHeader;
273
		image_base = opt->ImageBase;
A
Alexander Graf 已提交
274
		image_size = opt->SizeOfImage;
275 276 277
		efi_set_code_and_data_type(loaded_image_info, opt->Subsystem);
		efi_reloc = efi_alloc(virt_size,
				      loaded_image_info->image_code_type);
A
Alexander Graf 已提交
278
		if (!efi_reloc) {
279 280
			printf("%s: Could not allocate %lu bytes\n",
			       __func__, virt_size);
281
			return EFI_OUT_OF_RESOURCES;
A
Alexander Graf 已提交
282
		}
283
		handle->entry = efi_reloc + opt->AddressOfEntryPoint;
A
Alexander Graf 已提交
284 285
		rel_size = opt->DataDirectory[rel_idx].Size;
		rel = efi_reloc + opt->DataDirectory[rel_idx].VirtualAddress;
286
		virt_size = ALIGN(virt_size, opt->SectionAlignment);
287
	} else if (nt->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR32_MAGIC) {
A
Alexander Graf 已提交
288
		IMAGE_OPTIONAL_HEADER32 *opt = &nt->OptionalHeader;
289
		image_base = opt->ImageBase;
A
Alexander Graf 已提交
290
		image_size = opt->SizeOfImage;
291 292 293
		efi_set_code_and_data_type(loaded_image_info, opt->Subsystem);
		efi_reloc = efi_alloc(virt_size,
				      loaded_image_info->image_code_type);
A
Alexander Graf 已提交
294
		if (!efi_reloc) {
295 296
			printf("%s: Could not allocate %lu bytes\n",
			       __func__, virt_size);
297
			return EFI_OUT_OF_RESOURCES;
A
Alexander Graf 已提交
298
		}
299
		handle->entry = efi_reloc + opt->AddressOfEntryPoint;
A
Alexander Graf 已提交
300 301
		rel_size = opt->DataDirectory[rel_idx].Size;
		rel = efi_reloc + opt->DataDirectory[rel_idx].VirtualAddress;
302
		virt_size = ALIGN(virt_size, opt->SectionAlignment);
A
Alexander Graf 已提交
303 304 305
	} else {
		printf("%s: Invalid optional header magic %x\n", __func__,
		       nt->OptionalHeader.Magic);
306
		return EFI_LOAD_ERROR;
A
Alexander Graf 已提交
307 308 309 310 311 312 313 314 315 316 317 318 319
	}

	/* Load sections into RAM */
	for (i = num_sections - 1; i >= 0; i--) {
		IMAGE_SECTION_HEADER *sec = &sections[i];
		memset(efi_reloc + sec->VirtualAddress, 0,
		       sec->Misc.VirtualSize);
		memcpy(efi_reloc + sec->VirtualAddress,
		       efi + sec->PointerToRawData,
		       sec->SizeOfRawData);
	}

	/* Run through relocations */
320 321
	if (efi_loader_relocate(rel, rel_size, efi_reloc,
				(unsigned long)image_base) != EFI_SUCCESS) {
322 323
		efi_free_pages((uintptr_t) efi_reloc,
			       (virt_size + EFI_PAGE_MASK) >> EFI_PAGE_SHIFT);
324
		return EFI_LOAD_ERROR;
325
	}
A
Alexander Graf 已提交
326 327

	/* Flush cache */
S
Simon Glass 已提交
328
	flush_cache((ulong)efi_reloc,
329
		    ALIGN(virt_size, EFI_CACHELINE_SIZE));
A
Alexander Graf 已提交
330 331 332 333 334
	invalidate_icache_all();

	/* Populate the loaded image interface bits */
	loaded_image_info->image_base = efi;
	loaded_image_info->image_size = image_size;
335 336
	handle->reloc_base = efi_reloc;
	handle->reloc_size = virt_size;
A
Alexander Graf 已提交
337

338
	return EFI_SUCCESS;
A
Alexander Graf 已提交
339
}