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