]> code.delx.au - refind/blob - refind/lib.c
Added feature to detect the root (/) Linux filesystem based on
[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, type code 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 GPT_ENTRY *PartInfo;
868
869 if ((Volume == NULL) || (DevicePath == NULL))
870 return;
871
872 if ((DevicePath->Type == MEDIA_DEVICE_PATH) && (DevicePath->SubType == MEDIA_HARDDRIVE_DP)) {
873 HdDevicePath = (HARDDRIVE_DEVICE_PATH*) DevicePath;
874 if (HdDevicePath->SignatureType == SIGNATURE_TYPE_GUID) {
875 Volume->PartGuid = *((EFI_GUID*) HdDevicePath->Signature);
876 PartInfo = FindPartWithGuid(&(Volume->PartGuid));
877 if (PartInfo) {
878 Volume->PartName = StrDuplicate(PartInfo->name);
879 CopyMem(&(Volume->PartTypeGuid), PartInfo->type_guid, sizeof(EFI_GUID));
880 if (GuidsAreEqual (&(Volume->PartTypeGuid), &gFreedesktopRootGuid)) {
881 GlobalConfig.DiscoveredRoot = Volume;
882 Print(L"Found match!\n");
883 PauseForKey();
884 } // if (GUIDs match)
885 } // if (PartInfo exists)
886 } // if (GPT disk)
887 } // if (disk device)
888 } // VOID SetPartGuid()
889
890 // Return TRUE if NTFS boot files are found or if Volume is unreadable,
891 // FALSE otherwise. The idea is to weed out non-boot NTFS volumes from
892 // BIOS/legacy boot list on Macs. We can't assume NTFS will be readable,
893 // so return TRUE if it's unreadable; but if it IS readable, return
894 // TRUE only if Windows boot files are found.
895 static BOOLEAN HasWindowsBiosBootFiles(REFIT_VOLUME *Volume) {
896 BOOLEAN FilesFound = TRUE;
897
898 if (Volume->RootDir != NULL) {
899 FilesFound = FileExists(Volume->RootDir, L"NTLDR") || // Windows NT/200x/XP boot file
900 FileExists(Volume->RootDir, L"bootmgr"); // Windows Vista/7/8 boot file
901 } // if
902 return FilesFound;
903 } // static VOID HasWindowsBiosBootFiles()
904
905 VOID ScanVolume(REFIT_VOLUME *Volume)
906 {
907 EFI_STATUS Status;
908 EFI_DEVICE_PATH *DevicePath, *NextDevicePath;
909 EFI_DEVICE_PATH *DiskDevicePath, *RemainingDevicePath;
910 EFI_HANDLE WholeDiskHandle;
911 UINTN PartialLength;
912 BOOLEAN Bootable;
913
914 // get device path
915 Volume->DevicePath = DuplicateDevicePath(DevicePathFromHandle(Volume->DeviceHandle));
916 #if REFIT_DEBUG > 0
917 if (Volume->DevicePath != NULL) {
918 Print(L"* %s\n", DevicePathToStr(Volume->DevicePath));
919 #if REFIT_DEBUG >= 2
920 DumpHex(1, 0, DevicePathSize(Volume->DevicePath), Volume->DevicePath);
921 #endif
922 }
923 #endif
924
925 Volume->DiskKind = DISK_KIND_INTERNAL; // default
926
927 // get block i/o
928 Status = refit_call3_wrapper(BS->HandleProtocol, Volume->DeviceHandle, &BlockIoProtocol, (VOID **) &(Volume->BlockIO));
929 if (EFI_ERROR(Status)) {
930 Volume->BlockIO = NULL;
931 Print(L"Warning: Can't get BlockIO protocol.\n");
932 } else {
933 if (Volume->BlockIO->Media->BlockSize == 2048)
934 Volume->DiskKind = DISK_KIND_OPTICAL;
935 }
936
937 // scan for bootcode and MBR table
938 Bootable = FALSE;
939 ScanVolumeBootcode(Volume, &Bootable);
940
941 // detect device type
942 DevicePath = Volume->DevicePath;
943 while (DevicePath != NULL && !IsDevicePathEndType(DevicePath)) {
944 NextDevicePath = NextDevicePathNode(DevicePath);
945
946 if (DevicePathType(DevicePath) == MEDIA_DEVICE_PATH) {
947 SetPartGuidAndName(Volume, DevicePath);
948 }
949 if (DevicePathType(DevicePath) == MESSAGING_DEVICE_PATH &&
950 (DevicePathSubType(DevicePath) == MSG_USB_DP ||
951 DevicePathSubType(DevicePath) == MSG_USB_CLASS_DP ||
952 DevicePathSubType(DevicePath) == MSG_1394_DP ||
953 DevicePathSubType(DevicePath) == MSG_FIBRECHANNEL_DP))
954 Volume->DiskKind = DISK_KIND_EXTERNAL; // USB/FireWire/FC device -> external
955 if (DevicePathType(DevicePath) == MEDIA_DEVICE_PATH &&
956 DevicePathSubType(DevicePath) == MEDIA_CDROM_DP) {
957 Volume->DiskKind = DISK_KIND_OPTICAL; // El Torito entry -> optical disk
958 Bootable = TRUE;
959 }
960
961 if (DevicePathType(DevicePath) == MEDIA_DEVICE_PATH && DevicePathSubType(DevicePath) == MEDIA_VENDOR_DP) {
962 Volume->IsAppleLegacy = TRUE; // legacy BIOS device entry
963 // TODO: also check for Boot Camp GUID
964 Bootable = FALSE; // this handle's BlockIO is just an alias for the whole device
965 }
966
967 if (DevicePathType(DevicePath) == MESSAGING_DEVICE_PATH) {
968 // make a device path for the whole device
969 PartialLength = (UINT8 *)NextDevicePath - (UINT8 *)(Volume->DevicePath);
970 DiskDevicePath = (EFI_DEVICE_PATH *)AllocatePool(PartialLength + sizeof(EFI_DEVICE_PATH));
971 CopyMem(DiskDevicePath, Volume->DevicePath, PartialLength);
972 CopyMem((UINT8 *)DiskDevicePath + PartialLength, EndDevicePath, sizeof(EFI_DEVICE_PATH));
973
974 // get the handle for that path
975 RemainingDevicePath = DiskDevicePath;
976 Status = refit_call3_wrapper(BS->LocateDevicePath, &BlockIoProtocol, &RemainingDevicePath, &WholeDiskHandle);
977 FreePool(DiskDevicePath);
978
979 if (!EFI_ERROR(Status)) {
980 //Print(L" - original handle: %08x - disk handle: %08x\n", (UINT32)DeviceHandle, (UINT32)WholeDiskHandle);
981
982 // get the device path for later
983 Status = refit_call3_wrapper(BS->HandleProtocol, WholeDiskHandle, &DevicePathProtocol, (VOID **) &DiskDevicePath);
984 if (!EFI_ERROR(Status)) {
985 Volume->WholeDiskDevicePath = DuplicateDevicePath(DiskDevicePath);
986 }
987
988 // look at the BlockIO protocol
989 Status = refit_call3_wrapper(BS->HandleProtocol, WholeDiskHandle, &BlockIoProtocol,
990 (VOID **) &Volume->WholeDiskBlockIO);
991 if (!EFI_ERROR(Status)) {
992
993 // check the media block size
994 if (Volume->WholeDiskBlockIO->Media->BlockSize == 2048)
995 Volume->DiskKind = DISK_KIND_OPTICAL;
996
997 } else {
998 Volume->WholeDiskBlockIO = NULL;
999 //CheckError(Status, L"from HandleProtocol");
1000 }
1001 } //else
1002 // CheckError(Status, L"from LocateDevicePath");
1003 }
1004
1005 DevicePath = NextDevicePath;
1006 } // while
1007
1008 if (!Bootable) {
1009 #if REFIT_DEBUG > 0
1010 if (Volume->HasBootCode)
1011 Print(L" Volume considered non-bootable, but boot code is present\n");
1012 #endif
1013 Volume->HasBootCode = FALSE;
1014 }
1015
1016 // open the root directory of the volume
1017 Volume->RootDir = LibOpenRoot(Volume->DeviceHandle);
1018
1019 // Set volume icon based on .VolumeBadge icon or disk kind
1020 SetVolumeBadgeIcon(Volume);
1021
1022 Volume->VolName = GetVolumeName(Volume);
1023
1024 if (Volume->RootDir == NULL) {
1025 Volume->IsReadable = FALSE;
1026 return;
1027 } else {
1028 Volume->IsReadable = TRUE;
1029 if ((GlobalConfig.LegacyType == LEGACY_TYPE_MAC) && (Volume->FSType == FS_TYPE_NTFS) && Volume->HasBootCode) {
1030 // VBR boot code found on NTFS, but volume is not actually bootable
1031 // unless there are actual boot file, so check for them....
1032 Volume->HasBootCode = HasWindowsBiosBootFiles(Volume);
1033 }
1034 } // if/else
1035
1036 // get custom volume icons if present
1037 if (!Volume->VolIconImage) {
1038 Volume->VolIconImage = egLoadIconAnyType(Volume->RootDir, L"", L".VolumeIcon", GlobalConfig.IconSizes[ICON_SIZE_BIG]);
1039 }
1040 } // ScanVolume()
1041
1042 static VOID ScanExtendedPartition(REFIT_VOLUME *WholeDiskVolume, MBR_PARTITION_INFO *MbrEntry)
1043 {
1044 EFI_STATUS Status;
1045 REFIT_VOLUME *Volume;
1046 UINT32 ExtBase, ExtCurrent, NextExtCurrent;
1047 UINTN i;
1048 UINTN LogicalPartitionIndex = 4;
1049 UINT8 SectorBuffer[512];
1050 BOOLEAN Bootable;
1051 MBR_PARTITION_INFO *EMbrTable;
1052
1053 ExtBase = MbrEntry->StartLBA;
1054
1055 for (ExtCurrent = ExtBase; ExtCurrent; ExtCurrent = NextExtCurrent) {
1056 // read current EMBR
1057 Status = refit_call5_wrapper(WholeDiskVolume->BlockIO->ReadBlocks,
1058 WholeDiskVolume->BlockIO,
1059 WholeDiskVolume->BlockIO->Media->MediaId,
1060 ExtCurrent, 512, SectorBuffer);
1061 if (EFI_ERROR(Status))
1062 break;
1063 if (*((UINT16 *)(SectorBuffer + 510)) != 0xaa55)
1064 break;
1065 EMbrTable = (MBR_PARTITION_INFO *)(SectorBuffer + 446);
1066
1067 // scan logical partitions in this EMBR
1068 NextExtCurrent = 0;
1069 for (i = 0; i < 4; i++) {
1070 if ((EMbrTable[i].Flags != 0x00 && EMbrTable[i].Flags != 0x80) ||
1071 EMbrTable[i].StartLBA == 0 || EMbrTable[i].Size == 0)
1072 break;
1073 if (IS_EXTENDED_PART_TYPE(EMbrTable[i].Type)) {
1074 // set next ExtCurrent
1075 NextExtCurrent = ExtBase + EMbrTable[i].StartLBA;
1076 break;
1077 } else {
1078
1079 // found a logical partition
1080 Volume = AllocateZeroPool(sizeof(REFIT_VOLUME));
1081 Volume->DiskKind = WholeDiskVolume->DiskKind;
1082 Volume->IsMbrPartition = TRUE;
1083 Volume->MbrPartitionIndex = LogicalPartitionIndex++;
1084 Volume->VolName = AllocateZeroPool(256 * sizeof(UINT16));
1085 SPrint(Volume->VolName, 255, L"Partition %d", Volume->MbrPartitionIndex + 1);
1086 Volume->BlockIO = WholeDiskVolume->BlockIO;
1087 Volume->BlockIOOffset = ExtCurrent + EMbrTable[i].StartLBA;
1088 Volume->WholeDiskBlockIO = WholeDiskVolume->BlockIO;
1089
1090 Bootable = FALSE;
1091 ScanVolumeBootcode(Volume, &Bootable);
1092 if (!Bootable)
1093 Volume->HasBootCode = FALSE;
1094
1095 SetVolumeBadgeIcon(Volume);
1096
1097 AddListElement((VOID ***) &Volumes, &VolumesCount, Volume);
1098
1099 }
1100 }
1101 }
1102 } /* VOID ScanExtendedPartition() */
1103
1104 VOID ScanVolumes(VOID)
1105 {
1106 EFI_STATUS Status;
1107 EFI_HANDLE *Handles;
1108 REFIT_VOLUME *Volume, *WholeDiskVolume;
1109 MBR_PARTITION_INFO *MbrTable;
1110 UINTN HandleCount = 0;
1111 UINTN HandleIndex;
1112 UINTN VolumeIndex, VolumeIndex2;
1113 UINTN PartitionIndex;
1114 UINTN SectorSum, i, VolNumber = 0;
1115 UINT8 *SectorBuffer1, *SectorBuffer2;
1116 EFI_GUID *UuidList;
1117 EFI_GUID NullUuid = NULL_GUID_VALUE;
1118
1119 MyFreePool(Volumes);
1120 Volumes = NULL;
1121 VolumesCount = 0;
1122 ForgetPartitionTables();
1123
1124 // get all filesystem handles
1125 Status = LibLocateHandle(ByProtocol, &BlockIoProtocol, NULL, &HandleCount, &Handles);
1126 UuidList = AllocateZeroPool(sizeof(EFI_GUID) * HandleCount);
1127 if (Status == EFI_NOT_FOUND) {
1128 return; // no filesystems. strange, but true...
1129 }
1130 if (CheckError(Status, L"while listing all file systems"))
1131 return;
1132
1133 // first pass: collect information about all handles
1134 for (HandleIndex = 0; HandleIndex < HandleCount; HandleIndex++) {
1135 Volume = AllocateZeroPool(sizeof(REFIT_VOLUME));
1136 Volume->DeviceHandle = Handles[HandleIndex];
1137 AddPartitionTable(Volume);
1138 ScanVolume(Volume);
1139 if (UuidList) {
1140 UuidList[HandleIndex] = Volume->VolUuid;
1141 for (i = 0; i < HandleIndex; i++) {
1142 if ((CompareMem(&(Volume->VolUuid), &(UuidList[i]), sizeof(EFI_GUID)) == 0) &&
1143 (CompareMem(&(Volume->VolUuid), &NullUuid, sizeof(EFI_GUID)) != 0)) { // Duplicate filesystem UUID
1144 Volume->IsReadable = FALSE;
1145 } // if
1146 } // for
1147 } // if
1148 if (Volume->IsReadable)
1149 Volume->VolNumber = VolNumber++;
1150 else
1151 Volume->VolNumber = VOL_UNREADABLE;
1152
1153 AddListElement((VOID ***) &Volumes, &VolumesCount, Volume);
1154
1155 if (Volume->DeviceHandle == SelfLoadedImage->DeviceHandle)
1156 SelfVolume = Volume;
1157 }
1158 MyFreePool(Handles);
1159
1160 if (SelfVolume == NULL)
1161 Print(L"WARNING: SelfVolume not found");
1162
1163 // second pass: relate partitions and whole disk devices
1164 for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
1165 Volume = Volumes[VolumeIndex];
1166 // check MBR partition table for extended partitions
1167 if (Volume->BlockIO != NULL && Volume->WholeDiskBlockIO != NULL &&
1168 Volume->BlockIO == Volume->WholeDiskBlockIO && Volume->BlockIOOffset == 0 &&
1169 Volume->MbrPartitionTable != NULL) {
1170 MbrTable = Volume->MbrPartitionTable;
1171 for (PartitionIndex = 0; PartitionIndex < 4; PartitionIndex++) {
1172 if (IS_EXTENDED_PART_TYPE(MbrTable[PartitionIndex].Type)) {
1173 ScanExtendedPartition(Volume, MbrTable + PartitionIndex);
1174 }
1175 }
1176 }
1177
1178 // search for corresponding whole disk volume entry
1179 WholeDiskVolume = NULL;
1180 if (Volume->BlockIO != NULL && Volume->WholeDiskBlockIO != NULL &&
1181 Volume->BlockIO != Volume->WholeDiskBlockIO) {
1182 for (VolumeIndex2 = 0; VolumeIndex2 < VolumesCount; VolumeIndex2++) {
1183 if (Volumes[VolumeIndex2]->BlockIO == Volume->WholeDiskBlockIO &&
1184 Volumes[VolumeIndex2]->BlockIOOffset == 0) {
1185 WholeDiskVolume = Volumes[VolumeIndex2];
1186 }
1187 }
1188 }
1189
1190 if (WholeDiskVolume != NULL && WholeDiskVolume->MbrPartitionTable != NULL) {
1191 // check if this volume is one of the partitions in the table
1192 MbrTable = WholeDiskVolume->MbrPartitionTable;
1193 SectorBuffer1 = AllocatePool(512);
1194 SectorBuffer2 = AllocatePool(512);
1195 for (PartitionIndex = 0; PartitionIndex < 4; PartitionIndex++) {
1196 // check size
1197 if ((UINT64)(MbrTable[PartitionIndex].Size) != Volume->BlockIO->Media->LastBlock + 1)
1198 continue;
1199
1200 // compare boot sector read through offset vs. directly
1201 Status = refit_call5_wrapper(Volume->BlockIO->ReadBlocks,
1202 Volume->BlockIO, Volume->BlockIO->Media->MediaId,
1203 Volume->BlockIOOffset, 512, SectorBuffer1);
1204 if (EFI_ERROR(Status))
1205 break;
1206 Status = refit_call5_wrapper(Volume->WholeDiskBlockIO->ReadBlocks,
1207 Volume->WholeDiskBlockIO, Volume->WholeDiskBlockIO->Media->MediaId,
1208 MbrTable[PartitionIndex].StartLBA, 512, SectorBuffer2);
1209 if (EFI_ERROR(Status))
1210 break;
1211 if (CompareMem(SectorBuffer1, SectorBuffer2, 512) != 0)
1212 continue;
1213 SectorSum = 0;
1214 for (i = 0; i < 512; i++)
1215 SectorSum += SectorBuffer1[i];
1216 if (SectorSum < 1000)
1217 continue;
1218
1219 // TODO: mark entry as non-bootable if it is an extended partition
1220
1221 // now we're reasonably sure the association is correct...
1222 Volume->IsMbrPartition = TRUE;
1223 Volume->MbrPartitionIndex = PartitionIndex;
1224 if (Volume->VolName == NULL) {
1225 Volume->VolName = AllocateZeroPool(sizeof(CHAR16) * 256);
1226 SPrint(Volume->VolName, 255, L"Partition %d", PartitionIndex + 1);
1227 }
1228 break;
1229 }
1230
1231 MyFreePool(SectorBuffer1);
1232 MyFreePool(SectorBuffer2);
1233 }
1234 } // for
1235 } /* VOID ScanVolumes() */
1236
1237 static VOID UninitVolumes(VOID)
1238 {
1239 REFIT_VOLUME *Volume;
1240 UINTN VolumeIndex;
1241
1242 for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
1243 Volume = Volumes[VolumeIndex];
1244
1245 if (Volume->RootDir != NULL) {
1246 refit_call1_wrapper(Volume->RootDir->Close, Volume->RootDir);
1247 Volume->RootDir = NULL;
1248 }
1249
1250 Volume->DeviceHandle = NULL;
1251 Volume->BlockIO = NULL;
1252 Volume->WholeDiskBlockIO = NULL;
1253 }
1254 }
1255
1256 VOID ReinitVolumes(VOID)
1257 {
1258 EFI_STATUS Status;
1259 REFIT_VOLUME *Volume;
1260 UINTN VolumeIndex;
1261 EFI_DEVICE_PATH *RemainingDevicePath;
1262 EFI_HANDLE DeviceHandle, WholeDiskHandle;
1263
1264 for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
1265 Volume = Volumes[VolumeIndex];
1266
1267 if (Volume->DevicePath != NULL) {
1268 // get the handle for that path
1269 RemainingDevicePath = Volume->DevicePath;
1270 Status = refit_call3_wrapper(BS->LocateDevicePath, &BlockIoProtocol, &RemainingDevicePath, &DeviceHandle);
1271
1272 if (!EFI_ERROR(Status)) {
1273 Volume->DeviceHandle = DeviceHandle;
1274
1275 // get the root directory
1276 Volume->RootDir = LibOpenRoot(Volume->DeviceHandle);
1277
1278 } else
1279 CheckError(Status, L"from LocateDevicePath");
1280 }
1281
1282 if (Volume->WholeDiskDevicePath != NULL) {
1283 // get the handle for that path
1284 RemainingDevicePath = Volume->WholeDiskDevicePath;
1285 Status = refit_call3_wrapper(BS->LocateDevicePath, &BlockIoProtocol, &RemainingDevicePath, &WholeDiskHandle);
1286
1287 if (!EFI_ERROR(Status)) {
1288 // get the BlockIO protocol
1289 Status = refit_call3_wrapper(BS->HandleProtocol, WholeDiskHandle, &BlockIoProtocol,
1290 (VOID **) &Volume->WholeDiskBlockIO);
1291 if (EFI_ERROR(Status)) {
1292 Volume->WholeDiskBlockIO = NULL;
1293 CheckError(Status, L"from HandleProtocol");
1294 }
1295 } else
1296 CheckError(Status, L"from LocateDevicePath");
1297 }
1298 }
1299 }
1300
1301 //
1302 // file and dir functions
1303 //
1304
1305 BOOLEAN FileExists(IN EFI_FILE *BaseDir, IN CHAR16 *RelativePath)
1306 {
1307 EFI_STATUS Status;
1308 EFI_FILE_HANDLE TestFile;
1309
1310 if (BaseDir != NULL) {
1311 Status = refit_call5_wrapper(BaseDir->Open, BaseDir, &TestFile, RelativePath, EFI_FILE_MODE_READ, 0);
1312 if (Status == EFI_SUCCESS) {
1313 refit_call1_wrapper(TestFile->Close, TestFile);
1314 return TRUE;
1315 }
1316 }
1317 return FALSE;
1318 }
1319
1320 EFI_STATUS DirNextEntry(IN EFI_FILE *Directory, IN OUT EFI_FILE_INFO **DirEntry, IN UINTN FilterMode)
1321 {
1322 EFI_STATUS Status;
1323 VOID *Buffer;
1324 UINTN LastBufferSize, BufferSize;
1325 INTN IterCount;
1326
1327 for (;;) {
1328
1329 // free pointer from last call
1330 if (*DirEntry != NULL) {
1331 FreePool(*DirEntry);
1332 *DirEntry = NULL;
1333 }
1334
1335 // read next directory entry
1336 LastBufferSize = BufferSize = 256;
1337 Buffer = AllocatePool(BufferSize);
1338 for (IterCount = 0; ; IterCount++) {
1339 Print(L"In DirNextEntry(), about to call Directory->Read()\n");
1340 Status = refit_call3_wrapper(Directory->Read, Directory, &BufferSize, Buffer);
1341 if (Status != EFI_BUFFER_TOO_SMALL || IterCount >= 4)
1342 break;
1343 if (BufferSize <= LastBufferSize) {
1344 Print(L"FS Driver requests bad buffer size %d (was %d), using %d instead\n", BufferSize, LastBufferSize, LastBufferSize * 2);
1345 BufferSize = LastBufferSize * 2;
1346 #if REFIT_DEBUG > 0
1347 } else {
1348 Print(L"Reallocating buffer from %d to %d\n", LastBufferSize, BufferSize);
1349 #endif
1350 }
1351 Buffer = EfiReallocatePool(Buffer, LastBufferSize, BufferSize);
1352 LastBufferSize = BufferSize;
1353 }
1354 if (EFI_ERROR(Status)) {
1355 MyFreePool(Buffer);
1356 Buffer = NULL;
1357 break;
1358 }
1359
1360 // check for end of listing
1361 if (BufferSize == 0) { // end of directory listing
1362 MyFreePool(Buffer);
1363 Buffer = NULL;
1364 break;
1365 }
1366
1367 // entry is ready to be returned
1368 *DirEntry = (EFI_FILE_INFO *)Buffer;
1369
1370 // filter results
1371 if (FilterMode == 1) { // only return directories
1372 if (((*DirEntry)->Attribute & EFI_FILE_DIRECTORY))
1373 break;
1374 } else if (FilterMode == 2) { // only return files
1375 if (((*DirEntry)->Attribute & EFI_FILE_DIRECTORY) == 0)
1376 break;
1377 } else // no filter or unknown filter -> return everything
1378 break;
1379
1380 }
1381 return Status;
1382 }
1383
1384 VOID DirIterOpen(IN EFI_FILE *BaseDir, IN CHAR16 *RelativePath OPTIONAL, OUT REFIT_DIR_ITER *DirIter)
1385 {
1386 if (RelativePath == NULL) {
1387 DirIter->LastStatus = EFI_SUCCESS;
1388 DirIter->DirHandle = BaseDir;
1389 DirIter->CloseDirHandle = FALSE;
1390 } else {
1391 DirIter->LastStatus = refit_call5_wrapper(BaseDir->Open, BaseDir, &(DirIter->DirHandle), RelativePath, EFI_FILE_MODE_READ, 0);
1392 DirIter->CloseDirHandle = EFI_ERROR(DirIter->LastStatus) ? FALSE : TRUE;
1393 }
1394 DirIter->LastFileInfo = NULL;
1395 }
1396
1397 #ifndef __MAKEWITH_GNUEFI
1398 EFI_UNICODE_COLLATION_PROTOCOL *mUnicodeCollation = NULL;
1399
1400 static EFI_STATUS
1401 InitializeUnicodeCollationProtocol (VOID)
1402 {
1403 EFI_STATUS Status;
1404
1405 if (mUnicodeCollation != NULL) {
1406 return EFI_SUCCESS;
1407 }
1408
1409 //
1410 // BUGBUG: Proper impelmentation is to locate all Unicode Collation Protocol
1411 // instances first and then select one which support English language.
1412 // Current implementation just pick the first instance.
1413 //
1414 Status = gBS->LocateProtocol (
1415 &gEfiUnicodeCollation2ProtocolGuid,
1416 NULL,
1417 (VOID **) &mUnicodeCollation
1418 );
1419 if (EFI_ERROR(Status)) {
1420 Status = gBS->LocateProtocol (
1421 &gEfiUnicodeCollationProtocolGuid,
1422 NULL,
1423 (VOID **) &mUnicodeCollation
1424 );
1425
1426 }
1427 return Status;
1428 }
1429
1430 static BOOLEAN
1431 MetaiMatch (IN CHAR16 *String, IN CHAR16 *Pattern)
1432 {
1433 if (!mUnicodeCollation) {
1434 InitializeUnicodeCollationProtocol();
1435 }
1436 if (mUnicodeCollation)
1437 return mUnicodeCollation->MetaiMatch (mUnicodeCollation, String, Pattern);
1438 return FALSE; // Shouldn't happen
1439 }
1440
1441 static VOID StrLwr (IN OUT CHAR16 *Str) {
1442 if (!mUnicodeCollation) {
1443 InitializeUnicodeCollationProtocol();
1444 }
1445 if (mUnicodeCollation)
1446 mUnicodeCollation->StrLwr (mUnicodeCollation, Str);
1447 }
1448
1449 #endif
1450
1451 BOOLEAN DirIterNext(IN OUT REFIT_DIR_ITER *DirIter, IN UINTN FilterMode, IN CHAR16 *FilePattern OPTIONAL,
1452 OUT EFI_FILE_INFO **DirEntry)
1453 {
1454 BOOLEAN KeepGoing = TRUE;
1455 UINTN i;
1456 CHAR16 *OnePattern;
1457
1458 if (DirIter->LastFileInfo != NULL) {
1459 FreePool(DirIter->LastFileInfo);
1460 DirIter->LastFileInfo = NULL;
1461 }
1462
1463 if (EFI_ERROR(DirIter->LastStatus))
1464 return FALSE; // stop iteration
1465
1466 do {
1467 DirIter->LastStatus = DirNextEntry(DirIter->DirHandle, &(DirIter->LastFileInfo), FilterMode);
1468 if (EFI_ERROR(DirIter->LastStatus))
1469 return FALSE;
1470 if (DirIter->LastFileInfo == NULL) // end of listing
1471 return FALSE;
1472 if (FilePattern != NULL) {
1473 if ((DirIter->LastFileInfo->Attribute & EFI_FILE_DIRECTORY))
1474 KeepGoing = FALSE;
1475 i = 0;
1476 while (KeepGoing && (OnePattern = FindCommaDelimited(FilePattern, i++)) != NULL) {
1477 if (MetaiMatch(DirIter->LastFileInfo->FileName, OnePattern))
1478 KeepGoing = FALSE;
1479 } // while
1480 // else continue loop
1481 } else
1482 break;
1483 } while (KeepGoing && FilePattern);
1484
1485 *DirEntry = DirIter->LastFileInfo;
1486 return TRUE;
1487 }
1488
1489 EFI_STATUS DirIterClose(IN OUT REFIT_DIR_ITER *DirIter)
1490 {
1491 if (DirIter->LastFileInfo != NULL) {
1492 FreePool(DirIter->LastFileInfo);
1493 DirIter->LastFileInfo = NULL;
1494 }
1495 if (DirIter->CloseDirHandle)
1496 refit_call1_wrapper(DirIter->DirHandle->Close, DirIter->DirHandle);
1497 return DirIter->LastStatus;
1498 }
1499
1500 //
1501 // file name manipulation
1502 //
1503
1504 // Returns the filename portion (minus path name) of the
1505 // specified file
1506 CHAR16 * Basename(IN CHAR16 *Path)
1507 {
1508 CHAR16 *FileName;
1509 UINTN i;
1510
1511 FileName = Path;
1512
1513 if (Path != NULL) {
1514 for (i = StrLen(Path); i > 0; i--) {
1515 if (Path[i-1] == '\\' || Path[i-1] == '/') {
1516 FileName = Path + i;
1517 break;
1518 }
1519 }
1520 }
1521
1522 return FileName;
1523 }
1524
1525 // Remove the .efi extension from FileName -- for instance, if FileName is
1526 // "fred.efi", returns "fred". If the filename contains no .efi extension,
1527 // returns a copy of the original input.
1528 CHAR16 * StripEfiExtension(CHAR16 *FileName) {
1529 UINTN Length;
1530 CHAR16 *Copy = NULL;
1531
1532 if ((FileName != NULL) && ((Copy = StrDuplicate(FileName)) != NULL)) {
1533 Length = StrLen(Copy);
1534 // Note: Do StriCmp() twice to work around Gigabyte Hybrid EFI case-sensitivity bug....
1535 if ((Length >= 4) && ((StriCmp(&Copy[Length - 4], L".efi") == 0) || (StriCmp(&Copy[Length - 4], L".EFI") == 0))) {
1536 Copy[Length - 4] = 0;
1537 } // if
1538 } // if
1539 return Copy;
1540 } // CHAR16 * StripExtension()
1541
1542 //
1543 // memory string search
1544 //
1545
1546 INTN FindMem(IN VOID *Buffer, IN UINTN BufferLength, IN VOID *SearchString, IN UINTN SearchStringLength)
1547 {
1548 UINT8 *BufferPtr;
1549 UINTN Offset;
1550
1551 BufferPtr = Buffer;
1552 BufferLength -= SearchStringLength;
1553 for (Offset = 0; Offset < BufferLength; Offset++, BufferPtr++) {
1554 if (CompareMem(BufferPtr, SearchString, SearchStringLength) == 0)
1555 return (INTN)Offset;
1556 }
1557
1558 return -1;
1559 }
1560
1561 // Performs a case-insensitive search of BigStr for SmallStr.
1562 // Returns TRUE if found, FALSE if not.
1563 BOOLEAN StriSubCmp(IN CHAR16 *SmallStr, IN CHAR16 *BigStr) {
1564 CHAR16 *SmallCopy, *BigCopy;
1565 BOOLEAN Found = FALSE;
1566 UINTN StartPoint = 0, NumCompares = 0, SmallLen = 0;
1567
1568 if ((SmallStr != NULL) && (BigStr != NULL) && (StrLen(BigStr) >= StrLen(SmallStr))) {
1569 SmallCopy = StrDuplicate(SmallStr);
1570 BigCopy = StrDuplicate(BigStr);
1571 StrLwr(SmallCopy);
1572 StrLwr(BigCopy);
1573 SmallLen = StrLen(SmallCopy);
1574 NumCompares = StrLen(BigCopy) - SmallLen + 1;
1575 while ((!Found) && (StartPoint < NumCompares)) {
1576 Found = (StrnCmp(SmallCopy, &BigCopy[StartPoint++], SmallLen) == 0);
1577 } // while
1578 MyFreePool(SmallCopy);
1579 MyFreePool(BigCopy);
1580 } // if
1581
1582 return (Found);
1583 } // BOOLEAN StriSubCmp()
1584
1585 // Convert input string to all-lowercase.
1586 VOID ToLower(CHAR16 * MyString) {
1587 UINTN i = 0;
1588
1589 if (MyString) {
1590 while (MyString[i] != L'\0') {
1591 if ((MyString[i] >= L'A') && (MyString[i] <= L'Z'))
1592 MyString[i] = MyString[i] - L'A' + L'a';
1593 i++;
1594 } // while
1595 } // if
1596 } // VOID ToLower()
1597
1598 // Merges two strings, creating a new one and returning a pointer to it.
1599 // If AddChar != 0, the specified character is placed between the two original
1600 // strings (unless the first string is NULL or empty). The original input
1601 // string *First is de-allocated and replaced by the new merged string.
1602 // This is similar to StrCat, but safer and more flexible because
1603 // MergeStrings allocates memory that's the correct size for the
1604 // new merged string, so it can take a NULL *First and it cleans
1605 // up the old memory. It should *NOT* be used with a constant
1606 // *First, though....
1607 VOID MergeStrings(IN OUT CHAR16 **First, IN CHAR16 *Second, CHAR16 AddChar) {
1608 UINTN Length1 = 0, Length2 = 0;
1609 CHAR16* NewString;
1610
1611 if (*First != NULL)
1612 Length1 = StrLen(*First);
1613 if (Second != NULL)
1614 Length2 = StrLen(Second);
1615 NewString = AllocatePool(sizeof(CHAR16) * (Length1 + Length2 + 2));
1616 if (NewString != NULL) {
1617 if ((*First != NULL) && (StrLen(*First) == 0)) {
1618 MyFreePool(*First);
1619 *First = NULL;
1620 }
1621 NewString[0] = L'\0';
1622 if (*First != NULL) {
1623 StrCat(NewString, *First);
1624 if (AddChar) {
1625 NewString[Length1] = AddChar;
1626 NewString[Length1 + 1] = '\0';
1627 } // if (AddChar)
1628 } // if (*First != NULL)
1629 if (Second != NULL)
1630 StrCat(NewString, Second);
1631 MyFreePool(*First);
1632 *First = NewString;
1633 } else {
1634 Print(L"Error! Unable to allocate memory in MergeStrings()!\n");
1635 } // if/else
1636 } // static CHAR16* MergeStrings()
1637
1638 // Takes an input pathname (*Path) and returns the part of the filename from
1639 // the final dot onwards, converted to lowercase. If the filename includes
1640 // no dots, or if the input is NULL, returns an empty (but allocated) string.
1641 // The calling function is responsible for freeing the memory associated with
1642 // the return value.
1643 CHAR16 *FindExtension(IN CHAR16 *Path) {
1644 CHAR16 *Extension;
1645 BOOLEAN Found = FALSE, FoundSlash = FALSE;
1646 INTN i;
1647
1648 Extension = AllocateZeroPool(sizeof(CHAR16));
1649 if (Path) {
1650 i = StrLen(Path);
1651 while ((!Found) && (!FoundSlash) && (i >= 0)) {
1652 if (Path[i] == L'.')
1653 Found = TRUE;
1654 else if ((Path[i] == L'/') || (Path[i] == L'\\'))
1655 FoundSlash = TRUE;
1656 if (!Found)
1657 i--;
1658 } // while
1659 if (Found) {
1660 MergeStrings(&Extension, &Path[i], 0);
1661 StrLwr(Extension);
1662 } // if (Found)
1663 } // if
1664 return (Extension);
1665 } // CHAR16 *FindExtension
1666
1667 // Takes an input pathname (*Path) and locates the final directory component
1668 // of that name. For instance, if the input path is 'EFI\foo\bar.efi', this
1669 // function returns the string 'foo'.
1670 // Assumes the pathname is separated with backslashes.
1671 CHAR16 *FindLastDirName(IN CHAR16 *Path) {
1672 UINTN i, StartOfElement = 0, EndOfElement = 0, PathLength, CopyLength;
1673 CHAR16 *Found = NULL;
1674
1675 if (Path == NULL)
1676 return NULL;
1677
1678 PathLength = StrLen(Path);
1679 // Find start & end of target element
1680 for (i = 0; i < PathLength; i++) {
1681 if (Path[i] == '\\') {
1682 StartOfElement = EndOfElement;
1683 EndOfElement = i;
1684 } // if
1685 } // for
1686 // Extract the target element
1687 if (EndOfElement > 0) {
1688 while ((StartOfElement < PathLength) && (Path[StartOfElement] == '\\')) {
1689 StartOfElement++;
1690 } // while
1691 EndOfElement--;
1692 if (EndOfElement >= StartOfElement) {
1693 CopyLength = EndOfElement - StartOfElement + 1;
1694 Found = StrDuplicate(&Path[StartOfElement]);
1695 if (Found != NULL)
1696 Found[CopyLength] = 0;
1697 } // if (EndOfElement >= StartOfElement)
1698 } // if (EndOfElement > 0)
1699 return (Found);
1700 } // CHAR16 *FindLastDirName
1701
1702 // Returns the directory portion of a pathname. For instance,
1703 // if FullPath is 'EFI\foo\bar.efi', this function returns the
1704 // string 'EFI\foo'. The calling function is responsible for
1705 // freeing the returned string's memory.
1706 CHAR16 *FindPath(IN CHAR16* FullPath) {
1707 UINTN i, LastBackslash = 0;
1708 CHAR16 *PathOnly = NULL;
1709
1710 if (FullPath != NULL) {
1711 for (i = 0; i < StrLen(FullPath); i++) {
1712 if (FullPath[i] == '\\')
1713 LastBackslash = i;
1714 } // for
1715 PathOnly = StrDuplicate(FullPath);
1716 if (PathOnly != NULL)
1717 PathOnly[LastBackslash] = 0;
1718 } // if
1719 return (PathOnly);
1720 }
1721
1722 /*++
1723 *
1724 * Routine Description:
1725 *
1726 * Find a substring.
1727 *
1728 * Arguments:
1729 *
1730 * String - Null-terminated string to search.
1731 * StrCharSet - Null-terminated string to search for.
1732 *
1733 * Returns:
1734 * The address of the first occurrence of the matching substring if successful, or NULL otherwise.
1735 * --*/
1736 CHAR16* MyStrStr (CHAR16 *String, CHAR16 *StrCharSet)
1737 {
1738 CHAR16 *Src;
1739 CHAR16 *Sub;
1740
1741 if ((String == NULL) || (StrCharSet == NULL))
1742 return NULL;
1743
1744 Src = String;
1745 Sub = StrCharSet;
1746
1747 while ((*String != L'\0') && (*StrCharSet != L'\0')) {
1748 if (*String++ != *StrCharSet) {
1749 String = ++Src;
1750 StrCharSet = Sub;
1751 } else {
1752 StrCharSet++;
1753 }
1754 }
1755 if (*StrCharSet == L'\0') {
1756 return Src;
1757 } else {
1758 return NULL;
1759 }
1760 } // CHAR16 *MyStrStr()
1761
1762 // Restrict TheString to at most Limit characters.
1763 // Does this in two ways:
1764 // - Locates stretches of two or more spaces and compresses
1765 // them down to one space.
1766 // - Truncates TheString
1767 // Returns TRUE if changes were made, FALSE otherwise
1768 BOOLEAN LimitStringLength(CHAR16 *TheString, UINTN Limit) {
1769 CHAR16 *SubString, *TempString;
1770 UINTN i;
1771 BOOLEAN HasChanged = FALSE;
1772
1773 // SubString will be NULL or point WITHIN TheString
1774 SubString = MyStrStr(TheString, L" ");
1775 while (SubString != NULL) {
1776 i = 0;
1777 while (SubString[i] == L' ')
1778 i++;
1779 if (i >= StrLen(SubString)) {
1780 SubString[0] = '\0';
1781 HasChanged = TRUE;
1782 } else {
1783 TempString = StrDuplicate(&SubString[i]);
1784 if (TempString != NULL) {
1785 StrCpy(&SubString[1], TempString);
1786 MyFreePool(TempString);
1787 HasChanged = TRUE;
1788 } else {
1789 // memory allocation problem; abort to avoid potentially infinite loop!
1790 break;
1791 } // if/else
1792 } // if/else
1793 SubString = MyStrStr(TheString, L" ");
1794 } // while
1795
1796 // If the string is still too long, truncate it....
1797 if (StrLen(TheString) > Limit) {
1798 TheString[Limit] = '\0';
1799 HasChanged = TRUE;
1800 } // if
1801
1802 return HasChanged;
1803 } // BOOLEAN LimitStringLength()
1804
1805 // Takes an input loadpath, splits it into disk and filename components, finds a matching
1806 // DeviceVolume, and returns that and the filename (*loader).
1807 VOID FindVolumeAndFilename(IN EFI_DEVICE_PATH *loadpath, OUT REFIT_VOLUME **DeviceVolume, OUT CHAR16 **loader) {
1808 CHAR16 *DeviceString, *VolumeDeviceString, *Temp;
1809 UINTN i = 0;
1810 BOOLEAN Found = FALSE;
1811
1812 MyFreePool(*loader);
1813 MyFreePool(*DeviceVolume);
1814 *DeviceVolume = NULL;
1815 DeviceString = DevicePathToStr(loadpath);
1816 *loader = SplitDeviceString(DeviceString);
1817
1818 while ((i < VolumesCount) && (!Found)) {
1819 VolumeDeviceString = DevicePathToStr(Volumes[i]->DevicePath);
1820 Temp = SplitDeviceString(VolumeDeviceString);
1821 if (StriCmp(DeviceString, VolumeDeviceString) == 0) {
1822 Found = TRUE;
1823 *DeviceVolume = Volumes[i];
1824 }
1825 MyFreePool(Temp);
1826 MyFreePool(VolumeDeviceString);
1827 i++;
1828 } // while
1829
1830 MyFreePool(DeviceString);
1831 } // VOID FindVolumeAndFilename()
1832
1833 // Splits a volume/filename string (e.g., "fs0:\EFI\BOOT") into separate
1834 // volume and filename components (e.g., "fs0" and "\EFI\BOOT"), returning
1835 // the filename component in the original *Path variable and the split-off
1836 // volume component in the *VolName variable.
1837 // Returns TRUE if both components are found, FALSE otherwise.
1838 BOOLEAN SplitVolumeAndFilename(IN OUT CHAR16 **Path, OUT CHAR16 **VolName) {
1839 UINTN i = 0, Length;
1840 CHAR16 *Filename;
1841
1842 if (*Path == NULL)
1843 return FALSE;
1844
1845 if (*VolName != NULL) {
1846 MyFreePool(*VolName);
1847 *VolName = NULL;
1848 }
1849
1850 Length = StrLen(*Path);
1851 while ((i < Length) && ((*Path)[i] != L':')) {
1852 i++;
1853 } // while
1854
1855 if (i < Length) {
1856 Filename = StrDuplicate((*Path) + i + 1);
1857 (*Path)[i] = 0;
1858 *VolName = *Path;
1859 *Path = Filename;
1860 return TRUE;
1861 } else {
1862 return FALSE;
1863 }
1864 } // BOOLEAN SplitVolumeAndFilename()
1865
1866 // Returns all the digits in the input string, including intervening
1867 // non-digit characters. For instance, if InString is "foo-3.3.4-7.img",
1868 // this function returns "3.3.4-7". If InString contains no digits,
1869 // the return value is NULL.
1870 CHAR16 *FindNumbers(IN CHAR16 *InString) {
1871 UINTN i, StartOfElement, EndOfElement = 0, InLength, CopyLength;
1872 CHAR16 *Found = NULL;
1873
1874 if (InString == NULL)
1875 return NULL;
1876
1877 InLength = StartOfElement = StrLen(InString);
1878 // Find start & end of target element
1879 for (i = 0; i < InLength; i++) {
1880 if ((InString[i] >= '0') && (InString[i] <= '9')) {
1881 if (StartOfElement > i)
1882 StartOfElement = i;
1883 if (EndOfElement < i)
1884 EndOfElement = i;
1885 } // if
1886 } // for
1887 // Extract the target element
1888 if (EndOfElement > 0) {
1889 if (EndOfElement >= StartOfElement) {
1890 CopyLength = EndOfElement - StartOfElement + 1;
1891 Found = StrDuplicate(&InString[StartOfElement]);
1892 if (Found != NULL)
1893 Found[CopyLength] = 0;
1894 } // if (EndOfElement >= StartOfElement)
1895 } // if (EndOfElement > 0)
1896 return (Found);
1897 } // CHAR16 *FindNumbers()
1898
1899 // Find the #Index element (numbered from 0) in a comma-delimited string
1900 // of elements.
1901 // Returns the found element, or NULL if Index is out of range or InString
1902 // is NULL. Note that the calling function is responsible for freeing the
1903 // memory associated with the returned string pointer.
1904 CHAR16 *FindCommaDelimited(IN CHAR16 *InString, IN UINTN Index) {
1905 UINTN StartPos = 0, CurPos = 0;
1906 BOOLEAN Found = FALSE;
1907 CHAR16 *FoundString = NULL;
1908
1909 if (InString != NULL) {
1910 // After while() loop, StartPos marks start of item #Index
1911 while ((Index > 0) && (CurPos < StrLen(InString))) {
1912 if (InString[CurPos] == L',') {
1913 Index--;
1914 StartPos = CurPos + 1;
1915 } // if
1916 CurPos++;
1917 } // while
1918 // After while() loop, CurPos is one past the end of the element
1919 while ((CurPos < StrLen(InString)) && (!Found)) {
1920 if (InString[CurPos] == L',')
1921 Found = TRUE;
1922 else
1923 CurPos++;
1924 } // while
1925 if (Index == 0)
1926 FoundString = StrDuplicate(&InString[StartPos]);
1927 if (FoundString != NULL)
1928 FoundString[CurPos - StartPos] = 0;
1929 } // if
1930 return (FoundString);
1931 } // CHAR16 *FindCommaDelimited()
1932
1933 // Return the position of SmallString within BigString, or -1 if
1934 // not found.
1935 INTN FindSubString(IN CHAR16 *SmallString, IN CHAR16 *BigString) {
1936 INTN Position = -1;
1937 UINTN i = 0, SmallSize, BigSize;
1938 BOOLEAN Found = FALSE;
1939
1940 if ((SmallString == NULL) || (BigString == NULL))
1941 return -1;
1942
1943 SmallSize = StrLen(SmallString);
1944 BigSize = StrLen(BigString);
1945 if ((SmallSize > BigSize) || (SmallSize == 0) || (BigSize == 0))
1946 return -1;
1947
1948 while ((i <= (BigSize - SmallSize) && !Found)) {
1949 if (CompareMem(BigString + i, SmallString, SmallSize) == 0) {
1950 Found = TRUE;
1951 Position = i;
1952 } // if
1953 i++;
1954 } // while()
1955 return Position;
1956 } // INTN FindSubString()
1957
1958 // Take an input path name, which may include a volume specification and/or
1959 // a path, and return separate volume, path, and file names. For instance,
1960 // "BIGVOL:\EFI\ubuntu\grubx64.efi" will return a VolName of "BIGVOL", a Path
1961 // of "EFI\ubuntu", and a Filename of "grubx64.efi". If an element is missing,
1962 // the returned pointer is NULL. The calling function is responsible for
1963 // freeing the allocated memory.
1964 VOID SplitPathName(CHAR16 *InPath, CHAR16 **VolName, CHAR16 **Path, CHAR16 **Filename) {
1965 CHAR16 *Temp = NULL;
1966
1967 MyFreePool(*VolName);
1968 MyFreePool(*Path);
1969 MyFreePool(*Filename);
1970 *VolName = *Path = *Filename = NULL;
1971 Temp = StrDuplicate(InPath);
1972 SplitVolumeAndFilename(&Temp, VolName); // VolName is NULL or has volume; Temp has rest of path
1973 CleanUpPathNameSlashes(Temp);
1974 *Path = FindPath(Temp); // *Path has path (may be 0-length); Temp unchanged.
1975 *Filename = StrDuplicate(Temp + StrLen(*Path));
1976 CleanUpPathNameSlashes(*Filename);
1977 if (StrLen(*Path) == 0) {
1978 MyFreePool(*Path);
1979 *Path = NULL;
1980 }
1981 if (StrLen(*Filename) == 0) {
1982 MyFreePool(*Filename);
1983 *Filename = NULL;
1984 }
1985 MyFreePool(Temp);
1986 } // VOID SplitPathName
1987
1988 // Returns TRUE if SmallString is an element in the comma-delimited List,
1989 // FALSE otherwise. Performs comparison case-insensitively (except on
1990 // buggy EFIs with case-sensitive StriCmp() functions).
1991 BOOLEAN IsIn(IN CHAR16 *SmallString, IN CHAR16 *List) {
1992 UINTN i = 0;
1993 BOOLEAN Found = FALSE;
1994 CHAR16 *OneElement;
1995
1996 if (SmallString && List) {
1997 while (!Found && (OneElement = FindCommaDelimited(List, i++))) {
1998 if (StriCmp(OneElement, SmallString) == 0)
1999 Found = TRUE;
2000 } // while
2001 } // if
2002 return Found;
2003 } // BOOLEAN IsIn()
2004
2005 // Returns TRUE if any element of List can be found as a substring of
2006 // BigString, FALSE otherwise. Performs comparisons case-insensitively.
2007 BOOLEAN IsInSubstring(IN CHAR16 *BigString, IN CHAR16 *List) {
2008 UINTN i = 0, ElementLength;
2009 BOOLEAN Found = FALSE;
2010 CHAR16 *OneElement;
2011
2012 if (BigString && List) {
2013 while (!Found && (OneElement = FindCommaDelimited(List, i++))) {
2014 ElementLength = StrLen(OneElement);
2015 if ((ElementLength <= StrLen(BigString)) && (StriSubCmp(OneElement, BigString)))
2016 Found = TRUE;
2017 } // while
2018 } // if
2019 return Found;
2020 } // BOOLEAN IsSubstringIn()
2021
2022 // Returns TRUE if specified Volume, Directory, and Filename correspond to an
2023 // element in the comma-delimited List, FALSE otherwise. Note that Directory and
2024 // Filename must *NOT* include a volume or path specification (that's part of
2025 // the Volume variable), but the List elements may. Performs comparison
2026 // case-insensitively (except on buggy EFIs with case-sensitive StriCmp()
2027 // functions).
2028 BOOLEAN FilenameIn(REFIT_VOLUME *Volume, CHAR16 *Directory, CHAR16 *Filename, CHAR16 *List) {
2029 UINTN i = 0;
2030 BOOLEAN Found = FALSE;
2031 CHAR16 *OneElement;
2032 CHAR16 *TargetVolName = NULL, *TargetPath = NULL, *TargetFilename = NULL;
2033
2034 if (Filename && List) {
2035 while (!Found && (OneElement = FindCommaDelimited(List, i++))) {
2036 Found = TRUE;
2037 SplitPathName(OneElement, &TargetVolName, &TargetPath, &TargetFilename);
2038 VolumeNumberToName(Volume, &TargetVolName);
2039 if (((TargetVolName != NULL) && ((Volume == NULL) || (StriCmp(TargetVolName, Volume->VolName) != 0))) ||
2040 ((TargetPath != NULL) && (StriCmp(TargetPath, Directory) != 0)) ||
2041 ((TargetFilename != NULL) && (StriCmp(TargetFilename, Filename) != 0))) {
2042 Found = FALSE;
2043 } // if
2044 MyFreePool(OneElement);
2045 } // while
2046 } // if
2047
2048 MyFreePool(TargetVolName);
2049 MyFreePool(TargetPath);
2050 MyFreePool(TargetFilename);
2051 return Found;
2052 } // BOOLEAN FilenameIn()
2053
2054 // If *VolName is of the form "fs#", where "#" is a number, and if Volume points
2055 // to this volume number, returns with *VolName changed to the volume name, as
2056 // stored in the Volume data structure.
2057 // Returns TRUE if this substitution was made, FALSE otherwise.
2058 BOOLEAN VolumeNumberToName(REFIT_VOLUME *Volume, CHAR16 **VolName) {
2059 BOOLEAN MadeSubstitution = FALSE;
2060 UINTN VolNum;
2061
2062 if ((VolName == NULL) || (*VolName == NULL))
2063 return FALSE;
2064
2065 if ((StrLen(*VolName) > 2) && (*VolName[0] == L'f') && (*VolName[1] == L's') && (*VolName[2] >= L'0') && (*VolName[2] <= L'9')) {
2066 VolNum = Atoi(*VolName + 2);
2067 if (VolNum == Volume->VolNumber) {
2068 MyFreePool(*VolName);
2069 *VolName = StrDuplicate(Volume->VolName);
2070 MadeSubstitution = TRUE;
2071 } // if
2072 } // if
2073 return MadeSubstitution;
2074 } // BOOLEAN VolumeMatchesNumber()
2075
2076 // Implement FreePool the way it should have been done to begin with, so that
2077 // it doesn't throw an ASSERT message if fed a NULL pointer....
2078 VOID MyFreePool(IN VOID *Pointer) {
2079 if (Pointer != NULL)
2080 FreePool(Pointer);
2081 }
2082
2083 static EFI_GUID AppleRemovableMediaGuid = APPLE_REMOVABLE_MEDIA_PROTOCOL_GUID;
2084
2085 // Eject all removable media.
2086 // Returns TRUE if any media were ejected, FALSE otherwise.
2087 BOOLEAN EjectMedia(VOID) {
2088 EFI_STATUS Status;
2089 UINTN HandleIndex, HandleCount = 0, Ejected = 0;
2090 EFI_HANDLE *Handles, Handle;
2091 APPLE_REMOVABLE_MEDIA_PROTOCOL *Ejectable;
2092
2093 Status = LibLocateHandle(ByProtocol, &AppleRemovableMediaGuid, NULL, &HandleCount, &Handles);
2094 if (EFI_ERROR(Status) || HandleCount == 0)
2095 return (FALSE); // probably not an Apple system
2096
2097 for (HandleIndex = 0; HandleIndex < HandleCount; HandleIndex++) {
2098 Handle = Handles[HandleIndex];
2099 Status = refit_call3_wrapper(BS->HandleProtocol, Handle, &AppleRemovableMediaGuid, (VOID **) &Ejectable);
2100 if (EFI_ERROR(Status))
2101 continue;
2102 Status = refit_call1_wrapper(Ejectable->Eject, Ejectable);
2103 if (!EFI_ERROR(Status))
2104 Ejected++;
2105 }
2106 MyFreePool(Handles);
2107 return (Ejected > 0);
2108 } // VOID EjectMedia()
2109
2110 // Converts consecutive characters in the input string into a
2111 // number, interpreting the string as a hexadecimal number, starting
2112 // at the specified position and continuing for the specified number
2113 // of characters or until the end of the string, whichever is first.
2114 // NumChars must be between 1 and 16. Ignores invalid characters.
2115 UINT64 StrToHex(CHAR16 *Input, UINTN Pos, UINTN NumChars) {
2116 UINT64 retval = 0x00;
2117 UINTN NumDone = 0;
2118 CHAR16 a;
2119
2120 if ((Input == NULL) || (StrLen(Input) < Pos) || (NumChars == 0) || (NumChars > 16)) {
2121 return 0;
2122 }
2123
2124 while ((StrLen(Input) >= Pos) && (NumDone < NumChars)) {
2125 a = Input[Pos];
2126 if ((a >= '0') && (a <= '9')) {
2127 retval *= 0x10;
2128 retval += (a - '0');
2129 NumDone++;
2130 }
2131 if ((a >= 'a') && (a <= 'f')) {
2132 retval *= 0x10;
2133 retval += (a - 'a' + 0x0a);
2134 NumDone++;
2135 }
2136 if ((a >= 'A') && (a <= 'F')) {
2137 retval *= 0x10;
2138 retval += (a - 'A' + 0x0a);
2139 NumDone++;
2140 }
2141 Pos++;
2142 } // while()
2143 return retval;
2144 } // StrToHex()
2145
2146 // Returns TRUE if UnknownString can be interpreted as a GUID, FALSE otherwise.
2147 // Note that the input string must have no extraneous spaces and must be
2148 // conventionally formatted as a 36-character GUID, complete with dashes in
2149 // appropriate places.
2150 BOOLEAN IsGuid(CHAR16 *UnknownString) {
2151 UINTN Length, i;
2152 BOOLEAN retval = TRUE;
2153 CHAR16 a;
2154
2155 if (UnknownString == NULL)
2156 return FALSE;
2157
2158 Length = StrLen(UnknownString);
2159 if (Length != 36)
2160 return FALSE;
2161
2162 for (i = 0; i < Length; i++) {
2163 a = UnknownString[i];
2164 if ((i == 8) || (i == 13) || (i == 18) || (i == 23)) {
2165 if (a != '-')
2166 retval = FALSE;
2167 } else if (((a < 'a') || (a > 'f')) && ((a < 'A') || (a > 'F')) && ((a < '0') && (a > '9'))) {
2168 retval = FALSE;
2169 } // if/else if
2170 } // for
2171 return retval;
2172 } // BOOLEAN IsGuid()
2173
2174 // Return the GUID as a string, suitable for display to the user. Note that the calling
2175 // function is responsible for freeing the allocated memory.
2176 CHAR16 * GuidAsString(EFI_GUID *GuidData) {
2177 CHAR16 *TheString;
2178
2179 TheString = AllocateZeroPool(42 * sizeof(CHAR16));
2180 if (TheString != 0) {
2181 SPrint (TheString, 82, L"%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x",
2182 (UINTN)GuidData->Data1, (UINTN)GuidData->Data2, (UINTN)GuidData->Data3,
2183 (UINTN)GuidData->Data4[0], (UINTN)GuidData->Data4[1], (UINTN)GuidData->Data4[2],
2184 (UINTN)GuidData->Data4[3], (UINTN)GuidData->Data4[4], (UINTN)GuidData->Data4[5],
2185 (UINTN)GuidData->Data4[6], (UINTN)GuidData->Data4[7]);
2186 }
2187 return TheString;
2188 } // GuidAsString(EFI_GUID *GuidData)
2189
2190 EFI_GUID StringAsGuid(CHAR16 * InString) {
2191 EFI_GUID Guid = NULL_GUID_VALUE;
2192
2193 if (!IsGuid(InString)) {
2194 return Guid;
2195 }
2196
2197 Guid.Data1 = (UINT32) StrToHex(InString, 0, 8);
2198 Guid.Data2 = (UINT16) StrToHex(InString, 9, 4);
2199 Guid.Data3 = (UINT16) StrToHex(InString, 14, 4);
2200 Guid.Data4[0] = (UINT8) StrToHex(InString, 19, 2);
2201 Guid.Data4[1] = (UINT8) StrToHex(InString, 21, 2);
2202 Guid.Data4[2] = (UINT8) StrToHex(InString, 23, 2);
2203 Guid.Data4[3] = (UINT8) StrToHex(InString, 26, 2);
2204 Guid.Data4[4] = (UINT8) StrToHex(InString, 28, 2);
2205 Guid.Data4[5] = (UINT8) StrToHex(InString, 30, 2);
2206 Guid.Data4[6] = (UINT8) StrToHex(InString, 32, 2);
2207 Guid.Data4[7] = (UINT8) StrToHex(InString, 34, 2);
2208
2209 return Guid;
2210 } // EFI_GUID StringAsGuid()
2211
2212 // Returns TRUE if the two GUIDs are equal, FALSE otherwise
2213 BOOLEAN GuidsAreEqual(EFI_GUID *Guid1, EFI_GUID *Guid2) {
2214 return (CompareMem(Guid1, Guid2, 16) == 0);
2215 } // BOOLEAN GuidsAreEqual()
2216