]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Library/GenericBdsLib/BdsBoot.c
Use PcdResetOnMemoryTypeInformationChange in MdeModulePkg to control whether to reset...
[mirror_edk2.git] / IntelFrameworkModulePkg / Library / GenericBdsLib / BdsBoot.c
1 /** @file
2 BDS Lib functions which relate with create or process the boot option.
3
4 Copyright (c) 2004 - 2010, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include "InternalBdsLib.h"
16 #include "String.h"
17
18 BOOLEAN mEnumBootDevice = FALSE;
19 EFI_HII_HANDLE gBdsLibStringPackHandle = NULL;
20
21 ///
22 /// This GUID is used for an EFI Variable that stores the front device pathes
23 /// for a partial device path that starts with the HD node.
24 ///
25 EFI_GUID mHdBootVariablePrivateGuid = { 0xfab7e9e1, 0x39dd, 0x4f2b, { 0x84, 0x8, 0xe2, 0xe, 0x90, 0x6c, 0xb6, 0xde } };
26
27 ///
28 /// This GUID is used for register UNI string.
29 ///
30 EFI_GUID mBdsLibStringPackGuid = { 0x3b4d9b23, 0x95ac, 0x44f6, { 0x9f, 0xcd, 0xe, 0x95, 0x94, 0x58, 0x6c, 0x72 } };
31
32 ///
33 /// This GUID is used for Set/Get platform language into/from variable at last time enumeration to ensure the enumeration will
34 /// only execute once.
35 ///
36 EFI_GUID mBdsLibLastLangGuid = { 0xe8c545b, 0xa2ee, 0x470d, { 0x8e, 0x26, 0xbd, 0xa1, 0xa1, 0x3c, 0xa, 0xa3 } };
37
38 /**
39 The constructor function register UNI strings into imageHandle.
40
41 It will ASSERT() if that operation fails and it will always return EFI_SUCCESS.
42
43 @param ImageHandle The firmware allocated handle for the EFI image.
44 @param SystemTable A pointer to the EFI System Table.
45
46 @retval EFI_SUCCESS The constructor successfully added string package.
47 @retval Other value The constructor can't add string package.
48
49 **/
50 EFI_STATUS
51 EFIAPI
52 GenericBdsLibConstructor (
53 IN EFI_HANDLE ImageHandle,
54 IN EFI_SYSTEM_TABLE *SystemTable
55 )
56 {
57
58 gBdsLibStringPackHandle = HiiAddPackages (
59 &mBdsLibStringPackGuid,
60 &ImageHandle,
61 GenericBdsLibStrings,
62 NULL
63 );
64
65 ASSERT (gBdsLibStringPackHandle != NULL);
66
67 return EFI_SUCCESS;
68 }
69
70
71
72 /**
73 Boot the legacy system with the boot option
74
75 @param Option The legacy boot option which have BBS device path
76
77 @retval EFI_UNSUPPORTED There is no legacybios protocol, do not support
78 legacy boot.
79 @retval EFI_STATUS Return the status of LegacyBios->LegacyBoot ().
80
81 **/
82 EFI_STATUS
83 BdsLibDoLegacyBoot (
84 IN BDS_COMMON_OPTION *Option
85 )
86 {
87 EFI_STATUS Status;
88 EFI_LEGACY_BIOS_PROTOCOL *LegacyBios;
89
90 Status = gBS->LocateProtocol (&gEfiLegacyBiosProtocolGuid, NULL, (VOID **) &LegacyBios);
91 if (EFI_ERROR (Status)) {
92 //
93 // If no LegacyBios protocol we do not support legacy boot
94 //
95 return EFI_UNSUPPORTED;
96 }
97 //
98 // Notes: if we separate the int 19, then we don't need to refresh BBS
99 //
100 BdsRefreshBbsTableForBoot (Option);
101
102 //
103 // Write boot to OS performance data for legacy boot.
104 //
105 PERF_CODE (
106 WriteBootToOsPerformanceData ();
107 );
108
109 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Legacy Boot: %S\n", Option->Description));
110 return LegacyBios->LegacyBoot (
111 LegacyBios,
112 (BBS_BBS_DEVICE_PATH *) Option->DevicePath,
113 Option->LoadOptionsSize,
114 Option->LoadOptions
115 );
116 }
117
118 /**
119 Internal function to check if the input boot option is a valid EFI NV Boot####.
120
121 @param OptionToCheck Boot option to be checked.
122
123 @retval TRUE This boot option matches a valid EFI NV Boot####.
124 @retval FALSE If not.
125
126 **/
127 BOOLEAN
128 IsBootOptionValidNVVarialbe (
129 IN BDS_COMMON_OPTION *OptionToCheck
130 )
131 {
132 LIST_ENTRY TempList;
133 BDS_COMMON_OPTION *BootOption;
134 BOOLEAN Valid;
135 CHAR16 OptionName[20];
136
137 Valid = FALSE;
138
139 InitializeListHead (&TempList);
140 UnicodeSPrint (OptionName, sizeof (OptionName), L"Boot%04x", OptionToCheck->BootCurrent);
141
142 BootOption = BdsLibVariableToOption (&TempList, OptionName);
143 if (BootOption == NULL) {
144 return FALSE;
145 }
146
147 //
148 // If the Boot Option Number and Device Path matches, OptionToCheck matches a
149 // valid EFI NV Boot####.
150 //
151 if ((OptionToCheck->BootCurrent == BootOption->BootCurrent) &&
152 (CompareMem (OptionToCheck->DevicePath, BootOption->DevicePath, GetDevicePathSize (OptionToCheck->DevicePath)) == 0))
153 {
154 Valid = TRUE;
155 }
156
157 FreePool (BootOption);
158
159 return Valid;
160 }
161 /**
162 Process the boot option follow the UEFI specification and
163 special treat the legacy boot option with BBS_DEVICE_PATH.
164
165 @param Option The boot option need to be processed
166 @param DevicePath The device path which describe where to load the
167 boot image or the legacy BBS device path to boot
168 the legacy OS
169 @param ExitDataSize The size of exit data.
170 @param ExitData Data returned when Boot image failed.
171
172 @retval EFI_SUCCESS Boot from the input boot option successfully.
173 @retval EFI_NOT_FOUND If the Device Path is not found in the system
174
175 **/
176 EFI_STATUS
177 EFIAPI
178 BdsLibBootViaBootOption (
179 IN BDS_COMMON_OPTION *Option,
180 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,
181 OUT UINTN *ExitDataSize,
182 OUT CHAR16 **ExitData OPTIONAL
183 )
184 {
185 EFI_STATUS Status;
186 EFI_HANDLE Handle;
187 EFI_HANDLE ImageHandle;
188 EFI_DEVICE_PATH_PROTOCOL *FilePath;
189 EFI_LOADED_IMAGE_PROTOCOL *ImageInfo;
190 EFI_DEVICE_PATH_PROTOCOL *WorkingDevicePath;
191 EFI_ACPI_S3_SAVE_PROTOCOL *AcpiS3Save;
192 LIST_ENTRY TempBootLists;
193
194 //
195 // Record the performance data for End of BDS
196 //
197 PERF_END(NULL, "BDS", NULL, 0);
198
199 *ExitDataSize = 0;
200 *ExitData = NULL;
201
202 //
203 // Notes: this code can be remove after the s3 script table
204 // hook on the event EVT_SIGNAL_READY_TO_BOOT or
205 // EVT_SIGNAL_LEGACY_BOOT
206 //
207 Status = gBS->LocateProtocol (&gEfiAcpiS3SaveProtocolGuid, NULL, (VOID **) &AcpiS3Save);
208 if (!EFI_ERROR (Status)) {
209 AcpiS3Save->S3Save (AcpiS3Save, NULL);
210 }
211 //
212 // If it's Device Path that starts with a hard drive path, append it with the front part to compose a
213 // full device path
214 //
215 WorkingDevicePath = NULL;
216 if ((DevicePathType (DevicePath) == MEDIA_DEVICE_PATH) &&
217 (DevicePathSubType (DevicePath) == MEDIA_HARDDRIVE_DP)) {
218 WorkingDevicePath = BdsExpandPartitionPartialDevicePathToFull (
219 (HARDDRIVE_DEVICE_PATH *)DevicePath
220 );
221 if (WorkingDevicePath != NULL) {
222 DevicePath = WorkingDevicePath;
223 }
224 }
225 //
226 // Signal the EVT_SIGNAL_READY_TO_BOOT event
227 //
228 EfiSignalEventReadyToBoot();
229
230 //
231 // Adjust the different type memory page number just before booting
232 // and save the updated info into the variable for next boot to use
233 //
234 BdsSetMemoryTypeInformationVariable ();
235
236
237 //
238 // Set Boot Current
239 //
240 if (IsBootOptionValidNVVarialbe (Option)) {
241 //
242 // For a temporary boot (i.e. a boot by selected a EFI Shell using "Boot From File"), Boot Current is actually not valid.
243 // In this case, "BootCurrent" is not created.
244 // Only create the BootCurrent variable when it points to a valid Boot#### variable.
245 //
246 gRT->SetVariable (
247 L"BootCurrent",
248 &gEfiGlobalVariableGuid,
249 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS,
250 sizeof (UINT16),
251 &Option->BootCurrent
252 );
253 }
254
255 ASSERT (Option->DevicePath != NULL);
256 if ((DevicePathType (Option->DevicePath) == BBS_DEVICE_PATH) &&
257 (DevicePathSubType (Option->DevicePath) == BBS_BBS_DP)
258 ) {
259 //
260 // Check to see if we should legacy BOOT. If yes then do the legacy boot
261 //
262 return BdsLibDoLegacyBoot (Option);
263 }
264
265 //
266 // If the boot option point to Internal FV shell, make sure it is valid
267 //
268 Status = BdsLibUpdateFvFileDevicePath (&DevicePath, PcdGetPtr(PcdShellFile));
269 if (!EFI_ERROR(Status)) {
270 if (Option->DevicePath != NULL) {
271 FreePool(Option->DevicePath);
272 }
273 Option->DevicePath = AllocateZeroPool (GetDevicePathSize (DevicePath));
274 ASSERT(Option->DevicePath != NULL);
275 CopyMem (Option->DevicePath, DevicePath, GetDevicePathSize (DevicePath));
276 //
277 // Update the shell boot option
278 //
279 InitializeListHead (&TempBootLists);
280 BdsLibRegisterNewOption (&TempBootLists, DevicePath, L"EFI Internal Shell", L"BootOrder");
281
282 //
283 // free the temporary device path created by BdsLibUpdateFvFileDevicePath()
284 //
285 FreePool (DevicePath);
286 DevicePath = Option->DevicePath;
287 }
288
289 DEBUG_CODE_BEGIN();
290
291 if (Option->Description == NULL) {
292 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Booting from unknown device path\n"));
293 } else {
294 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Booting %S\n", Option->Description));
295 }
296
297 DEBUG_CODE_END();
298
299 Status = gBS->LoadImage (
300 TRUE,
301 gImageHandle,
302 DevicePath,
303 NULL,
304 0,
305 &ImageHandle
306 );
307
308 //
309 // If we didn't find an image directly, we need to try as if it is a removable device boot option
310 // and load the image according to the default boot behavior for removable device.
311 //
312 if (EFI_ERROR (Status)) {
313 //
314 // check if there is a bootable removable media could be found in this device path ,
315 // and get the bootable media handle
316 //
317 Handle = BdsLibGetBootableHandle(DevicePath);
318 if (Handle == NULL) {
319 goto Done;
320 }
321 //
322 // Load the default boot file \EFI\BOOT\boot{machinename}.EFI from removable Media
323 // machinename is ia32, ia64, x64, ...
324 //
325 FilePath = FileDevicePath (Handle, EFI_REMOVABLE_MEDIA_FILE_NAME);
326 if (FilePath != NULL) {
327 Status = gBS->LoadImage (
328 TRUE,
329 gImageHandle,
330 FilePath,
331 NULL,
332 0,
333 &ImageHandle
334 );
335 if (EFI_ERROR (Status)) {
336 //
337 // The DevicePath failed, and it's not a valid
338 // removable media device.
339 //
340 goto Done;
341 }
342 }
343 }
344
345 if (EFI_ERROR (Status)) {
346 //
347 // It there is any error from the Boot attempt exit now.
348 //
349 goto Done;
350 }
351 //
352 // Provide the image with it's load options
353 //
354 Status = gBS->HandleProtocol (ImageHandle, &gEfiLoadedImageProtocolGuid, (VOID **) &ImageInfo);
355 ASSERT_EFI_ERROR (Status);
356
357 if (Option->LoadOptionsSize != 0) {
358 ImageInfo->LoadOptionsSize = Option->LoadOptionsSize;
359 ImageInfo->LoadOptions = Option->LoadOptions;
360 }
361 //
362 // Before calling the image, enable the Watchdog Timer for
363 // the 5 Minute period
364 //
365 gBS->SetWatchdogTimer (5 * 60, 0x0000, 0x00, NULL);
366
367 //
368 // Write boot to OS performance data for UEFI boot
369 //
370 PERF_CODE (
371 WriteBootToOsPerformanceData ();
372 );
373
374 Status = gBS->StartImage (ImageHandle, ExitDataSize, ExitData);
375 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Image Return Status = %r\n", Status));
376
377 //
378 // Clear the Watchdog Timer after the image returns
379 //
380 gBS->SetWatchdogTimer (0x0000, 0x0000, 0x0000, NULL);
381
382 Done:
383 //
384 // Clear Boot Current
385 //
386 gRT->SetVariable (
387 L"BootCurrent",
388 &gEfiGlobalVariableGuid,
389 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS,
390 0,
391 &Option->BootCurrent
392 );
393
394 return Status;
395 }
396
397
398 /**
399 Expand a device path that starts with a hard drive media device path node to be a
400 full device path that includes the full hardware path to the device. We need
401 to do this so it can be booted. As an optimization the front match (the part point
402 to the partition node. E.g. ACPI() /PCI()/ATA()/Partition() ) is saved in a variable
403 so a connect all is not required on every boot. All successful history device path
404 which point to partition node (the front part) will be saved.
405
406 @param HardDriveDevicePath EFI Device Path to boot, if it starts with a hard
407 drive media device path.
408 @return A Pointer to the full device path or NULL if a valid Hard Drive devic path
409 cannot be found.
410
411 **/
412 EFI_DEVICE_PATH_PROTOCOL *
413 EFIAPI
414 BdsExpandPartitionPartialDevicePathToFull (
415 IN HARDDRIVE_DEVICE_PATH *HardDriveDevicePath
416 )
417 {
418 EFI_STATUS Status;
419 UINTN BlockIoHandleCount;
420 EFI_HANDLE *BlockIoBuffer;
421 EFI_DEVICE_PATH_PROTOCOL *FullDevicePath;
422 EFI_DEVICE_PATH_PROTOCOL *BlockIoDevicePath;
423 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
424 UINTN Index;
425 UINTN InstanceNum;
426 EFI_DEVICE_PATH_PROTOCOL *CachedDevicePath;
427 EFI_DEVICE_PATH_PROTOCOL *TempNewDevicePath;
428 UINTN CachedDevicePathSize;
429 BOOLEAN DeviceExist;
430 BOOLEAN NeedAdjust;
431 EFI_DEVICE_PATH_PROTOCOL *Instance;
432 UINTN Size;
433
434 FullDevicePath = NULL;
435 //
436 // Check if there is prestore 'HDDP' variable.
437 // If exist, search the front path which point to partition node in the variable instants.
438 // If fail to find or 'HDDP' not exist, reconnect all and search in all system
439 //
440 CachedDevicePath = BdsLibGetVariableAndSize (
441 L"HDDP",
442 &mHdBootVariablePrivateGuid,
443 &CachedDevicePathSize
444 );
445
446 if (CachedDevicePath != NULL) {
447 TempNewDevicePath = CachedDevicePath;
448 DeviceExist = FALSE;
449 NeedAdjust = FALSE;
450 do {
451 //
452 // Check every instance of the variable
453 // First, check whether the instance contain the partition node, which is needed for distinguishing multi
454 // partial partition boot option. Second, check whether the instance could be connected.
455 //
456 Instance = GetNextDevicePathInstance (&TempNewDevicePath, &Size);
457 if (MatchPartitionDevicePathNode (Instance, HardDriveDevicePath)) {
458 //
459 // Connect the device path instance, the device path point to hard drive media device path node
460 // e.g. ACPI() /PCI()/ATA()/Partition()
461 //
462 Status = BdsLibConnectDevicePath (Instance);
463 if (!EFI_ERROR (Status)) {
464 DeviceExist = TRUE;
465 break;
466 }
467 }
468 //
469 // Come here means the first instance is not matched
470 //
471 NeedAdjust = TRUE;
472 FreePool(Instance);
473 } while (TempNewDevicePath != NULL);
474
475 if (DeviceExist) {
476 //
477 // Find the matched device path.
478 // Append the file path information from the boot option and return the fully expanded device path.
479 //
480 DevicePath = NextDevicePathNode ((EFI_DEVICE_PATH_PROTOCOL *) HardDriveDevicePath);
481 FullDevicePath = AppendDevicePath (Instance, DevicePath);
482
483 //
484 // Adjust the 'HDDP' instances sequence if the matched one is not first one.
485 //
486 if (NeedAdjust) {
487 //
488 // First delete the matched instance.
489 //
490 TempNewDevicePath = CachedDevicePath;
491 CachedDevicePath = BdsLibDelPartMatchInstance (CachedDevicePath, Instance );
492 FreePool (TempNewDevicePath);
493
494 //
495 // Second, append the remaining path after the matched instance
496 //
497 TempNewDevicePath = CachedDevicePath;
498 CachedDevicePath = AppendDevicePathInstance (Instance, CachedDevicePath );
499 FreePool (TempNewDevicePath);
500 //
501 // Save the matching Device Path so we don't need to do a connect all next time
502 //
503 Status = gRT->SetVariable (
504 L"HDDP",
505 &mHdBootVariablePrivateGuid,
506 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
507 GetDevicePathSize (CachedDevicePath),
508 CachedDevicePath
509 );
510 }
511
512 FreePool (Instance);
513 FreePool (CachedDevicePath);
514 return FullDevicePath;
515 }
516 }
517
518 //
519 // If we get here we fail to find or 'HDDP' not exist, and now we need
520 // to search all devices in the system for a matched partition
521 //
522 BdsLibConnectAllDriversToAllControllers ();
523 Status = gBS->LocateHandleBuffer (ByProtocol, &gEfiBlockIoProtocolGuid, NULL, &BlockIoHandleCount, &BlockIoBuffer);
524 if (EFI_ERROR (Status) || BlockIoHandleCount == 0 || BlockIoBuffer == NULL) {
525 //
526 // If there was an error or there are no device handles that support
527 // the BLOCK_IO Protocol, then return.
528 //
529 return NULL;
530 }
531 //
532 // Loop through all the device handles that support the BLOCK_IO Protocol
533 //
534 for (Index = 0; Index < BlockIoHandleCount; Index++) {
535
536 Status = gBS->HandleProtocol (BlockIoBuffer[Index], &gEfiDevicePathProtocolGuid, (VOID *) &BlockIoDevicePath);
537 if (EFI_ERROR (Status) || BlockIoDevicePath == NULL) {
538 continue;
539 }
540
541 if (MatchPartitionDevicePathNode (BlockIoDevicePath, HardDriveDevicePath)) {
542 //
543 // Find the matched partition device path
544 //
545 DevicePath = NextDevicePathNode ((EFI_DEVICE_PATH_PROTOCOL *) HardDriveDevicePath);
546 FullDevicePath = AppendDevicePath (BlockIoDevicePath, DevicePath);
547
548 //
549 // Save the matched partition device path in 'HDDP' variable
550 //
551 if (CachedDevicePath != NULL) {
552 //
553 // Save the matched partition device path as first instance of 'HDDP' variable
554 //
555 if (BdsLibMatchDevicePaths (CachedDevicePath, BlockIoDevicePath)) {
556 TempNewDevicePath = CachedDevicePath;
557 CachedDevicePath = BdsLibDelPartMatchInstance (CachedDevicePath, BlockIoDevicePath);
558 FreePool(TempNewDevicePath);
559
560 TempNewDevicePath = CachedDevicePath;
561 CachedDevicePath = AppendDevicePathInstance (BlockIoDevicePath, CachedDevicePath);
562 if (TempNewDevicePath != NULL) {
563 FreePool(TempNewDevicePath);
564 }
565 } else {
566 TempNewDevicePath = CachedDevicePath;
567 CachedDevicePath = AppendDevicePathInstance (BlockIoDevicePath, CachedDevicePath);
568 FreePool(TempNewDevicePath);
569 }
570 //
571 // Here limit the device path instance number to 12, which is max number for a system support 3 IDE controller
572 // If the user try to boot many OS in different HDs or partitions, in theory, the 'HDDP' variable maybe become larger and larger.
573 //
574 InstanceNum = 0;
575 ASSERT (CachedDevicePath != NULL);
576 TempNewDevicePath = CachedDevicePath;
577 while (!IsDevicePathEnd (TempNewDevicePath)) {
578 TempNewDevicePath = NextDevicePathNode (TempNewDevicePath);
579 //
580 // Parse one instance
581 //
582 while (!IsDevicePathEndType (TempNewDevicePath)) {
583 TempNewDevicePath = NextDevicePathNode (TempNewDevicePath);
584 }
585 InstanceNum++;
586 //
587 // If the CachedDevicePath variable contain too much instance, only remain 12 instances.
588 //
589 if (InstanceNum >= 12) {
590 SetDevicePathEndNode (TempNewDevicePath);
591 break;
592 }
593 }
594 } else {
595 CachedDevicePath = DuplicateDevicePath (BlockIoDevicePath);
596 }
597
598 //
599 // Save the matching Device Path so we don't need to do a connect all next time
600 //
601 Status = gRT->SetVariable (
602 L"HDDP",
603 &mHdBootVariablePrivateGuid,
604 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
605 GetDevicePathSize (CachedDevicePath),
606 CachedDevicePath
607 );
608
609 break;
610 }
611 }
612
613 if (CachedDevicePath != NULL) {
614 FreePool (CachedDevicePath);
615 }
616 if (BlockIoBuffer != NULL) {
617 FreePool (BlockIoBuffer);
618 }
619 return FullDevicePath;
620 }
621
622 /**
623 Check whether there is a instance in BlockIoDevicePath, which contain multi device path
624 instances, has the same partition node with HardDriveDevicePath device path
625
626 @param BlockIoDevicePath Multi device path instances which need to check
627 @param HardDriveDevicePath A device path which starts with a hard drive media
628 device path.
629
630 @retval TRUE There is a matched device path instance.
631 @retval FALSE There is no matched device path instance.
632
633 **/
634 BOOLEAN
635 EFIAPI
636 MatchPartitionDevicePathNode (
637 IN EFI_DEVICE_PATH_PROTOCOL *BlockIoDevicePath,
638 IN HARDDRIVE_DEVICE_PATH *HardDriveDevicePath
639 )
640 {
641 HARDDRIVE_DEVICE_PATH *TmpHdPath;
642 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
643 BOOLEAN Match;
644 EFI_DEVICE_PATH_PROTOCOL *BlockIoHdDevicePathNode;
645
646 if ((BlockIoDevicePath == NULL) || (HardDriveDevicePath == NULL)) {
647 return FALSE;
648 }
649
650 //
651 // Make PreviousDevicePath == the device path node before the end node
652 //
653 DevicePath = BlockIoDevicePath;
654 BlockIoHdDevicePathNode = NULL;
655
656 //
657 // find the partition device path node
658 //
659 while (!IsDevicePathEnd (DevicePath)) {
660 if ((DevicePathType (DevicePath) == MEDIA_DEVICE_PATH) &&
661 (DevicePathSubType (DevicePath) == MEDIA_HARDDRIVE_DP)
662 ) {
663 BlockIoHdDevicePathNode = DevicePath;
664 break;
665 }
666
667 DevicePath = NextDevicePathNode (DevicePath);
668 }
669
670 if (BlockIoHdDevicePathNode == NULL) {
671 return FALSE;
672 }
673 //
674 // See if the harddrive device path in blockio matches the orig Hard Drive Node
675 //
676 TmpHdPath = (HARDDRIVE_DEVICE_PATH *) BlockIoHdDevicePathNode;
677 Match = FALSE;
678
679 //
680 // Check for the match
681 //
682 if ((TmpHdPath->MBRType == HardDriveDevicePath->MBRType) &&
683 (TmpHdPath->SignatureType == HardDriveDevicePath->SignatureType)) {
684 switch (TmpHdPath->SignatureType) {
685 case SIGNATURE_TYPE_GUID:
686 Match = CompareGuid ((EFI_GUID *)TmpHdPath->Signature, (EFI_GUID *)HardDriveDevicePath->Signature);
687 break;
688 case SIGNATURE_TYPE_MBR:
689 Match = (BOOLEAN)(*((UINT32 *)(&(TmpHdPath->Signature[0]))) == ReadUnaligned32((UINT32 *)(&(HardDriveDevicePath->Signature[0]))));
690 break;
691 default:
692 Match = FALSE;
693 break;
694 }
695 }
696
697 return Match;
698 }
699
700 /**
701 Delete the boot option associated with the handle passed in.
702
703 @param Handle The handle which present the device path to create
704 boot option
705
706 @retval EFI_SUCCESS Delete the boot option success
707 @retval EFI_NOT_FOUND If the Device Path is not found in the system
708 @retval EFI_OUT_OF_RESOURCES Lack of memory resource
709 @retval Other Error return value from SetVariable()
710
711 **/
712 EFI_STATUS
713 BdsLibDeleteOptionFromHandle (
714 IN EFI_HANDLE Handle
715 )
716 {
717 UINT16 *BootOrder;
718 UINT8 *BootOptionVar;
719 UINTN BootOrderSize;
720 UINTN BootOptionSize;
721 EFI_STATUS Status;
722 UINTN Index;
723 UINT16 BootOption[BOOT_OPTION_MAX_CHAR];
724 UINTN DevicePathSize;
725 UINTN OptionDevicePathSize;
726 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
727 EFI_DEVICE_PATH_PROTOCOL *OptionDevicePath;
728 UINT8 *TempPtr;
729
730 Status = EFI_SUCCESS;
731 BootOrder = NULL;
732 BootOrderSize = 0;
733
734 //
735 // Check "BootOrder" variable, if no, means there is no any boot order.
736 //
737 BootOrder = BdsLibGetVariableAndSize (
738 L"BootOrder",
739 &gEfiGlobalVariableGuid,
740 &BootOrderSize
741 );
742 if (BootOrder == NULL) {
743 return EFI_NOT_FOUND;
744 }
745
746 //
747 // Convert device handle to device path protocol instance
748 //
749 DevicePath = DevicePathFromHandle (Handle);
750 if (DevicePath == NULL) {
751 return EFI_NOT_FOUND;
752 }
753 DevicePathSize = GetDevicePathSize (DevicePath);
754
755 //
756 // Loop all boot order variable and find the matching device path
757 //
758 Index = 0;
759 while (Index < BootOrderSize / sizeof (UINT16)) {
760 UnicodeSPrint (BootOption, sizeof (BootOption), L"Boot%04x", BootOrder[Index]);
761 BootOptionVar = BdsLibGetVariableAndSize (
762 BootOption,
763 &gEfiGlobalVariableGuid,
764 &BootOptionSize
765 );
766
767 if (BootOptionVar == NULL) {
768 FreePool (BootOrder);
769 return EFI_OUT_OF_RESOURCES;
770 }
771
772 TempPtr = BootOptionVar;
773 TempPtr += sizeof (UINT32) + sizeof (UINT16);
774 TempPtr += StrSize ((CHAR16 *) TempPtr);
775 OptionDevicePath = (EFI_DEVICE_PATH_PROTOCOL *) TempPtr;
776 OptionDevicePathSize = GetDevicePathSize (OptionDevicePath);
777
778 //
779 // Check whether the device path match
780 //
781 if ((OptionDevicePathSize == DevicePathSize) &&
782 (CompareMem (DevicePath, OptionDevicePath, DevicePathSize) == 0)) {
783 BdsDeleteBootOption (BootOrder[Index], BootOrder, &BootOrderSize);
784 FreePool (BootOptionVar);
785 break;
786 }
787
788 FreePool (BootOptionVar);
789 Index++;
790 }
791
792 //
793 // Adjust number of boot option for "BootOrder" variable.
794 //
795 Status = gRT->SetVariable (
796 L"BootOrder",
797 &gEfiGlobalVariableGuid,
798 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
799 BootOrderSize,
800 BootOrder
801 );
802
803 FreePool (BootOrder);
804
805 return Status;
806 }
807
808
809 /**
810 Delete all invalid EFI boot options.
811
812 @retval EFI_SUCCESS Delete all invalid boot option success
813 @retval EFI_NOT_FOUND Variable "BootOrder" is not found
814 @retval EFI_OUT_OF_RESOURCES Lack of memory resource
815 @retval Other Error return value from SetVariable()
816
817 **/
818 EFI_STATUS
819 BdsDeleteAllInvalidEfiBootOption (
820 VOID
821 )
822 {
823 UINT16 *BootOrder;
824 UINT8 *BootOptionVar;
825 UINTN BootOrderSize;
826 UINTN BootOptionSize;
827 EFI_STATUS Status;
828 UINTN Index;
829 UINTN Index2;
830 UINT16 BootOption[BOOT_OPTION_MAX_CHAR];
831 EFI_DEVICE_PATH_PROTOCOL *OptionDevicePath;
832 UINT8 *TempPtr;
833 CHAR16 *Description;
834
835 Status = EFI_SUCCESS;
836 BootOrder = NULL;
837 BootOrderSize = 0;
838
839 //
840 // Check "BootOrder" variable firstly, this variable hold the number of boot options
841 //
842 BootOrder = BdsLibGetVariableAndSize (
843 L"BootOrder",
844 &gEfiGlobalVariableGuid,
845 &BootOrderSize
846 );
847 if (NULL == BootOrder) {
848 return EFI_NOT_FOUND;
849 }
850
851 Index = 0;
852 while (Index < BootOrderSize / sizeof (UINT16)) {
853 UnicodeSPrint (BootOption, sizeof (BootOption), L"Boot%04x", BootOrder[Index]);
854 BootOptionVar = BdsLibGetVariableAndSize (
855 BootOption,
856 &gEfiGlobalVariableGuid,
857 &BootOptionSize
858 );
859 if (NULL == BootOptionVar) {
860 FreePool (BootOrder);
861 return EFI_OUT_OF_RESOURCES;
862 }
863
864 TempPtr = BootOptionVar;
865 TempPtr += sizeof (UINT32) + sizeof (UINT16);
866 Description = (CHAR16 *) TempPtr;
867 TempPtr += StrSize ((CHAR16 *) TempPtr);
868 OptionDevicePath = (EFI_DEVICE_PATH_PROTOCOL *) TempPtr;
869
870 //
871 // Skip legacy boot option (BBS boot device)
872 //
873 if ((DevicePathType (OptionDevicePath) == BBS_DEVICE_PATH) &&
874 (DevicePathSubType (OptionDevicePath) == BBS_BBS_DP)) {
875 FreePool (BootOptionVar);
876 Index++;
877 continue;
878 }
879
880 if (!BdsLibIsValidEFIBootOptDevicePathExt (OptionDevicePath, FALSE, Description)) {
881 //
882 // Delete this invalid boot option "Boot####"
883 //
884 Status = gRT->SetVariable (
885 BootOption,
886 &gEfiGlobalVariableGuid,
887 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
888 0,
889 NULL
890 );
891 //
892 // Mark this boot option in boot order as deleted
893 //
894 BootOrder[Index] = 0xffff;
895 }
896
897 FreePool (BootOptionVar);
898 Index++;
899 }
900
901 //
902 // Adjust boot order array
903 //
904 Index2 = 0;
905 for (Index = 0; Index < BootOrderSize / sizeof (UINT16); Index++) {
906 if (BootOrder[Index] != 0xffff) {
907 BootOrder[Index2] = BootOrder[Index];
908 Index2 ++;
909 }
910 }
911 Status = gRT->SetVariable (
912 L"BootOrder",
913 &gEfiGlobalVariableGuid,
914 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
915 Index2 * sizeof (UINT16),
916 BootOrder
917 );
918
919 FreePool (BootOrder);
920
921 return Status;
922 }
923
924
925 /**
926 For EFI boot option, BDS separate them as six types:
927 1. Network - The boot option points to the SimpleNetworkProtocol device.
928 Bds will try to automatically create this type boot option when enumerate.
929 2. Shell - The boot option points to internal flash shell.
930 Bds will try to automatically create this type boot option when enumerate.
931 3. Removable BlockIo - The boot option only points to the removable media
932 device, like USB flash disk, DVD, Floppy etc.
933 These device should contain a *removable* blockIo
934 protocol in their device handle.
935 Bds will try to automatically create this type boot option
936 when enumerate.
937 4. Fixed BlockIo - The boot option only points to a Fixed blockIo device,
938 like HardDisk.
939 These device should contain a *fixed* blockIo
940 protocol in their device handle.
941 BDS will skip fixed blockIo devices, and NOT
942 automatically create boot option for them. But BDS
943 will help to delete those fixed blockIo boot option,
944 whose description rule conflict with other auto-created
945 boot options.
946 5. Non-BlockIo Simplefile - The boot option points to a device whose handle
947 has SimpleFileSystem Protocol, but has no blockio
948 protocol. These devices do not offer blockIo
949 protocol, but BDS still can get the
950 \EFI\BOOT\boot{machinename}.EFI by SimpleFileSystem
951 Protocol.
952 6. File - The boot option points to a file. These boot options are usually
953 created by user manually or OS loader. BDS will not delete or modify
954 these boot options.
955
956 This function will enumerate all possible boot device in the system, and
957 automatically create boot options for Network, Shell, Removable BlockIo,
958 and Non-BlockIo Simplefile devices.
959 It will only execute once of every boot.
960
961 @param BdsBootOptionList The header of the link list which indexed all
962 current boot options
963
964 @retval EFI_SUCCESS Finished all the boot device enumerate and create
965 the boot option base on that boot device
966
967 @retval EFI_OUT_OF_RESOURCES Failed to enumerate the boot device and create the boot option list
968 **/
969 EFI_STATUS
970 EFIAPI
971 BdsLibEnumerateAllBootOption (
972 IN OUT LIST_ENTRY *BdsBootOptionList
973 )
974 {
975 EFI_STATUS Status;
976 UINT16 FloppyNumber;
977 UINT16 CdromNumber;
978 UINT16 UsbNumber;
979 UINT16 MiscNumber;
980 UINT16 ScsiNumber;
981 UINT16 NonBlockNumber;
982 UINTN NumberBlockIoHandles;
983 EFI_HANDLE *BlockIoHandles;
984 EFI_BLOCK_IO_PROTOCOL *BlkIo;
985 UINTN Index;
986 UINTN NumOfLoadFileHandles;
987 EFI_HANDLE *LoadFileHandles;
988 UINTN FvHandleCount;
989 EFI_HANDLE *FvHandleBuffer;
990 EFI_FV_FILETYPE Type;
991 UINTN Size;
992 EFI_FV_FILE_ATTRIBUTES Attributes;
993 UINT32 AuthenticationStatus;
994 EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv;
995 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
996 UINTN DevicePathType;
997 CHAR16 Buffer[40];
998 EFI_HANDLE *FileSystemHandles;
999 UINTN NumberFileSystemHandles;
1000 BOOLEAN NeedDelete;
1001 EFI_IMAGE_DOS_HEADER DosHeader;
1002 CHAR8 *PlatLang;
1003 CHAR8 *LastLang;
1004 EFI_IMAGE_OPTIONAL_HEADER_UNION HdrData;
1005 EFI_IMAGE_OPTIONAL_HEADER_PTR_UNION Hdr;
1006
1007 FloppyNumber = 0;
1008 CdromNumber = 0;
1009 UsbNumber = 0;
1010 MiscNumber = 0;
1011 ScsiNumber = 0;
1012 PlatLang = NULL;
1013 LastLang = NULL;
1014 ZeroMem (Buffer, sizeof (Buffer));
1015
1016 //
1017 // If the boot device enumerate happened, just get the boot
1018 // device from the boot order variable
1019 //
1020 if (mEnumBootDevice) {
1021 LastLang = GetVariable (L"LastEnumLang", &mBdsLibLastLangGuid);
1022 PlatLang = GetEfiGlobalVariable (L"PlatformLang");
1023 if (LastLang == PlatLang) {
1024 Status = BdsLibBuildOptionFromVar (BdsBootOptionList, L"BootOrder");
1025 return Status;
1026 } else {
1027 Status = gRT->SetVariable (
1028 L"LastEnumLang",
1029 &mBdsLibLastLangGuid,
1030 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_NON_VOLATILE,
1031 sizeof (PlatLang),
1032 PlatLang
1033 );
1034 ASSERT_EFI_ERROR (Status);
1035 }
1036 }
1037
1038 //
1039 // Notes: this dirty code is to get the legacy boot option from the
1040 // BBS table and create to variable as the EFI boot option, it should
1041 // be removed after the CSM can provide legacy boot option directly
1042 //
1043 REFRESH_LEGACY_BOOT_OPTIONS;
1044
1045 //
1046 // Delete invalid boot option
1047 //
1048 BdsDeleteAllInvalidEfiBootOption ();
1049
1050 //
1051 // Parse removable media
1052 //
1053 gBS->LocateHandleBuffer (
1054 ByProtocol,
1055 &gEfiBlockIoProtocolGuid,
1056 NULL,
1057 &NumberBlockIoHandles,
1058 &BlockIoHandles
1059 );
1060
1061 for (Index = 0; Index < NumberBlockIoHandles; Index++) {
1062 Status = gBS->HandleProtocol (
1063 BlockIoHandles[Index],
1064 &gEfiBlockIoProtocolGuid,
1065 (VOID **) &BlkIo
1066 );
1067 if (!EFI_ERROR (Status)) {
1068 if (!BlkIo->Media->RemovableMedia) {
1069 //
1070 // skip the non-removable block devices
1071 //
1072 continue;
1073 }
1074 }
1075 DevicePath = DevicePathFromHandle (BlockIoHandles[Index]);
1076 DevicePathType = BdsGetBootTypeFromDevicePath (DevicePath);
1077
1078 switch (DevicePathType) {
1079 case BDS_EFI_ACPI_FLOPPY_BOOT:
1080 if (FloppyNumber != 0) {
1081 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s %d", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_FLOPPY)), FloppyNumber);
1082 } else {
1083 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_FLOPPY)));
1084 }
1085 BdsLibBuildOptionFromHandle (BlockIoHandles[Index], BdsBootOptionList, Buffer);
1086 FloppyNumber++;
1087 break;
1088
1089 //
1090 // Assume a removable SATA device should be the DVD/CD device
1091 //
1092 case BDS_EFI_MESSAGE_ATAPI_BOOT:
1093 case BDS_EFI_MESSAGE_SATA_BOOT:
1094 if (CdromNumber != 0) {
1095 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s %d", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_CD_DVD)), CdromNumber);
1096 } else {
1097 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_CD_DVD)));
1098 }
1099 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Buffer: %S\n", Buffer));
1100 BdsLibBuildOptionFromHandle (BlockIoHandles[Index], BdsBootOptionList, Buffer);
1101 CdromNumber++;
1102 break;
1103
1104 case BDS_EFI_MESSAGE_USB_DEVICE_BOOT:
1105 if (UsbNumber != 0) {
1106 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s %d", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_USB)), UsbNumber);
1107 } else {
1108 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_USB)));
1109 }
1110 BdsLibBuildOptionFromHandle (BlockIoHandles[Index], BdsBootOptionList, Buffer);
1111 UsbNumber++;
1112 break;
1113
1114 case BDS_EFI_MESSAGE_SCSI_BOOT:
1115 if (ScsiNumber != 0) {
1116 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s %d", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_SCSI)), ScsiNumber);
1117 } else {
1118 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_SCSI)));
1119 }
1120 BdsLibBuildOptionFromHandle (BlockIoHandles[Index], BdsBootOptionList, Buffer);
1121 ScsiNumber++;
1122 break;
1123
1124 case BDS_EFI_MESSAGE_MISC_BOOT:
1125 if (MiscNumber != 0) {
1126 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s %d", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_MISC)), MiscNumber);
1127 } else {
1128 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_MISC)));
1129 }
1130 BdsLibBuildOptionFromHandle (BlockIoHandles[Index], BdsBootOptionList, Buffer);
1131 MiscNumber++;
1132 break;
1133
1134 default:
1135 break;
1136 }
1137 }
1138
1139 if (NumberBlockIoHandles != 0) {
1140 FreePool (BlockIoHandles);
1141 }
1142
1143 //
1144 // If there is simple file protocol which does not consume block Io protocol, create a boot option for it here.
1145 //
1146 NonBlockNumber = 0;
1147 gBS->LocateHandleBuffer (
1148 ByProtocol,
1149 &gEfiSimpleFileSystemProtocolGuid,
1150 NULL,
1151 &NumberFileSystemHandles,
1152 &FileSystemHandles
1153 );
1154 for (Index = 0; Index < NumberFileSystemHandles; Index++) {
1155 Status = gBS->HandleProtocol (
1156 FileSystemHandles[Index],
1157 &gEfiBlockIoProtocolGuid,
1158 (VOID **) &BlkIo
1159 );
1160 if (!EFI_ERROR (Status)) {
1161 //
1162 // Skip if the file system handle supports a BlkIo protocol,
1163 //
1164 continue;
1165 }
1166
1167 //
1168 // Do the removable Media thing. \EFI\BOOT\boot{machinename}.EFI
1169 // machinename is ia32, ia64, x64, ...
1170 //
1171 Hdr.Union = &HdrData;
1172 NeedDelete = TRUE;
1173 Status = BdsLibGetImageHeader (
1174 FileSystemHandles[Index],
1175 EFI_REMOVABLE_MEDIA_FILE_NAME,
1176 &DosHeader,
1177 Hdr
1178 );
1179 if (!EFI_ERROR (Status) &&
1180 EFI_IMAGE_MACHINE_TYPE_SUPPORTED (Hdr.Pe32->FileHeader.Machine) &&
1181 Hdr.Pe32->OptionalHeader.Subsystem == EFI_IMAGE_SUBSYSTEM_EFI_APPLICATION) {
1182 NeedDelete = FALSE;
1183 }
1184
1185 if (NeedDelete) {
1186 //
1187 // No such file or the file is not a EFI application, delete this boot option
1188 //
1189 BdsLibDeleteOptionFromHandle (FileSystemHandles[Index]);
1190 } else {
1191 if (NonBlockNumber != 0) {
1192 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s %d", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_NON_BLOCK)), NonBlockNumber);
1193 } else {
1194 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_NON_BLOCK)));
1195 }
1196 BdsLibBuildOptionFromHandle (FileSystemHandles[Index], BdsBootOptionList, Buffer);
1197 NonBlockNumber++;
1198 }
1199 }
1200
1201 if (NumberFileSystemHandles != 0) {
1202 FreePool (FileSystemHandles);
1203 }
1204
1205 //
1206 // Parse Network Boot Device
1207 //
1208 NumOfLoadFileHandles = 0;
1209 //
1210 // Search Load File protocol for PXE boot option.
1211 //
1212 gBS->LocateHandleBuffer (
1213 ByProtocol,
1214 &gEfiLoadFileProtocolGuid,
1215 NULL,
1216 &NumOfLoadFileHandles,
1217 &LoadFileHandles
1218 );
1219
1220 for (Index = 0; Index < NumOfLoadFileHandles; Index++) {
1221 if (Index != 0) {
1222 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s %d", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_NETWORK)), Index);
1223 } else {
1224 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_NETWORK)));
1225 }
1226 BdsLibBuildOptionFromHandle (LoadFileHandles[Index], BdsBootOptionList, Buffer);
1227 }
1228
1229 if (NumOfLoadFileHandles != 0) {
1230 FreePool (LoadFileHandles);
1231 }
1232
1233 //
1234 // Check if we have on flash shell
1235 //
1236 gBS->LocateHandleBuffer (
1237 ByProtocol,
1238 &gEfiFirmwareVolume2ProtocolGuid,
1239 NULL,
1240 &FvHandleCount,
1241 &FvHandleBuffer
1242 );
1243 for (Index = 0; Index < FvHandleCount; Index++) {
1244 gBS->HandleProtocol (
1245 FvHandleBuffer[Index],
1246 &gEfiFirmwareVolume2ProtocolGuid,
1247 (VOID **) &Fv
1248 );
1249
1250 Status = Fv->ReadFile (
1251 Fv,
1252 PcdGetPtr(PcdShellFile),
1253 NULL,
1254 &Size,
1255 &Type,
1256 &Attributes,
1257 &AuthenticationStatus
1258 );
1259 if (EFI_ERROR (Status)) {
1260 //
1261 // Skip if no shell file in the FV
1262 //
1263 continue;
1264 }
1265 //
1266 // Build the shell boot option
1267 //
1268 BdsLibBuildOptionFromShell (FvHandleBuffer[Index], BdsBootOptionList);
1269 }
1270
1271 if (FvHandleCount != 0) {
1272 FreePool (FvHandleBuffer);
1273 }
1274 //
1275 // Make sure every boot only have one time
1276 // boot device enumerate
1277 //
1278 Status = BdsLibBuildOptionFromVar (BdsBootOptionList, L"BootOrder");
1279 mEnumBootDevice = TRUE;
1280
1281 return Status;
1282 }
1283
1284 /**
1285 Build the boot option with the handle parsed in
1286
1287 @param Handle The handle which present the device path to create
1288 boot option
1289 @param BdsBootOptionList The header of the link list which indexed all
1290 current boot options
1291 @param String The description of the boot option.
1292
1293 **/
1294 VOID
1295 EFIAPI
1296 BdsLibBuildOptionFromHandle (
1297 IN EFI_HANDLE Handle,
1298 IN LIST_ENTRY *BdsBootOptionList,
1299 IN CHAR16 *String
1300 )
1301 {
1302 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
1303
1304 DevicePath = DevicePathFromHandle (Handle);
1305
1306 //
1307 // Create and register new boot option
1308 //
1309 BdsLibRegisterNewOption (BdsBootOptionList, DevicePath, String, L"BootOrder");
1310 }
1311
1312
1313 /**
1314 Build the on flash shell boot option with the handle parsed in.
1315
1316 @param Handle The handle which present the device path to create
1317 on flash shell boot option
1318 @param BdsBootOptionList The header of the link list which indexed all
1319 current boot options
1320
1321 **/
1322 VOID
1323 EFIAPI
1324 BdsLibBuildOptionFromShell (
1325 IN EFI_HANDLE Handle,
1326 IN OUT LIST_ENTRY *BdsBootOptionList
1327 )
1328 {
1329 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
1330 MEDIA_FW_VOL_FILEPATH_DEVICE_PATH ShellNode;
1331
1332 DevicePath = DevicePathFromHandle (Handle);
1333
1334 //
1335 // Build the shell device path
1336 //
1337 EfiInitializeFwVolDevicepathNode (&ShellNode, PcdGetPtr(PcdShellFile));
1338
1339 DevicePath = AppendDevicePathNode (DevicePath, (EFI_DEVICE_PATH_PROTOCOL *) &ShellNode);
1340
1341 //
1342 // Create and register the shell boot option
1343 //
1344 BdsLibRegisterNewOption (BdsBootOptionList, DevicePath, L"EFI Internal Shell", L"BootOrder");
1345
1346 }
1347
1348 /**
1349 Boot from the UEFI spec defined "BootNext" variable.
1350
1351 **/
1352 VOID
1353 EFIAPI
1354 BdsLibBootNext (
1355 VOID
1356 )
1357 {
1358 UINT16 *BootNext;
1359 UINTN BootNextSize;
1360 CHAR16 Buffer[20];
1361 BDS_COMMON_OPTION *BootOption;
1362 LIST_ENTRY TempList;
1363 UINTN ExitDataSize;
1364 CHAR16 *ExitData;
1365
1366 //
1367 // Init the boot option name buffer and temp link list
1368 //
1369 InitializeListHead (&TempList);
1370 ZeroMem (Buffer, sizeof (Buffer));
1371
1372 BootNext = BdsLibGetVariableAndSize (
1373 L"BootNext",
1374 &gEfiGlobalVariableGuid,
1375 &BootNextSize
1376 );
1377
1378 //
1379 // Clear the boot next variable first
1380 //
1381 if (BootNext != NULL) {
1382 gRT->SetVariable (
1383 L"BootNext",
1384 &gEfiGlobalVariableGuid,
1385 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
1386 0,
1387 BootNext
1388 );
1389
1390 //
1391 // Start to build the boot option and try to boot
1392 //
1393 UnicodeSPrint (Buffer, sizeof (Buffer), L"Boot%04x", *BootNext);
1394 BootOption = BdsLibVariableToOption (&TempList, Buffer);
1395 ASSERT (BootOption != NULL);
1396 BdsLibConnectDevicePath (BootOption->DevicePath);
1397 BdsLibBootViaBootOption (BootOption, BootOption->DevicePath, &ExitDataSize, &ExitData);
1398 }
1399
1400 }
1401
1402 /**
1403 Return the bootable media handle.
1404 First, check the device is connected
1405 Second, check whether the device path point to a device which support SimpleFileSystemProtocol,
1406 Third, detect the the default boot file in the Media, and return the removable Media handle.
1407
1408 @param DevicePath Device Path to a bootable device
1409
1410 @return The bootable media handle. If the media on the DevicePath is not bootable, NULL will return.
1411
1412 **/
1413 EFI_HANDLE
1414 EFIAPI
1415 BdsLibGetBootableHandle (
1416 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
1417 )
1418 {
1419 EFI_STATUS Status;
1420 EFI_DEVICE_PATH_PROTOCOL *UpdatedDevicePath;
1421 EFI_DEVICE_PATH_PROTOCOL *DupDevicePath;
1422 EFI_HANDLE Handle;
1423 EFI_BLOCK_IO_PROTOCOL *BlockIo;
1424 VOID *Buffer;
1425 EFI_DEVICE_PATH_PROTOCOL *TempDevicePath;
1426 UINTN Size;
1427 UINTN TempSize;
1428 EFI_HANDLE ReturnHandle;
1429 EFI_HANDLE *SimpleFileSystemHandles;
1430
1431 UINTN NumberSimpleFileSystemHandles;
1432 UINTN Index;
1433 EFI_IMAGE_DOS_HEADER DosHeader;
1434 EFI_IMAGE_OPTIONAL_HEADER_UNION HdrData;
1435 EFI_IMAGE_OPTIONAL_HEADER_PTR_UNION Hdr;
1436
1437 UpdatedDevicePath = DevicePath;
1438
1439 //
1440 // Check whether the device is connected
1441 //
1442 Status = gBS->LocateDevicePath (&gEfiBlockIoProtocolGuid, &UpdatedDevicePath, &Handle);
1443 if (EFI_ERROR (Status)) {
1444 //
1445 // Skip the case that the boot option point to a simple file protocol which does not consume block Io protocol,
1446 //
1447 Status = gBS->LocateDevicePath (&gEfiSimpleFileSystemProtocolGuid, &UpdatedDevicePath, &Handle);
1448 if (EFI_ERROR (Status)) {
1449 //
1450 // Fail to find the proper BlockIo and simple file protocol, maybe because device not present, we need to connect it firstly
1451 //
1452 UpdatedDevicePath = DevicePath;
1453 Status = gBS->LocateDevicePath (&gEfiDevicePathProtocolGuid, &UpdatedDevicePath, &Handle);
1454 gBS->ConnectController (Handle, NULL, NULL, TRUE);
1455 }
1456 } else {
1457 //
1458 // For removable device boot option, its contained device path only point to the removable device handle,
1459 // should make sure all its children handles (its child partion or media handles) are created and connected.
1460 //
1461 gBS->ConnectController (Handle, NULL, NULL, TRUE);
1462 //
1463 // Get BlockIo protocol and check removable attribute
1464 //
1465 Status = gBS->HandleProtocol (Handle, &gEfiBlockIoProtocolGuid, (VOID **)&BlockIo);
1466 //
1467 // Issue a dummy read to the device to check for media change.
1468 // When the removable media is changed, any Block IO read/write will
1469 // cause the BlockIo protocol be reinstalled and EFI_MEDIA_CHANGED is
1470 // returned. After the Block IO protocol is reinstalled, subsequent
1471 // Block IO read/write will success.
1472 //
1473 Buffer = AllocatePool (BlockIo->Media->BlockSize);
1474 if (Buffer != NULL) {
1475 BlockIo->ReadBlocks (
1476 BlockIo,
1477 BlockIo->Media->MediaId,
1478 0,
1479 BlockIo->Media->BlockSize,
1480 Buffer
1481 );
1482 FreePool(Buffer);
1483 }
1484 }
1485
1486 //
1487 // Detect the the default boot file from removable Media
1488 //
1489
1490 //
1491 // If fail to get bootable handle specified by a USB boot option, the BDS should try to find other bootable device in the same USB bus
1492 // Try to locate the USB node device path first, if fail then use its previous PCI node to search
1493 //
1494 DupDevicePath = DuplicateDevicePath (DevicePath);
1495 ASSERT (DupDevicePath != NULL);
1496
1497 UpdatedDevicePath = DupDevicePath;
1498 Status = gBS->LocateDevicePath (&gEfiDevicePathProtocolGuid, &UpdatedDevicePath, &Handle);
1499 //
1500 // if the resulting device path point to a usb node, and the usb node is a dummy node, should only let device path only point to the previous Pci node
1501 // Acpi()/Pci()/Usb() --> Acpi()/Pci()
1502 //
1503 if ((DevicePathType (UpdatedDevicePath) == MESSAGING_DEVICE_PATH) &&
1504 (DevicePathSubType (UpdatedDevicePath) == MSG_USB_DP)) {
1505 //
1506 // Remove the usb node, let the device path only point to PCI node
1507 //
1508 SetDevicePathEndNode (UpdatedDevicePath);
1509 UpdatedDevicePath = DupDevicePath;
1510 } else {
1511 UpdatedDevicePath = DevicePath;
1512 }
1513
1514 //
1515 // Get the device path size of boot option
1516 //
1517 Size = GetDevicePathSize(UpdatedDevicePath) - sizeof (EFI_DEVICE_PATH_PROTOCOL); // minus the end node
1518 ReturnHandle = NULL;
1519 gBS->LocateHandleBuffer (
1520 ByProtocol,
1521 &gEfiSimpleFileSystemProtocolGuid,
1522 NULL,
1523 &NumberSimpleFileSystemHandles,
1524 &SimpleFileSystemHandles
1525 );
1526 for (Index = 0; Index < NumberSimpleFileSystemHandles; Index++) {
1527 //
1528 // Get the device path size of SimpleFileSystem handle
1529 //
1530 TempDevicePath = DevicePathFromHandle (SimpleFileSystemHandles[Index]);
1531 TempSize = GetDevicePathSize (TempDevicePath)- sizeof (EFI_DEVICE_PATH_PROTOCOL); // minus the end node
1532 //
1533 // Check whether the device path of boot option is part of the SimpleFileSystem handle's device path
1534 //
1535 if (Size <= TempSize && CompareMem (TempDevicePath, UpdatedDevicePath, Size)==0) {
1536 //
1537 // Load the default boot file \EFI\BOOT\boot{machinename}.EFI from removable Media
1538 // machinename is ia32, ia64, x64, ...
1539 //
1540 Hdr.Union = &HdrData;
1541 Status = BdsLibGetImageHeader (
1542 SimpleFileSystemHandles[Index],
1543 EFI_REMOVABLE_MEDIA_FILE_NAME,
1544 &DosHeader,
1545 Hdr
1546 );
1547 if (!EFI_ERROR (Status) &&
1548 EFI_IMAGE_MACHINE_TYPE_SUPPORTED (Hdr.Pe32->FileHeader.Machine) &&
1549 Hdr.Pe32->OptionalHeader.Subsystem == EFI_IMAGE_SUBSYSTEM_EFI_APPLICATION) {
1550 ReturnHandle = SimpleFileSystemHandles[Index];
1551 break;
1552 }
1553 }
1554 }
1555
1556 FreePool(DupDevicePath);
1557
1558 if (SimpleFileSystemHandles != NULL) {
1559 FreePool(SimpleFileSystemHandles);
1560 }
1561
1562 return ReturnHandle;
1563 }
1564
1565 /**
1566 Check to see if the network cable is plugged in. If the DevicePath is not
1567 connected it will be connected.
1568
1569 @param DevicePath Device Path to check
1570
1571 @retval TRUE DevicePath points to an Network that is connected
1572 @retval FALSE DevicePath does not point to a bootable network
1573
1574 **/
1575 BOOLEAN
1576 BdsLibNetworkBootWithMediaPresent (
1577 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
1578 )
1579 {
1580 EFI_STATUS Status;
1581 EFI_DEVICE_PATH_PROTOCOL *UpdatedDevicePath;
1582 EFI_HANDLE Handle;
1583 EFI_SIMPLE_NETWORK_PROTOCOL *Snp;
1584 BOOLEAN MediaPresent;
1585 UINT32 InterruptStatus;
1586
1587 MediaPresent = FALSE;
1588
1589 UpdatedDevicePath = DevicePath;
1590 //
1591 // Locate Load File Protocol for PXE boot option first
1592 //
1593 Status = gBS->LocateDevicePath (&gEfiLoadFileProtocolGuid, &UpdatedDevicePath, &Handle);
1594 if (EFI_ERROR (Status)) {
1595 //
1596 // Device not present so see if we need to connect it
1597 //
1598 Status = BdsLibConnectDevicePath (DevicePath);
1599 if (!EFI_ERROR (Status)) {
1600 //
1601 // This one should work after we did the connect
1602 //
1603 Status = gBS->LocateDevicePath (&gEfiLoadFileProtocolGuid, &UpdatedDevicePath, &Handle);
1604 }
1605 }
1606
1607 if (!EFI_ERROR (Status)) {
1608 Status = gBS->HandleProtocol (Handle, &gEfiSimpleNetworkProtocolGuid, (VOID **)&Snp);
1609 if (EFI_ERROR (Status)) {
1610 //
1611 // Failed to open SNP from this handle, try to get SNP from parent handle
1612 //
1613 UpdatedDevicePath = DevicePathFromHandle (Handle);
1614 if (UpdatedDevicePath != NULL) {
1615 Status = gBS->LocateDevicePath (&gEfiSimpleNetworkProtocolGuid, &UpdatedDevicePath, &Handle);
1616 if (!EFI_ERROR (Status)) {
1617 //
1618 // SNP handle found, get SNP from it
1619 //
1620 Status = gBS->HandleProtocol (Handle, &gEfiSimpleNetworkProtocolGuid, (VOID **) &Snp);
1621 }
1622 }
1623 }
1624
1625 if (!EFI_ERROR (Status)) {
1626 if (Snp->Mode->MediaPresentSupported) {
1627 if (Snp->Mode->State == EfiSimpleNetworkInitialized) {
1628 //
1629 // Invoke Snp->GetStatus() to refresh the media status
1630 //
1631 Snp->GetStatus (Snp, &InterruptStatus, NULL);
1632
1633 //
1634 // In case some one else is using the SNP check to see if it's connected
1635 //
1636 MediaPresent = Snp->Mode->MediaPresent;
1637 } else {
1638 //
1639 // No one is using SNP so we need to Start and Initialize so
1640 // MediaPresent will be valid.
1641 //
1642 Status = Snp->Start (Snp);
1643 if (!EFI_ERROR (Status)) {
1644 Status = Snp->Initialize (Snp, 0, 0);
1645 if (!EFI_ERROR (Status)) {
1646 MediaPresent = Snp->Mode->MediaPresent;
1647 Snp->Shutdown (Snp);
1648 }
1649 Snp->Stop (Snp);
1650 }
1651 }
1652 } else {
1653 MediaPresent = TRUE;
1654 }
1655 }
1656 }
1657
1658 return MediaPresent;
1659 }
1660
1661 /**
1662 For a bootable Device path, return its boot type.
1663
1664 @param DevicePath The bootable device Path to check
1665
1666 @retval BDS_EFI_MEDIA_HD_BOOT If given device path contains MEDIA_DEVICE_PATH type device path node
1667 which subtype is MEDIA_HARDDRIVE_DP
1668 @retval BDS_EFI_MEDIA_CDROM_BOOT If given device path contains MEDIA_DEVICE_PATH type device path node
1669 which subtype is MEDIA_CDROM_DP
1670 @retval BDS_EFI_ACPI_FLOPPY_BOOT If given device path contains ACPI_DEVICE_PATH type device path node
1671 which HID is floppy device.
1672 @retval BDS_EFI_MESSAGE_ATAPI_BOOT If given device path contains MESSAGING_DEVICE_PATH type device path node
1673 and its last device path node's subtype is MSG_ATAPI_DP.
1674 @retval BDS_EFI_MESSAGE_SCSI_BOOT If given device path contains MESSAGING_DEVICE_PATH type device path node
1675 and its last device path node's subtype is MSG_SCSI_DP.
1676 @retval BDS_EFI_MESSAGE_USB_DEVICE_BOOT If given device path contains MESSAGING_DEVICE_PATH type device path node
1677 and its last device path node's subtype is MSG_USB_DP.
1678 @retval BDS_EFI_MESSAGE_MISC_BOOT If the device path not contains any media device path node, and
1679 its last device path node point to a message device path node.
1680 @retval BDS_LEGACY_BBS_BOOT If given device path contains BBS_DEVICE_PATH type device path node.
1681 @retval BDS_EFI_UNSUPPORT An EFI Removable BlockIO device path not point to a media and message device,
1682
1683 **/
1684 UINT32
1685 EFIAPI
1686 BdsGetBootTypeFromDevicePath (
1687 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
1688 )
1689 {
1690 ACPI_HID_DEVICE_PATH *Acpi;
1691 EFI_DEVICE_PATH_PROTOCOL *TempDevicePath;
1692 EFI_DEVICE_PATH_PROTOCOL *LastDeviceNode;
1693 UINT32 BootType;
1694
1695 if (NULL == DevicePath) {
1696 return BDS_EFI_UNSUPPORT;
1697 }
1698
1699 TempDevicePath = DevicePath;
1700
1701 while (!IsDevicePathEndType (TempDevicePath)) {
1702 switch (DevicePathType (TempDevicePath)) {
1703 case BBS_DEVICE_PATH:
1704 return BDS_LEGACY_BBS_BOOT;
1705 case MEDIA_DEVICE_PATH:
1706 if (DevicePathSubType (TempDevicePath) == MEDIA_HARDDRIVE_DP) {
1707 return BDS_EFI_MEDIA_HD_BOOT;
1708 } else if (DevicePathSubType (TempDevicePath) == MEDIA_CDROM_DP) {
1709 return BDS_EFI_MEDIA_CDROM_BOOT;
1710 }
1711 break;
1712 case ACPI_DEVICE_PATH:
1713 Acpi = (ACPI_HID_DEVICE_PATH *) TempDevicePath;
1714 if (EISA_ID_TO_NUM (Acpi->HID) == 0x0604) {
1715 return BDS_EFI_ACPI_FLOPPY_BOOT;
1716 }
1717 break;
1718 case MESSAGING_DEVICE_PATH:
1719 //
1720 // Get the last device path node
1721 //
1722 LastDeviceNode = NextDevicePathNode (TempDevicePath);
1723 if (DevicePathSubType(LastDeviceNode) == MSG_DEVICE_LOGICAL_UNIT_DP) {
1724 //
1725 // if the next node type is Device Logical Unit, which specify the Logical Unit Number (LUN),
1726 // skip it
1727 //
1728 LastDeviceNode = NextDevicePathNode (LastDeviceNode);
1729 }
1730 //
1731 // if the device path not only point to driver device, it is not a messaging device path,
1732 //
1733 if (!IsDevicePathEndType (LastDeviceNode)) {
1734 break;
1735 }
1736
1737 switch (DevicePathSubType (TempDevicePath)) {
1738 case MSG_ATAPI_DP:
1739 BootType = BDS_EFI_MESSAGE_ATAPI_BOOT;
1740 break;
1741
1742 case MSG_USB_DP:
1743 BootType = BDS_EFI_MESSAGE_USB_DEVICE_BOOT;
1744 break;
1745
1746 case MSG_SCSI_DP:
1747 BootType = BDS_EFI_MESSAGE_SCSI_BOOT;
1748 break;
1749
1750 case MSG_SATA_DP:
1751 BootType = BDS_EFI_MESSAGE_SATA_BOOT;
1752 break;
1753
1754 case MSG_MAC_ADDR_DP:
1755 case MSG_VLAN_DP:
1756 case MSG_IPv4_DP:
1757 case MSG_IPv6_DP:
1758 BootType = BDS_EFI_MESSAGE_MAC_BOOT;
1759 break;
1760
1761 default:
1762 BootType = BDS_EFI_MESSAGE_MISC_BOOT;
1763 break;
1764 }
1765 return BootType;
1766
1767 default:
1768 break;
1769 }
1770 TempDevicePath = NextDevicePathNode (TempDevicePath);
1771 }
1772
1773 return BDS_EFI_UNSUPPORT;
1774 }
1775
1776 /**
1777 Check whether the Device path in a boot option point to a valid bootable device,
1778 And if CheckMedia is true, check the device is ready to boot now.
1779
1780 @param DevPath the Device path in a boot option
1781 @param CheckMedia if true, check the device is ready to boot now.
1782
1783 @retval TRUE the Device path is valid
1784 @retval FALSE the Device path is invalid .
1785
1786 **/
1787 BOOLEAN
1788 EFIAPI
1789 BdsLibIsValidEFIBootOptDevicePath (
1790 IN EFI_DEVICE_PATH_PROTOCOL *DevPath,
1791 IN BOOLEAN CheckMedia
1792 )
1793 {
1794 return BdsLibIsValidEFIBootOptDevicePathExt (DevPath, CheckMedia, NULL);
1795 }
1796
1797 /**
1798 Check whether the Device path in a boot option point to a valid bootable device,
1799 And if CheckMedia is true, check the device is ready to boot now.
1800 If Description is not NULL and the device path point to a fixed BlockIo
1801 device, check the description whether conflict with other auto-created
1802 boot options.
1803
1804 @param DevPath the Device path in a boot option
1805 @param CheckMedia if true, check the device is ready to boot now.
1806 @param Description the description in a boot option
1807
1808 @retval TRUE the Device path is valid
1809 @retval FALSE the Device path is invalid .
1810
1811 **/
1812 BOOLEAN
1813 EFIAPI
1814 BdsLibIsValidEFIBootOptDevicePathExt (
1815 IN EFI_DEVICE_PATH_PROTOCOL *DevPath,
1816 IN BOOLEAN CheckMedia,
1817 IN CHAR16 *Description
1818 )
1819 {
1820 EFI_STATUS Status;
1821 EFI_HANDLE Handle;
1822 EFI_DEVICE_PATH_PROTOCOL *TempDevicePath;
1823 EFI_DEVICE_PATH_PROTOCOL *LastDeviceNode;
1824 EFI_BLOCK_IO_PROTOCOL *BlockIo;
1825
1826 TempDevicePath = DevPath;
1827 LastDeviceNode = DevPath;
1828
1829 //
1830 // Check if it's a valid boot option for network boot device.
1831 // Check if there is EfiLoadFileProtocol installed.
1832 // If yes, that means there is a boot option for network.
1833 //
1834 Status = gBS->LocateDevicePath (
1835 &gEfiLoadFileProtocolGuid,
1836 &TempDevicePath,
1837 &Handle
1838 );
1839 if (EFI_ERROR (Status)) {
1840 //
1841 // Device not present so see if we need to connect it
1842 //
1843 TempDevicePath = DevPath;
1844 BdsLibConnectDevicePath (TempDevicePath);
1845 Status = gBS->LocateDevicePath (
1846 &gEfiLoadFileProtocolGuid,
1847 &TempDevicePath,
1848 &Handle
1849 );
1850 }
1851
1852 if (!EFI_ERROR (Status)) {
1853 if (!IsDevicePathEnd (TempDevicePath)) {
1854 //
1855 // LoadFile protocol is not installed on handle with exactly the same DevPath
1856 //
1857 return FALSE;
1858 }
1859
1860 if (CheckMedia) {
1861 //
1862 // Test if it is ready to boot now
1863 //
1864 if (BdsLibNetworkBootWithMediaPresent(DevPath)) {
1865 return TRUE;
1866 }
1867 } else {
1868 return TRUE;
1869 }
1870 }
1871
1872 //
1873 // If the boot option point to a file, it is a valid EFI boot option,
1874 // and assume it is ready to boot now
1875 //
1876 while (!IsDevicePathEnd (TempDevicePath)) {
1877 LastDeviceNode = TempDevicePath;
1878 TempDevicePath = NextDevicePathNode (TempDevicePath);
1879 }
1880 if ((DevicePathType (LastDeviceNode) == MEDIA_DEVICE_PATH) &&
1881 (DevicePathSubType (LastDeviceNode) == MEDIA_FILEPATH_DP)) {
1882 return TRUE;
1883 }
1884
1885 //
1886 // Check if it's a valid boot option for internal Shell
1887 //
1888 if (EfiGetNameGuidFromFwVolDevicePathNode ((MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *) LastDeviceNode) != NULL) {
1889 //
1890 // If the boot option point to Internal FV shell, make sure it is valid
1891 //
1892 TempDevicePath = DevPath;
1893 Status = BdsLibUpdateFvFileDevicePath (&TempDevicePath, PcdGetPtr(PcdShellFile));
1894 if (Status == EFI_ALREADY_STARTED) {
1895 return TRUE;
1896 } else {
1897 if (Status == EFI_SUCCESS) {
1898 FreePool (TempDevicePath);
1899 }
1900 return FALSE;
1901 }
1902 }
1903
1904 //
1905 // If the boot option point to a blockIO device:
1906 // if it is a removable blockIo device, it is valid.
1907 // if it is a fixed blockIo device, check its description confliction.
1908 //
1909 TempDevicePath = DevPath;
1910 Status = gBS->LocateDevicePath (&gEfiBlockIoProtocolGuid, &TempDevicePath, &Handle);
1911 if (EFI_ERROR (Status)) {
1912 //
1913 // Device not present so see if we need to connect it
1914 //
1915 Status = BdsLibConnectDevicePath (DevPath);
1916 if (!EFI_ERROR (Status)) {
1917 //
1918 // Try again to get the Block Io protocol after we did the connect
1919 //
1920 TempDevicePath = DevPath;
1921 Status = gBS->LocateDevicePath (&gEfiBlockIoProtocolGuid, &TempDevicePath, &Handle);
1922 }
1923 }
1924
1925 if (!EFI_ERROR (Status)) {
1926 Status = gBS->HandleProtocol (Handle, &gEfiBlockIoProtocolGuid, (VOID **)&BlockIo);
1927 if (!EFI_ERROR (Status)) {
1928 if (CheckMedia) {
1929 //
1930 // Test if it is ready to boot now
1931 //
1932 if (BdsLibGetBootableHandle (DevPath) != NULL) {
1933 return TRUE;
1934 }
1935 } else {
1936 return TRUE;
1937 }
1938 }
1939 } else {
1940 //
1941 // if the boot option point to a simple file protocol which does not consume block Io protocol, it is also a valid EFI boot option,
1942 //
1943 Status = gBS->LocateDevicePath (&gEfiSimpleFileSystemProtocolGuid, &TempDevicePath, &Handle);
1944 if (!EFI_ERROR (Status)) {
1945 if (CheckMedia) {
1946 //
1947 // Test if it is ready to boot now
1948 //
1949 if (BdsLibGetBootableHandle (DevPath) != NULL) {
1950 return TRUE;
1951 }
1952 } else {
1953 return TRUE;
1954 }
1955 }
1956 }
1957
1958 return FALSE;
1959 }
1960
1961
1962 /**
1963 According to a file guild, check a Fv file device path is valid. If it is invalid,
1964 try to return the valid device path.
1965 FV address maybe changes for memory layout adjust from time to time, use this function
1966 could promise the Fv file device path is right.
1967
1968 @param DevicePath on input, the Fv file device path need to check on
1969 output, the updated valid Fv file device path
1970 @param FileGuid the Fv file guild
1971
1972 @retval EFI_INVALID_PARAMETER the input DevicePath or FileGuid is invalid
1973 parameter
1974 @retval EFI_UNSUPPORTED the input DevicePath does not contain Fv file
1975 guild at all
1976 @retval EFI_ALREADY_STARTED the input DevicePath has pointed to Fv file, it is
1977 valid
1978 @retval EFI_SUCCESS has successfully updated the invalid DevicePath,
1979 and return the updated device path in DevicePath
1980
1981 **/
1982 EFI_STATUS
1983 EFIAPI
1984 BdsLibUpdateFvFileDevicePath (
1985 IN OUT EFI_DEVICE_PATH_PROTOCOL ** DevicePath,
1986 IN EFI_GUID *FileGuid
1987 )
1988 {
1989 EFI_DEVICE_PATH_PROTOCOL *TempDevicePath;
1990 EFI_DEVICE_PATH_PROTOCOL *LastDeviceNode;
1991 EFI_STATUS Status;
1992 EFI_GUID *GuidPoint;
1993 UINTN Index;
1994 UINTN FvHandleCount;
1995 EFI_HANDLE *FvHandleBuffer;
1996 EFI_FV_FILETYPE Type;
1997 UINTN Size;
1998 EFI_FV_FILE_ATTRIBUTES Attributes;
1999 UINT32 AuthenticationStatus;
2000 BOOLEAN FindFvFile;
2001 EFI_LOADED_IMAGE_PROTOCOL *LoadedImage;
2002 EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv;
2003 MEDIA_FW_VOL_FILEPATH_DEVICE_PATH FvFileNode;
2004 EFI_HANDLE FoundFvHandle;
2005 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
2006
2007 if ((DevicePath == NULL) || (*DevicePath == NULL)) {
2008 return EFI_INVALID_PARAMETER;
2009 }
2010 if (FileGuid == NULL) {
2011 return EFI_INVALID_PARAMETER;
2012 }
2013
2014 //
2015 // Check whether the device path point to the default the input Fv file
2016 //
2017 TempDevicePath = *DevicePath;
2018 LastDeviceNode = TempDevicePath;
2019 while (!IsDevicePathEnd (TempDevicePath)) {
2020 LastDeviceNode = TempDevicePath;
2021 TempDevicePath = NextDevicePathNode (TempDevicePath);
2022 }
2023 GuidPoint = EfiGetNameGuidFromFwVolDevicePathNode (
2024 (MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *) LastDeviceNode
2025 );
2026 if (GuidPoint == NULL) {
2027 //
2028 // if this option does not points to a Fv file, just return EFI_UNSUPPORTED
2029 //
2030 return EFI_UNSUPPORTED;
2031 }
2032 if (!CompareGuid (GuidPoint, FileGuid)) {
2033 //
2034 // If the Fv file is not the input file guid, just return EFI_UNSUPPORTED
2035 //
2036 return EFI_UNSUPPORTED;
2037 }
2038
2039 //
2040 // Check whether the input Fv file device path is valid
2041 //
2042 TempDevicePath = *DevicePath;
2043 FoundFvHandle = NULL;
2044 Status = gBS->LocateDevicePath (
2045 &gEfiFirmwareVolume2ProtocolGuid,
2046 &TempDevicePath,
2047 &FoundFvHandle
2048 );
2049 if (!EFI_ERROR (Status)) {
2050 Status = gBS->HandleProtocol (
2051 FoundFvHandle,
2052 &gEfiFirmwareVolume2ProtocolGuid,
2053 (VOID **) &Fv
2054 );
2055 if (!EFI_ERROR (Status)) {
2056 //
2057 // Set FV ReadFile Buffer as NULL, only need to check whether input Fv file exist there
2058 //
2059 Status = Fv->ReadFile (
2060 Fv,
2061 FileGuid,
2062 NULL,
2063 &Size,
2064 &Type,
2065 &Attributes,
2066 &AuthenticationStatus
2067 );
2068 if (!EFI_ERROR (Status)) {
2069 return EFI_ALREADY_STARTED;
2070 }
2071 }
2072 }
2073
2074 //
2075 // Look for the input wanted FV file in current FV
2076 // First, try to look for in Bds own FV. Bds and input wanted FV file usually are in the same FV
2077 //
2078 FindFvFile = FALSE;
2079 FoundFvHandle = NULL;
2080 Status = gBS->HandleProtocol (
2081 gImageHandle,
2082 &gEfiLoadedImageProtocolGuid,
2083 (VOID **) &LoadedImage
2084 );
2085 if (!EFI_ERROR (Status)) {
2086 Status = gBS->HandleProtocol (
2087 LoadedImage->DeviceHandle,
2088 &gEfiFirmwareVolume2ProtocolGuid,
2089 (VOID **) &Fv
2090 );
2091 if (!EFI_ERROR (Status)) {
2092 Status = Fv->ReadFile (
2093 Fv,
2094 FileGuid,
2095 NULL,
2096 &Size,
2097 &Type,
2098 &Attributes,
2099 &AuthenticationStatus
2100 );
2101 if (!EFI_ERROR (Status)) {
2102 FindFvFile = TRUE;
2103 FoundFvHandle = LoadedImage->DeviceHandle;
2104 }
2105 }
2106 }
2107 //
2108 // Second, if fail to find, try to enumerate all FV
2109 //
2110 if (!FindFvFile) {
2111 FvHandleBuffer = NULL;
2112 gBS->LocateHandleBuffer (
2113 ByProtocol,
2114 &gEfiFirmwareVolume2ProtocolGuid,
2115 NULL,
2116 &FvHandleCount,
2117 &FvHandleBuffer
2118 );
2119 for (Index = 0; Index < FvHandleCount; Index++) {
2120 gBS->HandleProtocol (
2121 FvHandleBuffer[Index],
2122 &gEfiFirmwareVolume2ProtocolGuid,
2123 (VOID **) &Fv
2124 );
2125
2126 Status = Fv->ReadFile (
2127 Fv,
2128 FileGuid,
2129 NULL,
2130 &Size,
2131 &Type,
2132 &Attributes,
2133 &AuthenticationStatus
2134 );
2135 if (EFI_ERROR (Status)) {
2136 //
2137 // Skip if input Fv file not in the FV
2138 //
2139 continue;
2140 }
2141 FindFvFile = TRUE;
2142 FoundFvHandle = FvHandleBuffer[Index];
2143 break;
2144 }
2145
2146 if (FvHandleBuffer != NULL) {
2147 FreePool (FvHandleBuffer);
2148 }
2149 }
2150
2151 if (FindFvFile) {
2152 //
2153 // Build the shell device path
2154 //
2155 NewDevicePath = DevicePathFromHandle (FoundFvHandle);
2156 EfiInitializeFwVolDevicepathNode (&FvFileNode, FileGuid);
2157 NewDevicePath = AppendDevicePathNode (NewDevicePath, (EFI_DEVICE_PATH_PROTOCOL *) &FvFileNode);
2158 *DevicePath = NewDevicePath;
2159 return EFI_SUCCESS;
2160 }
2161 return EFI_NOT_FOUND;
2162 }