]> code.delx.au - refind/blob - refind/lib.c
7075630316754b27c8095b008e9415626766c9fe
[refind] / refind / lib.c
1 /*
2 * refind/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-2015 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 #include "gpt.h"
52 #include "config.h"
53 #include "../EfiLib/LegacyBios.h"
54
55 #ifdef __MAKEWITH_GNUEFI
56 #define EfiReallocatePool ReallocatePool
57 #else
58 #define LibLocateHandle gBS->LocateHandleBuffer
59 #define DevicePathProtocol gEfiDevicePathProtocolGuid
60 #define BlockIoProtocol gEfiBlockIoProtocolGuid
61 #define LibFileSystemInfo EfiLibFileSystemInfo
62 #define LibOpenRoot EfiLibOpenRoot
63 EFI_DEVICE_PATH EndDevicePath[] = {
64 {END_DEVICE_PATH_TYPE, END_ENTIRE_DEVICE_PATH_SUBTYPE, {END_DEVICE_PATH_LENGTH, 0}}
65 };
66
67 //#define EndDevicePath DevicePath
68 #endif
69
70 // "Magic" signatures for various filesystems
71 #define FAT_MAGIC 0xAA55
72 #define EXT2_SUPER_MAGIC 0xEF53
73 #define HFSPLUS_MAGIC1 0x2B48
74 #define HFSPLUS_MAGIC2 0x5848
75 #define REISERFS_SUPER_MAGIC_STRING "ReIsErFs"
76 #define REISER2FS_SUPER_MAGIC_STRING "ReIsEr2Fs"
77 #define REISER2FS_JR_SUPER_MAGIC_STRING "ReIsEr3Fs"
78 #define BTRFS_SIGNATURE "_BHRfS_M"
79 #define XFS_SIGNATURE "XFSB"
80 #define NTFS_SIGNATURE "NTFS "
81
82 // variables
83
84 EFI_HANDLE SelfImageHandle;
85 EFI_LOADED_IMAGE *SelfLoadedImage;
86 EFI_FILE *SelfRootDir;
87 EFI_FILE *SelfDir;
88 CHAR16 *SelfDirPath;
89
90 REFIT_VOLUME *SelfVolume = NULL;
91 REFIT_VOLUME **Volumes = NULL;
92 UINTN VolumesCount = 0;
93 extern GPT_DATA *gPartitions;
94
95 // Maximum size for disk sectors
96 #define SECTOR_SIZE 4096
97
98 // Number of bytes to read from a partition to determine its filesystem type
99 // and identify its boot loader, and hence probable BIOS-mode OS installation
100 #define SAMPLE_SIZE 69632 /* 68 KiB -- ReiserFS superblock begins at 64 KiB */
101
102
103 // functions
104
105 static EFI_STATUS FinishInitRefitLib(VOID);
106
107 static VOID UninitVolumes(VOID);
108
109 //
110 // self recognition stuff
111 //
112
113 // Converts forward slashes to backslashes, removes duplicate slashes, and
114 // removes slashes from both the start and end of the pathname.
115 // Necessary because some (buggy?) EFI implementations produce "\/" strings
116 // in pathnames, because some user inputs can produce duplicate directory
117 // separators, and because we want consistent start and end slashes for
118 // directory comparisons. A special case: If the PathName refers to root,
119 // return "/", since some firmware implementations flake out if this
120 // isn't present.
121 VOID CleanUpPathNameSlashes(IN OUT CHAR16 *PathName) {
122 CHAR16 *NewName;
123 UINTN i, Length, FinalChar = 0;
124 BOOLEAN LastWasSlash = FALSE;
125
126 Length = StrLen(PathName);
127 NewName = AllocateZeroPool(sizeof(CHAR16) * (Length + 2));
128 if (NewName != NULL) {
129 for (i = 0; i < StrLen(PathName); i++) {
130 if ((PathName[i] == L'/') || (PathName[i] == L'\\')) {
131 if ((!LastWasSlash) && (FinalChar != 0))
132 NewName[FinalChar++] = L'\\';
133 LastWasSlash = TRUE;
134 } else {
135 NewName[FinalChar++] = PathName[i];
136 LastWasSlash = FALSE;
137 } // if/else
138 } // for
139 NewName[FinalChar] = 0;
140 if ((FinalChar > 0) && (NewName[FinalChar - 1] == L'\\'))
141 NewName[--FinalChar] = 0;
142 if (FinalChar == 0) {
143 NewName[0] = L'\\';
144 NewName[1] = 0;
145 }
146 // Copy the transformed name back....
147 StrCpy(PathName, NewName);
148 FreePool(NewName);
149 } // if allocation OK
150 } // CleanUpPathNameSlashes()
151
152 // Splits an EFI device path into device and filename components. For instance, if InString is
153 // PciRoot(0x0)/Pci(0x1f,0x2)/Ata(Secondary,Master,0x0)/HD(2,GPT,8314ae90-ada3-48e9-9c3b-09a88f80d921,0x96028,0xfa000)/\bzImage-3.5.1.efi,
154 // this function will truncate that input to
155 // PciRoot(0x0)/Pci(0x1f,0x2)/Ata(Secondary,Master,0x0)/HD(2,GPT,8314ae90-ada3-48e9-9c3b-09a88f80d921,0x96028,0xfa000)
156 // and return bzImage-3.5.1.efi as its return value.
157 // It does this by searching for the last ")" character in InString, copying everything
158 // after that string (after some cleanup) as the return value, and truncating the original
159 // input value.
160 // If InString contains no ")" character, this function leaves the original input string
161 // unmodified and also returns that string. If InString is NULL, this function returns NULL.
162 static CHAR16* SplitDeviceString(IN OUT CHAR16 *InString) {
163 INTN i;
164 CHAR16 *FileName = NULL;
165 BOOLEAN Found = FALSE;
166
167 if (InString != NULL) {
168 i = StrLen(InString) - 1;
169 while ((i >= 0) && (!Found)) {
170 if (InString[i] == L')') {
171 Found = TRUE;
172 FileName = StrDuplicate(&InString[i + 1]);
173 CleanUpPathNameSlashes(FileName);
174 InString[i + 1] = '\0';
175 } // if
176 i--;
177 } // while
178 if (FileName == NULL)
179 FileName = StrDuplicate(InString);
180 } // if
181 return FileName;
182 } // static CHAR16* SplitDeviceString()
183
184 EFI_STATUS InitRefitLib(IN EFI_HANDLE ImageHandle)
185 {
186 EFI_STATUS Status;
187 CHAR16 *DevicePathAsString, *Temp;
188
189 SelfImageHandle = ImageHandle;
190 Status = refit_call3_wrapper(BS->HandleProtocol, SelfImageHandle, &LoadedImageProtocol, (VOID **) &SelfLoadedImage);
191 if (CheckFatalError(Status, L"while getting a LoadedImageProtocol handle"))
192 return EFI_LOAD_ERROR;
193
194 // find the current directory
195 DevicePathAsString = DevicePathToStr(SelfLoadedImage->FilePath);
196 CleanUpPathNameSlashes(DevicePathAsString);
197 MyFreePool(SelfDirPath);
198 Temp = FindPath(DevicePathAsString);
199 SelfDirPath = SplitDeviceString(Temp);
200 MyFreePool(DevicePathAsString);
201 MyFreePool(Temp);
202
203 return FinishInitRefitLib();
204 }
205
206 // called before running external programs to close open file handles
207 VOID UninitRefitLib(VOID)
208 {
209 // This piece of code was made to correspond to weirdness in ReinitRefitLib().
210 // See the comment on it there.
211 if(SelfRootDir == SelfVolume->RootDir)
212 SelfRootDir=0;
213
214 UninitVolumes();
215
216 if (SelfDir != NULL) {
217 refit_call1_wrapper(SelfDir->Close, SelfDir);
218 SelfDir = NULL;
219 }
220
221 if (SelfRootDir != NULL) {
222 refit_call1_wrapper(SelfRootDir->Close, SelfRootDir);
223 SelfRootDir = NULL;
224 }
225 }
226
227 // called after running external programs to re-open file handles
228 EFI_STATUS ReinitRefitLib(VOID)
229 {
230 ReinitVolumes();
231
232 if ((ST->Hdr.Revision >> 16) == 1) {
233 // Below two lines were in rEFIt, but seem to cause system crashes or
234 // reboots when launching OSes after returning from programs on most
235 // systems. OTOH, my Mac Mini produces errors about "(re)opening our
236 // installation volume" (see the next function) when returning from
237 // programs when these two lines are removed, and it often crashes
238 // when returning from a program or when launching a second program
239 // with these lines removed. Therefore, the preceding if() statement
240 // executes these lines only on EFIs with a major version number of 1
241 // (which Macs have) and not with 2 (which UEFI PCs have). My selection
242 // of hardware on which to test is limited, though, so this may be the
243 // wrong test, or there may be a better way to fix this problem.
244 // TODO: Figure out cause of above weirdness and fix it more
245 // reliably!
246 if (SelfVolume != NULL && SelfVolume->RootDir != NULL)
247 SelfRootDir = SelfVolume->RootDir;
248 } // if
249
250 return FinishInitRefitLib();
251 }
252
253 static EFI_STATUS FinishInitRefitLib(VOID)
254 {
255 EFI_STATUS Status;
256
257 if (SelfRootDir == NULL) {
258 SelfRootDir = LibOpenRoot(SelfLoadedImage->DeviceHandle);
259 if (SelfRootDir == NULL) {
260 CheckError(EFI_LOAD_ERROR, L"while (re)opening our installation volume");
261 return EFI_LOAD_ERROR;
262 }
263 }
264
265 Status = refit_call5_wrapper(SelfRootDir->Open, SelfRootDir, &SelfDir, SelfDirPath, EFI_FILE_MODE_READ, 0);
266 if (CheckFatalError(Status, L"while opening our installation directory"))
267 return EFI_LOAD_ERROR;
268
269 return EFI_SUCCESS;
270 }
271
272 //
273 // EFI variable read and write functions
274 //
275
276 // From gummiboot: Retrieve a raw EFI variable.
277 // Returns EFI status
278 EFI_STATUS EfivarGetRaw(EFI_GUID *vendor, CHAR16 *name, CHAR8 **buffer, UINTN *size) {
279 CHAR8 *buf;
280 UINTN l;
281 EFI_STATUS err;
282
283 l = sizeof(CHAR16 *) * EFI_MAXIMUM_VARIABLE_SIZE;
284 buf = AllocatePool(l);
285 if (!buf)
286 return EFI_OUT_OF_RESOURCES;
287
288 err = refit_call5_wrapper(RT->GetVariable, name, vendor, NULL, &l, buf);
289 if (EFI_ERROR(err) == EFI_SUCCESS) {
290 *buffer = buf;
291 if (size)
292 *size = l;
293 } else
294 MyFreePool(buf);
295 return err;
296 } // EFI_STATUS EfivarGetRaw()
297
298 // From gummiboot: Set an EFI variable
299 EFI_STATUS EfivarSetRaw(EFI_GUID *vendor, CHAR16 *name, CHAR8 *buf, UINTN size, BOOLEAN persistent) {
300 UINT32 flags;
301
302 flags = EFI_VARIABLE_BOOTSERVICE_ACCESS|EFI_VARIABLE_RUNTIME_ACCESS;
303 if (persistent)
304 flags |= EFI_VARIABLE_NON_VOLATILE;
305
306 return refit_call5_wrapper(RT->SetVariable, name, vendor, flags, size, buf);
307 } // EFI_STATUS EfivarSetRaw()
308
309 //
310 // list functions
311 //
312
313 VOID CreateList(OUT VOID ***ListPtr, OUT UINTN *ElementCount, IN UINTN InitialElementCount)
314 {
315 UINTN AllocateCount;
316
317 *ElementCount = InitialElementCount;
318 if (*ElementCount > 0) {
319 AllocateCount = (*ElementCount + 7) & ~7; // next multiple of 8
320 *ListPtr = AllocatePool(sizeof(VOID *) * AllocateCount);
321 } else {
322 *ListPtr = NULL;
323 }
324 }
325
326 VOID AddListElement(IN OUT VOID ***ListPtr, IN OUT UINTN *ElementCount, IN VOID *NewElement)
327 {
328 UINTN AllocateCount;
329
330 if ((*ElementCount & 7) == 0) {
331 AllocateCount = *ElementCount + 8;
332 if (*ElementCount == 0)
333 *ListPtr = AllocatePool(sizeof(VOID *) * AllocateCount);
334 else
335 *ListPtr = EfiReallocatePool(*ListPtr, sizeof(VOID *) * (*ElementCount), sizeof(VOID *) * AllocateCount);
336 }
337 (*ListPtr)[*ElementCount] = NewElement;
338 (*ElementCount)++;
339 } /* VOID AddListElement() */
340
341 VOID FreeList(IN OUT VOID ***ListPtr, IN OUT UINTN *ElementCount)
342 {
343 UINTN i;
344
345 if ((*ElementCount > 0) && (**ListPtr != NULL)) {
346 for (i = 0; i < *ElementCount; i++) {
347 // TODO: call a user-provided routine for each element here
348 MyFreePool((*ListPtr)[i]);
349 }
350 MyFreePool(*ListPtr);
351 }
352 } // VOID FreeList()
353
354 //
355 // firmware device path discovery
356 //
357
358 static UINT8 LegacyLoaderMediaPathData[] = {
359 0x04, 0x06, 0x14, 0x00, 0xEB, 0x85, 0x05, 0x2B,
360 0xB8, 0xD8, 0xA9, 0x49, 0x8B, 0x8C, 0xE2, 0x1B,
361 0x01, 0xAE, 0xF2, 0xB7, 0x7F, 0xFF, 0x04, 0x00,
362 };
363 static EFI_DEVICE_PATH *LegacyLoaderMediaPath = (EFI_DEVICE_PATH *)LegacyLoaderMediaPathData;
364
365 VOID ExtractLegacyLoaderPaths(EFI_DEVICE_PATH **PathList, UINTN MaxPaths, EFI_DEVICE_PATH **HardcodedPathList)
366 {
367 EFI_STATUS Status;
368 UINTN HandleCount = 0;
369 UINTN HandleIndex, HardcodedIndex;
370 EFI_HANDLE *Handles;
371 EFI_HANDLE Handle;
372 UINTN PathCount = 0;
373 UINTN PathIndex;
374 EFI_LOADED_IMAGE *LoadedImage;
375 EFI_DEVICE_PATH *DevicePath;
376 BOOLEAN Seen;
377
378 MaxPaths--; // leave space for the terminating NULL pointer
379
380 // get all LoadedImage handles
381 Status = LibLocateHandle(ByProtocol, &LoadedImageProtocol, NULL, &HandleCount, &Handles);
382 if (CheckError(Status, L"while listing LoadedImage handles")) {
383 if (HardcodedPathList) {
384 for (HardcodedIndex = 0; HardcodedPathList[HardcodedIndex] && PathCount < MaxPaths; HardcodedIndex++)
385 PathList[PathCount++] = HardcodedPathList[HardcodedIndex];
386 }
387 PathList[PathCount] = NULL;
388 return;
389 }
390 for (HandleIndex = 0; HandleIndex < HandleCount && PathCount < MaxPaths; HandleIndex++) {
391 Handle = Handles[HandleIndex];
392
393 Status = refit_call3_wrapper(BS->HandleProtocol, Handle, &LoadedImageProtocol, (VOID **) &LoadedImage);
394 if (EFI_ERROR(Status))
395 continue; // This can only happen if the firmware scewed up, ignore it.
396
397 Status = refit_call3_wrapper(BS->HandleProtocol, LoadedImage->DeviceHandle, &DevicePathProtocol, (VOID **) &DevicePath);
398 if (EFI_ERROR(Status))
399 continue; // This happens, ignore it.
400
401 // Only grab memory range nodes
402 if (DevicePathType(DevicePath) != HARDWARE_DEVICE_PATH || DevicePathSubType(DevicePath) != HW_MEMMAP_DP)
403 continue;
404
405 // Check if we have this device path in the list already
406 // WARNING: This assumes the first node in the device path is unique!
407 Seen = FALSE;
408 for (PathIndex = 0; PathIndex < PathCount; PathIndex++) {
409 if (DevicePathNodeLength(DevicePath) != DevicePathNodeLength(PathList[PathIndex]))
410 continue;
411 if (CompareMem(DevicePath, PathList[PathIndex], DevicePathNodeLength(DevicePath)) == 0) {
412 Seen = TRUE;
413 break;
414 }
415 }
416 if (Seen)
417 continue;
418
419 PathList[PathCount++] = AppendDevicePath(DevicePath, LegacyLoaderMediaPath);
420 }
421 MyFreePool(Handles);
422
423 if (HardcodedPathList) {
424 for (HardcodedIndex = 0; HardcodedPathList[HardcodedIndex] && PathCount < MaxPaths; HardcodedIndex++)
425 PathList[PathCount++] = HardcodedPathList[HardcodedIndex];
426 }
427 PathList[PathCount] = NULL;
428 }
429
430 //
431 // volume functions
432 //
433
434 // Return a pointer to a string containing a filesystem type name. If the
435 // filesystem type is unknown, a blank (but non-null) string is returned.
436 // The returned variable is a constant that should NOT be freed.
437 static CHAR16 *FSTypeName(IN UINT32 TypeCode) {
438 CHAR16 *retval = NULL;
439
440 switch (TypeCode) {
441 case FS_TYPE_WHOLEDISK:
442 retval = L" whole disk";
443 break;
444 case FS_TYPE_FAT:
445 retval = L" FAT";
446 break;
447 case FS_TYPE_HFSPLUS:
448 retval = L" HFS+";
449 break;
450 case FS_TYPE_EXT2:
451 retval = L" ext2";
452 break;
453 case FS_TYPE_EXT3:
454 retval = L" ext3";
455 break;
456 case FS_TYPE_EXT4:
457 retval = L" ext4";
458 break;
459 case FS_TYPE_REISERFS:
460 retval = L" ReiserFS";
461 break;
462 case FS_TYPE_BTRFS:
463 retval = L" Btrfs";
464 break;
465 case FS_TYPE_XFS:
466 retval = L" XFS";
467 break;
468 case FS_TYPE_ISO9660:
469 retval = L" ISO-9660";
470 break;
471 case FS_TYPE_NTFS:
472 retval = L" NTFS";
473 break;
474 default:
475 retval = L"";
476 break;
477 } // switch
478 return retval;
479 } // CHAR16 *FSTypeName()
480
481 // Identify the filesystem type and record the filesystem's UUID/serial number,
482 // if possible. Expects a Buffer containing the first few (normally at least
483 // 4096) bytes of the filesystem. Sets the filesystem type code in Volume->FSType
484 // and the UUID/serial number in Volume->VolUuid. Note that the UUID value is
485 // recognized differently for each filesystem, and is currently supported only
486 // for NTFS, ext2/3/4fs, and ReiserFS (and for NTFS it's really a 64-bit serial
487 // number not a UUID or GUID). If the UUID can't be determined, it's set to 0.
488 // Also, the UUID is just read directly into memory; it is *NOT* valid when
489 // displayed by GuidAsString() or used in other GUID/UUID-manipulating
490 // functions. (As I write, it's being used merely to detect partitions that are
491 // part of a RAID 1 array.)
492 static VOID SetFilesystemData(IN UINT8 *Buffer, IN UINTN BufferSize, IN OUT REFIT_VOLUME *Volume) {
493 UINT32 *Ext2Incompat, *Ext2Compat;
494 UINT16 *Magic16;
495 char *MagicString;
496 EFI_FILE *RootDir;
497
498 if ((Buffer != NULL) && (Volume != NULL)) {
499 SetMem(&(Volume->VolUuid), sizeof(EFI_GUID), 0);
500 Volume->FSType = FS_TYPE_UNKNOWN;
501
502 if (BufferSize >= (1024 + 100)) {
503 Magic16 = (UINT16*) (Buffer + 1024 + 56);
504 if (*Magic16 == EXT2_SUPER_MAGIC) { // ext2/3/4
505 Ext2Compat = (UINT32*) (Buffer + 1024 + 92);
506 Ext2Incompat = (UINT32*) (Buffer + 1024 + 96);
507 if ((*Ext2Incompat & 0x0040) || (*Ext2Incompat & 0x0200)) { // check for extents or flex_bg
508 Volume->FSType = FS_TYPE_EXT4;
509 } else if (*Ext2Compat & 0x0004) { // check for journal
510 Volume->FSType = FS_TYPE_EXT3;
511 } else { // none of these features; presume it's ext2...
512 Volume->FSType = FS_TYPE_EXT2;
513 }
514 CopyMem(&(Volume->VolUuid), Buffer + 1024 + 104, sizeof(EFI_GUID));
515 return;
516 }
517 } // search for ext2/3/4 magic
518
519 if (BufferSize >= (65536 + 100)) {
520 MagicString = (char*) (Buffer + 65536 + 52);
521 if ((CompareMem(MagicString, REISERFS_SUPER_MAGIC_STRING, 8) == 0) ||
522 (CompareMem(MagicString, REISER2FS_SUPER_MAGIC_STRING, 9) == 0) ||
523 (CompareMem(MagicString, REISER2FS_JR_SUPER_MAGIC_STRING, 9) == 0)) {
524 Volume->FSType = FS_TYPE_REISERFS;
525 CopyMem(&(Volume->VolUuid), Buffer + 65536 + 84, sizeof(EFI_GUID));
526 return;
527 } // if
528 } // search for ReiserFS magic
529
530 if (BufferSize >= (65536 + 64 + 8)) {
531 MagicString = (char*) (Buffer + 65536 + 64);
532 if (CompareMem(MagicString, BTRFS_SIGNATURE, 8) == 0) {
533 Volume->FSType = FS_TYPE_BTRFS;
534 return;
535 } // if
536 } // search for Btrfs magic
537
538 if (BufferSize >= 512) {
539 MagicString = (char*) Buffer;
540 if (CompareMem(MagicString, XFS_SIGNATURE, 4) == 0) {
541 Volume->FSType = FS_TYPE_XFS;
542 return;
543 }
544 } // search for XFS magic
545
546 if (BufferSize >= (1024 + 2)) {
547 Magic16 = (UINT16*) (Buffer + 1024);
548 if ((*Magic16 == HFSPLUS_MAGIC1) || (*Magic16 == HFSPLUS_MAGIC2)) {
549 Volume->FSType = FS_TYPE_HFSPLUS;
550 return;
551 }
552 } // search for HFS+ magic
553
554 if (BufferSize >= 512) {
555 // Search for NTFS, FAT, and MBR/EBR.
556 // These all have 0xAA55 at the end of the first sector, but FAT and
557 // MBR/EBR are not easily distinguished. Thus, we first look for NTFS
558 // "magic"; then check to see if the volume can be mounted, thus
559 // relying on the EFI's built-in FAT driver to identify FAT; and then
560 // check to see if the "volume" is in fact a whole-disk device.
561 Magic16 = (UINT16*) (Buffer + 510);
562 if (*Magic16 == FAT_MAGIC) {
563 MagicString = (char*) (Buffer + 3);
564 if (CompareMem(MagicString, NTFS_SIGNATURE, 8) == 0) {
565 Volume->FSType = FS_TYPE_NTFS;
566 CopyMem(&(Volume->VolUuid), Buffer + 0x48, sizeof(UINT64));
567 } else {
568 RootDir = LibOpenRoot(Volume->DeviceHandle);
569 if (RootDir != NULL) {
570 Volume->FSType = FS_TYPE_FAT;
571 } else if (!Volume->BlockIO->Media->LogicalPartition) {
572 Volume->FSType = FS_TYPE_WHOLEDISK;
573 } // if/elseif/else
574 } // if/else
575 return;
576 } // if
577 } // search for FAT and NTFS magic
578
579 // If no other filesystem is identified and block size is right, assume
580 // it's ISO-9660....
581 if (Volume->BlockIO->Media->BlockSize == 2048) {
582 Volume->FSType = FS_TYPE_ISO9660;
583 return;
584 }
585
586 } // if ((Buffer != NULL) && (Volume != NULL))
587
588 } // UINT32 SetFilesystemData()
589
590 static VOID ScanVolumeBootcode(REFIT_VOLUME *Volume, BOOLEAN *Bootable)
591 {
592 EFI_STATUS Status;
593 UINT8 Buffer[SAMPLE_SIZE];
594 UINTN i;
595 MBR_PARTITION_INFO *MbrTable;
596 BOOLEAN MbrTableFound = FALSE;
597
598 Volume->HasBootCode = FALSE;
599 Volume->OSIconName = NULL;
600 Volume->OSName = NULL;
601 *Bootable = FALSE;
602
603 if (Volume->BlockIO == NULL)
604 return;
605 if (Volume->BlockIO->Media->BlockSize > SAMPLE_SIZE)
606 return; // our buffer is too small...
607
608 // look at the boot sector (this is used for both hard disks and El Torito images!)
609 Status = refit_call5_wrapper(Volume->BlockIO->ReadBlocks,
610 Volume->BlockIO, Volume->BlockIO->Media->MediaId,
611 Volume->BlockIOOffset, SAMPLE_SIZE, Buffer);
612 if (!EFI_ERROR(Status)) {
613 SetFilesystemData(Buffer, SAMPLE_SIZE, Volume);
614 }
615 if ((Status == EFI_SUCCESS) && (GlobalConfig.LegacyType == LEGACY_TYPE_MAC)) {
616 if ((*((UINT16 *)(Buffer + 510)) == 0xaa55 && Buffer[0] != 0) && (FindMem(Buffer, 512, "EXFAT", 5) == -1)) {
617 *Bootable = TRUE;
618 Volume->HasBootCode = TRUE;
619 }
620
621 // detect specific boot codes
622 if (CompareMem(Buffer + 2, "LILO", 4) == 0 ||
623 CompareMem(Buffer + 6, "LILO", 4) == 0 ||
624 CompareMem(Buffer + 3, "SYSLINUX", 8) == 0 ||
625 FindMem(Buffer, SECTOR_SIZE, "ISOLINUX", 8) >= 0) {
626 Volume->HasBootCode = TRUE;
627 Volume->OSIconName = L"linux";
628 Volume->OSName = L"Linux";
629
630 } else if (FindMem(Buffer, 512, "Geom\0Hard Disk\0Read\0 Error", 26) >= 0) { // GRUB
631 Volume->HasBootCode = TRUE;
632 Volume->OSIconName = L"grub,linux";
633 Volume->OSName = L"Linux";
634
635 } else if ((*((UINT32 *)(Buffer + 502)) == 0 &&
636 *((UINT32 *)(Buffer + 506)) == 50000 &&
637 *((UINT16 *)(Buffer + 510)) == 0xaa55) ||
638 FindMem(Buffer, SECTOR_SIZE, "Starting the BTX loader", 23) >= 0) {
639 Volume->HasBootCode = TRUE;
640 Volume->OSIconName = L"freebsd";
641 Volume->OSName = L"FreeBSD";
642
643 // If more differentiation needed, also search for
644 // "Invalid partition table" &/or "Missing boot loader".
645 } else if ((*((UINT16 *)(Buffer + 510)) == 0xaa55) &&
646 (FindMem(Buffer, SECTOR_SIZE, "Boot loader too large", 21) >= 0) &&
647 (FindMem(Buffer, SECTOR_SIZE, "I/O error loading boot loader", 29) >= 0)) {
648 Volume->HasBootCode = TRUE;
649 Volume->OSIconName = L"freebsd";
650 Volume->OSName = L"FreeBSD";
651
652 } else if (FindMem(Buffer, 512, "!Loading", 8) >= 0 ||
653 FindMem(Buffer, SECTOR_SIZE, "/cdboot\0/CDBOOT\0", 16) >= 0) {
654 Volume->HasBootCode = TRUE;
655 Volume->OSIconName = L"openbsd";
656 Volume->OSName = L"OpenBSD";
657
658 } else if (FindMem(Buffer, 512, "Not a bootxx image", 18) >= 0 ||
659 *((UINT32 *)(Buffer + 1028)) == 0x7886b6d1) {
660 Volume->HasBootCode = TRUE;
661 Volume->OSIconName = L"netbsd";
662 Volume->OSName = L"NetBSD";
663
664 // Windows NT/200x/XP
665 } else if (FindMem(Buffer, SECTOR_SIZE, "NTLDR", 5) >= 0) {
666 Volume->HasBootCode = TRUE;
667 Volume->OSIconName = L"win";
668 Volume->OSName = L"Windows";
669
670 // Windows Vista/7/8
671 } else if (FindMem(Buffer, SECTOR_SIZE, "BOOTMGR", 7) >= 0) {
672 Volume->HasBootCode = TRUE;
673 Volume->OSIconName = L"win8,win";
674 Volume->OSName = L"Windows";
675
676 } else if (FindMem(Buffer, 512, "CPUBOOT SYS", 11) >= 0 ||
677 FindMem(Buffer, 512, "KERNEL SYS", 11) >= 0) {
678 Volume->HasBootCode = TRUE;
679 Volume->OSIconName = L"freedos";
680 Volume->OSName = L"FreeDOS";
681
682 } else if (FindMem(Buffer, 512, "OS2LDR", 6) >= 0 ||
683 FindMem(Buffer, 512, "OS2BOOT", 7) >= 0) {
684 Volume->HasBootCode = TRUE;
685 Volume->OSIconName = L"ecomstation";
686 Volume->OSName = L"eComStation";
687
688 } else if (FindMem(Buffer, 512, "Be Boot Loader", 14) >= 0) {
689 Volume->HasBootCode = TRUE;
690 Volume->OSIconName = L"beos";
691 Volume->OSName = L"BeOS";
692
693 } else if (FindMem(Buffer, 512, "yT Boot Loader", 14) >= 0) {
694 Volume->HasBootCode = TRUE;
695 Volume->OSIconName = L"zeta,beos";
696 Volume->OSName = L"ZETA";
697
698 } else if (FindMem(Buffer, 512, "\x04" "beos\x06" "system\x05" "zbeos", 18) >= 0 ||
699 FindMem(Buffer, 512, "\x06" "system\x0c" "haiku_loader", 20) >= 0) {
700 Volume->HasBootCode = TRUE;
701 Volume->OSIconName = L"haiku,beos";
702 Volume->OSName = L"Haiku";
703
704 }
705
706 // NOTE: If you add an operating system with a name that starts with 'W' or 'L', you
707 // need to fix AddLegacyEntry in refind/legacy.c.
708
709 #if REFIT_DEBUG > 0
710 Print(L" Result of bootcode detection: %s %s (%s)\n",
711 Volume->HasBootCode ? L"bootable" : L"non-bootable",
712 Volume->OSName, Volume->OSIconName);
713 #endif
714
715 // dummy FAT boot sector (created by OS X's newfs_msdos)
716 if (FindMem(Buffer, 512, "Non-system disk", 15) >= 0)
717 Volume->HasBootCode = FALSE;
718
719 // dummy FAT boot sector (created by Linux's mkdosfs)
720 if (FindMem(Buffer, 512, "This is not a bootable disk", 27) >= 0)
721 Volume->HasBootCode = FALSE;
722
723 // dummy FAT boot sector (created by Windows)
724 if (FindMem(Buffer, 512, "Press any key to restart", 24) >= 0)
725 Volume->HasBootCode = FALSE;
726
727 // check for MBR partition table
728 if (*((UINT16 *)(Buffer + 510)) == 0xaa55) {
729 MbrTable = (MBR_PARTITION_INFO *)(Buffer + 446);
730 for (i = 0; i < 4; i++)
731 if (MbrTable[i].StartLBA && MbrTable[i].Size)
732 MbrTableFound = TRUE;
733 for (i = 0; i < 4; i++)
734 if (MbrTable[i].Flags != 0x00 && MbrTable[i].Flags != 0x80)
735 MbrTableFound = FALSE;
736 if (MbrTableFound) {
737 Volume->MbrPartitionTable = AllocatePool(4 * 16);
738 CopyMem(Volume->MbrPartitionTable, MbrTable, 4 * 16);
739 }
740 }
741
742 } else {
743 #if REFIT_DEBUG > 0
744 CheckError(Status, L"while reading boot sector");
745 #endif
746 }
747 } /* VOID ScanVolumeBootcode() */
748
749 // Set default volume badge icon based on /.VolumeBadge.{icns|png} file or disk kind
750 VOID SetVolumeBadgeIcon(REFIT_VOLUME *Volume)
751 {
752 if (GlobalConfig.HideUIFlags & HIDEUI_FLAG_BADGES)
753 return;
754
755 if (Volume->VolBadgeImage == NULL) {
756 Volume->VolBadgeImage = egLoadIconAnyType(Volume->RootDir, L"", L".VolumeBadge", GlobalConfig.IconSizes[ICON_SIZE_BADGE]);
757 }
758
759 if (Volume->VolBadgeImage == NULL) {
760 switch (Volume->DiskKind) {
761 case DISK_KIND_INTERNAL:
762 Volume->VolBadgeImage = BuiltinIcon(BUILTIN_ICON_VOL_INTERNAL);
763 break;
764 case DISK_KIND_EXTERNAL:
765 Volume->VolBadgeImage = BuiltinIcon(BUILTIN_ICON_VOL_EXTERNAL);
766 break;
767 case DISK_KIND_OPTICAL:
768 Volume->VolBadgeImage = BuiltinIcon(BUILTIN_ICON_VOL_OPTICAL);
769 break;
770 case DISK_KIND_NET:
771 Volume->VolBadgeImage = BuiltinIcon(BUILTIN_ICON_VOL_NET);
772 break;
773 } // switch()
774 }
775 } // VOID SetVolumeBadgeIcon()
776
777 // Return a string representing the input size in IEEE-1541 units.
778 // The calling function is responsible for freeing the allocated memory.
779 static CHAR16 *SizeInIEEEUnits(UINT64 SizeInBytes) {
780 UINT64 SizeInIeee;
781 UINTN Index = 0, NumPrefixes;
782 CHAR16 *Units, *Prefixes = L" KMGTPEZ";
783 CHAR16 *TheValue;
784
785 TheValue = AllocateZeroPool(sizeof(CHAR16) * 256);
786 if (TheValue != NULL) {
787 NumPrefixes = StrLen(Prefixes);
788 SizeInIeee = SizeInBytes;
789 while ((SizeInIeee > 1024) && (Index < (NumPrefixes - 1))) {
790 Index++;
791 SizeInIeee /= 1024;
792 } // while
793 if (Prefixes[Index] == ' ') {
794 Units = StrDuplicate(L"-byte");
795 } else {
796 Units = StrDuplicate(L" iB");
797 Units[1] = Prefixes[Index];
798 } // if/else
799 SPrint(TheValue, 255, L"%ld%s", SizeInIeee, Units);
800 } // if
801 return TheValue;
802 } // CHAR16 *SizeInIEEEUnits()
803
804 // Return a name for the volume. Ideally this should be the label for the
805 // filesystem or volume, but this function falls back to describing the
806 // filesystem by size (200 MiB, etc.) and/or type (ext2, HFS+, etc.), if
807 // this information can be extracted.
808 // The calling function is responsible for freeing the memory allocated
809 // for the name string.
810 static CHAR16 *GetVolumeName(REFIT_VOLUME *Volume) {
811 EFI_FILE_SYSTEM_INFO *FileSystemInfoPtr = NULL;
812 CHAR16 *FoundName = NULL;
813 CHAR16 *SISize, *TypeName;
814
815 if (Volume->RootDir != NULL) {
816 FileSystemInfoPtr = LibFileSystemInfo(Volume->RootDir);
817 }
818
819 if ((FileSystemInfoPtr != NULL) && (FileSystemInfoPtr->VolumeLabel != NULL) &&
820 (StrLen(FileSystemInfoPtr->VolumeLabel) > 0)) {
821 FoundName = StrDuplicate(FileSystemInfoPtr->VolumeLabel);
822 }
823
824 // If no filesystem name, try to use the partition name....
825 if ((FoundName == NULL) && (Volume->PartName != NULL) && (StrLen(Volume->PartName) > 0) &&
826 !IsIn(Volume->PartName, IGNORE_PARTITION_NAMES)) {
827 FoundName = StrDuplicate(Volume->PartName);
828 } // if use partition name
829
830 // No filesystem or acceptable partition name, so use fs type and size
831 if ((FoundName == NULL) && (FileSystemInfoPtr != NULL)) {
832 FoundName = AllocateZeroPool(sizeof(CHAR16) * 256);
833 if (FoundName != NULL) {
834 SISize = SizeInIEEEUnits(FileSystemInfoPtr->VolumeSize);
835 SPrint(FoundName, 255, L"%s%s volume", SISize, FSTypeName(Volume->FSType));
836 MyFreePool(SISize);
837 } // if allocated memory OK
838 } // if (FoundName == NULL)
839
840 MyFreePool(FileSystemInfoPtr);
841
842 if (FoundName == NULL) {
843 FoundName = AllocateZeroPool(sizeof(CHAR16) * 256);
844 if (FoundName != NULL) {
845 TypeName = FSTypeName(Volume->FSType); // NOTE: Don't free TypeName; function returns constant
846 if (StrLen(TypeName) > 0)
847 SPrint(FoundName, 255, L"%s volume", TypeName);
848 else
849 SPrint(FoundName, 255, L"unknown volume");
850 } // if allocated memory OK
851 } // if
852
853 // TODO: Above could be improved/extended, in case filesystem name is not found,
854 // such as:
855 // - use or add disk/partition number (e.g., "(hd0,2)")
856
857 // Desperate fallback name....
858 if (FoundName == NULL) {
859 FoundName = StrDuplicate(L"unknown volume");
860 }
861 return FoundName;
862 } // static CHAR16 *GetVolumeName()
863
864 // Determine the unique GUID and name of the volume and store them.
865 static VOID SetPartGuidAndName(REFIT_VOLUME *Volume, EFI_DEVICE_PATH_PROTOCOL *DevicePath) {
866 HARDDRIVE_DEVICE_PATH *HdDevicePath;
867
868 if (Volume == NULL)
869 return;
870
871 if ((DevicePath->Type == MEDIA_DEVICE_PATH) && (DevicePath->SubType == MEDIA_HARDDRIVE_DP)) {
872 HdDevicePath = (HARDDRIVE_DEVICE_PATH*) DevicePath;
873 if (HdDevicePath->SignatureType == SIGNATURE_TYPE_GUID) {
874 Volume->PartGuid = *((EFI_GUID*) HdDevicePath->Signature);
875 Volume->PartName = PartNameFromGuid(&(Volume->PartGuid));
876 } // if
877 } // if
878 } // VOID SetPartGuid()
879
880 // Return TRUE if NTFS boot files are found or if Volume is unreadable,
881 // FALSE otherwise. The idea is to weed out non-boot NTFS volumes from
882 // BIOS/legacy boot list on Macs. We can't assume NTFS will be readable,
883 // so return TRUE if it's unreadable; but if it IS readable, return
884 // TRUE only if Windows boot files are found.
885 static BOOLEAN HasWindowsBiosBootFiles(REFIT_VOLUME *Volume) {
886 BOOLEAN FilesFound = TRUE;
887
888 if (Volume->RootDir != NULL) {
889 FilesFound = FileExists(Volume->RootDir, L"NTLDR") || // Windows NT/200x/XP boot file
890 FileExists(Volume->RootDir, L"bootmgr"); // Windows Vista/7/8 boot file
891 } // if
892 return FilesFound;
893 } // static VOID HasWindowsBiosBootFiles()
894
895 VOID ScanVolume(REFIT_VOLUME *Volume)
896 {
897 EFI_STATUS Status;
898 EFI_DEVICE_PATH *DevicePath, *NextDevicePath;
899 EFI_DEVICE_PATH *DiskDevicePath, *RemainingDevicePath;
900 EFI_HANDLE WholeDiskHandle;
901 UINTN PartialLength;
902 BOOLEAN Bootable;
903
904 // get device path
905 Volume->DevicePath = DuplicateDevicePath(DevicePathFromHandle(Volume->DeviceHandle));
906 #if REFIT_DEBUG > 0
907 if (Volume->DevicePath != NULL) {
908 Print(L"* %s\n", DevicePathToStr(Volume->DevicePath));
909 #if REFIT_DEBUG >= 2
910 DumpHex(1, 0, DevicePathSize(Volume->DevicePath), Volume->DevicePath);
911 #endif
912 }
913 #endif
914
915 Volume->DiskKind = DISK_KIND_INTERNAL; // default
916
917 // get block i/o
918 Status = refit_call3_wrapper(BS->HandleProtocol, Volume->DeviceHandle, &BlockIoProtocol, (VOID **) &(Volume->BlockIO));
919 if (EFI_ERROR(Status)) {
920 Volume->BlockIO = NULL;
921 Print(L"Warning: Can't get BlockIO protocol.\n");
922 } else {
923 if (Volume->BlockIO->Media->BlockSize == 2048)
924 Volume->DiskKind = DISK_KIND_OPTICAL;
925 }
926
927 // scan for bootcode and MBR table
928 Bootable = FALSE;
929 ScanVolumeBootcode(Volume, &Bootable);
930
931 // detect device type
932 DevicePath = Volume->DevicePath;
933 while (DevicePath != NULL && !IsDevicePathEndType(DevicePath)) {
934 NextDevicePath = NextDevicePathNode(DevicePath);
935
936 if (DevicePathType(DevicePath) == MEDIA_DEVICE_PATH) {
937 SetPartGuidAndName(Volume, DevicePath);
938 }
939 if (DevicePathType(DevicePath) == MESSAGING_DEVICE_PATH &&
940 (DevicePathSubType(DevicePath) == MSG_USB_DP ||
941 DevicePathSubType(DevicePath) == MSG_USB_CLASS_DP ||
942 DevicePathSubType(DevicePath) == MSG_1394_DP ||
943 DevicePathSubType(DevicePath) == MSG_FIBRECHANNEL_DP))
944 Volume->DiskKind = DISK_KIND_EXTERNAL; // USB/FireWire/FC device -> external
945 if (DevicePathType(DevicePath) == MEDIA_DEVICE_PATH &&
946 DevicePathSubType(DevicePath) == MEDIA_CDROM_DP) {
947 Volume->DiskKind = DISK_KIND_OPTICAL; // El Torito entry -> optical disk
948 Bootable = TRUE;
949 }
950
951 if (DevicePathType(DevicePath) == MEDIA_DEVICE_PATH && DevicePathSubType(DevicePath) == MEDIA_VENDOR_DP) {
952 Volume->IsAppleLegacy = TRUE; // legacy BIOS device entry
953 // TODO: also check for Boot Camp GUID
954 Bootable = FALSE; // this handle's BlockIO is just an alias for the whole device
955 }
956
957 if (DevicePathType(DevicePath) == MESSAGING_DEVICE_PATH) {
958 // make a device path for the whole device
959 PartialLength = (UINT8 *)NextDevicePath - (UINT8 *)(Volume->DevicePath);
960 DiskDevicePath = (EFI_DEVICE_PATH *)AllocatePool(PartialLength + sizeof(EFI_DEVICE_PATH));
961 CopyMem(DiskDevicePath, Volume->DevicePath, PartialLength);
962 CopyMem((UINT8 *)DiskDevicePath + PartialLength, EndDevicePath, sizeof(EFI_DEVICE_PATH));
963
964 // get the handle for that path
965 RemainingDevicePath = DiskDevicePath;
966 Status = refit_call3_wrapper(BS->LocateDevicePath, &BlockIoProtocol, &RemainingDevicePath, &WholeDiskHandle);
967 FreePool(DiskDevicePath);
968
969 if (!EFI_ERROR(Status)) {
970 //Print(L" - original handle: %08x - disk handle: %08x\n", (UINT32)DeviceHandle, (UINT32)WholeDiskHandle);
971
972 // get the device path for later
973 Status = refit_call3_wrapper(BS->HandleProtocol, WholeDiskHandle, &DevicePathProtocol, (VOID **) &DiskDevicePath);
974 if (!EFI_ERROR(Status)) {
975 Volume->WholeDiskDevicePath = DuplicateDevicePath(DiskDevicePath);
976 }
977
978 // look at the BlockIO protocol
979 Status = refit_call3_wrapper(BS->HandleProtocol, WholeDiskHandle, &BlockIoProtocol,
980 (VOID **) &Volume->WholeDiskBlockIO);
981 if (!EFI_ERROR(Status)) {
982
983 // check the media block size
984 if (Volume->WholeDiskBlockIO->Media->BlockSize == 2048)
985 Volume->DiskKind = DISK_KIND_OPTICAL;
986
987 } else {
988 Volume->WholeDiskBlockIO = NULL;
989 //CheckError(Status, L"from HandleProtocol");
990 }
991 } //else
992 // CheckError(Status, L"from LocateDevicePath");
993 }
994
995 DevicePath = NextDevicePath;
996 } // while
997
998 if (!Bootable) {
999 #if REFIT_DEBUG > 0
1000 if (Volume->HasBootCode)
1001 Print(L" Volume considered non-bootable, but boot code is present\n");
1002 #endif
1003 Volume->HasBootCode = FALSE;
1004 }
1005
1006 // open the root directory of the volume
1007 Volume->RootDir = LibOpenRoot(Volume->DeviceHandle);
1008
1009 // Set volume icon based on .VolumeBadge icon or disk kind
1010 SetVolumeBadgeIcon(Volume);
1011
1012 Volume->VolName = GetVolumeName(Volume);
1013
1014 if (Volume->RootDir == NULL) {
1015 Volume->IsReadable = FALSE;
1016 return;
1017 } else {
1018 Volume->IsReadable = TRUE;
1019 if ((GlobalConfig.LegacyType == LEGACY_TYPE_MAC) && (Volume->FSType == FS_TYPE_NTFS) && Volume->HasBootCode) {
1020 // VBR boot code found on NTFS, but volume is not actually bootable
1021 // unless there are actual boot file, so check for them....
1022 Volume->HasBootCode = HasWindowsBiosBootFiles(Volume);
1023 }
1024 } // if/else
1025
1026 // get custom volume icons if present
1027 if (!Volume->VolIconImage) {
1028 Volume->VolIconImage = egLoadIconAnyType(Volume->RootDir, L"", L".VolumeIcon", GlobalConfig.IconSizes[ICON_SIZE_BIG]);
1029 }
1030 } // ScanVolume()
1031
1032 static VOID ScanExtendedPartition(REFIT_VOLUME *WholeDiskVolume, MBR_PARTITION_INFO *MbrEntry)
1033 {
1034 EFI_STATUS Status;
1035 REFIT_VOLUME *Volume;
1036 UINT32 ExtBase, ExtCurrent, NextExtCurrent;
1037 UINTN i;
1038 UINTN LogicalPartitionIndex = 4;
1039 UINT8 SectorBuffer[512];
1040 BOOLEAN Bootable;
1041 MBR_PARTITION_INFO *EMbrTable;
1042
1043 ExtBase = MbrEntry->StartLBA;
1044
1045 for (ExtCurrent = ExtBase; ExtCurrent; ExtCurrent = NextExtCurrent) {
1046 // read current EMBR
1047 Status = refit_call5_wrapper(WholeDiskVolume->BlockIO->ReadBlocks,
1048 WholeDiskVolume->BlockIO,
1049 WholeDiskVolume->BlockIO->Media->MediaId,
1050 ExtCurrent, 512, SectorBuffer);
1051 if (EFI_ERROR(Status))
1052 break;
1053 if (*((UINT16 *)(SectorBuffer + 510)) != 0xaa55)
1054 break;
1055 EMbrTable = (MBR_PARTITION_INFO *)(SectorBuffer + 446);
1056
1057 // scan logical partitions in this EMBR
1058 NextExtCurrent = 0;
1059 for (i = 0; i < 4; i++) {
1060 if ((EMbrTable[i].Flags != 0x00 && EMbrTable[i].Flags != 0x80) ||
1061 EMbrTable[i].StartLBA == 0 || EMbrTable[i].Size == 0)
1062 break;
1063 if (IS_EXTENDED_PART_TYPE(EMbrTable[i].Type)) {
1064 // set next ExtCurrent
1065 NextExtCurrent = ExtBase + EMbrTable[i].StartLBA;
1066 break;
1067 } else {
1068
1069 // found a logical partition
1070 Volume = AllocateZeroPool(sizeof(REFIT_VOLUME));
1071 Volume->DiskKind = WholeDiskVolume->DiskKind;
1072 Volume->IsMbrPartition = TRUE;
1073 Volume->MbrPartitionIndex = LogicalPartitionIndex++;
1074 Volume->VolName = AllocateZeroPool(256 * sizeof(UINT16));
1075 SPrint(Volume->VolName, 255, L"Partition %d", Volume->MbrPartitionIndex + 1);
1076 Volume->BlockIO = WholeDiskVolume->BlockIO;
1077 Volume->BlockIOOffset = ExtCurrent + EMbrTable[i].StartLBA;
1078 Volume->WholeDiskBlockIO = WholeDiskVolume->BlockIO;
1079
1080 Bootable = FALSE;
1081 ScanVolumeBootcode(Volume, &Bootable);
1082 if (!Bootable)
1083 Volume->HasBootCode = FALSE;
1084
1085 SetVolumeBadgeIcon(Volume);
1086
1087 AddListElement((VOID ***) &Volumes, &VolumesCount, Volume);
1088
1089 }
1090 }
1091 }
1092 } /* VOID ScanExtendedPartition() */
1093
1094 VOID ScanVolumes(VOID)
1095 {
1096 EFI_STATUS Status;
1097 EFI_HANDLE *Handles;
1098 REFIT_VOLUME *Volume, *WholeDiskVolume;
1099 MBR_PARTITION_INFO *MbrTable;
1100 UINTN HandleCount = 0;
1101 UINTN HandleIndex;
1102 UINTN VolumeIndex, VolumeIndex2;
1103 UINTN PartitionIndex;
1104 UINTN SectorSum, i, VolNumber = 0;
1105 UINT8 *SectorBuffer1, *SectorBuffer2;
1106 EFI_GUID *UuidList;
1107 EFI_GUID NullUuid = NULL_GUID_VALUE;
1108
1109 MyFreePool(Volumes);
1110 Volumes = NULL;
1111 VolumesCount = 0;
1112 ForgetPartitionTables();
1113
1114 // get all filesystem handles
1115 Status = LibLocateHandle(ByProtocol, &BlockIoProtocol, NULL, &HandleCount, &Handles);
1116 UuidList = AllocateZeroPool(sizeof(EFI_GUID) * HandleCount);
1117 if (Status == EFI_NOT_FOUND) {
1118 return; // no filesystems. strange, but true...
1119 }
1120 if (CheckError(Status, L"while listing all file systems"))
1121 return;
1122
1123 // first pass: collect information about all handles
1124 for (HandleIndex = 0; HandleIndex < HandleCount; HandleIndex++) {
1125 Volume = AllocateZeroPool(sizeof(REFIT_VOLUME));
1126 Volume->DeviceHandle = Handles[HandleIndex];
1127 AddPartitionTable(Volume);
1128 ScanVolume(Volume);
1129 if (UuidList) {
1130 UuidList[HandleIndex] = Volume->VolUuid;
1131 for (i = 0; i < HandleIndex; i++) {
1132 if ((CompareMem(&(Volume->VolUuid), &(UuidList[i]), sizeof(EFI_GUID)) == 0) &&
1133 (CompareMem(&(Volume->VolUuid), &NullUuid, sizeof(EFI_GUID)) != 0)) { // Duplicate filesystem UUID
1134 Volume->IsReadable = FALSE;
1135 } // if
1136 } // for
1137 } // if
1138 if (Volume->IsReadable)
1139 Volume->VolNumber = VolNumber++;
1140 else
1141 Volume->VolNumber = VOL_UNREADABLE;
1142
1143 AddListElement((VOID ***) &Volumes, &VolumesCount, Volume);
1144
1145 if (Volume->DeviceHandle == SelfLoadedImage->DeviceHandle)
1146 SelfVolume = Volume;
1147 }
1148 MyFreePool(Handles);
1149
1150 if (SelfVolume == NULL)
1151 Print(L"WARNING: SelfVolume not found");
1152
1153 // second pass: relate partitions and whole disk devices
1154 for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
1155 Volume = Volumes[VolumeIndex];
1156 // check MBR partition table for extended partitions
1157 if (Volume->BlockIO != NULL && Volume->WholeDiskBlockIO != NULL &&
1158 Volume->BlockIO == Volume->WholeDiskBlockIO && Volume->BlockIOOffset == 0 &&
1159 Volume->MbrPartitionTable != NULL) {
1160 MbrTable = Volume->MbrPartitionTable;
1161 for (PartitionIndex = 0; PartitionIndex < 4; PartitionIndex++) {
1162 if (IS_EXTENDED_PART_TYPE(MbrTable[PartitionIndex].Type)) {
1163 ScanExtendedPartition(Volume, MbrTable + PartitionIndex);
1164 }
1165 }
1166 }
1167
1168 // search for corresponding whole disk volume entry
1169 WholeDiskVolume = NULL;
1170 if (Volume->BlockIO != NULL && Volume->WholeDiskBlockIO != NULL &&
1171 Volume->BlockIO != Volume->WholeDiskBlockIO) {
1172 for (VolumeIndex2 = 0; VolumeIndex2 < VolumesCount; VolumeIndex2++) {
1173 if (Volumes[VolumeIndex2]->BlockIO == Volume->WholeDiskBlockIO &&
1174 Volumes[VolumeIndex2]->BlockIOOffset == 0) {
1175 WholeDiskVolume = Volumes[VolumeIndex2];
1176 }
1177 }
1178 }
1179
1180 if (WholeDiskVolume != NULL && WholeDiskVolume->MbrPartitionTable != NULL) {
1181 // check if this volume is one of the partitions in the table
1182 MbrTable = WholeDiskVolume->MbrPartitionTable;
1183 SectorBuffer1 = AllocatePool(512);
1184 SectorBuffer2 = AllocatePool(512);
1185 for (PartitionIndex = 0; PartitionIndex < 4; PartitionIndex++) {
1186 // check size
1187 if ((UINT64)(MbrTable[PartitionIndex].Size) != Volume->BlockIO->Media->LastBlock + 1)
1188 continue;
1189
1190 // compare boot sector read through offset vs. directly
1191 Status = refit_call5_wrapper(Volume->BlockIO->ReadBlocks,
1192 Volume->BlockIO, Volume->BlockIO->Media->MediaId,
1193 Volume->BlockIOOffset, 512, SectorBuffer1);
1194 if (EFI_ERROR(Status))
1195 break;
1196 Status = refit_call5_wrapper(Volume->WholeDiskBlockIO->ReadBlocks,
1197 Volume->WholeDiskBlockIO, Volume->WholeDiskBlockIO->Media->MediaId,
1198 MbrTable[PartitionIndex].StartLBA, 512, SectorBuffer2);
1199 if (EFI_ERROR(Status))
1200 break;
1201 if (CompareMem(SectorBuffer1, SectorBuffer2, 512) != 0)
1202 continue;
1203 SectorSum = 0;
1204 for (i = 0; i < 512; i++)
1205 SectorSum += SectorBuffer1[i];
1206 if (SectorSum < 1000)
1207 continue;
1208
1209 // TODO: mark entry as non-bootable if it is an extended partition
1210
1211 // now we're reasonably sure the association is correct...
1212 Volume->IsMbrPartition = TRUE;
1213 Volume->MbrPartitionIndex = PartitionIndex;
1214 if (Volume->VolName == NULL) {
1215 Volume->VolName = AllocateZeroPool(sizeof(CHAR16) * 256);
1216 SPrint(Volume->VolName, 255, L"Partition %d", PartitionIndex + 1);
1217 }
1218 break;
1219 }
1220
1221 MyFreePool(SectorBuffer1);
1222 MyFreePool(SectorBuffer2);
1223 }
1224 } // for
1225 } /* VOID ScanVolumes() */
1226
1227 static VOID UninitVolumes(VOID)
1228 {
1229 REFIT_VOLUME *Volume;
1230 UINTN VolumeIndex;
1231
1232 for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
1233 Volume = Volumes[VolumeIndex];
1234
1235 if (Volume->RootDir != NULL) {
1236 refit_call1_wrapper(Volume->RootDir->Close, Volume->RootDir);
1237 Volume->RootDir = NULL;
1238 }
1239
1240 Volume->DeviceHandle = NULL;
1241 Volume->BlockIO = NULL;
1242 Volume->WholeDiskBlockIO = NULL;
1243 }
1244 }
1245
1246 VOID ReinitVolumes(VOID)
1247 {
1248 EFI_STATUS Status;
1249 REFIT_VOLUME *Volume;
1250 UINTN VolumeIndex;
1251 EFI_DEVICE_PATH *RemainingDevicePath;
1252 EFI_HANDLE DeviceHandle, WholeDiskHandle;
1253
1254 for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
1255 Volume = Volumes[VolumeIndex];
1256
1257 if (Volume->DevicePath != NULL) {
1258 // get the handle for that path
1259 RemainingDevicePath = Volume->DevicePath;
1260 Status = refit_call3_wrapper(BS->LocateDevicePath, &BlockIoProtocol, &RemainingDevicePath, &DeviceHandle);
1261
1262 if (!EFI_ERROR(Status)) {
1263 Volume->DeviceHandle = DeviceHandle;
1264
1265 // get the root directory
1266 Volume->RootDir = LibOpenRoot(Volume->DeviceHandle);
1267
1268 } else
1269 CheckError(Status, L"from LocateDevicePath");
1270 }
1271
1272 if (Volume->WholeDiskDevicePath != NULL) {
1273 // get the handle for that path
1274 RemainingDevicePath = Volume->WholeDiskDevicePath;
1275 Status = refit_call3_wrapper(BS->LocateDevicePath, &BlockIoProtocol, &RemainingDevicePath, &WholeDiskHandle);
1276
1277 if (!EFI_ERROR(Status)) {
1278 // get the BlockIO protocol
1279 Status = refit_call3_wrapper(BS->HandleProtocol, WholeDiskHandle, &BlockIoProtocol,
1280 (VOID **) &Volume->WholeDiskBlockIO);
1281 if (EFI_ERROR(Status)) {
1282 Volume->WholeDiskBlockIO = NULL;
1283 CheckError(Status, L"from HandleProtocol");
1284 }
1285 } else
1286 CheckError(Status, L"from LocateDevicePath");
1287 }
1288 }
1289 }
1290
1291 //
1292 // file and dir functions
1293 //
1294
1295 BOOLEAN FileExists(IN EFI_FILE *BaseDir, IN CHAR16 *RelativePath)
1296 {
1297 EFI_STATUS Status;
1298 EFI_FILE_HANDLE TestFile;
1299
1300 if (BaseDir != NULL) {
1301 Status = refit_call5_wrapper(BaseDir->Open, BaseDir, &TestFile, RelativePath, EFI_FILE_MODE_READ, 0);
1302 if (Status == EFI_SUCCESS) {
1303 refit_call1_wrapper(TestFile->Close, TestFile);
1304 return TRUE;
1305 }
1306 }
1307 return FALSE;
1308 }
1309
1310 EFI_STATUS DirNextEntry(IN EFI_FILE *Directory, IN OUT EFI_FILE_INFO **DirEntry, IN UINTN FilterMode)
1311 {
1312 EFI_STATUS Status;
1313 VOID *Buffer;
1314 UINTN LastBufferSize, BufferSize;
1315 INTN IterCount;
1316
1317 for (;;) {
1318
1319 // free pointer from last call
1320 if (*DirEntry != NULL) {
1321 FreePool(*DirEntry);
1322 *DirEntry = NULL;
1323 }
1324
1325 // read next directory entry
1326 LastBufferSize = BufferSize = 256;
1327 Buffer = AllocatePool(BufferSize);
1328 for (IterCount = 0; ; IterCount++) {
1329 Status = refit_call3_wrapper(Directory->Read, Directory, &BufferSize, Buffer);
1330 if (Status != EFI_BUFFER_TOO_SMALL || IterCount >= 4)
1331 break;
1332 if (BufferSize <= LastBufferSize) {
1333 Print(L"FS Driver requests bad buffer size %d (was %d), using %d instead\n", BufferSize, LastBufferSize, LastBufferSize * 2);
1334 BufferSize = LastBufferSize * 2;
1335 #if REFIT_DEBUG > 0
1336 } else {
1337 Print(L"Reallocating buffer from %d to %d\n", LastBufferSize, BufferSize);
1338 #endif
1339 }
1340 Buffer = EfiReallocatePool(Buffer, LastBufferSize, BufferSize);
1341 LastBufferSize = BufferSize;
1342 }
1343 if (EFI_ERROR(Status)) {
1344 MyFreePool(Buffer);
1345 Buffer = NULL;
1346 break;
1347 }
1348
1349 // check for end of listing
1350 if (BufferSize == 0) { // end of directory listing
1351 MyFreePool(Buffer);
1352 Buffer = NULL;
1353 break;
1354 }
1355
1356 // entry is ready to be returned
1357 *DirEntry = (EFI_FILE_INFO *)Buffer;
1358
1359 // filter results
1360 if (FilterMode == 1) { // only return directories
1361 if (((*DirEntry)->Attribute & EFI_FILE_DIRECTORY))
1362 break;
1363 } else if (FilterMode == 2) { // only return files
1364 if (((*DirEntry)->Attribute & EFI_FILE_DIRECTORY) == 0)
1365 break;
1366 } else // no filter or unknown filter -> return everything
1367 break;
1368
1369 }
1370 return Status;
1371 }
1372
1373 VOID DirIterOpen(IN EFI_FILE *BaseDir, IN CHAR16 *RelativePath OPTIONAL, OUT REFIT_DIR_ITER *DirIter)
1374 {
1375 if (RelativePath == NULL) {
1376 DirIter->LastStatus = EFI_SUCCESS;
1377 DirIter->DirHandle = BaseDir;
1378 DirIter->CloseDirHandle = FALSE;
1379 } else {
1380 DirIter->LastStatus = refit_call5_wrapper(BaseDir->Open, BaseDir, &(DirIter->DirHandle), RelativePath, EFI_FILE_MODE_READ, 0);
1381 DirIter->CloseDirHandle = EFI_ERROR(DirIter->LastStatus) ? FALSE : TRUE;
1382 }
1383 DirIter->LastFileInfo = NULL;
1384 }
1385
1386 #ifndef __MAKEWITH_GNUEFI
1387 EFI_UNICODE_COLLATION_PROTOCOL *mUnicodeCollation = NULL;
1388
1389 static EFI_STATUS
1390 InitializeUnicodeCollationProtocol (VOID)
1391 {
1392 EFI_STATUS Status;
1393
1394 if (mUnicodeCollation != NULL) {
1395 return EFI_SUCCESS;
1396 }
1397
1398 //
1399 // BUGBUG: Proper impelmentation is to locate all Unicode Collation Protocol
1400 // instances first and then select one which support English language.
1401 // Current implementation just pick the first instance.
1402 //
1403 Status = gBS->LocateProtocol (
1404 &gEfiUnicodeCollation2ProtocolGuid,
1405 NULL,
1406 (VOID **) &mUnicodeCollation
1407 );
1408 if (EFI_ERROR(Status)) {
1409 Status = gBS->LocateProtocol (
1410 &gEfiUnicodeCollationProtocolGuid,
1411 NULL,
1412 (VOID **) &mUnicodeCollation
1413 );
1414
1415 }
1416 return Status;
1417 }
1418
1419 static BOOLEAN
1420 MetaiMatch (IN CHAR16 *String, IN CHAR16 *Pattern)
1421 {
1422 if (!mUnicodeCollation) {
1423 InitializeUnicodeCollationProtocol();
1424 }
1425 if (mUnicodeCollation)
1426 return mUnicodeCollation->MetaiMatch (mUnicodeCollation, String, Pattern);
1427 return FALSE; // Shouldn't happen
1428 }
1429
1430 static VOID StrLwr (IN OUT CHAR16 *Str) {
1431 if (!mUnicodeCollation) {
1432 InitializeUnicodeCollationProtocol();
1433 }
1434 if (mUnicodeCollation)
1435 mUnicodeCollation->StrLwr (mUnicodeCollation, Str);
1436 }
1437
1438 #endif
1439
1440 BOOLEAN DirIterNext(IN OUT REFIT_DIR_ITER *DirIter, IN UINTN FilterMode, IN CHAR16 *FilePattern OPTIONAL,
1441 OUT EFI_FILE_INFO **DirEntry)
1442 {
1443 BOOLEAN KeepGoing = TRUE;
1444 UINTN i;
1445 CHAR16 *OnePattern;
1446
1447 if (DirIter->LastFileInfo != NULL) {
1448 FreePool(DirIter->LastFileInfo);
1449 DirIter->LastFileInfo = NULL;
1450 }
1451
1452 if (EFI_ERROR(DirIter->LastStatus))
1453 return FALSE; // stop iteration
1454
1455 do {
1456 DirIter->LastStatus = DirNextEntry(DirIter->DirHandle, &(DirIter->LastFileInfo), FilterMode);
1457 if (EFI_ERROR(DirIter->LastStatus))
1458 return FALSE;
1459 if (DirIter->LastFileInfo == NULL) // end of listing
1460 return FALSE;
1461 if (FilePattern != NULL) {
1462 if ((DirIter->LastFileInfo->Attribute & EFI_FILE_DIRECTORY))
1463 KeepGoing = FALSE;
1464 i = 0;
1465 while (KeepGoing && (OnePattern = FindCommaDelimited(FilePattern, i++)) != NULL) {
1466 if (MetaiMatch(DirIter->LastFileInfo->FileName, OnePattern))
1467 KeepGoing = FALSE;
1468 } // while
1469 // else continue loop
1470 } else
1471 break;
1472 } while (KeepGoing && FilePattern);
1473
1474 *DirEntry = DirIter->LastFileInfo;
1475 return TRUE;
1476 }
1477
1478 EFI_STATUS DirIterClose(IN OUT REFIT_DIR_ITER *DirIter)
1479 {
1480 if (DirIter->LastFileInfo != NULL) {
1481 FreePool(DirIter->LastFileInfo);
1482 DirIter->LastFileInfo = NULL;
1483 }
1484 if (DirIter->CloseDirHandle)
1485 refit_call1_wrapper(DirIter->DirHandle->Close, DirIter->DirHandle);
1486 return DirIter->LastStatus;
1487 }
1488
1489 //
1490 // file name manipulation
1491 //
1492
1493 // Returns the filename portion (minus path name) of the
1494 // specified file
1495 CHAR16 * Basename(IN CHAR16 *Path)
1496 {
1497 CHAR16 *FileName;
1498 UINTN i;
1499
1500 FileName = Path;
1501
1502 if (Path != NULL) {
1503 for (i = StrLen(Path); i > 0; i--) {
1504 if (Path[i-1] == '\\' || Path[i-1] == '/') {
1505 FileName = Path + i;
1506 break;
1507 }
1508 }
1509 }
1510
1511 return FileName;
1512 }
1513
1514 // Remove the .efi extension from FileName -- for instance, if FileName is
1515 // "fred.efi", returns "fred". If the filename contains no .efi extension,
1516 // returns a copy of the original input.
1517 CHAR16 * StripEfiExtension(CHAR16 *FileName) {
1518 UINTN Length;
1519 CHAR16 *Copy = NULL;
1520
1521 if ((FileName != NULL) && ((Copy = StrDuplicate(FileName)) != NULL)) {
1522 Length = StrLen(Copy);
1523 // Note: Do StriCmp() twice to work around Gigabyte Hybrid EFI case-sensitivity bug....
1524 if ((Length >= 4) && ((StriCmp(&Copy[Length - 4], L".efi") == 0) || (StriCmp(&Copy[Length - 4], L".EFI") == 0))) {
1525 Copy[Length - 4] = 0;
1526 } // if
1527 } // if
1528 return Copy;
1529 } // CHAR16 * StripExtension()
1530
1531 //
1532 // memory string search
1533 //
1534
1535 INTN FindMem(IN VOID *Buffer, IN UINTN BufferLength, IN VOID *SearchString, IN UINTN SearchStringLength)
1536 {
1537 UINT8 *BufferPtr;
1538 UINTN Offset;
1539
1540 BufferPtr = Buffer;
1541 BufferLength -= SearchStringLength;
1542 for (Offset = 0; Offset < BufferLength; Offset++, BufferPtr++) {
1543 if (CompareMem(BufferPtr, SearchString, SearchStringLength) == 0)
1544 return (INTN)Offset;
1545 }
1546
1547 return -1;
1548 }
1549
1550 // Performs a case-insensitive search of BigStr for SmallStr.
1551 // Returns TRUE if found, FALSE if not.
1552 BOOLEAN StriSubCmp(IN CHAR16 *SmallStr, IN CHAR16 *BigStr) {
1553 CHAR16 *SmallCopy, *BigCopy;
1554 BOOLEAN Found = FALSE;
1555 UINTN StartPoint = 0, NumCompares = 0, SmallLen = 0;
1556
1557 if ((SmallStr != NULL) && (BigStr != NULL) && (StrLen(BigStr) >= StrLen(SmallStr))) {
1558 SmallCopy = StrDuplicate(SmallStr);
1559 BigCopy = StrDuplicate(BigStr);
1560 StrLwr(SmallCopy);
1561 StrLwr(BigCopy);
1562 SmallLen = StrLen(SmallCopy);
1563 NumCompares = StrLen(BigCopy) - SmallLen + 1;
1564 while ((!Found) && (StartPoint < NumCompares)) {
1565 Found = (StrnCmp(SmallCopy, &BigCopy[StartPoint++], SmallLen) == 0);
1566 } // while
1567 MyFreePool(SmallCopy);
1568 MyFreePool(BigCopy);
1569 } // if
1570
1571 return (Found);
1572 } // BOOLEAN StriSubCmp()
1573
1574 // Merges two strings, creating a new one and returning a pointer to it.
1575 // If AddChar != 0, the specified character is placed between the two original
1576 // strings (unless the first string is NULL or empty). The original input
1577 // string *First is de-allocated and replaced by the new merged string.
1578 // This is similar to StrCat, but safer and more flexible because
1579 // MergeStrings allocates memory that's the correct size for the
1580 // new merged string, so it can take a NULL *First and it cleans
1581 // up the old memory. It should *NOT* be used with a constant
1582 // *First, though....
1583 VOID MergeStrings(IN OUT CHAR16 **First, IN CHAR16 *Second, CHAR16 AddChar) {
1584 UINTN Length1 = 0, Length2 = 0;
1585 CHAR16* NewString;
1586
1587 if (*First != NULL)
1588 Length1 = StrLen(*First);
1589 if (Second != NULL)
1590 Length2 = StrLen(Second);
1591 NewString = AllocatePool(sizeof(CHAR16) * (Length1 + Length2 + 2));
1592 if (NewString != NULL) {
1593 if ((*First != NULL) && (StrLen(*First) == 0)) {
1594 MyFreePool(*First);
1595 *First = NULL;
1596 }
1597 NewString[0] = L'\0';
1598 if (*First != NULL) {
1599 StrCat(NewString, *First);
1600 if (AddChar) {
1601 NewString[Length1] = AddChar;
1602 NewString[Length1 + 1] = '\0';
1603 } // if (AddChar)
1604 } // if (*First != NULL)
1605 if (Second != NULL)
1606 StrCat(NewString, Second);
1607 MyFreePool(*First);
1608 *First = NewString;
1609 } else {
1610 Print(L"Error! Unable to allocate memory in MergeStrings()!\n");
1611 } // if/else
1612 } // static CHAR16* MergeStrings()
1613
1614 // Takes an input pathname (*Path) and returns the part of the filename from
1615 // the final dot onwards, converted to lowercase. If the filename includes
1616 // no dots, or if the input is NULL, returns an empty (but allocated) string.
1617 // The calling function is responsible for freeing the memory associated with
1618 // the return value.
1619 CHAR16 *FindExtension(IN CHAR16 *Path) {
1620 CHAR16 *Extension;
1621 BOOLEAN Found = FALSE, FoundSlash = FALSE;
1622 INTN i;
1623
1624 Extension = AllocateZeroPool(sizeof(CHAR16));
1625 if (Path) {
1626 i = StrLen(Path);
1627 while ((!Found) && (!FoundSlash) && (i >= 0)) {
1628 if (Path[i] == L'.')
1629 Found = TRUE;
1630 else if ((Path[i] == L'/') || (Path[i] == L'\\'))
1631 FoundSlash = TRUE;
1632 if (!Found)
1633 i--;
1634 } // while
1635 if (Found) {
1636 MergeStrings(&Extension, &Path[i], 0);
1637 StrLwr(Extension);
1638 } // if (Found)
1639 } // if
1640 return (Extension);
1641 } // CHAR16 *FindExtension
1642
1643 // Takes an input pathname (*Path) and locates the final directory component
1644 // of that name. For instance, if the input path is 'EFI\foo\bar.efi', this
1645 // function returns the string 'foo'.
1646 // Assumes the pathname is separated with backslashes.
1647 CHAR16 *FindLastDirName(IN CHAR16 *Path) {
1648 UINTN i, StartOfElement = 0, EndOfElement = 0, PathLength, CopyLength;
1649 CHAR16 *Found = NULL;
1650
1651 if (Path == NULL)
1652 return NULL;
1653
1654 PathLength = StrLen(Path);
1655 // Find start & end of target element
1656 for (i = 0; i < PathLength; i++) {
1657 if (Path[i] == '\\') {
1658 StartOfElement = EndOfElement;
1659 EndOfElement = i;
1660 } // if
1661 } // for
1662 // Extract the target element
1663 if (EndOfElement > 0) {
1664 while ((StartOfElement < PathLength) && (Path[StartOfElement] == '\\')) {
1665 StartOfElement++;
1666 } // while
1667 EndOfElement--;
1668 if (EndOfElement >= StartOfElement) {
1669 CopyLength = EndOfElement - StartOfElement + 1;
1670 Found = StrDuplicate(&Path[StartOfElement]);
1671 if (Found != NULL)
1672 Found[CopyLength] = 0;
1673 } // if (EndOfElement >= StartOfElement)
1674 } // if (EndOfElement > 0)
1675 return (Found);
1676 } // CHAR16 *FindLastDirName
1677
1678 // Returns the directory portion of a pathname. For instance,
1679 // if FullPath is 'EFI\foo\bar.efi', this function returns the
1680 // string 'EFI\foo'. The calling function is responsible for
1681 // freeing the returned string's memory.
1682 CHAR16 *FindPath(IN CHAR16* FullPath) {
1683 UINTN i, LastBackslash = 0;
1684 CHAR16 *PathOnly = NULL;
1685
1686 if (FullPath != NULL) {
1687 for (i = 0; i < StrLen(FullPath); i++) {
1688 if (FullPath[i] == '\\')
1689 LastBackslash = i;
1690 } // for
1691 PathOnly = StrDuplicate(FullPath);
1692 if (PathOnly != NULL)
1693 PathOnly[LastBackslash] = 0;
1694 } // if
1695 return (PathOnly);
1696 }
1697
1698 /*++
1699 *
1700 * Routine Description:
1701 *
1702 * Find a substring.
1703 *
1704 * Arguments:
1705 *
1706 * String - Null-terminated string to search.
1707 * StrCharSet - Null-terminated string to search for.
1708 *
1709 * Returns:
1710 * The address of the first occurrence of the matching substring if successful, or NULL otherwise.
1711 * --*/
1712 CHAR16* MyStrStr (CHAR16 *String, CHAR16 *StrCharSet)
1713 {
1714 CHAR16 *Src;
1715 CHAR16 *Sub;
1716
1717 if ((String == NULL) || (StrCharSet == NULL))
1718 return NULL;
1719
1720 Src = String;
1721 Sub = StrCharSet;
1722
1723 while ((*String != L'\0') && (*StrCharSet != L'\0')) {
1724 if (*String++ != *StrCharSet) {
1725 String = ++Src;
1726 StrCharSet = Sub;
1727 } else {
1728 StrCharSet++;
1729 }
1730 }
1731 if (*StrCharSet == L'\0') {
1732 return Src;
1733 } else {
1734 return NULL;
1735 }
1736 } // CHAR16 *MyStrStr()
1737
1738 // Restrict TheString to at most Limit characters.
1739 // Does this in two ways:
1740 // - Locates stretches of two or more spaces and compresses
1741 // them down to one space.
1742 // - Truncates TheString
1743 // Returns TRUE if changes were made, FALSE otherwise
1744 BOOLEAN LimitStringLength(CHAR16 *TheString, UINTN Limit) {
1745 CHAR16 *SubString, *TempString;
1746 UINTN i;
1747 BOOLEAN HasChanged = FALSE;
1748
1749 // SubString will be NULL or point WITHIN TheString
1750 SubString = MyStrStr(TheString, L" ");
1751 while (SubString != NULL) {
1752 i = 0;
1753 while (SubString[i] == L' ')
1754 i++;
1755 if (i >= StrLen(SubString)) {
1756 SubString[0] = '\0';
1757 HasChanged = TRUE;
1758 } else {
1759 TempString = StrDuplicate(&SubString[i]);
1760 if (TempString != NULL) {
1761 StrCpy(&SubString[1], TempString);
1762 MyFreePool(TempString);
1763 HasChanged = TRUE;
1764 } else {
1765 // memory allocation problem; abort to avoid potentially infinite loop!
1766 break;
1767 } // if/else
1768 } // if/else
1769 SubString = MyStrStr(TheString, L" ");
1770 } // while
1771
1772 // If the string is still too long, truncate it....
1773 if (StrLen(TheString) > Limit) {
1774 TheString[Limit] = '\0';
1775 HasChanged = TRUE;
1776 } // if
1777
1778 return HasChanged;
1779 } // BOOLEAN LimitStringLength()
1780
1781 // Takes an input loadpath, splits it into disk and filename components, finds a matching
1782 // DeviceVolume, and returns that and the filename (*loader).
1783 VOID FindVolumeAndFilename(IN EFI_DEVICE_PATH *loadpath, OUT REFIT_VOLUME **DeviceVolume, OUT CHAR16 **loader) {
1784 CHAR16 *DeviceString, *VolumeDeviceString, *Temp;
1785 UINTN i = 0;
1786 BOOLEAN Found = FALSE;
1787
1788 MyFreePool(*loader);
1789 MyFreePool(*DeviceVolume);
1790 *DeviceVolume = NULL;
1791 DeviceString = DevicePathToStr(loadpath);
1792 *loader = SplitDeviceString(DeviceString);
1793
1794 while ((i < VolumesCount) && (!Found)) {
1795 VolumeDeviceString = DevicePathToStr(Volumes[i]->DevicePath);
1796 Temp = SplitDeviceString(VolumeDeviceString);
1797 if (StriCmp(DeviceString, VolumeDeviceString) == 0) {
1798 Found = TRUE;
1799 *DeviceVolume = Volumes[i];
1800 }
1801 MyFreePool(Temp);
1802 MyFreePool(VolumeDeviceString);
1803 i++;
1804 } // while
1805
1806 MyFreePool(DeviceString);
1807 } // VOID FindVolumeAndFilename()
1808
1809 // Splits a volume/filename string (e.g., "fs0:\EFI\BOOT") into separate
1810 // volume and filename components (e.g., "fs0" and "\EFI\BOOT"), returning
1811 // the filename component in the original *Path variable and the split-off
1812 // volume component in the *VolName variable.
1813 // Returns TRUE if both components are found, FALSE otherwise.
1814 BOOLEAN SplitVolumeAndFilename(IN OUT CHAR16 **Path, OUT CHAR16 **VolName) {
1815 UINTN i = 0, Length;
1816 CHAR16 *Filename;
1817
1818 if (*Path == NULL)
1819 return FALSE;
1820
1821 if (*VolName != NULL) {
1822 MyFreePool(*VolName);
1823 *VolName = NULL;
1824 }
1825
1826 Length = StrLen(*Path);
1827 while ((i < Length) && ((*Path)[i] != L':')) {
1828 i++;
1829 } // while
1830
1831 if (i < Length) {
1832 Filename = StrDuplicate((*Path) + i + 1);
1833 (*Path)[i] = 0;
1834 *VolName = *Path;
1835 *Path = Filename;
1836 return TRUE;
1837 } else {
1838 return FALSE;
1839 }
1840 } // BOOLEAN SplitVolumeAndFilename()
1841
1842 // Returns all the digits in the input string, including intervening
1843 // non-digit characters. For instance, if InString is "foo-3.3.4-7.img",
1844 // this function returns "3.3.4-7". If InString contains no digits,
1845 // the return value is NULL.
1846 CHAR16 *FindNumbers(IN CHAR16 *InString) {
1847 UINTN i, StartOfElement, EndOfElement = 0, InLength, CopyLength;
1848 CHAR16 *Found = NULL;
1849
1850 if (InString == NULL)
1851 return NULL;
1852
1853 InLength = StartOfElement = StrLen(InString);
1854 // Find start & end of target element
1855 for (i = 0; i < InLength; i++) {
1856 if ((InString[i] >= '0') && (InString[i] <= '9')) {
1857 if (StartOfElement > i)
1858 StartOfElement = i;
1859 if (EndOfElement < i)
1860 EndOfElement = i;
1861 } // if
1862 } // for
1863 // Extract the target element
1864 if (EndOfElement > 0) {
1865 if (EndOfElement >= StartOfElement) {
1866 CopyLength = EndOfElement - StartOfElement + 1;
1867 Found = StrDuplicate(&InString[StartOfElement]);
1868 if (Found != NULL)
1869 Found[CopyLength] = 0;
1870 } // if (EndOfElement >= StartOfElement)
1871 } // if (EndOfElement > 0)
1872 return (Found);
1873 } // CHAR16 *FindNumbers()
1874
1875 // Find the #Index element (numbered from 0) in a comma-delimited string
1876 // of elements.
1877 // Returns the found element, or NULL if Index is out of range or InString
1878 // is NULL. Note that the calling function is responsible for freeing the
1879 // memory associated with the returned string pointer.
1880 CHAR16 *FindCommaDelimited(IN CHAR16 *InString, IN UINTN Index) {
1881 UINTN StartPos = 0, CurPos = 0;
1882 BOOLEAN Found = FALSE;
1883 CHAR16 *FoundString = NULL;
1884
1885 if (InString != NULL) {
1886 // After while() loop, StartPos marks start of item #Index
1887 while ((Index > 0) && (CurPos < StrLen(InString))) {
1888 if (InString[CurPos] == L',') {
1889 Index--;
1890 StartPos = CurPos + 1;
1891 } // if
1892 CurPos++;
1893 } // while
1894 // After while() loop, CurPos is one past the end of the element
1895 while ((CurPos < StrLen(InString)) && (!Found)) {
1896 if (InString[CurPos] == L',')
1897 Found = TRUE;
1898 else
1899 CurPos++;
1900 } // while
1901 if (Index == 0)
1902 FoundString = StrDuplicate(&InString[StartPos]);
1903 if (FoundString != NULL)
1904 FoundString[CurPos - StartPos] = 0;
1905 } // if
1906 return (FoundString);
1907 } // CHAR16 *FindCommaDelimited()
1908
1909 // Return the position of SmallString within BigString, or -1 if
1910 // not found.
1911 INTN FindSubString(IN CHAR16 *SmallString, IN CHAR16 *BigString) {
1912 INTN Position = -1;
1913 UINTN i = 0, SmallSize, BigSize;
1914 BOOLEAN Found = FALSE;
1915
1916 if ((SmallString == NULL) || (BigString == NULL))
1917 return -1;
1918
1919 SmallSize = StrLen(SmallString);
1920 BigSize = StrLen(BigString);
1921 if ((SmallSize > BigSize) || (SmallSize == 0) || (BigSize == 0))
1922 return -1;
1923
1924 while ((i <= (BigSize - SmallSize) && !Found)) {
1925 if (CompareMem(BigString + i, SmallString, SmallSize) == 0) {
1926 Found = TRUE;
1927 Position = i;
1928 } // if
1929 i++;
1930 } // while()
1931 return Position;
1932 } // INTN FindSubString()
1933
1934 // Take an input path name, which may include a volume specification and/or
1935 // a path, and return separate volume, path, and file names. For instance,
1936 // "BIGVOL:\EFI\ubuntu\grubx64.efi" will return a VolName of "BIGVOL", a Path
1937 // of "EFI\ubuntu", and a Filename of "grubx64.efi". If an element is missing,
1938 // the returned pointer is NULL. The calling function is responsible for
1939 // freeing the allocated memory.
1940 VOID SplitPathName(CHAR16 *InPath, CHAR16 **VolName, CHAR16 **Path, CHAR16 **Filename) {
1941 CHAR16 *Temp = NULL;
1942
1943 MyFreePool(*VolName);
1944 MyFreePool(*Path);
1945 MyFreePool(*Filename);
1946 *VolName = *Path = *Filename = NULL;
1947 Temp = StrDuplicate(InPath);
1948 SplitVolumeAndFilename(&Temp, VolName); // VolName is NULL or has volume; Temp has rest of path
1949 CleanUpPathNameSlashes(Temp);
1950 *Path = FindPath(Temp); // *Path has path (may be 0-length); Temp unchanged.
1951 *Filename = StrDuplicate(Temp + StrLen(*Path));
1952 CleanUpPathNameSlashes(*Filename);
1953 if (StrLen(*Path) == 0) {
1954 MyFreePool(*Path);
1955 *Path = NULL;
1956 }
1957 if (StrLen(*Filename) == 0) {
1958 MyFreePool(*Filename);
1959 *Filename = NULL;
1960 }
1961 MyFreePool(Temp);
1962 } // VOID SplitPathName
1963
1964 // Returns TRUE if SmallString is an element in the comma-delimited List,
1965 // FALSE otherwise. Performs comparison case-insensitively (except on
1966 // buggy EFIs with case-sensitive StriCmp() functions).
1967 BOOLEAN IsIn(IN CHAR16 *SmallString, IN CHAR16 *List) {
1968 UINTN i = 0;
1969 BOOLEAN Found = FALSE;
1970 CHAR16 *OneElement;
1971
1972 if (SmallString && List) {
1973 while (!Found && (OneElement = FindCommaDelimited(List, i++))) {
1974 if (StriCmp(OneElement, SmallString) == 0)
1975 Found = TRUE;
1976 } // while
1977 } // if
1978 return Found;
1979 } // BOOLEAN IsIn()
1980
1981 // Returns TRUE if any element of List can be found as a substring of
1982 // BigString, FALSE otherwise. Performs comparisons case-insensitively.
1983 BOOLEAN IsInSubstring(IN CHAR16 *BigString, IN CHAR16 *List) {
1984 UINTN i = 0, ElementLength;
1985 BOOLEAN Found = FALSE;
1986 CHAR16 *OneElement;
1987
1988 if (BigString && List) {
1989 while (!Found && (OneElement = FindCommaDelimited(List, i++))) {
1990 ElementLength = StrLen(OneElement);
1991 if ((ElementLength <= StrLen(BigString)) && (StriSubCmp(OneElement, BigString)))
1992 Found = TRUE;
1993 } // while
1994 } // if
1995 return Found;
1996 } // BOOLEAN IsSubstringIn()
1997
1998 // Returns TRUE if specified Volume, Directory, and Filename correspond to an
1999 // element in the comma-delimited List, FALSE otherwise. Note that Directory and
2000 // Filename must *NOT* include a volume or path specification (that's part of
2001 // the Volume variable), but the List elements may. Performs comparison
2002 // case-insensitively (except on buggy EFIs with case-sensitive StriCmp()
2003 // functions).
2004 BOOLEAN FilenameIn(REFIT_VOLUME *Volume, CHAR16 *Directory, CHAR16 *Filename, CHAR16 *List) {
2005 UINTN i = 0;
2006 BOOLEAN Found = FALSE;
2007 CHAR16 *OneElement;
2008 CHAR16 *TargetVolName = NULL, *TargetPath = NULL, *TargetFilename = NULL;
2009
2010 if (Filename && List) {
2011 while (!Found && (OneElement = FindCommaDelimited(List, i++))) {
2012 Found = TRUE;
2013 SplitPathName(OneElement, &TargetVolName, &TargetPath, &TargetFilename);
2014 VolumeNumberToName(Volume, &TargetVolName);
2015 if (((TargetVolName != NULL) && ((Volume == NULL) || (StriCmp(TargetVolName, Volume->VolName) != 0))) ||
2016 ((TargetPath != NULL) && (StriCmp(TargetPath, Directory) != 0)) ||
2017 ((TargetFilename != NULL) && (StriCmp(TargetFilename, Filename) != 0))) {
2018 Found = FALSE;
2019 } // if
2020 MyFreePool(OneElement);
2021 } // while
2022 } // if
2023
2024 MyFreePool(TargetVolName);
2025 MyFreePool(TargetPath);
2026 MyFreePool(TargetFilename);
2027 return Found;
2028 } // BOOLEAN FilenameIn()
2029
2030 // If *VolName is of the form "fs#", where "#" is a number, and if Volume points
2031 // to this volume number, returns with *VolName changed to the volume name, as
2032 // stored in the Volume data structure.
2033 // Returns TRUE if this substitution was made, FALSE otherwise.
2034 BOOLEAN VolumeNumberToName(REFIT_VOLUME *Volume, CHAR16 **VolName) {
2035 BOOLEAN MadeSubstitution = FALSE;
2036 UINTN VolNum;
2037
2038 if ((VolName == NULL) || (*VolName == NULL))
2039 return FALSE;
2040
2041 if ((StrLen(*VolName) > 2) && (*VolName[0] == L'f') && (*VolName[1] == L's') && (*VolName[2] >= L'0') && (*VolName[2] <= L'9')) {
2042 VolNum = Atoi(*VolName + 2);
2043 if (VolNum == Volume->VolNumber) {
2044 MyFreePool(*VolName);
2045 *VolName = StrDuplicate(Volume->VolName);
2046 MadeSubstitution = TRUE;
2047 } // if
2048 } // if
2049 return MadeSubstitution;
2050 } // BOOLEAN VolumeMatchesNumber()
2051
2052 // Implement FreePool the way it should have been done to begin with, so that
2053 // it doesn't throw an ASSERT message if fed a NULL pointer....
2054 VOID MyFreePool(IN VOID *Pointer) {
2055 if (Pointer != NULL)
2056 FreePool(Pointer);
2057 }
2058
2059 static EFI_GUID AppleRemovableMediaGuid = APPLE_REMOVABLE_MEDIA_PROTOCOL_GUID;
2060
2061 // Eject all removable media.
2062 // Returns TRUE if any media were ejected, FALSE otherwise.
2063 BOOLEAN EjectMedia(VOID) {
2064 EFI_STATUS Status;
2065 UINTN HandleIndex, HandleCount = 0, Ejected = 0;
2066 EFI_HANDLE *Handles, Handle;
2067 APPLE_REMOVABLE_MEDIA_PROTOCOL *Ejectable;
2068
2069 Status = LibLocateHandle(ByProtocol, &AppleRemovableMediaGuid, NULL, &HandleCount, &Handles);
2070 if (EFI_ERROR(Status) || HandleCount == 0)
2071 return (FALSE); // probably not an Apple system
2072
2073 for (HandleIndex = 0; HandleIndex < HandleCount; HandleIndex++) {
2074 Handle = Handles[HandleIndex];
2075 Status = refit_call3_wrapper(BS->HandleProtocol, Handle, &AppleRemovableMediaGuid, (VOID **) &Ejectable);
2076 if (EFI_ERROR(Status))
2077 continue;
2078 Status = refit_call1_wrapper(Ejectable->Eject, Ejectable);
2079 if (!EFI_ERROR(Status))
2080 Ejected++;
2081 }
2082 MyFreePool(Handles);
2083 return (Ejected > 0);
2084 } // VOID EjectMedia()
2085
2086 // Converts consecutive characters in the input string into a
2087 // number, interpreting the string as a hexadecimal number, starting
2088 // at the specified position and continuing for the specified number
2089 // of characters or until the end of the string, whichever is first.
2090 // NumChars must be between 1 and 16. Ignores invalid characters.
2091 UINT64 StrToHex(CHAR16 *Input, UINTN Pos, UINTN NumChars) {
2092 UINT64 retval = 0x00;
2093 UINTN NumDone = 0;
2094 CHAR16 a;
2095
2096 if ((Input == NULL) || (StrLen(Input) < Pos) || (NumChars == 0) || (NumChars > 16)) {
2097 return 0;
2098 }
2099
2100 while ((StrLen(Input) >= Pos) && (NumDone < NumChars)) {
2101 a = Input[Pos];
2102 if ((a >= '0') && (a <= '9')) {
2103 retval *= 0x10;
2104 retval += (a - '0');
2105 NumDone++;
2106 }
2107 if ((a >= 'a') && (a <= 'f')) {
2108 retval *= 0x10;
2109 retval += (a - 'a' + 0x0a);
2110 NumDone++;
2111 }
2112 if ((a >= 'A') && (a <= 'F')) {
2113 retval *= 0x10;
2114 retval += (a - 'A' + 0x0a);
2115 NumDone++;
2116 }
2117 Pos++;
2118 } // while()
2119 return retval;
2120 } // StrToHex()
2121
2122 // Returns TRUE if UnknownString can be interpreted as a GUID, FALSE otherwise.
2123 // Note that the input string must have no extraneous spaces and must be
2124 // conventionally formatted as a 36-character GUID, complete with dashes in
2125 // appropriate places.
2126 BOOLEAN IsGuid(CHAR16 *UnknownString) {
2127 UINTN Length, i;
2128 BOOLEAN retval = TRUE;
2129 CHAR16 a;
2130
2131 if (UnknownString == NULL)
2132 return FALSE;
2133
2134 Length = StrLen(UnknownString);
2135 if (Length != 36)
2136 return FALSE;
2137
2138 for (i = 0; i < Length; i++) {
2139 a = UnknownString[i];
2140 if ((i == 8) || (i == 13) || (i == 18) || (i == 23)) {
2141 if (a != '-')
2142 retval = FALSE;
2143 } else if (((a < 'a') || (a > 'f')) && ((a < 'A') || (a > 'F')) && ((a < '0') && (a > '9'))) {
2144 retval = FALSE;
2145 } // if/else if
2146 } // for
2147 return retval;
2148 } // BOOLEAN IsGuid()
2149
2150 // Return the GUID as a string, suitable for display to the user. Note that the calling
2151 // function is responsible for freeing the allocated memory.
2152 CHAR16 * GuidAsString(EFI_GUID *GuidData) {
2153 CHAR16 *TheString;
2154
2155 TheString = AllocateZeroPool(42 * sizeof(CHAR16));
2156 if (TheString != 0) {
2157 SPrint (TheString, 82, L"%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x",
2158 (UINTN)GuidData->Data1, (UINTN)GuidData->Data2, (UINTN)GuidData->Data3,
2159 (UINTN)GuidData->Data4[0], (UINTN)GuidData->Data4[1], (UINTN)GuidData->Data4[2],
2160 (UINTN)GuidData->Data4[3], (UINTN)GuidData->Data4[4], (UINTN)GuidData->Data4[5],
2161 (UINTN)GuidData->Data4[6], (UINTN)GuidData->Data4[7]);
2162 }
2163 return TheString;
2164 } // GuidAsString(EFI_GUID *GuidData)
2165
2166 EFI_GUID StringAsGuid(CHAR16 * InString) {
2167 EFI_GUID Guid = NULL_GUID_VALUE;
2168
2169 if (!IsGuid(InString)) {
2170 return Guid;
2171 }
2172
2173 Guid.Data1 = (UINT32) StrToHex(InString, 0, 8);
2174 Guid.Data2 = (UINT16) StrToHex(InString, 9, 4);
2175 Guid.Data3 = (UINT16) StrToHex(InString, 14, 4);
2176 Guid.Data4[0] = (UINT8) StrToHex(InString, 19, 2);
2177 Guid.Data4[1] = (UINT8) StrToHex(InString, 21, 2);
2178 Guid.Data4[2] = (UINT8) StrToHex(InString, 23, 2);
2179 Guid.Data4[3] = (UINT8) StrToHex(InString, 26, 2);
2180 Guid.Data4[4] = (UINT8) StrToHex(InString, 28, 2);
2181 Guid.Data4[5] = (UINT8) StrToHex(InString, 30, 2);
2182 Guid.Data4[6] = (UINT8) StrToHex(InString, 32, 2);
2183 Guid.Data4[7] = (UINT8) StrToHex(InString, 34, 2);
2184
2185 return Guid;
2186 } // EFI_GUID StringAsGuid()
2187
2188 // Returns TRUE if the two GUIDs are equal, FALSE otherwise
2189 BOOLEAN GuidsAreEqual(EFI_GUID *Guid1, EFI_GUID *Guid2) {
2190 return (CompareMem(Guid1, Guid2, 16) == 0);
2191 } // BOOLEAN CompareGuids()
2192