]> code.delx.au - refind/blob - refind/lib.c
Changes related to new shim/MOK code.
[refind] / refind / lib.c
1 /*
2 * refit/lib.c
3 * General library functions
4 *
5 * Copyright (c) 2006-2009 Christoph Pfisterer
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met:
11 *
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
15 * * Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the
18 * distribution.
19 *
20 * * Neither the name of Christoph Pfisterer nor the names of the
21 * contributors may be used to endorse or promote products derived
22 * from this software without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
28 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
29 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
30 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 */
36 /*
37 * Modifications copyright (c) 2012 Roderick W. Smith
38 *
39 * Modifications distributed under the terms of the GNU General Public
40 * License (GPL) version 3 (GPLv3), a copy of which must be distributed
41 * with this source code or binaries made from it.
42 *
43 */
44
45 #include "global.h"
46 #include "lib.h"
47 #include "icns.h"
48 #include "screen.h"
49 #include "../include/refit_call_wrapper.h"
50 #include "../include/RemovableMedia.h"
51
52 #ifdef __MAKEWITH_GNUEFI
53 #define EfiReallocatePool ReallocatePool
54 #else
55 #define LibLocateHandle gBS->LocateHandleBuffer
56 #define DevicePathProtocol gEfiDevicePathProtocolGuid
57 #define BlockIoProtocol gEfiBlockIoProtocolGuid
58 #define LibFileSystemInfo EfiLibFileSystemInfo
59 #define LibOpenRoot EfiLibOpenRoot
60 EFI_DEVICE_PATH EndDevicePath[] = {
61 {END_DEVICE_PATH_TYPE, END_ENTIRE_DEVICE_PATH_SUBTYPE, {END_DEVICE_PATH_LENGTH, 0}}
62 };
63
64 //#define EndDevicePath DevicePath
65 #endif
66
67 // "Magic" signatures for various filesystems
68 #define FAT_MAGIC 0xAA55
69 #define EXT2_SUPER_MAGIC 0xEF53
70 #define HFSPLUS_MAGIC1 0x2B48
71 #define HFSPLUS_MAGIC2 0x5848
72 #define REISERFS_SUPER_MAGIC_STRING "ReIsErFs"
73 #define REISER2FS_SUPER_MAGIC_STRING "ReIsEr2Fs"
74 #define REISER2FS_JR_SUPER_MAGIC_STRING "ReIsEr3Fs"
75
76 // variables
77
78 EFI_HANDLE SelfImageHandle;
79 EFI_LOADED_IMAGE *SelfLoadedImage;
80 EFI_FILE *SelfRootDir;
81 EFI_FILE *SelfDir;
82 CHAR16 *SelfDirPath;
83
84 REFIT_VOLUME *SelfVolume = NULL;
85 REFIT_VOLUME **Volumes = NULL;
86 UINTN VolumesCount = 0;
87
88 // Maximum size for disk sectors
89 #define SECTOR_SIZE 4096
90
91 // Number of bytes to read from a partition to determine its filesystem type
92 // and identify its boot loader, and hence probable BIOS-mode OS installation
93 #define SAMPLE_SIZE 69632 /* 68 KiB -- ReiserFS superblock begins at 64 KiB */
94
95 // Default names for volume badges (mini-icon to define disk type) and icons
96 #define VOLUME_BADGE_NAME L".VolumeBadge.icns"
97 #define VOLUME_ICON_NAME L".VolumeIcon.icns"
98
99 // functions
100
101 static EFI_STATUS FinishInitRefitLib(VOID);
102
103 static VOID UninitVolumes(VOID);
104
105 //
106 // self recognition stuff
107 //
108
109 // Converts forward slashes to backslashes, removes duplicate slashes, and
110 // removes slashes from both the start and end of the pathname.
111 // Necessary because some (buggy?) EFI implementations produce "\/" strings
112 // in pathnames, because some user inputs can produce duplicate directory
113 // separators, and because we want consistent start and end slashes for
114 // directory comparisons. A special case: If the PathName refers to root,
115 // return "/", since some firmware implementations flake out if this
116 // isn't present.
117 VOID CleanUpPathNameSlashes(IN OUT CHAR16 *PathName) {
118 CHAR16 *NewName;
119 UINTN i, FinalChar = 0;
120 BOOLEAN LastWasSlash = FALSE;
121
122 NewName = AllocateZeroPool(sizeof(CHAR16) * (StrLen(PathName) + 2));
123 if (NewName != NULL) {
124 for (i = 0; i < StrLen(PathName); i++) {
125 if ((PathName[i] == L'/') || (PathName[i] == L'\\')) {
126 if ((!LastWasSlash) && (FinalChar != 0))
127 NewName[FinalChar++] = L'\\';
128 LastWasSlash = TRUE;
129 } else {
130 NewName[FinalChar++] = PathName[i];
131 LastWasSlash = FALSE;
132 } // if/else
133 } // for
134 NewName[FinalChar] = 0;
135 if ((FinalChar > 0) && (NewName[FinalChar - 1] == L'\\'))
136 NewName[--FinalChar] = 0;
137 if (FinalChar == 0) {
138 NewName[0] = L'\\';
139 NewName[1] = 0;
140 }
141 // Copy the transformed name back....
142 StrCpy(PathName, NewName);
143 FreePool(NewName);
144 } // if allocation OK
145 } // CleanUpPathNameSlashes()
146
147 // Splits an EFI device path into device and filename components. For instance, if InString is
148 // PciRoot(0x0)/Pci(0x1f,0x2)/Ata(Secondary,Master,0x0)/HD(2,GPT,8314ae90-ada3-48e9-9c3b-09a88f80d921,0x96028,0xfa000)/\bzImage-3.5.1.efi,
149 // this function will truncate that input to
150 // PciRoot(0x0)/Pci(0x1f,0x2)/Ata(Secondary,Master,0x0)/HD(2,GPT,8314ae90-ada3-48e9-9c3b-09a88f80d921,0x96028,0xfa000)
151 // and return bzImage-3.5.1.efi as its return value.
152 // It does this by searching for the last ")" character in InString, copying everything
153 // after that string (after some cleanup) as the return value, and truncating the original
154 // input value.
155 // If InString contains no ")" character, this function leaves the original input string
156 // unmodified and also returns that string.
157 static CHAR16* SplitDeviceString(IN OUT CHAR16 *InString) {
158 INTN i;
159 CHAR16 *FileName = NULL;
160 BOOLEAN Found = FALSE;
161
162 i = StrLen(InString) - 1;
163 while ((i >= 0) && (!Found)) {
164 if (InString[i] == L')') {
165 Found = TRUE;
166 FileName = StrDuplicate(&InString[i + 1]);
167 CleanUpPathNameSlashes(FileName);
168 InString[i + 1] = '\0';
169 } // if
170 i--;
171 } // while
172 if (FileName == NULL)
173 FileName = StrDuplicate(InString);
174 return FileName;
175 } // static CHAR16* SplitDeviceString()
176
177 EFI_STATUS InitRefitLib(IN EFI_HANDLE ImageHandle)
178 {
179 EFI_STATUS Status;
180 CHAR16 *DevicePathAsString, *Temp;
181
182 SelfImageHandle = ImageHandle;
183 Status = refit_call3_wrapper(BS->HandleProtocol, SelfImageHandle, &LoadedImageProtocol, (VOID **) &SelfLoadedImage);
184 if (CheckFatalError(Status, L"while getting a LoadedImageProtocol handle"))
185 return EFI_LOAD_ERROR;
186
187 // find the current directory
188 DevicePathAsString = DevicePathToStr(SelfLoadedImage->FilePath);
189 CleanUpPathNameSlashes(DevicePathAsString);
190 MyFreePool(SelfDirPath);
191 Temp = FindPath(DevicePathAsString);
192 SelfDirPath = SplitDeviceString(Temp);
193 MyFreePool(DevicePathAsString);
194 MyFreePool(Temp);
195
196 return FinishInitRefitLib();
197 }
198
199 // called before running external programs to close open file handles
200 VOID UninitRefitLib(VOID)
201 {
202 UninitVolumes();
203
204 if (SelfDir != NULL) {
205 refit_call1_wrapper(SelfDir->Close, SelfDir);
206 SelfDir = NULL;
207 }
208
209 if (SelfRootDir != NULL) {
210 refit_call1_wrapper(SelfRootDir->Close, SelfRootDir);
211 SelfRootDir = NULL;
212 }
213 }
214
215 // called after running external programs to re-open file handles
216 EFI_STATUS ReinitRefitLib(VOID)
217 {
218 ReinitVolumes();
219
220 if ((ST->Hdr.Revision >> 16) == 1) {
221 // Below two lines were in rEFIt, but seem to cause system crashes or
222 // reboots when launching OSes after returning from programs on most
223 // systems. OTOH, my Mac Mini produces errors about "(re)opening our
224 // installation volume" (see the next function) when returning from
225 // programs when these two lines are removed, and it often crashes
226 // when returning from a program or when launching a second program
227 // with these lines removed. Therefore, the preceding if() statement
228 // executes these lines only on EFIs with a major version number of 1
229 // (which Macs have) and not with 2 (which UEFI PCs have). My selection
230 // of hardware on which to test is limited, though, so this may be the
231 // wrong test, or there may be a better way to fix this problem.
232 // TODO: Figure out cause of above weirdness and fix it more
233 // reliably!
234 if (SelfVolume != NULL && SelfVolume->RootDir != NULL)
235 SelfRootDir = SelfVolume->RootDir;
236 } // if
237
238 return FinishInitRefitLib();
239 }
240
241 static EFI_STATUS FinishInitRefitLib(VOID)
242 {
243 EFI_STATUS Status;
244
245 if (SelfRootDir == NULL) {
246 SelfRootDir = LibOpenRoot(SelfLoadedImage->DeviceHandle);
247 if (SelfRootDir == NULL) {
248 CheckError(EFI_LOAD_ERROR, L"while (re)opening our installation volume");
249 return EFI_LOAD_ERROR;
250 }
251 }
252
253 Status = refit_call5_wrapper(SelfRootDir->Open, SelfRootDir, &SelfDir, SelfDirPath, EFI_FILE_MODE_READ, 0);
254 if (CheckFatalError(Status, L"while opening our installation directory"))
255 return EFI_LOAD_ERROR;
256
257 return EFI_SUCCESS;
258 }
259
260 //
261 // list functions
262 //
263
264 VOID CreateList(OUT VOID ***ListPtr, OUT UINTN *ElementCount, IN UINTN InitialElementCount)
265 {
266 UINTN AllocateCount;
267
268 *ElementCount = InitialElementCount;
269 if (*ElementCount > 0) {
270 AllocateCount = (*ElementCount + 7) & ~7; // next multiple of 8
271 *ListPtr = AllocatePool(sizeof(VOID *) * AllocateCount);
272 } else {
273 *ListPtr = NULL;
274 }
275 }
276
277 VOID AddListElement(IN OUT VOID ***ListPtr, IN OUT UINTN *ElementCount, IN VOID *NewElement)
278 {
279 UINTN AllocateCount;
280
281 if ((*ElementCount & 7) == 0) {
282 AllocateCount = *ElementCount + 8;
283 if (*ElementCount == 0)
284 *ListPtr = AllocatePool(sizeof(VOID *) * AllocateCount);
285 else
286 *ListPtr = EfiReallocatePool(*ListPtr, sizeof(VOID *) * (*ElementCount), sizeof(VOID *) * AllocateCount);
287 }
288 (*ListPtr)[*ElementCount] = NewElement;
289 (*ElementCount)++;
290 } /* VOID AddListElement() */
291
292 VOID FreeList(IN OUT VOID ***ListPtr, IN OUT UINTN *ElementCount)
293 {
294 UINTN i;
295
296 if ((*ElementCount > 0) && (**ListPtr != NULL)) {
297 for (i = 0; i < *ElementCount; i++) {
298 // TODO: call a user-provided routine for each element here
299 MyFreePool((*ListPtr)[i]);
300 }
301 MyFreePool(*ListPtr);
302 }
303 } // VOID FreeList()
304
305 //
306 // firmware device path discovery
307 //
308
309 static UINT8 LegacyLoaderMediaPathData[] = {
310 0x04, 0x06, 0x14, 0x00, 0xEB, 0x85, 0x05, 0x2B,
311 0xB8, 0xD8, 0xA9, 0x49, 0x8B, 0x8C, 0xE2, 0x1B,
312 0x01, 0xAE, 0xF2, 0xB7, 0x7F, 0xFF, 0x04, 0x00,
313 };
314 static EFI_DEVICE_PATH *LegacyLoaderMediaPath = (EFI_DEVICE_PATH *)LegacyLoaderMediaPathData;
315
316 VOID ExtractLegacyLoaderPaths(EFI_DEVICE_PATH **PathList, UINTN MaxPaths, EFI_DEVICE_PATH **HardcodedPathList)
317 {
318 EFI_STATUS Status;
319 UINTN HandleCount = 0;
320 UINTN HandleIndex, HardcodedIndex;
321 EFI_HANDLE *Handles;
322 EFI_HANDLE Handle;
323 UINTN PathCount = 0;
324 UINTN PathIndex;
325 EFI_LOADED_IMAGE *LoadedImage;
326 EFI_DEVICE_PATH *DevicePath;
327 BOOLEAN Seen;
328
329 MaxPaths--; // leave space for the terminating NULL pointer
330
331 // get all LoadedImage handles
332 Status = LibLocateHandle(ByProtocol, &LoadedImageProtocol, NULL, &HandleCount, &Handles);
333 if (CheckError(Status, L"while listing LoadedImage handles")) {
334 if (HardcodedPathList) {
335 for (HardcodedIndex = 0; HardcodedPathList[HardcodedIndex] && PathCount < MaxPaths; HardcodedIndex++)
336 PathList[PathCount++] = HardcodedPathList[HardcodedIndex];
337 }
338 PathList[PathCount] = NULL;
339 return;
340 }
341 for (HandleIndex = 0; HandleIndex < HandleCount && PathCount < MaxPaths; HandleIndex++) {
342 Handle = Handles[HandleIndex];
343
344 Status = refit_call3_wrapper(BS->HandleProtocol, Handle, &LoadedImageProtocol, (VOID **) &LoadedImage);
345 if (EFI_ERROR(Status))
346 continue; // This can only happen if the firmware scewed up, ignore it.
347
348 Status = refit_call3_wrapper(BS->HandleProtocol, LoadedImage->DeviceHandle, &DevicePathProtocol, (VOID **) &DevicePath);
349 if (EFI_ERROR(Status))
350 continue; // This happens, ignore it.
351
352 // Only grab memory range nodes
353 if (DevicePathType(DevicePath) != HARDWARE_DEVICE_PATH || DevicePathSubType(DevicePath) != HW_MEMMAP_DP)
354 continue;
355
356 // Check if we have this device path in the list already
357 // WARNING: This assumes the first node in the device path is unique!
358 Seen = FALSE;
359 for (PathIndex = 0; PathIndex < PathCount; PathIndex++) {
360 if (DevicePathNodeLength(DevicePath) != DevicePathNodeLength(PathList[PathIndex]))
361 continue;
362 if (CompareMem(DevicePath, PathList[PathIndex], DevicePathNodeLength(DevicePath)) == 0) {
363 Seen = TRUE;
364 break;
365 }
366 }
367 if (Seen)
368 continue;
369
370 PathList[PathCount++] = AppendDevicePath(DevicePath, LegacyLoaderMediaPath);
371 }
372 MyFreePool(Handles);
373
374 if (HardcodedPathList) {
375 for (HardcodedIndex = 0; HardcodedPathList[HardcodedIndex] && PathCount < MaxPaths; HardcodedIndex++)
376 PathList[PathCount++] = HardcodedPathList[HardcodedIndex];
377 }
378 PathList[PathCount] = NULL;
379 }
380
381 //
382 // volume functions
383 //
384
385 // Return a pointer to a string containing a filesystem type name. If the
386 // filesystem type is unknown, a blank (but non-null) string is returned.
387 // The returned variable is a constant that should NOT be freed.
388 static CHAR16 *FSTypeName(IN UINT32 TypeCode) {
389 CHAR16 *retval = NULL;
390
391 switch (TypeCode) {
392 case FS_TYPE_FAT:
393 retval = L" FAT";
394 break;
395 case FS_TYPE_HFSPLUS:
396 retval = L" HFS+";
397 break;
398 case FS_TYPE_EXT2:
399 retval = L" ext2";
400 break;
401 case FS_TYPE_EXT3:
402 retval = L" ext3";
403 break;
404 case FS_TYPE_EXT4:
405 retval = L" ext4";
406 break;
407 case FS_TYPE_REISERFS:
408 retval = L" ReiserFS";
409 break;
410 case FS_TYPE_ISO9660:
411 retval = L" ISO-9660";
412 break;
413 default:
414 retval = L"";
415 break;
416 } // switch
417 return retval;
418 } // CHAR16 *FSTypeName()
419
420 // Identify the filesystem type, if possible. Expects a Buffer containing
421 // the first few (normally 4096) bytes of the filesystem, and outputs a
422 // code representing the identified filesystem type.
423 static UINT32 IdentifyFilesystemType(IN UINT8 *Buffer, IN UINTN BufferSize) {
424 UINT32 FoundType = FS_TYPE_UNKNOWN;
425 UINT32 *Ext2Incompat, *Ext2Compat;
426 UINT16 *Magic16;
427 char *MagicString;
428
429 if (Buffer != NULL) {
430
431 if (BufferSize >= 512) {
432 Magic16 = (UINT16*) (Buffer + 510);
433 if (*Magic16 == FAT_MAGIC)
434 return FS_TYPE_FAT;
435 } // search for FAT magic
436
437 if (BufferSize >= (1024 + 100)) {
438 Magic16 = (UINT16*) (Buffer + 1024 + 56);
439 if (*Magic16 == EXT2_SUPER_MAGIC) { // ext2/3/4
440 Ext2Compat = (UINT32*) (Buffer + 1024 + 92);
441 Ext2Incompat = (UINT32*) (Buffer + 1024 + 96);
442 if ((*Ext2Incompat & 0x0040) || (*Ext2Incompat & 0x0200)) { // check for extents or flex_bg
443 return FS_TYPE_EXT4;
444 } else if (*Ext2Compat & 0x0004) { // check for journal
445 return FS_TYPE_EXT3;
446 } else { // none of these features; presume it's ext2...
447 return FS_TYPE_EXT2;
448 }
449 }
450 } // search for ext2/3/4 magic
451
452 if (BufferSize >= (65536 + 62)) {
453 MagicString = (char*) (Buffer + 65536 + 52);
454 if ((CompareMem(MagicString, REISERFS_SUPER_MAGIC_STRING, 8) == 0) ||
455 (CompareMem(MagicString, REISER2FS_SUPER_MAGIC_STRING, 9) == 0) ||
456 (CompareMem(MagicString, REISER2FS_JR_SUPER_MAGIC_STRING, 9) == 0)) {
457 return FS_TYPE_REISERFS;
458 } // if
459 } // search for ReiserFS magic
460
461 if (BufferSize >= (1024 + 2)) {
462 Magic16 = (UINT16*) (Buffer + 1024);
463 if ((*Magic16 == HFSPLUS_MAGIC1) || (*Magic16 == HFSPLUS_MAGIC2)) {
464 return FS_TYPE_HFSPLUS;
465 }
466 } // search for HFS+ magic
467 } // if (Buffer != NULL)
468
469 return FoundType;
470 }
471
472 static VOID ScanVolumeBootcode(REFIT_VOLUME *Volume, BOOLEAN *Bootable)
473 {
474 EFI_STATUS Status;
475 UINT8 Buffer[SAMPLE_SIZE];
476 UINTN i;
477 MBR_PARTITION_INFO *MbrTable;
478 BOOLEAN MbrTableFound;
479
480 Volume->HasBootCode = FALSE;
481 Volume->OSIconName = NULL;
482 Volume->OSName = NULL;
483 *Bootable = FALSE;
484
485 if (Volume->BlockIO == NULL)
486 return;
487 if (Volume->BlockIO->Media->BlockSize > SAMPLE_SIZE)
488 return; // our buffer is too small...
489
490 // look at the boot sector (this is used for both hard disks and El Torito images!)
491 Status = refit_call5_wrapper(Volume->BlockIO->ReadBlocks,
492 Volume->BlockIO, Volume->BlockIO->Media->MediaId,
493 Volume->BlockIOOffset, SAMPLE_SIZE, Buffer);
494 if (!EFI_ERROR(Status)) {
495
496 Volume->FSType = IdentifyFilesystemType(Buffer, SAMPLE_SIZE);
497 if (*((UINT16 *)(Buffer + 510)) == 0xaa55 && Buffer[0] != 0) {
498 *Bootable = TRUE;
499 Volume->HasBootCode = TRUE;
500 }
501
502 // detect specific boot codes
503 if (CompareMem(Buffer + 2, "LILO", 4) == 0 ||
504 CompareMem(Buffer + 6, "LILO", 4) == 0 ||
505 CompareMem(Buffer + 3, "SYSLINUX", 8) == 0 ||
506 FindMem(Buffer, SECTOR_SIZE, "ISOLINUX", 8) >= 0) {
507 Volume->HasBootCode = TRUE;
508 Volume->OSIconName = L"linux";
509 Volume->OSName = L"Linux";
510
511 } else if (FindMem(Buffer, 512, "Geom\0Hard Disk\0Read\0 Error", 26) >= 0) { // GRUB
512 Volume->HasBootCode = TRUE;
513 Volume->OSIconName = L"grub,linux";
514 Volume->OSName = L"Linux";
515
516 // // Below doesn't produce a bootable entry, so commented out for the moment....
517 // // GRUB in BIOS boot partition:
518 // } else if (FindMem(Buffer, 512, "Geom\0Read\0 Error", 16) >= 0) {
519 // Volume->HasBootCode = TRUE;
520 // Volume->OSIconName = L"grub,linux";
521 // Volume->OSName = L"Linux";
522 // Volume->VolName = L"BIOS Boot Partition";
523 // *Bootable = TRUE;
524
525 } else if ((*((UINT32 *)(Buffer + 502)) == 0 &&
526 *((UINT32 *)(Buffer + 506)) == 50000 &&
527 *((UINT16 *)(Buffer + 510)) == 0xaa55) ||
528 FindMem(Buffer, SECTOR_SIZE, "Starting the BTX loader", 23) >= 0) {
529 Volume->HasBootCode = TRUE;
530 Volume->OSIconName = L"freebsd";
531 Volume->OSName = L"FreeBSD";
532
533 } else if (FindMem(Buffer, 512, "!Loading", 8) >= 0 ||
534 FindMem(Buffer, SECTOR_SIZE, "/cdboot\0/CDBOOT\0", 16) >= 0) {
535 Volume->HasBootCode = TRUE;
536 Volume->OSIconName = L"openbsd";
537 Volume->OSName = L"OpenBSD";
538
539 } else if (FindMem(Buffer, 512, "Not a bootxx image", 18) >= 0 ||
540 *((UINT32 *)(Buffer + 1028)) == 0x7886b6d1) {
541 Volume->HasBootCode = TRUE;
542 Volume->OSIconName = L"netbsd";
543 Volume->OSName = L"NetBSD";
544
545 } else if (FindMem(Buffer, SECTOR_SIZE, "NTLDR", 5) >= 0) {
546 Volume->HasBootCode = TRUE;
547 Volume->OSIconName = L"win";
548 Volume->OSName = L"Windows";
549
550 } else if (FindMem(Buffer, SECTOR_SIZE, "BOOTMGR", 7) >= 0) {
551 Volume->HasBootCode = TRUE;
552 Volume->OSIconName = L"winvista,win";
553 Volume->OSName = L"Windows";
554
555 } else if (FindMem(Buffer, 512, "CPUBOOT SYS", 11) >= 0 ||
556 FindMem(Buffer, 512, "KERNEL SYS", 11) >= 0) {
557 Volume->HasBootCode = TRUE;
558 Volume->OSIconName = L"freedos";
559 Volume->OSName = L"FreeDOS";
560
561 } else if (FindMem(Buffer, 512, "OS2LDR", 6) >= 0 ||
562 FindMem(Buffer, 512, "OS2BOOT", 7) >= 0) {
563 Volume->HasBootCode = TRUE;
564 Volume->OSIconName = L"ecomstation";
565 Volume->OSName = L"eComStation";
566
567 } else if (FindMem(Buffer, 512, "Be Boot Loader", 14) >= 0) {
568 Volume->HasBootCode = TRUE;
569 Volume->OSIconName = L"beos";
570 Volume->OSName = L"BeOS";
571
572 } else if (FindMem(Buffer, 512, "yT Boot Loader", 14) >= 0) {
573 Volume->HasBootCode = TRUE;
574 Volume->OSIconName = L"zeta,beos";
575 Volume->OSName = L"ZETA";
576
577 } else if (FindMem(Buffer, 512, "\x04" "beos\x06" "system\x05" "zbeos", 18) >= 0 ||
578 FindMem(Buffer, 512, "\x06" "system\x0c" "haiku_loader", 20) >= 0) {
579 Volume->HasBootCode = TRUE;
580 Volume->OSIconName = L"haiku,beos";
581 Volume->OSName = L"Haiku";
582
583 }
584
585 // NOTE: If you add an operating system with a name that starts with 'W' or 'L', you
586 // need to fix AddLegacyEntry in main.c.
587
588 #if REFIT_DEBUG > 0
589 Print(L" Result of bootcode detection: %s %s (%s)\n",
590 Volume->HasBootCode ? L"bootable" : L"non-bootable",
591 Volume->OSName, Volume->OSIconName);
592 #endif
593
594 // dummy FAT boot sector (created by OS X's newfs_msdos)
595 if (FindMem(Buffer, 512, "Non-system disk", 15) >= 0)
596 Volume->HasBootCode = FALSE;
597
598 // dummy FAT boot sector (created by Linux's mkdosfs)
599 if (FindMem(Buffer, 512, "This is not a bootable disk", 27) >= 0)
600 Volume->HasBootCode = FALSE;
601
602 // dummy FAT boot sector (created by Windows)
603 if (FindMem(Buffer, 512, "Press any key to restart", 24) >= 0)
604 Volume->HasBootCode = FALSE;
605
606 // check for MBR partition table
607 if (*((UINT16 *)(Buffer + 510)) == 0xaa55) {
608 MbrTableFound = FALSE;
609 MbrTable = (MBR_PARTITION_INFO *)(Buffer + 446);
610 for (i = 0; i < 4; i++)
611 if (MbrTable[i].StartLBA && MbrTable[i].Size)
612 MbrTableFound = TRUE;
613 for (i = 0; i < 4; i++)
614 if (MbrTable[i].Flags != 0x00 && MbrTable[i].Flags != 0x80)
615 MbrTableFound = FALSE;
616 if (MbrTableFound) {
617 Volume->MbrPartitionTable = AllocatePool(4 * 16);
618 CopyMem(Volume->MbrPartitionTable, MbrTable, 4 * 16);
619 }
620 }
621
622 } else {
623 #if REFIT_DEBUG > 0
624 CheckError(Status, L"while reading boot sector");
625 #endif
626 }
627 } /* VOID ScanVolumeBootcode() */
628
629 // default volume badge icon based on disk kind
630 static VOID ScanVolumeDefaultIcon(IN OUT REFIT_VOLUME *Volume)
631 {
632 switch (Volume->DiskKind) {
633 case DISK_KIND_INTERNAL:
634 Volume->VolBadgeImage = BuiltinIcon(BUILTIN_ICON_VOL_INTERNAL);
635 break;
636 case DISK_KIND_EXTERNAL:
637 Volume->VolBadgeImage = BuiltinIcon(BUILTIN_ICON_VOL_EXTERNAL);
638 break;
639 case DISK_KIND_OPTICAL:
640 Volume->VolBadgeImage = BuiltinIcon(BUILTIN_ICON_VOL_OPTICAL);
641 break;
642 } // switch()
643 }
644
645 // Return a string representing the input size in IEEE-1541 units.
646 // The calling function is responsible for freeing the allocated memory.
647 static CHAR16 *SizeInIEEEUnits(UINT64 SizeInBytes) {
648 UINT64 SizeInIeee;
649 UINTN Index = 0, NumPrefixes;
650 CHAR16 *Units, *Prefixes = L" KMGTPEZ";
651 CHAR16 *TheValue;
652
653 TheValue = AllocateZeroPool(sizeof(CHAR16) * 256);
654 if (TheValue != NULL) {
655 NumPrefixes = StrLen(Prefixes);
656 SizeInIeee = SizeInBytes;
657 while ((SizeInIeee > 1024) && (Index < (NumPrefixes - 1))) {
658 Index++;
659 SizeInIeee /= 1024;
660 } // while
661 if (Prefixes[Index] == ' ') {
662 Units = StrDuplicate(L"-byte");
663 } else {
664 Units = StrDuplicate(L" iB");
665 Units[1] = Prefixes[Index];
666 } // if/else
667 SPrint(TheValue, 255, L"%ld%s", SizeInIeee, Units);
668 } // if
669 return TheValue;
670 } // CHAR16 *SizeInSIUnits()
671
672 // Return a name for the volume. Ideally this should be the label for the
673 // filesystem it contains, but this function falls back to describing the
674 // filesystem by size (200 MiB, etc.) and/or type (ext2, HFS+, etc.), if
675 // this information can be extracted.
676 // The calling function is responsible for freeing the memory allocated
677 // for the name string.
678 static CHAR16 *GetVolumeName(IN REFIT_VOLUME *Volume) {
679 EFI_FILE_SYSTEM_INFO *FileSystemInfoPtr;
680 CHAR16 *FoundName = NULL;
681 CHAR16 *SISize, *TypeName;
682
683 FileSystemInfoPtr = LibFileSystemInfo(Volume->RootDir);
684 if (FileSystemInfoPtr != NULL) { // we have filesystem information (size, label)....
685 if ((FileSystemInfoPtr->VolumeLabel != NULL) && (StrLen(FileSystemInfoPtr->VolumeLabel) > 0)) {
686 FoundName = StrDuplicate(FileSystemInfoPtr->VolumeLabel);
687 }
688
689 // Special case: rEFInd HFS+ driver always returns label of "HFS+ volume", so wipe
690 // this so that we can build a new name that includes the size....
691 if ((FoundName != NULL) && (StrCmp(FoundName, L"HFS+ volume") == 0) && (Volume->FSType == FS_TYPE_HFSPLUS)) {
692 MyFreePool(FoundName);
693 FoundName = NULL;
694 } // if rEFInd HFS+ driver suspected
695
696 if (FoundName == NULL) { // filesystem has no name, so use fs type and size
697 FoundName = AllocateZeroPool(sizeof(CHAR16) * 256);
698 if (FoundName != NULL) {
699 SISize = SizeInIEEEUnits(FileSystemInfoPtr->VolumeSize);
700 SPrint(FoundName, 255, L"%s%s volume", SISize, FSTypeName(Volume->FSType));
701 MyFreePool(SISize);
702 } // if allocated memory OK
703 } // if (FoundName == NULL)
704
705 FreePool(FileSystemInfoPtr);
706
707 } else { // fs driver not returning info; fall back on our own information....
708 FoundName = AllocateZeroPool(sizeof(CHAR16) * 256);
709 if (FoundName != NULL) {
710 TypeName = FSTypeName(Volume->FSType); // NOTE: Don't free TypeName; function returns constant
711 if (StrLen(TypeName) > 0)
712 SPrint(FoundName, 255, L"%s volume", FSTypeName(Volume->FSType));
713 else
714 SPrint(FoundName, 255, L"unknown volume");
715 } // if allocated memory OK
716 } // if
717
718 // TODO: Above could be improved/extended, in case filesystem name is not found,
719 // such as:
720 // - use partition label
721 // - use or add disk/partition number (e.g., "(hd0,2)")
722
723 // Desperate fallback name....
724 if (FoundName == NULL) {
725 FoundName = StrDuplicate(L"unknown volume");
726 }
727 return FoundName;
728 } // static CHAR16 *GetVolumeName()
729
730 VOID ScanVolume(REFIT_VOLUME *Volume)
731 {
732 EFI_STATUS Status;
733 EFI_DEVICE_PATH *DevicePath, *NextDevicePath;
734 EFI_DEVICE_PATH *DiskDevicePath, *RemainingDevicePath;
735 EFI_HANDLE WholeDiskHandle;
736 UINTN PartialLength;
737 BOOLEAN Bootable;
738
739 // get device path
740 Volume->DevicePath = DuplicateDevicePath(DevicePathFromHandle(Volume->DeviceHandle));
741 #if REFIT_DEBUG > 0
742 if (Volume->DevicePath != NULL) {
743 Print(L"* %s\n", DevicePathToStr(Volume->DevicePath));
744 #if REFIT_DEBUG >= 2
745 DumpHex(1, 0, DevicePathSize(Volume->DevicePath), Volume->DevicePath);
746 #endif
747 }
748 #endif
749
750 Volume->DiskKind = DISK_KIND_INTERNAL; // default
751
752 // get block i/o
753 Status = refit_call3_wrapper(BS->HandleProtocol, Volume->DeviceHandle, &BlockIoProtocol, (VOID **) &(Volume->BlockIO));
754 if (EFI_ERROR(Status)) {
755 Volume->BlockIO = NULL;
756 Print(L"Warning: Can't get BlockIO protocol.\n");
757 } else {
758 if (Volume->BlockIO->Media->BlockSize == 2048)
759 Volume->DiskKind = DISK_KIND_OPTICAL;
760 }
761
762 // scan for bootcode and MBR table
763 Bootable = FALSE;
764 ScanVolumeBootcode(Volume, &Bootable);
765
766 // detect device type
767 DevicePath = Volume->DevicePath;
768 while (DevicePath != NULL && !IsDevicePathEndType(DevicePath)) {
769 NextDevicePath = NextDevicePathNode(DevicePath);
770
771 if (DevicePathType(DevicePath) == MESSAGING_DEVICE_PATH &&
772 (DevicePathSubType(DevicePath) == MSG_USB_DP ||
773 DevicePathSubType(DevicePath) == MSG_USB_CLASS_DP ||
774 DevicePathSubType(DevicePath) == MSG_1394_DP ||
775 DevicePathSubType(DevicePath) == MSG_FIBRECHANNEL_DP))
776 Volume->DiskKind = DISK_KIND_EXTERNAL; // USB/FireWire/FC device -> external
777 if (DevicePathType(DevicePath) == MEDIA_DEVICE_PATH &&
778 DevicePathSubType(DevicePath) == MEDIA_CDROM_DP) {
779 Volume->DiskKind = DISK_KIND_OPTICAL; // El Torito entry -> optical disk
780 Bootable = TRUE;
781 }
782
783 if (DevicePathType(DevicePath) == MEDIA_DEVICE_PATH && DevicePathSubType(DevicePath) == MEDIA_VENDOR_DP) {
784 Volume->IsAppleLegacy = TRUE; // legacy BIOS device entry
785 // TODO: also check for Boot Camp GUID
786 Bootable = FALSE; // this handle's BlockIO is just an alias for the whole device
787 }
788
789 if (DevicePathType(DevicePath) == MESSAGING_DEVICE_PATH) {
790 // make a device path for the whole device
791 PartialLength = (UINT8 *)NextDevicePath - (UINT8 *)(Volume->DevicePath);
792 DiskDevicePath = (EFI_DEVICE_PATH *)AllocatePool(PartialLength + sizeof(EFI_DEVICE_PATH));
793 CopyMem(DiskDevicePath, Volume->DevicePath, PartialLength);
794 CopyMem((UINT8 *)DiskDevicePath + PartialLength, EndDevicePath, sizeof(EFI_DEVICE_PATH));
795
796 // get the handle for that path
797 RemainingDevicePath = DiskDevicePath;
798 Status = refit_call3_wrapper(BS->LocateDevicePath, &BlockIoProtocol, &RemainingDevicePath, &WholeDiskHandle);
799 FreePool(DiskDevicePath);
800
801 if (!EFI_ERROR(Status)) {
802 //Print(L" - original handle: %08x - disk handle: %08x\n", (UINT32)DeviceHandle, (UINT32)WholeDiskHandle);
803
804 // get the device path for later
805 Status = refit_call3_wrapper(BS->HandleProtocol, WholeDiskHandle, &DevicePathProtocol, (VOID **) &DiskDevicePath);
806 if (!EFI_ERROR(Status)) {
807 Volume->WholeDiskDevicePath = DuplicateDevicePath(DiskDevicePath);
808 }
809
810 // look at the BlockIO protocol
811 Status = refit_call3_wrapper(BS->HandleProtocol, WholeDiskHandle, &BlockIoProtocol, (VOID **) &Volume->WholeDiskBlockIO);
812 if (!EFI_ERROR(Status)) {
813
814 // check the media block size
815 if (Volume->WholeDiskBlockIO->Media->BlockSize == 2048)
816 Volume->DiskKind = DISK_KIND_OPTICAL;
817
818 } else {
819 Volume->WholeDiskBlockIO = NULL;
820 //CheckError(Status, L"from HandleProtocol");
821 }
822 } //else
823 // CheckError(Status, L"from LocateDevicePath");
824 }
825
826 DevicePath = NextDevicePath;
827 } // while
828
829 if (!Bootable) {
830 #if REFIT_DEBUG > 0
831 if (Volume->HasBootCode)
832 Print(L" Volume considered non-bootable, but boot code is present\n");
833 #endif
834 Volume->HasBootCode = FALSE;
835 }
836
837 // default volume icon based on disk kind
838 ScanVolumeDefaultIcon(Volume);
839
840 // open the root directory of the volume
841 Volume->RootDir = LibOpenRoot(Volume->DeviceHandle);
842 if (Volume->RootDir == NULL) {
843 Volume->IsReadable = FALSE;
844 return;
845 } else {
846 Volume->IsReadable = TRUE;
847 }
848
849 Volume->VolName = GetVolumeName(Volume);
850
851 // get custom volume icon if present
852 if (FileExists(Volume->RootDir, VOLUME_BADGE_NAME))
853 Volume->VolBadgeImage = LoadIcns(Volume->RootDir, VOLUME_BADGE_NAME, 32);
854 if (FileExists(Volume->RootDir, VOLUME_ICON_NAME)) {
855 Volume->VolIconImage = LoadIcns(Volume->RootDir, VOLUME_ICON_NAME, 128);
856 }
857 } // ScanVolume()
858
859 static VOID ScanExtendedPartition(REFIT_VOLUME *WholeDiskVolume, MBR_PARTITION_INFO *MbrEntry)
860 {
861 EFI_STATUS Status;
862 REFIT_VOLUME *Volume;
863 UINT32 ExtBase, ExtCurrent, NextExtCurrent;
864 UINTN i;
865 UINTN LogicalPartitionIndex = 4;
866 UINT8 SectorBuffer[512];
867 BOOLEAN Bootable;
868 MBR_PARTITION_INFO *EMbrTable;
869
870 ExtBase = MbrEntry->StartLBA;
871
872 for (ExtCurrent = ExtBase; ExtCurrent; ExtCurrent = NextExtCurrent) {
873 // read current EMBR
874 Status = refit_call5_wrapper(WholeDiskVolume->BlockIO->ReadBlocks,
875 WholeDiskVolume->BlockIO,
876 WholeDiskVolume->BlockIO->Media->MediaId,
877 ExtCurrent, 512, SectorBuffer);
878 if (EFI_ERROR(Status))
879 break;
880 if (*((UINT16 *)(SectorBuffer + 510)) != 0xaa55)
881 break;
882 EMbrTable = (MBR_PARTITION_INFO *)(SectorBuffer + 446);
883
884 // scan logical partitions in this EMBR
885 NextExtCurrent = 0;
886 for (i = 0; i < 4; i++) {
887 if ((EMbrTable[i].Flags != 0x00 && EMbrTable[i].Flags != 0x80) ||
888 EMbrTable[i].StartLBA == 0 || EMbrTable[i].Size == 0)
889 break;
890 if (IS_EXTENDED_PART_TYPE(EMbrTable[i].Type)) {
891 // set next ExtCurrent
892 NextExtCurrent = ExtBase + EMbrTable[i].StartLBA;
893 break;
894 } else {
895
896 // found a logical partition
897 Volume = AllocateZeroPool(sizeof(REFIT_VOLUME));
898 Volume->DiskKind = WholeDiskVolume->DiskKind;
899 Volume->IsMbrPartition = TRUE;
900 Volume->MbrPartitionIndex = LogicalPartitionIndex++;
901 Volume->VolName = AllocateZeroPool(256 * sizeof(UINT16));
902 SPrint(Volume->VolName, 255, L"Partition %d", Volume->MbrPartitionIndex + 1);
903 Volume->BlockIO = WholeDiskVolume->BlockIO;
904 Volume->BlockIOOffset = ExtCurrent + EMbrTable[i].StartLBA;
905 Volume->WholeDiskBlockIO = WholeDiskVolume->BlockIO;
906
907 Bootable = FALSE;
908 ScanVolumeBootcode(Volume, &Bootable);
909 if (!Bootable)
910 Volume->HasBootCode = FALSE;
911
912 ScanVolumeDefaultIcon(Volume);
913
914 AddListElement((VOID ***) &Volumes, &VolumesCount, Volume);
915
916 }
917 }
918 }
919 } /* VOID ScanExtendedPartition() */
920
921 VOID ScanVolumes(VOID)
922 {
923 EFI_STATUS Status;
924 UINTN HandleCount = 0;
925 UINTN HandleIndex;
926 EFI_HANDLE *Handles;
927 REFIT_VOLUME *Volume, *WholeDiskVolume;
928 UINTN VolumeIndex, VolumeIndex2;
929 MBR_PARTITION_INFO *MbrTable;
930 UINTN PartitionIndex;
931 UINT8 *SectorBuffer1, *SectorBuffer2;
932 UINTN SectorSum, i;
933
934 MyFreePool(Volumes);
935 Volumes = NULL;
936 VolumesCount = 0;
937
938 // get all filesystem handles
939 Status = LibLocateHandle(ByProtocol, &BlockIoProtocol, NULL, &HandleCount, &Handles);
940 // was: &FileSystemProtocol
941 if (Status == EFI_NOT_FOUND) {
942 return; // no filesystems. strange, but true...
943 }
944 if (CheckError(Status, L"while listing all file systems"))
945 return;
946
947 // first pass: collect information about all handles
948 for (HandleIndex = 0; HandleIndex < HandleCount; HandleIndex++) {
949 Volume = AllocateZeroPool(sizeof(REFIT_VOLUME));
950 Volume->DeviceHandle = Handles[HandleIndex];
951 ScanVolume(Volume);
952
953 AddListElement((VOID ***) &Volumes, &VolumesCount, Volume);
954
955 if (Volume->DeviceHandle == SelfLoadedImage->DeviceHandle)
956 SelfVolume = Volume;
957 }
958 MyFreePool(Handles);
959
960 if (SelfVolume == NULL)
961 Print(L"WARNING: SelfVolume not found");
962
963 // second pass: relate partitions and whole disk devices
964 for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
965 Volume = Volumes[VolumeIndex];
966 // check MBR partition table for extended partitions
967 if (Volume->BlockIO != NULL && Volume->WholeDiskBlockIO != NULL &&
968 Volume->BlockIO == Volume->WholeDiskBlockIO && Volume->BlockIOOffset == 0 &&
969 Volume->MbrPartitionTable != NULL) {
970 MbrTable = Volume->MbrPartitionTable;
971 for (PartitionIndex = 0; PartitionIndex < 4; PartitionIndex++) {
972 if (IS_EXTENDED_PART_TYPE(MbrTable[PartitionIndex].Type)) {
973 ScanExtendedPartition(Volume, MbrTable + PartitionIndex);
974 }
975 }
976 }
977
978 // search for corresponding whole disk volume entry
979 WholeDiskVolume = NULL;
980 if (Volume->BlockIO != NULL && Volume->WholeDiskBlockIO != NULL &&
981 Volume->BlockIO != Volume->WholeDiskBlockIO) {
982 for (VolumeIndex2 = 0; VolumeIndex2 < VolumesCount; VolumeIndex2++) {
983 if (Volumes[VolumeIndex2]->BlockIO == Volume->WholeDiskBlockIO &&
984 Volumes[VolumeIndex2]->BlockIOOffset == 0)
985 WholeDiskVolume = Volumes[VolumeIndex2];
986 }
987 }
988
989 if (WholeDiskVolume != NULL && WholeDiskVolume->MbrPartitionTable != NULL) {
990 // check if this volume is one of the partitions in the table
991 MbrTable = WholeDiskVolume->MbrPartitionTable;
992 SectorBuffer1 = AllocatePool(512);
993 SectorBuffer2 = AllocatePool(512);
994 for (PartitionIndex = 0; PartitionIndex < 4; PartitionIndex++) {
995 // check size
996 if ((UINT64)(MbrTable[PartitionIndex].Size) != Volume->BlockIO->Media->LastBlock + 1)
997 continue;
998
999 // compare boot sector read through offset vs. directly
1000 Status = refit_call5_wrapper(Volume->BlockIO->ReadBlocks,
1001 Volume->BlockIO, Volume->BlockIO->Media->MediaId,
1002 Volume->BlockIOOffset, 512, SectorBuffer1);
1003 if (EFI_ERROR(Status))
1004 break;
1005 Status = refit_call5_wrapper(Volume->WholeDiskBlockIO->ReadBlocks,
1006 Volume->WholeDiskBlockIO, Volume->WholeDiskBlockIO->Media->MediaId,
1007 MbrTable[PartitionIndex].StartLBA, 512, SectorBuffer2);
1008 if (EFI_ERROR(Status))
1009 break;
1010 if (CompareMem(SectorBuffer1, SectorBuffer2, 512) != 0)
1011 continue;
1012 SectorSum = 0;
1013 for (i = 0; i < 512; i++)
1014 SectorSum += SectorBuffer1[i];
1015 if (SectorSum < 1000)
1016 continue;
1017
1018 // TODO: mark entry as non-bootable if it is an extended partition
1019
1020 // now we're reasonably sure the association is correct...
1021 Volume->IsMbrPartition = TRUE;
1022 Volume->MbrPartitionIndex = PartitionIndex;
1023 if (Volume->VolName == NULL) {
1024 Volume->VolName = AllocateZeroPool(sizeof(CHAR16) * 256);
1025 SPrint(Volume->VolName, 255, L"Partition %d", PartitionIndex + 1);
1026 }
1027 break;
1028 }
1029
1030 MyFreePool(SectorBuffer1);
1031 MyFreePool(SectorBuffer2);
1032 }
1033
1034 } // for
1035 } /* VOID ScanVolumes() */
1036
1037 static VOID UninitVolumes(VOID)
1038 {
1039 REFIT_VOLUME *Volume;
1040 UINTN VolumeIndex;
1041
1042 for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
1043 Volume = Volumes[VolumeIndex];
1044
1045 if (Volume->RootDir != NULL) {
1046 refit_call1_wrapper(Volume->RootDir->Close, Volume->RootDir);
1047 Volume->RootDir = NULL;
1048 }
1049
1050 Volume->DeviceHandle = NULL;
1051 Volume->BlockIO = NULL;
1052 Volume->WholeDiskBlockIO = NULL;
1053 }
1054 }
1055
1056 VOID ReinitVolumes(VOID)
1057 {
1058 EFI_STATUS Status;
1059 REFIT_VOLUME *Volume;
1060 UINTN VolumeIndex;
1061 EFI_DEVICE_PATH *RemainingDevicePath;
1062 EFI_HANDLE DeviceHandle, WholeDiskHandle;
1063
1064 for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
1065 Volume = Volumes[VolumeIndex];
1066
1067 if (Volume->DevicePath != NULL) {
1068 // get the handle for that path
1069 RemainingDevicePath = Volume->DevicePath;
1070 Status = refit_call3_wrapper(BS->LocateDevicePath, &BlockIoProtocol, &RemainingDevicePath, &DeviceHandle);
1071
1072 if (!EFI_ERROR(Status)) {
1073 Volume->DeviceHandle = DeviceHandle;
1074
1075 // get the root directory
1076 Volume->RootDir = LibOpenRoot(Volume->DeviceHandle);
1077
1078 } else
1079 CheckError(Status, L"from LocateDevicePath");
1080 }
1081
1082 if (Volume->WholeDiskDevicePath != NULL) {
1083 // get the handle for that path
1084 RemainingDevicePath = Volume->WholeDiskDevicePath;
1085 Status = refit_call3_wrapper(BS->LocateDevicePath, &BlockIoProtocol, &RemainingDevicePath, &WholeDiskHandle);
1086
1087 if (!EFI_ERROR(Status)) {
1088 // get the BlockIO protocol
1089 Status = refit_call3_wrapper(BS->HandleProtocol, WholeDiskHandle, &BlockIoProtocol, (VOID **) &Volume->WholeDiskBlockIO);
1090 if (EFI_ERROR(Status)) {
1091 Volume->WholeDiskBlockIO = NULL;
1092 CheckError(Status, L"from HandleProtocol");
1093 }
1094 } else
1095 CheckError(Status, L"from LocateDevicePath");
1096 }
1097 }
1098 }
1099
1100 //
1101 // file and dir functions
1102 //
1103
1104 BOOLEAN FileExists(IN EFI_FILE *BaseDir, IN CHAR16 *RelativePath)
1105 {
1106 EFI_STATUS Status;
1107 EFI_FILE_HANDLE TestFile;
1108
1109 Status = refit_call5_wrapper(BaseDir->Open, BaseDir, &TestFile, RelativePath, EFI_FILE_MODE_READ, 0);
1110 if (Status == EFI_SUCCESS) {
1111 refit_call1_wrapper(TestFile->Close, TestFile);
1112 return TRUE;
1113 }
1114 return FALSE;
1115 }
1116
1117 EFI_STATUS DirNextEntry(IN EFI_FILE *Directory, IN OUT EFI_FILE_INFO **DirEntry, IN UINTN FilterMode)
1118 {
1119 EFI_STATUS Status;
1120 VOID *Buffer;
1121 UINTN LastBufferSize, BufferSize;
1122 INTN IterCount;
1123
1124 for (;;) {
1125
1126 // free pointer from last call
1127 if (*DirEntry != NULL) {
1128 FreePool(*DirEntry);
1129 *DirEntry = NULL;
1130 }
1131
1132 // read next directory entry
1133 LastBufferSize = BufferSize = 256;
1134 Buffer = AllocatePool(BufferSize);
1135 for (IterCount = 0; ; IterCount++) {
1136 Status = refit_call3_wrapper(Directory->Read, Directory, &BufferSize, Buffer);
1137 if (Status != EFI_BUFFER_TOO_SMALL || IterCount >= 4)
1138 break;
1139 if (BufferSize <= LastBufferSize) {
1140 Print(L"FS Driver requests bad buffer size %d (was %d), using %d instead\n", BufferSize, LastBufferSize, LastBufferSize * 2);
1141 BufferSize = LastBufferSize * 2;
1142 #if REFIT_DEBUG > 0
1143 } else {
1144 Print(L"Reallocating buffer from %d to %d\n", LastBufferSize, BufferSize);
1145 #endif
1146 }
1147 Buffer = EfiReallocatePool(Buffer, LastBufferSize, BufferSize);
1148 LastBufferSize = BufferSize;
1149 }
1150 if (EFI_ERROR(Status)) {
1151 FreePool(Buffer);
1152 break;
1153 }
1154
1155 // check for end of listing
1156 if (BufferSize == 0) { // end of directory listing
1157 FreePool(Buffer);
1158 break;
1159 }
1160
1161 // entry is ready to be returned
1162 *DirEntry = (EFI_FILE_INFO *)Buffer;
1163
1164 // filter results
1165 if (FilterMode == 1) { // only return directories
1166 if (((*DirEntry)->Attribute & EFI_FILE_DIRECTORY))
1167 break;
1168 } else if (FilterMode == 2) { // only return files
1169 if (((*DirEntry)->Attribute & EFI_FILE_DIRECTORY) == 0)
1170 break;
1171 } else // no filter or unknown filter -> return everything
1172 break;
1173
1174 }
1175 return Status;
1176 }
1177
1178 VOID DirIterOpen(IN EFI_FILE *BaseDir, IN CHAR16 *RelativePath OPTIONAL, OUT REFIT_DIR_ITER *DirIter)
1179 {
1180 if (RelativePath == NULL) {
1181 DirIter->LastStatus = EFI_SUCCESS;
1182 DirIter->DirHandle = BaseDir;
1183 DirIter->CloseDirHandle = FALSE;
1184 } else {
1185 DirIter->LastStatus = refit_call5_wrapper(BaseDir->Open, BaseDir, &(DirIter->DirHandle), RelativePath, EFI_FILE_MODE_READ, 0);
1186 DirIter->CloseDirHandle = EFI_ERROR(DirIter->LastStatus) ? FALSE : TRUE;
1187 }
1188 DirIter->LastFileInfo = NULL;
1189 }
1190
1191 #ifndef __MAKEWITH_GNUEFI
1192 EFI_UNICODE_COLLATION_PROTOCOL *mUnicodeCollation = NULL;
1193
1194 static EFI_STATUS
1195 InitializeUnicodeCollationProtocol (VOID)
1196 {
1197 EFI_STATUS Status;
1198
1199 if (mUnicodeCollation != NULL) {
1200 return EFI_SUCCESS;
1201 }
1202
1203 //
1204 // BUGBUG: Proper impelmentation is to locate all Unicode Collation Protocol
1205 // instances first and then select one which support English language.
1206 // Current implementation just pick the first instance.
1207 //
1208 Status = gBS->LocateProtocol (
1209 &gEfiUnicodeCollation2ProtocolGuid,
1210 NULL,
1211 (VOID **) &mUnicodeCollation
1212 );
1213 if (EFI_ERROR(Status)) {
1214 Status = gBS->LocateProtocol (
1215 &gEfiUnicodeCollationProtocolGuid,
1216 NULL,
1217 (VOID **) &mUnicodeCollation
1218 );
1219
1220 }
1221 return Status;
1222 }
1223
1224 static BOOLEAN
1225 MetaiMatch (IN CHAR16 *String, IN CHAR16 *Pattern)
1226 {
1227 if (!mUnicodeCollation) {
1228 InitializeUnicodeCollationProtocol();
1229 }
1230 if (mUnicodeCollation)
1231 return mUnicodeCollation->MetaiMatch (mUnicodeCollation, String, Pattern);
1232 return FALSE; // Shouldn't happen
1233 }
1234
1235 static VOID StrLwr (IN OUT CHAR16 *Str) {
1236 if (!mUnicodeCollation) {
1237 InitializeUnicodeCollationProtocol();
1238 }
1239 if (mUnicodeCollation)
1240 mUnicodeCollation->StrLwr (mUnicodeCollation, Str);
1241 }
1242
1243 #endif
1244
1245 BOOLEAN DirIterNext(IN OUT REFIT_DIR_ITER *DirIter, IN UINTN FilterMode, IN CHAR16 *FilePattern OPTIONAL,
1246 OUT EFI_FILE_INFO **DirEntry)
1247 {
1248 BOOLEAN KeepGoing = TRUE;
1249 UINTN i;
1250 CHAR16 *OnePattern;
1251
1252 if (DirIter->LastFileInfo != NULL) {
1253 FreePool(DirIter->LastFileInfo);
1254 DirIter->LastFileInfo = NULL;
1255 }
1256
1257 if (EFI_ERROR(DirIter->LastStatus))
1258 return FALSE; // stop iteration
1259
1260 do {
1261 DirIter->LastStatus = DirNextEntry(DirIter->DirHandle, &(DirIter->LastFileInfo), FilterMode);
1262 if (EFI_ERROR(DirIter->LastStatus))
1263 return FALSE;
1264 if (DirIter->LastFileInfo == NULL) // end of listing
1265 return FALSE;
1266 if (FilePattern != NULL) {
1267 if ((DirIter->LastFileInfo->Attribute & EFI_FILE_DIRECTORY))
1268 KeepGoing = FALSE;
1269 i = 0;
1270 while (KeepGoing && (OnePattern = FindCommaDelimited(FilePattern, i++)) != NULL) {
1271 if (MetaiMatch(DirIter->LastFileInfo->FileName, OnePattern))
1272 KeepGoing = FALSE;
1273 } // while
1274 // else continue loop
1275 } else
1276 break;
1277 } while (KeepGoing);
1278
1279 *DirEntry = DirIter->LastFileInfo;
1280 return TRUE;
1281 }
1282
1283 EFI_STATUS DirIterClose(IN OUT REFIT_DIR_ITER *DirIter)
1284 {
1285 if (DirIter->LastFileInfo != NULL) {
1286 FreePool(DirIter->LastFileInfo);
1287 DirIter->LastFileInfo = NULL;
1288 }
1289 if (DirIter->CloseDirHandle)
1290 refit_call1_wrapper(DirIter->DirHandle->Close, DirIter->DirHandle);
1291 return DirIter->LastStatus;
1292 }
1293
1294 //
1295 // file name manipulation
1296 //
1297
1298 // Returns the filename portion (minus path name) of the
1299 // specified file
1300 CHAR16 * Basename(IN CHAR16 *Path)
1301 {
1302 CHAR16 *FileName;
1303 UINTN i;
1304
1305 FileName = Path;
1306
1307 if (Path != NULL) {
1308 for (i = StrLen(Path); i > 0; i--) {
1309 if (Path[i-1] == '\\' || Path[i-1] == '/') {
1310 FileName = Path + i;
1311 break;
1312 }
1313 }
1314 }
1315
1316 return FileName;
1317 }
1318
1319 // Replaces a filename extension of ".efi" with the specified string
1320 // (Extension). If the input Path doesn't end in ".efi", Extension
1321 // is added to the existing filename.
1322 VOID ReplaceEfiExtension(IN OUT CHAR16 *Path, IN CHAR16 *Extension)
1323 {
1324 UINTN PathLen;
1325
1326 PathLen = StrLen(Path);
1327 // Note: Do StriCmp() twice to work around Gigabyte Hybrid EFI case-sensitivity bug....
1328 if ((PathLen >= 4) && ((StriCmp(&Path[PathLen - 4], L".efi") == 0) || (StriCmp(&Path[PathLen - 4], L".EFI") == 0))) {
1329 Path[PathLen - 4] = 0;
1330 } // if
1331 StrCat(Path, Extension);
1332 } // VOID ReplaceEfiExtension()
1333
1334 //
1335 // memory string search
1336 //
1337
1338 INTN FindMem(IN VOID *Buffer, IN UINTN BufferLength, IN VOID *SearchString, IN UINTN SearchStringLength)
1339 {
1340 UINT8 *BufferPtr;
1341 UINTN Offset;
1342
1343 BufferPtr = Buffer;
1344 BufferLength -= SearchStringLength;
1345 for (Offset = 0; Offset < BufferLength; Offset++, BufferPtr++) {
1346 if (CompareMem(BufferPtr, SearchString, SearchStringLength) == 0)
1347 return (INTN)Offset;
1348 }
1349
1350 return -1;
1351 }
1352
1353 // Performs a case-insensitive search of BigStr for SmallStr.
1354 // Returns TRUE if found, FALSE if not.
1355 BOOLEAN StriSubCmp(IN CHAR16 *SmallStr, IN CHAR16 *BigStr) {
1356 CHAR16 *SmallCopy, *BigCopy;
1357 BOOLEAN Found = FALSE;
1358 UINTN StartPoint = 0, NumCompares = 0, SmallLen = 0;
1359
1360 if ((SmallStr != NULL) && (BigStr != NULL) && (StrLen(BigStr) >= StrLen(SmallStr))) {
1361 SmallCopy = StrDuplicate(SmallStr);
1362 BigCopy = StrDuplicate(BigStr);
1363 StrLwr(SmallCopy);
1364 StrLwr(BigCopy);
1365 SmallLen = StrLen(SmallCopy);
1366 NumCompares = StrLen(BigCopy) - SmallLen + 1;
1367 while ((!Found) && (StartPoint < NumCompares)) {
1368 Found = (StrnCmp(SmallCopy, &BigCopy[StartPoint++], SmallLen) == 0);
1369 } // while
1370 MyFreePool(SmallCopy);
1371 MyFreePool(BigCopy);
1372 } // if
1373
1374 return (Found);
1375 } // BOOLEAN StriSubCmp()
1376
1377 // Merges two strings, creating a new one and returning a pointer to it.
1378 // If AddChar != 0, the specified character is placed between the two original
1379 // strings (unless the first string is NULL or empty). The original input
1380 // string *First is de-allocated and replaced by the new merged string.
1381 // This is similar to StrCat, but safer and more flexible because
1382 // MergeStrings allocates memory that's the correct size for the
1383 // new merged string, so it can take a NULL *First and it cleans
1384 // up the old memory. It should *NOT* be used with a constant
1385 // *First, though....
1386 VOID MergeStrings(IN OUT CHAR16 **First, IN CHAR16 *Second, CHAR16 AddChar) {
1387 UINTN Length1 = 0, Length2 = 0;
1388 CHAR16* NewString;
1389
1390 if (*First != NULL)
1391 Length1 = StrLen(*First);
1392 if (Second != NULL)
1393 Length2 = StrLen(Second);
1394 NewString = AllocatePool(sizeof(CHAR16) * (Length1 + Length2 + 2));
1395 if (NewString != NULL) {
1396 if ((*First != NULL) && (StrLen(*First) == 0)) {
1397 MyFreePool(*First);
1398 *First = NULL;
1399 }
1400 NewString[0] = L'\0';
1401 if (*First != NULL) {
1402 StrCat(NewString, *First);
1403 if (AddChar) {
1404 NewString[Length1] = AddChar;
1405 NewString[Length1 + 1] = '\0';
1406 } // if (AddChar)
1407 } // if (*First != NULL)
1408 if (Second != NULL)
1409 StrCat(NewString, Second);
1410 MyFreePool(*First);
1411 *First = NewString;
1412 } else {
1413 Print(L"Error! Unable to allocate memory in MergeStrings()!\n");
1414 } // if/else
1415 } // static CHAR16* MergeStrings()
1416
1417 // Takes an input pathname (*Path) and returns the part of the filename from
1418 // the final dot onwards, converted to lowercase. If the filename includes
1419 // no dots, or if the input is NULL, returns an empty (but allocated) string.
1420 // The calling function is responsible for freeing the memory associated with
1421 // the return value.
1422 CHAR16 *FindExtension(IN CHAR16 *Path) {
1423 CHAR16 *Extension;
1424 BOOLEAN Found = FALSE, FoundSlash = FALSE;
1425 UINTN i;
1426
1427 Extension = AllocateZeroPool(sizeof(CHAR16));
1428 if (Path) {
1429 i = StrLen(Path);
1430 while ((!Found) && (!FoundSlash) && (i >= 0)) {
1431 if (Path[i] == L'.')
1432 Found = TRUE;
1433 else if ((Path[i] == L'/') || (Path[i] == L'\\'))
1434 FoundSlash = TRUE;
1435 if (!Found)
1436 i--;
1437 } // while
1438 if (Found) {
1439 MergeStrings(&Extension, &Path[i], 0);
1440 StrLwr(Extension);
1441 } // if (Found)
1442 } // if
1443 return (Extension);
1444 } // CHAR16 *FindExtension
1445
1446 // Takes an input pathname (*Path) and locates the final directory component
1447 // of that name. For instance, if the input path is 'EFI\foo\bar.efi', this
1448 // function returns the string 'foo'.
1449 // Assumes the pathname is separated with backslashes.
1450 CHAR16 *FindLastDirName(IN CHAR16 *Path) {
1451 UINTN i, StartOfElement = 0, EndOfElement = 0, PathLength, CopyLength;
1452 CHAR16 *Found = NULL;
1453
1454 PathLength = StrLen(Path);
1455 // Find start & end of target element
1456 for (i = 0; i < PathLength; i++) {
1457 if (Path[i] == '\\') {
1458 StartOfElement = EndOfElement;
1459 EndOfElement = i;
1460 } // if
1461 } // for
1462 // Extract the target element
1463 if (EndOfElement > 0) {
1464 while ((StartOfElement < PathLength) && (Path[StartOfElement] == '\\')) {
1465 StartOfElement++;
1466 } // while
1467 EndOfElement--;
1468 if (EndOfElement >= StartOfElement) {
1469 CopyLength = EndOfElement - StartOfElement + 1;
1470 Found = StrDuplicate(&Path[StartOfElement]);
1471 if (Found != NULL)
1472 Found[CopyLength] = 0;
1473 } // if (EndOfElement >= StartOfElement)
1474 } // if (EndOfElement > 0)
1475 return (Found);
1476 } // CHAR16 *FindLastDirName
1477
1478 // Returns the directory portion of a pathname. For instance,
1479 // if FullPath is 'EFI\foo\bar.efi', this function returns the
1480 // string 'EFI\foo'. The calling function is responsible for
1481 // freeing the returned string's memory.
1482 CHAR16 *FindPath(IN CHAR16* FullPath) {
1483 UINTN i, LastBackslash = 0;
1484 CHAR16 *PathOnly;
1485
1486 for (i = 0; i < StrLen(FullPath); i++) {
1487 if (FullPath[i] == '\\')
1488 LastBackslash = i;
1489 } // for
1490 PathOnly = StrDuplicate(FullPath);
1491 PathOnly[LastBackslash] = 0;
1492 return (PathOnly);
1493 }
1494
1495 // Takes an input loadpath, splits it into disk and filename components, finds a matching
1496 // DeviceVolume, and returns that and the filename (*loader).
1497 VOID FindVolumeAndFilename(IN EFI_DEVICE_PATH *loadpath, OUT REFIT_VOLUME **DeviceVolume, OUT CHAR16 **loader) {
1498 CHAR16 *DeviceString, *VolumeDeviceString, *Temp;
1499 UINTN i = 0;
1500 BOOLEAN Found = FALSE;
1501
1502 MyFreePool(*loader);
1503 MyFreePool(*DeviceVolume);
1504 *DeviceVolume = NULL;
1505 DeviceString = DevicePathToStr(loadpath);
1506 *loader = SplitDeviceString(DeviceString);
1507
1508 while ((i < VolumesCount) && (!Found)) {
1509 VolumeDeviceString = DevicePathToStr(Volumes[i]->DevicePath);
1510 Temp = SplitDeviceString(VolumeDeviceString);
1511 if (StriCmp(DeviceString, VolumeDeviceString) == 0) {
1512 Found = TRUE;
1513 *DeviceVolume = Volumes[i];
1514 }
1515 MyFreePool(Temp);
1516 MyFreePool(VolumeDeviceString);
1517 i++;
1518 } // while
1519
1520 MyFreePool(DeviceString);
1521 } // VOID FindVolumeAndFilename()
1522
1523 // Returns all the digits in the input string, including intervening
1524 // non-digit characters. For instance, if InString is "foo-3.3.4-7.img",
1525 // this function returns "3.3.4-7". If InString contains no digits,
1526 // the return value is NULL.
1527 CHAR16 *FindNumbers(IN CHAR16 *InString) {
1528 UINTN i, StartOfElement, EndOfElement = 0, InLength, CopyLength;
1529 CHAR16 *Found = NULL;
1530
1531 InLength = StartOfElement = StrLen(InString);
1532 // Find start & end of target element
1533 for (i = 0; i < InLength; i++) {
1534 if ((InString[i] >= '0') && (InString[i] <= '9')) {
1535 if (StartOfElement > i)
1536 StartOfElement = i;
1537 if (EndOfElement < i)
1538 EndOfElement = i;
1539 } // if
1540 } // for
1541 // Extract the target element
1542 if (EndOfElement > 0) {
1543 if (EndOfElement >= StartOfElement) {
1544 CopyLength = EndOfElement - StartOfElement + 1;
1545 Found = StrDuplicate(&InString[StartOfElement]);
1546 if (Found != NULL)
1547 Found[CopyLength] = 0;
1548 } // if (EndOfElement >= StartOfElement)
1549 } // if (EndOfElement > 0)
1550 return (Found);
1551 } // CHAR16 *FindNumbers()
1552
1553 // Find the #Index element (numbered from 0) in a comma-delimited string
1554 // of elements.
1555 // Returns the found element, or NULL if Index is out of range or InString
1556 // is NULL. Note that the calling function is responsible for freeing the
1557 // memory associated with the returned string pointer.
1558 CHAR16 *FindCommaDelimited(IN CHAR16 *InString, IN UINTN Index) {
1559 UINTN StartPos = 0, CurPos = 0;
1560 BOOLEAN Found = FALSE;
1561 CHAR16 *FoundString = NULL;
1562
1563 if (InString != NULL) {
1564 // After while() loop, StartPos marks start of item #Index
1565 while ((Index > 0) && (CurPos < StrLen(InString))) {
1566 if (InString[CurPos] == L',') {
1567 Index--;
1568 StartPos = CurPos + 1;
1569 } // if
1570 CurPos++;
1571 } // while
1572 // After while() loop, CurPos is one past the end of the element
1573 while ((CurPos < StrLen(InString)) && (!Found)) {
1574 if (InString[CurPos] == L',')
1575 Found = TRUE;
1576 else
1577 CurPos++;
1578 } // while
1579 if (Index == 0)
1580 FoundString = StrDuplicate(&InString[StartPos]);
1581 if (FoundString != NULL)
1582 FoundString[CurPos - StartPos] = 0;
1583 } // if
1584 return (FoundString);
1585 } // CHAR16 *FindCommaDelimited()
1586
1587 // Returns TRUE if SmallString is an element in the comma-delimited List,
1588 // FALSE otherwise. Performs comparison case-insensitively (except on
1589 // buggy EFIs with case-sensitive StriCmp() functions).
1590 BOOLEAN IsIn(IN CHAR16 *SmallString, IN CHAR16 *List) {
1591 UINTN i = 0;
1592 BOOLEAN Found = FALSE;
1593 CHAR16 *OneElement;
1594
1595 if (SmallString && List) {
1596 while (!Found && (OneElement = FindCommaDelimited(List, i++))) {
1597 if (StriCmp(OneElement, SmallString) == 0)
1598 Found = TRUE;
1599 } // while
1600 } // if
1601 return Found;
1602 } // BOOLEAN IsIn()
1603
1604 // Implement FreePool the way it should have been done to begin with, so that
1605 // it doesn't throw an ASSERT message if fed a NULL pointer....
1606 VOID MyFreePool(IN OUT VOID *Pointer) {
1607 if (Pointer != NULL)
1608 FreePool(Pointer);
1609 }
1610
1611 static EFI_GUID AppleRemovableMediaGuid = APPLE_REMOVABLE_MEDIA_PROTOCOL_GUID;
1612
1613 // Eject all removable media.
1614 // Returns TRUE if any media were ejected, FALSE otherwise.
1615 BOOLEAN EjectMedia(VOID) {
1616 EFI_STATUS Status;
1617 UINTN HandleIndex, HandleCount = 0, Ejected = 0;
1618 EFI_HANDLE *Handles, Handle;
1619 APPLE_REMOVABLE_MEDIA_PROTOCOL *Ejectable;
1620
1621 Status = LibLocateHandle(ByProtocol, &AppleRemovableMediaGuid, NULL, &HandleCount, &Handles);
1622 if (EFI_ERROR(Status) || HandleCount == 0)
1623 return (FALSE); // probably not an Apple system
1624
1625 for (HandleIndex = 0; HandleIndex < HandleCount; HandleIndex++) {
1626 Handle = Handles[HandleIndex];
1627 Status = refit_call3_wrapper(BS->HandleProtocol, Handle, &AppleRemovableMediaGuid, (VOID **) &Ejectable);
1628 if (EFI_ERROR(Status))
1629 continue;
1630 Status = refit_call1_wrapper(Ejectable->Eject, Ejectable);
1631 if (!EFI_ERROR(Status))
1632 Ejected++;
1633 }
1634 MyFreePool(Handles);
1635 return (Ejected > 0);
1636 } // VOID EjectMedia()
1637
1638
1639 // Return the GUID as a string, suitable for display to the user. Note that the calling
1640 // function is responsible for freeing the allocated memory.
1641 CHAR16 * GuidAsString(EFI_GUID *GuidData) {
1642 CHAR16 *TheString;
1643
1644 TheString = AllocateZeroPool(42 * sizeof(CHAR16));
1645 if (TheString != 0) {
1646 SPrint (TheString, 82, L"%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x",
1647 (UINTN)GuidData->Data1, (UINTN)GuidData->Data2, (UINTN)GuidData->Data3,
1648 (UINTN)GuidData->Data4[0], (UINTN)GuidData->Data4[1], (UINTN)GuidData->Data4[2],
1649 (UINTN)GuidData->Data4[3], (UINTN)GuidData->Data4[4], (UINTN)GuidData->Data4[5],
1650 (UINTN)GuidData->Data4[6], (UINTN)GuidData->Data4[7]);
1651 }
1652 return TheString;
1653 } // GuidAsString(EFI_GUID *GuidData)