]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/BdsDxe/BdsEntry.c
MdeModulePkg: Use new added Perf macros
[mirror_edk2.git] / MdeModulePkg / Universal / BdsDxe / BdsEntry.c
CommitLineData
f4cd24da
RN
1/** @file\r
2 This module produce main entry for BDS phase - BdsEntry.\r
3 When this module was dispatched by DxeCore, gEfiBdsArchProtocolGuid will be installed\r
4 which contains interface of BdsEntry.\r
5 After DxeCore finish DXE phase, gEfiBdsArchProtocolGuid->BdsEntry will be invoked\r
6 to enter BDS phase.\r
7\r
9f0d7651 8Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.<BR>\r
e58f1ae5
SW
9(C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>\r
10(C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR>\r
f4cd24da
RN
11This program and the accompanying materials\r
12are licensed and made available under the terms and conditions of the BSD License\r
13which accompanies this distribution. The full text of the license may be found at\r
14http://opensource.org/licenses/bsd-license.php\r
15\r
16THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
17WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
18\r
19**/\r
20\r
21#include "Bds.h"\r
22#include "Language.h"\r
23#include "HwErrRecSupport.h"\r
24\r
25#define SET_BOOT_OPTION_SUPPORT_KEY_COUNT(a, c) { \\r
26 (a) = ((a) & ~EFI_BOOT_OPTION_SUPPORT_COUNT) | (((c) << LowBitSet32 (EFI_BOOT_OPTION_SUPPORT_COUNT)) & EFI_BOOT_OPTION_SUPPORT_COUNT); \\r
27 }\r
28\r
29///\r
30/// BDS arch protocol instance initial value.\r
31///\r
32EFI_BDS_ARCH_PROTOCOL gBds = {\r
33 BdsEntry\r
34};\r
35\r
36//\r
37// gConnectConInEvent - Event which is signaled when ConIn connection is required\r
38//\r
39EFI_EVENT gConnectConInEvent = NULL;\r
40\r
41///\r
42/// The read-only variables defined in UEFI Spec.\r
43///\r
44CHAR16 *mReadOnlyVariables[] = {\r
45 EFI_PLATFORM_LANG_CODES_VARIABLE_NAME,\r
46 EFI_LANG_CODES_VARIABLE_NAME,\r
47 EFI_BOOT_OPTION_SUPPORT_VARIABLE_NAME,\r
48 EFI_HW_ERR_REC_SUPPORT_VARIABLE_NAME,\r
49 EFI_OS_INDICATIONS_SUPPORT_VARIABLE_NAME\r
50 };\r
51\r
1634214d
RN
52CHAR16 *mBdsLoadOptionName[] = {\r
53 L"Driver",\r
54 L"SysPrep",\r
68456d8a
RN
55 L"Boot",\r
56 L"PlatformRecovery"\r
1634214d
RN
57};\r
58\r
f4cd24da
RN
59/**\r
60 Event to Connect ConIn.\r
61\r
62 @param Event Event whose notification function is being invoked.\r
63 @param Context Pointer to the notification function's context,\r
64 which is implementation-dependent.\r
65\r
66**/\r
67VOID\r
68EFIAPI\r
69BdsDxeOnConnectConInCallBack (\r
70 IN EFI_EVENT Event,\r
71 IN VOID *Context\r
72 )\r
73{\r
74 EFI_STATUS Status;\r
75\r
76 //\r
77 // When Osloader call ReadKeyStroke to signal this event\r
78 // no driver dependency is assumed existing. So use a non-dispatch version\r
79 //\r
80 Status = EfiBootManagerConnectConsoleVariable (ConIn);\r
81 if (EFI_ERROR (Status)) {\r
82 //\r
83 // Should not enter this case, if enter, the keyboard will not work.\r
84 // May need platfrom policy to connect keyboard.\r
85 //\r
1634214d 86 DEBUG ((EFI_D_WARN, "[Bds] Connect ConIn failed - %r!!!\n", Status));\r
f4cd24da
RN
87 }\r
88}\r
048bcba1
RN
89/**\r
90 Notify function for event group EFI_EVENT_GROUP_READY_TO_BOOT. This is used to\r
91 check whether there is remaining deferred load images.\r
92\r
93 @param[in] Event The Event that is being processed.\r
94 @param[in] Context The Event Context.\r
95\r
96**/\r
97VOID\r
98EFIAPI\r
99CheckDeferredLoadImageOnReadyToBoot (\r
100 IN EFI_EVENT Event,\r
101 IN VOID *Context\r
102 )\r
103{\r
104 EFI_STATUS Status;\r
105 EFI_DEFERRED_IMAGE_LOAD_PROTOCOL *DeferredImage;\r
106 UINTN HandleCount;\r
107 EFI_HANDLE *Handles;\r
108 UINTN Index;\r
109 UINTN ImageIndex;\r
110 EFI_DEVICE_PATH_PROTOCOL *ImageDevicePath;\r
111 VOID *Image;\r
112 UINTN ImageSize;\r
113 BOOLEAN BootOption;\r
114 CHAR16 *DevicePathStr;\r
115\r
116 //\r
117 // Find all the deferred image load protocols.\r
118 //\r
119 HandleCount = 0;\r
120 Handles = NULL;\r
121 Status = gBS->LocateHandleBuffer (\r
122 ByProtocol,\r
123 &gEfiDeferredImageLoadProtocolGuid,\r
124 NULL,\r
125 &HandleCount,\r
126 &Handles\r
127 );\r
128 if (EFI_ERROR (Status)) {\r
129 return;\r
130 }\r
131\r
132 for (Index = 0; Index < HandleCount; Index++) {\r
133 Status = gBS->HandleProtocol (Handles[Index], &gEfiDeferredImageLoadProtocolGuid, (VOID **) &DeferredImage);\r
134 if (EFI_ERROR (Status)) {\r
135 continue;\r
136 }\r
137\r
138 for (ImageIndex = 0; ; ImageIndex++) {\r
139 //\r
140 // Load all the deferred images in this protocol instance.\r
141 //\r
142 Status = DeferredImage->GetImageInfo (\r
143 DeferredImage,\r
144 ImageIndex,\r
145 &ImageDevicePath,\r
146 (VOID **) &Image,\r
147 &ImageSize,\r
148 &BootOption\r
149 );\r
150 if (EFI_ERROR (Status)) {\r
151 break;\r
152 }\r
153 DevicePathStr = ConvertDevicePathToText (ImageDevicePath, FALSE, FALSE);\r
154 DEBUG ((DEBUG_LOAD, "[Bds] Image was deferred but not loaded: %s.\n", DevicePathStr));\r
155 if (DevicePathStr != NULL) {\r
156 FreePool (DevicePathStr);\r
157 }\r
158 }\r
159 }\r
160 if (Handles != NULL) {\r
161 FreePool (Handles);\r
162 }\r
163}\r
f4cd24da
RN
164\r
165/**\r
166\r
167 Install Boot Device Selection Protocol\r
168\r
169 @param ImageHandle The image handle.\r
170 @param SystemTable The system table.\r
171\r
172 @retval EFI_SUCEESS BDS has finished initializing.\r
173 Return the dispatcher and recall BDS.Entry\r
174 @retval Other Return status from AllocatePool() or gBS->InstallProtocolInterface\r
175\r
176**/\r
177EFI_STATUS\r
178EFIAPI\r
179BdsInitialize (\r
180 IN EFI_HANDLE ImageHandle,\r
181 IN EFI_SYSTEM_TABLE *SystemTable\r
182 )\r
183{\r
184 EFI_STATUS Status;\r
185 EFI_HANDLE Handle;\r
186 //\r
187 // Install protocol interface\r
188 //\r
189 Handle = NULL;\r
190 Status = gBS->InstallMultipleProtocolInterfaces (\r
191 &Handle,\r
192 &gEfiBdsArchProtocolGuid, &gBds,\r
193 NULL\r
194 );\r
195 ASSERT_EFI_ERROR (Status);\r
196\r
048bcba1
RN
197 DEBUG_CODE (\r
198 EFI_EVENT Event;\r
199 //\r
200 // Register notify function to check deferred images on ReadyToBoot Event.\r
201 //\r
202 Status = gBS->CreateEventEx (\r
203 EVT_NOTIFY_SIGNAL,\r
204 TPL_CALLBACK,\r
205 CheckDeferredLoadImageOnReadyToBoot,\r
206 NULL,\r
207 &gEfiEventReadyToBootGuid,\r
208 &Event\r
209 );\r
210 ASSERT_EFI_ERROR (Status);\r
211 );\r
f4cd24da
RN
212 return Status;\r
213}\r
214\r
f4cd24da
RN
215/**\r
216 Function waits for a given event to fire, or for an optional timeout to expire.\r
217\r
218 @param Event The event to wait for\r
219 @param Timeout An optional timeout value in 100 ns units.\r
220\r
221 @retval EFI_SUCCESS Event fired before Timeout expired.\r
222 @retval EFI_TIME_OUT Timout expired before Event fired..\r
223\r
224**/\r
225EFI_STATUS\r
226BdsWaitForSingleEvent (\r
227 IN EFI_EVENT Event,\r
228 IN UINT64 Timeout OPTIONAL\r
229 )\r
230{\r
231 UINTN Index;\r
232 EFI_STATUS Status;\r
233 EFI_EVENT TimerEvent;\r
234 EFI_EVENT WaitList[2];\r
235\r
236 if (Timeout != 0) {\r
237 //\r
238 // Create a timer event\r
239 //\r
240 Status = gBS->CreateEvent (EVT_TIMER, 0, NULL, NULL, &TimerEvent);\r
241 if (!EFI_ERROR (Status)) {\r
242 //\r
243 // Set the timer event\r
244 //\r
245 gBS->SetTimer (\r
246 TimerEvent,\r
247 TimerRelative,\r
248 Timeout\r
249 );\r
250\r
251 //\r
252 // Wait for the original event or the timer\r
253 //\r
254 WaitList[0] = Event;\r
255 WaitList[1] = TimerEvent;\r
256 Status = gBS->WaitForEvent (2, WaitList, &Index);\r
257 ASSERT_EFI_ERROR (Status);\r
258 gBS->CloseEvent (TimerEvent);\r
259\r
260 //\r
261 // If the timer expired, change the return to timed out\r
262 //\r
263 if (Index == 1) {\r
264 Status = EFI_TIMEOUT;\r
265 }\r
266 }\r
267 } else {\r
268 //\r
269 // No timeout... just wait on the event\r
270 //\r
271 Status = gBS->WaitForEvent (1, &Event, &Index);\r
272 ASSERT (!EFI_ERROR (Status));\r
273 ASSERT (Index == 0);\r
274 }\r
275\r
276 return Status;\r
277}\r
278\r
279/**\r
280 The function reads user inputs.\r
281\r
282**/\r
283VOID\r
284BdsReadKeys (\r
285 VOID\r
286 )\r
287{\r
288 EFI_STATUS Status;\r
289 EFI_INPUT_KEY Key;\r
290\r
291 if (PcdGetBool (PcdConInConnectOnDemand)) {\r
292 return;\r
293 }\r
294\r
295 while (gST->ConIn != NULL) {\r
296 \r
297 Status = gST->ConIn->ReadKeyStroke (gST->ConIn, &Key);\r
298 \r
299 if (EFI_ERROR (Status)) {\r
300 //\r
301 // No more keys.\r
302 //\r
303 break;\r
304 }\r
305 }\r
306}\r
307\r
308/**\r
309 The function waits for the boot manager timeout expires or hotkey is pressed.\r
310\r
311 It calls PlatformBootManagerWaitCallback each second.\r
312\r
313 @param HotkeyTriggered Input hotkey event.\r
314**/\r
315VOID\r
316BdsWait (\r
317 IN EFI_EVENT HotkeyTriggered\r
318 )\r
319{\r
320 EFI_STATUS Status;\r
321 UINT16 TimeoutRemain;\r
322\r
323 DEBUG ((EFI_D_INFO, "[Bds]BdsWait ...Zzzzzzzzzzzz...\n"));\r
324\r
325 TimeoutRemain = PcdGet16 (PcdPlatformBootTimeOut);\r
326 while (TimeoutRemain != 0) {\r
327 DEBUG ((EFI_D_INFO, "[Bds]BdsWait(%d)..Zzzz...\n", (UINTN) TimeoutRemain));\r
328 PlatformBootManagerWaitCallback (TimeoutRemain);\r
329\r
330 BdsReadKeys (); // BUGBUG: Only reading can signal HotkeyTriggered\r
331 // Can be removed after all keyboard drivers invoke callback in timer callback.\r
332\r
333 if (HotkeyTriggered != NULL) {\r
334 Status = BdsWaitForSingleEvent (HotkeyTriggered, EFI_TIMER_PERIOD_SECONDS (1));\r
335 if (!EFI_ERROR (Status)) {\r
336 break;\r
337 }\r
338 } else {\r
339 gBS->Stall (1000000);\r
340 }\r
341\r
342 //\r
343 // 0xffff means waiting forever\r
344 // BDS with no hotkey provided and 0xffff as timeout will "hang" in the loop\r
345 //\r
346 if (TimeoutRemain != 0xffff) {\r
347 TimeoutRemain--;\r
348 }\r
349 }\r
350 DEBUG ((EFI_D_INFO, "[Bds]Exit the waiting!\n"));\r
351}\r
352\r
353/**\r
354 Attempt to boot each boot option in the BootOptions array.\r
355\r
356 @param BootOptions Input boot option array.\r
357 @param BootOptionCount Input boot option count.\r
68456d8a 358 @param BootManagerMenu Input boot manager menu.\r
f4cd24da
RN
359\r
360 @retval TRUE Successfully boot one of the boot options.\r
361 @retval FALSE Failed boot any of the boot options.\r
362**/\r
363BOOLEAN\r
68456d8a 364BootBootOptions (\r
f4cd24da 365 IN EFI_BOOT_MANAGER_LOAD_OPTION *BootOptions,\r
68456d8a 366 IN UINTN BootOptionCount,\r
e58f1ae5 367 IN EFI_BOOT_MANAGER_LOAD_OPTION *BootManagerMenu OPTIONAL\r
f4cd24da
RN
368 )\r
369{\r
370 UINTN Index;\r
371\r
45b57c12
DB
372 //\r
373 // Report Status Code to indicate BDS starts attempting booting from the UEFI BootOrder list.\r
374 //\r
375 REPORT_STATUS_CODE (EFI_PROGRESS_CODE, (EFI_SOFTWARE_DXE_BS_DRIVER | EFI_SW_DXE_BS_PC_ATTEMPT_BOOT_ORDER_EVENT));\r
376\r
f4cd24da
RN
377 //\r
378 // Attempt boot each boot option\r
379 //\r
380 for (Index = 0; Index < BootOptionCount; Index++) {\r
381 //\r
382 // According to EFI Specification, if a load option is not marked\r
383 // as LOAD_OPTION_ACTIVE, the boot manager will not automatically\r
384 // load the option.\r
385 //\r
386 if ((BootOptions[Index].Attributes & LOAD_OPTION_ACTIVE) == 0) {\r
387 continue;\r
388 }\r
389\r
390 //\r
391 // Boot#### load options with LOAD_OPTION_CATEGORY_APP are executables which are not\r
392 // part of the normal boot processing. Boot options with reserved category values will be\r
393 // ignored by the boot manager.\r
394 //\r
395 if ((BootOptions[Index].Attributes & LOAD_OPTION_CATEGORY) != LOAD_OPTION_CATEGORY_BOOT) {\r
396 continue;\r
397 }\r
398\r
399 //\r
400 // All the driver options should have been processed since\r
401 // now boot will be performed.\r
402 //\r
403 EfiBootManagerBoot (&BootOptions[Index]);\r
404\r
405 //\r
311b5a6f
ED
406 // If the boot via Boot#### returns with a status of EFI_SUCCESS, platform firmware\r
407 // supports boot manager menu, and if firmware is configured to boot in an\r
408 // interactive mode, the boot manager will stop processing the BootOrder variable and\r
409 // present a boot manager menu to the user.\r
f4cd24da 410 //\r
e58f1ae5 411 if ((BootManagerMenu != NULL) && (BootOptions[Index].Status == EFI_SUCCESS)) {\r
68456d8a 412 EfiBootManagerBoot (BootManagerMenu);\r
f4cd24da
RN
413 break;\r
414 }\r
415 }\r
416\r
417 return (BOOLEAN) (Index < BootOptionCount);\r
418}\r
419\r
420/**\r
68456d8a 421 The function will load and start every Driver####, SysPrep#### or PlatformRecovery####.\r
f4cd24da 422\r
1634214d
RN
423 @param LoadOptions Load option array.\r
424 @param LoadOptionCount Load option count.\r
f4cd24da
RN
425**/\r
426VOID\r
1634214d
RN
427ProcessLoadOptions (\r
428 IN EFI_BOOT_MANAGER_LOAD_OPTION *LoadOptions,\r
429 IN UINTN LoadOptionCount\r
f4cd24da
RN
430 )\r
431{\r
1634214d
RN
432 EFI_STATUS Status;\r
433 UINTN Index;\r
434 BOOLEAN ReconnectAll;\r
435 EFI_BOOT_MANAGER_LOAD_OPTION_TYPE LoadOptionType;\r
f4cd24da 436\r
68456d8a 437 ReconnectAll = FALSE;\r
1634214d 438 LoadOptionType = LoadOptionTypeMax;\r
f4cd24da
RN
439\r
440 //\r
441 // Process the driver option\r
442 //\r
1634214d 443 for (Index = 0; Index < LoadOptionCount; Index++) {\r
f4cd24da 444 //\r
1634214d 445 // All the load options in the array should be of the same type.\r
f4cd24da 446 //\r
68456d8a 447 if (Index == 0) {\r
1634214d 448 LoadOptionType = LoadOptions[Index].OptionType;\r
f4cd24da 449 }\r
1634214d 450 ASSERT (LoadOptionType == LoadOptions[Index].OptionType);\r
de67c35c 451 ASSERT (LoadOptionType != LoadOptionTypeBoot);\r
f4cd24da 452\r
1634214d 453 Status = EfiBootManagerProcessLoadOption (&LoadOptions[Index]);\r
f4cd24da 454\r
de67c35c
RN
455 //\r
456 // Status indicates whether the load option is loaded and executed\r
457 // LoadOptions[Index].Status is what the load option returns\r
458 //\r
68456d8a 459 if (!EFI_ERROR (Status)) {\r
de67c35c
RN
460 //\r
461 // Stop processing if any PlatformRecovery#### returns success.\r
462 //\r
463 if ((LoadOptions[Index].Status == EFI_SUCCESS) &&\r
464 (LoadOptionType == LoadOptionTypePlatformRecovery)) {\r
68456d8a
RN
465 break;\r
466 }\r
de67c35c
RN
467\r
468 //\r
469 // Only set ReconnectAll flag when the load option executes successfully.\r
470 //\r
471 if (!EFI_ERROR (LoadOptions[Index].Status) &&\r
472 (LoadOptions[Index].Attributes & LOAD_OPTION_FORCE_RECONNECT) != 0) {\r
68456d8a
RN
473 ReconnectAll = TRUE;\r
474 }\r
f4cd24da
RN
475 }\r
476 }\r
1634214d 477\r
f4cd24da 478 //\r
1634214d
RN
479 // If a driver load option is marked as LOAD_OPTION_FORCE_RECONNECT,\r
480 // then all of the EFI drivers in the system will be disconnected and\r
481 // reconnected after the last driver load option is processed.\r
f4cd24da 482 //\r
1634214d 483 if (ReconnectAll && LoadOptionType == LoadOptionTypeDriver) {\r
f4cd24da
RN
484 EfiBootManagerDisconnectAll ();\r
485 EfiBootManagerConnectAll ();\r
486 }\r
f4cd24da
RN
487}\r
488\r
489/**\r
490\r
491 Validate input console variable data. \r
492\r
493 If found the device path is not a valid device path, remove the variable.\r
494 \r
495 @param VariableName Input console variable name.\r
496\r
497**/\r
498VOID\r
499BdsFormalizeConsoleVariable (\r
500 IN CHAR16 *VariableName\r
501 )\r
502{\r
503 EFI_DEVICE_PATH_PROTOCOL *DevicePath;\r
504 UINTN VariableSize;\r
505 EFI_STATUS Status;\r
506\r
507 GetEfiGlobalVariable2 (VariableName, (VOID **) &DevicePath, &VariableSize);\r
508 if ((DevicePath != NULL) && !IsDevicePathValid (DevicePath, VariableSize)) { \r
509 Status = gRT->SetVariable (\r
510 VariableName,\r
511 &gEfiGlobalVariableGuid,\r
512 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,\r
513 0,\r
514 NULL\r
515 );\r
516 //\r
517 // Deleting variable with current variable implementation shouldn't fail.\r
518 //\r
519 ASSERT_EFI_ERROR (Status);\r
520 }\r
521\r
522 if (DevicePath != NULL) {\r
523 FreePool (DevicePath);\r
524 }\r
525}\r
526\r
527/**\r
528 Formalize OsIndication related variables. \r
529 \r
530 For OsIndicationsSupported, Create a BS/RT/UINT64 variable to report caps \r
531 Delete OsIndications variable if it is not NV/BS/RT UINT64.\r
532 \r
533 Item 3 is used to solve case when OS corrupts OsIndications. Here simply delete this NV variable.\r
534\r
e58f1ae5
SW
535 Create a boot option for BootManagerMenu if it hasn't been created yet\r
536\r
f4cd24da
RN
537**/\r
538VOID \r
539BdsFormalizeOSIndicationVariable (\r
540 VOID\r
541 )\r
542{\r
e58f1ae5
SW
543 EFI_STATUS Status;\r
544 UINT64 OsIndicationSupport;\r
545 UINT64 OsIndication;\r
546 UINTN DataSize;\r
547 UINT32 Attributes;\r
548 EFI_BOOT_MANAGER_LOAD_OPTION BootManagerMenu;\r
f4cd24da
RN
549\r
550 //\r
551 // OS indicater support variable\r
552 //\r
e58f1ae5
SW
553 Status = EfiBootManagerGetBootManagerMenu (&BootManagerMenu);\r
554 if (Status != EFI_NOT_FOUND) {\r
555 OsIndicationSupport = EFI_OS_INDICATIONS_BOOT_TO_FW_UI | EFI_OS_INDICATIONS_START_PLATFORM_RECOVERY;\r
556 EfiBootManagerFreeLoadOption (&BootManagerMenu);\r
557 } else {\r
558 OsIndicationSupport = EFI_OS_INDICATIONS_START_PLATFORM_RECOVERY;\r
559 }\r
560\r
f4cd24da 561 Status = gRT->SetVariable (\r
cc4812f6 562 EFI_OS_INDICATIONS_SUPPORT_VARIABLE_NAME,\r
f4cd24da
RN
563 &gEfiGlobalVariableGuid,\r
564 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS,\r
565 sizeof(UINT64),\r
566 &OsIndicationSupport\r
567 );\r
568 //\r
569 // Platform needs to make sure setting volatile variable before calling 3rd party code shouldn't fail.\r
570 //\r
571 ASSERT_EFI_ERROR (Status);\r
572\r
573 //\r
574 // If OsIndications is invalid, remove it.\r
575 // Invalid case\r
576 // 1. Data size != UINT64\r
577 // 2. OsIndication value inconsistence\r
578 // 3. OsIndication attribute inconsistence\r
579 //\r
580 OsIndication = 0;\r
581 Attributes = 0;\r
582 DataSize = sizeof(UINT64);\r
583 Status = gRT->GetVariable (\r
cc4812f6 584 EFI_OS_INDICATIONS_VARIABLE_NAME,\r
f4cd24da
RN
585 &gEfiGlobalVariableGuid,\r
586 &Attributes,\r
587 &DataSize,\r
588 &OsIndication\r
589 );\r
590 if (Status == EFI_NOT_FOUND) {\r
591 return;\r
592 }\r
593\r
594 if ((DataSize != sizeof (OsIndication)) ||\r
595 ((OsIndication & ~OsIndicationSupport) != 0) ||\r
596 (Attributes != (EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE))\r
597 ){\r
598\r
599 DEBUG ((EFI_D_ERROR, "[Bds] Unformalized OsIndications variable exists. Delete it\n"));\r
600 Status = gRT->SetVariable (\r
cc4812f6 601 EFI_OS_INDICATIONS_VARIABLE_NAME,\r
f4cd24da
RN
602 &gEfiGlobalVariableGuid,\r
603 0,\r
604 0,\r
605 NULL\r
606 );\r
607 //\r
608 // Deleting variable with current variable implementation shouldn't fail.\r
609 //\r
610 ASSERT_EFI_ERROR(Status);\r
611 }\r
612}\r
613\r
614/**\r
615\r
616 Validate variables. \r
617\r
618**/\r
619VOID \r
620BdsFormalizeEfiGlobalVariable (\r
621 VOID\r
622 )\r
623{\r
624 //\r
625 // Validate Console variable.\r
626 //\r
cc4812f6
RN
627 BdsFormalizeConsoleVariable (EFI_CON_IN_VARIABLE_NAME);\r
628 BdsFormalizeConsoleVariable (EFI_CON_OUT_VARIABLE_NAME);\r
629 BdsFormalizeConsoleVariable (EFI_ERR_OUT_VARIABLE_NAME);\r
f4cd24da
RN
630\r
631 //\r
632 // Validate OSIndication related variable.\r
633 //\r
634 BdsFormalizeOSIndicationVariable ();\r
635}\r
636\r
d1de487d
LE
637/**\r
638 Enter an infinite loop of calling the Boot Manager Menu.\r
639\r
640 This is a last resort alternative to BdsEntry() giving up for good. This\r
641 function never returns.\r
642\r
643 @param[in] BootManagerMenu The EFI_BOOT_MANAGER_LOAD_OPTION located and/or\r
644 created by the EfiBootManagerGetBootManagerMenu()\r
645 call in BdsEntry().\r
646**/\r
647VOID\r
648BdsBootManagerMenuLoop (\r
649 IN EFI_BOOT_MANAGER_LOAD_OPTION *BootManagerMenu\r
650 )\r
651{\r
652 EFI_INPUT_KEY Key;\r
653\r
654 //\r
655 // Normally BdsDxe does not print anything to the system console, but this is\r
656 // a last resort -- the end-user will likely not see any DEBUG messages\r
657 // logged in this situation.\r
658 //\r
659 // AsciiPrint() will NULL-check gST->ConOut internally. We check gST->ConIn\r
660 // here to see if it makes sense to request and wait for a keypress.\r
661 //\r
662 if (gST->ConIn != NULL) {\r
663 AsciiPrint (\r
664 "%a: No bootable option or device was found.\n"\r
665 "%a: Press any key to enter the Boot Manager Menu.\n",\r
666 gEfiCallerBaseName,\r
667 gEfiCallerBaseName\r
668 );\r
669 BdsWaitForSingleEvent (gST->ConIn->WaitForKey, 0);\r
670\r
671 //\r
672 // Drain any queued keys.\r
673 //\r
674 while (!EFI_ERROR (gST->ConIn->ReadKeyStroke (gST->ConIn, &Key))) {\r
675 //\r
676 // just throw away Key\r
677 //\r
678 }\r
679 }\r
680\r
681 for (;;) {\r
682 EfiBootManagerBoot (BootManagerMenu);\r
683 }\r
684}\r
685\r
f4cd24da
RN
686/**\r
687\r
688 Service routine for BdsInstance->Entry(). Devices are connected, the\r
689 consoles are initialized, and the boot options are tried.\r
690\r
691 @param This Protocol Instance structure.\r
692\r
693**/\r
694VOID\r
695EFIAPI\r
696BdsEntry (\r
697 IN EFI_BDS_ARCH_PROTOCOL *This\r
698 )\r
699{\r
1634214d
RN
700 EFI_BOOT_MANAGER_LOAD_OPTION *LoadOptions;\r
701 UINTN LoadOptionCount;\r
f4cd24da
RN
702 CHAR16 *FirmwareVendor;\r
703 EFI_EVENT HotkeyTriggered;\r
704 UINT64 OsIndication;\r
705 UINTN DataSize;\r
706 EFI_STATUS Status;\r
707 UINT32 BootOptionSupport;\r
708 UINT16 BootTimeOut;\r
709 EDKII_VARIABLE_LOCK_PROTOCOL *VariableLock;\r
710 UINTN Index;\r
d175f4e6 711 EFI_BOOT_MANAGER_LOAD_OPTION LoadOption;\r
f4cd24da
RN
712 UINT16 *BootNext;\r
713 CHAR16 BootNextVariableName[sizeof ("Boot####")];\r
1634214d
RN
714 EFI_BOOT_MANAGER_LOAD_OPTION BootManagerMenu;\r
715 BOOLEAN BootFwUi;\r
68456d8a
RN
716 BOOLEAN PlatformRecovery;\r
717 BOOLEAN BootSuccess;\r
d175f4e6 718 EFI_DEVICE_PATH_PROTOCOL *FilePath;\r
e58f1ae5 719 EFI_STATUS BootManagerMenuStatus;\r
f4cd24da
RN
720\r
721 HotkeyTriggered = NULL;\r
722 Status = EFI_SUCCESS;\r
68456d8a 723 BootSuccess = FALSE;\r
f4cd24da
RN
724\r
725 //\r
726 // Insert the performance probe\r
727 //\r
67e9ab84
BD
728 PERF_CROSSMODULE_END("DXE");\r
729 PERF_CROSSMODULE_BEGIN("BDS");\r
f4cd24da
RN
730 DEBUG ((EFI_D_INFO, "[Bds] Entry...\n"));\r
731\r
f4cd24da
RN
732 //\r
733 // Fill in FirmwareVendor and FirmwareRevision from PCDs\r
734 //\r
735 FirmwareVendor = (CHAR16 *) PcdGetPtr (PcdFirmwareVendor);\r
736 gST->FirmwareVendor = AllocateRuntimeCopyPool (StrSize (FirmwareVendor), FirmwareVendor);\r
737 ASSERT (gST->FirmwareVendor != NULL);\r
738 gST->FirmwareRevision = PcdGet32 (PcdFirmwareRevision);\r
739\r
740 //\r
741 // Fixup Tasble CRC after we updated Firmware Vendor and Revision\r
742 //\r
743 gST->Hdr.CRC32 = 0;\r
744 gBS->CalculateCrc32 ((VOID *) gST, sizeof (EFI_SYSTEM_TABLE), &gST->Hdr.CRC32);\r
745\r
746 //\r
747 // Validate Variable.\r
748 //\r
749 BdsFormalizeEfiGlobalVariable ();\r
750\r
751 //\r
752 // Mark the read-only variables if the Variable Lock protocol exists\r
753 //\r
754 Status = gBS->LocateProtocol (&gEdkiiVariableLockProtocolGuid, NULL, (VOID **) &VariableLock);\r
755 DEBUG ((EFI_D_INFO, "[BdsDxe] Locate Variable Lock protocol - %r\n", Status));\r
756 if (!EFI_ERROR (Status)) {\r
1a5afd71 757 for (Index = 0; Index < ARRAY_SIZE (mReadOnlyVariables); Index++) {\r
f4cd24da
RN
758 Status = VariableLock->RequestToLock (VariableLock, mReadOnlyVariables[Index], &gEfiGlobalVariableGuid);\r
759 ASSERT_EFI_ERROR (Status);\r
760 }\r
761 }\r
762\r
763 InitializeHwErrRecSupport ();\r
764\r
765 //\r
766 // Initialize L"Timeout" EFI global variable.\r
767 //\r
768 BootTimeOut = PcdGet16 (PcdPlatformBootTimeOut);\r
769 if (BootTimeOut != 0xFFFF) {\r
770 //\r
771 // If time out value equal 0xFFFF, no need set to 0xFFFF to variable area because UEFI specification\r
772 // define same behavior between no value or 0xFFFF value for L"Timeout".\r
773 //\r
774 BdsDxeSetVariableAndReportStatusCodeOnError (\r
775 EFI_TIME_OUT_VARIABLE_NAME,\r
776 &gEfiGlobalVariableGuid,\r
777 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,\r
778 sizeof (UINT16),\r
779 &BootTimeOut\r
780 );\r
781 }\r
782\r
783 //\r
784 // Initialize L"BootOptionSupport" EFI global variable.\r
785 // Lazy-ConIn implictly disables BDS hotkey.\r
786 //\r
1634214d 787 BootOptionSupport = EFI_BOOT_OPTION_SUPPORT_APP | EFI_BOOT_OPTION_SUPPORT_SYSPREP;\r
f4cd24da
RN
788 if (!PcdGetBool (PcdConInConnectOnDemand)) {\r
789 BootOptionSupport |= EFI_BOOT_OPTION_SUPPORT_KEY;\r
790 SET_BOOT_OPTION_SUPPORT_KEY_COUNT (BootOptionSupport, 3);\r
791 }\r
792 Status = gRT->SetVariable (\r
793 EFI_BOOT_OPTION_SUPPORT_VARIABLE_NAME,\r
794 &gEfiGlobalVariableGuid,\r
795 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS,\r
796 sizeof (BootOptionSupport),\r
797 &BootOptionSupport\r
798 );\r
799 //\r
800 // Platform needs to make sure setting volatile variable before calling 3rd party code shouldn't fail.\r
801 //\r
802 ASSERT_EFI_ERROR (Status);\r
803\r
804 //\r
0e6584e3
RN
805 // Cache the "BootNext" NV variable before calling any PlatformBootManagerLib APIs\r
806 // This could avoid the "BootNext" set by PlatformBootManagerLib be consumed in this boot.\r
f4cd24da
RN
807 //\r
808 GetEfiGlobalVariable2 (EFI_BOOT_NEXT_VARIABLE_NAME, (VOID **) &BootNext, &DataSize);\r
809 if (DataSize != sizeof (UINT16)) {\r
810 if (BootNext != NULL) {\r
811 FreePool (BootNext);\r
812 }\r
813 BootNext = NULL;\r
814 }\r
f4cd24da
RN
815\r
816 //\r
817 // Initialize the platform language variables\r
818 //\r
819 InitializeLanguage (TRUE);\r
820\r
d175f4e6
RN
821 //\r
822 // System firmware must include a PlatformRecovery#### variable specifying\r
823 // a short-form File Path Media Device Path containing the platform default\r
824 // file path for removable media\r
825 //\r
826 FilePath = FileDevicePath (NULL, EFI_REMOVABLE_MEDIA_FILE_NAME);\r
827 Status = EfiBootManagerInitializeLoadOption (\r
828 &LoadOption,\r
0dc3fb06 829 LoadOptionNumberUnassigned,\r
d175f4e6
RN
830 LoadOptionTypePlatformRecovery,\r
831 LOAD_OPTION_ACTIVE,\r
832 L"Default PlatformRecovery",\r
833 FilePath,\r
834 NULL,\r
835 0\r
836 );\r
837 ASSERT_EFI_ERROR (Status);\r
0dc3fb06
RN
838 LoadOptions = EfiBootManagerGetLoadOptions (&LoadOptionCount, LoadOptionTypePlatformRecovery);\r
839 if (EfiBootManagerFindLoadOption (&LoadOption, LoadOptions, LoadOptionCount) == -1) {\r
840 for (Index = 0; Index < LoadOptionCount; Index++) {\r
841 //\r
842 // The PlatformRecovery#### options are sorted by OptionNumber.\r
843 // Find the the smallest unused number as the new OptionNumber.\r
844 //\r
845 if (LoadOptions[Index].OptionNumber != Index) {\r
846 break;\r
847 }\r
848 }\r
849 LoadOption.OptionNumber = Index;\r
850 Status = EfiBootManagerLoadOptionToVariable (&LoadOption);\r
851 ASSERT_EFI_ERROR (Status);\r
852 }\r
d175f4e6
RN
853 EfiBootManagerFreeLoadOption (&LoadOption);\r
854 FreePool (FilePath);\r
0dc3fb06 855 EfiBootManagerFreeLoadOptions (LoadOptions, LoadOptionCount);\r
d175f4e6 856\r
f4cd24da
RN
857 //\r
858 // Report Status Code to indicate connecting drivers will happen\r
859 //\r
860 REPORT_STATUS_CODE (\r
861 EFI_PROGRESS_CODE,\r
862 (EFI_SOFTWARE_DXE_BS_DRIVER | EFI_SW_DXE_BS_PC_BEGIN_CONNECTING_DRIVERS)\r
863 );\r
864\r
8537bd7e
RN
865 //\r
866 // Initialize ConnectConIn event before calling platform code.\r
867 //\r
868 if (PcdGetBool (PcdConInConnectOnDemand)) {\r
869 Status = gBS->CreateEventEx (\r
870 EVT_NOTIFY_SIGNAL,\r
871 TPL_CALLBACK,\r
872 BdsDxeOnConnectConInCallBack,\r
873 NULL,\r
874 &gConnectConInEventGuid,\r
875 &gConnectConInEvent\r
876 );\r
877 if (EFI_ERROR (Status)) {\r
878 gConnectConInEvent = NULL;\r
879 }\r
880 }\r
881\r
f4cd24da
RN
882 //\r
883 // Do the platform init, can be customized by OEM/IBV\r
884 // Possible things that can be done in PlatformBootManagerBeforeConsole:\r
885 // > Update console variable: 1. include hot-plug devices; 2. Clear ConIn and add SOL for AMT\r
886 // > Register new Driver#### or Boot####\r
887 // > Register new Key####: e.g.: F12 \r
888 // > Signal ReadyToLock event\r
889 // > Authentication action: 1. connect Auth devices; 2. Identify auto logon user.\r
890 //\r
67e9ab84 891 PERF_INMODULE_BEGIN("PlatformBootManagerBeforeConsole");\r
f4cd24da 892 PlatformBootManagerBeforeConsole ();\r
67e9ab84 893 PERF_INMODULE_END("PlatformBootManagerBeforeConsole");\r
f4cd24da
RN
894\r
895 //\r
896 // Initialize hotkey service\r
897 //\r
898 EfiBootManagerStartHotkeyService (&HotkeyTriggered);\r
899\r
900 //\r
1634214d 901 // Execute Driver Options\r
f4cd24da 902 //\r
1634214d
RN
903 LoadOptions = EfiBootManagerGetLoadOptions (&LoadOptionCount, LoadOptionTypeDriver);\r
904 ProcessLoadOptions (LoadOptions, LoadOptionCount);\r
905 EfiBootManagerFreeLoadOptions (LoadOptions, LoadOptionCount);\r
f4cd24da
RN
906\r
907 //\r
908 // Connect consoles\r
909 //\r
67e9ab84 910 PERF_INMODULE_BEGIN("EfiBootManagerConnectAllDefaultConsoles");\r
f4cd24da
RN
911 if (PcdGetBool (PcdConInConnectOnDemand)) {\r
912 EfiBootManagerConnectConsoleVariable (ConOut);\r
913 EfiBootManagerConnectConsoleVariable (ErrOut);\r
f4cd24da 914 //\r
8537bd7e 915 // Do not connect ConIn devices when lazy ConIn feature is ON.\r
f4cd24da 916 //\r
f4cd24da
RN
917 } else {\r
918 EfiBootManagerConnectAllDefaultConsoles ();\r
919 }\r
67e9ab84 920 PERF_INMODULE_END("EfiBootManagerConnectAllDefaultConsoles");\r
f4cd24da
RN
921\r
922 //\r
923 // Do the platform specific action after the console is ready\r
924 // Possible things that can be done in PlatformBootManagerAfterConsole:\r
925 // > Console post action:\r
926 // > Dynamically switch output mode from 100x31 to 80x25 for certain senarino\r
927 // > Signal console ready platform customized event\r
928 // > Run diagnostics like memory testing\r
929 // > Connect certain devices\r
930 // > Dispatch aditional option roms\r
931 // > Special boot: e.g.: USB boot, enter UI\r
932 // \r
67e9ab84 933 PERF_INMODULE_BEGIN("PlatformBootManagerAfterConsole");\r
f4cd24da 934 PlatformBootManagerAfterConsole ();\r
67e9ab84 935 PERF_INMODULE_END("PlatformBootManagerAfterConsole");\r
68456d8a
RN
936 //\r
937 // Boot to Boot Manager Menu when EFI_OS_INDICATIONS_BOOT_TO_FW_UI is set. Skip HotkeyBoot\r
938 //\r
939 DataSize = sizeof (UINT64);\r
940 Status = gRT->GetVariable (\r
941 EFI_OS_INDICATIONS_VARIABLE_NAME,\r
942 &gEfiGlobalVariableGuid,\r
943 NULL,\r
944 &DataSize,\r
945 &OsIndication\r
946 );\r
947 if (EFI_ERROR (Status)) {\r
948 OsIndication = 0;\r
949 }\r
f4cd24da
RN
950\r
951 DEBUG_CODE (\r
1634214d 952 EFI_BOOT_MANAGER_LOAD_OPTION_TYPE LoadOptionType;\r
68456d8a 953 DEBUG ((EFI_D_INFO, "[Bds]OsIndication: %016x\n", OsIndication));\r
1634214d
RN
954 DEBUG ((EFI_D_INFO, "[Bds]=============Begin Load Options Dumping ...=============\n"));\r
955 for (LoadOptionType = 0; LoadOptionType < LoadOptionTypeMax; LoadOptionType++) {\r
f4cd24da 956 DEBUG ((\r
1634214d
RN
957 EFI_D_INFO, " %s Options:\n",\r
958 mBdsLoadOptionName[LoadOptionType]\r
f4cd24da 959 ));\r
1634214d
RN
960 LoadOptions = EfiBootManagerGetLoadOptions (&LoadOptionCount, LoadOptionType);\r
961 for (Index = 0; Index < LoadOptionCount; Index++) {\r
962 DEBUG ((\r
963 EFI_D_INFO, " %s%04x: %s \t\t 0x%04x\n",\r
964 mBdsLoadOptionName[LoadOptionType],\r
965 LoadOptions[Index].OptionNumber,\r
966 LoadOptions[Index].Description,\r
967 LoadOptions[Index].Attributes\r
968 ));\r
969 }\r
970 EfiBootManagerFreeLoadOptions (LoadOptions, LoadOptionCount);\r
f4cd24da 971 }\r
1634214d
RN
972 DEBUG ((EFI_D_INFO, "[Bds]=============End Load Options Dumping=============\n"));\r
973 );\r
f4cd24da
RN
974\r
975 //\r
e58f1ae5 976 // BootManagerMenu doesn't contain the correct information when return status is EFI_NOT_FOUND.\r
f4cd24da 977 //\r
e58f1ae5 978 BootManagerMenuStatus = EfiBootManagerGetBootManagerMenu (&BootManagerMenu);\r
1634214d 979\r
68456d8a
RN
980 BootFwUi = (BOOLEAN) ((OsIndication & EFI_OS_INDICATIONS_BOOT_TO_FW_UI) != 0);\r
981 PlatformRecovery = (BOOLEAN) ((OsIndication & EFI_OS_INDICATIONS_START_PLATFORM_RECOVERY) != 0);\r
1634214d
RN
982 //\r
983 // Clear EFI_OS_INDICATIONS_BOOT_TO_FW_UI to acknowledge OS\r
984 // \r
68456d8a
RN
985 if (BootFwUi || PlatformRecovery) {\r
986 OsIndication &= ~((UINT64) (EFI_OS_INDICATIONS_BOOT_TO_FW_UI | EFI_OS_INDICATIONS_START_PLATFORM_RECOVERY));\r
f4cd24da 987 Status = gRT->SetVariable (\r
cc4812f6 988 EFI_OS_INDICATIONS_VARIABLE_NAME,\r
f4cd24da
RN
989 &gEfiGlobalVariableGuid,\r
990 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,\r
991 sizeof(UINT64),\r
992 &OsIndication\r
993 );\r
994 //\r
995 // Changing the content without increasing its size with current variable implementation shouldn't fail.\r
996 //\r
997 ASSERT_EFI_ERROR (Status);\r
1634214d 998 }\r
f4cd24da 999\r
1634214d
RN
1000 //\r
1001 // Launch Boot Manager Menu directly when EFI_OS_INDICATIONS_BOOT_TO_FW_UI is set. Skip HotkeyBoot\r
1002 //\r
e58f1ae5 1003 if (BootFwUi && (BootManagerMenuStatus != EFI_NOT_FOUND)) {\r
f4cd24da
RN
1004 //\r
1005 // Follow generic rule, Call BdsDxeOnConnectConInCallBack to connect ConIn before enter UI\r
1006 //\r
1007 if (PcdGetBool (PcdConInConnectOnDemand)) {\r
1008 BdsDxeOnConnectConInCallBack (NULL, NULL);\r
1009 }\r
1010\r
1011 //\r
1634214d 1012 // Directly enter the setup page.\r
f4cd24da 1013 //\r
1634214d 1014 EfiBootManagerBoot (&BootManagerMenu);\r
f4cd24da
RN
1015 }\r
1016\r
68456d8a
RN
1017 if (!PlatformRecovery) {\r
1018 //\r
1019 // Execute SysPrep####\r
1020 //\r
1021 LoadOptions = EfiBootManagerGetLoadOptions (&LoadOptionCount, LoadOptionTypeSysPrep);\r
1022 ProcessLoadOptions (LoadOptions, LoadOptionCount);\r
1023 EfiBootManagerFreeLoadOptions (LoadOptions, LoadOptionCount);\r
1634214d 1024\r
68456d8a
RN
1025 //\r
1026 // Execute Key####\r
1027 //\r
67e9ab84 1028 PERF_INMODULE_BEGIN ("BdsWait");\r
68456d8a 1029 BdsWait (HotkeyTriggered);\r
67e9ab84 1030 PERF_INMODULE_END ("BdsWait");\r
68456d8a
RN
1031 //\r
1032 // BdsReadKeys() can be removed after all keyboard drivers invoke callback in timer callback.\r
1033 //\r
1034 BdsReadKeys ();\r
1634214d 1035\r
68456d8a 1036 EfiBootManagerHotkeyBoot ();\r
1634214d 1037\r
68456d8a 1038 if (BootNext != NULL) {\r
0e6584e3
RN
1039 //\r
1040 // Delete "BootNext" NV variable before transferring control to it to prevent loops.\r
1041 //\r
1042 Status = gRT->SetVariable (\r
1043 EFI_BOOT_NEXT_VARIABLE_NAME,\r
1044 &gEfiGlobalVariableGuid,\r
1045 0,\r
1046 0,\r
1047 NULL\r
1048 );\r
1049 //\r
1050 // Deleting NV variable shouldn't fail unless it doesn't exist.\r
1051 //\r
1052 ASSERT (Status == EFI_SUCCESS || Status == EFI_NOT_FOUND);\r
1053\r
1054 //\r
1055 // Boot to "BootNext"\r
1056 //\r
68456d8a
RN
1057 UnicodeSPrint (BootNextVariableName, sizeof (BootNextVariableName), L"Boot%04x", *BootNext);\r
1058 Status = EfiBootManagerVariableToLoadOption (BootNextVariableName, &LoadOption);\r
1059 if (!EFI_ERROR (Status)) {\r
d175f4e6
RN
1060 EfiBootManagerBoot (&LoadOption);\r
1061 EfiBootManagerFreeLoadOption (&LoadOption);\r
e58f1ae5
SW
1062 if ((LoadOption.Status == EFI_SUCCESS) && \r
1063 (BootManagerMenuStatus != EFI_NOT_FOUND) &&\r
1064 (LoadOption.OptionNumber != BootManagerMenu.OptionNumber)) {\r
68456d8a
RN
1065 //\r
1066 // Boot to Boot Manager Menu upon EFI_SUCCESS\r
f5cbc197 1067 // Exception: Do not boot again when the BootNext points to Boot Manager Menu.\r
68456d8a
RN
1068 //\r
1069 EfiBootManagerBoot (&BootManagerMenu);\r
1070 }\r
f4cd24da
RN
1071 }\r
1072 }\r
68456d8a
RN
1073\r
1074 do {\r
1075 //\r
1076 // Retry to boot if any of the boot succeeds\r
1077 //\r
1078 LoadOptions = EfiBootManagerGetLoadOptions (&LoadOptionCount, LoadOptionTypeBoot);\r
e58f1ae5 1079 BootSuccess = BootBootOptions (LoadOptions, LoadOptionCount, (BootManagerMenuStatus != EFI_NOT_FOUND) ? &BootManagerMenu : NULL);\r
68456d8a
RN
1080 EfiBootManagerFreeLoadOptions (LoadOptions, LoadOptionCount);\r
1081 } while (BootSuccess);\r
f4cd24da
RN
1082 }\r
1083\r
68456d8a
RN
1084 if (!BootSuccess) {\r
1085 LoadOptions = EfiBootManagerGetLoadOptions (&LoadOptionCount, LoadOptionTypePlatformRecovery);\r
1086 ProcessLoadOptions (LoadOptions, LoadOptionCount);\r
1087 EfiBootManagerFreeLoadOptions (LoadOptions, LoadOptionCount);\r
f4cd24da 1088 }\r
68456d8a 1089\r
d1de487d
LE
1090 //\r
1091 // If BootManagerMenu is available, fall back to it indefinitely.\r
1092 //\r
1093 if (BootManagerMenuStatus != EFI_NOT_FOUND) {\r
1094 BdsBootManagerMenuLoop (&BootManagerMenu);\r
1095 }\r
1096\r
68456d8a
RN
1097 DEBUG ((EFI_D_ERROR, "[Bds] Unable to boot!\n"));\r
1098 CpuDeadLoop ();\r
f4cd24da
RN
1099}\r
1100\r
1101/**\r
1102 Set the variable and report the error through status code upon failure.\r
1103\r
1104 @param VariableName A Null-terminated string that is the name of the vendor's variable.\r
1105 Each VariableName is unique for each VendorGuid. VariableName must\r
1106 contain 1 or more characters. If VariableName is an empty string,\r
1107 then EFI_INVALID_PARAMETER is returned.\r
1108 @param VendorGuid A unique identifier for the vendor.\r
1109 @param Attributes Attributes bitmask to set for the variable.\r
1110 @param DataSize The size in bytes of the Data buffer. Unless the EFI_VARIABLE_APPEND_WRITE, \r
4073f85d 1111 or EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS attribute is set, a size of zero\r
f4cd24da
RN
1112 causes the variable to be deleted. When the EFI_VARIABLE_APPEND_WRITE attribute is \r
1113 set, then a SetVariable() call with a DataSize of zero will not cause any change to \r
1114 the variable value (the timestamp associated with the variable may be updated however \r
1115 even if no new data value is provided,see the description of the \r
1116 EFI_VARIABLE_AUTHENTICATION_2 descriptor below. In this case the DataSize will not \r
1117 be zero since the EFI_VARIABLE_AUTHENTICATION_2 descriptor will be populated). \r
1118 @param Data The contents for the variable.\r
1119\r
1120 @retval EFI_SUCCESS The firmware has successfully stored the variable and its data as\r
1121 defined by the Attributes.\r
1122 @retval EFI_INVALID_PARAMETER An invalid combination of attribute bits, name, and GUID was supplied, or the\r
1123 DataSize exceeds the maximum allowed.\r
1124 @retval EFI_INVALID_PARAMETER VariableName is an empty string.\r
1125 @retval EFI_OUT_OF_RESOURCES Not enough storage is available to hold the variable and its data.\r
1126 @retval EFI_DEVICE_ERROR The variable could not be retrieved due to a hardware error.\r
1127 @retval EFI_WRITE_PROTECTED The variable in question is read-only.\r
1128 @retval EFI_WRITE_PROTECTED The variable in question cannot be deleted.\r
4073f85d
ZC
1129 @retval EFI_SECURITY_VIOLATION The variable could not be written due to EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACESS\r
1130 being set, but the AuthInfo does NOT pass the validation check carried out by the firmware.\r
f4cd24da
RN
1131\r
1132 @retval EFI_NOT_FOUND The variable trying to be updated or deleted was not found.\r
1133**/\r
1134EFI_STATUS\r
1135BdsDxeSetVariableAndReportStatusCodeOnError (\r
1136 IN CHAR16 *VariableName,\r
1137 IN EFI_GUID *VendorGuid,\r
1138 IN UINT32 Attributes,\r
1139 IN UINTN DataSize,\r
1140 IN VOID *Data\r
1141 )\r
1142{\r
1143 EFI_STATUS Status;\r
1144 EDKII_SET_VARIABLE_STATUS *SetVariableStatus;\r
1145 UINTN NameSize;\r
1146\r
1147 Status = gRT->SetVariable (\r
1148 VariableName,\r
1149 VendorGuid,\r
1150 Attributes,\r
1151 DataSize,\r
1152 Data\r
1153 );\r
1154 if (EFI_ERROR (Status)) {\r
1155 NameSize = StrSize (VariableName);\r
1156 SetVariableStatus = AllocatePool (sizeof (EDKII_SET_VARIABLE_STATUS) + NameSize + DataSize);\r
1157 if (SetVariableStatus != NULL) {\r
1158 CopyGuid (&SetVariableStatus->Guid, VendorGuid);\r
1159 SetVariableStatus->NameSize = NameSize;\r
1160 SetVariableStatus->DataSize = DataSize;\r
1161 SetVariableStatus->SetStatus = Status;\r
1162 SetVariableStatus->Attributes = Attributes;\r
1163 CopyMem (SetVariableStatus + 1, VariableName, NameSize);\r
1164 CopyMem (((UINT8 *) (SetVariableStatus + 1)) + NameSize, Data, DataSize);\r
1165\r
1166 REPORT_STATUS_CODE_EX (\r
1167 EFI_ERROR_CODE,\r
1168 PcdGet32 (PcdErrorCodeSetVariable),\r
1169 0,\r
1170 NULL,\r
1171 &gEdkiiStatusCodeDataTypeVariableGuid,\r
1172 SetVariableStatus,\r
1173 sizeof (EDKII_SET_VARIABLE_STATUS) + NameSize + DataSize\r
1174 );\r
1175\r
1176 FreePool (SetVariableStatus);\r
1177 }\r
1178 }\r
1179\r
1180 return Status;\r
1181}\r