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