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