-
Notifications
You must be signed in to change notification settings - Fork 18
/
entry.c
488 lines (404 loc) · 10.7 KB
/
entry.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
/*
* Copyright (c) 2011, Intel Corporation
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <efi.h>
#include <efilib.h>
#include "efilinux.h"
#include "fs.h"
#include "protocol.h"
#include "loader.h"
#include "stdlib.h"
#define ERROR_STRING_LENGTH 32
static CHAR16 *banner = L"efilinux loader %d.%d\n";
EFI_SYSTEM_TABLE *sys_table;
EFI_BOOT_SERVICES *boot;
EFI_RUNTIME_SERVICES *runtime;
/**
* memory_map - Allocate and fill out an array of memory descriptors
* @map_buf: buffer containing the memory map
* @map_size: size of the buffer containing the memory map
* @map_key: key for the current memory map
* @desc_size: size of the desc
* @desc_version: memory descriptor version
*
* On success, @map_size contains the size of the memory map pointed
* to by @map_buf and @map_key, @desc_size and @desc_version are
* updated.
*/
EFI_STATUS
memory_map(EFI_MEMORY_DESCRIPTOR **map_buf, UINTN *map_size,
UINTN *map_key, UINTN *desc_size, UINT32 *desc_version)
{
EFI_STATUS err;
*map_size = sizeof(**map_buf) * 31;
get_map:
/*
* Because we're about to allocate memory, we may
* potentially create a new memory descriptor, thereby
* increasing the size of the memory map. So increase
* the buffer size by the size of one memory
* descriptor, just in case.
*/
*map_size += sizeof(**map_buf);
err = allocate_pool(EfiLoaderData, *map_size,
(void **)map_buf);
if (err != EFI_SUCCESS) {
Print(L"Failed to allocate pool for memory map");
goto failed;
}
err = get_memory_map(map_size, *map_buf, map_key,
desc_size, desc_version);
if (err != EFI_SUCCESS) {
if (err == EFI_BUFFER_TOO_SMALL) {
/*
* 'map_size' has been updated to reflect the
* required size of a map buffer.
*/
free_pool((void *)*map_buf);
goto get_map;
}
Print(L"Failed to get memory map");
goto failed;
}
failed:
return err;
}
static EFI_STATUS print_memory_map(void)
{
EFI_MEMORY_DESCRIPTOR *buf;
UINTN desc_size;
UINT32 desc_version;
UINTN size, map_key;
EFI_MEMORY_DESCRIPTOR *desc;
EFI_STATUS err;
int i;
err = memory_map(&buf, &size, &map_key,
&desc_size, &desc_version);
if (err != EFI_SUCCESS)
return err;
Print(L"System Memory Map\n");
Print(L"System Memory Map Size: %d\n", size);
Print(L"Descriptor Version: %d\n", desc_version);
Print(L"Descriptor Size: %d\n", desc_size);
desc = buf;
i = 0;
while ((void *)desc < (void *)buf + size) {
UINTN mapping_size;
mapping_size = desc->NumberOfPages * PAGE_SIZE;
Print(L"[#%.2d] Type: %s\n", i,
memory_type_to_str(desc->Type));
Print(L" Attr: 0x%016llx\n", desc->Attribute);
Print(L" Phys: [0x%016llx - 0x%016llx]\n",
desc->PhysicalStart,
desc->PhysicalStart + mapping_size);
Print(L" Virt: [0x%016llx - 0x%016llx]",
desc->VirtualStart,
desc->VirtualStart + mapping_size);
Print(L"\n");
desc = (void *)desc + desc_size;
i++;
}
free_pool(buf);
return err;
}
static inline BOOLEAN isspace(CHAR16 ch)
{
return ((unsigned char)ch <= ' ');
}
static EFI_STATUS
parse_args(CHAR16 *options, UINT32 size, CHAR16 **name, char **cmdline)
{
CHAR16 *n, *o, *filename = NULL;
EFI_STATUS err;
int i = 0;
*cmdline = NULL;
*name = NULL;
/* Skip whitespace */
for (i = 0; i < size && isspace(options[i]); i++)
;
/* No arguments */
if (i == size)
goto usage;
n = &options[i];
while (n <= &options[size]) {
if (*n == '-') {
switch (*++n) {
case 'h':
goto usage;
case 'f':
n++; /* Skip 'f' */
/* Skip whitespace */
while (isspace(*n))
n++;
filename = n;
i = 0;
while (*n && !isspace(*n)) {
i++;
n++;
}
*n++ = '\0';
o = malloc(sizeof(*o) * (i + 1));
if (!o) {
Print(L"Unable to alloc filename memory\n");
err = EFI_OUT_OF_RESOURCES;
goto out;
}
o[i--] = '\0';
StrCpy(o, filename);
*name = o;
break;
case 'l':
list_boot_devices();
goto fail;
case 'm':
print_memory_map();
n++;
goto fail;
default:
Print(L"Unknown command-line switch\n");
goto usage;
}
} else {
char *s1;
CHAR16 *s2;
int j;
j = StrLen(n);
*cmdline = malloc(j + 1);
if (!*cmdline) {
Print(L"Unable to alloc cmdline memory\n");
err = EFI_OUT_OF_RESOURCES;
goto free_name;
}
s1 = *cmdline;
s2 = n;
while (j--)
*s1++ = *s2++;
*s1 = '\0';
/* Consume the rest of the args */
n = &options[size] + 1;
}
}
if (filename)
return EFI_SUCCESS;
usage:
Print(L"usage: efilinux [-hlm] -f <filename> <args>\n\n");
Print(L"\t-h: display this help menu\n");
Print(L"\t-l: list boot devices\n");
Print(L"\t-m: print memory map\n");
Print(L"\t-f <filename>: image to load\n");
fail:
err = EFI_INVALID_PARAMETER;
if (*cmdline)
free(*cmdline);
free_name:
if (*name)
free(*name);
out:
return err;
}
static inline BOOLEAN
get_path(EFI_LOADED_IMAGE *image, CHAR16 *path, UINTN len)
{
CHAR16 *buf, *p, *q;
int i, dev;
dev = handle_to_dev(image->DeviceHandle);
if (dev == -1) {
Print(L"Couldn't find boot device handle\n");
return FALSE;
}
/* Find the path of the efilinux executable*/
p = DevicePathToStr(image->FilePath);
q = p + StrLen(p);
i = StrLen(p);
while (*q != '\\' && *q != '/') {
q--;
i--;
}
buf = malloc(i * sizeof(CHAR16));
if (!buf) {
Print(L"Failed to allocate buf\n");
FreePool(p);
return FALSE;
}
memcpy((char *)buf, (char *)p, i * sizeof(CHAR16));
FreePool(p);
buf[i] = '\0';
SPrint(path, len, L"%d:%s\\%s", dev, buf, EFILINUX_CONFIG);
return TRUE;
}
static BOOLEAN
read_config_file(EFI_LOADED_IMAGE *image, CHAR16 **options,
UINT32 *options_size)
{
struct file *file;
EFI_STATUS err;
CHAR16 path[4096];
CHAR16 *u_buf, *q;
char *a_buf, *p;
UINT64 size;
int i;
err = get_path(image, path, sizeof(path));
if (err != TRUE)
return FALSE;
err = file_open(image, path, &file);
if (err != EFI_SUCCESS)
return FALSE;
err = file_size(file, &size);
if (err != EFI_SUCCESS)
goto fail;
/*
* The config file contains ASCII characters, but the command
* line parser expects arguments to be UTF-16. Convert them
* once we've read them into 'a_buf'.
*/
/* Make sure we don't overflow the UINT32 */
if (size > 0xffffffff || (size * 2) > 0xffffffff ) {
Print(L"Config file size too large. Ignoring.\n");
goto fail;
}
a_buf = malloc((UINTN)size);
if (!a_buf) {
Print(L"Failed to alloc buffer %d bytes\n", size);
goto fail;
}
u_buf = malloc((UINTN)size * 2);
if (!u_buf) {
Print(L"Failed to alloc buffer %d bytes\n", size);
free(a_buf);
goto fail;
}
err = file_read(file, (UINTN *)&size, a_buf);
if (err != EFI_SUCCESS)
goto fail;
Print(L"Using efilinux config file\n");
/*
* Read one line. Stamp a NUL-byte into the buffer once we've
* read the end of the first line.
*/
for (p = a_buf, i = 0; *p && *p != '\n' && i < size; p++, i++)
;
if (*p == '\n')
*p++ = '\0';
if (i == size && *p) {
Print(L"Error: missing newline at end of config file?\n");
goto fail;
}
if ((p - a_buf) < size)
Print(L"Warning: config file contains multiple lines?\n");
p = a_buf;
q = u_buf;
for (i = 0; i < size; i++)
*q++ = *p++;
free(a_buf);
*options = u_buf;
*options_size = (UINT32)size * 2;
file_close(file);
return TRUE;
fail:
file_close(file);
return FALSE;
}
/**
* efi_main - The entry point for the OS loader image.
* @image: firmware-allocated handle that identifies the image
* @sys_table: EFI system table
*/
EFI_STATUS
efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *_table)
{
WCHAR *error_buf;
EFI_STATUS err;
EFI_LOADED_IMAGE *info;
CHAR16 *name, *options;
UINT32 options_size;
char *cmdline;
InitializeLib(image, _table);
sys_table = _table;
boot = sys_table->BootServices;
runtime = sys_table->RuntimeServices;
if (CheckCrc(sys_table->Hdr.HeaderSize, &sys_table->Hdr) != TRUE)
return EFI_LOAD_ERROR;
Print(banner, EFILINUX_VERSION_MAJOR, EFILINUX_VERSION_MINOR);
err = fs_init();
if (err != EFI_SUCCESS)
goto failed;
err = handle_protocol(image, &LoadedImageProtocol, (void **)&info);
if (err != EFI_SUCCESS)
goto fs_deinit;
if (!read_config_file(info, &options, &options_size)) {
int i;
options = info->LoadOptions;
options_size = info->LoadOptionsSize;
/*
* Skip the first word, that's probably our name. Stop
* when we hit a word delimiter (' ') or the start of an
* efilinux argument ('-').
*/
i = 0;
while (i < options_size) {
if (options[i] == ' ' || options[i] == '-')
break;
i++;
}
options = &options[i];
options_size -= i;
}
if (options && options_size != 0) {
err = parse_args(options, options_size, &name, &cmdline);
/* We print the usage message in case of invalid args */
if (err == EFI_INVALID_PARAMETER) {
fs_exit();
return EFI_SUCCESS;
}
if (err != EFI_SUCCESS)
goto fs_deinit;
}
err = load_image(image, name, cmdline);
if (err != EFI_SUCCESS)
goto free_args;
return EFI_SUCCESS;
free_args:
free(cmdline);
free(name);
fs_deinit:
fs_exit();
failed:
/*
* We need to be careful not to trash 'err' here. If we fail
* to allocate enough memory to hold the error string fallback
* to returning 'err'.
*/
if (allocate_pool(EfiLoaderData, ERROR_STRING_LENGTH,
(void **)&error_buf) != EFI_SUCCESS) {
Print(L"Couldn't allocate pages for error string\n");
return err;
}
StatusToString(error_buf, err);
Print(L": %s\n", error_buf);
return exit(image, err, ERROR_STRING_LENGTH, error_buf);
}