]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c
a6826f61ae041b79807dc1f412ff1fa4a69b19de
[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 Get the load option by its device path.
1532
1533 @param FilePath The device path pointing to a load option.
1534 It could be a short-form device path.
1535 @param FullPath Return the full device path of the load option after
1536 short-form device path expanding.
1537 Caller is responsible to free it.
1538 @param FileSize Return the load option size.
1539
1540 @return The load option buffer. Caller is responsible to free the memory.
1541 **/
1542 VOID *
1543 BmGetLoadOptionBuffer (
1544 IN EFI_DEVICE_PATH_PROTOCOL *FilePath,
1545 OUT EFI_DEVICE_PATH_PROTOCOL **FullPath,
1546 OUT UINTN *FileSize
1547 )
1548 {
1549 EFI_HANDLE Handle;
1550 VOID *FileBuffer;
1551 UINT32 AuthenticationStatus;
1552 EFI_DEVICE_PATH_PROTOCOL *Node;
1553 EFI_STATUS Status;
1554
1555 ASSERT ((FilePath != NULL) && (FullPath != NULL) && (FileSize != NULL));
1556
1557 EfiBootManagerConnectDevicePath (FilePath, NULL);
1558
1559 *FullPath = NULL;
1560 *FileSize = 0;
1561 FileBuffer = NULL;
1562
1563 //
1564 // Boot from media device by adding a default file name \EFI\BOOT\BOOT{machine type short-name}.EFI
1565 //
1566 Node = FilePath;
1567 Status = gBS->LocateDevicePath (&gEfiSimpleFileSystemProtocolGuid, &Node, &Handle);
1568 if (EFI_ERROR (Status)) {
1569 Status = gBS->LocateDevicePath (&gEfiBlockIoProtocolGuid, &Node, &Handle);
1570 }
1571
1572 if (!EFI_ERROR (Status) && IsDevicePathEnd (Node)) {
1573 return BmExpandMediaDevicePath (FilePath, FullPath, FileSize);
1574 }
1575
1576 //
1577 // Expand the short-form device path to full device path
1578 //
1579 if ((DevicePathType (FilePath) == MEDIA_DEVICE_PATH) &&
1580 (DevicePathSubType (FilePath) == MEDIA_HARDDRIVE_DP)) {
1581 //
1582 // Expand the Harddrive device path
1583 //
1584 return BmExpandPartitionDevicePath (FilePath, FullPath, FileSize);
1585 } else if ((DevicePathType (FilePath) == MEDIA_DEVICE_PATH) &&
1586 (DevicePathSubType (FilePath) == MEDIA_FILEPATH_DP)) {
1587 //
1588 // Expand the File-path device path
1589 //
1590 return BmExpandFileDevicePath (FilePath, FullPath, FileSize);
1591 } else {
1592 for (Node = FilePath; !IsDevicePathEnd (Node); Node = NextDevicePathNode (Node)) {
1593 if ((DevicePathType (Node) == MESSAGING_DEVICE_PATH) &&
1594 ((DevicePathSubType (Node) == MSG_USB_CLASS_DP) || (DevicePathSubType (Node) == MSG_USB_WWID_DP))) {
1595 break;
1596 }
1597 }
1598
1599 if (!IsDevicePathEnd (Node)) {
1600 //
1601 // Expand the USB WWID/Class device path
1602 //
1603 FileBuffer = BmExpandUsbDevicePath (FilePath, FullPath, FileSize, Node);
1604 if ((FileBuffer == NULL) && (FilePath == Node)) {
1605 //
1606 // Boot Option device path starts with USB Class or USB WWID device path.
1607 // For Boot Option device path which doesn't begin with the USB Class or
1608 // USB WWID device path, it's not needed to connect again here.
1609 //
1610 BmConnectUsbShortFormDevicePath (FilePath);
1611 FileBuffer = BmExpandUsbDevicePath (FilePath, FullPath, FileSize, Node);
1612 }
1613 return FileBuffer;
1614 }
1615 }
1616
1617 //
1618 // Get file buffer from FV file path.
1619 //
1620 if (BmIsFvFilePath (FilePath)) {
1621 return BmGetFileBufferByFvFilePath (FilePath, FullPath, FileSize);
1622 }
1623
1624 //
1625 // Directly reads the load option when it doesn't reside in simple file system instance (LoadFile/LoadFile2),
1626 // or it directly points to a file in simple file system instance.
1627 //
1628 Node = FilePath;
1629 Status = gBS->LocateDevicePath (&gEfiLoadFileProtocolGuid, &Node, &Handle);
1630 FileBuffer = GetFileBufferByFilePath (TRUE, FilePath, FileSize, &AuthenticationStatus);
1631 if (FileBuffer != NULL) {
1632 if (EFI_ERROR (Status)) {
1633 *FullPath = DuplicateDevicePath (FilePath);
1634 } else {
1635 //
1636 // LoadFile () may cause the device path of the Handle be updated.
1637 //
1638 *FullPath = AppendDevicePath (DevicePathFromHandle (Handle), Node);
1639 }
1640 }
1641
1642 return FileBuffer;
1643 }
1644
1645 /**
1646 Attempt to boot the EFI boot option. This routine sets L"BootCurent" and
1647 also signals the EFI ready to boot event. If the device path for the option
1648 starts with a BBS device path a legacy boot is attempted via the registered
1649 gLegacyBoot function. Short form device paths are also supported via this
1650 rountine. A device path starting with MEDIA_HARDDRIVE_DP, MSG_USB_WWID_DP,
1651 MSG_USB_CLASS_DP gets expaned out to find the first device that matches.
1652 If the BootOption Device Path fails the removable media boot algorithm
1653 is attempted (\EFI\BOOTIA32.EFI, \EFI\BOOTX64.EFI,... only one file type
1654 is tried per processor type)
1655
1656 @param BootOption Boot Option to try and boot.
1657 On return, BootOption->Status contains the boot status.
1658 EFI_SUCCESS BootOption was booted
1659 EFI_UNSUPPORTED A BBS device path was found with no valid callback
1660 registered via EfiBootManagerInitialize().
1661 EFI_NOT_FOUND The BootOption was not found on the system
1662 !EFI_SUCCESS BootOption failed with this error status
1663
1664 **/
1665 VOID
1666 EFIAPI
1667 EfiBootManagerBoot (
1668 IN EFI_BOOT_MANAGER_LOAD_OPTION *BootOption
1669 )
1670 {
1671 EFI_STATUS Status;
1672 EFI_HANDLE ImageHandle;
1673 EFI_LOADED_IMAGE_PROTOCOL *ImageInfo;
1674 UINT16 Uint16;
1675 UINTN OptionNumber;
1676 UINTN OriginalOptionNumber;
1677 EFI_DEVICE_PATH_PROTOCOL *FilePath;
1678 EFI_DEVICE_PATH_PROTOCOL *Node;
1679 EFI_HANDLE FvHandle;
1680 VOID *FileBuffer;
1681 UINTN FileSize;
1682 EFI_BOOT_LOGO_PROTOCOL *BootLogo;
1683 EFI_EVENT LegacyBootEvent;
1684
1685 if (BootOption == NULL) {
1686 return;
1687 }
1688
1689 if (BootOption->FilePath == NULL || BootOption->OptionType != LoadOptionTypeBoot) {
1690 BootOption->Status = EFI_INVALID_PARAMETER;
1691 return;
1692 }
1693
1694 //
1695 // 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")
1696 //
1697 OptionNumber = BmFindBootOptionInVariable (BootOption);
1698 if (OptionNumber == LoadOptionNumberUnassigned) {
1699 Status = BmGetFreeOptionNumber (LoadOptionTypeBoot, &Uint16);
1700 if (!EFI_ERROR (Status)) {
1701 //
1702 // Save the BootOption->OptionNumber to restore later
1703 //
1704 OptionNumber = Uint16;
1705 OriginalOptionNumber = BootOption->OptionNumber;
1706 BootOption->OptionNumber = OptionNumber;
1707 Status = EfiBootManagerLoadOptionToVariable (BootOption);
1708 BootOption->OptionNumber = OriginalOptionNumber;
1709 }
1710
1711 if (EFI_ERROR (Status)) {
1712 DEBUG ((EFI_D_ERROR, "[Bds] Failed to create Boot#### for a temporary boot - %r!\n", Status));
1713 BootOption->Status = Status;
1714 return ;
1715 }
1716 }
1717
1718 //
1719 // 2. Set BootCurrent
1720 //
1721 Uint16 = (UINT16) OptionNumber;
1722 BmSetVariableAndReportStatusCodeOnError (
1723 L"BootCurrent",
1724 &gEfiGlobalVariableGuid,
1725 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS,
1726 sizeof (UINT16),
1727 &Uint16
1728 );
1729
1730 //
1731 // 3. Signal the EVT_SIGNAL_READY_TO_BOOT event when we are about to load and execute
1732 // the boot option.
1733 //
1734 Node = BootOption->FilePath;
1735 Status = gBS->LocateDevicePath (&gEfiFirmwareVolume2ProtocolGuid, &Node, &FvHandle);
1736 if (!EFI_ERROR (Status) && CompareGuid (
1737 EfiGetNameGuidFromFwVolDevicePathNode ((CONST MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *) Node),
1738 PcdGetPtr (PcdBootManagerMenuFile)
1739 )) {
1740 DEBUG ((EFI_D_INFO, "[Bds] Booting Boot Manager Menu.\n"));
1741 BmStopHotkeyService (NULL, NULL);
1742 } else {
1743 EfiSignalEventReadyToBoot();
1744 //
1745 // Report Status Code to indicate ReadyToBoot was signalled
1746 //
1747 REPORT_STATUS_CODE (EFI_PROGRESS_CODE, (EFI_SOFTWARE_DXE_BS_DRIVER | EFI_SW_DXE_BS_PC_READY_TO_BOOT_EVENT));
1748 //
1749 // 4. Repair system through DriverHealth protocol
1750 //
1751 BmRepairAllControllers ();
1752 }
1753
1754 PERF_START_EX (gImageHandle, "BdsAttempt", NULL, 0, (UINT32) OptionNumber);
1755
1756 //
1757 // 5. Load EFI boot option to ImageHandle
1758 //
1759 ImageHandle = NULL;
1760 if (DevicePathType (BootOption->FilePath) != BBS_DEVICE_PATH) {
1761 Status = EFI_NOT_FOUND;
1762 FileBuffer = BmGetLoadOptionBuffer (BootOption->FilePath, &FilePath, &FileSize);
1763 DEBUG_CODE (
1764 if (FileBuffer != NULL && CompareMem (BootOption->FilePath, FilePath, GetDevicePathSize (FilePath)) != 0) {
1765 DEBUG ((EFI_D_INFO, "[Bds] DevicePath expand: "));
1766 BmPrintDp (BootOption->FilePath);
1767 DEBUG ((EFI_D_INFO, " -> "));
1768 BmPrintDp (FilePath);
1769 DEBUG ((EFI_D_INFO, "\n"));
1770 }
1771 );
1772 if (BmIsLoadOptionPeHeaderValid (BootOption->OptionType, FileBuffer, FileSize)) {
1773 REPORT_STATUS_CODE (EFI_PROGRESS_CODE, PcdGet32 (PcdProgressCodeOsLoaderLoad));
1774 Status = gBS->LoadImage (
1775 TRUE,
1776 gImageHandle,
1777 FilePath,
1778 FileBuffer,
1779 FileSize,
1780 &ImageHandle
1781 );
1782 }
1783 if (FileBuffer != NULL) {
1784 FreePool (FileBuffer);
1785 }
1786 if (FilePath != NULL) {
1787 FreePool (FilePath);
1788 }
1789
1790 if (EFI_ERROR (Status)) {
1791 //
1792 // Report Status Code to indicate that the failure to load boot option
1793 //
1794 REPORT_STATUS_CODE (
1795 EFI_ERROR_CODE | EFI_ERROR_MINOR,
1796 (EFI_SOFTWARE_DXE_BS_DRIVER | EFI_SW_DXE_BS_EC_BOOT_OPTION_LOAD_ERROR)
1797 );
1798 BootOption->Status = Status;
1799 return;
1800 }
1801 }
1802
1803 //
1804 // 6. Adjust the different type memory page number just before booting
1805 // and save the updated info into the variable for next boot to use
1806 //
1807 BmSetMemoryTypeInformationVariable (
1808 (BOOLEAN) ((BootOption->Attributes & LOAD_OPTION_CATEGORY) == LOAD_OPTION_CATEGORY_BOOT)
1809 );
1810
1811 DEBUG_CODE_BEGIN();
1812 if (BootOption->Description == NULL) {
1813 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "[Bds]Booting from unknown device path\n"));
1814 } else {
1815 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "[Bds]Booting %s\n", BootOption->Description));
1816 }
1817 DEBUG_CODE_END();
1818
1819 //
1820 // Check to see if we should legacy BOOT. If yes then do the legacy boot
1821 // Write boot to OS performance data for Legacy boot
1822 //
1823 if ((DevicePathType (BootOption->FilePath) == BBS_DEVICE_PATH) && (DevicePathSubType (BootOption->FilePath) == BBS_BBS_DP)) {
1824 if (mBmLegacyBoot != NULL) {
1825 //
1826 // Write boot to OS performance data for legacy boot.
1827 //
1828 PERF_CODE (
1829 //
1830 // Create an event to be signalled when Legacy Boot occurs to write performance data.
1831 //
1832 Status = EfiCreateEventLegacyBootEx(
1833 TPL_NOTIFY,
1834 BmWriteBootToOsPerformanceData,
1835 NULL,
1836 &LegacyBootEvent
1837 );
1838 ASSERT_EFI_ERROR (Status);
1839 );
1840
1841 mBmLegacyBoot (BootOption);
1842 } else {
1843 BootOption->Status = EFI_UNSUPPORTED;
1844 }
1845
1846 PERF_END_EX (gImageHandle, "BdsAttempt", NULL, 0, (UINT32) OptionNumber);
1847 return;
1848 }
1849
1850 //
1851 // Provide the image with its load options
1852 //
1853 Status = gBS->HandleProtocol (ImageHandle, &gEfiLoadedImageProtocolGuid, (VOID **) &ImageInfo);
1854 ASSERT_EFI_ERROR (Status);
1855
1856 if (!BmIsAutoCreateBootOption (BootOption)) {
1857 ImageInfo->LoadOptionsSize = BootOption->OptionalDataSize;
1858 ImageInfo->LoadOptions = BootOption->OptionalData;
1859 }
1860
1861 //
1862 // Clean to NULL because the image is loaded directly from the firmwares boot manager.
1863 //
1864 ImageInfo->ParentHandle = NULL;
1865
1866 //
1867 // Before calling the image, enable the Watchdog Timer for 5 minutes period
1868 //
1869 gBS->SetWatchdogTimer (5 * 60, 0x0000, 0x00, NULL);
1870
1871 //
1872 // Write boot to OS performance data for UEFI boot
1873 //
1874 PERF_CODE (
1875 BmWriteBootToOsPerformanceData (NULL, NULL);
1876 );
1877
1878 REPORT_STATUS_CODE (EFI_PROGRESS_CODE, PcdGet32 (PcdProgressCodeOsLoaderStart));
1879
1880 Status = gBS->StartImage (ImageHandle, &BootOption->ExitDataSize, &BootOption->ExitData);
1881 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Image Return Status = %r\n", Status));
1882 BootOption->Status = Status;
1883 if (EFI_ERROR (Status)) {
1884 //
1885 // Report Status Code to indicate that boot failure
1886 //
1887 REPORT_STATUS_CODE (
1888 EFI_ERROR_CODE | EFI_ERROR_MINOR,
1889 (EFI_SOFTWARE_DXE_BS_DRIVER | EFI_SW_DXE_BS_EC_BOOT_OPTION_FAILED)
1890 );
1891 }
1892 PERF_END_EX (gImageHandle, "BdsAttempt", NULL, 0, (UINT32) OptionNumber);
1893
1894 //
1895 // Clear the Watchdog Timer after the image returns
1896 //
1897 gBS->SetWatchdogTimer (0x0000, 0x0000, 0x0000, NULL);
1898
1899 //
1900 // Set Logo status invalid after trying one boot option
1901 //
1902 BootLogo = NULL;
1903 Status = gBS->LocateProtocol (&gEfiBootLogoProtocolGuid, NULL, (VOID **) &BootLogo);
1904 if (!EFI_ERROR (Status) && (BootLogo != NULL)) {
1905 Status = BootLogo->SetBootLogo (BootLogo, NULL, 0, 0, 0, 0);
1906 ASSERT_EFI_ERROR (Status);
1907 }
1908
1909 //
1910 // Clear Boot Current
1911 //
1912 Status = gRT->SetVariable (
1913 L"BootCurrent",
1914 &gEfiGlobalVariableGuid,
1915 0,
1916 0,
1917 NULL
1918 );
1919 //
1920 // Deleting variable with current variable implementation shouldn't fail.
1921 // When BootXXXX (e.g.: BootManagerMenu) boots BootYYYY, exiting BootYYYY causes BootCurrent deleted,
1922 // exiting BootXXXX causes deleting BootCurrent returns EFI_NOT_FOUND.
1923 //
1924 ASSERT (Status == EFI_SUCCESS || Status == EFI_NOT_FOUND);
1925 }
1926
1927 /**
1928 Check whether there is a instance in BlockIoDevicePath, which contain multi device path
1929 instances, has the same partition node with HardDriveDevicePath device path
1930
1931 @param BlockIoDevicePath Multi device path instances which need to check
1932 @param HardDriveDevicePath A device path which starts with a hard drive media
1933 device path.
1934
1935 @retval TRUE There is a matched device path instance.
1936 @retval FALSE There is no matched device path instance.
1937
1938 **/
1939 BOOLEAN
1940 BmMatchPartitionDevicePathNode (
1941 IN EFI_DEVICE_PATH_PROTOCOL *BlockIoDevicePath,
1942 IN HARDDRIVE_DEVICE_PATH *HardDriveDevicePath
1943 )
1944 {
1945 HARDDRIVE_DEVICE_PATH *Node;
1946
1947 if ((BlockIoDevicePath == NULL) || (HardDriveDevicePath == NULL)) {
1948 return FALSE;
1949 }
1950
1951 //
1952 // find the partition device path node
1953 //
1954 while (!IsDevicePathEnd (BlockIoDevicePath)) {
1955 if ((DevicePathType (BlockIoDevicePath) == MEDIA_DEVICE_PATH) &&
1956 (DevicePathSubType (BlockIoDevicePath) == MEDIA_HARDDRIVE_DP)
1957 ) {
1958 break;
1959 }
1960
1961 BlockIoDevicePath = NextDevicePathNode (BlockIoDevicePath);
1962 }
1963
1964 if (IsDevicePathEnd (BlockIoDevicePath)) {
1965 return FALSE;
1966 }
1967
1968 //
1969 // See if the harddrive device path in blockio matches the orig Hard Drive Node
1970 //
1971 Node = (HARDDRIVE_DEVICE_PATH *) BlockIoDevicePath;
1972
1973 //
1974 // Match Signature and PartitionNumber.
1975 // Unused bytes in Signature are initiaized with zeros.
1976 //
1977 return (BOOLEAN) (
1978 (Node->PartitionNumber == HardDriveDevicePath->PartitionNumber) &&
1979 (Node->MBRType == HardDriveDevicePath->MBRType) &&
1980 (Node->SignatureType == HardDriveDevicePath->SignatureType) &&
1981 (CompareMem (Node->Signature, HardDriveDevicePath->Signature, sizeof (Node->Signature)) == 0)
1982 );
1983 }
1984
1985 /**
1986 Enumerate all boot option descriptions and append " 2"/" 3"/... to make
1987 unique description.
1988
1989 @param BootOptions Array of boot options.
1990 @param BootOptionCount Count of boot options.
1991 **/
1992 VOID
1993 BmMakeBootOptionDescriptionUnique (
1994 EFI_BOOT_MANAGER_LOAD_OPTION *BootOptions,
1995 UINTN BootOptionCount
1996 )
1997 {
1998 UINTN Base;
1999 UINTN Index;
2000 UINTN DescriptionSize;
2001 UINTN MaxSuffixSize;
2002 BOOLEAN *Visited;
2003 UINTN MatchCount;
2004
2005 if (BootOptionCount == 0) {
2006 return;
2007 }
2008
2009 //
2010 // Calculate the maximum buffer size for the number suffix.
2011 // The initial sizeof (CHAR16) is for the blank space before the number.
2012 //
2013 MaxSuffixSize = sizeof (CHAR16);
2014 for (Index = BootOptionCount; Index != 0; Index = Index / 10) {
2015 MaxSuffixSize += sizeof (CHAR16);
2016 }
2017
2018 Visited = AllocateZeroPool (sizeof (BOOLEAN) * BootOptionCount);
2019 ASSERT (Visited != NULL);
2020
2021 for (Base = 0; Base < BootOptionCount; Base++) {
2022 if (!Visited[Base]) {
2023 MatchCount = 1;
2024 Visited[Base] = TRUE;
2025 DescriptionSize = StrSize (BootOptions[Base].Description);
2026 for (Index = Base + 1; Index < BootOptionCount; Index++) {
2027 if (!Visited[Index] && StrCmp (BootOptions[Base].Description, BootOptions[Index].Description) == 0) {
2028 Visited[Index] = TRUE;
2029 MatchCount++;
2030 FreePool (BootOptions[Index].Description);
2031 BootOptions[Index].Description = AllocatePool (DescriptionSize + MaxSuffixSize);
2032 UnicodeSPrint (
2033 BootOptions[Index].Description, DescriptionSize + MaxSuffixSize,
2034 L"%s %d",
2035 BootOptions[Base].Description, MatchCount
2036 );
2037 }
2038 }
2039 }
2040 }
2041
2042 FreePool (Visited);
2043 }
2044
2045 /**
2046 Emuerate all possible bootable medias in the following order:
2047 1. Removable BlockIo - The boot option only points to the removable media
2048 device, like USB key, DVD, Floppy etc.
2049 2. Fixed BlockIo - The boot option only points to a Fixed blockIo device,
2050 like HardDisk.
2051 3. Non-BlockIo SimpleFileSystem - The boot option points to a device supporting
2052 SimpleFileSystem Protocol, but not supporting BlockIo
2053 protocol.
2054 4. LoadFile - The boot option points to the media supporting
2055 LoadFile protocol.
2056 Reference: UEFI Spec chapter 3.3 Boot Option Variables Default Boot Behavior
2057
2058 @param BootOptionCount Return the boot option count which has been found.
2059
2060 @retval Pointer to the boot option array.
2061 **/
2062 EFI_BOOT_MANAGER_LOAD_OPTION *
2063 BmEnumerateBootOptions (
2064 UINTN *BootOptionCount
2065 )
2066 {
2067 EFI_STATUS Status;
2068 EFI_BOOT_MANAGER_LOAD_OPTION *BootOptions;
2069 UINTN HandleCount;
2070 EFI_HANDLE *Handles;
2071 EFI_BLOCK_IO_PROTOCOL *BlkIo;
2072 UINTN Removable;
2073 UINTN Index;
2074 CHAR16 *Description;
2075
2076 ASSERT (BootOptionCount != NULL);
2077
2078 *BootOptionCount = 0;
2079 BootOptions = NULL;
2080
2081 //
2082 // Parse removable block io followed by fixed block io
2083 //
2084 gBS->LocateHandleBuffer (
2085 ByProtocol,
2086 &gEfiBlockIoProtocolGuid,
2087 NULL,
2088 &HandleCount,
2089 &Handles
2090 );
2091
2092 for (Removable = 0; Removable < 2; Removable++) {
2093 for (Index = 0; Index < HandleCount; Index++) {
2094 Status = gBS->HandleProtocol (
2095 Handles[Index],
2096 &gEfiBlockIoProtocolGuid,
2097 (VOID **) &BlkIo
2098 );
2099 if (EFI_ERROR (Status)) {
2100 continue;
2101 }
2102
2103 //
2104 // Skip the logical partitions
2105 //
2106 if (BlkIo->Media->LogicalPartition) {
2107 continue;
2108 }
2109
2110 //
2111 // Skip the fixed block io then the removable block io
2112 //
2113 if (BlkIo->Media->RemovableMedia == ((Removable == 0) ? FALSE : TRUE)) {
2114 continue;
2115 }
2116
2117 Description = BmGetBootDescription (Handles[Index]);
2118 BootOptions = ReallocatePool (
2119 sizeof (EFI_BOOT_MANAGER_LOAD_OPTION) * (*BootOptionCount),
2120 sizeof (EFI_BOOT_MANAGER_LOAD_OPTION) * (*BootOptionCount + 1),
2121 BootOptions
2122 );
2123 ASSERT (BootOptions != NULL);
2124
2125 Status = EfiBootManagerInitializeLoadOption (
2126 &BootOptions[(*BootOptionCount)++],
2127 LoadOptionNumberUnassigned,
2128 LoadOptionTypeBoot,
2129 LOAD_OPTION_ACTIVE,
2130 Description,
2131 DevicePathFromHandle (Handles[Index]),
2132 NULL,
2133 0
2134 );
2135 ASSERT_EFI_ERROR (Status);
2136
2137 FreePool (Description);
2138 }
2139 }
2140
2141 if (HandleCount != 0) {
2142 FreePool (Handles);
2143 }
2144
2145 //
2146 // Parse simple file system not based on block io
2147 //
2148 gBS->LocateHandleBuffer (
2149 ByProtocol,
2150 &gEfiSimpleFileSystemProtocolGuid,
2151 NULL,
2152 &HandleCount,
2153 &Handles
2154 );
2155 for (Index = 0; Index < HandleCount; Index++) {
2156 Status = gBS->HandleProtocol (
2157 Handles[Index],
2158 &gEfiBlockIoProtocolGuid,
2159 (VOID **) &BlkIo
2160 );
2161 if (!EFI_ERROR (Status)) {
2162 //
2163 // Skip if the file system handle supports a BlkIo protocol, which we've handled in above
2164 //
2165 continue;
2166 }
2167 Description = BmGetBootDescription (Handles[Index]);
2168 BootOptions = ReallocatePool (
2169 sizeof (EFI_BOOT_MANAGER_LOAD_OPTION) * (*BootOptionCount),
2170 sizeof (EFI_BOOT_MANAGER_LOAD_OPTION) * (*BootOptionCount + 1),
2171 BootOptions
2172 );
2173 ASSERT (BootOptions != NULL);
2174
2175 Status = EfiBootManagerInitializeLoadOption (
2176 &BootOptions[(*BootOptionCount)++],
2177 LoadOptionNumberUnassigned,
2178 LoadOptionTypeBoot,
2179 LOAD_OPTION_ACTIVE,
2180 Description,
2181 DevicePathFromHandle (Handles[Index]),
2182 NULL,
2183 0
2184 );
2185 ASSERT_EFI_ERROR (Status);
2186 FreePool (Description);
2187 }
2188
2189 if (HandleCount != 0) {
2190 FreePool (Handles);
2191 }
2192
2193 //
2194 // Parse load file, assuming UEFI Network boot option
2195 //
2196 gBS->LocateHandleBuffer (
2197 ByProtocol,
2198 &gEfiLoadFileProtocolGuid,
2199 NULL,
2200 &HandleCount,
2201 &Handles
2202 );
2203 for (Index = 0; Index < HandleCount; Index++) {
2204
2205 Description = BmGetBootDescription (Handles[Index]);
2206 BootOptions = ReallocatePool (
2207 sizeof (EFI_BOOT_MANAGER_LOAD_OPTION) * (*BootOptionCount),
2208 sizeof (EFI_BOOT_MANAGER_LOAD_OPTION) * (*BootOptionCount + 1),
2209 BootOptions
2210 );
2211 ASSERT (BootOptions != NULL);
2212
2213 Status = EfiBootManagerInitializeLoadOption (
2214 &BootOptions[(*BootOptionCount)++],
2215 LoadOptionNumberUnassigned,
2216 LoadOptionTypeBoot,
2217 LOAD_OPTION_ACTIVE,
2218 Description,
2219 DevicePathFromHandle (Handles[Index]),
2220 NULL,
2221 0
2222 );
2223 ASSERT_EFI_ERROR (Status);
2224 FreePool (Description);
2225 }
2226
2227 if (HandleCount != 0) {
2228 FreePool (Handles);
2229 }
2230
2231 BmMakeBootOptionDescriptionUnique (BootOptions, *BootOptionCount);
2232 return BootOptions;
2233 }
2234
2235 /**
2236 The function enumerates all boot options, creates them and registers them in the BootOrder variable.
2237 **/
2238 VOID
2239 EFIAPI
2240 EfiBootManagerRefreshAllBootOption (
2241 VOID
2242 )
2243 {
2244 EFI_STATUS Status;
2245 EFI_BOOT_MANAGER_LOAD_OPTION *NvBootOptions;
2246 UINTN NvBootOptionCount;
2247 EFI_BOOT_MANAGER_LOAD_OPTION *BootOptions;
2248 UINTN BootOptionCount;
2249 UINTN Index;
2250
2251 //
2252 // Optionally refresh the legacy boot option
2253 //
2254 if (mBmRefreshLegacyBootOption != NULL) {
2255 mBmRefreshLegacyBootOption ();
2256 }
2257
2258 BootOptions = BmEnumerateBootOptions (&BootOptionCount);
2259 NvBootOptions = EfiBootManagerGetLoadOptions (&NvBootOptionCount, LoadOptionTypeBoot);
2260
2261 //
2262 // Mark the boot option as added by BDS by setting OptionalData to a special GUID
2263 //
2264 for (Index = 0; Index < BootOptionCount; Index++) {
2265 BootOptions[Index].OptionalData = AllocateCopyPool (sizeof (EFI_GUID), &mBmAutoCreateBootOptionGuid);
2266 BootOptions[Index].OptionalDataSize = sizeof (EFI_GUID);
2267 }
2268
2269 //
2270 // Remove invalid EFI boot options from NV
2271 //
2272 for (Index = 0; Index < NvBootOptionCount; Index++) {
2273 if (((DevicePathType (NvBootOptions[Index].FilePath) != BBS_DEVICE_PATH) ||
2274 (DevicePathSubType (NvBootOptions[Index].FilePath) != BBS_BBS_DP)
2275 ) && BmIsAutoCreateBootOption (&NvBootOptions[Index])
2276 ) {
2277 //
2278 // Only check those added by BDS
2279 // so that the boot options added by end-user or OS installer won't be deleted
2280 //
2281 if (EfiBootManagerFindLoadOption (&NvBootOptions[Index], BootOptions, BootOptionCount) == (UINTN) -1) {
2282 Status = EfiBootManagerDeleteLoadOptionVariable (NvBootOptions[Index].OptionNumber, LoadOptionTypeBoot);
2283 //
2284 // Deleting variable with current variable implementation shouldn't fail.
2285 //
2286 ASSERT_EFI_ERROR (Status);
2287 }
2288 }
2289 }
2290
2291 //
2292 // Add new EFI boot options to NV
2293 //
2294 for (Index = 0; Index < BootOptionCount; Index++) {
2295 if (EfiBootManagerFindLoadOption (&BootOptions[Index], NvBootOptions, NvBootOptionCount) == (UINTN) -1) {
2296 EfiBootManagerAddLoadOptionVariable (&BootOptions[Index], (UINTN) -1);
2297 //
2298 // Try best to add the boot options so continue upon failure.
2299 //
2300 }
2301 }
2302
2303 EfiBootManagerFreeLoadOptions (BootOptions, BootOptionCount);
2304 EfiBootManagerFreeLoadOptions (NvBootOptions, NvBootOptionCount);
2305 }
2306
2307 /**
2308 This function is called to create the boot option for the Boot Manager Menu.
2309
2310 The Boot Manager Menu is shown after successfully booting a boot option.
2311 Assume the BootManagerMenuFile is in the same FV as the module links to this library.
2312
2313 @param BootOption Return the boot option of the Boot Manager Menu
2314
2315 @retval EFI_SUCCESS Successfully register the Boot Manager Menu.
2316 @retval Status Return status of gRT->SetVariable (). BootOption still points
2317 to the Boot Manager Menu even the Status is not EFI_SUCCESS.
2318 **/
2319 EFI_STATUS
2320 BmRegisterBootManagerMenu (
2321 OUT EFI_BOOT_MANAGER_LOAD_OPTION *BootOption
2322 )
2323 {
2324 EFI_STATUS Status;
2325 CHAR16 *Description;
2326 UINTN DescriptionLength;
2327 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
2328 EFI_LOADED_IMAGE_PROTOCOL *LoadedImage;
2329 MEDIA_FW_VOL_FILEPATH_DEVICE_PATH FileNode;
2330
2331 Status = GetSectionFromFv (
2332 PcdGetPtr (PcdBootManagerMenuFile),
2333 EFI_SECTION_USER_INTERFACE,
2334 0,
2335 (VOID **) &Description,
2336 &DescriptionLength
2337 );
2338 if (EFI_ERROR (Status)) {
2339 Description = NULL;
2340 }
2341
2342 EfiInitializeFwVolDevicepathNode (&FileNode, PcdGetPtr (PcdBootManagerMenuFile));
2343 Status = gBS->HandleProtocol (
2344 gImageHandle,
2345 &gEfiLoadedImageProtocolGuid,
2346 (VOID **) &LoadedImage
2347 );
2348 ASSERT_EFI_ERROR (Status);
2349 DevicePath = AppendDevicePathNode (
2350 DevicePathFromHandle (LoadedImage->DeviceHandle),
2351 (EFI_DEVICE_PATH_PROTOCOL *) &FileNode
2352 );
2353 ASSERT (DevicePath != NULL);
2354
2355 Status = EfiBootManagerInitializeLoadOption (
2356 BootOption,
2357 LoadOptionNumberUnassigned,
2358 LoadOptionTypeBoot,
2359 LOAD_OPTION_CATEGORY_APP | LOAD_OPTION_ACTIVE | LOAD_OPTION_HIDDEN,
2360 (Description != NULL) ? Description : L"Boot Manager Menu",
2361 DevicePath,
2362 NULL,
2363 0
2364 );
2365 ASSERT_EFI_ERROR (Status);
2366 FreePool (DevicePath);
2367 if (Description != NULL) {
2368 FreePool (Description);
2369 }
2370
2371 DEBUG_CODE (
2372 EFI_BOOT_MANAGER_LOAD_OPTION *BootOptions;
2373 UINTN BootOptionCount;
2374
2375 BootOptions = EfiBootManagerGetLoadOptions (&BootOptionCount, LoadOptionTypeBoot);
2376 ASSERT (EfiBootManagerFindLoadOption (BootOption, BootOptions, BootOptionCount) == -1);
2377 EfiBootManagerFreeLoadOptions (BootOptions, BootOptionCount);
2378 );
2379
2380 return EfiBootManagerAddLoadOptionVariable (BootOption, 0);
2381 }
2382
2383 /**
2384 Return the boot option corresponding to the Boot Manager Menu.
2385 It may automatically create one if the boot option hasn't been created yet.
2386
2387 @param BootOption Return the Boot Manager Menu.
2388
2389 @retval EFI_SUCCESS The Boot Manager Menu is successfully returned.
2390 @retval Status Return status of gRT->SetVariable (). BootOption still points
2391 to the Boot Manager Menu even the Status is not EFI_SUCCESS.
2392 **/
2393 EFI_STATUS
2394 EFIAPI
2395 EfiBootManagerGetBootManagerMenu (
2396 EFI_BOOT_MANAGER_LOAD_OPTION *BootOption
2397 )
2398 {
2399 EFI_STATUS Status;
2400 UINTN BootOptionCount;
2401 EFI_BOOT_MANAGER_LOAD_OPTION *BootOptions;
2402 UINTN Index;
2403 EFI_DEVICE_PATH_PROTOCOL *Node;
2404 EFI_HANDLE FvHandle;
2405
2406 BootOptions = EfiBootManagerGetLoadOptions (&BootOptionCount, LoadOptionTypeBoot);
2407
2408 for (Index = 0; Index < BootOptionCount; Index++) {
2409 Node = BootOptions[Index].FilePath;
2410 Status = gBS->LocateDevicePath (&gEfiFirmwareVolume2ProtocolGuid, &Node, &FvHandle);
2411 if (!EFI_ERROR (Status)) {
2412 if (CompareGuid (
2413 EfiGetNameGuidFromFwVolDevicePathNode ((CONST MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *) Node),
2414 PcdGetPtr (PcdBootManagerMenuFile)
2415 )
2416 ) {
2417 Status = EfiBootManagerInitializeLoadOption (
2418 BootOption,
2419 BootOptions[Index].OptionNumber,
2420 BootOptions[Index].OptionType,
2421 BootOptions[Index].Attributes,
2422 BootOptions[Index].Description,
2423 BootOptions[Index].FilePath,
2424 BootOptions[Index].OptionalData,
2425 BootOptions[Index].OptionalDataSize
2426 );
2427 ASSERT_EFI_ERROR (Status);
2428 break;
2429 }
2430 }
2431 }
2432
2433 EfiBootManagerFreeLoadOptions (BootOptions, BootOptionCount);
2434
2435 //
2436 // Automatically create the Boot#### for Boot Manager Menu when not found.
2437 //
2438 if (Index == BootOptionCount) {
2439 return BmRegisterBootManagerMenu (BootOption);
2440 } else {
2441 return EFI_SUCCESS;
2442 }
2443 }
2444