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
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#include "device-path-util.h"
#include "memory-util-fundamental.h"
#include "proto/device-path.h"
#include "proto/simple-text-io.h"
#include "ticks.h"
#include "util.h"
#include "version.h"
#include "efivars.h"
/* Never try to read more than 16G into memory (and on 32bit 1G) */
#define FILE_READ_MAX MIN(SIZE_MAX/4, UINT64_C(16)*1024U*1024U*1024U)
void convert_efi_path(char16_t *path) {
assert(path);
for (size_t i = 0, fixed = 0;; i++) {
/* Fix device path node separator. */
path[fixed] = (path[i] == '/') ? '\\' : path[i];
/* Double '\' is not allowed in EFI file paths. */
if (fixed > 0 && path[fixed - 1] == '\\' && path[fixed] == '\\')
continue;
if (path[i] == '\0')
break;
fixed++;
}
}
char16_t *xstr8_to_path(const char *str8) {
assert(str8);
char16_t *path = xstr8_to_16(str8);
convert_efi_path(path);
return path;
}
static bool shall_be_whitespace(char16_t c) {
return c <= 0x20U || c == 0x7FU; /* All control characters + space */
}
char16_t* mangle_stub_cmdline(char16_t *cmdline) {
char16_t *p, *q, *e;
if (!cmdline)
return cmdline;
p = q = cmdline;
/* Skip initial whitespace */
while (shall_be_whitespace(*p))
p++;
/* Turn inner control characters into proper spaces */
for (e = p; *p != 0; p++) {
if (shall_be_whitespace(*p)) {
*(q++) = ' ';
continue;
}
*(q++) = *p;
e = q; /* remember last non-whitespace char */
}
/* Chop off trailing whitespace */
*e = 0;
return cmdline;
}
EFI_STATUS chunked_read(EFI_FILE *file, size_t *size, void *buf) {
EFI_STATUS err;
assert(file);
assert(size);
assert(buf);
/* This is a drop-in replacement for EFI_FILE->Read() with the same API behavior.
* Some broken firmwares cannot handle large file reads and will instead return
* an error. As a workaround, read such files in small chunks.
* Note that we cannot just try reading the whole file first on such firmware as
* that will permanently break the handle even if it is reopened.
*
* https://github.com/systemd/systemd/issues/25911 */
if (*size == 0)
return EFI_SUCCESS;
size_t read = 0, remaining = *size;
while (remaining > 0) {
size_t chunk = MIN(1024U * 1024U, remaining);
err = file->Read(file, &chunk, (uint8_t *) buf + read);
if (err != EFI_SUCCESS)
return err;
if (chunk == 0)
/* Caller requested more bytes than are in file. */
break;
assert(chunk <= remaining);
read += chunk;
remaining -= chunk;
}
*size = read;
return EFI_SUCCESS;
}
EFI_STATUS file_read(
EFI_FILE *dir,
const char16_t *name,
uint64_t offset,
size_t size,
char **ret,
size_t *ret_size) {
_cleanup_(file_closep) EFI_FILE *handle = NULL;
_cleanup_free_ char *buf = NULL;
EFI_STATUS err;
assert(dir);
assert(name);
assert(ret);
err = dir->Open(dir, &handle, (char16_t*) name, EFI_FILE_MODE_READ, 0ULL);
if (err != EFI_SUCCESS)
return err;
if (size == 0) {
_cleanup_free_ EFI_FILE_INFO *info = NULL;
err = get_file_info(handle, &info, NULL);
if (err != EFI_SUCCESS)
return err;
if (info->FileSize > SIZE_MAX) /* overflow check */
return EFI_BAD_BUFFER_SIZE;
size = info->FileSize;
}
if (size > FILE_READ_MAX) /* make sure we don't read unbounded data into RAM */
return EFI_BAD_BUFFER_SIZE;
if (offset > 0) {
err = handle->SetPosition(handle, offset);
if (err != EFI_SUCCESS)
return err;
}
/* Allocate some extra bytes to guarantee the result is NUL-terminated for char and char16_t strings. */
size_t extra = size % sizeof(char16_t) + sizeof(char16_t);
buf = xmalloc(size + extra);
err = chunked_read(handle, &size, buf);
if (err != EFI_SUCCESS)
return err;
/* Note that chunked_read() changes size to reflect the actual bytes read. */
memzero(buf + size, extra);
*ret = TAKE_PTR(buf);
if (ret_size)
*ret_size = size;
return err;
}
void print_at(size_t x, size_t y, size_t attr, const char16_t *str) {
assert(str);
ST->ConOut->SetCursorPosition(ST->ConOut, x, y);
ST->ConOut->SetAttribute(ST->ConOut, attr);
ST->ConOut->OutputString(ST->ConOut, (char16_t *) str);
}
void clear_screen(size_t attr) {
log_wait();
ST->ConOut->SetAttribute(ST->ConOut, attr);
ST->ConOut->ClearScreen(ST->ConOut);
}
void sort_pointer_array(
void **array,
size_t n_members,
compare_pointer_func_t compare) {
assert(array || n_members == 0);
assert(compare);
if (n_members <= 1)
return;
for (size_t i = 1; i < n_members; i++) {
size_t k;
void *entry = array[i];
for (k = i; k > 0; k--) {
if (compare(array[k - 1], entry) <= 0)
break;
array[k] = array[k - 1];
}
array[k] = entry;
}
}
EFI_STATUS get_file_info(EFI_FILE *handle, EFI_FILE_INFO **ret, size_t *ret_size) {
size_t size = EFI_FILE_INFO_MIN_SIZE;
_cleanup_free_ EFI_FILE_INFO *fi = NULL;
EFI_STATUS err;
assert(handle);
assert(ret);
fi = xmalloc(size);
err = handle->GetInfo(handle, MAKE_GUID_PTR(EFI_FILE_INFO), &size, fi);
if (err == EFI_BUFFER_TOO_SMALL) {
free(fi);
fi = xmalloc(size); /* GetInfo tells us the required size, let's use that now */
err = handle->GetInfo(handle, MAKE_GUID_PTR(EFI_FILE_INFO), &size, fi);
}
if (err != EFI_SUCCESS)
return err;
*ret = TAKE_PTR(fi);
if (ret_size)
*ret_size = size;
return EFI_SUCCESS;
}
EFI_STATUS readdir(
EFI_FILE *handle,
EFI_FILE_INFO **buffer,
size_t *buffer_size) {
EFI_STATUS err;
size_t sz;
assert(handle);
assert(buffer);
assert(buffer_size);
/* buffer/buffer_size are both in and output parameters. Should be zero-initialized initially, and
* the specified buffer needs to be freed by caller, after final use. */
if (!*buffer) {
sz = EFI_FILE_INFO_MIN_SIZE;
*buffer = xmalloc(sz);
*buffer_size = sz;
} else
sz = *buffer_size;
err = handle->Read(handle, &sz, *buffer);
if (err == EFI_BUFFER_TOO_SMALL) {
free(*buffer);
*buffer = xmalloc(sz);
*buffer_size = sz;
err = handle->Read(handle, &sz, *buffer);
}
if (err != EFI_SUCCESS)
return err;
if (sz == 0) {
/* End of directory */
free(*buffer);
*buffer = NULL;
*buffer_size = 0;
}
return EFI_SUCCESS;
}
bool is_ascii(const char16_t *f) {
if (!f)
return false;
for (; *f != 0; f++)
if (*f > 127)
return false;
return true;
}
char16_t **strv_free(char16_t **v) {
if (!v)
return NULL;
for (char16_t **i = v; *i; i++)
free(*i);
free(v);
return NULL;
}
EFI_STATUS open_directory(
EFI_FILE *root,
const char16_t *path,
EFI_FILE **ret) {
_cleanup_(file_closep) EFI_FILE *dir = NULL;
_cleanup_free_ EFI_FILE_INFO *file_info = NULL;
EFI_STATUS err;
assert(root);
/* Opens a file, and then verifies it is actually a directory */
err = root->Open(root, &dir, (char16_t *) path, EFI_FILE_MODE_READ, 0);
if (err != EFI_SUCCESS)
return err;
err = get_file_info(dir, &file_info, NULL);
if (err != EFI_SUCCESS)
return err;
if (!FLAGS_SET(file_info->Attribute, EFI_FILE_DIRECTORY))
return EFI_LOAD_ERROR;
*ret = TAKE_PTR(dir);
return EFI_SUCCESS;
}
__attribute__((noinline)) void notify_debugger(const char *identity, volatile bool wait) {
#ifdef EFI_DEBUG
printf("%s@%p %s\n", identity, __executable_start, GIT_VERSION);
if (wait)
printf("Waiting for debugger to attach...\n");
/* This is a poor programmer's breakpoint to wait until a debugger
* has attached to us. Just "set variable wait = 0" or "return" to continue. */
while (wait)
/* Prefer asm based stalling so that gdb has a source location to present. */
# if defined(__i386__) || defined(__x86_64__)
asm volatile("pause");
# elif defined(__aarch64__)
asm volatile("wfi");
# else
BS->Stall(5000);
# endif
#endif
}
#if defined(__i386__) || defined(__x86_64__)
static uint8_t inb(uint16_t port) {
uint8_t value;
asm volatile("inb %1, %0" : "=a"(value) : "Nd"(port));
return value;
}
static void outb(uint16_t port, uint8_t value) {
asm volatile("outb %0, %1" : : "a"(value), "Nd"(port));
}
void beep(unsigned beep_count) {
enum {
PITCH = 500,
BEEP_DURATION_USEC = 100 * 1000,
WAIT_DURATION_USEC = 400 * 1000,
PIT_FREQUENCY = 0x1234dd,
SPEAKER_CONTROL_PORT = 0x61,
SPEAKER_ON_MASK = 0x03,
TIMER_PORT_MAGIC = 0xB6,
TIMER_CONTROL_PORT = 0x43,
TIMER_CONTROL2_PORT = 0x42,
};
/* Set frequency. */
uint32_t counter = PIT_FREQUENCY / PITCH;
outb(TIMER_CONTROL_PORT, TIMER_PORT_MAGIC);
outb(TIMER_CONTROL2_PORT, counter & 0xFF);
outb(TIMER_CONTROL2_PORT, (counter >> 8) & 0xFF);
uint8_t value = inb(SPEAKER_CONTROL_PORT);
while (beep_count > 0) {
/* Turn speaker on. */
value |= SPEAKER_ON_MASK;
outb(SPEAKER_CONTROL_PORT, value);
BS->Stall(BEEP_DURATION_USEC);
/* Turn speaker off. */
value &= ~SPEAKER_ON_MASK;
outb(SPEAKER_CONTROL_PORT, value);
beep_count--;
if (beep_count > 0)
BS->Stall(WAIT_DURATION_USEC);
}
}
#endif
EFI_STATUS open_volume(EFI_HANDLE device, EFI_FILE **ret_file) {
EFI_STATUS err;
EFI_FILE *file;
EFI_SIMPLE_FILE_SYSTEM_PROTOCOL *volume;
assert(ret_file);
err = BS->HandleProtocol(device, MAKE_GUID_PTR(EFI_SIMPLE_FILE_SYSTEM_PROTOCOL), (void **) &volume);
if (err != EFI_SUCCESS)
return err;
err = volume->OpenVolume(volume, &file);
if (err != EFI_SUCCESS)
return err;
*ret_file = file;
return EFI_SUCCESS;
}
void *find_configuration_table(const EFI_GUID *guid) {
for (size_t i = 0; i < ST->NumberOfTableEntries; i++)
if (efi_guid_equal(&ST->ConfigurationTable[i].VendorGuid, guid))
return ST->ConfigurationTable[i].VendorTable;
return NULL;
}
static void remove_boot_count(char16_t *path) {
char16_t *prefix_end;
const char16_t *tail;
uint64_t ignored;
assert(path);
prefix_end = strchr16(path, '+');
if (!prefix_end)
return;
tail = prefix_end + 1;
if (!parse_number16(tail, &ignored, &tail))
return;
if (*tail == '-') {
++tail;
if (!parse_number16(tail, &ignored, &tail))
return;
}
if (!IN_SET(*tail, '\0', '.'))
return;
strcpy16(prefix_end, tail);
}
char16_t *get_extra_dir(const EFI_DEVICE_PATH *file_path) {
if (!file_path)
return NULL;
/* A device path is allowed to have more than one file path node. If that is the case they are
* supposed to be concatenated. Unfortunately, the device path to text protocol simply converts the
* nodes individually and then combines those with the usual '/' for device path nodes. But this does
* not create a legal EFI file path that the file protocol can use. */
/* Make sure we really only got file paths. */
for (const EFI_DEVICE_PATH *node = file_path; !device_path_is_end(node);
node = device_path_next_node(node))
if (node->Type != MEDIA_DEVICE_PATH || node->SubType != MEDIA_FILEPATH_DP)
return NULL;
_cleanup_free_ char16_t *file_path_str = NULL;
if (device_path_to_str(file_path, &file_path_str) != EFI_SUCCESS)
return NULL;
convert_efi_path(file_path_str);
remove_boot_count(file_path_str);
return xasprintf("%ls.extra.d", file_path_str);
}
void *xmalloc(size_t size) {
void *p = NULL;
assert_se(BS->AllocatePool(EfiLoaderData, size, &p) == EFI_SUCCESS);
return p;
}
|