-
Notifications
You must be signed in to change notification settings - Fork 34
/
utils.c
297 lines (256 loc) · 6.73 KB
/
utils.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
/*
* EFI Boot Guard
*
* Copyright (c) Siemens AG, 2017
*
* Authors:
* Jan Kiszka <[email protected]>
* Andreas Reichel <[email protected]>
*
* This work is licensed under the terms of the GNU GPL, version 2. See
* the COPYING file in the top-level directory.
*
* SPDX-License-Identifier: GPL-2.0-only
*/
#include <efi.h>
#include <efilib.h>
#include <bootguard.h>
#include <utils.h>
VOID PrintC(const UINT8 color, const CHAR16 *fmt, ...)
{
INT32 attr = ST->ConOut->Mode->Attribute;
(VOID) ST->ConOut->SetAttribute(ST->ConOut, color);
va_list args;
va_start(args, fmt);
(VOID)VPrint(fmt, args);
va_end(args);
(VOID) ST->ConOut->SetAttribute(ST->ConOut, attr);
}
BOOLEAN IsOnBootMedium(EFI_DEVICE_PATH *dp)
{
extern CHAR16 *boot_medium_path;
CHAR16 *device_path, *tmp;
BOOLEAN result = FALSE;
tmp = DevicePathToStr(dp);
device_path = GetBootMediumPath(tmp);
FreePool(tmp);
if (StrCmp(device_path, boot_medium_path) == 0) {
result = TRUE;
}
FreePool(device_path);
return result;
}
VOID __attribute__((noreturn)) error_exit(CHAR16 *message, EFI_STATUS status)
{
ERROR(L"%s (%r).\n", message, status);
(VOID) BS->Stall(3 * 1000 * 1000);
(VOID) BS->Exit(this_image, status, 0, NULL);
__builtin_unreachable();
}
CHAR16 *get_volume_label(EFI_FILE_HANDLE fh)
{
EFI_FILE_SYSTEM_INFO *fsi;
EFI_GUID fsiGuid = EFI_FILE_SYSTEM_INFO_ID;
UINTN fsis;
EFI_STATUS status;
fsi = AllocatePool(MAX_INFO_SIZE);
if (fsi == NULL) {
return NULL;
}
fsis = MAX_INFO_SIZE;
status = fh->GetInfo(fh, &fsiGuid, &fsis, (VOID *)fsi);
if (EFI_ERROR(status) || fsis == 0) {
FreePool(fsi);
return NULL;
}
return fsi->VolumeLabel;
}
CHAR16 *get_volume_custom_label(EFI_FILE_HANDLE fh)
{
EFI_STATUS status;
EFI_FILE_HANDLE tmp;
CHAR16 *buffer = AllocatePool(64);
UINTN buffsize = 63;
status = fh->Open(
fh, &tmp, L"EFILABEL", EFI_FILE_MODE_READ,
EFI_FILE_ARCHIVE | EFI_FILE_HIDDEN | EFI_FILE_SYSTEM);
if (status != EFI_SUCCESS) {
FreePool(buffer);
return NULL;
}
status = tmp->Read(tmp, &buffsize, buffer);
if (status != EFI_SUCCESS) {
(VOID) fh->Close(tmp);
FreePool(buffer);
return NULL;
}
buffer[buffsize/sizeof(CHAR16)] = L'\0';
(VOID) fh->Close(tmp);
return buffer;
}
EFI_STATUS get_volumes(VOLUME_DESC **volumes, UINTN *count)
{
EFI_STATUS status;
EFI_HANDLE *handles = NULL;
EFI_GUID sfspGuid = SIMPLE_FILE_SYSTEM_PROTOCOL;
UINTN handleCount = 0;
UINTN index, rootCount = 0;
EFI_FILE_HANDLE tmp;
if (!volumes || !count) {
ERROR(L"Invalid volume enumeration.\n");
return EFI_INVALID_PARAMETER;
}
status = BS->LocateHandleBuffer(
ByProtocol, &sfspGuid, NULL, &handleCount, &handles);
if (EFI_ERROR(status)) {
ERROR(L"Could not locate handle buffer.\n");
return EFI_OUT_OF_RESOURCES;
}
INFO(L"Found %d handles for file IO\n\n", handleCount);
*volumes = (VOLUME_DESC *)AllocatePool(sizeof(VOLUME_DESC) * handleCount);
if (!*volumes) {
ERROR(L"Could not allocate memory for volume descriptors.\n");
return EFI_OUT_OF_RESOURCES;
}
for (index = 0; index < handleCount; index++) {
EFI_FILE_IO_INTERFACE *fs = NULL;
CHAR16 *devpathstr;
status = BS->HandleProtocol(
handles[index], &sfspGuid, (VOID **)&fs);
if (EFI_ERROR(status)) {
/* skip failed handle and continue enumerating */
ERROR(L"File IO handle %d does not support SIMPLE_FILE_SYSTEM_PROTOCOL, skipping.\n",
index);
continue;
}
status = fs->OpenVolume(fs, &tmp);
if (EFI_ERROR(status)) {
/* skip failed handle and continue enumerating */
ERROR(L"Could not open file system for IO handle %d, skipping.\n",
index);
continue;
}
EFI_DEVICE_PATH *devpath = DevicePathFromHandle(handles[index]);
if (devpath == NULL) {
ERROR(L"Could not get device path for config partition, skipping.\n");
continue;
}
devpathstr = DevicePathToStr(devpath);
(*volumes)[rootCount].root = tmp;
(*volumes)[rootCount].devpath = devpath;
(*volumes)[rootCount].fslabel =
get_volume_label((*volumes)[rootCount].root);
(*volumes)[rootCount].fscustomlabel =
get_volume_custom_label((*volumes)[rootCount].root);
INFO(L"Volume %d: ", rootCount);
if (IsOnBootMedium(devpath)) {
INFO(L"(On boot medium) ");
}
INFO(L"%s, LABEL=%s, CLABEL=%s\n",
devpathstr, (*volumes)[rootCount].fslabel,
(*volumes)[rootCount].fscustomlabel);
FreePool(devpathstr);
rootCount++;
}
*count = rootCount;
return EFI_SUCCESS;
}
EFI_STATUS close_volumes(VOLUME_DESC *volumes, UINTN count)
{
EFI_STATUS result = EFI_SUCCESS;
UINTN i;
if (!volumes) {
ERROR(L"Invalid parameter for closing volumes.\n");
return EFI_INVALID_PARAMETER;
}
for (i = 0; i < count; i++) {
EFI_STATUS status;
if (!volumes[i].root) {
ERROR(L"Invalid handle for volume %d.\n", i);
result = EFI_INVALID_PARAMETER;
continue;
}
status = volumes[i].root->Close(volumes[i].root);
if (EFI_ERROR(status)) {
ERROR(L"Could not close volume %d.\n", i);
result = EFI_DEVICE_ERROR;
}
}
FreePool(volumes);
return result;
}
EFI_DEVICE_PATH *FileDevicePathFromConfig(EFI_HANDLE device,
CHAR16 *payloadpath)
{
UINTN prefixlen = 0;
EFI_DEVICE_PATH *devpath = NULL;
LABELMODE lm = NOLABEL;
/* Check if payload path contains a
* L:LABEL: item to specify a FAT partition or a
* C:LABEL: to specify a custom labeled FAT partition */
if (StrnCmp(payloadpath, L"L:", 2) == 0) {
lm = DOSFSLABEL;
} else if (StrnCmp(payloadpath, L"C:", 2) == 0) {
lm = CUSTOMLABEL;
}
if (lm != NOLABEL) {
for (UINTN i = 2; i < StrLen(payloadpath); i++) {
if (payloadpath[i] == L':') {
prefixlen = i - 2;
break;
}
}
}
if (prefixlen > 0) {
for (UINTN v = 0; v < volume_count; v++) {
CHAR16 *src;
switch (lm) {
case DOSFSLABEL:
src = volumes[v].fslabel;
break;
case CUSTOMLABEL:
src = volumes[v].fscustomlabel;
break;
default:
src = NULL;
break;
}
if (src && (StrnCmp(src, &payloadpath[2], prefixlen) == 0)) {
devpath = volumes[v].devpath;
break;
}
}
}
if (!devpath) {
/* No label prefix specified, use device of bootloader image */
return FileDevicePath(device, payloadpath);
}
EFI_DEVICE_PATH *filedevpath;
EFI_DEVICE_PATH *appendeddevpath;
filedevpath = FileDevicePath(NULL, payloadpath + prefixlen + 3);
appendeddevpath = AppendDevicePath(devpath, filedevpath);
FreePool(filedevpath);
CHAR16 *pathstr = DevicePathToStr(appendeddevpath);
INFO(L"Full path for kernel is: %s\n", pathstr);
FreePool(pathstr);
return appendeddevpath;
}
CHAR16 *GetBootMediumPath(CHAR16 *input)
{
CHAR16 *dst;
UINTN len;
len = StrLen(input);
dst = AllocatePool((len + 1) * sizeof(CHAR16));
if (!dst) {
return NULL;
}
StrCpy(dst, input);
for (UINTN i = len; i > 0; i--)
{
if (dst[i] == L'/') {
dst[i] = L'\0';
break;
}
}
return dst;
}