]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c
MdeModulePkg/Bds: Wide match HTTP boot option.
[mirror_edk2.git] / MdeModulePkg / Library / UefiBootManagerLib / BmBoot.c
1 /** @file
2 Library functions which relates with booting.
3
4 Copyright (c) 2011 - 2016, Intel Corporation. All rights reserved.<BR>
5 (C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR>
6 This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 #include "InternalBm.h"
17
18 #define VENDOR_IDENTIFICATION_OFFSET 3
19 #define VENDOR_IDENTIFICATION_LENGTH 8
20 #define PRODUCT_IDENTIFICATION_OFFSET 11
21 #define PRODUCT_IDENTIFICATION_LENGTH 16
22
23 CONST UINT16 mBmUsbLangId = 0x0409; // English
24 CHAR16 mBmUefiPrefix[] = L"UEFI ";
25
26 EFI_BOOT_MANAGER_REFRESH_LEGACY_BOOT_OPTION mBmRefreshLegacyBootOption = NULL;
27 EFI_BOOT_MANAGER_LEGACY_BOOT mBmLegacyBoot = NULL;
28
29 LIST_ENTRY mPlatformBootDescriptionHandlers = INITIALIZE_LIST_HEAD_VARIABLE (mPlatformBootDescriptionHandlers);
30
31 ///
32 /// This GUID is used for an EFI Variable that stores the front device pathes
33 /// for a partial device path that starts with the HD node.
34 ///
35 EFI_GUID mBmHardDriveBootVariableGuid = { 0xfab7e9e1, 0x39dd, 0x4f2b, { 0x84, 0x08, 0xe2, 0x0e, 0x90, 0x6c, 0xb6, 0xde } };
36 EFI_GUID mBmAutoCreateBootOptionGuid = { 0x8108ac4e, 0x9f11, 0x4d59, { 0x85, 0x0e, 0xe2, 0x1a, 0x52, 0x2c, 0x59, 0xb2 } };
37
38 /**
39 The function registers the legacy boot support capabilities.
40
41 @param RefreshLegacyBootOption The function pointer to create all the legacy boot options.
42 @param LegacyBoot The function pointer to boot the legacy boot option.
43 **/
44 VOID
45 EFIAPI
46 EfiBootManagerRegisterLegacyBootSupport (
47 EFI_BOOT_MANAGER_REFRESH_LEGACY_BOOT_OPTION RefreshLegacyBootOption,
48 EFI_BOOT_MANAGER_LEGACY_BOOT LegacyBoot
49 )
50 {
51 mBmRefreshLegacyBootOption = RefreshLegacyBootOption;
52 mBmLegacyBoot = LegacyBoot;
53 }
54
55 /**
56 Return TRUE when the boot option is auto-created instead of manually added.
57
58 @param BootOption Pointer to the boot option to check.
59
60 @retval TRUE The boot option is auto-created.
61 @retval FALSE The boot option is manually added.
62 **/
63 BOOLEAN
64 BmIsAutoCreateBootOption (
65 EFI_BOOT_MANAGER_LOAD_OPTION *BootOption
66 )
67 {
68 if ((BootOption->OptionalDataSize == sizeof (EFI_GUID)) &&
69 CompareGuid ((EFI_GUID *) BootOption->OptionalData, &mBmAutoCreateBootOptionGuid)
70 ) {
71 return TRUE;
72 } else {
73 return FALSE;
74 }
75 }
76
77 /**
78 For a bootable Device path, return its boot type.
79
80 @param DevicePath The bootable device Path to check
81
82 @retval AcpiFloppyBoot If given device path contains ACPI_DEVICE_PATH type device path node
83 which HID is floppy device.
84 @retval MessageAtapiBoot If given device path contains MESSAGING_DEVICE_PATH type device path node
85 and its last device path node's subtype is MSG_ATAPI_DP.
86 @retval MessageSataBoot If given device path contains MESSAGING_DEVICE_PATH type device path node
87 and its last device path node's subtype is MSG_SATA_DP.
88 @retval MessageScsiBoot If given device path contains MESSAGING_DEVICE_PATH type device path node
89 and its last device path node's subtype is MSG_SCSI_DP.
90 @retval MessageUsbBoot If given device path contains MESSAGING_DEVICE_PATH type device path node
91 and its last device path node's subtype is MSG_USB_DP.
92 @retval MessageNetworkBoot If given device path contains MESSAGING_DEVICE_PATH type device path node
93 and its last device path node's subtype is MSG_MAC_ADDR_DP, MSG_VLAN_DP,
94 MSG_IPv4_DP or MSG_IPv6_DP.
95 @retval MessageHttpBoot If given device path contains MESSAGING_DEVICE_PATH type device path node
96 and its last device path node's subtype is MSG_URI_DP.
97 @retval UnsupportedBoot If tiven device path doesn't match the above condition, it's not supported.
98
99 **/
100 BM_BOOT_TYPE
101 BmDevicePathType (
102 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
103 )
104 {
105 EFI_DEVICE_PATH_PROTOCOL *Node;
106 EFI_DEVICE_PATH_PROTOCOL *NextNode;
107
108 ASSERT (DevicePath != NULL);
109
110 for (Node = DevicePath; !IsDevicePathEndType (Node); Node = NextDevicePathNode (Node)) {
111 switch (DevicePathType (Node)) {
112
113 case ACPI_DEVICE_PATH:
114 if (EISA_ID_TO_NUM (((ACPI_HID_DEVICE_PATH *) Node)->HID) == 0x0604) {
115 return BmAcpiFloppyBoot;
116 }
117 break;
118
119 case HARDWARE_DEVICE_PATH:
120 if (DevicePathSubType (Node) == HW_CONTROLLER_DP) {
121 return BmHardwareDeviceBoot;
122 }
123 break;
124
125 case MESSAGING_DEVICE_PATH:
126 //
127 // Skip LUN device node
128 //
129 NextNode = Node;
130 do {
131 NextNode = NextDevicePathNode (NextNode);
132 } while (
133 (DevicePathType (NextNode) == MESSAGING_DEVICE_PATH) &&
134 (DevicePathSubType(NextNode) == MSG_DEVICE_LOGICAL_UNIT_DP)
135 );
136
137 //
138 // If the device path not only point to driver device, it is not a messaging device path,
139 //
140 if (!IsDevicePathEndType (NextNode)) {
141 continue;
142 }
143
144 switch (DevicePathSubType (Node)) {
145 case MSG_ATAPI_DP:
146 return BmMessageAtapiBoot;
147 break;
148
149 case MSG_SATA_DP:
150 return BmMessageSataBoot;
151 break;
152
153 case MSG_USB_DP:
154 return BmMessageUsbBoot;
155 break;
156
157 case MSG_SCSI_DP:
158 return BmMessageScsiBoot;
159 break;
160
161 case MSG_MAC_ADDR_DP:
162 case MSG_VLAN_DP:
163 case MSG_IPv4_DP:
164 case MSG_IPv6_DP:
165 return BmMessageNetworkBoot;
166 break;
167
168 case MSG_URI_DP:
169 return BmMessageHttpBoot;
170 break;
171 }
172 }
173 }
174
175 return BmMiscBoot;
176 }
177
178 /**
179 Find the boot option in the NV storage and return the option number.
180
181 @param OptionToFind Boot option to be checked.
182
183 @return The option number of the found boot option.
184
185 **/
186 UINTN
187 BmFindBootOptionInVariable (
188 IN EFI_BOOT_MANAGER_LOAD_OPTION *OptionToFind
189 )
190 {
191 EFI_STATUS Status;
192 EFI_BOOT_MANAGER_LOAD_OPTION BootOption;
193 UINTN OptionNumber;
194 CHAR16 OptionName[BM_OPTION_NAME_LEN];
195 EFI_BOOT_MANAGER_LOAD_OPTION *BootOptions;
196 UINTN BootOptionCount;
197 UINTN Index;
198
199 OptionNumber = LoadOptionNumberUnassigned;
200
201 //
202 // Try to match the variable exactly if the option number is assigned
203 //
204 if (OptionToFind->OptionNumber != LoadOptionNumberUnassigned) {
205 UnicodeSPrint (
206 OptionName, sizeof (OptionName), L"%s%04x",
207 mBmLoadOptionName[OptionToFind->OptionType], OptionToFind->OptionNumber
208 );
209 Status = EfiBootManagerVariableToLoadOption (OptionName, &BootOption);
210
211 if (!EFI_ERROR (Status)) {
212 ASSERT (OptionToFind->OptionNumber == BootOption.OptionNumber);
213 if ((OptionToFind->Attributes == BootOption.Attributes) &&
214 (StrCmp (OptionToFind->Description, BootOption.Description) == 0) &&
215 (CompareMem (OptionToFind->FilePath, BootOption.FilePath, GetDevicePathSize (OptionToFind->FilePath)) == 0) &&
216 (OptionToFind->OptionalDataSize == BootOption.OptionalDataSize) &&
217 (CompareMem (OptionToFind->OptionalData, BootOption.OptionalData, OptionToFind->OptionalDataSize) == 0)
218 ) {
219 OptionNumber = OptionToFind->OptionNumber;
220 }
221 EfiBootManagerFreeLoadOption (&BootOption);
222 }
223 }
224
225 //
226 // The option number assigned is either incorrect or unassigned.
227 //
228 if (OptionNumber == LoadOptionNumberUnassigned) {
229 BootOptions = EfiBootManagerGetLoadOptions (&BootOptionCount, LoadOptionTypeBoot);
230
231 Index = EfiBootManagerFindLoadOption (OptionToFind, BootOptions, BootOptionCount);
232 if (Index != -1) {
233 OptionNumber = BootOptions[Index].OptionNumber;
234 }
235
236 EfiBootManagerFreeLoadOptions (BootOptions, BootOptionCount);
237 }
238
239 return OptionNumber;
240 }
241
242 /**
243 Get the file buffer using a Memory Mapped Device Path.
244
245 FV address may change across reboot. This routine promises the FV file device path is right.
246
247 @param FilePath The Memory Mapped Device Path to get the file buffer.
248 @param FullPath Receive the updated FV Device Path pointint to the file.
249 @param FileSize Receive the file buffer size.
250
251 @return The file buffer.
252 **/
253 VOID *
254 BmGetFileBufferByFvFilePath (
255 IN EFI_DEVICE_PATH_PROTOCOL *FilePath,
256 OUT EFI_DEVICE_PATH_PROTOCOL **FullPath,
257 OUT UINTN *FileSize
258 )
259 {
260 EFI_STATUS Status;
261 UINTN Index;
262 EFI_DEVICE_PATH_PROTOCOL *FvFileNode;
263 EFI_HANDLE FvHandle;
264 EFI_LOADED_IMAGE_PROTOCOL *LoadedImage;
265 UINT32 AuthenticationStatus;
266 UINTN FvHandleCount;
267 EFI_HANDLE *FvHandles;
268 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
269 VOID *FileBuffer;
270
271 //
272 // Get the file buffer by using the exactly FilePath.
273 //
274 FvFileNode = FilePath;
275 Status = gBS->LocateDevicePath (&gEfiFirmwareVolume2ProtocolGuid, &FvFileNode, &FvHandle);
276 if (!EFI_ERROR (Status)) {
277 FileBuffer = GetFileBufferByFilePath (TRUE, FilePath, FileSize, &AuthenticationStatus);
278 if (FileBuffer != NULL) {
279 *FullPath = DuplicateDevicePath (FilePath);
280 }
281 return FileBuffer;
282 }
283
284 //
285 // Only wide match other FVs if it's a memory mapped FV file path.
286 //
287 if ((DevicePathType (FilePath) != HARDWARE_DEVICE_PATH) || (DevicePathSubType (FilePath) != HW_MEMMAP_DP)) {
288 return NULL;
289 }
290
291 FvFileNode = NextDevicePathNode (FilePath);
292
293 //
294 // Firstly find the FV file in current FV
295 //
296 gBS->HandleProtocol (
297 gImageHandle,
298 &gEfiLoadedImageProtocolGuid,
299 (VOID **) &LoadedImage
300 );
301 NewDevicePath = AppendDevicePathNode (DevicePathFromHandle (LoadedImage->DeviceHandle), FvFileNode);
302 FileBuffer = BmGetFileBufferByFvFilePath (NewDevicePath, FullPath, FileSize);
303 FreePool (NewDevicePath);
304
305 if (FileBuffer != NULL) {
306 return FileBuffer;
307 }
308
309 //
310 // Secondly find the FV file in all other FVs
311 //
312 gBS->LocateHandleBuffer (
313 ByProtocol,
314 &gEfiFirmwareVolume2ProtocolGuid,
315 NULL,
316 &FvHandleCount,
317 &FvHandles
318 );
319 for (Index = 0; (Index < FvHandleCount) && (FileBuffer == NULL); Index++) {
320 if (FvHandles[Index] == LoadedImage->DeviceHandle) {
321 //
322 // Skip current FV
323 //
324 continue;
325 }
326 NewDevicePath = AppendDevicePathNode (DevicePathFromHandle (FvHandles[Index]), FvFileNode);
327 FileBuffer = BmGetFileBufferByFvFilePath (NewDevicePath, FullPath, FileSize);
328 FreePool (NewDevicePath);
329 }
330
331 if (FvHandles != NULL) {
332 FreePool (FvHandles);
333 }
334 return FileBuffer;
335 }
336
337 /**
338 Check if it's a Device Path pointing to FV file.
339
340 The function doesn't garentee the device path points to existing FV file.
341
342 @param DevicePath Input device path.
343
344 @retval TRUE The device path is a FV File Device Path.
345 @retval FALSE The device path is NOT a FV File Device Path.
346 **/
347 BOOLEAN
348 BmIsFvFilePath (
349 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
350 )
351 {
352 EFI_STATUS Status;
353 EFI_HANDLE Handle;
354 EFI_DEVICE_PATH_PROTOCOL *Node;
355
356 Node = DevicePath;
357 Status = gBS->LocateDevicePath (&gEfiFirmwareVolume2ProtocolGuid, &Node, &Handle);
358 if (!EFI_ERROR (Status)) {
359 return TRUE;
360 }
361
362 if ((DevicePathType (DevicePath) == HARDWARE_DEVICE_PATH) && (DevicePathSubType (DevicePath) == HW_MEMMAP_DP)) {
363 DevicePath = NextDevicePathNode (DevicePath);
364 if ((DevicePathType (DevicePath) == MEDIA_DEVICE_PATH) && (DevicePathSubType (DevicePath) == MEDIA_PIWG_FW_FILE_DP)) {
365 return IsDevicePathEnd (NextDevicePathNode (DevicePath));
366 }
367 }
368 return FALSE;
369 }
370
371 /**
372 Check whether a USB device match the specified USB Class device path. This
373 function follows "Load Option Processing" behavior in UEFI specification.
374
375 @param UsbIo USB I/O protocol associated with the USB device.
376 @param UsbClass The USB Class device path to match.
377
378 @retval TRUE The USB device match the USB Class device path.
379 @retval FALSE The USB device does not match the USB Class device path.
380
381 **/
382 BOOLEAN
383 BmMatchUsbClass (
384 IN EFI_USB_IO_PROTOCOL *UsbIo,
385 IN USB_CLASS_DEVICE_PATH *UsbClass
386 )
387 {
388 EFI_STATUS Status;
389 EFI_USB_DEVICE_DESCRIPTOR DevDesc;
390 EFI_USB_INTERFACE_DESCRIPTOR IfDesc;
391 UINT8 DeviceClass;
392 UINT8 DeviceSubClass;
393 UINT8 DeviceProtocol;
394
395 if ((DevicePathType (UsbClass) != MESSAGING_DEVICE_PATH) ||
396 (DevicePathSubType (UsbClass) != MSG_USB_CLASS_DP)){
397 return FALSE;
398 }
399
400 //
401 // Check Vendor Id and Product Id.
402 //
403 Status = UsbIo->UsbGetDeviceDescriptor (UsbIo, &DevDesc);
404 if (EFI_ERROR (Status)) {
405 return FALSE;
406 }
407
408 if ((UsbClass->VendorId != 0xffff) &&
409 (UsbClass->VendorId != DevDesc.IdVendor)) {
410 return FALSE;
411 }
412
413 if ((UsbClass->ProductId != 0xffff) &&
414 (UsbClass->ProductId != DevDesc.IdProduct)) {
415 return FALSE;
416 }
417
418 DeviceClass = DevDesc.DeviceClass;
419 DeviceSubClass = DevDesc.DeviceSubClass;
420 DeviceProtocol = DevDesc.DeviceProtocol;
421 if (DeviceClass == 0) {
422 //
423 // If Class in Device Descriptor is set to 0, use the Class, SubClass and
424 // Protocol in Interface Descriptor instead.
425 //
426 Status = UsbIo->UsbGetInterfaceDescriptor (UsbIo, &IfDesc);
427 if (EFI_ERROR (Status)) {
428 return FALSE;
429 }
430
431 DeviceClass = IfDesc.InterfaceClass;
432 DeviceSubClass = IfDesc.InterfaceSubClass;
433 DeviceProtocol = IfDesc.InterfaceProtocol;
434 }
435
436 //
437 // Check Class, SubClass and Protocol.
438 //
439 if ((UsbClass->DeviceClass != 0xff) &&
440 (UsbClass->DeviceClass != DeviceClass)) {
441 return FALSE;
442 }
443
444 if ((UsbClass->DeviceSubClass != 0xff) &&
445 (UsbClass->DeviceSubClass != DeviceSubClass)) {
446 return FALSE;
447 }
448
449 if ((UsbClass->DeviceProtocol != 0xff) &&
450 (UsbClass->DeviceProtocol != DeviceProtocol)) {
451 return FALSE;
452 }
453
454 return TRUE;
455 }
456
457 /**
458 Eliminate the extra spaces in the Str to one space.
459
460 @param Str Input string info.
461 **/
462 VOID
463 BmEliminateExtraSpaces (
464 IN CHAR16 *Str
465 )
466 {
467 UINTN Index;
468 UINTN ActualIndex;
469
470 for (Index = 0, ActualIndex = 0; Str[Index] != L'\0'; Index++) {
471 if ((Str[Index] != L' ') || ((ActualIndex > 0) && (Str[ActualIndex - 1] != L' '))) {
472 Str[ActualIndex++] = Str[Index];
473 }
474 }
475 Str[ActualIndex] = L'\0';
476 }
477
478 /**
479 Try to get the controller's ATA/ATAPI description.
480
481 @param Handle Controller handle.
482
483 @return The description string.
484 **/
485 CHAR16 *
486 BmGetDescriptionFromDiskInfo (
487 IN EFI_HANDLE Handle
488 )
489 {
490 UINTN Index;
491 EFI_STATUS Status;
492 EFI_DISK_INFO_PROTOCOL *DiskInfo;
493 UINT32 BufferSize;
494 EFI_ATAPI_IDENTIFY_DATA IdentifyData;
495 EFI_SCSI_INQUIRY_DATA InquiryData;
496 CHAR16 *Description;
497 UINTN Length;
498 CONST UINTN ModelNameLength = 40;
499 CONST UINTN SerialNumberLength = 20;
500 CHAR8 *StrPtr;
501 UINT8 Temp;
502
503 Description = NULL;
504
505 Status = gBS->HandleProtocol (
506 Handle,
507 &gEfiDiskInfoProtocolGuid,
508 (VOID **) &DiskInfo
509 );
510 if (EFI_ERROR (Status)) {
511 return NULL;
512 }
513
514 if (CompareGuid (&DiskInfo->Interface, &gEfiDiskInfoAhciInterfaceGuid) ||
515 CompareGuid (&DiskInfo->Interface, &gEfiDiskInfoIdeInterfaceGuid)) {
516 BufferSize = sizeof (EFI_ATAPI_IDENTIFY_DATA);
517 Status = DiskInfo->Identify (
518 DiskInfo,
519 &IdentifyData,
520 &BufferSize
521 );
522 if (!EFI_ERROR (Status)) {
523 Description = AllocateZeroPool ((ModelNameLength + SerialNumberLength + 2) * sizeof (CHAR16));
524 ASSERT (Description != NULL);
525 for (Index = 0; Index + 1 < ModelNameLength; Index += 2) {
526 Description[Index] = (CHAR16) IdentifyData.ModelName[Index + 1];
527 Description[Index + 1] = (CHAR16) IdentifyData.ModelName[Index];
528 }
529
530 Length = Index;
531 Description[Length++] = L' ';
532
533 for (Index = 0; Index + 1 < SerialNumberLength; Index += 2) {
534 Description[Length + Index] = (CHAR16) IdentifyData.SerialNo[Index + 1];
535 Description[Length + Index + 1] = (CHAR16) IdentifyData.SerialNo[Index];
536 }
537 Length += Index;
538 Description[Length++] = L'\0';
539 ASSERT (Length == ModelNameLength + SerialNumberLength + 2);
540
541 BmEliminateExtraSpaces (Description);
542 }
543 } else if (CompareGuid (&DiskInfo->Interface, &gEfiDiskInfoScsiInterfaceGuid)) {
544 BufferSize = sizeof (EFI_SCSI_INQUIRY_DATA);
545 Status = DiskInfo->Inquiry (
546 DiskInfo,
547 &InquiryData,
548 &BufferSize
549 );
550 if (!EFI_ERROR (Status)) {
551 Description = AllocateZeroPool ((VENDOR_IDENTIFICATION_LENGTH + PRODUCT_IDENTIFICATION_LENGTH + 2) * sizeof (CHAR16));
552 ASSERT (Description != NULL);
553
554 //
555 // Per SCSI spec, EFI_SCSI_INQUIRY_DATA.Reserved_5_95[3 - 10] save the Verdor identification
556 // EFI_SCSI_INQUIRY_DATA.Reserved_5_95[11 - 26] save the product identification,
557 // Here combine the vendor identification and product identification to the description.
558 //
559 StrPtr = (CHAR8 *) (&InquiryData.Reserved_5_95[VENDOR_IDENTIFICATION_OFFSET]);
560 Temp = StrPtr[VENDOR_IDENTIFICATION_LENGTH];
561 StrPtr[VENDOR_IDENTIFICATION_LENGTH] = '\0';
562 AsciiStrToUnicodeStr (StrPtr, Description);
563 StrPtr[VENDOR_IDENTIFICATION_LENGTH] = Temp;
564
565 //
566 // Add one space at the middle of vendor information and product information.
567 //
568 Description[VENDOR_IDENTIFICATION_LENGTH] = L' ';
569
570 StrPtr = (CHAR8 *) (&InquiryData.Reserved_5_95[PRODUCT_IDENTIFICATION_OFFSET]);
571 StrPtr[PRODUCT_IDENTIFICATION_LENGTH] = '\0';
572 AsciiStrToUnicodeStr (StrPtr, Description + VENDOR_IDENTIFICATION_LENGTH + 1);
573
574 BmEliminateExtraSpaces (Description);
575 }
576 }
577
578 return Description;
579 }
580
581 /**
582 Try to get the controller's USB description.
583
584 @param Handle Controller handle.
585
586 @return The description string.
587 **/
588 CHAR16 *
589 BmGetUsbDescription (
590 IN EFI_HANDLE Handle
591 )
592 {
593 EFI_STATUS Status;
594 EFI_USB_IO_PROTOCOL *UsbIo;
595 CHAR16 NullChar;
596 CHAR16 *Manufacturer;
597 CHAR16 *Product;
598 CHAR16 *SerialNumber;
599 CHAR16 *Description;
600 EFI_USB_DEVICE_DESCRIPTOR DevDesc;
601 UINTN DescMaxSize;
602
603 Status = gBS->HandleProtocol (
604 Handle,
605 &gEfiUsbIoProtocolGuid,
606 (VOID **) &UsbIo
607 );
608 if (EFI_ERROR (Status)) {
609 return NULL;
610 }
611
612 NullChar = L'\0';
613
614 Status = UsbIo->UsbGetDeviceDescriptor (UsbIo, &DevDesc);
615 if (EFI_ERROR (Status)) {
616 return NULL;
617 }
618
619 Status = UsbIo->UsbGetStringDescriptor (
620 UsbIo,
621 mBmUsbLangId,
622 DevDesc.StrManufacturer,
623 &Manufacturer
624 );
625 if (EFI_ERROR (Status)) {
626 Manufacturer = &NullChar;
627 }
628
629 Status = UsbIo->UsbGetStringDescriptor (
630 UsbIo,
631 mBmUsbLangId,
632 DevDesc.StrProduct,
633 &Product
634 );
635 if (EFI_ERROR (Status)) {
636 Product = &NullChar;
637 }
638
639 Status = UsbIo->UsbGetStringDescriptor (
640 UsbIo,
641 mBmUsbLangId,
642 DevDesc.StrSerialNumber,
643 &SerialNumber
644 );
645 if (EFI_ERROR (Status)) {
646 SerialNumber = &NullChar;
647 }
648
649 if ((Manufacturer == &NullChar) &&
650 (Product == &NullChar) &&
651 (SerialNumber == &NullChar)
652 ) {
653 return NULL;
654 }
655
656 DescMaxSize = StrSize (Manufacturer) + StrSize (Product) + StrSize (SerialNumber);
657 Description = AllocateZeroPool (DescMaxSize);
658 ASSERT (Description != NULL);
659 StrCatS (Description, DescMaxSize/sizeof(CHAR16), Manufacturer);
660 StrCatS (Description, DescMaxSize/sizeof(CHAR16), L" ");
661
662 StrCatS (Description, DescMaxSize/sizeof(CHAR16), Product);
663 StrCatS (Description, DescMaxSize/sizeof(CHAR16), L" ");
664
665 StrCatS (Description, DescMaxSize/sizeof(CHAR16), SerialNumber);
666
667 if (Manufacturer != &NullChar) {
668 FreePool (Manufacturer);
669 }
670 if (Product != &NullChar) {
671 FreePool (Product);
672 }
673 if (SerialNumber != &NullChar) {
674 FreePool (SerialNumber);
675 }
676
677 BmEliminateExtraSpaces (Description);
678
679 return Description;
680 }
681
682 /**
683 Return the boot description for the controller based on the type.
684
685 @param Handle Controller handle.
686
687 @return The description string.
688 **/
689 CHAR16 *
690 BmGetMiscDescription (
691 IN EFI_HANDLE Handle
692 )
693 {
694 EFI_STATUS Status;
695 CHAR16 *Description;
696 EFI_BLOCK_IO_PROTOCOL *BlockIo;
697 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL *Fs;
698
699 switch (BmDevicePathType (DevicePathFromHandle (Handle))) {
700 case BmAcpiFloppyBoot:
701 Description = L"Floppy";
702 break;
703
704 case BmMessageAtapiBoot:
705 case BmMessageSataBoot:
706 Status = gBS->HandleProtocol (Handle, &gEfiBlockIoProtocolGuid, (VOID **) &BlockIo);
707 ASSERT_EFI_ERROR (Status);
708 //
709 // Assume a removable SATA device should be the DVD/CD device
710 //
711 Description = BlockIo->Media->RemovableMedia ? L"DVD/CDROM" : L"Hard Drive";
712 break;
713
714 case BmMessageUsbBoot:
715 Description = L"USB Device";
716 break;
717
718 case BmMessageScsiBoot:
719 Description = L"SCSI Device";
720 break;
721
722 case BmHardwareDeviceBoot:
723 Status = gBS->HandleProtocol (Handle, &gEfiBlockIoProtocolGuid, (VOID **) &BlockIo);
724 if (!EFI_ERROR (Status)) {
725 Description = BlockIo->Media->RemovableMedia ? L"Removable Disk" : L"Hard Drive";
726 } else {
727 Description = L"Misc Device";
728 }
729 break;
730
731 case BmMessageNetworkBoot:
732 Description = L"Network";
733 break;
734
735 case BmMessageHttpBoot:
736 Description = L"Http";
737 break;
738
739 default:
740 Status = gBS->HandleProtocol (Handle, &gEfiSimpleFileSystemProtocolGuid, (VOID **) &Fs);
741 if (!EFI_ERROR (Status)) {
742 Description = L"Non-Block Boot Device";
743 } else {
744 Description = L"Misc Device";
745 }
746 break;
747 }
748
749 return AllocateCopyPool (StrSize (Description), Description);
750 }
751
752 /**
753 Register the platform provided boot description handler.
754
755 @param Handler The platform provided boot description handler
756
757 @retval EFI_SUCCESS The handler was registered successfully.
758 @retval EFI_ALREADY_STARTED The handler was already registered.
759 @retval EFI_OUT_OF_RESOURCES There is not enough resource to perform the registration.
760 **/
761 EFI_STATUS
762 EFIAPI
763 EfiBootManagerRegisterBootDescriptionHandler (
764 IN EFI_BOOT_MANAGER_BOOT_DESCRIPTION_HANDLER Handler
765 )
766 {
767 LIST_ENTRY *Link;
768 BM_BOOT_DESCRIPTION_ENTRY *Entry;
769
770 for ( Link = GetFirstNode (&mPlatformBootDescriptionHandlers)
771 ; !IsNull (&mPlatformBootDescriptionHandlers, Link)
772 ; Link = GetNextNode (&mPlatformBootDescriptionHandlers, Link)
773 ) {
774 Entry = CR (Link, BM_BOOT_DESCRIPTION_ENTRY, Link, BM_BOOT_DESCRIPTION_ENTRY_SIGNATURE);
775 if (Entry->Handler == Handler) {
776 return EFI_ALREADY_STARTED;
777 }
778 }
779
780 Entry = AllocatePool (sizeof (BM_BOOT_DESCRIPTION_ENTRY));
781 if (Entry == NULL) {
782 return EFI_OUT_OF_RESOURCES;
783 }
784
785 Entry->Signature = BM_BOOT_DESCRIPTION_ENTRY_SIGNATURE;
786 Entry->Handler = Handler;
787 InsertTailList (&mPlatformBootDescriptionHandlers, &Entry->Link);
788 return EFI_SUCCESS;
789 }
790
791 BM_GET_BOOT_DESCRIPTION mBmBootDescriptionHandlers[] = {
792 BmGetUsbDescription,
793 BmGetDescriptionFromDiskInfo,
794 BmGetMiscDescription
795 };
796
797 /**
798 Return the boot description for the controller.
799
800 @param Handle Controller handle.
801
802 @return The description string.
803 **/
804 CHAR16 *
805 BmGetBootDescription (
806 IN EFI_HANDLE Handle
807 )
808 {
809 LIST_ENTRY *Link;
810 BM_BOOT_DESCRIPTION_ENTRY *Entry;
811 CHAR16 *Description;
812 CHAR16 *DefaultDescription;
813 CHAR16 *Temp;
814 UINTN Index;
815
816 //
817 // Firstly get the default boot description
818 //
819 DefaultDescription = NULL;
820 for (Index = 0; Index < sizeof (mBmBootDescriptionHandlers) / sizeof (mBmBootDescriptionHandlers[0]); Index++) {
821 DefaultDescription = mBmBootDescriptionHandlers[Index] (Handle);
822 if (DefaultDescription != NULL) {
823 //
824 // Avoid description confusion between UEFI & Legacy boot option by adding "UEFI " prefix
825 // ONLY for core provided boot description handler.
826 //
827 Temp = AllocatePool (StrSize (DefaultDescription) + sizeof (mBmUefiPrefix));
828 ASSERT (Temp != NULL);
829 StrCpyS ( Temp,
830 (StrSize (DefaultDescription) + sizeof (mBmUefiPrefix))/sizeof(CHAR16),
831 mBmUefiPrefix
832 );
833 StrCatS ( Temp,
834 (StrSize (DefaultDescription) + sizeof (mBmUefiPrefix))/sizeof(CHAR16),
835 DefaultDescription
836 );
837 FreePool (DefaultDescription);
838 DefaultDescription = Temp;
839 break;
840 }
841 }
842 ASSERT (DefaultDescription != NULL);
843
844 //
845 // Secondly query platform for the better boot description
846 //
847 for ( Link = GetFirstNode (&mPlatformBootDescriptionHandlers)
848 ; !IsNull (&mPlatformBootDescriptionHandlers, Link)
849 ; Link = GetNextNode (&mPlatformBootDescriptionHandlers, Link)
850 ) {
851 Entry = CR (Link, BM_BOOT_DESCRIPTION_ENTRY, Link, BM_BOOT_DESCRIPTION_ENTRY_SIGNATURE);
852 Description = Entry->Handler (Handle, DefaultDescription);
853 if (Description != NULL) {
854 FreePool (DefaultDescription);
855 return Description;
856 }
857 }
858
859 return DefaultDescription;
860 }
861
862 /**
863 Check whether a USB device match the specified USB WWID device path. This
864 function follows "Load Option Processing" behavior in UEFI specification.
865
866 @param UsbIo USB I/O protocol associated with the USB device.
867 @param UsbWwid The USB WWID device path to match.
868
869 @retval TRUE The USB device match the USB WWID device path.
870 @retval FALSE The USB device does not match the USB WWID device path.
871
872 **/
873 BOOLEAN
874 BmMatchUsbWwid (
875 IN EFI_USB_IO_PROTOCOL *UsbIo,
876 IN USB_WWID_DEVICE_PATH *UsbWwid
877 )
878 {
879 EFI_STATUS Status;
880 EFI_USB_DEVICE_DESCRIPTOR DevDesc;
881 EFI_USB_INTERFACE_DESCRIPTOR IfDesc;
882 UINT16 *LangIdTable;
883 UINT16 TableSize;
884 UINT16 Index;
885 CHAR16 *CompareStr;
886 UINTN CompareLen;
887 CHAR16 *SerialNumberStr;
888 UINTN Length;
889
890 if ((DevicePathType (UsbWwid) != MESSAGING_DEVICE_PATH) ||
891 (DevicePathSubType (UsbWwid) != MSG_USB_WWID_DP)) {
892 return FALSE;
893 }
894
895 //
896 // Check Vendor Id and Product Id.
897 //
898 Status = UsbIo->UsbGetDeviceDescriptor (UsbIo, &DevDesc);
899 if (EFI_ERROR (Status)) {
900 return FALSE;
901 }
902 if ((DevDesc.IdVendor != UsbWwid->VendorId) ||
903 (DevDesc.IdProduct != UsbWwid->ProductId)) {
904 return FALSE;
905 }
906
907 //
908 // Check Interface Number.
909 //
910 Status = UsbIo->UsbGetInterfaceDescriptor (UsbIo, &IfDesc);
911 if (EFI_ERROR (Status)) {
912 return FALSE;
913 }
914 if (IfDesc.InterfaceNumber != UsbWwid->InterfaceNumber) {
915 return FALSE;
916 }
917
918 //
919 // Check Serial Number.
920 //
921 if (DevDesc.StrSerialNumber == 0) {
922 return FALSE;
923 }
924
925 //
926 // Get all supported languages.
927 //
928 TableSize = 0;
929 LangIdTable = NULL;
930 Status = UsbIo->UsbGetSupportedLanguages (UsbIo, &LangIdTable, &TableSize);
931 if (EFI_ERROR (Status) || (TableSize == 0) || (LangIdTable == NULL)) {
932 return FALSE;
933 }
934
935 //
936 // Serial number in USB WWID device path is the last 64-or-less UTF-16 characters.
937 //
938 CompareStr = (CHAR16 *) (UINTN) (UsbWwid + 1);
939 CompareLen = (DevicePathNodeLength (UsbWwid) - sizeof (USB_WWID_DEVICE_PATH)) / sizeof (CHAR16);
940 if (CompareStr[CompareLen - 1] == L'\0') {
941 CompareLen--;
942 }
943
944 //
945 // Compare serial number in each supported language.
946 //
947 for (Index = 0; Index < TableSize / sizeof (UINT16); Index++) {
948 SerialNumberStr = NULL;
949 Status = UsbIo->UsbGetStringDescriptor (
950 UsbIo,
951 LangIdTable[Index],
952 DevDesc.StrSerialNumber,
953 &SerialNumberStr
954 );
955 if (EFI_ERROR (Status) || (SerialNumberStr == NULL)) {
956 continue;
957 }
958
959 Length = StrLen (SerialNumberStr);
960 if ((Length >= CompareLen) &&
961 (CompareMem (SerialNumberStr + Length - CompareLen, CompareStr, CompareLen * sizeof (CHAR16)) == 0)) {
962 FreePool (SerialNumberStr);
963 return TRUE;
964 }
965
966 FreePool (SerialNumberStr);
967 }
968
969 return FALSE;
970 }
971
972 /**
973 Find a USB device which match the specified short-form device path start with
974 USB Class or USB WWID device path. If ParentDevicePath is NULL, this function
975 will search in all USB devices of the platform. If ParentDevicePath is not NULL,
976 this function will only search in its child devices.
977
978 @param DevicePath The device path that contains USB Class or USB WWID device path.
979 @param ParentDevicePathSize The length of the device path before the USB Class or
980 USB WWID device path.
981 @param UsbIoHandleCount A pointer to the count of the returned USB IO handles.
982
983 @retval NULL The matched USB IO handles cannot be found.
984 @retval other The matched USB IO handles.
985
986 **/
987 EFI_HANDLE *
988 BmFindUsbDevice (
989 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,
990 IN UINTN ParentDevicePathSize,
991 OUT UINTN *UsbIoHandleCount
992 )
993 {
994 EFI_STATUS Status;
995 EFI_HANDLE *UsbIoHandles;
996 EFI_DEVICE_PATH_PROTOCOL *UsbIoDevicePath;
997 EFI_USB_IO_PROTOCOL *UsbIo;
998 UINTN Index;
999 BOOLEAN Matched;
1000
1001 ASSERT (UsbIoHandleCount != NULL);
1002
1003 //
1004 // Get all UsbIo Handles.
1005 //
1006 Status = gBS->LocateHandleBuffer (
1007 ByProtocol,
1008 &gEfiUsbIoProtocolGuid,
1009 NULL,
1010 UsbIoHandleCount,
1011 &UsbIoHandles
1012 );
1013 if (EFI_ERROR (Status)) {
1014 *UsbIoHandleCount = 0;
1015 UsbIoHandles = NULL;
1016 }
1017
1018 for (Index = 0; Index < *UsbIoHandleCount; ) {
1019 //
1020 // Get the Usb IO interface.
1021 //
1022 Status = gBS->HandleProtocol(
1023 UsbIoHandles[Index],
1024 &gEfiUsbIoProtocolGuid,
1025 (VOID **) &UsbIo
1026 );
1027 UsbIoDevicePath = DevicePathFromHandle (UsbIoHandles[Index]);
1028 Matched = FALSE;
1029 if (!EFI_ERROR (Status) && (UsbIoDevicePath != NULL)) {
1030
1031 //
1032 // Compare starting part of UsbIoHandle's device path with ParentDevicePath.
1033 //
1034 if (CompareMem (UsbIoDevicePath, DevicePath, ParentDevicePathSize) == 0) {
1035 if (BmMatchUsbClass (UsbIo, (USB_CLASS_DEVICE_PATH *) ((UINTN) DevicePath + ParentDevicePathSize)) ||
1036 BmMatchUsbWwid (UsbIo, (USB_WWID_DEVICE_PATH *) ((UINTN) DevicePath + ParentDevicePathSize))) {
1037 Matched = TRUE;
1038 }
1039 }
1040 }
1041
1042 if (!Matched) {
1043 (*UsbIoHandleCount) --;
1044 CopyMem (&UsbIoHandles[Index], &UsbIoHandles[Index + 1], (*UsbIoHandleCount - Index) * sizeof (EFI_HANDLE));
1045 } else {
1046 Index++;
1047 }
1048 }
1049
1050 return UsbIoHandles;
1051 }
1052
1053 /**
1054 Expand USB Class or USB WWID device path node to be full device path of a USB
1055 device in platform.
1056
1057 This function support following 4 cases:
1058 1) Boot Option device path starts with a USB Class or USB WWID device path,
1059 and there is no Media FilePath device path in the end.
1060 In this case, it will follow Removable Media Boot Behavior.
1061 2) Boot Option device path starts with a USB Class or USB WWID device path,
1062 and ended with Media FilePath device path.
1063 3) Boot Option device path starts with a full device path to a USB Host Controller,
1064 contains a USB Class or USB WWID device path node, while not ended with Media
1065 FilePath device path. In this case, it will follow Removable Media Boot Behavior.
1066 4) Boot Option device path starts with a full device path to a USB Host Controller,
1067 contains a USB Class or USB WWID device path node, and ended with Media
1068 FilePath device path.
1069
1070 @param FilePath The device path pointing to a load option.
1071 It could be a short-form device path.
1072 @param FullPath Return the full device path of the load option after
1073 short-form device path expanding.
1074 Caller is responsible to free it.
1075 @param FileSize Return the load option size.
1076 @param ShortformNode Pointer to the USB short-form device path node in the FilePath buffer.
1077
1078 @return The load option buffer. Caller is responsible to free the memory.
1079 **/
1080 VOID *
1081 BmExpandUsbDevicePath (
1082 IN EFI_DEVICE_PATH_PROTOCOL *FilePath,
1083 OUT EFI_DEVICE_PATH_PROTOCOL **FullPath,
1084 OUT UINTN *FileSize,
1085 IN EFI_DEVICE_PATH_PROTOCOL *ShortformNode
1086 )
1087 {
1088 UINTN ParentDevicePathSize;
1089 EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath;
1090 EFI_DEVICE_PATH_PROTOCOL *FullDevicePath;
1091 EFI_HANDLE *Handles;
1092 UINTN HandleCount;
1093 UINTN Index;
1094 VOID *FileBuffer;
1095
1096 ParentDevicePathSize = (UINTN) ShortformNode - (UINTN) FilePath;
1097 RemainingDevicePath = NextDevicePathNode (ShortformNode);
1098 FileBuffer = NULL;
1099 Handles = BmFindUsbDevice (FilePath, ParentDevicePathSize, &HandleCount);
1100
1101 for (Index = 0; (Index < HandleCount) && (FileBuffer == NULL); Index++) {
1102 FullDevicePath = AppendDevicePath (DevicePathFromHandle (Handles[Index]), RemainingDevicePath);
1103 FileBuffer = BmGetLoadOptionBuffer (FullDevicePath, FullPath, FileSize);
1104 FreePool (FullDevicePath);
1105 }
1106
1107 if (Handles != NULL) {
1108 FreePool (Handles);
1109 }
1110
1111 return FileBuffer;
1112 }
1113
1114 /**
1115 Expand File-path device path node to be full device path in platform.
1116
1117 @param FilePath The device path pointing to a load option.
1118 It could be a short-form device path.
1119 @param FullPath Return the full device path of the load option after
1120 short-form device path expanding.
1121 Caller is responsible to free it.
1122 @param FileSize Return the load option size.
1123
1124 @return The load option buffer. Caller is responsible to free the memory.
1125 **/
1126 VOID *
1127 BmExpandFileDevicePath (
1128 IN EFI_DEVICE_PATH_PROTOCOL *FilePath,
1129 OUT EFI_DEVICE_PATH_PROTOCOL **FullPath,
1130 OUT UINTN *FileSize
1131 )
1132 {
1133 EFI_STATUS Status;
1134 UINTN Index;
1135 UINTN HandleCount;
1136 EFI_HANDLE *Handles;
1137 EFI_BLOCK_IO_PROTOCOL *BlockIo;
1138 UINTN MediaType;
1139 EFI_DEVICE_PATH_PROTOCOL *FullDevicePath;
1140 VOID *FileBuffer;
1141 UINT32 AuthenticationStatus;
1142
1143 EfiBootManagerConnectAll ();
1144 Status = gBS->LocateHandleBuffer (ByProtocol, &gEfiSimpleFileSystemProtocolGuid, NULL, &HandleCount, &Handles);
1145 if (EFI_ERROR (Status)) {
1146 HandleCount = 0;
1147 Handles = NULL;
1148 }
1149
1150 //
1151 // Enumerate all removable media devices followed by all fixed media devices,
1152 // followed by media devices which don't layer on block io.
1153 //
1154 for (MediaType = 0; MediaType < 3; MediaType++) {
1155 for (Index = 0; Index < HandleCount; Index++) {
1156 Status = gBS->HandleProtocol (Handles[Index], &gEfiBlockIoProtocolGuid, (VOID *) &BlockIo);
1157 if (EFI_ERROR (Status)) {
1158 BlockIo = NULL;
1159 }
1160 if ((MediaType == 0 && BlockIo != NULL && BlockIo->Media->RemovableMedia) ||
1161 (MediaType == 1 && BlockIo != NULL && !BlockIo->Media->RemovableMedia) ||
1162 (MediaType == 2 && BlockIo == NULL)
1163 ) {
1164 FullDevicePath = AppendDevicePath (DevicePathFromHandle (Handles[Index]), FilePath);
1165 FileBuffer = GetFileBufferByFilePath (TRUE, FullDevicePath, FileSize, &AuthenticationStatus);
1166 if (FileBuffer != NULL) {
1167 *FullPath = FullDevicePath;
1168 FreePool (Handles);
1169 return FileBuffer;
1170 }
1171 FreePool (FullDevicePath);
1172 }
1173 }
1174 }
1175
1176 if (Handles != NULL) {
1177 FreePool (Handles);
1178 }
1179
1180 *FullPath = NULL;
1181 return NULL;
1182 }
1183
1184 /**
1185 Save the partition DevicePath to the CachedDevicePath as the first instance.
1186
1187 @param CachedDevicePath The device path cache.
1188 @param DevicePath The partition device path to be cached.
1189 **/
1190 VOID
1191 BmCachePartitionDevicePath (
1192 IN OUT EFI_DEVICE_PATH_PROTOCOL **CachedDevicePath,
1193 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
1194 )
1195 {
1196 EFI_DEVICE_PATH_PROTOCOL *TempDevicePath;
1197 UINTN Count;
1198
1199 if (BmMatchDevicePaths (*CachedDevicePath, DevicePath)) {
1200 TempDevicePath = *CachedDevicePath;
1201 *CachedDevicePath = BmDelPartMatchInstance (*CachedDevicePath, DevicePath);
1202 FreePool (TempDevicePath);
1203 }
1204
1205 if (*CachedDevicePath == NULL) {
1206 *CachedDevicePath = DuplicateDevicePath (DevicePath);
1207 return;
1208 }
1209
1210 TempDevicePath = *CachedDevicePath;
1211 *CachedDevicePath = AppendDevicePathInstance (DevicePath, *CachedDevicePath);
1212 if (TempDevicePath != NULL) {
1213 FreePool (TempDevicePath);
1214 }
1215
1216 //
1217 // Here limit the device path instance number to 12, which is max number for a system support 3 IDE controller
1218 // If the user try to boot many OS in different HDs or partitions, in theory, the 'HDDP' variable maybe become larger and larger.
1219 //
1220 Count = 0;
1221 TempDevicePath = *CachedDevicePath;
1222 while (!IsDevicePathEnd (TempDevicePath)) {
1223 TempDevicePath = NextDevicePathNode (TempDevicePath);
1224 //
1225 // Parse one instance
1226 //
1227 while (!IsDevicePathEndType (TempDevicePath)) {
1228 TempDevicePath = NextDevicePathNode (TempDevicePath);
1229 }
1230 Count++;
1231 //
1232 // If the CachedDevicePath variable contain too much instance, only remain 12 instances.
1233 //
1234 if (Count == 12) {
1235 SetDevicePathEndNode (TempDevicePath);
1236 break;
1237 }
1238 }
1239 }
1240
1241 /**
1242 Expand a device path that starts with a hard drive media device path node to be a
1243 full device path that includes the full hardware path to the device. We need
1244 to do this so it can be booted. As an optimization the front match (the part point
1245 to the partition node. E.g. ACPI() /PCI()/ATA()/Partition() ) is saved in a variable
1246 so a connect all is not required on every boot. All successful history device path
1247 which point to partition node (the front part) will be saved.
1248
1249 @param FilePath The device path pointing to a load option.
1250 It could be a short-form device path.
1251 @param FullPath Return the full device path of the load option after
1252 short-form device path expanding.
1253 Caller is responsible to free it.
1254 @param FileSize Return the load option size.
1255
1256 @return The load option buffer. Caller is responsible to free the memory.
1257 **/
1258 VOID *
1259 BmExpandPartitionDevicePath (
1260 IN EFI_DEVICE_PATH_PROTOCOL *FilePath,
1261 OUT EFI_DEVICE_PATH_PROTOCOL **FullPath,
1262 OUT UINTN *FileSize
1263 )
1264 {
1265 EFI_STATUS Status;
1266 UINTN BlockIoHandleCount;
1267 EFI_HANDLE *BlockIoBuffer;
1268 VOID *FileBuffer;
1269 EFI_DEVICE_PATH_PROTOCOL *BlockIoDevicePath;
1270 UINTN Index;
1271 EFI_DEVICE_PATH_PROTOCOL *CachedDevicePath;
1272 EFI_DEVICE_PATH_PROTOCOL *TempNewDevicePath;
1273 EFI_DEVICE_PATH_PROTOCOL *TempDevicePath;
1274 UINTN CachedDevicePathSize;
1275 BOOLEAN NeedAdjust;
1276 EFI_DEVICE_PATH_PROTOCOL *Instance;
1277 UINTN Size;
1278
1279 FileBuffer = NULL;
1280 //
1281 // Check if there is prestore 'HDDP' variable.
1282 // If exist, search the front path which point to partition node in the variable instants.
1283 // If fail to find or 'HDDP' not exist, reconnect all and search in all system
1284 //
1285 GetVariable2 (L"HDDP", &mBmHardDriveBootVariableGuid, (VOID **) &CachedDevicePath, &CachedDevicePathSize);
1286
1287 //
1288 // Delete the invalid 'HDDP' variable.
1289 //
1290 if ((CachedDevicePath != NULL) && !IsDevicePathValid (CachedDevicePath, CachedDevicePathSize)) {
1291 FreePool (CachedDevicePath);
1292 CachedDevicePath = NULL;
1293 Status = gRT->SetVariable (
1294 L"HDDP",
1295 &mBmHardDriveBootVariableGuid,
1296 0,
1297 0,
1298 NULL
1299 );
1300 ASSERT_EFI_ERROR (Status);
1301 }
1302
1303 if (CachedDevicePath != NULL) {
1304 TempNewDevicePath = CachedDevicePath;
1305 NeedAdjust = FALSE;
1306 do {
1307 //
1308 // Check every instance of the variable
1309 // First, check whether the instance contain the partition node, which is needed for distinguishing multi
1310 // partial partition boot option. Second, check whether the instance could be connected.
1311 //
1312 Instance = GetNextDevicePathInstance (&TempNewDevicePath, &Size);
1313 if (BmMatchPartitionDevicePathNode (Instance, (HARDDRIVE_DEVICE_PATH *) FilePath)) {
1314 //
1315 // Connect the device path instance, the device path point to hard drive media device path node
1316 // e.g. ACPI() /PCI()/ATA()/Partition()
1317 //
1318 Status = EfiBootManagerConnectDevicePath (Instance, NULL);
1319 if (!EFI_ERROR (Status)) {
1320 TempDevicePath = AppendDevicePath (Instance, NextDevicePathNode (FilePath));
1321 FileBuffer = BmGetLoadOptionBuffer (TempDevicePath, FullPath, FileSize);
1322 FreePool (TempDevicePath);
1323
1324 if (FileBuffer != NULL) {
1325 //
1326 // Adjust the 'HDDP' instances sequence if the matched one is not first one.
1327 //
1328 if (NeedAdjust) {
1329 BmCachePartitionDevicePath (&CachedDevicePath, Instance);
1330 //
1331 // Save the matching Device Path so we don't need to do a connect all next time
1332 // Failing to save only impacts performance next time expanding the short-form device path
1333 //
1334 Status = gRT->SetVariable (
1335 L"HDDP",
1336 &mBmHardDriveBootVariableGuid,
1337 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_NON_VOLATILE,
1338 GetDevicePathSize (CachedDevicePath),
1339 CachedDevicePath
1340 );
1341 }
1342
1343 FreePool (Instance);
1344 FreePool (CachedDevicePath);
1345 return FileBuffer;
1346 }
1347 }
1348 }
1349 //
1350 // Come here means the first instance is not matched
1351 //
1352 NeedAdjust = TRUE;
1353 FreePool(Instance);
1354 } while (TempNewDevicePath != NULL);
1355 }
1356
1357 //
1358 // If we get here we fail to find or 'HDDP' not exist, and now we need
1359 // to search all devices in the system for a matched partition
1360 //
1361 EfiBootManagerConnectAll ();
1362 Status = gBS->LocateHandleBuffer (ByProtocol, &gEfiBlockIoProtocolGuid, NULL, &BlockIoHandleCount, &BlockIoBuffer);
1363 if (EFI_ERROR (Status)) {
1364 BlockIoHandleCount = 0;
1365 BlockIoBuffer = NULL;
1366 }
1367 //
1368 // Loop through all the device handles that support the BLOCK_IO Protocol
1369 //
1370 for (Index = 0; Index < BlockIoHandleCount; Index++) {
1371 BlockIoDevicePath = DevicePathFromHandle (BlockIoBuffer[Index]);
1372 if (BlockIoDevicePath == NULL) {
1373 continue;
1374 }
1375
1376 if (BmMatchPartitionDevicePathNode (BlockIoDevicePath, (HARDDRIVE_DEVICE_PATH *) FilePath)) {
1377 //
1378 // Find the matched partition device path
1379 //
1380 TempDevicePath = AppendDevicePath (BlockIoDevicePath, NextDevicePathNode (FilePath));
1381 FileBuffer = BmGetLoadOptionBuffer (TempDevicePath, FullPath, FileSize);
1382 FreePool (TempDevicePath);
1383
1384 if (FileBuffer != NULL) {
1385 BmCachePartitionDevicePath (&CachedDevicePath, BlockIoDevicePath);
1386
1387 //
1388 // Save the matching Device Path so we don't need to do a connect all next time
1389 // Failing to save only impacts performance next time expanding the short-form device path
1390 //
1391 Status = gRT->SetVariable (
1392 L"HDDP",
1393 &mBmHardDriveBootVariableGuid,
1394 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_NON_VOLATILE,
1395 GetDevicePathSize (CachedDevicePath),
1396 CachedDevicePath
1397 );
1398
1399 break;
1400 }
1401 }
1402 }
1403
1404 if (CachedDevicePath != NULL) {
1405 FreePool (CachedDevicePath);
1406 }
1407 if (BlockIoBuffer != NULL) {
1408 FreePool (BlockIoBuffer);
1409 }
1410 return FileBuffer;
1411 }
1412
1413 /**
1414 Expand the media device path which points to a BlockIo or SimpleFileSystem instance
1415 by appending EFI_REMOVABLE_MEDIA_FILE_NAME.
1416
1417 @param DevicePath The media device path pointing to a BlockIo or SimpleFileSystem instance.
1418 @param FullPath Return the full device path pointing to the load option.
1419 @param FileSize Return the size of the load option.
1420
1421 @return The load option buffer.
1422 **/
1423 VOID *
1424 BmExpandMediaDevicePath (
1425 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,
1426 OUT EFI_DEVICE_PATH_PROTOCOL **FullPath,
1427 OUT UINTN *FileSize
1428 )
1429 {
1430 EFI_STATUS Status;
1431 EFI_HANDLE Handle;
1432 EFI_BLOCK_IO_PROTOCOL *BlockIo;
1433 VOID *Buffer;
1434 EFI_DEVICE_PATH_PROTOCOL *TempDevicePath;
1435 UINTN Size;
1436 UINTN TempSize;
1437 EFI_HANDLE *SimpleFileSystemHandles;
1438 UINTN NumberSimpleFileSystemHandles;
1439 UINTN Index;
1440 VOID *FileBuffer;
1441 UINT32 AuthenticationStatus;
1442
1443 //
1444 // Check whether the device is connected
1445 //
1446 TempDevicePath = DevicePath;
1447 Status = gBS->LocateDevicePath (&gEfiSimpleFileSystemProtocolGuid, &TempDevicePath, &Handle);
1448 if (!EFI_ERROR (Status)) {
1449 ASSERT (IsDevicePathEnd (TempDevicePath));
1450
1451 TempDevicePath = FileDevicePath (Handle, EFI_REMOVABLE_MEDIA_FILE_NAME);
1452 FileBuffer = GetFileBufferByFilePath (TRUE, TempDevicePath, FileSize, &AuthenticationStatus);
1453 if (FileBuffer == NULL) {
1454 FreePool (TempDevicePath);
1455 TempDevicePath = NULL;
1456 }
1457 *FullPath = TempDevicePath;
1458 return FileBuffer;
1459 }
1460
1461 //
1462 // For device boot option only pointing to the removable device handle,
1463 // should make sure all its children handles (its child partion or media handles) are created and connected.
1464 //
1465 gBS->ConnectController (Handle, NULL, NULL, TRUE);
1466
1467 //
1468 // Issue a dummy read to the device to check for media change.
1469 // When the removable media is changed, any Block IO read/write will
1470 // cause the BlockIo protocol be reinstalled and EFI_MEDIA_CHANGED is
1471 // returned. After the Block IO protocol is reinstalled, subsequent
1472 // Block IO read/write will success.
1473 //
1474 Status = gBS->LocateDevicePath (&gEfiBlockIoProtocolGuid, &TempDevicePath, &Handle);
1475 ASSERT_EFI_ERROR (Status);
1476 Status = gBS->HandleProtocol (Handle, &gEfiBlockIoProtocolGuid, (VOID **) &BlockIo);
1477 ASSERT_EFI_ERROR (Status);
1478 Buffer = AllocatePool (BlockIo->Media->BlockSize);
1479 if (Buffer != NULL) {
1480 BlockIo->ReadBlocks (
1481 BlockIo,
1482 BlockIo->Media->MediaId,
1483 0,
1484 BlockIo->Media->BlockSize,
1485 Buffer
1486 );
1487 FreePool (Buffer);
1488 }
1489
1490 //
1491 // Detect the the default boot file from removable Media
1492 //
1493 FileBuffer = NULL;
1494 *FullPath = NULL;
1495 Size = GetDevicePathSize (DevicePath) - END_DEVICE_PATH_LENGTH;
1496 gBS->LocateHandleBuffer (
1497 ByProtocol,
1498 &gEfiSimpleFileSystemProtocolGuid,
1499 NULL,
1500 &NumberSimpleFileSystemHandles,
1501 &SimpleFileSystemHandles
1502 );
1503 for (Index = 0; Index < NumberSimpleFileSystemHandles; Index++) {
1504 //
1505 // Get the device path size of SimpleFileSystem handle
1506 //
1507 TempDevicePath = DevicePathFromHandle (SimpleFileSystemHandles[Index]);
1508 TempSize = GetDevicePathSize (TempDevicePath) - END_DEVICE_PATH_LENGTH;
1509 //
1510 // Check whether the device path of boot option is part of the SimpleFileSystem handle's device path
1511 //
1512 if ((Size <= TempSize) && (CompareMem (TempDevicePath, DevicePath, Size) == 0)) {
1513 TempDevicePath = FileDevicePath (SimpleFileSystemHandles[Index], EFI_REMOVABLE_MEDIA_FILE_NAME);
1514 FileBuffer = GetFileBufferByFilePath (TRUE, TempDevicePath, FileSize, &AuthenticationStatus);
1515 if (FileBuffer != NULL) {
1516 *FullPath = TempDevicePath;
1517 break;
1518 }
1519 FreePool (TempDevicePath);
1520 }
1521 }
1522
1523 if (SimpleFileSystemHandles != NULL) {
1524 FreePool (SimpleFileSystemHandles);
1525 }
1526
1527 return FileBuffer;
1528 }
1529
1530 /**
1531 Check whether Left and Right are the same without matching the specific
1532 device path data in IP device path and URI device path node.
1533
1534 @retval TRUE Left and Right are the same.
1535 @retval FALSE Left and Right are the different.
1536 **/
1537 BOOLEAN
1538 BmMatchHttpBootDevicePath (
1539 IN EFI_DEVICE_PATH_PROTOCOL *Left,
1540 IN EFI_DEVICE_PATH_PROTOCOL *Right
1541 )
1542 {
1543 for (; !IsDevicePathEnd (Left) && !IsDevicePathEnd (Right)
1544 ; Left = NextDevicePathNode (Left), Right = NextDevicePathNode (Right)
1545 ) {
1546 if (CompareMem (Left, Right, DevicePathNodeLength (Left)) != 0) {
1547 if ((DevicePathType (Left) != MESSAGING_DEVICE_PATH) || (DevicePathType (Right) != MESSAGING_DEVICE_PATH)) {
1548 return FALSE;
1549 }
1550
1551 if (((DevicePathSubType (Left) != MSG_IPv4_DP) || (DevicePathSubType (Right) != MSG_IPv4_DP)) &&
1552 ((DevicePathSubType (Left) != MSG_IPv6_DP) || (DevicePathSubType (Right) != MSG_IPv6_DP)) &&
1553 ((DevicePathSubType (Left) != MSG_URI_DP) || (DevicePathSubType (Right) != MSG_URI_DP))
1554 ) {
1555 return FALSE;
1556 }
1557 }
1558 }
1559 return (BOOLEAN) (IsDevicePathEnd (Left) && IsDevicePathEnd (Right));
1560 }
1561
1562 /**
1563 Get the file buffer from Load File instance.
1564
1565 @param FilePath The media device path pointing to a LoadFile instance.
1566 @param FullPath Return the full device path pointing to the load option.
1567 @param FileSize Return the size of the load option.
1568
1569 @return The load option buffer.
1570 **/
1571 VOID *
1572 BmGetFileBufferFromLoadFile (
1573 IN EFI_DEVICE_PATH_PROTOCOL *FilePath,
1574 OUT EFI_DEVICE_PATH_PROTOCOL **FullPath,
1575 OUT UINTN *FileSize
1576 )
1577 {
1578 EFI_STATUS Status;
1579 EFI_HANDLE Handle;
1580 VOID *FileBuffer;
1581 EFI_HANDLE *Handles;
1582 UINTN HandleCount;
1583 UINTN Index;
1584 EFI_DEVICE_PATH_PROTOCOL *Node;
1585 EFI_LOAD_FILE_PROTOCOL *LoadFile;
1586 UINTN BufferSize;
1587
1588 //
1589 // Get file buffer from load file instance.
1590 //
1591 Node = FilePath;
1592 Status = gBS->LocateDevicePath (&gEfiLoadFileProtocolGuid, &Node, &Handle);
1593 if (!EFI_ERROR (Status) && IsDevicePathEnd (Node)) {
1594 //
1595 // When wide match happens, pass full device path to LoadFile (),
1596 // otherwise, pass remaining device path to LoadFile ().
1597 //
1598 FilePath = Node;
1599 } else {
1600 Handle = NULL;
1601 //
1602 // Use wide match algorithm to find one when
1603 // cannot find a LoadFile instance to exactly match the FilePath
1604 //
1605 Status = gBS->LocateHandleBuffer (
1606 ByProtocol,
1607 &gEfiLoadFileProtocolGuid,
1608 NULL,
1609 &HandleCount,
1610 &Handles
1611 );
1612 if (EFI_ERROR (Status)) {
1613 Handles = NULL;
1614 HandleCount = 0;
1615 }
1616 for (Index = 0; Index < HandleCount; Index++) {
1617 if (BmMatchHttpBootDevicePath (DevicePathFromHandle (Handles[Index]), FilePath)) {
1618 Handle = Handles[Index];
1619 break;
1620 }
1621 }
1622 if (Handles != NULL) {
1623 FreePool (Handles);
1624 }
1625 }
1626
1627 if (Handle == NULL) {
1628 return NULL;
1629 }
1630
1631 Status = gBS->HandleProtocol (Handle, &gEfiLoadFileProtocolGuid, (VOID **) &LoadFile);
1632 ASSERT_EFI_ERROR (Status);
1633
1634 BufferSize = 0;
1635 FileBuffer = NULL;
1636 Status = LoadFile->LoadFile (LoadFile, FilePath, TRUE, &BufferSize, FileBuffer);
1637 if (Status == EFI_BUFFER_TOO_SMALL) {
1638 FileBuffer = AllocatePool (BufferSize);
1639 if (FileBuffer != NULL) {
1640 Status = EFI_SUCCESS;
1641 }
1642 }
1643
1644 if (!EFI_ERROR (Status)) {
1645 Status = LoadFile->LoadFile (LoadFile, FilePath, TRUE, &BufferSize, FileBuffer);
1646 }
1647
1648 if (!EFI_ERROR (Status)) {
1649 //
1650 // LoadFile () may cause the device path of the Handle be updated.
1651 //
1652 *FullPath = DuplicateDevicePath (DevicePathFromHandle (Handle));
1653 *FileSize = BufferSize;
1654 return FileBuffer;
1655 } else {
1656 return NULL;
1657 }
1658 }
1659
1660 /**
1661 Get the load option by its device path.
1662
1663 @param FilePath The device path pointing to a load option.
1664 It could be a short-form device path.
1665 @param FullPath Return the full device path of the load option after
1666 short-form device path expanding.
1667 Caller is responsible to free it.
1668 @param FileSize Return the load option size.
1669
1670 @return The load option buffer. Caller is responsible to free the memory.
1671 **/
1672 VOID *
1673 BmGetLoadOptionBuffer (
1674 IN EFI_DEVICE_PATH_PROTOCOL *FilePath,
1675 OUT EFI_DEVICE_PATH_PROTOCOL **FullPath,
1676 OUT UINTN *FileSize
1677 )
1678 {
1679 EFI_HANDLE Handle;
1680 VOID *FileBuffer;
1681 UINT32 AuthenticationStatus;
1682 EFI_DEVICE_PATH_PROTOCOL *Node;
1683 EFI_STATUS Status;
1684
1685 ASSERT ((FilePath != NULL) && (FullPath != NULL) && (FileSize != NULL));
1686
1687 EfiBootManagerConnectDevicePath (FilePath, NULL);
1688
1689 *FullPath = NULL;
1690 *FileSize = 0;
1691 FileBuffer = NULL;
1692
1693 //
1694 // Boot from media device by adding a default file name \EFI\BOOT\BOOT{machine type short-name}.EFI
1695 //
1696 Node = FilePath;
1697 Status = gBS->LocateDevicePath (&gEfiSimpleFileSystemProtocolGuid, &Node, &Handle);
1698 if (EFI_ERROR (Status)) {
1699 Status = gBS->LocateDevicePath (&gEfiBlockIoProtocolGuid, &Node, &Handle);
1700 }
1701
1702 if (!EFI_ERROR (Status) && IsDevicePathEnd (Node)) {
1703 return BmExpandMediaDevicePath (FilePath, FullPath, FileSize);
1704 }
1705
1706 //
1707 // Expand the short-form device path to full device path
1708 //
1709 if ((DevicePathType (FilePath) == MEDIA_DEVICE_PATH) &&
1710 (DevicePathSubType (FilePath) == MEDIA_HARDDRIVE_DP)) {
1711 //
1712 // Expand the Harddrive device path
1713 //
1714 return BmExpandPartitionDevicePath (FilePath, FullPath, FileSize);
1715 } else if ((DevicePathType (FilePath) == MEDIA_DEVICE_PATH) &&
1716 (DevicePathSubType (FilePath) == MEDIA_FILEPATH_DP)) {
1717 //
1718 // Expand the File-path device path
1719 //
1720 return BmExpandFileDevicePath (FilePath, FullPath, FileSize);
1721 } else {
1722 for (Node = FilePath; !IsDevicePathEnd (Node); Node = NextDevicePathNode (Node)) {
1723 if ((DevicePathType (Node) == MESSAGING_DEVICE_PATH) &&
1724 ((DevicePathSubType (Node) == MSG_USB_CLASS_DP) || (DevicePathSubType (Node) == MSG_USB_WWID_DP))) {
1725 break;
1726 }
1727 }
1728
1729 if (!IsDevicePathEnd (Node)) {
1730 //
1731 // Expand the USB WWID/Class device path
1732 //
1733 FileBuffer = BmExpandUsbDevicePath (FilePath, FullPath, FileSize, Node);
1734 if ((FileBuffer == NULL) && (FilePath == Node)) {
1735 //
1736 // Boot Option device path starts with USB Class or USB WWID device path.
1737 // For Boot Option device path which doesn't begin with the USB Class or
1738 // USB WWID device path, it's not needed to connect again here.
1739 //
1740 BmConnectUsbShortFormDevicePath (FilePath);
1741 FileBuffer = BmExpandUsbDevicePath (FilePath, FullPath, FileSize, Node);
1742 }
1743 return FileBuffer;
1744 }
1745 }
1746
1747 //
1748 // Get file buffer from FV file path.
1749 //
1750 if (BmIsFvFilePath (FilePath)) {
1751 return BmGetFileBufferByFvFilePath (FilePath, FullPath, FileSize);
1752 }
1753
1754 //
1755 // Get file buffer from simple file system.
1756 //
1757 Node = FilePath;
1758 Status = gBS->LocateDevicePath (&gEfiSimpleFileSystemProtocolGuid, &Node, &Handle);
1759 if (!EFI_ERROR (Status)) {
1760 FileBuffer = GetFileBufferByFilePath (TRUE, FilePath, FileSize, &AuthenticationStatus);
1761 if (FileBuffer != NULL) {
1762 *FullPath = DuplicateDevicePath (FilePath);
1763 }
1764 return FileBuffer;
1765 }
1766
1767 return BmGetFileBufferFromLoadFile (FilePath, FullPath, FileSize);
1768 }
1769
1770 /**
1771 Attempt to boot the EFI boot option. This routine sets L"BootCurent" and
1772 also signals the EFI ready to boot event. If the device path for the option
1773 starts with a BBS device path a legacy boot is attempted via the registered
1774 gLegacyBoot function. Short form device paths are also supported via this
1775 rountine. A device path starting with MEDIA_HARDDRIVE_DP, MSG_USB_WWID_DP,
1776 MSG_USB_CLASS_DP gets expaned out to find the first device that matches.
1777 If the BootOption Device Path fails the removable media boot algorithm
1778 is attempted (\EFI\BOOTIA32.EFI, \EFI\BOOTX64.EFI,... only one file type
1779 is tried per processor type)
1780
1781 @param BootOption Boot Option to try and boot.
1782 On return, BootOption->Status contains the boot status.
1783 EFI_SUCCESS BootOption was booted
1784 EFI_UNSUPPORTED A BBS device path was found with no valid callback
1785 registered via EfiBootManagerInitialize().
1786 EFI_NOT_FOUND The BootOption was not found on the system
1787 !EFI_SUCCESS BootOption failed with this error status
1788
1789 **/
1790 VOID
1791 EFIAPI
1792 EfiBootManagerBoot (
1793 IN EFI_BOOT_MANAGER_LOAD_OPTION *BootOption
1794 )
1795 {
1796 EFI_STATUS Status;
1797 EFI_HANDLE ImageHandle;
1798 EFI_LOADED_IMAGE_PROTOCOL *ImageInfo;
1799 UINT16 Uint16;
1800 UINTN OptionNumber;
1801 UINTN OriginalOptionNumber;
1802 EFI_DEVICE_PATH_PROTOCOL *FilePath;
1803 EFI_DEVICE_PATH_PROTOCOL *Node;
1804 EFI_HANDLE FvHandle;
1805 VOID *FileBuffer;
1806 UINTN FileSize;
1807 EFI_BOOT_LOGO_PROTOCOL *BootLogo;
1808 EFI_EVENT LegacyBootEvent;
1809
1810 if (BootOption == NULL) {
1811 return;
1812 }
1813
1814 if (BootOption->FilePath == NULL || BootOption->OptionType != LoadOptionTypeBoot) {
1815 BootOption->Status = EFI_INVALID_PARAMETER;
1816 return;
1817 }
1818
1819 //
1820 // 1. Create Boot#### for a temporary boot if there is no match Boot#### (i.e. a boot by selected a EFI Shell using "Boot From File")
1821 //
1822 OptionNumber = BmFindBootOptionInVariable (BootOption);
1823 if (OptionNumber == LoadOptionNumberUnassigned) {
1824 Status = BmGetFreeOptionNumber (LoadOptionTypeBoot, &Uint16);
1825 if (!EFI_ERROR (Status)) {
1826 //
1827 // Save the BootOption->OptionNumber to restore later
1828 //
1829 OptionNumber = Uint16;
1830 OriginalOptionNumber = BootOption->OptionNumber;
1831 BootOption->OptionNumber = OptionNumber;
1832 Status = EfiBootManagerLoadOptionToVariable (BootOption);
1833 BootOption->OptionNumber = OriginalOptionNumber;
1834 }
1835
1836 if (EFI_ERROR (Status)) {
1837 DEBUG ((EFI_D_ERROR, "[Bds] Failed to create Boot#### for a temporary boot - %r!\n", Status));
1838 BootOption->Status = Status;
1839 return ;
1840 }
1841 }
1842
1843 //
1844 // 2. Set BootCurrent
1845 //
1846 Uint16 = (UINT16) OptionNumber;
1847 BmSetVariableAndReportStatusCodeOnError (
1848 L"BootCurrent",
1849 &gEfiGlobalVariableGuid,
1850 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS,
1851 sizeof (UINT16),
1852 &Uint16
1853 );
1854
1855 //
1856 // 3. Signal the EVT_SIGNAL_READY_TO_BOOT event when we are about to load and execute
1857 // the boot option.
1858 //
1859 Node = BootOption->FilePath;
1860 Status = gBS->LocateDevicePath (&gEfiFirmwareVolume2ProtocolGuid, &Node, &FvHandle);
1861 if (!EFI_ERROR (Status) && CompareGuid (
1862 EfiGetNameGuidFromFwVolDevicePathNode ((CONST MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *) Node),
1863 PcdGetPtr (PcdBootManagerMenuFile)
1864 )) {
1865 DEBUG ((EFI_D_INFO, "[Bds] Booting Boot Manager Menu.\n"));
1866 BmStopHotkeyService (NULL, NULL);
1867 } else {
1868 EfiSignalEventReadyToBoot();
1869 //
1870 // Report Status Code to indicate ReadyToBoot was signalled
1871 //
1872 REPORT_STATUS_CODE (EFI_PROGRESS_CODE, (EFI_SOFTWARE_DXE_BS_DRIVER | EFI_SW_DXE_BS_PC_READY_TO_BOOT_EVENT));
1873 //
1874 // 4. Repair system through DriverHealth protocol
1875 //
1876 BmRepairAllControllers ();
1877 }
1878
1879 PERF_START_EX (gImageHandle, "BdsAttempt", NULL, 0, (UINT32) OptionNumber);
1880
1881 //
1882 // 5. Load EFI boot option to ImageHandle
1883 //
1884 ImageHandle = NULL;
1885 if (DevicePathType (BootOption->FilePath) != BBS_DEVICE_PATH) {
1886 Status = EFI_NOT_FOUND;
1887 FileBuffer = BmGetLoadOptionBuffer (BootOption->FilePath, &FilePath, &FileSize);
1888 DEBUG_CODE (
1889 if (FileBuffer != NULL && CompareMem (BootOption->FilePath, FilePath, GetDevicePathSize (FilePath)) != 0) {
1890 DEBUG ((EFI_D_INFO, "[Bds] DevicePath expand: "));
1891 BmPrintDp (BootOption->FilePath);
1892 DEBUG ((EFI_D_INFO, " -> "));
1893 BmPrintDp (FilePath);
1894 DEBUG ((EFI_D_INFO, "\n"));
1895 }
1896 );
1897 if (BmIsLoadOptionPeHeaderValid (BootOption->OptionType, FileBuffer, FileSize)) {
1898 REPORT_STATUS_CODE (EFI_PROGRESS_CODE, PcdGet32 (PcdProgressCodeOsLoaderLoad));
1899 Status = gBS->LoadImage (
1900 TRUE,
1901 gImageHandle,
1902 FilePath,
1903 FileBuffer,
1904 FileSize,
1905 &ImageHandle
1906 );
1907 }
1908 if (FileBuffer != NULL) {
1909 FreePool (FileBuffer);
1910 }
1911 if (FilePath != NULL) {
1912 FreePool (FilePath);
1913 }
1914
1915 if (EFI_ERROR (Status)) {
1916 //
1917 // Report Status Code to indicate that the failure to load boot option
1918 //
1919 REPORT_STATUS_CODE (
1920 EFI_ERROR_CODE | EFI_ERROR_MINOR,
1921 (EFI_SOFTWARE_DXE_BS_DRIVER | EFI_SW_DXE_BS_EC_BOOT_OPTION_LOAD_ERROR)
1922 );
1923 BootOption->Status = Status;
1924 return;
1925 }
1926 }
1927
1928 //
1929 // 6. Adjust the different type memory page number just before booting
1930 // and save the updated info into the variable for next boot to use
1931 //
1932 BmSetMemoryTypeInformationVariable (
1933 (BOOLEAN) ((BootOption->Attributes & LOAD_OPTION_CATEGORY) == LOAD_OPTION_CATEGORY_BOOT)
1934 );
1935
1936 DEBUG_CODE_BEGIN();
1937 if (BootOption->Description == NULL) {
1938 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "[Bds]Booting from unknown device path\n"));
1939 } else {
1940 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "[Bds]Booting %s\n", BootOption->Description));
1941 }
1942 DEBUG_CODE_END();
1943
1944 //
1945 // Check to see if we should legacy BOOT. If yes then do the legacy boot
1946 // Write boot to OS performance data for Legacy boot
1947 //
1948 if ((DevicePathType (BootOption->FilePath) == BBS_DEVICE_PATH) && (DevicePathSubType (BootOption->FilePath) == BBS_BBS_DP)) {
1949 if (mBmLegacyBoot != NULL) {
1950 //
1951 // Write boot to OS performance data for legacy boot.
1952 //
1953 PERF_CODE (
1954 //
1955 // Create an event to be signalled when Legacy Boot occurs to write performance data.
1956 //
1957 Status = EfiCreateEventLegacyBootEx(
1958 TPL_NOTIFY,
1959 BmWriteBootToOsPerformanceData,
1960 NULL,
1961 &LegacyBootEvent
1962 );
1963 ASSERT_EFI_ERROR (Status);
1964 );
1965
1966 mBmLegacyBoot (BootOption);
1967 } else {
1968 BootOption->Status = EFI_UNSUPPORTED;
1969 }
1970
1971 PERF_END_EX (gImageHandle, "BdsAttempt", NULL, 0, (UINT32) OptionNumber);
1972 return;
1973 }
1974
1975 //
1976 // Provide the image with its load options
1977 //
1978 Status = gBS->HandleProtocol (ImageHandle, &gEfiLoadedImageProtocolGuid, (VOID **) &ImageInfo);
1979 ASSERT_EFI_ERROR (Status);
1980
1981 if (!BmIsAutoCreateBootOption (BootOption)) {
1982 ImageInfo->LoadOptionsSize = BootOption->OptionalDataSize;
1983 ImageInfo->LoadOptions = BootOption->OptionalData;
1984 }
1985
1986 //
1987 // Clean to NULL because the image is loaded directly from the firmwares boot manager.
1988 //
1989 ImageInfo->ParentHandle = NULL;
1990
1991 //
1992 // Before calling the image, enable the Watchdog Timer for 5 minutes period
1993 //
1994 gBS->SetWatchdogTimer (5 * 60, 0x0000, 0x00, NULL);
1995
1996 //
1997 // Write boot to OS performance data for UEFI boot
1998 //
1999 PERF_CODE (
2000 BmWriteBootToOsPerformanceData (NULL, NULL);
2001 );
2002
2003 REPORT_STATUS_CODE (EFI_PROGRESS_CODE, PcdGet32 (PcdProgressCodeOsLoaderStart));
2004
2005 Status = gBS->StartImage (ImageHandle, &BootOption->ExitDataSize, &BootOption->ExitData);
2006 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Image Return Status = %r\n", Status));
2007 BootOption->Status = Status;
2008 if (EFI_ERROR (Status)) {
2009 //
2010 // Report Status Code to indicate that boot failure
2011 //
2012 REPORT_STATUS_CODE (
2013 EFI_ERROR_CODE | EFI_ERROR_MINOR,
2014 (EFI_SOFTWARE_DXE_BS_DRIVER | EFI_SW_DXE_BS_EC_BOOT_OPTION_FAILED)
2015 );
2016 }
2017 PERF_END_EX (gImageHandle, "BdsAttempt", NULL, 0, (UINT32) OptionNumber);
2018
2019 //
2020 // Clear the Watchdog Timer after the image returns
2021 //
2022 gBS->SetWatchdogTimer (0x0000, 0x0000, 0x0000, NULL);
2023
2024 //
2025 // Set Logo status invalid after trying one boot option
2026 //
2027 BootLogo = NULL;
2028 Status = gBS->LocateProtocol (&gEfiBootLogoProtocolGuid, NULL, (VOID **) &BootLogo);
2029 if (!EFI_ERROR (Status) && (BootLogo != NULL)) {
2030 Status = BootLogo->SetBootLogo (BootLogo, NULL, 0, 0, 0, 0);
2031 ASSERT_EFI_ERROR (Status);
2032 }
2033
2034 //
2035 // Clear Boot Current
2036 //
2037 Status = gRT->SetVariable (
2038 L"BootCurrent",
2039 &gEfiGlobalVariableGuid,
2040 0,
2041 0,
2042 NULL
2043 );
2044 //
2045 // Deleting variable with current variable implementation shouldn't fail.
2046 // When BootXXXX (e.g.: BootManagerMenu) boots BootYYYY, exiting BootYYYY causes BootCurrent deleted,
2047 // exiting BootXXXX causes deleting BootCurrent returns EFI_NOT_FOUND.
2048 //
2049 ASSERT (Status == EFI_SUCCESS || Status == EFI_NOT_FOUND);
2050 }
2051
2052 /**
2053 Check whether there is a instance in BlockIoDevicePath, which contain multi device path
2054 instances, has the same partition node with HardDriveDevicePath device path
2055
2056 @param BlockIoDevicePath Multi device path instances which need to check
2057 @param HardDriveDevicePath A device path which starts with a hard drive media
2058 device path.
2059
2060 @retval TRUE There is a matched device path instance.
2061 @retval FALSE There is no matched device path instance.
2062
2063 **/
2064 BOOLEAN
2065 BmMatchPartitionDevicePathNode (
2066 IN EFI_DEVICE_PATH_PROTOCOL *BlockIoDevicePath,
2067 IN HARDDRIVE_DEVICE_PATH *HardDriveDevicePath
2068 )
2069 {
2070 HARDDRIVE_DEVICE_PATH *Node;
2071
2072 if ((BlockIoDevicePath == NULL) || (HardDriveDevicePath == NULL)) {
2073 return FALSE;
2074 }
2075
2076 //
2077 // find the partition device path node
2078 //
2079 while (!IsDevicePathEnd (BlockIoDevicePath)) {
2080 if ((DevicePathType (BlockIoDevicePath) == MEDIA_DEVICE_PATH) &&
2081 (DevicePathSubType (BlockIoDevicePath) == MEDIA_HARDDRIVE_DP)
2082 ) {
2083 break;
2084 }
2085
2086 BlockIoDevicePath = NextDevicePathNode (BlockIoDevicePath);
2087 }
2088
2089 if (IsDevicePathEnd (BlockIoDevicePath)) {
2090 return FALSE;
2091 }
2092
2093 //
2094 // See if the harddrive device path in blockio matches the orig Hard Drive Node
2095 //
2096 Node = (HARDDRIVE_DEVICE_PATH *) BlockIoDevicePath;
2097
2098 //
2099 // Match Signature and PartitionNumber.
2100 // Unused bytes in Signature are initiaized with zeros.
2101 //
2102 return (BOOLEAN) (
2103 (Node->PartitionNumber == HardDriveDevicePath->PartitionNumber) &&
2104 (Node->MBRType == HardDriveDevicePath->MBRType) &&
2105 (Node->SignatureType == HardDriveDevicePath->SignatureType) &&
2106 (CompareMem (Node->Signature, HardDriveDevicePath->Signature, sizeof (Node->Signature)) == 0)
2107 );
2108 }
2109
2110 /**
2111 Enumerate all boot option descriptions and append " 2"/" 3"/... to make
2112 unique description.
2113
2114 @param BootOptions Array of boot options.
2115 @param BootOptionCount Count of boot options.
2116 **/
2117 VOID
2118 BmMakeBootOptionDescriptionUnique (
2119 EFI_BOOT_MANAGER_LOAD_OPTION *BootOptions,
2120 UINTN BootOptionCount
2121 )
2122 {
2123 UINTN Base;
2124 UINTN Index;
2125 UINTN DescriptionSize;
2126 UINTN MaxSuffixSize;
2127 BOOLEAN *Visited;
2128 UINTN MatchCount;
2129
2130 if (BootOptionCount == 0) {
2131 return;
2132 }
2133
2134 //
2135 // Calculate the maximum buffer size for the number suffix.
2136 // The initial sizeof (CHAR16) is for the blank space before the number.
2137 //
2138 MaxSuffixSize = sizeof (CHAR16);
2139 for (Index = BootOptionCount; Index != 0; Index = Index / 10) {
2140 MaxSuffixSize += sizeof (CHAR16);
2141 }
2142
2143 Visited = AllocateZeroPool (sizeof (BOOLEAN) * BootOptionCount);
2144 ASSERT (Visited != NULL);
2145
2146 for (Base = 0; Base < BootOptionCount; Base++) {
2147 if (!Visited[Base]) {
2148 MatchCount = 1;
2149 Visited[Base] = TRUE;
2150 DescriptionSize = StrSize (BootOptions[Base].Description);
2151 for (Index = Base + 1; Index < BootOptionCount; Index++) {
2152 if (!Visited[Index] && StrCmp (BootOptions[Base].Description, BootOptions[Index].Description) == 0) {
2153 Visited[Index] = TRUE;
2154 MatchCount++;
2155 FreePool (BootOptions[Index].Description);
2156 BootOptions[Index].Description = AllocatePool (DescriptionSize + MaxSuffixSize);
2157 UnicodeSPrint (
2158 BootOptions[Index].Description, DescriptionSize + MaxSuffixSize,
2159 L"%s %d",
2160 BootOptions[Base].Description, MatchCount
2161 );
2162 }
2163 }
2164 }
2165 }
2166
2167 FreePool (Visited);
2168 }
2169
2170 /**
2171 Emuerate all possible bootable medias in the following order:
2172 1. Removable BlockIo - The boot option only points to the removable media
2173 device, like USB key, DVD, Floppy etc.
2174 2. Fixed BlockIo - The boot option only points to a Fixed blockIo device,
2175 like HardDisk.
2176 3. Non-BlockIo SimpleFileSystem - The boot option points to a device supporting
2177 SimpleFileSystem Protocol, but not supporting BlockIo
2178 protocol.
2179 4. LoadFile - The boot option points to the media supporting
2180 LoadFile protocol.
2181 Reference: UEFI Spec chapter 3.3 Boot Option Variables Default Boot Behavior
2182
2183 @param BootOptionCount Return the boot option count which has been found.
2184
2185 @retval Pointer to the boot option array.
2186 **/
2187 EFI_BOOT_MANAGER_LOAD_OPTION *
2188 BmEnumerateBootOptions (
2189 UINTN *BootOptionCount
2190 )
2191 {
2192 EFI_STATUS Status;
2193 EFI_BOOT_MANAGER_LOAD_OPTION *BootOptions;
2194 UINTN HandleCount;
2195 EFI_HANDLE *Handles;
2196 EFI_BLOCK_IO_PROTOCOL *BlkIo;
2197 UINTN Removable;
2198 UINTN Index;
2199 CHAR16 *Description;
2200
2201 ASSERT (BootOptionCount != NULL);
2202
2203 *BootOptionCount = 0;
2204 BootOptions = NULL;
2205
2206 //
2207 // Parse removable block io followed by fixed block io
2208 //
2209 gBS->LocateHandleBuffer (
2210 ByProtocol,
2211 &gEfiBlockIoProtocolGuid,
2212 NULL,
2213 &HandleCount,
2214 &Handles
2215 );
2216
2217 for (Removable = 0; Removable < 2; Removable++) {
2218 for (Index = 0; Index < HandleCount; Index++) {
2219 Status = gBS->HandleProtocol (
2220 Handles[Index],
2221 &gEfiBlockIoProtocolGuid,
2222 (VOID **) &BlkIo
2223 );
2224 if (EFI_ERROR (Status)) {
2225 continue;
2226 }
2227
2228 //
2229 // Skip the logical partitions
2230 //
2231 if (BlkIo->Media->LogicalPartition) {
2232 continue;
2233 }
2234
2235 //
2236 // Skip the fixed block io then the removable block io
2237 //
2238 if (BlkIo->Media->RemovableMedia == ((Removable == 0) ? FALSE : TRUE)) {
2239 continue;
2240 }
2241
2242 Description = BmGetBootDescription (Handles[Index]);
2243 BootOptions = ReallocatePool (
2244 sizeof (EFI_BOOT_MANAGER_LOAD_OPTION) * (*BootOptionCount),
2245 sizeof (EFI_BOOT_MANAGER_LOAD_OPTION) * (*BootOptionCount + 1),
2246 BootOptions
2247 );
2248 ASSERT (BootOptions != NULL);
2249
2250 Status = EfiBootManagerInitializeLoadOption (
2251 &BootOptions[(*BootOptionCount)++],
2252 LoadOptionNumberUnassigned,
2253 LoadOptionTypeBoot,
2254 LOAD_OPTION_ACTIVE,
2255 Description,
2256 DevicePathFromHandle (Handles[Index]),
2257 NULL,
2258 0
2259 );
2260 ASSERT_EFI_ERROR (Status);
2261
2262 FreePool (Description);
2263 }
2264 }
2265
2266 if (HandleCount != 0) {
2267 FreePool (Handles);
2268 }
2269
2270 //
2271 // Parse simple file system not based on block io
2272 //
2273 gBS->LocateHandleBuffer (
2274 ByProtocol,
2275 &gEfiSimpleFileSystemProtocolGuid,
2276 NULL,
2277 &HandleCount,
2278 &Handles
2279 );
2280 for (Index = 0; Index < HandleCount; Index++) {
2281 Status = gBS->HandleProtocol (
2282 Handles[Index],
2283 &gEfiBlockIoProtocolGuid,
2284 (VOID **) &BlkIo
2285 );
2286 if (!EFI_ERROR (Status)) {
2287 //
2288 // Skip if the file system handle supports a BlkIo protocol, which we've handled in above
2289 //
2290 continue;
2291 }
2292 Description = BmGetBootDescription (Handles[Index]);
2293 BootOptions = ReallocatePool (
2294 sizeof (EFI_BOOT_MANAGER_LOAD_OPTION) * (*BootOptionCount),
2295 sizeof (EFI_BOOT_MANAGER_LOAD_OPTION) * (*BootOptionCount + 1),
2296 BootOptions
2297 );
2298 ASSERT (BootOptions != NULL);
2299
2300 Status = EfiBootManagerInitializeLoadOption (
2301 &BootOptions[(*BootOptionCount)++],
2302 LoadOptionNumberUnassigned,
2303 LoadOptionTypeBoot,
2304 LOAD_OPTION_ACTIVE,
2305 Description,
2306 DevicePathFromHandle (Handles[Index]),
2307 NULL,
2308 0
2309 );
2310 ASSERT_EFI_ERROR (Status);
2311 FreePool (Description);
2312 }
2313
2314 if (HandleCount != 0) {
2315 FreePool (Handles);
2316 }
2317
2318 //
2319 // Parse load file, assuming UEFI Network boot option
2320 //
2321 gBS->LocateHandleBuffer (
2322 ByProtocol,
2323 &gEfiLoadFileProtocolGuid,
2324 NULL,
2325 &HandleCount,
2326 &Handles
2327 );
2328 for (Index = 0; Index < HandleCount; Index++) {
2329
2330 Description = BmGetBootDescription (Handles[Index]);
2331 BootOptions = ReallocatePool (
2332 sizeof (EFI_BOOT_MANAGER_LOAD_OPTION) * (*BootOptionCount),
2333 sizeof (EFI_BOOT_MANAGER_LOAD_OPTION) * (*BootOptionCount + 1),
2334 BootOptions
2335 );
2336 ASSERT (BootOptions != NULL);
2337
2338 Status = EfiBootManagerInitializeLoadOption (
2339 &BootOptions[(*BootOptionCount)++],
2340 LoadOptionNumberUnassigned,
2341 LoadOptionTypeBoot,
2342 LOAD_OPTION_ACTIVE,
2343 Description,
2344 DevicePathFromHandle (Handles[Index]),
2345 NULL,
2346 0
2347 );
2348 ASSERT_EFI_ERROR (Status);
2349 FreePool (Description);
2350 }
2351
2352 if (HandleCount != 0) {
2353 FreePool (Handles);
2354 }
2355
2356 BmMakeBootOptionDescriptionUnique (BootOptions, *BootOptionCount);
2357 return BootOptions;
2358 }
2359
2360 /**
2361 The function enumerates all boot options, creates them and registers them in the BootOrder variable.
2362 **/
2363 VOID
2364 EFIAPI
2365 EfiBootManagerRefreshAllBootOption (
2366 VOID
2367 )
2368 {
2369 EFI_STATUS Status;
2370 EFI_BOOT_MANAGER_LOAD_OPTION *NvBootOptions;
2371 UINTN NvBootOptionCount;
2372 EFI_BOOT_MANAGER_LOAD_OPTION *BootOptions;
2373 UINTN BootOptionCount;
2374 UINTN Index;
2375
2376 //
2377 // Optionally refresh the legacy boot option
2378 //
2379 if (mBmRefreshLegacyBootOption != NULL) {
2380 mBmRefreshLegacyBootOption ();
2381 }
2382
2383 BootOptions = BmEnumerateBootOptions (&BootOptionCount);
2384 NvBootOptions = EfiBootManagerGetLoadOptions (&NvBootOptionCount, LoadOptionTypeBoot);
2385
2386 //
2387 // Mark the boot option as added by BDS by setting OptionalData to a special GUID
2388 //
2389 for (Index = 0; Index < BootOptionCount; Index++) {
2390 BootOptions[Index].OptionalData = AllocateCopyPool (sizeof (EFI_GUID), &mBmAutoCreateBootOptionGuid);
2391 BootOptions[Index].OptionalDataSize = sizeof (EFI_GUID);
2392 }
2393
2394 //
2395 // Remove invalid EFI boot options from NV
2396 //
2397 for (Index = 0; Index < NvBootOptionCount; Index++) {
2398 if (((DevicePathType (NvBootOptions[Index].FilePath) != BBS_DEVICE_PATH) ||
2399 (DevicePathSubType (NvBootOptions[Index].FilePath) != BBS_BBS_DP)
2400 ) && BmIsAutoCreateBootOption (&NvBootOptions[Index])
2401 ) {
2402 //
2403 // Only check those added by BDS
2404 // so that the boot options added by end-user or OS installer won't be deleted
2405 //
2406 if (EfiBootManagerFindLoadOption (&NvBootOptions[Index], BootOptions, BootOptionCount) == (UINTN) -1) {
2407 Status = EfiBootManagerDeleteLoadOptionVariable (NvBootOptions[Index].OptionNumber, LoadOptionTypeBoot);
2408 //
2409 // Deleting variable with current variable implementation shouldn't fail.
2410 //
2411 ASSERT_EFI_ERROR (Status);
2412 }
2413 }
2414 }
2415
2416 //
2417 // Add new EFI boot options to NV
2418 //
2419 for (Index = 0; Index < BootOptionCount; Index++) {
2420 if (EfiBootManagerFindLoadOption (&BootOptions[Index], NvBootOptions, NvBootOptionCount) == (UINTN) -1) {
2421 EfiBootManagerAddLoadOptionVariable (&BootOptions[Index], (UINTN) -1);
2422 //
2423 // Try best to add the boot options so continue upon failure.
2424 //
2425 }
2426 }
2427
2428 EfiBootManagerFreeLoadOptions (BootOptions, BootOptionCount);
2429 EfiBootManagerFreeLoadOptions (NvBootOptions, NvBootOptionCount);
2430 }
2431
2432 /**
2433 This function is called to create the boot option for the Boot Manager Menu.
2434
2435 The Boot Manager Menu is shown after successfully booting a boot option.
2436 Assume the BootManagerMenuFile is in the same FV as the module links to this library.
2437
2438 @param BootOption Return the boot option of the Boot Manager Menu
2439
2440 @retval EFI_SUCCESS Successfully register the Boot Manager Menu.
2441 @retval Status Return status of gRT->SetVariable (). BootOption still points
2442 to the Boot Manager Menu even the Status is not EFI_SUCCESS.
2443 **/
2444 EFI_STATUS
2445 BmRegisterBootManagerMenu (
2446 OUT EFI_BOOT_MANAGER_LOAD_OPTION *BootOption
2447 )
2448 {
2449 EFI_STATUS Status;
2450 CHAR16 *Description;
2451 UINTN DescriptionLength;
2452 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
2453 EFI_LOADED_IMAGE_PROTOCOL *LoadedImage;
2454 MEDIA_FW_VOL_FILEPATH_DEVICE_PATH FileNode;
2455
2456 Status = GetSectionFromFv (
2457 PcdGetPtr (PcdBootManagerMenuFile),
2458 EFI_SECTION_USER_INTERFACE,
2459 0,
2460 (VOID **) &Description,
2461 &DescriptionLength
2462 );
2463 if (EFI_ERROR (Status)) {
2464 Description = NULL;
2465 }
2466
2467 EfiInitializeFwVolDevicepathNode (&FileNode, PcdGetPtr (PcdBootManagerMenuFile));
2468 Status = gBS->HandleProtocol (
2469 gImageHandle,
2470 &gEfiLoadedImageProtocolGuid,
2471 (VOID **) &LoadedImage
2472 );
2473 ASSERT_EFI_ERROR (Status);
2474 DevicePath = AppendDevicePathNode (
2475 DevicePathFromHandle (LoadedImage->DeviceHandle),
2476 (EFI_DEVICE_PATH_PROTOCOL *) &FileNode
2477 );
2478 ASSERT (DevicePath != NULL);
2479
2480 Status = EfiBootManagerInitializeLoadOption (
2481 BootOption,
2482 LoadOptionNumberUnassigned,
2483 LoadOptionTypeBoot,
2484 LOAD_OPTION_CATEGORY_APP | LOAD_OPTION_ACTIVE | LOAD_OPTION_HIDDEN,
2485 (Description != NULL) ? Description : L"Boot Manager Menu",
2486 DevicePath,
2487 NULL,
2488 0
2489 );
2490 ASSERT_EFI_ERROR (Status);
2491 FreePool (DevicePath);
2492 if (Description != NULL) {
2493 FreePool (Description);
2494 }
2495
2496 DEBUG_CODE (
2497 EFI_BOOT_MANAGER_LOAD_OPTION *BootOptions;
2498 UINTN BootOptionCount;
2499
2500 BootOptions = EfiBootManagerGetLoadOptions (&BootOptionCount, LoadOptionTypeBoot);
2501 ASSERT (EfiBootManagerFindLoadOption (BootOption, BootOptions, BootOptionCount) == -1);
2502 EfiBootManagerFreeLoadOptions (BootOptions, BootOptionCount);
2503 );
2504
2505 return EfiBootManagerAddLoadOptionVariable (BootOption, 0);
2506 }
2507
2508 /**
2509 Return the boot option corresponding to the Boot Manager Menu.
2510 It may automatically create one if the boot option hasn't been created yet.
2511
2512 @param BootOption Return the Boot Manager Menu.
2513
2514 @retval EFI_SUCCESS The Boot Manager Menu is successfully returned.
2515 @retval Status Return status of gRT->SetVariable (). BootOption still points
2516 to the Boot Manager Menu even the Status is not EFI_SUCCESS.
2517 **/
2518 EFI_STATUS
2519 EFIAPI
2520 EfiBootManagerGetBootManagerMenu (
2521 EFI_BOOT_MANAGER_LOAD_OPTION *BootOption
2522 )
2523 {
2524 EFI_STATUS Status;
2525 UINTN BootOptionCount;
2526 EFI_BOOT_MANAGER_LOAD_OPTION *BootOptions;
2527 UINTN Index;
2528 EFI_DEVICE_PATH_PROTOCOL *Node;
2529 EFI_HANDLE FvHandle;
2530
2531 BootOptions = EfiBootManagerGetLoadOptions (&BootOptionCount, LoadOptionTypeBoot);
2532
2533 for (Index = 0; Index < BootOptionCount; Index++) {
2534 Node = BootOptions[Index].FilePath;
2535 Status = gBS->LocateDevicePath (&gEfiFirmwareVolume2ProtocolGuid, &Node, &FvHandle);
2536 if (!EFI_ERROR (Status)) {
2537 if (CompareGuid (
2538 EfiGetNameGuidFromFwVolDevicePathNode ((CONST MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *) Node),
2539 PcdGetPtr (PcdBootManagerMenuFile)
2540 )
2541 ) {
2542 Status = EfiBootManagerInitializeLoadOption (
2543 BootOption,
2544 BootOptions[Index].OptionNumber,
2545 BootOptions[Index].OptionType,
2546 BootOptions[Index].Attributes,
2547 BootOptions[Index].Description,
2548 BootOptions[Index].FilePath,
2549 BootOptions[Index].OptionalData,
2550 BootOptions[Index].OptionalDataSize
2551 );
2552 ASSERT_EFI_ERROR (Status);
2553 break;
2554 }
2555 }
2556 }
2557
2558 EfiBootManagerFreeLoadOptions (BootOptions, BootOptionCount);
2559
2560 //
2561 // Automatically create the Boot#### for Boot Manager Menu when not found.
2562 //
2563 if (Index == BootOptionCount) {
2564 return BmRegisterBootManagerMenu (BootOption);
2565 } else {
2566 return EFI_SUCCESS;
2567 }
2568 }
2569