]> code.delx.au - refind/blob - refind/lib.c
Refinement to hint function for greater context sensitivity.
[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(IN OUT REFIT_VOLUME *Volume, OUT 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 }
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 float SizeInIeee;
649 UINTN Index = 0;
650 CHAR16 *Units, *Prefixes = L" KMGTPEZ";
651 CHAR16 *TheValue;
652
653 TheValue = AllocateZeroPool(sizeof(CHAR16) * 80);
654 if (TheValue != NULL) {
655 SizeInIeee = (float) SizeInBytes;
656 while ((SizeInIeee > 1024.0) && (Index < (StrLen(Prefixes) - 1))) {
657 Index++;
658 SizeInIeee /= 1024.0;
659 } // while
660 if (Prefixes[Index] == ' ') {
661 Units = StrDuplicate(L"-byte");
662 } else {
663 Units = StrDuplicate(L" iB");
664 Units[1] = Prefixes[Index];
665 } // if/else
666 SPrint(TheValue, 79, L"%d%s", (UINTN) SizeInIeee, Units);
667 } // if
668 return TheValue;
669 } // CHAR16 *SizeInSIUnits()
670
671 // Return a name for the volume. Ideally this should be the label for the
672 // filesystem it contains, but this function falls back to describing the
673 // filesystem by size (200 MiB, etc.) and/or type (ext2, HFS+, etc.), if
674 // this information can be extracted.
675 // The calling function is responsible for freeing the memory allocated
676 // for the name string.
677 static CHAR16 *GetVolumeName(IN REFIT_VOLUME *Volume) {
678 EFI_FILE_SYSTEM_INFO *FileSystemInfoPtr;
679 CHAR16 *FoundName = NULL;
680 CHAR16 *SISize, *TypeName;
681
682 FileSystemInfoPtr = LibFileSystemInfo(Volume->RootDir);
683 if (FileSystemInfoPtr != NULL) { // we have filesystem information (size, label)....
684 if ((FileSystemInfoPtr->VolumeLabel != NULL) && (StrLen(FileSystemInfoPtr->VolumeLabel) > 0)) {
685 FoundName = StrDuplicate(FileSystemInfoPtr->VolumeLabel);
686 }
687
688 // Special case: rEFInd HFS+ driver always returns label of "HFS+ volume", so wipe
689 // this so that we can build a new name that includes the size....
690 if ((FoundName != NULL) && (StrCmp(FoundName, L"HFS+ volume") == 0) && (Volume->FSType == FS_TYPE_HFSPLUS)) {
691 MyFreePool(FoundName);
692 FoundName = NULL;
693 } // if rEFInd HFS+ driver suspected
694
695 if (FoundName == NULL) { // filesystem has no name, so use fs type and size
696 FoundName = AllocateZeroPool(sizeof(CHAR16) * 256);
697 if (FoundName != NULL) {
698 SISize = SizeInIEEEUnits(FileSystemInfoPtr->VolumeSize);
699 SPrint(FoundName, 255, L"%s%s volume", SISize, FSTypeName(Volume->FSType));
700 MyFreePool(SISize);
701 } // if allocated memory OK
702 } // if (FoundName == NULL)
703
704 FreePool(FileSystemInfoPtr);
705
706 } else { // fs driver not returning info; fall back on our own information....
707 FoundName = AllocateZeroPool(sizeof(CHAR16) * 256);
708 if (FoundName != NULL) {
709 TypeName = FSTypeName(Volume->FSType); // NOTE: Don't free TypeName; function returns constant
710 if (StrLen(TypeName) > 0)
711 SPrint(FoundName, 255, L"%s volume", FSTypeName(Volume->FSType));
712 else
713 SPrint(FoundName, 255, L"unknown volume");
714 } // if allocated memory OK
715 } // if
716
717 // TODO: Above could be improved/extended, in case filesystem name is not found,
718 // such as:
719 // - use partition label
720 // - use or add disk/partition number (e.g., "(hd0,2)")
721
722 // Desperate fallback name....
723 if (FoundName == NULL) {
724 FoundName = StrDuplicate(L"unknown volume");
725 }
726 return FoundName;
727 } // static CHAR16 *GetVolumeName()
728
729 VOID ScanVolume(IN OUT REFIT_VOLUME *Volume)
730 {
731 EFI_STATUS Status;
732 EFI_DEVICE_PATH *DevicePath, *NextDevicePath;
733 EFI_DEVICE_PATH *DiskDevicePath, *RemainingDevicePath;
734 EFI_HANDLE WholeDiskHandle;
735 UINTN PartialLength;
736 BOOLEAN Bootable;
737
738 // get device path
739 Volume->DevicePath = DuplicateDevicePath(DevicePathFromHandle(Volume->DeviceHandle));
740 #if REFIT_DEBUG > 0
741 if (Volume->DevicePath != NULL) {
742 Print(L"* %s\n", DevicePathToStr(Volume->DevicePath));
743 #if REFIT_DEBUG >= 2
744 DumpHex(1, 0, DevicePathSize(Volume->DevicePath), Volume->DevicePath);
745 #endif
746 }
747 #endif
748
749 Volume->DiskKind = DISK_KIND_INTERNAL; // default
750
751 // get block i/o
752 Status = refit_call3_wrapper(BS->HandleProtocol, Volume->DeviceHandle, &BlockIoProtocol, (VOID **) &(Volume->BlockIO));
753 if (EFI_ERROR(Status)) {
754 Volume->BlockIO = NULL;
755 Print(L"Warning: Can't get BlockIO protocol.\n");
756 } else {
757 if (Volume->BlockIO->Media->BlockSize == 2048)
758 Volume->DiskKind = DISK_KIND_OPTICAL;
759 }
760
761 // scan for bootcode and MBR table
762 Bootable = FALSE;
763 ScanVolumeBootcode(Volume, &Bootable);
764
765 // detect device type
766 DevicePath = Volume->DevicePath;
767 while (DevicePath != NULL && !IsDevicePathEndType(DevicePath)) {
768 NextDevicePath = NextDevicePathNode(DevicePath);
769
770 if (DevicePathType(DevicePath) == MESSAGING_DEVICE_PATH &&
771 (DevicePathSubType(DevicePath) == MSG_USB_DP ||
772 DevicePathSubType(DevicePath) == MSG_USB_CLASS_DP ||
773 DevicePathSubType(DevicePath) == MSG_1394_DP ||
774 DevicePathSubType(DevicePath) == MSG_FIBRECHANNEL_DP))
775 Volume->DiskKind = DISK_KIND_EXTERNAL; // USB/FireWire/FC device -> external
776 if (DevicePathType(DevicePath) == MEDIA_DEVICE_PATH &&
777 DevicePathSubType(DevicePath) == MEDIA_CDROM_DP) {
778 Volume->DiskKind = DISK_KIND_OPTICAL; // El Torito entry -> optical disk
779 Bootable = TRUE;
780 }
781
782 if (DevicePathType(DevicePath) == MEDIA_DEVICE_PATH && DevicePathSubType(DevicePath) == MEDIA_VENDOR_DP) {
783 Volume->IsAppleLegacy = TRUE; // legacy BIOS device entry
784 // TODO: also check for Boot Camp GUID
785 Bootable = FALSE; // this handle's BlockIO is just an alias for the whole device
786 }
787
788 if (DevicePathType(DevicePath) == MESSAGING_DEVICE_PATH) {
789 // make a device path for the whole device
790 PartialLength = (UINT8 *)NextDevicePath - (UINT8 *)(Volume->DevicePath);
791 DiskDevicePath = (EFI_DEVICE_PATH *)AllocatePool(PartialLength + sizeof(EFI_DEVICE_PATH));
792 CopyMem(DiskDevicePath, Volume->DevicePath, PartialLength);
793 CopyMem((UINT8 *)DiskDevicePath + PartialLength, EndDevicePath, sizeof(EFI_DEVICE_PATH));
794
795 // get the handle for that path
796 RemainingDevicePath = DiskDevicePath;
797 Status = refit_call3_wrapper(BS->LocateDevicePath, &BlockIoProtocol, &RemainingDevicePath, &WholeDiskHandle);
798 FreePool(DiskDevicePath);
799
800 if (!EFI_ERROR(Status)) {
801 //Print(L" - original handle: %08x - disk handle: %08x\n", (UINT32)DeviceHandle, (UINT32)WholeDiskHandle);
802
803 // get the device path for later
804 Status = refit_call3_wrapper(BS->HandleProtocol, WholeDiskHandle, &DevicePathProtocol, (VOID **) &DiskDevicePath);
805 if (!EFI_ERROR(Status)) {
806 Volume->WholeDiskDevicePath = DuplicateDevicePath(DiskDevicePath);
807 }
808
809 // look at the BlockIO protocol
810 Status = refit_call3_wrapper(BS->HandleProtocol, WholeDiskHandle, &BlockIoProtocol, (VOID **) &Volume->WholeDiskBlockIO);
811 if (!EFI_ERROR(Status)) {
812
813 // check the media block size
814 if (Volume->WholeDiskBlockIO->Media->BlockSize == 2048)
815 Volume->DiskKind = DISK_KIND_OPTICAL;
816
817 } else {
818 Volume->WholeDiskBlockIO = NULL;
819 //CheckError(Status, L"from HandleProtocol");
820 }
821 } //else
822 // CheckError(Status, L"from LocateDevicePath");
823 }
824
825 DevicePath = NextDevicePath;
826 } // while
827
828 if (!Bootable) {
829 #if REFIT_DEBUG > 0
830 if (Volume->HasBootCode)
831 Print(L" Volume considered non-bootable, but boot code is present\n");
832 #endif
833 Volume->HasBootCode = FALSE;
834 }
835
836 // default volume icon based on disk kind
837 ScanVolumeDefaultIcon(Volume);
838
839 // open the root directory of the volume
840 Volume->RootDir = LibOpenRoot(Volume->DeviceHandle);
841 if (Volume->RootDir == NULL) {
842 Volume->IsReadable = FALSE;
843 return;
844 } else {
845 Volume->IsReadable = TRUE;
846 }
847
848 Volume->VolName = GetVolumeName(Volume);
849
850 // get custom volume icon if present
851 if (FileExists(Volume->RootDir, VOLUME_BADGE_NAME))
852 Volume->VolBadgeImage = LoadIcns(Volume->RootDir, VOLUME_BADGE_NAME, 32);
853 if (FileExists(Volume->RootDir, VOLUME_ICON_NAME)) {
854 Volume->VolIconImage = LoadIcns(Volume->RootDir, VOLUME_ICON_NAME, 128);
855 }
856 } // ScanVolume()
857
858 static VOID ScanExtendedPartition(REFIT_VOLUME *WholeDiskVolume, MBR_PARTITION_INFO *MbrEntry)
859 {
860 EFI_STATUS Status;
861 REFIT_VOLUME *Volume;
862 UINT32 ExtBase, ExtCurrent, NextExtCurrent;
863 UINTN i;
864 UINTN LogicalPartitionIndex = 4;
865 UINT8 SectorBuffer[512];
866 BOOLEAN Bootable;
867 MBR_PARTITION_INFO *EMbrTable;
868
869 ExtBase = MbrEntry->StartLBA;
870
871 for (ExtCurrent = ExtBase; ExtCurrent; ExtCurrent = NextExtCurrent) {
872 // read current EMBR
873 Status = refit_call5_wrapper(WholeDiskVolume->BlockIO->ReadBlocks,
874 WholeDiskVolume->BlockIO,
875 WholeDiskVolume->BlockIO->Media->MediaId,
876 ExtCurrent, 512, SectorBuffer);
877 if (EFI_ERROR(Status))
878 break;
879 if (*((UINT16 *)(SectorBuffer + 510)) != 0xaa55)
880 break;
881 EMbrTable = (MBR_PARTITION_INFO *)(SectorBuffer + 446);
882
883 // scan logical partitions in this EMBR
884 NextExtCurrent = 0;
885 for (i = 0; i < 4; i++) {
886 if ((EMbrTable[i].Flags != 0x00 && EMbrTable[i].Flags != 0x80) ||
887 EMbrTable[i].StartLBA == 0 || EMbrTable[i].Size == 0)
888 break;
889 if (IS_EXTENDED_PART_TYPE(EMbrTable[i].Type)) {
890 // set next ExtCurrent
891 NextExtCurrent = ExtBase + EMbrTable[i].StartLBA;
892 break;
893 } else {
894
895 // found a logical partition
896 Volume = AllocateZeroPool(sizeof(REFIT_VOLUME));
897 Volume->DiskKind = WholeDiskVolume->DiskKind;
898 Volume->IsMbrPartition = TRUE;
899 Volume->MbrPartitionIndex = LogicalPartitionIndex++;
900 Volume->VolName = AllocateZeroPool(256 * sizeof(UINT16));
901 SPrint(Volume->VolName, 255, L"Partition %d", Volume->MbrPartitionIndex + 1);
902 Volume->BlockIO = WholeDiskVolume->BlockIO;
903 Volume->BlockIOOffset = ExtCurrent + EMbrTable[i].StartLBA;
904 Volume->WholeDiskBlockIO = WholeDiskVolume->BlockIO;
905
906 Bootable = FALSE;
907 ScanVolumeBootcode(Volume, &Bootable);
908 if (!Bootable)
909 Volume->HasBootCode = FALSE;
910
911 ScanVolumeDefaultIcon(Volume);
912
913 AddListElement((VOID ***) &Volumes, &VolumesCount, Volume);
914
915 }
916 }
917 }
918 }
919
920 VOID ScanVolumes(VOID)
921 {
922 EFI_STATUS Status;
923 UINTN HandleCount = 0;
924 UINTN HandleIndex;
925 EFI_HANDLE *Handles;
926 REFIT_VOLUME *Volume, *WholeDiskVolume;
927 UINTN VolumeIndex, VolumeIndex2;
928 MBR_PARTITION_INFO *MbrTable;
929 UINTN PartitionIndex;
930 UINT8 *SectorBuffer1, *SectorBuffer2;
931 UINTN SectorSum, i;
932
933 MyFreePool(Volumes);
934 Volumes = NULL;
935 VolumesCount = 0;
936
937 // get all filesystem handles
938 Status = LibLocateHandle(ByProtocol, &BlockIoProtocol, NULL, &HandleCount, &Handles);
939 // was: &FileSystemProtocol
940 if (Status == EFI_NOT_FOUND) {
941 return; // no filesystems. strange, but true...
942 }
943 if (CheckError(Status, L"while listing all file systems"))
944 return;
945
946 // first pass: collect information about all handles
947 for (HandleIndex = 0; HandleIndex < HandleCount; HandleIndex++) {
948 Volume = AllocateZeroPool(sizeof(REFIT_VOLUME));
949 Volume->DeviceHandle = Handles[HandleIndex];
950 ScanVolume(Volume);
951
952 AddListElement((VOID ***) &Volumes, &VolumesCount, Volume);
953
954 if (Volume->DeviceHandle == SelfLoadedImage->DeviceHandle)
955 SelfVolume = Volume;
956 }
957 MyFreePool(Handles);
958
959 if (SelfVolume == NULL)
960 Print(L"WARNING: SelfVolume not found");
961
962 // second pass: relate partitions and whole disk devices
963 for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
964 Volume = Volumes[VolumeIndex];
965 // check MBR partition table for extended partitions
966 if (Volume->BlockIO != NULL && Volume->WholeDiskBlockIO != NULL &&
967 Volume->BlockIO == Volume->WholeDiskBlockIO && Volume->BlockIOOffset == 0 &&
968 Volume->MbrPartitionTable != NULL) {
969 MbrTable = Volume->MbrPartitionTable;
970 for (PartitionIndex = 0; PartitionIndex < 4; PartitionIndex++) {
971 if (IS_EXTENDED_PART_TYPE(MbrTable[PartitionIndex].Type)) {
972 ScanExtendedPartition(Volume, MbrTable + PartitionIndex);
973 }
974 }
975 }
976
977 // search for corresponding whole disk volume entry
978 WholeDiskVolume = NULL;
979 if (Volume->BlockIO != NULL && Volume->WholeDiskBlockIO != NULL &&
980 Volume->BlockIO != Volume->WholeDiskBlockIO) {
981 for (VolumeIndex2 = 0; VolumeIndex2 < VolumesCount; VolumeIndex2++) {
982 if (Volumes[VolumeIndex2]->BlockIO == Volume->WholeDiskBlockIO &&
983 Volumes[VolumeIndex2]->BlockIOOffset == 0)
984 WholeDiskVolume = Volumes[VolumeIndex2];
985 }
986 }
987
988 if (WholeDiskVolume != NULL && WholeDiskVolume->MbrPartitionTable != NULL) {
989 // check if this volume is one of the partitions in the table
990 MbrTable = WholeDiskVolume->MbrPartitionTable;
991 SectorBuffer1 = AllocatePool(512);
992 SectorBuffer2 = AllocatePool(512);
993 for (PartitionIndex = 0; PartitionIndex < 4; PartitionIndex++) {
994 // check size
995 if ((UINT64)(MbrTable[PartitionIndex].Size) != Volume->BlockIO->Media->LastBlock + 1)
996 continue;
997
998 // compare boot sector read through offset vs. directly
999 Status = refit_call5_wrapper(Volume->BlockIO->ReadBlocks,
1000 Volume->BlockIO, Volume->BlockIO->Media->MediaId,
1001 Volume->BlockIOOffset, 512, SectorBuffer1);
1002 if (EFI_ERROR(Status))
1003 break;
1004 Status = refit_call5_wrapper(Volume->WholeDiskBlockIO->ReadBlocks,
1005 Volume->WholeDiskBlockIO, Volume->WholeDiskBlockIO->Media->MediaId,
1006 MbrTable[PartitionIndex].StartLBA, 512, SectorBuffer2);
1007 if (EFI_ERROR(Status))
1008 break;
1009 if (CompareMem(SectorBuffer1, SectorBuffer2, 512) != 0)
1010 continue;
1011 SectorSum = 0;
1012 for (i = 0; i < 512; i++)
1013 SectorSum += SectorBuffer1[i];
1014 if (SectorSum < 1000)
1015 continue;
1016
1017 // TODO: mark entry as non-bootable if it is an extended partition
1018
1019 // now we're reasonably sure the association is correct...
1020 Volume->IsMbrPartition = TRUE;
1021 Volume->MbrPartitionIndex = PartitionIndex;
1022 if (Volume->VolName == NULL) {
1023 Volume->VolName = AllocateZeroPool(sizeof(CHAR16) * 256);
1024 SPrint(Volume->VolName, 255, L"Partition %d", PartitionIndex + 1);
1025 }
1026 break;
1027 }
1028
1029 MyFreePool(SectorBuffer1);
1030 MyFreePool(SectorBuffer2);
1031 }
1032
1033 }
1034 } /* VOID ScanVolumes() */
1035
1036 static VOID UninitVolumes(VOID)
1037 {
1038 REFIT_VOLUME *Volume;
1039 UINTN VolumeIndex;
1040
1041 for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
1042 Volume = Volumes[VolumeIndex];
1043
1044 if (Volume->RootDir != NULL) {
1045 refit_call1_wrapper(Volume->RootDir->Close, Volume->RootDir);
1046 Volume->RootDir = NULL;
1047 }
1048
1049 Volume->DeviceHandle = NULL;
1050 Volume->BlockIO = NULL;
1051 Volume->WholeDiskBlockIO = NULL;
1052 }
1053 }
1054
1055 VOID ReinitVolumes(VOID)
1056 {
1057 EFI_STATUS Status;
1058 REFIT_VOLUME *Volume;
1059 UINTN VolumeIndex;
1060 EFI_DEVICE_PATH *RemainingDevicePath;
1061 EFI_HANDLE DeviceHandle, WholeDiskHandle;
1062
1063 for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
1064 Volume = Volumes[VolumeIndex];
1065
1066 if (Volume->DevicePath != NULL) {
1067 // get the handle for that path
1068 RemainingDevicePath = Volume->DevicePath;
1069 Status = refit_call3_wrapper(BS->LocateDevicePath, &BlockIoProtocol, &RemainingDevicePath, &DeviceHandle);
1070
1071 if (!EFI_ERROR(Status)) {
1072 Volume->DeviceHandle = DeviceHandle;
1073
1074 // get the root directory
1075 Volume->RootDir = LibOpenRoot(Volume->DeviceHandle);
1076
1077 } else
1078 CheckError(Status, L"from LocateDevicePath");
1079 }
1080
1081 if (Volume->WholeDiskDevicePath != NULL) {
1082 // get the handle for that path
1083 RemainingDevicePath = Volume->WholeDiskDevicePath;
1084 Status = refit_call3_wrapper(BS->LocateDevicePath, &BlockIoProtocol, &RemainingDevicePath, &WholeDiskHandle);
1085
1086 if (!EFI_ERROR(Status)) {
1087 // get the BlockIO protocol
1088 Status = refit_call3_wrapper(BS->HandleProtocol, WholeDiskHandle, &BlockIoProtocol, (VOID **) &Volume->WholeDiskBlockIO);
1089 if (EFI_ERROR(Status)) {
1090 Volume->WholeDiskBlockIO = NULL;
1091 CheckError(Status, L"from HandleProtocol");
1092 }
1093 } else
1094 CheckError(Status, L"from LocateDevicePath");
1095 }
1096 }
1097 }
1098
1099 //
1100 // file and dir functions
1101 //
1102
1103 BOOLEAN FileExists(IN EFI_FILE *BaseDir, IN CHAR16 *RelativePath)
1104 {
1105 EFI_STATUS Status;
1106 EFI_FILE_HANDLE TestFile;
1107
1108 Status = refit_call5_wrapper(BaseDir->Open, BaseDir, &TestFile, RelativePath, EFI_FILE_MODE_READ, 0);
1109 if (Status == EFI_SUCCESS) {
1110 refit_call1_wrapper(TestFile->Close, TestFile);
1111 return TRUE;
1112 }
1113 return FALSE;
1114 }
1115
1116 EFI_STATUS DirNextEntry(IN EFI_FILE *Directory, IN OUT EFI_FILE_INFO **DirEntry, IN UINTN FilterMode)
1117 {
1118 EFI_STATUS Status;
1119 VOID *Buffer;
1120 UINTN LastBufferSize, BufferSize;
1121 INTN IterCount;
1122
1123 for (;;) {
1124
1125 // free pointer from last call
1126 if (*DirEntry != NULL) {
1127 FreePool(*DirEntry);
1128 *DirEntry = NULL;
1129 }
1130
1131 // read next directory entry
1132 LastBufferSize = BufferSize = 256;
1133 Buffer = AllocatePool(BufferSize);
1134 for (IterCount = 0; ; IterCount++) {
1135 Status = refit_call3_wrapper(Directory->Read, Directory, &BufferSize, Buffer);
1136 if (Status != EFI_BUFFER_TOO_SMALL || IterCount >= 4)
1137 break;
1138 if (BufferSize <= LastBufferSize) {
1139 Print(L"FS Driver requests bad buffer size %d (was %d), using %d instead\n", BufferSize, LastBufferSize, LastBufferSize * 2);
1140 BufferSize = LastBufferSize * 2;
1141 #if REFIT_DEBUG > 0
1142 } else {
1143 Print(L"Reallocating buffer from %d to %d\n", LastBufferSize, BufferSize);
1144 #endif
1145 }
1146 Buffer = EfiReallocatePool(Buffer, LastBufferSize, BufferSize);
1147 LastBufferSize = BufferSize;
1148 }
1149 if (EFI_ERROR(Status)) {
1150 FreePool(Buffer);
1151 break;
1152 }
1153
1154 // check for end of listing
1155 if (BufferSize == 0) { // end of directory listing
1156 FreePool(Buffer);
1157 break;
1158 }
1159
1160 // entry is ready to be returned
1161 *DirEntry = (EFI_FILE_INFO *)Buffer;
1162
1163 // filter results
1164 if (FilterMode == 1) { // only return directories
1165 if (((*DirEntry)->Attribute & EFI_FILE_DIRECTORY))
1166 break;
1167 } else if (FilterMode == 2) { // only return files
1168 if (((*DirEntry)->Attribute & EFI_FILE_DIRECTORY) == 0)
1169 break;
1170 } else // no filter or unknown filter -> return everything
1171 break;
1172
1173 }
1174 return Status;
1175 }
1176
1177 VOID DirIterOpen(IN EFI_FILE *BaseDir, IN CHAR16 *RelativePath OPTIONAL, OUT REFIT_DIR_ITER *DirIter)
1178 {
1179 if (RelativePath == NULL) {
1180 DirIter->LastStatus = EFI_SUCCESS;
1181 DirIter->DirHandle = BaseDir;
1182 DirIter->CloseDirHandle = FALSE;
1183 } else {
1184 DirIter->LastStatus = refit_call5_wrapper(BaseDir->Open, BaseDir, &(DirIter->DirHandle), RelativePath, EFI_FILE_MODE_READ, 0);
1185 DirIter->CloseDirHandle = EFI_ERROR(DirIter->LastStatus) ? FALSE : TRUE;
1186 }
1187 DirIter->LastFileInfo = NULL;
1188 }
1189
1190 #ifndef __MAKEWITH_GNUEFI
1191 EFI_UNICODE_COLLATION_PROTOCOL *mUnicodeCollation = NULL;
1192
1193 static EFI_STATUS
1194 InitializeUnicodeCollationProtocol (VOID)
1195 {
1196 EFI_STATUS Status;
1197
1198 if (mUnicodeCollation != NULL) {
1199 return EFI_SUCCESS;
1200 }
1201
1202 //
1203 // BUGBUG: Proper impelmentation is to locate all Unicode Collation Protocol
1204 // instances first and then select one which support English language.
1205 // Current implementation just pick the first instance.
1206 //
1207 Status = gBS->LocateProtocol (
1208 &gEfiUnicodeCollation2ProtocolGuid,
1209 NULL,
1210 (VOID **) &mUnicodeCollation
1211 );
1212 if (EFI_ERROR(Status)) {
1213 Status = gBS->LocateProtocol (
1214 &gEfiUnicodeCollationProtocolGuid,
1215 NULL,
1216 (VOID **) &mUnicodeCollation
1217 );
1218
1219 }
1220 return Status;
1221 }
1222
1223 static BOOLEAN
1224 MetaiMatch (IN CHAR16 *String, IN CHAR16 *Pattern)
1225 {
1226 if (!mUnicodeCollation) {
1227 InitializeUnicodeCollationProtocol();
1228 }
1229 if (mUnicodeCollation)
1230 return mUnicodeCollation->MetaiMatch (mUnicodeCollation, String, Pattern);
1231 return FALSE; // Shouldn't happen
1232 }
1233
1234 static VOID StrLwr (IN OUT CHAR16 *Str) {
1235 if (!mUnicodeCollation) {
1236 InitializeUnicodeCollationProtocol();
1237 }
1238 if (mUnicodeCollation)
1239 mUnicodeCollation->StrLwr (mUnicodeCollation, Str);
1240 }
1241
1242 #endif
1243
1244 BOOLEAN DirIterNext(IN OUT REFIT_DIR_ITER *DirIter, IN UINTN FilterMode, IN CHAR16 *FilePattern OPTIONAL,
1245 OUT EFI_FILE_INFO **DirEntry)
1246 {
1247 BOOLEAN KeepGoing = TRUE;
1248 UINTN i;
1249 CHAR16 *OnePattern;
1250
1251 if (DirIter->LastFileInfo != NULL) {
1252 FreePool(DirIter->LastFileInfo);
1253 DirIter->LastFileInfo = NULL;
1254 }
1255
1256 if (EFI_ERROR(DirIter->LastStatus))
1257 return FALSE; // stop iteration
1258
1259 do {
1260 DirIter->LastStatus = DirNextEntry(DirIter->DirHandle, &(DirIter->LastFileInfo), FilterMode);
1261 if (EFI_ERROR(DirIter->LastStatus))
1262 return FALSE;
1263 if (DirIter->LastFileInfo == NULL) // end of listing
1264 return FALSE;
1265 if (FilePattern != NULL) {
1266 if ((DirIter->LastFileInfo->Attribute & EFI_FILE_DIRECTORY))
1267 KeepGoing = FALSE;
1268 i = 0;
1269 while (KeepGoing && (OnePattern = FindCommaDelimited(FilePattern, i++)) != NULL) {
1270 if (MetaiMatch(DirIter->LastFileInfo->FileName, OnePattern))
1271 KeepGoing = FALSE;
1272 } // while
1273 // else continue loop
1274 } else
1275 break;
1276 } while (KeepGoing);
1277
1278 *DirEntry = DirIter->LastFileInfo;
1279 return TRUE;
1280 }
1281
1282 EFI_STATUS DirIterClose(IN OUT REFIT_DIR_ITER *DirIter)
1283 {
1284 if (DirIter->LastFileInfo != NULL) {
1285 FreePool(DirIter->LastFileInfo);
1286 DirIter->LastFileInfo = NULL;
1287 }
1288 if (DirIter->CloseDirHandle)
1289 refit_call1_wrapper(DirIter->DirHandle->Close, DirIter->DirHandle);
1290 return DirIter->LastStatus;
1291 }
1292
1293 //
1294 // file name manipulation
1295 //
1296
1297 // Returns the filename portion (minus path name) of the
1298 // specified file
1299 CHAR16 * Basename(IN CHAR16 *Path)
1300 {
1301 CHAR16 *FileName;
1302 UINTN i;
1303
1304 FileName = Path;
1305
1306 if (Path != NULL) {
1307 for (i = StrLen(Path); i > 0; i--) {
1308 if (Path[i-1] == '\\' || Path[i-1] == '/') {
1309 FileName = Path + i;
1310 break;
1311 }
1312 }
1313 }
1314
1315 return FileName;
1316 }
1317
1318 // Replaces a filename extension of ".efi" with the specified string
1319 // (Extension). If the input Path doesn't end in ".efi", Extension
1320 // is added to the existing filename.
1321 VOID ReplaceEfiExtension(IN OUT CHAR16 *Path, IN CHAR16 *Extension)
1322 {
1323 UINTN PathLen;
1324
1325 PathLen = StrLen(Path);
1326 // Note: Do StriCmp() twice to work around Gigabyte Hybrid EFI case-sensitivity bug....
1327 if ((PathLen >= 4) && ((StriCmp(&Path[PathLen - 4], L".efi") == 0) || (StriCmp(&Path[PathLen - 4], L".EFI") == 0))) {
1328 Path[PathLen - 4] = 0;
1329 } // if
1330 StrCat(Path, Extension);
1331 } // VOID ReplaceEfiExtension()
1332
1333 //
1334 // memory string search
1335 //
1336
1337 INTN FindMem(IN VOID *Buffer, IN UINTN BufferLength, IN VOID *SearchString, IN UINTN SearchStringLength)
1338 {
1339 UINT8 *BufferPtr;
1340 UINTN Offset;
1341
1342 BufferPtr = Buffer;
1343 BufferLength -= SearchStringLength;
1344 for (Offset = 0; Offset < BufferLength; Offset++, BufferPtr++) {
1345 if (CompareMem(BufferPtr, SearchString, SearchStringLength) == 0)
1346 return (INTN)Offset;
1347 }
1348
1349 return -1;
1350 }
1351
1352 // Performs a case-insensitive search of BigStr for SmallStr.
1353 // Returns TRUE if found, FALSE if not.
1354 BOOLEAN StriSubCmp(IN CHAR16 *SmallStr, IN CHAR16 *BigStr) {
1355 CHAR16 *SmallCopy, *BigCopy;
1356 BOOLEAN Found = FALSE;
1357 UINTN StartPoint = 0, NumCompares = 0, SmallLen = 0;
1358
1359 if ((SmallStr != NULL) && (BigStr != NULL) && (StrLen(BigStr) >= StrLen(SmallStr))) {
1360 SmallCopy = StrDuplicate(SmallStr);
1361 BigCopy = StrDuplicate(BigStr);
1362 StrLwr(SmallCopy);
1363 StrLwr(BigCopy);
1364 SmallLen = StrLen(SmallCopy);
1365 NumCompares = StrLen(BigCopy) - SmallLen + 1;
1366 while ((!Found) && (StartPoint < NumCompares)) {
1367 Found = (StrnCmp(SmallCopy, &BigCopy[StartPoint++], SmallLen) == 0);
1368 } // while
1369 MyFreePool(SmallCopy);
1370 MyFreePool(BigCopy);
1371 } // if
1372
1373 return (Found);
1374 } // BOOLEAN StriSubCmp()
1375
1376 // Merges two strings, creating a new one and returning a pointer to it.
1377 // If AddChar != 0, the specified character is placed between the two original
1378 // strings (unless the first string is NULL). The original input string
1379 // *First is de-allocated and replaced by the new merged string.
1380 // This is similar to StrCat, but safer and more flexible because
1381 // MergeStrings allocates memory that's the correct size for the
1382 // new merged string, so it can take a NULL *First and it cleans
1383 // up the old memory. It should *NOT* be used with a constant
1384 // *First, though....
1385 VOID MergeStrings(IN OUT CHAR16 **First, IN CHAR16 *Second, CHAR16 AddChar) {
1386 UINTN Length1 = 0, Length2 = 0;
1387 CHAR16* NewString;
1388
1389 if (*First != NULL)
1390 Length1 = StrLen(*First);
1391 if (Second != NULL)
1392 Length2 = StrLen(Second);
1393 NewString = AllocatePool(sizeof(CHAR16) * (Length1 + Length2 + 2));
1394 if (NewString != NULL) {
1395 NewString[0] = L'\0';
1396 if (*First != NULL) {
1397 StrCat(NewString, *First);
1398 if (AddChar) {
1399 NewString[Length1] = AddChar;
1400 NewString[Length1 + 1] = '\0';
1401 } // if (AddChar)
1402 } // if (*First != NULL)
1403 if (Second != NULL)
1404 StrCat(NewString, Second);
1405 MyFreePool(*First);
1406 *First = NewString;
1407 } else {
1408 Print(L"Error! Unable to allocate memory in MergeStrings()!\n");
1409 } // if/else
1410 } // static CHAR16* MergeStrings()
1411
1412 // Takes an input pathname (*Path) and returns the part of the filename from
1413 // the final dot onwards, converted to lowercase. If the filename includes
1414 // no dots, or if the input is NULL, returns an empty (but allocated) string.
1415 // The calling function is responsible for freeing the memory associated with
1416 // the return value.
1417 CHAR16 *FindExtension(IN CHAR16 *Path) {
1418 CHAR16 *Extension;
1419 BOOLEAN Found = FALSE, FoundSlash = FALSE;
1420 UINTN i;
1421
1422 Extension = AllocateZeroPool(sizeof(CHAR16));
1423 if (Path) {
1424 i = StrLen(Path);
1425 while ((!Found) && (!FoundSlash) && (i >= 0)) {
1426 if (Path[i] == L'.')
1427 Found = TRUE;
1428 else if ((Path[i] == L'/') || (Path[i] == L'\\'))
1429 FoundSlash = TRUE;
1430 if (!Found)
1431 i--;
1432 } // while
1433 if (Found) {
1434 MergeStrings(&Extension, &Path[i], 0);
1435 StrLwr(Extension);
1436 } // if (Found)
1437 } // if
1438 return (Extension);
1439 } // CHAR16 *FindExtension
1440
1441 // Takes an input pathname (*Path) and locates the final directory component
1442 // of that name. For instance, if the input path is 'EFI\foo\bar.efi', this
1443 // function returns the string 'foo'.
1444 // Assumes the pathname is separated with backslashes.
1445 CHAR16 *FindLastDirName(IN CHAR16 *Path) {
1446 UINTN i, StartOfElement = 0, EndOfElement = 0, PathLength, CopyLength;
1447 CHAR16 *Found = NULL;
1448
1449 PathLength = StrLen(Path);
1450 // Find start & end of target element
1451 for (i = 0; i < PathLength; i++) {
1452 if (Path[i] == '\\') {
1453 StartOfElement = EndOfElement;
1454 EndOfElement = i;
1455 } // if
1456 } // for
1457 // Extract the target element
1458 if (EndOfElement > 0) {
1459 while ((StartOfElement < PathLength) && (Path[StartOfElement] == '\\')) {
1460 StartOfElement++;
1461 } // while
1462 EndOfElement--;
1463 if (EndOfElement >= StartOfElement) {
1464 CopyLength = EndOfElement - StartOfElement + 1;
1465 Found = StrDuplicate(&Path[StartOfElement]);
1466 if (Found != NULL)
1467 Found[CopyLength] = 0;
1468 } // if (EndOfElement >= StartOfElement)
1469 } // if (EndOfElement > 0)
1470 return (Found);
1471 } // CHAR16 *FindLastDirName
1472
1473 // Returns the directory portion of a pathname. For instance,
1474 // if FullPath is 'EFI\foo\bar.efi', this function returns the
1475 // string 'EFI\foo'. The calling function is responsible for
1476 // freeing the returned string's memory.
1477 CHAR16 *FindPath(IN CHAR16* FullPath) {
1478 UINTN i, LastBackslash = 0;
1479 CHAR16 *PathOnly;
1480
1481 for (i = 0; i < StrLen(FullPath); i++) {
1482 if (FullPath[i] == '\\')
1483 LastBackslash = i;
1484 } // for
1485 PathOnly = StrDuplicate(FullPath);
1486 PathOnly[LastBackslash] = 0;
1487 return (PathOnly);
1488 }
1489
1490 // Takes an input loadpath, splits it into disk and filename components, finds a matching
1491 // DeviceVolume, and returns that and the filename (*loader).
1492 VOID FindVolumeAndFilename(IN EFI_DEVICE_PATH *loadpath, OUT REFIT_VOLUME **DeviceVolume, OUT CHAR16 **loader) {
1493 CHAR16 *DeviceString, *VolumeDeviceString, *Temp;
1494 UINTN i = 0;
1495 BOOLEAN Found = FALSE;
1496
1497 MyFreePool(*loader);
1498 MyFreePool(*DeviceVolume);
1499 *DeviceVolume = NULL;
1500 DeviceString = DevicePathToStr(loadpath);
1501 *loader = SplitDeviceString(DeviceString);
1502
1503 while ((i < VolumesCount) && (!Found)) {
1504 VolumeDeviceString = DevicePathToStr(Volumes[i]->DevicePath);
1505 Temp = SplitDeviceString(VolumeDeviceString);
1506 if (StriCmp(DeviceString, VolumeDeviceString) == 0) {
1507 Found = TRUE;
1508 *DeviceVolume = Volumes[i];
1509 }
1510 MyFreePool(Temp);
1511 MyFreePool(VolumeDeviceString);
1512 i++;
1513 } // while
1514
1515 MyFreePool(DeviceString);
1516 } // VOID FindVolumeAndFilename()
1517
1518 // Returns all the digits in the input string, including intervening
1519 // non-digit characters. For instance, if InString is "foo-3.3.4-7.img",
1520 // this function returns "3.3.4-7". If InString contains no digits,
1521 // the return value is NULL.
1522 CHAR16 *FindNumbers(IN CHAR16 *InString) {
1523 UINTN i, StartOfElement, EndOfElement = 0, InLength, CopyLength;
1524 CHAR16 *Found = NULL;
1525
1526 InLength = StartOfElement = StrLen(InString);
1527 // Find start & end of target element
1528 for (i = 0; i < InLength; i++) {
1529 if ((InString[i] >= '0') && (InString[i] <= '9')) {
1530 if (StartOfElement > i)
1531 StartOfElement = i;
1532 if (EndOfElement < i)
1533 EndOfElement = i;
1534 } // if
1535 } // for
1536 // Extract the target element
1537 if (EndOfElement > 0) {
1538 if (EndOfElement >= StartOfElement) {
1539 CopyLength = EndOfElement - StartOfElement + 1;
1540 Found = StrDuplicate(&InString[StartOfElement]);
1541 if (Found != NULL)
1542 Found[CopyLength] = 0;
1543 } // if (EndOfElement >= StartOfElement)
1544 } // if (EndOfElement > 0)
1545 return (Found);
1546 } // CHAR16 *FindNumbers()
1547
1548 // Find the #Index element (numbered from 0) in a comma-delimited string
1549 // of elements.
1550 // Returns the found element, or NULL if Index is out of range or InString
1551 // is NULL. Note that the calling function is responsible for freeing the
1552 // memory associated with the returned string pointer.
1553 CHAR16 *FindCommaDelimited(IN CHAR16 *InString, IN UINTN Index) {
1554 UINTN StartPos = 0, CurPos = 0;
1555 BOOLEAN Found = FALSE;
1556 CHAR16 *FoundString = NULL;
1557
1558 if (InString != NULL) {
1559 // After while() loop, StartPos marks start of item #Index
1560 while ((Index > 0) && (CurPos < StrLen(InString))) {
1561 if (InString[CurPos] == L',') {
1562 Index--;
1563 StartPos = CurPos + 1;
1564 } // if
1565 CurPos++;
1566 } // while
1567 // After while() loop, CurPos is one past the end of the element
1568 while ((CurPos < StrLen(InString)) && (!Found)) {
1569 if (InString[CurPos] == L',')
1570 Found = TRUE;
1571 else
1572 CurPos++;
1573 } // while
1574 if (Index == 0)
1575 FoundString = StrDuplicate(&InString[StartPos]);
1576 if (FoundString != NULL)
1577 FoundString[CurPos - StartPos] = 0;
1578 } // if
1579 return (FoundString);
1580 } // CHAR16 *FindCommaDelimited()
1581
1582 // Returns TRUE if SmallString is an element in the comma-delimited List,
1583 // FALSE otherwise. Performs comparison case-insensitively (except on
1584 // buggy EFIs with case-sensitive StriCmp() functions).
1585 BOOLEAN IsIn(IN CHAR16 *SmallString, IN CHAR16 *List) {
1586 UINTN i = 0;
1587 BOOLEAN Found = FALSE;
1588 CHAR16 *OneElement;
1589
1590 if (SmallString && List) {
1591 while (!Found && (OneElement = FindCommaDelimited(List, i++))) {
1592 if (StriCmp(OneElement, SmallString) == 0)
1593 Found = TRUE;
1594 } // while
1595 } // if
1596 return Found;
1597 } // BOOLEAN IsIn()
1598
1599 // Implement FreePool the way it should have been done to begin with, so that
1600 // it doesn't throw an ASSERT message if fed a NULL pointer....
1601 VOID MyFreePool(IN OUT VOID *Pointer) {
1602 if (Pointer != NULL)
1603 FreePool(Pointer);
1604 }
1605
1606 static EFI_GUID AppleRemovableMediaGuid = APPLE_REMOVABLE_MEDIA_PROTOCOL_GUID;
1607
1608 // Eject all removable media.
1609 // Returns TRUE if any media were ejected, FALSE otherwise.
1610 BOOLEAN EjectMedia(VOID) {
1611 EFI_STATUS Status;
1612 UINTN HandleIndex, HandleCount = 0, Ejected = 0;
1613 EFI_HANDLE *Handles, Handle;
1614 APPLE_REMOVABLE_MEDIA_PROTOCOL *Ejectable;
1615
1616 Status = LibLocateHandle(ByProtocol, &AppleRemovableMediaGuid, NULL, &HandleCount, &Handles);
1617 if (EFI_ERROR(Status) || HandleCount == 0)
1618 return (FALSE); // probably not an Apple system
1619
1620 for (HandleIndex = 0; HandleIndex < HandleCount; HandleIndex++) {
1621 Handle = Handles[HandleIndex];
1622 Status = refit_call3_wrapper(BS->HandleProtocol, Handle, &AppleRemovableMediaGuid, (VOID **) &Ejectable);
1623 if (EFI_ERROR(Status))
1624 continue;
1625 Status = refit_call1_wrapper(Ejectable->Eject, Ejectable);
1626 if (!EFI_ERROR(Status))
1627 Ejected++;
1628 }
1629 MyFreePool(Handles);
1630 return (Ejected > 0);
1631 } // VOID EjectMedia()
1632
1633
1634 // // Return the GUID as a string, suitable for display to the user. Note that the calling
1635 // // function is responsible for freeing the allocated memory.
1636 // CHAR16 * GuidAsString(EFI_GUID *GuidData) {
1637 // CHAR16 *TheString;
1638 //
1639 // TheString = AllocateZeroPool(42 * sizeof(CHAR16));
1640 // if (TheString != 0) {
1641 // SPrint (TheString, 82, L"%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x",
1642 // (UINTN)GuidData->Data1, (UINTN)GuidData->Data2, (UINTN)GuidData->Data3,
1643 // (UINTN)GuidData->Data4[0], (UINTN)GuidData->Data4[1], (UINTN)GuidData->Data4[2],
1644 // (UINTN)GuidData->Data4[3], (UINTN)GuidData->Data4[4], (UINTN)GuidData->Data4[5],
1645 // (UINTN)GuidData->Data4[6], (UINTN)GuidData->Data4[7]);
1646 // }
1647 // return TheString;
1648 // } // GuidAsString(EFI_GUID *GuidData)