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