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