]> code.delx.au - refind/blob - refind/main.c
Further legacy BIOS boot support tweaks
[refind] / refind / main.c
1 /*
2 * refind/main.c
3 * Main code for the boot menu
4 *
5 * Copyright (c) 2006-2010 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 "config.h"
47 #include "screen.h"
48 #include "lib.h"
49 #include "icns.h"
50 #include "menu.h"
51 #include "../include/Handle.h"
52 #include "../include/refit_call_wrapper.h"
53 #include "driver_support.h"
54 #include "../include/syslinux_mbr.h"
55
56 #ifdef __MAKEWITH_TIANO
57 #include "../EfiLib/BdsHelper.h"
58 #endif // __MAKEWITH_TIANO
59
60 //
61 // variables
62
63 #define MACOSX_LOADER_PATH L"System\\Library\\CoreServices\\boot.efi"
64 #if defined (EFIX64)
65 #define SHELL_NAMES L"\\EFI\\tools\\shell.efi,\\shellx64.efi"
66 #define DRIVER_DIRS L"drivers,drivers_x64"
67 #elif defined (EFI32)
68 #define SHELL_NAMES L"\\EFI\\tools\\shell.efi,\\shellia32.efi"
69 #define DRIVER_DIRS L"drivers,drivers_ia32"
70 #else
71 #define SHELL_NAMES L"\\EFI\\tools\\shell.efi"
72 #define DRIVER_DIRS L"drivers"
73 #endif
74
75 // Filename patterns that identify EFI boot loaders. Note that a single case (either L"*.efi" or
76 // L"*.EFI") is fine for most systems; but Gigabyte's buggy Hybrid EFI does a case-sensitive
77 // comparison when it should do a case-insensitive comparison, so I'm doubling this up. It does
78 // no harm on other computers, AFAIK. In theory, every case variation should be done for
79 // completeness, but that's ridiculous....
80 #define LOADER_MATCH_PATTERNS L"*.efi,*.EFI"
81
82 // Patterns that identify Linux kernels. Added to the loader match pattern when the
83 // scan_all_linux_kernels option is set in the configuration file. Causes kernels WITHOUT
84 // a ".efi" extension to be found when scanning for boot loaders.
85 #define LINUX_MATCH_PATTERNS L"vmlinuz*,bzImage*"
86
87 static REFIT_MENU_ENTRY MenuEntryAbout = { L"About rEFInd", TAG_ABOUT, 1, 0, 'A', NULL, NULL, NULL };
88 static REFIT_MENU_ENTRY MenuEntryReset = { L"Reboot Computer", TAG_REBOOT, 1, 0, 'R', NULL, NULL, NULL };
89 static REFIT_MENU_ENTRY MenuEntryShutdown = { L"Shut Down Computer", TAG_SHUTDOWN, 1, 0, 'U', NULL, NULL, NULL };
90 static REFIT_MENU_ENTRY MenuEntryReturn = { L"Return to Main Menu", TAG_RETURN, 0, 0, 0, NULL, NULL, NULL };
91 static REFIT_MENU_ENTRY MenuEntryExit = { L"Exit rEFInd", TAG_EXIT, 1, 0, 0, NULL, NULL, NULL };
92
93 static REFIT_MENU_SCREEN MainMenu = { L"Main Menu", NULL, 0, NULL, 0, NULL, 0, L"Automatic boot" };
94 static REFIT_MENU_SCREEN AboutMenu = { L"About", NULL, 0, NULL, 0, NULL, 0, NULL };
95
96 REFIT_CONFIG GlobalConfig = { FALSE, FALSE, 0, 0, 20, 0, 0, GRAPHICS_FOR_OSX, LEGACY_TYPE_MAC, 0,
97 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
98 {TAG_SHELL, TAG_ABOUT, TAG_SHUTDOWN, TAG_REBOOT, 0, 0, 0, 0, 0 }};
99
100 // Structure used to hold boot loader filenames and time stamps in
101 // a linked list; used to sort entries within a directory.
102 struct LOADER_LIST {
103 CHAR16 *FileName;
104 EFI_TIME TimeStamp;
105 struct LOADER_LIST *NextEntry;
106 };
107
108 //
109 // misc functions
110 //
111
112 static VOID AboutrEFInd(VOID)
113 {
114 CHAR16 *TempStr; // Note: Don't deallocate; moved to menu structure
115
116 if (AboutMenu.EntryCount == 0) {
117 AboutMenu.TitleImage = BuiltinIcon(BUILTIN_ICON_FUNC_ABOUT);
118 AddMenuInfoLine(&AboutMenu, L"rEFInd Version 0.4.5.5");
119 AddMenuInfoLine(&AboutMenu, L"");
120 AddMenuInfoLine(&AboutMenu, L"Copyright (c) 2006-2010 Christoph Pfisterer");
121 AddMenuInfoLine(&AboutMenu, L"Copyright (c) 2012 Roderick W. Smith");
122 AddMenuInfoLine(&AboutMenu, L"Portions Copyright (c) Intel Corporation and others");
123 AddMenuInfoLine(&AboutMenu, L"Distributed under the terms of the GNU GPLv3 license");
124 AddMenuInfoLine(&AboutMenu, L"");
125 AddMenuInfoLine(&AboutMenu, L"Running on:");
126 TempStr = AllocateZeroPool(256 * sizeof(CHAR16));
127 SPrint(TempStr, 255, L" EFI Revision %d.%02d", ST->Hdr.Revision >> 16, ST->Hdr.Revision & ((1 << 16) - 1));
128 AddMenuInfoLine(&AboutMenu, TempStr);
129 #if defined(EFI32)
130 AddMenuInfoLine(&AboutMenu, L" Platform: x86 (32 bit)");
131 #elif defined(EFIX64)
132 AddMenuInfoLine(&AboutMenu, L" Platform: x86_64 (64 bit)");
133 #else
134 AddMenuInfoLine(&AboutMenu, L" Platform: unknown");
135 #endif
136 TempStr = AllocateZeroPool(256 * sizeof(CHAR16));
137 SPrint(TempStr, 255, L" Firmware: %s %d.%02d",
138 ST->FirmwareVendor, ST->FirmwareRevision >> 16, ST->FirmwareRevision & ((1 << 16) - 1));
139 AddMenuInfoLine(&AboutMenu, TempStr);
140 TempStr = AllocateZeroPool(256 * sizeof(CHAR16));
141 SPrint(TempStr, 255, L" Screen Output: %s", egScreenDescription());
142 AddMenuInfoLine(&AboutMenu, TempStr);
143 AddMenuInfoLine(&AboutMenu, L"");
144 #if defined(__MAKEWITH_GNUEFI)
145 AddMenuInfoLine(&AboutMenu, L"Built with GNU-EFI");
146 #else
147 AddMenuInfoLine(&AboutMenu, L"Built with TianoCore EDK2");
148 #endif
149 AddMenuInfoLine(&AboutMenu, L"");
150 AddMenuInfoLine(&AboutMenu, L"For more information, see the rEFInd Web site:");
151 AddMenuInfoLine(&AboutMenu, L"http://www.rodsbooks.com/refind/");
152 AddMenuEntry(&AboutMenu, &MenuEntryReturn);
153 }
154
155 RunMenu(&AboutMenu, NULL);
156 } /* VOID AboutrEFInd() */
157
158 static EFI_STATUS StartEFIImageList(IN EFI_DEVICE_PATH **DevicePaths,
159 IN CHAR16 *LoadOptions, IN CHAR16 *LoadOptionsPrefix,
160 IN CHAR16 *ImageTitle,
161 OUT UINTN *ErrorInStep,
162 IN BOOLEAN Verbose)
163 {
164 EFI_STATUS Status, ReturnStatus;
165 EFI_HANDLE ChildImageHandle;
166 EFI_LOADED_IMAGE *ChildLoadedImage;
167 UINTN DevicePathIndex;
168 CHAR16 ErrorInfo[256];
169 CHAR16 *FullLoadOptions = NULL;
170
171 if (Verbose)
172 Print(L"Starting %s\n", ImageTitle);
173 if (ErrorInStep != NULL)
174 *ErrorInStep = 0;
175
176 // load the image into memory
177 ReturnStatus = Status = EFI_NOT_FOUND; // in case the list is empty
178 for (DevicePathIndex = 0; DevicePaths[DevicePathIndex] != NULL; DevicePathIndex++) {
179 ReturnStatus = Status = refit_call6_wrapper(BS->LoadImage, FALSE, SelfImageHandle, DevicePaths[DevicePathIndex], NULL, 0, &ChildImageHandle);
180 if (ReturnStatus != EFI_NOT_FOUND) {
181 break;
182 }
183 }
184 SPrint(ErrorInfo, 255, L"while loading %s", ImageTitle);
185 if (CheckError(Status, ErrorInfo)) {
186 if (ErrorInStep != NULL)
187 *ErrorInStep = 1;
188 goto bailout;
189 }
190
191 // set load options
192 if (LoadOptions != NULL) {
193 ReturnStatus = Status = refit_call3_wrapper(BS->HandleProtocol, ChildImageHandle, &LoadedImageProtocol, (VOID **) &ChildLoadedImage);
194 if (CheckError(Status, L"while getting a LoadedImageProtocol handle")) {
195 if (ErrorInStep != NULL)
196 *ErrorInStep = 2;
197 goto bailout_unload;
198 }
199
200 if (LoadOptionsPrefix != NULL) {
201 MergeStrings(&FullLoadOptions, LoadOptionsPrefix, 0);
202 MergeStrings(&FullLoadOptions, LoadOptions, L' ');
203 MergeStrings(&FullLoadOptions, L" ", 0);
204 // NOTE: That last space is also added by the EFI shell and seems to be significant
205 // when passing options to Apple's boot.efi...
206 } else {
207 MergeStrings(&FullLoadOptions, LoadOptions, 0);
208 } // if/else
209 // NOTE: We also include the terminating null in the length for safety.
210 ChildLoadedImage->LoadOptions = (VOID *)FullLoadOptions;
211 ChildLoadedImage->LoadOptionsSize = ((UINT32)StrLen(FullLoadOptions) + 1) * sizeof(CHAR16);
212 if (Verbose)
213 Print(L"Using load options '%s'\n", FullLoadOptions);
214 }
215
216 // close open file handles
217 UninitRefitLib();
218
219 // turn control over to the image
220 // TODO: (optionally) re-enable the EFI watchdog timer!
221 ReturnStatus = Status = refit_call3_wrapper(BS->StartImage, ChildImageHandle, NULL, NULL);
222 // control returns here when the child image calls Exit()
223 SPrint(ErrorInfo, 255, L"returned from %s", ImageTitle);
224 if (CheckError(Status, ErrorInfo)) {
225 if (ErrorInStep != NULL)
226 *ErrorInStep = 3;
227 }
228
229 // re-open file handles
230 ReinitRefitLib();
231
232 bailout_unload:
233 // unload the image, we don't care if it works or not...
234 Status = refit_call1_wrapper(BS->UnloadImage, ChildImageHandle);
235 bailout:
236 if (FullLoadOptions != NULL)
237 FreePool(FullLoadOptions);
238 return ReturnStatus;
239 } /* static EFI_STATUS StartEFIImageList() */
240
241 static EFI_STATUS StartEFIImage(IN EFI_DEVICE_PATH *DevicePath,
242 IN CHAR16 *LoadOptions, IN CHAR16 *LoadOptionsPrefix,
243 IN CHAR16 *ImageTitle,
244 OUT UINTN *ErrorInStep,
245 IN BOOLEAN Verbose)
246 {
247 EFI_DEVICE_PATH *DevicePaths[2];
248
249 DevicePaths[0] = DevicePath;
250 DevicePaths[1] = NULL;
251 return StartEFIImageList(DevicePaths, LoadOptions, LoadOptionsPrefix, ImageTitle, ErrorInStep, Verbose);
252 } /* static EFI_STATUS StartEFIImage() */
253
254 //
255 // EFI OS loader functions
256 //
257
258 static VOID StartLoader(IN LOADER_ENTRY *Entry)
259 {
260 UINTN ErrorInStep = 0;
261
262 BeginExternalScreen(Entry->UseGraphicsMode, L"Booting OS");
263 StartEFIImage(Entry->DevicePath, Entry->LoadOptions,
264 Basename(Entry->LoaderPath), Basename(Entry->LoaderPath), &ErrorInStep, !Entry->UseGraphicsMode);
265 FinishExternalScreen();
266 }
267
268 // Locate an initrd or initramfs file that matches the kernel specified by LoaderPath.
269 // The matching file has a name that begins with "init" and includes the same version
270 // number string as is found in LoaderPath -- but not a longer version number string.
271 // For instance, if LoaderPath is \EFI\kernels\bzImage-3.3.0.efi, and if \EFI\kernels
272 // has a file called initramfs-3.3.0.img, this function will return the string
273 // '\EFI\kernels\initramfs-3.3.0.img'. If the directory ALSO contains the file
274 // initramfs-3.3.0-rc7.img or initramfs-13.3.0.img, those files will NOT match;
275 // however, initmine-3.3.0.img might match. (FindInitrd() returns the first match it
276 // finds). Thus, care should be taken to avoid placing duplicate matching files in
277 // the kernel's directory.
278 // If no matching init file can be found, returns NULL.
279 static CHAR16 * FindInitrd(IN CHAR16 *LoaderPath, IN REFIT_VOLUME *Volume) {
280 CHAR16 *InitrdName = NULL, *FileName, *KernelVersion, *InitrdVersion, *Path;
281 REFIT_DIR_ITER DirIter;
282 EFI_FILE_INFO *DirEntry;
283
284 FileName = Basename(LoaderPath);
285 KernelVersion = FindNumbers(FileName);
286 Path = FindPath(LoaderPath);
287
288 // Add trailing backslash for root directory; necessary on some systems, but must
289 // NOT be added to all directories, since on other systems, a trailing backslash on
290 // anything but the root directory causes them to flake out!
291 if (StrLen(Path) == 0) {
292 MergeStrings(&Path, L"\\", 0);
293 } // if
294 DirIterOpen(Volume->RootDir, Path, &DirIter);
295 // Now add a trailing backslash if it was NOT added earlier, for consistency in
296 // building the InitrdName later....
297 if ((StrLen(Path) > 0) && (Path[StrLen(Path) - 1] != L'\\'))
298 MergeStrings(&Path, L"\\", 0);
299 while ((DirIterNext(&DirIter, 2, L"init*", &DirEntry)) && (InitrdName == NULL)) {
300 InitrdVersion = FindNumbers(DirEntry->FileName);
301 if (KernelVersion != NULL) {
302 if (StriCmp(InitrdVersion, KernelVersion) == 0) {
303 MergeStrings(&InitrdName, Path, 0);
304 MergeStrings(&InitrdName, DirEntry->FileName, 0);
305 } // if
306 } else {
307 if (InitrdVersion == NULL) {
308 MergeStrings(&InitrdName, Path, 0);
309 MergeStrings(&InitrdName, DirEntry->FileName, 0);
310 } // if
311 } // if/else
312 if (InitrdVersion != NULL)
313 FreePool(InitrdVersion);
314 } // while
315 DirIterClose(&DirIter);
316
317 // Note: Don't FreePool(FileName), since Basename returns a pointer WITHIN the string it's passed.
318 FreePool(KernelVersion);
319 FreePool(Path);
320 return (InitrdName);
321 } // static CHAR16 * FindInitrd()
322
323 LOADER_ENTRY * AddPreparedLoaderEntry(LOADER_ENTRY *Entry) {
324 AddMenuEntry(&MainMenu, (REFIT_MENU_ENTRY *)Entry);
325
326 return(Entry);
327 } // LOADER_ENTRY * AddPreparedLoaderEntry()
328
329 // Creates a copy of a menu screen.
330 // Returns a pointer to the copy of the menu screen.
331 static REFIT_MENU_SCREEN* CopyMenuScreen(REFIT_MENU_SCREEN *Entry) {
332 REFIT_MENU_SCREEN *NewEntry;
333 UINTN i;
334
335 NewEntry = AllocateZeroPool(sizeof(REFIT_MENU_SCREEN));
336 if ((Entry != NULL) && (NewEntry != NULL)) {
337 CopyMem(NewEntry, Entry, sizeof(REFIT_MENU_SCREEN));
338 NewEntry->Title = StrDuplicate(Entry->Title);
339 NewEntry->TimeoutText = StrDuplicate(Entry->TimeoutText);
340 if (Entry->TitleImage != NULL) {
341 NewEntry->TitleImage = AllocatePool(sizeof(EG_IMAGE));
342 if (NewEntry->TitleImage != NULL)
343 CopyMem(NewEntry->TitleImage, Entry->TitleImage, sizeof(EG_IMAGE));
344 } // if
345 NewEntry->InfoLines = (CHAR16**) AllocateZeroPool(Entry->InfoLineCount * (sizeof(CHAR16*)));
346 for (i = 0; i < Entry->InfoLineCount && NewEntry->InfoLines; i++) {
347 NewEntry->InfoLines[i] = StrDuplicate(Entry->InfoLines[i]);
348 } // for
349 NewEntry->Entries = (REFIT_MENU_ENTRY**) AllocateZeroPool(Entry->EntryCount * (sizeof (REFIT_MENU_ENTRY*)));
350 for (i = 0; i < Entry->EntryCount && NewEntry->Entries; i++) {
351 AddMenuEntry(NewEntry, Entry->Entries[i]);
352 } // for
353 } // if
354 return (NewEntry);
355 } // static REFIT_MENU_SCREEN* CopyMenuScreen()
356
357 // Creates a copy of a menu entry. Intended to enable moving a stack-based
358 // menu entry (such as the ones for the "reboot" and "exit" functions) to
359 // to the heap. This enables easier deletion of the whole set of menu
360 // entries when re-scanning.
361 // Returns a pointer to the copy of the menu entry.
362 static REFIT_MENU_ENTRY* CopyMenuEntry(REFIT_MENU_ENTRY *Entry) {
363 REFIT_MENU_ENTRY *NewEntry;
364
365 NewEntry = AllocateZeroPool(sizeof(REFIT_MENU_ENTRY));
366 if ((Entry != NULL) && (NewEntry != NULL)) {
367 CopyMem(NewEntry, Entry, sizeof(REFIT_MENU_ENTRY));
368 NewEntry->Title = StrDuplicate(Entry->Title);
369 if (Entry->BadgeImage != NULL) {
370 NewEntry->BadgeImage = AllocatePool(sizeof(EG_IMAGE));
371 if (NewEntry->BadgeImage != NULL)
372 CopyMem(NewEntry->BadgeImage, Entry->BadgeImage, sizeof(EG_IMAGE));
373 }
374 if (Entry->Image != NULL) {
375 NewEntry->Image = AllocatePool(sizeof(EG_IMAGE));
376 if (NewEntry->Image != NULL)
377 CopyMem(NewEntry->Image, Entry->Image, sizeof(EG_IMAGE));
378 }
379 if (Entry->SubScreen != NULL) {
380 NewEntry->SubScreen = CopyMenuScreen(Entry->SubScreen);
381 }
382 } // if
383 return (NewEntry);
384 } // REFIT_MENU_ENTRY* CopyMenuEntry()
385
386 // Creates a new LOADER_ENTRY data structure and populates it with
387 // default values from the specified Entry, or NULL values if Entry
388 // is unspecified (NULL).
389 // Returns a pointer to the new data structure, or NULL if it
390 // couldn't be allocated
391 LOADER_ENTRY *InitializeLoaderEntry(IN LOADER_ENTRY *Entry) {
392 LOADER_ENTRY *NewEntry = NULL;
393
394 NewEntry = AllocateZeroPool(sizeof(LOADER_ENTRY));
395 if (NewEntry != NULL) {
396 NewEntry->me.Title = NULL;
397 NewEntry->me.Tag = TAG_LOADER;
398 NewEntry->Enabled = TRUE;
399 NewEntry->UseGraphicsMode = FALSE;
400 NewEntry->OSType = 0;
401 if (Entry != NULL) {
402 NewEntry->LoaderPath = StrDuplicate(Entry->LoaderPath);
403 NewEntry->VolName = StrDuplicate(Entry->VolName);
404 NewEntry->DevicePath = Entry->DevicePath;
405 NewEntry->UseGraphicsMode = Entry->UseGraphicsMode;
406 NewEntry->LoadOptions = StrDuplicate(Entry->LoadOptions);
407 NewEntry->InitrdPath = StrDuplicate(Entry->InitrdPath);
408 }
409 } // if
410 return (NewEntry);
411 } // LOADER_ENTRY *InitializeLoaderEntry()
412
413 // Prepare a REFIT_MENU_SCREEN data structure for a subscreen entry. This sets up
414 // the default entry that launches the boot loader using the same options as the
415 // main Entry does. Subsequent options can be added by the calling function.
416 // If a subscreen already exists in the Entry that's passed to this function,
417 // it's left unchanged and a pointer to it is returned.
418 // Returns a pointer to the new subscreen data structure, or NULL if there
419 // were problems allocating memory.
420 REFIT_MENU_SCREEN *InitializeSubScreen(IN LOADER_ENTRY *Entry) {
421 CHAR16 *FileName, *Temp = NULL;
422 REFIT_MENU_SCREEN *SubScreen = NULL;
423 LOADER_ENTRY *SubEntry;
424
425 FileName = Basename(Entry->LoaderPath);
426 if (Entry->me.SubScreen == NULL) { // No subscreen yet; initialize default entry....
427 SubScreen = AllocateZeroPool(sizeof(REFIT_MENU_SCREEN));
428 if (SubScreen != NULL) {
429 SubScreen->Title = AllocateZeroPool(sizeof(CHAR16) * 256);
430 SPrint(SubScreen->Title, 255, L"Boot Options for %s on %s",
431 (Entry->Title != NULL) ? Entry->Title : FileName, Entry->VolName);
432 SubScreen->TitleImage = Entry->me.Image;
433 // default entry
434 SubEntry = InitializeLoaderEntry(Entry);
435 if (SubEntry != NULL) {
436 SubEntry->me.Title = L"Boot using default options";
437 if ((SubEntry->InitrdPath != NULL) && (StrLen(SubEntry->InitrdPath) > 0) && (!StriSubCmp(L"initrd", SubEntry->LoadOptions))) {
438 MergeStrings(&Temp, L"initrd=", 0);
439 MergeStrings(&Temp, SubEntry->InitrdPath, 0);
440 MergeStrings(&SubEntry->LoadOptions, Temp, L' ');
441 FreePool(Temp);
442 } // if
443 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
444 } // if (SubEntry != NULL)
445 } // if (SubScreen != NULL)
446 } else { // existing subscreen; less initialization, and just add new entry later....
447 SubScreen = Entry->me.SubScreen;
448 } // if/else
449 return SubScreen;
450 } // REFIT_MENU_SCREEN *InitializeSubScreen()
451
452 VOID GenerateSubScreen(LOADER_ENTRY *Entry, IN REFIT_VOLUME *Volume) {
453 REFIT_MENU_SCREEN *SubScreen;
454 LOADER_ENTRY *SubEntry;
455 CHAR16 *InitrdOption = NULL, *Temp;
456 CHAR16 DiagsFileName[256];
457 REFIT_FILE *File;
458 UINTN TokenCount;
459 CHAR16 **TokenList;
460
461 // create the submenu
462 if (StrLen(Entry->Title) == 0) {
463 FreePool(Entry->Title);
464 Entry->Title = NULL;
465 }
466 SubScreen = InitializeSubScreen(Entry);
467
468 // loader-specific submenu entries
469 if (Entry->OSType == 'M') { // entries for Mac OS X
470 #if defined(EFIX64)
471 SubEntry = InitializeLoaderEntry(Entry);
472 if (SubEntry != NULL) {
473 SubEntry->me.Title = L"Boot Mac OS X with a 64-bit kernel";
474 SubEntry->LoadOptions = L"arch=x86_64";
475 SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_OSX;
476 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
477 } // if
478
479 SubEntry = InitializeLoaderEntry(Entry);
480 if (SubEntry != NULL) {
481 SubEntry->me.Title = L"Boot Mac OS X with a 32-bit kernel";
482 SubEntry->LoadOptions = L"arch=i386";
483 SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_OSX;
484 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
485 } // if
486 #endif
487
488 if (!(GlobalConfig.HideUIFlags & HIDEUI_FLAG_SINGLEUSER)) {
489 SubEntry = InitializeLoaderEntry(Entry);
490 if (SubEntry != NULL) {
491 SubEntry->me.Title = L"Boot Mac OS X in verbose mode";
492 SubEntry->UseGraphicsMode = FALSE;
493 SubEntry->LoadOptions = L"-v";
494 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
495 } // if
496
497 #if defined(EFIX64)
498 SubEntry = InitializeLoaderEntry(Entry);
499 if (SubEntry != NULL) {
500 SubEntry->me.Title = L"Boot Mac OS X in verbose mode (64-bit)";
501 SubEntry->UseGraphicsMode = FALSE;
502 SubEntry->LoadOptions = L"-v arch=x86_64";
503 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
504 }
505
506 SubEntry = InitializeLoaderEntry(Entry);
507 if (SubEntry != NULL) {
508 SubEntry->me.Title = L"Boot Mac OS X in verbose mode (32-bit)";
509 SubEntry->UseGraphicsMode = FALSE;
510 SubEntry->LoadOptions = L"-v arch=i386";
511 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
512 }
513 #endif
514
515 SubEntry = InitializeLoaderEntry(Entry);
516 if (SubEntry != NULL) {
517 SubEntry->me.Title = L"Boot Mac OS X in single user mode";
518 SubEntry->UseGraphicsMode = FALSE;
519 SubEntry->LoadOptions = L"-v -s";
520 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
521 } // if
522 } // not single-user
523
524 // check for Apple hardware diagnostics
525 StrCpy(DiagsFileName, L"\\System\\Library\\CoreServices\\.diagnostics\\diags.efi");
526 if (FileExists(Volume->RootDir, DiagsFileName) && !(GlobalConfig.HideUIFlags & HIDEUI_FLAG_HWTEST)) {
527 SubEntry = InitializeLoaderEntry(Entry);
528 if (SubEntry != NULL) {
529 SubEntry->me.Title = L"Run Apple Hardware Test";
530 FreePool(SubEntry->LoaderPath);
531 SubEntry->LoaderPath = StrDuplicate(DiagsFileName);
532 SubEntry->DevicePath = FileDevicePath(Volume->DeviceHandle, SubEntry->LoaderPath);
533 SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_OSX;
534 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
535 } // if
536 } // if diagnostics entry found
537
538 } else if (Entry->OSType == 'L') { // entries for Linux kernels with EFI stub loaders
539 File = ReadLinuxOptionsFile(Entry->LoaderPath, Volume);
540 if (File != NULL) {
541 if ((Temp = FindInitrd(Entry->LoaderPath, Volume)) != NULL) {
542 MergeStrings(&InitrdOption, L"initrd=", 0);
543 MergeStrings(&InitrdOption, Temp, 0);
544 }
545 TokenCount = ReadTokenLine(File, &TokenList); // read and discard first entry, since it's
546 FreeTokenLine(&TokenList, &TokenCount); // set up by InitializeSubScreen(), earlier....
547 while ((TokenCount = ReadTokenLine(File, &TokenList)) > 1) {
548 SubEntry = InitializeLoaderEntry(Entry);
549 SubEntry->me.Title = StrDuplicate(TokenList[0]);
550 if (SubEntry->LoadOptions != NULL)
551 FreePool(SubEntry->LoadOptions);
552 SubEntry->LoadOptions = StrDuplicate(TokenList[1]);
553 MergeStrings(&SubEntry->LoadOptions, InitrdOption, L' ');
554 FreeTokenLine(&TokenList, &TokenCount);
555 SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_LINUX;
556 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
557 } // while
558 if (InitrdOption)
559 FreePool(InitrdOption);
560 if (Temp)
561 FreePool(Temp);
562 FreePool(File);
563 } // if Linux options file exists
564
565 } else if (Entry->OSType == 'E') { // entries for ELILO
566 SubEntry = InitializeLoaderEntry(Entry);
567 if (SubEntry != NULL) {
568 SubEntry->me.Title = L"Run ELILO in interactive mode";
569 SubEntry->LoadOptions = L"-p";
570 SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_ELILO;
571 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
572 }
573
574 SubEntry = InitializeLoaderEntry(Entry);
575 if (SubEntry != NULL) {
576 SubEntry->me.Title = L"Boot Linux for a 17\" iMac or a 15\" MacBook Pro (*)";
577 SubEntry->UseGraphicsMode = TRUE;
578 SubEntry->LoadOptions = L"-d 0 i17";
579 SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_ELILO;
580 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
581 }
582
583 SubEntry = InitializeLoaderEntry(Entry);
584 if (SubEntry != NULL) {
585 SubEntry->me.Title = L"Boot Linux for a 20\" iMac (*)";
586 SubEntry->UseGraphicsMode = TRUE;
587 SubEntry->LoadOptions = L"-d 0 i20";
588 SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_ELILO;
589 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
590 }
591
592 SubEntry = InitializeLoaderEntry(Entry);
593 if (SubEntry != NULL) {
594 SubEntry->me.Title = L"Boot Linux for a Mac Mini (*)";
595 SubEntry->UseGraphicsMode = TRUE;
596 SubEntry->LoadOptions = L"-d 0 mini";
597 SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_ELILO;
598 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
599 }
600
601 AddMenuInfoLine(SubScreen, L"NOTE: This is an example. Entries");
602 AddMenuInfoLine(SubScreen, L"marked with (*) may not work.");
603
604 } else if (Entry->OSType == 'X') { // entries for xom.efi
605 // by default, skip the built-in selection and boot from hard disk only
606 Entry->LoadOptions = L"-s -h";
607
608 SubEntry = InitializeLoaderEntry(Entry);
609 if (SubEntry != NULL) {
610 SubEntry->me.Title = L"Boot Windows from Hard Disk";
611 SubEntry->LoadOptions = L"-s -h";
612 SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_WINDOWS;
613 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
614 }
615
616 SubEntry = InitializeLoaderEntry(Entry);
617 if (SubEntry != NULL) {
618 SubEntry->me.Title = L"Boot Windows from CD-ROM";
619 SubEntry->LoadOptions = L"-s -c";
620 SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_WINDOWS;
621 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
622 }
623
624 SubEntry = InitializeLoaderEntry(Entry);
625 if (SubEntry != NULL) {
626 SubEntry->me.Title = L"Run XOM in text mode";
627 SubEntry->UseGraphicsMode = FALSE;
628 SubEntry->LoadOptions = L"-v";
629 SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_WINDOWS;
630 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
631 }
632 } // entries for xom.efi
633 AddMenuEntry(SubScreen, &MenuEntryReturn);
634 Entry->me.SubScreen = SubScreen;
635 } // VOID GenerateSubScreen()
636
637 // Returns options for a Linux kernel. Reads them from an options file in the
638 // kernel's directory; and if present, adds an initrd= option for an initial
639 // RAM disk file with the same version number as the kernel file.
640 static CHAR16 * GetMainLinuxOptions(IN CHAR16 * LoaderPath, IN REFIT_VOLUME *Volume) {
641 CHAR16 *Options = NULL, *InitrdName, *InitrdOption = NULL;
642
643 Options = GetFirstOptionsFromFile(LoaderPath, Volume);
644 InitrdName = FindInitrd(LoaderPath, Volume);
645 if (InitrdName != NULL) {
646 MergeStrings(&InitrdOption, L"initrd=", 0);
647 MergeStrings(&InitrdOption, InitrdName, 0);
648 } // if
649 MergeStrings(&Options, InitrdOption, ' ');
650 if (InitrdOption != NULL)
651 FreePool(InitrdOption);
652 if (InitrdName != NULL)
653 FreePool(InitrdName);
654 return (Options);
655 } // static CHAR16 * GetMainLinuxOptions()
656
657 // Sets a few defaults for a loader entry -- mainly the icon, but also the OS type
658 // code and shortcut letter. For Linux EFI stub loaders, also sets kernel options
659 // that will (with luck) work fairly automatically.
660 VOID SetLoaderDefaults(LOADER_ENTRY *Entry, CHAR16 *LoaderPath, IN REFIT_VOLUME *Volume) {
661 CHAR16 IconFileName[256];
662 CHAR16 *FileName, *PathOnly, *OSIconName = NULL, *Temp;
663 CHAR16 ShortcutLetter = 0;
664
665 FileName = Basename(LoaderPath);
666 PathOnly = FindPath(LoaderPath);
667
668 // locate a custom icon for the loader
669 StrCpy(IconFileName, LoaderPath);
670 ReplaceEfiExtension(IconFileName, L".icns");
671 if (FileExists(Volume->RootDir, IconFileName)) {
672 Entry->me.Image = LoadIcns(Volume->RootDir, IconFileName, 128);
673 } else if ((StrLen(PathOnly) == 0) && (Volume->VolIconImage != NULL)) {
674 Entry->me.Image = Volume->VolIconImage;
675 } // icon matched to loader or volume
676
677 Temp = FindLastDirName(LoaderPath);
678 MergeStrings(&OSIconName, Temp, L',');
679 FreePool(Temp);
680 if (OSIconName != NULL) {
681 ShortcutLetter = OSIconName[0];
682 }
683
684 // detect specific loaders
685 if (StriSubCmp(L"bzImage", LoaderPath) || StriSubCmp(L"vmlinuz", LoaderPath)) {
686 MergeStrings(&OSIconName, L"linux", L',');
687 Entry->OSType = 'L';
688 if (ShortcutLetter == 0)
689 ShortcutLetter = 'L';
690 Entry->LoadOptions = GetMainLinuxOptions(LoaderPath, Volume);
691 Entry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_LINUX;
692 } else if (StriSubCmp(L"refit", LoaderPath)) {
693 MergeStrings(&OSIconName, L"refit", L',');
694 Entry->OSType = 'R';
695 ShortcutLetter = 'R';
696 } else if (StriCmp(LoaderPath, MACOSX_LOADER_PATH) == 0) {
697 if (Volume->VolIconImage != NULL) { // custom icon file found
698 Entry->me.Image = Volume->VolIconImage;
699 }
700 MergeStrings(&OSIconName, L"mac", L',');
701 Entry->OSType = 'M';
702 ShortcutLetter = 'M';
703 Entry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_OSX;
704 } else if (StriCmp(FileName, L"diags.efi") == 0) {
705 MergeStrings(&OSIconName, L"hwtest", L',');
706 } else if (StriCmp(FileName, L"e.efi") == 0 || StriCmp(FileName, L"elilo.efi") == 0) {
707 MergeStrings(&OSIconName, L"elilo,linux", L',');
708 Entry->OSType = 'E';
709 if (ShortcutLetter == 0)
710 ShortcutLetter = 'L';
711 Entry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_ELILO;
712 } else if (StriSubCmp(L"grub", FileName)) {
713 Entry->OSType = 'G';
714 ShortcutLetter = 'G';
715 Entry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_GRUB;
716 } else if (StriCmp(FileName, L"cdboot.efi") == 0 ||
717 StriCmp(FileName, L"bootmgr.efi") == 0 ||
718 StriCmp(FileName, L"Bootmgfw.efi") == 0) {
719 MergeStrings(&OSIconName, L"win", L',');
720 Entry->OSType = 'W';
721 ShortcutLetter = 'W';
722 Entry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_WINDOWS;
723 } else if (StriCmp(FileName, L"xom.efi") == 0) {
724 MergeStrings(&OSIconName, L"xom,win", L',');
725 Entry->UseGraphicsMode = TRUE;
726 Entry->OSType = 'X';
727 ShortcutLetter = 'W';
728 Entry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_WINDOWS;
729 }
730
731 if ((ShortcutLetter >= 'a') && (ShortcutLetter <= 'z'))
732 ShortcutLetter = ShortcutLetter - 'a' + 'A'; // convert lowercase to uppercase
733 Entry->me.ShortcutLetter = ShortcutLetter;
734 if (Entry->me.Image == NULL)
735 Entry->me.Image = LoadOSIcon(OSIconName, L"unknown", FALSE);
736 if (PathOnly != NULL)
737 FreePool(PathOnly);
738 } // VOID SetLoaderDefaults()
739
740 // Add a specified EFI boot loader to the list, using automatic settings
741 // for icons, options, etc.
742 LOADER_ENTRY * AddLoaderEntry(IN CHAR16 *LoaderPath, IN CHAR16 *LoaderTitle, IN REFIT_VOLUME *Volume) {
743 LOADER_ENTRY *Entry;
744
745 CleanUpPathNameSlashes(LoaderPath);
746 Entry = InitializeLoaderEntry(NULL);
747 if (Entry != NULL) {
748 Entry->Title = StrDuplicate((LoaderTitle != NULL) ? LoaderTitle : LoaderPath);
749 Entry->me.Title = AllocateZeroPool(sizeof(CHAR16) * 256);
750 SPrint(Entry->me.Title, 255, L"Boot %s from %s", (LoaderTitle != NULL) ? LoaderTitle : LoaderPath, Volume->VolName);
751 Entry->me.Row = 0;
752 Entry->me.BadgeImage = Volume->VolBadgeImage;
753 if ((LoaderPath != NULL) && (LoaderPath[0] != L'\\')) {
754 Entry->LoaderPath = StrDuplicate(L"\\");
755 } else {
756 Entry->LoaderPath = NULL;
757 }
758 MergeStrings(&(Entry->LoaderPath), LoaderPath, 0);
759 Entry->VolName = Volume->VolName;
760 Entry->DevicePath = FileDevicePath(Volume->DeviceHandle, Entry->LoaderPath);
761 SetLoaderDefaults(Entry, LoaderPath, Volume);
762 GenerateSubScreen(Entry, Volume);
763 AddMenuEntry(&MainMenu, (REFIT_MENU_ENTRY *)Entry);
764 }
765
766 return(Entry);
767 } // LOADER_ENTRY * AddLoaderEntry()
768
769 // Returns -1 if (Time1 < Time2), +1 if (Time1 > Time2), or 0 if
770 // (Time1 == Time2). Precision is only to the nearest second; since
771 // this is used for sorting boot loader entries, differences smaller
772 // than this are likely to be meaningless (and unlikely!).
773 INTN TimeComp(EFI_TIME *Time1, EFI_TIME *Time2) {
774 INT64 Time1InSeconds, Time2InSeconds;
775
776 // Following values are overestimates; I'm assuming 31 days in every month.
777 // This is fine for the purpose of this function, which has a limited
778 // purpose.
779 Time1InSeconds = Time1->Second + (Time1->Minute * 60) + (Time1->Hour * 3600) + (Time1->Day * 86400) +
780 (Time1->Month * 2678400) + ((Time1->Year - 1998) * 32140800);
781 Time2InSeconds = Time2->Second + (Time2->Minute * 60) + (Time2->Hour * 3600) + (Time2->Day * 86400) +
782 (Time2->Month * 2678400) + ((Time2->Year - 1998) * 32140800);
783 if (Time1InSeconds < Time2InSeconds)
784 return (-1);
785 else if (Time1InSeconds > Time2InSeconds)
786 return (1);
787
788 return 0;
789 } // INTN TimeComp()
790
791 // Adds a loader list element, keeping it sorted by date. Returns the new
792 // first element (the one with the most recent date).
793 static struct LOADER_LIST * AddLoaderListEntry(struct LOADER_LIST *LoaderList, struct LOADER_LIST *NewEntry) {
794 struct LOADER_LIST *LatestEntry, *CurrentEntry, *PrevEntry = NULL;
795
796 LatestEntry = CurrentEntry = LoaderList;
797 if (LoaderList == NULL) {
798 LatestEntry = NewEntry;
799 } else {
800 while ((CurrentEntry != NULL) && (TimeComp(&(NewEntry->TimeStamp), &(CurrentEntry->TimeStamp)) < 0)) {
801 PrevEntry = CurrentEntry;
802 CurrentEntry = CurrentEntry->NextEntry;
803 } // while
804 NewEntry->NextEntry = CurrentEntry;
805 if (PrevEntry == NULL) {
806 LatestEntry = NewEntry;
807 } else {
808 PrevEntry->NextEntry = NewEntry;
809 } // if/else
810 } // if/else
811 return (LatestEntry);
812 } // static VOID AddLoaderListEntry()
813
814 // Delete the LOADER_LIST linked list
815 static VOID CleanUpLoaderList(struct LOADER_LIST *LoaderList) {
816 struct LOADER_LIST *Temp;
817
818 while (LoaderList != NULL) {
819 Temp = LoaderList;
820 LoaderList = LoaderList->NextEntry;
821 FreePool(Temp->FileName);
822 FreePool(Temp);
823 } // while
824 } // static VOID CleanUpLoaderList()
825
826 // Scan an individual directory for EFI boot loader files and, if found,
827 // add them to the list. Sorts the entries within the loader directory
828 // so that the most recent one appears first in the list.
829 static VOID ScanLoaderDir(IN REFIT_VOLUME *Volume, IN CHAR16 *Path, IN CHAR16 *Pattern)
830 {
831 EFI_STATUS Status;
832 REFIT_DIR_ITER DirIter;
833 EFI_FILE_INFO *DirEntry;
834 CHAR16 FileName[256], *Extension;
835 struct LOADER_LIST *LoaderList = NULL, *NewLoader;
836
837 if ((!SelfDirPath || !Path || ((StriCmp(Path, SelfDirPath) == 0) && Volume->DeviceHandle != SelfVolume->DeviceHandle) ||
838 (StriCmp(Path, SelfDirPath) != 0)) && (!IsIn(Path, GlobalConfig.DontScan))) {
839 // look through contents of the directory
840 DirIterOpen(Volume->RootDir, Path, &DirIter);
841 while (DirIterNext(&DirIter, 2, Pattern, &DirEntry)) {
842 Extension = FindExtension(DirEntry->FileName);
843 if (DirEntry->FileName[0] == '.' ||
844 StriCmp(DirEntry->FileName, L"TextMode.efi") == 0 ||
845 StriCmp(DirEntry->FileName, L"ebounce.efi") == 0 ||
846 StriCmp(DirEntry->FileName, L"GraphicsConsole.efi") == 0 ||
847 StriCmp(Extension, L".icns") == 0 ||
848 StriSubCmp(L"shell", DirEntry->FileName))
849 continue; // skip this
850
851 if (Path)
852 SPrint(FileName, 255, L"\\%s\\%s", Path, DirEntry->FileName);
853 else
854 SPrint(FileName, 255, L"\\%s", DirEntry->FileName);
855 CleanUpPathNameSlashes(FileName);
856 NewLoader = AllocateZeroPool(sizeof(struct LOADER_LIST));
857 if (NewLoader != NULL) {
858 NewLoader->FileName = StrDuplicate(FileName);
859 NewLoader->TimeStamp = DirEntry->ModificationTime;
860 LoaderList = AddLoaderListEntry(LoaderList, NewLoader);
861 } // if
862 FreePool(Extension);
863 } // while
864 NewLoader = LoaderList;
865 while (NewLoader != NULL) {
866 AddLoaderEntry(NewLoader->FileName, NULL, Volume);
867 NewLoader = NewLoader->NextEntry;
868 } // while
869 CleanUpLoaderList(LoaderList);
870 Status = DirIterClose(&DirIter);
871 if (Status != EFI_NOT_FOUND) {
872 if (Path)
873 SPrint(FileName, 255, L"while scanning the %s directory", Path);
874 else
875 StrCpy(FileName, L"while scanning the root directory");
876 CheckError(Status, FileName);
877 } // if (Status != EFI_NOT_FOUND)
878 } // if not scanning our own directory
879 } /* static VOID ScanLoaderDir() */
880
881 static VOID ScanEfiFiles(REFIT_VOLUME *Volume) {
882 EFI_STATUS Status;
883 REFIT_DIR_ITER EfiDirIter;
884 EFI_FILE_INFO *EfiDirEntry;
885 CHAR16 FileName[256], *Directory, *MatchPatterns;
886 UINTN i, Length;
887
888 MatchPatterns = StrDuplicate(LOADER_MATCH_PATTERNS);
889 if (GlobalConfig.ScanAllLinux)
890 MergeStrings(&MatchPatterns, LINUX_MATCH_PATTERNS, L',');
891
892 if ((Volume->RootDir != NULL) && (Volume->VolName != NULL)) {
893 // check for Mac OS X boot loader
894 if (!IsIn(L"System\\Library\\CoreServices", GlobalConfig.DontScan)) {
895 StrCpy(FileName, MACOSX_LOADER_PATH);
896 if (FileExists(Volume->RootDir, FileName)) {
897 AddLoaderEntry(FileName, L"Mac OS X", Volume);
898 }
899
900 // check for XOM
901 StrCpy(FileName, L"System\\Library\\CoreServices\\xom.efi");
902 if (FileExists(Volume->RootDir, FileName)) {
903 AddLoaderEntry(FileName, L"Windows XP (XoM)", Volume);
904 }
905 } // if Mac directory not in GlobalConfig.DontScan list
906
907 // check for Microsoft boot loader/menu
908 StrCpy(FileName, L"EFI\\Microsoft\\Boot\\Bootmgfw.efi");
909 if (FileExists(Volume->RootDir, FileName) && !IsIn(L"EFI\\Microsoft\\Boot", GlobalConfig.DontScan)) {
910 AddLoaderEntry(FileName, L"Microsoft EFI boot", Volume);
911 }
912
913 // scan the root directory for EFI executables
914 ScanLoaderDir(Volume, L"\\", MatchPatterns);
915
916 // scan subdirectories of the EFI directory (as per the standard)
917 DirIterOpen(Volume->RootDir, L"EFI", &EfiDirIter);
918 while (DirIterNext(&EfiDirIter, 1, NULL, &EfiDirEntry)) {
919 if (StriCmp(EfiDirEntry->FileName, L"tools") == 0 || EfiDirEntry->FileName[0] == '.')
920 continue; // skip this, doesn't contain boot loaders
921 SPrint(FileName, 255, L"EFI\\%s", EfiDirEntry->FileName);
922 ScanLoaderDir(Volume, FileName, MatchPatterns);
923 } // while()
924 Status = DirIterClose(&EfiDirIter);
925 if (Status != EFI_NOT_FOUND)
926 CheckError(Status, L"while scanning the EFI directory");
927
928 // Scan user-specified (or additional default) directories....
929 i = 0;
930 while ((Directory = FindCommaDelimited(GlobalConfig.AlsoScan, i++)) != NULL) {
931 CleanUpPathNameSlashes(Directory);
932 Length = StrLen(Directory);
933 if (Length > 0)
934 ScanLoaderDir(Volume, Directory, MatchPatterns);
935 FreePool(Directory);
936 } // while
937 } // if
938 } // static VOID ScanEfiFiles()
939
940 // Scan internal disks for valid EFI boot loaders....
941 static VOID ScanInternal(VOID) {
942 UINTN VolumeIndex;
943
944 for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
945 if (Volumes[VolumeIndex]->DiskKind == DISK_KIND_INTERNAL) {
946 ScanEfiFiles(Volumes[VolumeIndex]);
947 }
948 } // for
949 } // static VOID ScanInternal()
950
951 // Scan external disks for valid EFI boot loaders....
952 static VOID ScanExternal(VOID) {
953 UINTN VolumeIndex;
954
955 for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
956 if (Volumes[VolumeIndex]->DiskKind == DISK_KIND_EXTERNAL) {
957 ScanEfiFiles(Volumes[VolumeIndex]);
958 }
959 } // for
960 } // static VOID ScanExternal()
961
962 // Scan internal disks for valid EFI boot loaders....
963 static VOID ScanOptical(VOID) {
964 UINTN VolumeIndex;
965
966 for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
967 if (Volumes[VolumeIndex]->DiskKind == DISK_KIND_OPTICAL) {
968 ScanEfiFiles(Volumes[VolumeIndex]);
969 }
970 } // for
971 } // static VOID ScanOptical()
972
973 //
974 // legacy boot functions
975 //
976
977 static EFI_STATUS ActivateMbrPartition(IN EFI_BLOCK_IO *BlockIO, IN UINTN PartitionIndex)
978 {
979 EFI_STATUS Status;
980 UINT8 SectorBuffer[512];
981 MBR_PARTITION_INFO *MbrTable, *EMbrTable;
982 UINT32 ExtBase, ExtCurrent, NextExtCurrent;
983 UINTN LogicalPartitionIndex = 4;
984 UINTN i;
985 BOOLEAN HaveBootCode;
986
987 // read MBR
988 Status = refit_call5_wrapper(BlockIO->ReadBlocks, BlockIO, BlockIO->Media->MediaId, 0, 512, SectorBuffer);
989 if (EFI_ERROR(Status))
990 return Status;
991 if (*((UINT16 *)(SectorBuffer + 510)) != 0xaa55)
992 return EFI_NOT_FOUND; // safety measure #1
993
994 // add boot code if necessary
995 HaveBootCode = FALSE;
996 for (i = 0; i < MBR_BOOTCODE_SIZE; i++) {
997 if (SectorBuffer[i] != 0) {
998 HaveBootCode = TRUE;
999 break;
1000 }
1001 }
1002 if (!HaveBootCode) {
1003 // no boot code found in the MBR, add the syslinux MBR code
1004 SetMem(SectorBuffer, MBR_BOOTCODE_SIZE, 0);
1005 CopyMem(SectorBuffer, syslinux_mbr, SYSLINUX_MBR_SIZE);
1006 }
1007
1008 // set the partition active
1009 MbrTable = (MBR_PARTITION_INFO *)(SectorBuffer + 446);
1010 ExtBase = 0;
1011 for (i = 0; i < 4; i++) {
1012 if (MbrTable[i].Flags != 0x00 && MbrTable[i].Flags != 0x80)
1013 return EFI_NOT_FOUND; // safety measure #2
1014 if (i == PartitionIndex)
1015 MbrTable[i].Flags = 0x80;
1016 else if (PartitionIndex >= 4 && IS_EXTENDED_PART_TYPE(MbrTable[i].Type)) {
1017 MbrTable[i].Flags = 0x80;
1018 ExtBase = MbrTable[i].StartLBA;
1019 } else
1020 MbrTable[i].Flags = 0x00;
1021 }
1022
1023 // write MBR
1024 Status = refit_call5_wrapper(BlockIO->WriteBlocks, BlockIO, BlockIO->Media->MediaId, 0, 512, SectorBuffer);
1025 if (EFI_ERROR(Status))
1026 return Status;
1027
1028 if (PartitionIndex >= 4) {
1029 // we have to activate a logical partition, so walk the EMBR chain
1030
1031 // NOTE: ExtBase was set above while looking at the MBR table
1032 for (ExtCurrent = ExtBase; ExtCurrent; ExtCurrent = NextExtCurrent) {
1033 // read current EMBR
1034 Status = refit_call5_wrapper(BlockIO->ReadBlocks, BlockIO, BlockIO->Media->MediaId, ExtCurrent, 512, SectorBuffer);
1035 if (EFI_ERROR(Status))
1036 return Status;
1037 if (*((UINT16 *)(SectorBuffer + 510)) != 0xaa55)
1038 return EFI_NOT_FOUND; // safety measure #3
1039
1040 // scan EMBR, set appropriate partition active
1041 EMbrTable = (MBR_PARTITION_INFO *)(SectorBuffer + 446);
1042 NextExtCurrent = 0;
1043 for (i = 0; i < 4; i++) {
1044 if (EMbrTable[i].Flags != 0x00 && EMbrTable[i].Flags != 0x80)
1045 return EFI_NOT_FOUND; // safety measure #4
1046 if (EMbrTable[i].StartLBA == 0 || EMbrTable[i].Size == 0)
1047 break;
1048 if (IS_EXTENDED_PART_TYPE(EMbrTable[i].Type)) {
1049 // link to next EMBR
1050 NextExtCurrent = ExtBase + EMbrTable[i].StartLBA;
1051 EMbrTable[i].Flags = (PartitionIndex >= LogicalPartitionIndex) ? 0x80 : 0x00;
1052 break;
1053 } else {
1054 // logical partition
1055 EMbrTable[i].Flags = (PartitionIndex == LogicalPartitionIndex) ? 0x80 : 0x00;
1056 LogicalPartitionIndex++;
1057 }
1058 }
1059
1060 // write current EMBR
1061 Status = refit_call5_wrapper(BlockIO->WriteBlocks, BlockIO, BlockIO->Media->MediaId, ExtCurrent, 512, SectorBuffer);
1062 if (EFI_ERROR(Status))
1063 return Status;
1064
1065 if (PartitionIndex < LogicalPartitionIndex)
1066 break; // stop the loop, no need to touch further EMBRs
1067 }
1068
1069 }
1070
1071 return EFI_SUCCESS;
1072 } /* static EFI_STATUS ActivateMbrPartition() */
1073
1074 // early 2006 Core Duo / Core Solo models
1075 static UINT8 LegacyLoaderDevicePath1Data[] = {
1076 0x01, 0x03, 0x18, 0x00, 0x0B, 0x00, 0x00, 0x00,
1077 0x00, 0x00, 0xE0, 0xFF, 0x00, 0x00, 0x00, 0x00,
1078 0xFF, 0xFF, 0xF9, 0xFF, 0x00, 0x00, 0x00, 0x00,
1079 0x04, 0x06, 0x14, 0x00, 0xEB, 0x85, 0x05, 0x2B,
1080 0xB8, 0xD8, 0xA9, 0x49, 0x8B, 0x8C, 0xE2, 0x1B,
1081 0x01, 0xAE, 0xF2, 0xB7, 0x7F, 0xFF, 0x04, 0x00,
1082 };
1083 // mid-2006 Mac Pro (and probably other Core 2 models)
1084 static UINT8 LegacyLoaderDevicePath2Data[] = {
1085 0x01, 0x03, 0x18, 0x00, 0x0B, 0x00, 0x00, 0x00,
1086 0x00, 0x00, 0xE0, 0xFF, 0x00, 0x00, 0x00, 0x00,
1087 0xFF, 0xFF, 0xF7, 0xFF, 0x00, 0x00, 0x00, 0x00,
1088 0x04, 0x06, 0x14, 0x00, 0xEB, 0x85, 0x05, 0x2B,
1089 0xB8, 0xD8, 0xA9, 0x49, 0x8B, 0x8C, 0xE2, 0x1B,
1090 0x01, 0xAE, 0xF2, 0xB7, 0x7F, 0xFF, 0x04, 0x00,
1091 };
1092 // mid-2007 MBP ("Santa Rosa" based models)
1093 static UINT8 LegacyLoaderDevicePath3Data[] = {
1094 0x01, 0x03, 0x18, 0x00, 0x0B, 0x00, 0x00, 0x00,
1095 0x00, 0x00, 0xE0, 0xFF, 0x00, 0x00, 0x00, 0x00,
1096 0xFF, 0xFF, 0xF8, 0xFF, 0x00, 0x00, 0x00, 0x00,
1097 0x04, 0x06, 0x14, 0x00, 0xEB, 0x85, 0x05, 0x2B,
1098 0xB8, 0xD8, 0xA9, 0x49, 0x8B, 0x8C, 0xE2, 0x1B,
1099 0x01, 0xAE, 0xF2, 0xB7, 0x7F, 0xFF, 0x04, 0x00,
1100 };
1101 // early-2008 MBA
1102 static UINT8 LegacyLoaderDevicePath4Data[] = {
1103 0x01, 0x03, 0x18, 0x00, 0x0B, 0x00, 0x00, 0x00,
1104 0x00, 0x00, 0xC0, 0xFF, 0x00, 0x00, 0x00, 0x00,
1105 0xFF, 0xFF, 0xF8, 0xFF, 0x00, 0x00, 0x00, 0x00,
1106 0x04, 0x06, 0x14, 0x00, 0xEB, 0x85, 0x05, 0x2B,
1107 0xB8, 0xD8, 0xA9, 0x49, 0x8B, 0x8C, 0xE2, 0x1B,
1108 0x01, 0xAE, 0xF2, 0xB7, 0x7F, 0xFF, 0x04, 0x00,
1109 };
1110 // late-2008 MB/MBP (NVidia chipset)
1111 static UINT8 LegacyLoaderDevicePath5Data[] = {
1112 0x01, 0x03, 0x18, 0x00, 0x0B, 0x00, 0x00, 0x00,
1113 0x00, 0x40, 0xCB, 0xFF, 0x00, 0x00, 0x00, 0x00,
1114 0xFF, 0xBF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,
1115 0x04, 0x06, 0x14, 0x00, 0xEB, 0x85, 0x05, 0x2B,
1116 0xB8, 0xD8, 0xA9, 0x49, 0x8B, 0x8C, 0xE2, 0x1B,
1117 0x01, 0xAE, 0xF2, 0xB7, 0x7F, 0xFF, 0x04, 0x00,
1118 };
1119
1120 static EFI_DEVICE_PATH *LegacyLoaderList[] = {
1121 (EFI_DEVICE_PATH *)LegacyLoaderDevicePath1Data,
1122 (EFI_DEVICE_PATH *)LegacyLoaderDevicePath2Data,
1123 (EFI_DEVICE_PATH *)LegacyLoaderDevicePath3Data,
1124 (EFI_DEVICE_PATH *)LegacyLoaderDevicePath4Data,
1125 (EFI_DEVICE_PATH *)LegacyLoaderDevicePath5Data,
1126 NULL
1127 };
1128
1129 #define MAX_DISCOVERED_PATHS (16)
1130
1131 static VOID StartLegacy(IN LEGACY_ENTRY *Entry)
1132 {
1133 EFI_STATUS Status;
1134 EG_IMAGE *BootLogoImage;
1135 UINTN ErrorInStep = 0;
1136 EFI_DEVICE_PATH *DiscoveredPathList[MAX_DISCOVERED_PATHS];
1137
1138 BeginExternalScreen(TRUE, L"Booting Legacy OS (Mac mode)");
1139
1140 BootLogoImage = LoadOSIcon(Entry->Volume->OSIconName, L"legacy", TRUE);
1141 if (BootLogoImage != NULL)
1142 BltImageAlpha(BootLogoImage,
1143 (UGAWidth - BootLogoImage->Width ) >> 1,
1144 (UGAHeight - BootLogoImage->Height) >> 1,
1145 &StdBackgroundPixel);
1146
1147 if (Entry->Volume->IsMbrPartition) {
1148 ActivateMbrPartition(Entry->Volume->WholeDiskBlockIO, Entry->Volume->MbrPartitionIndex);
1149 }
1150
1151 ExtractLegacyLoaderPaths(DiscoveredPathList, MAX_DISCOVERED_PATHS, LegacyLoaderList);
1152
1153 Status = StartEFIImageList(DiscoveredPathList, Entry->LoadOptions, NULL, L"legacy loader", &ErrorInStep, TRUE);
1154 if (Status == EFI_NOT_FOUND) {
1155 if (ErrorInStep == 1) {
1156 Print(L"\nPlease make sure that you have the latest firmware update installed.\n");
1157 } else if (ErrorInStep == 3) {
1158 Print(L"\nThe firmware refused to boot from the selected volume. Note that external\n"
1159 L"hard drives are not well-supported by Apple's firmware for legacy OS booting.\n");
1160 }
1161 }
1162 FinishExternalScreen();
1163 } /* static VOID StartLegacy() */
1164
1165 // Start a device on a non-Mac using the EFI_LEGACY_BIOS_PROTOCOL
1166 #ifdef __MAKEWITH_TIANO
1167 static VOID StartLegacyUEFI(IN LEGACY_ENTRY *Entry)
1168 {
1169 BeginExternalScreen(TRUE, L"Booting Legacy OS (UEFI mode)");
1170
1171 BdsLibConnectDevicePath (Entry->BdsOption->DevicePath);
1172 BdsLibDoLegacyBoot(Entry->BdsOption);
1173
1174 // If we get here, it means that there was a failure....
1175 Print(L"Failure booting legacy (BIOS) OS.");
1176 PauseForKey();
1177 FinishExternalScreen();
1178 } // static VOID StartLegacyUEFI()
1179 #endif // __MAKEWITH_TIANO
1180
1181 static LEGACY_ENTRY * AddLegacyEntry(IN CHAR16 *LoaderTitle, IN REFIT_VOLUME *Volume)
1182 {
1183 LEGACY_ENTRY *Entry, *SubEntry;
1184 REFIT_MENU_SCREEN *SubScreen;
1185 CHAR16 *VolDesc;
1186 CHAR16 ShortcutLetter = 0;
1187
1188 if (LoaderTitle == NULL) {
1189 if (Volume->OSName != NULL) {
1190 LoaderTitle = Volume->OSName;
1191 if (LoaderTitle[0] == 'W' || LoaderTitle[0] == 'L')
1192 ShortcutLetter = LoaderTitle[0];
1193 } else
1194 LoaderTitle = L"Legacy OS";
1195 }
1196 if (Volume->VolName != NULL)
1197 VolDesc = Volume->VolName;
1198 else
1199 VolDesc = (Volume->DiskKind == DISK_KIND_OPTICAL) ? L"CD" : L"HD";
1200
1201 // prepare the menu entry
1202 Entry = AllocateZeroPool(sizeof(LEGACY_ENTRY));
1203 Entry->me.Title = AllocateZeroPool(256 * sizeof(CHAR16));
1204 SPrint(Entry->me.Title, 255, L"Boot %s from %s", LoaderTitle, VolDesc);
1205 Entry->me.Tag = TAG_LEGACY;
1206 Entry->me.Row = 0;
1207 Entry->me.ShortcutLetter = ShortcutLetter;
1208 Entry->me.Image = LoadOSIcon(Volume->OSIconName, L"legacy", FALSE);
1209 Entry->me.BadgeImage = Volume->VolBadgeImage;
1210 Entry->Volume = Volume;
1211 Entry->LoadOptions = (Volume->DiskKind == DISK_KIND_OPTICAL) ? L"CD" :
1212 ((Volume->DiskKind == DISK_KIND_EXTERNAL) ? L"USB" : L"HD");
1213 Entry->Enabled = TRUE;
1214
1215 // create the submenu
1216 SubScreen = AllocateZeroPool(sizeof(REFIT_MENU_SCREEN));
1217 SubScreen->Title = AllocateZeroPool(256 * sizeof(CHAR16));
1218 SPrint(SubScreen->Title, 255, L"Boot Options for %s on %s", LoaderTitle, VolDesc);
1219 SubScreen->TitleImage = Entry->me.Image;
1220
1221 // default entry
1222 SubEntry = AllocateZeroPool(sizeof(LEGACY_ENTRY));
1223 SubEntry->me.Title = AllocateZeroPool(256 * sizeof(CHAR16));
1224 SPrint(SubEntry->me.Title, 255, L"Boot %s", LoaderTitle);
1225 SubEntry->me.Tag = TAG_LEGACY;
1226 SubEntry->Volume = Entry->Volume;
1227 SubEntry->LoadOptions = Entry->LoadOptions;
1228 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
1229
1230 AddMenuEntry(SubScreen, &MenuEntryReturn);
1231 Entry->me.SubScreen = SubScreen;
1232 AddMenuEntry(&MainMenu, (REFIT_MENU_ENTRY *)Entry);
1233 return Entry;
1234 } /* static LEGACY_ENTRY * AddLegacyEntry() */
1235
1236
1237 #ifdef __MAKEWITH_TIANO
1238 // default volume badge icon based on disk kind
1239 static EG_IMAGE * GetDiskBadge(IN UINTN DiskType) {
1240 EG_IMAGE * Badge = NULL;
1241
1242 switch (DiskType) {
1243 case BBS_HARDDISK:
1244 Badge = BuiltinIcon(BUILTIN_ICON_VOL_INTERNAL);
1245 break;
1246 case BBS_USB:
1247 Badge = BuiltinIcon(BUILTIN_ICON_VOL_EXTERNAL);
1248 break;
1249 case BBS_CDROM:
1250 Badge = BuiltinIcon(BUILTIN_ICON_VOL_OPTICAL);
1251 break;
1252 } // switch()
1253 return Badge;
1254 } // static EG_IMAGE * GetDiskBadge()
1255
1256 /**
1257 Create a rEFInd boot option from a Legacy BIOS protocol option.
1258 */
1259 static LEGACY_ENTRY * AddLegacyEntryUEFI(BDS_COMMON_OPTION *BdsOption, IN UINT16 DiskType)
1260 {
1261 LEGACY_ENTRY *Entry, *SubEntry;
1262 REFIT_MENU_SCREEN *SubScreen;
1263 CHAR16 ShortcutLetter = 0;
1264 CHAR16 *LegacyDescription = BdsOption->Description;
1265
1266 // prepare the menu entry
1267 Entry = AllocateZeroPool(sizeof(LEGACY_ENTRY));
1268 Entry->me.Title = AllocateZeroPool(256 * sizeof(CHAR16));
1269 SPrint(Entry->me.Title, 255, L"Boot legacy target %s", LegacyDescription);
1270 Entry->me.Tag = TAG_LEGACY_NON_MAC;
1271 Entry->me.Row = 0;
1272 Entry->me.ShortcutLetter = ShortcutLetter;
1273 Entry->me.Image = LoadOSIcon(L"legacy", L"legacy", TRUE);
1274 Entry->LoadOptions = (DiskType == BBS_CDROM) ? L"CD" :
1275 ((DiskType == BBS_USB) ? L"USB" : L"HD");
1276 Entry->me.BadgeImage = GetDiskBadge(DiskType);
1277 // Entry->me.BadgeImage = Volume->VolBadgeImage;
1278 Entry->BdsOption = BdsOption;
1279 Entry->Enabled = TRUE;
1280
1281 // create the submenu
1282 SubScreen = AllocateZeroPool(sizeof(REFIT_MENU_SCREEN));
1283 SubScreen->Title = AllocateZeroPool(256 * sizeof(CHAR16));
1284 SPrint(SubScreen->Title, 255, L"No boot options for legacy target");
1285 SubScreen->TitleImage = Entry->me.Image;
1286
1287 // default entry
1288 SubEntry = AllocateZeroPool(sizeof(LEGACY_ENTRY));
1289 SubEntry->me.Title = AllocateZeroPool(256 * sizeof(CHAR16));
1290 SPrint(SubEntry->me.Title, 255, L"Boot %s", LegacyDescription);
1291 SubEntry->me.Tag = TAG_LEGACY_NON_MAC;
1292 Entry->BdsOption = BdsOption;
1293 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
1294
1295 AddMenuEntry(SubScreen, &MenuEntryReturn);
1296 Entry->me.SubScreen = SubScreen;
1297 AddMenuEntry(&MainMenu, (REFIT_MENU_ENTRY *)Entry);
1298 return Entry;
1299 } /* static LEGACY_ENTRY * AddLegacyEntryUEFI() */
1300
1301 /**
1302 Scan for legacy BIOS targets on machines that implement EFI_LEGACY_BIOS_PROTOCOL.
1303 In testing, protocol has not been implemented on Macs but has been
1304 implemented on several Dell PCs and an ASUS motherboard.
1305 Restricts output to disks of the specified DiskType.
1306 */
1307 static VOID ScanLegacyUEFI(IN UINTN DiskType)
1308 {
1309 EFI_STATUS Status;
1310 EFI_LEGACY_BIOS_PROTOCOL *LegacyBios;
1311 UINT16 *BootOrder = NULL;
1312 UINTN Index = 0;
1313 UINT16 BootOption[10];
1314 UINTN BootOrderSize = 0;
1315 CHAR16 Buffer[20];
1316 BDS_COMMON_OPTION *BdsOption;
1317 LIST_ENTRY TempList;
1318 BBS_BBS_DEVICE_PATH * BbsDevicePath = NULL;
1319 // REFIT_VOLUME Volume;
1320
1321 InitializeListHead (&TempList);
1322 ZeroMem (Buffer, sizeof (Buffer));
1323
1324 // If LegacyBios protocol is not implemented on this platform, then
1325 //we do not support this type of legacy boot on this machine.
1326 Status = gBS->LocateProtocol(&gEfiLegacyBootProtocolGuid, NULL, (VOID **) &LegacyBios);
1327 if (EFI_ERROR (Status))
1328 return;
1329
1330 // Grab the boot order
1331 BootOrder = BdsLibGetVariableAndSize(L"BootOrder", &gEfiGlobalVariableGuid, &BootOrderSize);
1332 if (BootOrder == NULL) {
1333 BootOrderSize = 0;
1334 }
1335
1336 Index = 0;
1337 while (Index < BootOrderSize / sizeof (UINT16))
1338 {
1339 // Grab each boot option variable from the boot order, and convert
1340 // the variable into a BDS boot option
1341 UnicodeSPrint (BootOption, sizeof (BootOption), L"Boot%04x", BootOrder[Index]);
1342 BdsOption = BdsLibVariableToOption (&TempList, BootOption);
1343
1344 if (BdsOption != NULL) {
1345 //Print(L"Option description = '%s'\n", BdsOption->Description);
1346 BbsDevicePath = (BBS_BBS_DEVICE_PATH *)BdsOption->DevicePath;
1347
1348 // Only add the entry if it is of a supported type (e.g. USB, HD)
1349 // See BdsHelper.c for currently supported types
1350 if (BbsDevicePath->DeviceType == DiskType) {
1351 AddLegacyEntryUEFI(BdsOption, BbsDevicePath->DeviceType);
1352 }
1353 }
1354 Index++;
1355 }
1356 } /* static VOID ScanLegacyUEFI() */
1357 #else
1358 static VOID ScanLegacyUEFI(IN UINTN DiskType){}
1359 #endif // __MAKEWITH_TIANO
1360
1361 static VOID ScanLegacyVolume(REFIT_VOLUME *Volume, UINTN VolumeIndex) {
1362 UINTN VolumeIndex2;
1363 BOOLEAN ShowVolume, HideIfOthersFound;
1364
1365 ShowVolume = FALSE;
1366 HideIfOthersFound = FALSE;
1367 if (Volume->IsAppleLegacy) {
1368 ShowVolume = TRUE;
1369 HideIfOthersFound = TRUE;
1370 } else if (Volume->HasBootCode) {
1371 ShowVolume = TRUE;
1372 if (Volume->BlockIO == Volume->WholeDiskBlockIO &&
1373 Volume->BlockIOOffset == 0 &&
1374 Volume->OSName == NULL)
1375 // this is a whole disk (MBR) entry; hide if we have entries for partitions
1376 HideIfOthersFound = TRUE;
1377 }
1378 if (HideIfOthersFound) {
1379 // check for other bootable entries on the same disk
1380 for (VolumeIndex2 = 0; VolumeIndex2 < VolumesCount; VolumeIndex2++) {
1381 if (VolumeIndex2 != VolumeIndex && Volumes[VolumeIndex2]->HasBootCode &&
1382 Volumes[VolumeIndex2]->WholeDiskBlockIO == Volume->WholeDiskBlockIO)
1383 ShowVolume = FALSE;
1384 }
1385 }
1386
1387 if (ShowVolume)
1388 AddLegacyEntry(NULL, Volume);
1389 } // static VOID ScanLegacyVolume()
1390
1391 // Scan attached optical discs for legacy (BIOS) boot code
1392 // and add anything found to the list....
1393 static VOID ScanLegacyDisc(VOID)
1394 {
1395 UINTN VolumeIndex;
1396 REFIT_VOLUME *Volume;
1397
1398 if (GlobalConfig.LegacyType == LEGACY_TYPE_MAC) {
1399 for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
1400 Volume = Volumes[VolumeIndex];
1401 if (Volume->DiskKind == DISK_KIND_OPTICAL)
1402 ScanLegacyVolume(Volume, VolumeIndex);
1403 } // for
1404 } else if (GlobalConfig.LegacyType == LEGACY_TYPE_UEFI) {
1405 ScanLegacyUEFI(BBS_CDROM);
1406 }
1407 } /* static VOID ScanLegacyDisc() */
1408
1409 // Scan internal hard disks for legacy (BIOS) boot code
1410 // and add anything found to the list....
1411 static VOID ScanLegacyInternal(VOID)
1412 {
1413 UINTN VolumeIndex;
1414 REFIT_VOLUME *Volume;
1415
1416 if (GlobalConfig.LegacyType == LEGACY_TYPE_MAC) {
1417 for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
1418 Volume = Volumes[VolumeIndex];
1419 if (Volume->DiskKind == DISK_KIND_INTERNAL)
1420 ScanLegacyVolume(Volume, VolumeIndex);
1421 } // for
1422 } else if (GlobalConfig.LegacyType == LEGACY_TYPE_UEFI) {
1423 ScanLegacyUEFI(BBS_HARDDISK);
1424 }
1425 } /* static VOID ScanLegacyInternal() */
1426
1427 // Scan external disks for legacy (BIOS) boot code
1428 // and add anything found to the list....
1429 static VOID ScanLegacyExternal(VOID)
1430 {
1431 UINTN VolumeIndex;
1432 REFIT_VOLUME *Volume;
1433
1434 if (GlobalConfig.LegacyType == LEGACY_TYPE_MAC) {
1435 for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
1436 Volume = Volumes[VolumeIndex];
1437 if (Volume->DiskKind == DISK_KIND_EXTERNAL)
1438 ScanLegacyVolume(Volume, VolumeIndex);
1439 } // for
1440 } else if (GlobalConfig.LegacyType == LEGACY_TYPE_UEFI) {
1441 ScanLegacyUEFI(BBS_USB);
1442 }
1443 } /* static VOID ScanLegacyExternal() */
1444
1445 //
1446 // pre-boot tool functions
1447 //
1448
1449 static VOID StartTool(IN LOADER_ENTRY *Entry)
1450 {
1451 BeginExternalScreen(Entry->UseGraphicsMode, Entry->me.Title + 6); // assumes "Start <title>" as assigned below
1452 StartEFIImage(Entry->DevicePath, Entry->LoadOptions, Basename(Entry->LoaderPath),
1453 Basename(Entry->LoaderPath), NULL, TRUE);
1454 FinishExternalScreen();
1455 } /* static VOID StartTool() */
1456
1457 static LOADER_ENTRY * AddToolEntry(IN CHAR16 *LoaderPath, IN CHAR16 *LoaderTitle, IN EG_IMAGE *Image,
1458 IN CHAR16 ShortcutLetter, IN BOOLEAN UseGraphicsMode)
1459 {
1460 LOADER_ENTRY *Entry;
1461 CHAR16 *TitleStr = NULL;
1462
1463 Entry = AllocateZeroPool(sizeof(LOADER_ENTRY));
1464
1465 MergeStrings(&TitleStr, L"Start ", 0);
1466 MergeStrings(&TitleStr, LoaderTitle, 0);
1467 Entry->me.Title = TitleStr;
1468 Entry->me.Tag = TAG_TOOL;
1469 Entry->me.Row = 1;
1470 Entry->me.ShortcutLetter = ShortcutLetter;
1471 Entry->me.Image = Image;
1472 Entry->LoaderPath = StrDuplicate(LoaderPath);
1473 Entry->DevicePath = FileDevicePath(SelfLoadedImage->DeviceHandle, Entry->LoaderPath);
1474 Entry->UseGraphicsMode = UseGraphicsMode;
1475
1476 AddMenuEntry(&MainMenu, (REFIT_MENU_ENTRY *)Entry);
1477 return Entry;
1478 } /* static LOADER_ENTRY * AddToolEntry() */
1479
1480 //
1481 // pre-boot driver functions
1482 //
1483
1484 static UINTN ScanDriverDir(IN CHAR16 *Path)
1485 {
1486 EFI_STATUS Status;
1487 REFIT_DIR_ITER DirIter;
1488 UINTN NumFound = 0;
1489 EFI_FILE_INFO *DirEntry;
1490 CHAR16 FileName[256];
1491
1492 CleanUpPathNameSlashes(Path);
1493 // look through contents of the directory
1494 DirIterOpen(SelfRootDir, Path, &DirIter);
1495 while (DirIterNext(&DirIter, 2, LOADER_MATCH_PATTERNS, &DirEntry)) {
1496 if (DirEntry->FileName[0] == '.')
1497 continue; // skip this
1498
1499 SPrint(FileName, 255, L"%s\\%s", Path, DirEntry->FileName);
1500 NumFound++;
1501 Status = StartEFIImage(FileDevicePath(SelfLoadedImage->DeviceHandle, FileName),
1502 L"", DirEntry->FileName, DirEntry->FileName, NULL, FALSE);
1503 }
1504 Status = DirIterClose(&DirIter);
1505 if (Status != EFI_NOT_FOUND) {
1506 SPrint(FileName, 255, L"while scanning the %s directory", Path);
1507 CheckError(Status, FileName);
1508 }
1509 return (NumFound);
1510 }
1511
1512 #ifdef __MAKEWITH_GNUEFI
1513 static EFI_STATUS ConnectAllDriversToAllControllers(VOID)
1514 {
1515 EFI_STATUS Status;
1516 UINTN AllHandleCount;
1517 EFI_HANDLE *AllHandleBuffer;
1518 UINTN Index;
1519 UINTN HandleCount;
1520 EFI_HANDLE *HandleBuffer;
1521 UINT32 *HandleType;
1522 UINTN HandleIndex;
1523 BOOLEAN Parent;
1524 BOOLEAN Device;
1525
1526 Status = LibLocateHandle(AllHandles,
1527 NULL,
1528 NULL,
1529 &AllHandleCount,
1530 &AllHandleBuffer);
1531 if (EFI_ERROR(Status))
1532 return Status;
1533
1534 for (Index = 0; Index < AllHandleCount; Index++) {
1535 //
1536 // Scan the handle database
1537 //
1538 Status = LibScanHandleDatabase(NULL,
1539 NULL,
1540 AllHandleBuffer[Index],
1541 NULL,
1542 &HandleCount,
1543 &HandleBuffer,
1544 &HandleType);
1545 if (EFI_ERROR (Status))
1546 goto Done;
1547
1548 Device = TRUE;
1549 if (HandleType[Index] & EFI_HANDLE_TYPE_DRIVER_BINDING_HANDLE)
1550 Device = FALSE;
1551 if (HandleType[Index] & EFI_HANDLE_TYPE_IMAGE_HANDLE)
1552 Device = FALSE;
1553
1554 if (Device) {
1555 Parent = FALSE;
1556 for (HandleIndex = 0; HandleIndex < HandleCount; HandleIndex++) {
1557 if (HandleType[HandleIndex] & EFI_HANDLE_TYPE_PARENT_HANDLE)
1558 Parent = TRUE;
1559 } // for
1560
1561 if (!Parent) {
1562 if (HandleType[Index] & EFI_HANDLE_TYPE_DEVICE_HANDLE) {
1563 Status = refit_call4_wrapper(BS->ConnectController,
1564 AllHandleBuffer[Index],
1565 NULL,
1566 NULL,
1567 TRUE);
1568 }
1569 }
1570 }
1571
1572 FreePool (HandleBuffer);
1573 FreePool (HandleType);
1574 }
1575
1576 Done:
1577 FreePool (AllHandleBuffer);
1578 return Status;
1579 } /* EFI_STATUS ConnectAllDriversToAllControllers() */
1580 #else
1581 static EFI_STATUS ConnectAllDriversToAllControllers(VOID) {
1582 BdsLibConnectAllDriversToAllControllers();
1583 return 0;
1584 }
1585 #endif
1586
1587 // Load all EFI drivers from rEFInd's "drivers" subdirectory and from the
1588 // directories specified by the user in the "scan_driver_dirs" configuration
1589 // file line.
1590 static VOID LoadDrivers(VOID)
1591 {
1592 CHAR16 *Directory, *SelfDirectory;
1593 UINTN i = 0, Length, NumFound = 0;
1594
1595 // load drivers from the subdirectories of rEFInd's home directory specified
1596 // in the DRIVER_DIRS constant.
1597 while ((Directory = FindCommaDelimited(DRIVER_DIRS, i++)) != NULL) {
1598 SelfDirectory = StrDuplicate(SelfDirPath);
1599 CleanUpPathNameSlashes(SelfDirectory);
1600 MergeStrings(&SelfDirectory, Directory, L'\\');
1601 NumFound += ScanDriverDir(SelfDirectory);
1602 FreePool(Directory);
1603 FreePool(SelfDirectory);
1604 }
1605
1606 // Scan additional user-specified driver directories....
1607 i = 0;
1608 while ((Directory = FindCommaDelimited(GlobalConfig.DriverDirs, i++)) != NULL) {
1609 CleanUpPathNameSlashes(Directory);
1610 Length = StrLen(Directory);
1611 if (Length > 0)
1612 NumFound += ScanDriverDir(Directory);
1613 FreePool(Directory);
1614 } // while
1615
1616 // connect all devices
1617 if (NumFound > 0)
1618 ConnectAllDriversToAllControllers();
1619 } /* static VOID LoadDrivers() */
1620
1621 // Determine what (if any) type of legacy (BIOS) boot support is available
1622 static VOID FindLegacyBootType(VOID) {
1623 #ifdef __MAKEWITH_TIANO
1624 EFI_STATUS Status;
1625 EFI_LEGACY_BIOS_PROTOCOL *LegacyBios;
1626 #endif
1627
1628 GlobalConfig.LegacyType = LEGACY_TYPE_NONE;
1629
1630 // UEFI-style legacy BIOS support is available only with the TianoCore EDK2
1631 // build environment, and then only with some implementations....
1632 #ifdef __MAKEWITH_TIANO
1633 Status = gBS->LocateProtocol (&gEfiLegacyBootProtocolGuid, NULL, (VOID **) &LegacyBios);
1634 if (!EFI_ERROR (Status))
1635 GlobalConfig.LegacyType = LEGACY_TYPE_UEFI;
1636 #endif
1637
1638 // Macs have their own system. If the firmware vendor code contains the
1639 // string "Apple", assume it's available. Note that this overrides the
1640 // UEFI type, and might yield false positives if the vendor string
1641 // contains "Apple" as part of something bigger, so this isn't 100%
1642 // perfect.
1643 if (StriSubCmp(L"Apple", ST->FirmwareVendor))
1644 GlobalConfig.LegacyType = LEGACY_TYPE_MAC;
1645 } // static VOID FindLegacyBootType
1646
1647 // Locates boot loaders. NOTE: This assumes that GlobalConfig.LegacyType is set correctly.
1648 static VOID ScanForBootloaders(VOID) {
1649 UINTN i;
1650
1651 ScanVolumes();
1652
1653 // scan for loaders and tools, add them to the menu
1654 for (i = 0; i < NUM_SCAN_OPTIONS; i++) {
1655 switch(GlobalConfig.ScanFor[i]) {
1656 case 'c': case 'C':
1657 ScanLegacyDisc();
1658 break;
1659 case 'h': case 'H':
1660 ScanLegacyInternal();
1661 break;
1662 case 'b': case 'B':
1663 ScanLegacyExternal();
1664 break;
1665 case 'm': case 'M':
1666 ScanUserConfigured();
1667 break;
1668 case 'e': case 'E':
1669 ScanExternal();
1670 break;
1671 case 'i': case 'I':
1672 ScanInternal();
1673 break;
1674 case 'o': case 'O':
1675 ScanOptical();
1676 break;
1677 } // switch()
1678 } // for
1679
1680 // assign shortcut keys
1681 for (i = 0; i < MainMenu.EntryCount && MainMenu.Entries[i]->Row == 0 && i < 9; i++)
1682 MainMenu.Entries[i]->ShortcutDigit = (CHAR16)('1' + i);
1683
1684 // wait for user ACK when there were errors
1685 FinishTextScreen(FALSE);
1686 } // static VOID ScanForBootloaders()
1687
1688 // Add the second-row tags containing built-in and external tools (EFI shell,
1689 // reboot, etc.)
1690 static VOID ScanForTools(VOID) {
1691 CHAR16 *FileName = NULL;
1692 REFIT_MENU_ENTRY *TempMenuEntry;
1693 UINTN i, j;
1694
1695 for (i = 0; i < NUM_TOOLS; i++) {
1696 switch(GlobalConfig.ShowTools[i]) {
1697 case TAG_SHUTDOWN:
1698 TempMenuEntry = CopyMenuEntry(&MenuEntryShutdown);
1699 TempMenuEntry->Image = BuiltinIcon(BUILTIN_ICON_FUNC_SHUTDOWN);
1700 AddMenuEntry(&MainMenu, TempMenuEntry);
1701 break;
1702 case TAG_REBOOT:
1703 TempMenuEntry = CopyMenuEntry(&MenuEntryReset);
1704 TempMenuEntry->Image = BuiltinIcon(BUILTIN_ICON_FUNC_RESET);
1705 AddMenuEntry(&MainMenu, TempMenuEntry);
1706 break;
1707 case TAG_ABOUT:
1708 TempMenuEntry = CopyMenuEntry(&MenuEntryAbout);
1709 TempMenuEntry->Image = BuiltinIcon(BUILTIN_ICON_FUNC_ABOUT);
1710 AddMenuEntry(&MainMenu, TempMenuEntry);
1711 break;
1712 case TAG_EXIT:
1713 TempMenuEntry = CopyMenuEntry(&MenuEntryExit);
1714 TempMenuEntry->Image = BuiltinIcon(BUILTIN_ICON_FUNC_EXIT);
1715 AddMenuEntry(&MainMenu, TempMenuEntry);
1716 break;
1717 case TAG_SHELL:
1718 j = 0;
1719 while ((FileName = FindCommaDelimited(SHELL_NAMES, j++)) != NULL) {
1720 if (FileExists(SelfRootDir, FileName)) {
1721 AddToolEntry(FileName, L"EFI Shell", BuiltinIcon(BUILTIN_ICON_TOOL_SHELL), 'S', FALSE);
1722 }
1723 } // while
1724 break;
1725 case TAG_GPTSYNC:
1726 MergeStrings(&FileName, L"\\efi\\tools\\gptsync.efi", 0);
1727 if (FileExists(SelfRootDir, FileName)) {
1728 AddToolEntry(FileName, L"Make Hybrid MBR", BuiltinIcon(BUILTIN_ICON_TOOL_PART), 'P', FALSE);
1729 }
1730 break;
1731 } // switch()
1732 if (FileName != NULL) {
1733 FreePool(FileName);
1734 FileName = NULL;
1735 }
1736 } // for
1737 } // static VOID ScanForTools
1738
1739 // Rescan for boot loaders
1740 VOID RescanAll(VOID) {
1741 EG_PIXEL BGColor;
1742
1743 BGColor.b = 255;
1744 BGColor.g = 175;
1745 BGColor.r = 100;
1746 BGColor.a = 0;
1747 egDisplayMessage(L"Scanning for new boot loaders; please wait....", &BGColor);
1748 FreeList((VOID ***) &(MainMenu.Entries), &MainMenu.EntryCount);
1749 MainMenu.Entries = NULL;
1750 MainMenu.EntryCount = 0;
1751 ReadConfig();
1752 ConnectAllDriversToAllControllers();
1753 ScanForBootloaders();
1754 ScanForTools();
1755 SetupScreen();
1756 } // VOID RescanAll()
1757
1758 #ifndef __MAKEWITH_GNUEFI
1759
1760 // Minimal initialization function
1761 static VOID InitializeLib(IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE *SystemTable) {
1762 gST = SystemTable;
1763 // gImageHandle = ImageHandle;
1764 gBS = SystemTable->BootServices;
1765 // gRS = SystemTable->RuntimeServices;
1766 gRT = SystemTable->RuntimeServices; // Some BDS functions need gRT to be set
1767 EfiGetSystemConfigurationTable (&gEfiDxeServicesTableGuid, (VOID **) &gDS);
1768
1769 InitializeConsoleSim();
1770 }
1771
1772 #endif
1773
1774 //
1775 // main entry point
1776 //
1777 EFI_STATUS
1778 EFIAPI
1779 efi_main (IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE *SystemTable)
1780 {
1781 EFI_STATUS Status;
1782 BOOLEAN MainLoopRunning = TRUE;
1783 REFIT_MENU_ENTRY *ChosenEntry;
1784 UINTN MenuExit, i;
1785 CHAR16 *Selection;
1786 EG_PIXEL BGColor;
1787
1788 // bootstrap
1789 InitializeLib(ImageHandle, SystemTable);
1790 InitScreen();
1791 Status = InitRefitLib(ImageHandle);
1792 if (EFI_ERROR(Status))
1793 return Status;
1794
1795 // read configuration
1796 CopyMem(GlobalConfig.ScanFor, "ieom ", NUM_SCAN_OPTIONS);
1797 ReadConfig();
1798 MainMenu.TimeoutSeconds = GlobalConfig.Timeout;
1799
1800 // disable EFI watchdog timer
1801 refit_call4_wrapper(BS->SetWatchdogTimer, 0x0000, 0x0000, 0x0000, NULL);
1802
1803 // further bootstrap (now with config available)
1804 FindLegacyBootType();
1805 SetupScreen();
1806 if (GlobalConfig.ScanDelay > 0) {
1807 BGColor.b = 255;
1808 BGColor.g = 175;
1809 BGColor.r = 100;
1810 BGColor.a = 0;
1811 egDisplayMessage(L"Pausing before disk scan; please wait....", &BGColor);
1812 for (i = 0; i < GlobalConfig.ScanDelay; i++)
1813 refit_call1_wrapper(BS->Stall, 1000000);
1814 } // if
1815 LoadDrivers();
1816 ScanForBootloaders();
1817 ScanForTools();
1818
1819 Selection = StrDuplicate(GlobalConfig.DefaultSelection);
1820 while (MainLoopRunning) {
1821 MenuExit = RunMainMenu(&MainMenu, Selection, &ChosenEntry);
1822
1823 // The Escape key triggers a re-scan operation....
1824 if (MenuExit == MENU_EXIT_ESCAPE) {
1825 RescanAll();
1826 continue;
1827 }
1828
1829 switch (ChosenEntry->Tag) {
1830
1831 case TAG_REBOOT: // Reboot
1832 TerminateScreen();
1833 refit_call4_wrapper(RT->ResetSystem, EfiResetCold, EFI_SUCCESS, 0, NULL);
1834 MainLoopRunning = FALSE; // just in case we get this far
1835 break;
1836
1837 case TAG_SHUTDOWN: // Shut Down
1838 TerminateScreen();
1839 refit_call4_wrapper(RT->ResetSystem, EfiResetShutdown, EFI_SUCCESS, 0, NULL);
1840 MainLoopRunning = FALSE; // just in case we get this far
1841 break;
1842
1843 case TAG_ABOUT: // About rEFInd
1844 AboutrEFInd();
1845 break;
1846
1847 case TAG_LOADER: // Boot OS via .EFI loader
1848 StartLoader((LOADER_ENTRY *)ChosenEntry);
1849 break;
1850
1851 case TAG_LEGACY: // Boot legacy OS
1852 StartLegacy((LEGACY_ENTRY *)ChosenEntry);
1853 break;
1854
1855 #ifdef __MAKEWITH_TIANO
1856 case TAG_LEGACY_NON_MAC: // Boot a legacy OS on a non-Mac
1857 StartLegacyUEFI((LEGACY_ENTRY *)ChosenEntry);
1858 break;
1859 #endif // __MAKEWITH_TIANO
1860
1861 case TAG_TOOL: // Start a EFI tool
1862 StartTool((LOADER_ENTRY *)ChosenEntry);
1863 break;
1864
1865 case TAG_EXIT: // Terminate rEFInd
1866 BeginTextScreen(L" ");
1867 return EFI_SUCCESS;
1868 break;
1869
1870 } // switch()
1871 FreePool(Selection);
1872 Selection = StrDuplicate(ChosenEntry->Title);
1873 } // while()
1874
1875 // If we end up here, things have gone wrong. Try to reboot, and if that
1876 // fails, go into an endless loop.
1877 refit_call4_wrapper(RT->ResetSystem, EfiResetCold, EFI_SUCCESS, 0, NULL);
1878 EndlessIdleLoop();
1879
1880 return EFI_SUCCESS;
1881 } /* efi_main() */