file.c 6.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// SPDX-License-Identifier: GPL-2.0
/*
 * Helper functions used by the EFI stub on multiple
 * architectures. This should be #included by the EFI stub
 * implementation files.
 *
 * Copyright 2011 Intel Corporation; author Matt Fleming
 */

#include <linux/efi.h>
#include <asm/efi.h>

#include "efistub.h"

15 16
#define MAX_FILENAME_SIZE	256

17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/*
 * Some firmware implementations have problems reading files in one go.
 * A read chunk size of 1MB seems to work for most platforms.
 *
 * Unfortunately, reading files in chunks triggers *other* bugs on some
 * platforms, so we provide a way to disable this workaround, which can
 * be done by passing "efi=nochunk" on the EFI boot stub command line.
 *
 * If you experience issues with initrd images being corrupt it's worth
 * trying efi=nochunk, but chunking is enabled by default on x86 because
 * there are far more machines that require the workaround than those that
 * break with it enabled.
 */
#define EFI_READ_CHUNK_SIZE	SZ_1M

32 33 34 35 36
struct finfo {
	efi_file_info_t info;
	efi_char16_t	filename[MAX_FILENAME_SIZE];
};

37
static efi_status_t efi_open_file(efi_file_protocol_t *volume,
38
				  struct finfo *fi,
39 40
				  efi_file_protocol_t **handle,
				  unsigned long *file_size)
41 42
{
	efi_guid_t info_guid = EFI_FILE_INFO_ID;
43
	efi_file_protocol_t *fh;
44
	unsigned long info_sz;
45
	efi_status_t status;
46

47
	status = volume->open(volume, &fh, fi->filename, EFI_FILE_MODE_READ, 0);
48
	if (status != EFI_SUCCESS) {
49
		efi_err("Failed to open file: %ls\n", fi->filename);
50 51 52
		return status;
	}

53 54
	info_sz = sizeof(struct finfo);
	status = fh->get_info(fh, &info_guid, &info_sz, fi);
55
	if (status != EFI_SUCCESS) {
56
		efi_err("Failed to get file info\n");
57
		fh->close(fh);
58 59 60
		return status;
	}

61
	*handle = fh;
62
	*file_size = fi->info.file_size;
63
	return EFI_SUCCESS;
64 65 66
}

static efi_status_t efi_open_volume(efi_loaded_image_t *image,
67
				    efi_file_protocol_t **fh)
68 69
{
	efi_guid_t fs_proto = EFI_FILE_SYSTEM_GUID;
70
	efi_simple_file_system_protocol_t *io;
71 72
	efi_status_t status;

73 74
	status = efi_bs_call(handle_protocol, image->device_handle, &fs_proto,
			     (void **)&io);
75
	if (status != EFI_SUCCESS) {
76
		efi_err("Failed to handle fs_proto\n");
77 78 79
		return status;
	}

80
	status = io->open_volume(io, fh);
81
	if (status != EFI_SUCCESS)
82
		efi_err("Failed to open volume\n");
83 84 85 86

	return status;
}

87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
static int find_file_option(const efi_char16_t *cmdline, int cmdline_len,
			    const efi_char16_t *prefix, int prefix_size,
			    efi_char16_t *result, int result_len)
{
	int prefix_len = prefix_size / 2;
	bool found = false;
	int i;

	for (i = prefix_len; i < cmdline_len; i++) {
		if (!memcmp(&cmdline[i - prefix_len], prefix, prefix_size)) {
			found = true;
			break;
		}
	}

	if (!found)
		return 0;

105
	/* Skip any leading slashes */
106
	while (i < cmdline_len && (cmdline[i] == L'/' || cmdline[i] == L'\\'))
107 108
		i++;

109
	while (--result_len > 0 && i < cmdline_len) {
110 111 112
		efi_char16_t c = cmdline[i++];

		if (c == L'\0' || c == L'\n' || c == L' ')
113
			break;
114 115 116 117 118
		else if (c == L'/')
			/* Replace UNIX dir separators with EFI standard ones */
			*result++ = L'\\';
		else
			*result++ = c;
119 120 121 122 123
	}
	*result = L'\0';
	return i;
}

124 125 126 127 128 129
/*
 * Check the cmdline for a LILO-style file= arguments.
 *
 * We only support loading a file from the same filesystem as
 * the kernel image.
 */
130 131 132 133 134 135 136
efi_status_t handle_cmdline_files(efi_loaded_image_t *image,
				  const efi_char16_t *optstr,
				  int optstr_size,
				  unsigned long soft_limit,
				  unsigned long hard_limit,
				  unsigned long *load_addr,
				  unsigned long *load_size)
137
{
138
	const efi_char16_t *cmdline = image->load_options;
139
	int cmdline_len = image->load_options_size;
140
	unsigned long efi_chunk_size = ULONG_MAX;
141 142 143 144
	efi_file_protocol_t *volume = NULL;
	efi_file_protocol_t *file;
	unsigned long alloc_addr;
	unsigned long alloc_size;
145
	efi_status_t status;
146
	int offset;
147 148 149 150

	if (!load_addr || !load_size)
		return EFI_INVALID_PARAMETER;

151 152 153
	efi_apply_loadoptions_quirk((const void **)&cmdline, &cmdline_len);
	cmdline_len /= sizeof(*cmdline);

154
	if (IS_ENABLED(CONFIG_X86) && !efi_nochunk)
155
		efi_chunk_size = EFI_READ_CHUNK_SIZE;
156

157 158
	alloc_addr = alloc_size = 0;
	do {
159
		struct finfo fi;
160 161
		unsigned long size;
		void *addr;
162

163 164
		offset = find_file_option(cmdline, cmdline_len,
					  optstr, optstr_size,
165
					  fi.filename, ARRAY_SIZE(fi.filename));
166

167
		if (!offset)
168 169
			break;

170 171
		cmdline += offset;
		cmdline_len -= offset;
172

173 174
		if (!volume) {
			status = efi_open_volume(image, &volume);
175
			if (status != EFI_SUCCESS)
176
				return status;
177 178
		}

179
		status = efi_open_file(volume, &fi, &file, &size);
180
		if (status != EFI_SUCCESS)
181
			goto err_close_volume;
182 183

		/*
184 185 186 187
		 * Check whether the existing allocation can contain the next
		 * file. This condition will also trigger naturally during the
		 * first (and typically only) iteration of the loop, given that
		 * alloc_size == 0 in that case.
188
		 */
189 190 191 192
		if (round_up(alloc_size + size, EFI_ALLOC_ALIGN) >
		    round_up(alloc_size, EFI_ALLOC_ALIGN)) {
			unsigned long old_addr = alloc_addr;

193 194 195 196 197 198 199 200 201
			status = EFI_OUT_OF_RESOURCES;
			if (soft_limit < hard_limit)
				status = efi_allocate_pages(alloc_size + size,
							    &alloc_addr,
							    soft_limit);
			if (status == EFI_OUT_OF_RESOURCES)
				status = efi_allocate_pages(alloc_size + size,
							    &alloc_addr,
							    hard_limit);
202
			if (status != EFI_SUCCESS) {
203
				efi_err("Failed to allocate memory for files\n");
204 205
				goto err_close_file;
			}
206

207 208 209 210 211 212 213 214 215 216
			if (old_addr != 0) {
				/*
				 * This is not the first time we've gone
				 * around this loop, and so we are loading
				 * multiple files that need to be concatenated
				 * and returned in a single buffer.
				 */
				memcpy((void *)alloc_addr, (void *)old_addr, alloc_size);
				efi_free(alloc_size, old_addr);
			}
217 218
		}

219 220
		addr = (void *)alloc_addr + alloc_size;
		alloc_size += size;
221

222 223 224 225 226
		while (size) {
			unsigned long chunksize = min(size, efi_chunk_size);

			status = file->read(file, &chunksize, addr);
			if (status != EFI_SUCCESS) {
227
				efi_err("Failed to read file\n");
228 229 230 231
				goto err_close_file;
			}
			addr += chunksize;
			size -= chunksize;
232
		}
233 234
		file->close(file);
	} while (offset > 0);
235

236 237
	*load_addr = alloc_addr;
	*load_size = alloc_size;
238

239 240
	if (volume)
		volume->close(volume);
241 242 243

	if (*load_size == 0)
		return EFI_NOT_READY;
244
	return EFI_SUCCESS;
245

246 247
err_close_file:
	file->close(file);
248

249 250 251
err_close_volume:
	volume->close(volume);
	efi_free(alloc_size, alloc_addr);
252
	return status;
253
}