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