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