]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Library/GenericBdsLib/BdsBoot.c
Fix wrong parameter usage in GenericBdsLibConstructor
[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 - 2013, 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 The constructor function register UNI strings into imageHandle.
23
24 It will ASSERT() if that operation fails and it will always return EFI_SUCCESS.
25
26 @param ImageHandle The firmware allocated handle for the EFI image.
27 @param SystemTable A pointer to the EFI System Table.
28
29 @retval EFI_SUCCESS The constructor successfully added string package.
30 @retval Other value The constructor can't add string package.
31
32 **/
33 EFI_STATUS
34 EFIAPI
35 GenericBdsLibConstructor (
36 IN EFI_HANDLE ImageHandle,
37 IN EFI_SYSTEM_TABLE *SystemTable
38 )
39 {
40
41 gBdsLibStringPackHandle = HiiAddPackages (
42 &gBdsLibStringPackageGuid,
43 ImageHandle,
44 GenericBdsLibStrings,
45 NULL
46 );
47
48 ASSERT (gBdsLibStringPackHandle != NULL);
49
50 return EFI_SUCCESS;
51 }
52
53 /**
54 Deletete the Boot Option from EFI Variable. The Boot Order Arrray
55 is also updated.
56
57 @param OptionNumber The number of Boot option want to be deleted.
58 @param BootOrder The Boot Order array.
59 @param BootOrderSize The size of the Boot Order Array.
60
61 @retval EFI_SUCCESS The Boot Option Variable was found and removed
62 @retval EFI_UNSUPPORTED The Boot Option Variable store was inaccessible
63 @retval EFI_NOT_FOUND The Boot Option Variable was not found
64 **/
65 EFI_STATUS
66 EFIAPI
67 BdsDeleteBootOption (
68 IN UINTN OptionNumber,
69 IN OUT UINT16 *BootOrder,
70 IN OUT UINTN *BootOrderSize
71 )
72 {
73 CHAR16 BootOption[9];
74 UINTN Index;
75 EFI_STATUS Status;
76
77 UnicodeSPrint (BootOption, sizeof (BootOption), L"Boot%04x", OptionNumber);
78 Status = gRT->SetVariable (
79 BootOption,
80 &gEfiGlobalVariableGuid,
81 0,
82 0,
83 NULL
84 );
85
86 //
87 // adjust boot order array
88 //
89 for (Index = 0; Index < *BootOrderSize / sizeof (UINT16); Index++) {
90 if (BootOrder[Index] == OptionNumber) {
91 CopyMem (&BootOrder[Index], &BootOrder[Index+1], *BootOrderSize - (Index+1) * sizeof (UINT16));
92 *BootOrderSize -= sizeof (UINT16);
93 break;
94 }
95 }
96
97 return Status;
98 }
99 /**
100
101 Translate the first n characters of an Ascii string to
102 Unicode characters. The count n is indicated by parameter
103 Size. If Size is greater than the length of string, then
104 the entire string is translated.
105
106
107 @param AStr Pointer to input Ascii string.
108 @param Size The number of characters to translate.
109 @param UStr Pointer to output Unicode string buffer.
110
111 **/
112 VOID
113 AsciiToUnicodeSize (
114 IN UINT8 *AStr,
115 IN UINTN Size,
116 OUT UINT16 *UStr
117 )
118 {
119 UINTN Idx;
120
121 Idx = 0;
122 while (AStr[Idx] != 0) {
123 UStr[Idx] = (CHAR16) AStr[Idx];
124 if (Idx == Size) {
125 break;
126 }
127
128 Idx++;
129 }
130 UStr[Idx] = 0;
131 }
132
133 /**
134 Build Legacy Device Name String according.
135
136 @param CurBBSEntry BBS Table.
137 @param Index Index.
138 @param BufSize The buffer size.
139 @param BootString The output string.
140
141 **/
142 VOID
143 BdsBuildLegacyDevNameString (
144 IN BBS_TABLE *CurBBSEntry,
145 IN UINTN Index,
146 IN UINTN BufSize,
147 OUT CHAR16 *BootString
148 )
149 {
150 CHAR16 *Fmt;
151 CHAR16 *Type;
152 UINT8 *StringDesc;
153 CHAR16 Temp[80];
154
155 switch (Index) {
156 //
157 // Primary Master
158 //
159 case 1:
160 Fmt = L"Primary Master %s";
161 break;
162
163 //
164 // Primary Slave
165 //
166 case 2:
167 Fmt = L"Primary Slave %s";
168 break;
169
170 //
171 // Secondary Master
172 //
173 case 3:
174 Fmt = L"Secondary Master %s";
175 break;
176
177 //
178 // Secondary Slave
179 //
180 case 4:
181 Fmt = L"Secondary Slave %s";
182 break;
183
184 default:
185 Fmt = L"%s";
186 break;
187 }
188
189 switch (CurBBSEntry->DeviceType) {
190 case BBS_FLOPPY:
191 Type = L"Floppy";
192 break;
193
194 case BBS_HARDDISK:
195 Type = L"Harddisk";
196 break;
197
198 case BBS_CDROM:
199 Type = L"CDROM";
200 break;
201
202 case BBS_PCMCIA:
203 Type = L"PCMCIAe";
204 break;
205
206 case BBS_USB:
207 Type = L"USB";
208 break;
209
210 case BBS_EMBED_NETWORK:
211 Type = L"Network";
212 break;
213
214 case BBS_BEV_DEVICE:
215 Type = L"BEVe";
216 break;
217
218 case BBS_UNKNOWN:
219 default:
220 Type = L"Unknown";
221 break;
222 }
223 //
224 // If current BBS entry has its description then use it.
225 //
226 StringDesc = (UINT8 *) (UINTN) ((CurBBSEntry->DescStringSegment << 4) + CurBBSEntry->DescStringOffset);
227 if (NULL != StringDesc) {
228 //
229 // Only get fisrt 32 characters, this is suggested by BBS spec
230 //
231 AsciiToUnicodeSize (StringDesc, 32, Temp);
232 Fmt = L"%s";
233 Type = Temp;
234 }
235
236 //
237 // BbsTable 16 entries are for onboard IDE.
238 // Set description string for SATA harddisks, Harddisk 0 ~ Harddisk 11
239 //
240 if (Index >= 5 && Index <= 16 && (CurBBSEntry->DeviceType == BBS_HARDDISK || CurBBSEntry->DeviceType == BBS_CDROM)) {
241 Fmt = L"%s %d";
242 UnicodeSPrint (BootString, BufSize, Fmt, Type, Index - 5);
243 } else {
244 UnicodeSPrint (BootString, BufSize, Fmt, Type);
245 }
246 }
247
248 /**
249
250 Create a legacy boot option for the specified entry of
251 BBS table, save it as variable, and append it to the boot
252 order list.
253
254
255 @param CurrentBbsEntry Pointer to current BBS table.
256 @param CurrentBbsDevPath Pointer to the Device Path Protocol instance of BBS
257 @param Index Index of the specified entry in BBS table.
258 @param BootOrderList On input, the original boot order list.
259 On output, the new boot order list attached with the
260 created node.
261 @param BootOrderListSize On input, the original size of boot order list.
262 On output, the size of new boot order list.
263
264 @retval EFI_SUCCESS Boot Option successfully created.
265 @retval EFI_OUT_OF_RESOURCES Fail to allocate necessary memory.
266 @retval Other Error occurs while setting variable.
267
268 **/
269 EFI_STATUS
270 BdsCreateLegacyBootOption (
271 IN BBS_TABLE *CurrentBbsEntry,
272 IN EFI_DEVICE_PATH_PROTOCOL *CurrentBbsDevPath,
273 IN UINTN Index,
274 IN OUT UINT16 **BootOrderList,
275 IN OUT UINTN *BootOrderListSize
276 )
277 {
278 EFI_STATUS Status;
279 UINT16 CurrentBootOptionNo;
280 UINT16 BootString[10];
281 CHAR16 BootDesc[100];
282 CHAR8 HelpString[100];
283 UINT16 *NewBootOrderList;
284 UINTN BufferSize;
285 UINTN StringLen;
286 VOID *Buffer;
287 UINT8 *Ptr;
288 UINT16 CurrentBbsDevPathSize;
289 UINTN BootOrderIndex;
290 UINTN BootOrderLastIndex;
291 UINTN ArrayIndex;
292 BOOLEAN IndexNotFound;
293 BBS_BBS_DEVICE_PATH *NewBbsDevPathNode;
294
295 if ((*BootOrderList) == NULL) {
296 CurrentBootOptionNo = 0;
297 } else {
298 for (ArrayIndex = 0; ArrayIndex < (UINTN) (*BootOrderListSize / sizeof (UINT16)); ArrayIndex++) {
299 IndexNotFound = TRUE;
300 for (BootOrderIndex = 0; BootOrderIndex < (UINTN) (*BootOrderListSize / sizeof (UINT16)); BootOrderIndex++) {
301 if ((*BootOrderList)[BootOrderIndex] == ArrayIndex) {
302 IndexNotFound = FALSE;
303 break;
304 }
305 }
306
307 if (!IndexNotFound) {
308 continue;
309 } else {
310 break;
311 }
312 }
313
314 CurrentBootOptionNo = (UINT16) ArrayIndex;
315 }
316
317 UnicodeSPrint (
318 BootString,
319 sizeof (BootString),
320 L"Boot%04x",
321 CurrentBootOptionNo
322 );
323
324 BdsBuildLegacyDevNameString (CurrentBbsEntry, Index, sizeof (BootDesc), BootDesc);
325
326 //
327 // Create new BBS device path node with description string
328 //
329 UnicodeStrToAsciiStr (BootDesc, HelpString);
330
331 StringLen = AsciiStrLen (HelpString);
332 NewBbsDevPathNode = AllocateZeroPool (sizeof (BBS_BBS_DEVICE_PATH) + StringLen);
333 if (NewBbsDevPathNode == NULL) {
334 return EFI_OUT_OF_RESOURCES;
335 }
336 CopyMem (NewBbsDevPathNode, CurrentBbsDevPath, sizeof (BBS_BBS_DEVICE_PATH));
337 CopyMem (NewBbsDevPathNode->String, HelpString, StringLen + 1);
338 SetDevicePathNodeLength (&(NewBbsDevPathNode->Header), sizeof (BBS_BBS_DEVICE_PATH) + StringLen);
339
340 //
341 // Create entire new CurrentBbsDevPath with end node
342 //
343 CurrentBbsDevPath = AppendDevicePathNode (
344 NULL,
345 (EFI_DEVICE_PATH_PROTOCOL *) NewBbsDevPathNode
346 );
347 if (CurrentBbsDevPath == NULL) {
348 FreePool (NewBbsDevPathNode);
349 return EFI_OUT_OF_RESOURCES;
350 }
351
352 CurrentBbsDevPathSize = (UINT16) (GetDevicePathSize (CurrentBbsDevPath));
353
354 BufferSize = sizeof (UINT32) +
355 sizeof (UINT16) +
356 StrSize (BootDesc) +
357 CurrentBbsDevPathSize +
358 sizeof (BBS_TABLE) +
359 sizeof (UINT16);
360
361 Buffer = AllocateZeroPool (BufferSize);
362 if (Buffer == NULL) {
363 FreePool (NewBbsDevPathNode);
364 FreePool (CurrentBbsDevPath);
365 return EFI_OUT_OF_RESOURCES;
366 }
367
368 Ptr = (UINT8 *) Buffer;
369
370 *((UINT32 *) Ptr) = LOAD_OPTION_ACTIVE;
371 Ptr += sizeof (UINT32);
372
373 *((UINT16 *) Ptr) = CurrentBbsDevPathSize;
374 Ptr += sizeof (UINT16);
375
376 CopyMem (
377 Ptr,
378 BootDesc,
379 StrSize (BootDesc)
380 );
381 Ptr += StrSize (BootDesc);
382
383 CopyMem (
384 Ptr,
385 CurrentBbsDevPath,
386 CurrentBbsDevPathSize
387 );
388 Ptr += CurrentBbsDevPathSize;
389
390 CopyMem (
391 Ptr,
392 CurrentBbsEntry,
393 sizeof (BBS_TABLE)
394 );
395
396 Ptr += sizeof (BBS_TABLE);
397 *((UINT16 *) Ptr) = (UINT16) Index;
398
399 Status = gRT->SetVariable (
400 BootString,
401 &gEfiGlobalVariableGuid,
402 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
403 BufferSize,
404 Buffer
405 );
406
407 FreePool (Buffer);
408
409 Buffer = NULL;
410
411 NewBootOrderList = AllocateZeroPool (*BootOrderListSize + sizeof (UINT16));
412 if (NULL == NewBootOrderList) {
413 FreePool (NewBbsDevPathNode);
414 FreePool (CurrentBbsDevPath);
415 return EFI_OUT_OF_RESOURCES;
416 }
417
418 if (*BootOrderList != NULL) {
419 CopyMem (NewBootOrderList, *BootOrderList, *BootOrderListSize);
420 FreePool (*BootOrderList);
421 }
422
423 BootOrderLastIndex = (UINTN) (*BootOrderListSize / sizeof (UINT16));
424 NewBootOrderList[BootOrderLastIndex] = CurrentBootOptionNo;
425 *BootOrderListSize += sizeof (UINT16);
426 *BootOrderList = NewBootOrderList;
427
428 FreePool (NewBbsDevPathNode);
429 FreePool (CurrentBbsDevPath);
430 return Status;
431 }
432
433 /**
434 Check if the boot option is a legacy one.
435
436 @param BootOptionVar The boot option data payload.
437 @param BbsEntry The BBS Table.
438 @param BbsIndex The table index.
439
440 @retval TRUE It is a legacy boot option.
441 @retval FALSE It is not a legacy boot option.
442
443 **/
444 BOOLEAN
445 BdsIsLegacyBootOption (
446 IN UINT8 *BootOptionVar,
447 OUT BBS_TABLE **BbsEntry,
448 OUT UINT16 *BbsIndex
449 )
450 {
451 UINT8 *Ptr;
452 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
453 BOOLEAN Ret;
454 UINT16 DevPathLen;
455
456 Ptr = BootOptionVar;
457 Ptr += sizeof (UINT32);
458 DevPathLen = *(UINT16 *) Ptr;
459 Ptr += sizeof (UINT16);
460 Ptr += StrSize ((UINT16 *) Ptr);
461 DevicePath = (EFI_DEVICE_PATH_PROTOCOL *) Ptr;
462 if ((BBS_DEVICE_PATH == DevicePath->Type) && (BBS_BBS_DP == DevicePath->SubType)) {
463 Ptr += DevPathLen;
464 *BbsEntry = (BBS_TABLE *) Ptr;
465 Ptr += sizeof (BBS_TABLE);
466 *BbsIndex = *(UINT16 *) Ptr;
467 Ret = TRUE;
468 } else {
469 *BbsEntry = NULL;
470 Ret = FALSE;
471 }
472
473 return Ret;
474 }
475
476 /**
477 Delete all the invalid legacy boot options.
478
479 @retval EFI_SUCCESS All invalide legacy boot options are deleted.
480 @retval EFI_OUT_OF_RESOURCES Fail to allocate necessary memory.
481 @retval EFI_NOT_FOUND Fail to retrive variable of boot order.
482 **/
483 EFI_STATUS
484 EFIAPI
485 BdsDeleteAllInvalidLegacyBootOptions (
486 VOID
487 )
488 {
489 UINT16 *BootOrder;
490 UINT8 *BootOptionVar;
491 UINTN BootOrderSize;
492 UINTN BootOptionSize;
493 EFI_STATUS Status;
494 UINT16 HddCount;
495 UINT16 BbsCount;
496 HDD_INFO *LocalHddInfo;
497 BBS_TABLE *LocalBbsTable;
498 BBS_TABLE *BbsEntry;
499 UINT16 BbsIndex;
500 EFI_LEGACY_BIOS_PROTOCOL *LegacyBios;
501 UINTN Index;
502 UINT16 BootOption[10];
503 UINT16 BootDesc[100];
504 BOOLEAN DescStringMatch;
505
506 Status = EFI_SUCCESS;
507 BootOrder = NULL;
508 BootOrderSize = 0;
509 HddCount = 0;
510 BbsCount = 0;
511 LocalHddInfo = NULL;
512 LocalBbsTable = NULL;
513 BbsEntry = NULL;
514
515 Status = gBS->LocateProtocol (&gEfiLegacyBiosProtocolGuid, NULL, (VOID **) &LegacyBios);
516 if (EFI_ERROR (Status)) {
517 return Status;
518 }
519
520 LegacyBios->GetBbsInfo (
521 LegacyBios,
522 &HddCount,
523 &LocalHddInfo,
524 &BbsCount,
525 &LocalBbsTable
526 );
527
528 BootOrder = BdsLibGetVariableAndSize (
529 L"BootOrder",
530 &gEfiGlobalVariableGuid,
531 &BootOrderSize
532 );
533 if (BootOrder == NULL) {
534 BootOrderSize = 0;
535 }
536
537 Index = 0;
538 while (Index < BootOrderSize / sizeof (UINT16)) {
539 UnicodeSPrint (BootOption, sizeof (BootOption), L"Boot%04x", BootOrder[Index]);
540 BootOptionVar = BdsLibGetVariableAndSize (
541 BootOption,
542 &gEfiGlobalVariableGuid,
543 &BootOptionSize
544 );
545 if (NULL == BootOptionVar) {
546 BootOptionSize = 0;
547 Status = gRT->GetVariable (
548 BootOption,
549 &gEfiGlobalVariableGuid,
550 NULL,
551 &BootOptionSize,
552 BootOptionVar
553 );
554 if (Status == EFI_NOT_FOUND) {
555 //
556 // Update BootOrder
557 //
558 BdsDeleteBootOption (
559 BootOrder[Index],
560 BootOrder,
561 &BootOrderSize
562 );
563 continue;
564 } else {
565 FreePool (BootOrder);
566 return EFI_OUT_OF_RESOURCES;
567 }
568 }
569
570 //
571 // Skip Non-Legacy boot option
572 //
573 if (!BdsIsLegacyBootOption (BootOptionVar, &BbsEntry, &BbsIndex)) {
574 if (BootOptionVar!= NULL) {
575 FreePool (BootOptionVar);
576 }
577 Index++;
578 continue;
579 }
580
581 if (BbsIndex < BbsCount) {
582 //
583 // Check if BBS Description String is changed
584 //
585 DescStringMatch = FALSE;
586 BdsBuildLegacyDevNameString (
587 &LocalBbsTable[BbsIndex],
588 BbsIndex,
589 sizeof (BootDesc),
590 BootDesc
591 );
592
593 if (StrCmp (BootDesc, (UINT16*)(BootOptionVar + sizeof (UINT32) + sizeof (UINT16))) == 0) {
594 DescStringMatch = TRUE;
595 }
596
597 if (!((LocalBbsTable[BbsIndex].BootPriority == BBS_IGNORE_ENTRY) ||
598 (LocalBbsTable[BbsIndex].BootPriority == BBS_DO_NOT_BOOT_FROM)) &&
599 (LocalBbsTable[BbsIndex].DeviceType == BbsEntry->DeviceType) &&
600 DescStringMatch) {
601 Index++;
602 continue;
603 }
604 }
605
606 if (BootOptionVar != NULL) {
607 FreePool (BootOptionVar);
608 }
609 //
610 // should delete
611 //
612 BdsDeleteBootOption (
613 BootOrder[Index],
614 BootOrder,
615 &BootOrderSize
616 );
617 }
618
619 //
620 // Adjust the number of boot options.
621 //
622 Status = gRT->SetVariable (
623 L"BootOrder",
624 &gEfiGlobalVariableGuid,
625 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
626 BootOrderSize,
627 BootOrder
628 );
629 if (BootOrder != NULL) {
630 FreePool (BootOrder);
631 }
632
633 return Status;
634 }
635
636 /**
637 Find all legacy boot option by device type.
638
639 @param BootOrder The boot order array.
640 @param BootOptionNum The number of boot option.
641 @param DevType Device type.
642 @param DevName Device name.
643 @param Attribute The boot option attribute.
644 @param BbsIndex The BBS table index.
645 @param OptionNumber The boot option index.
646
647 @retval TRUE The Legacy boot option is found.
648 @retval FALSE The legacy boot option is not found.
649
650 **/
651 BOOLEAN
652 BdsFindLegacyBootOptionByDevTypeAndName (
653 IN UINT16 *BootOrder,
654 IN UINTN BootOptionNum,
655 IN UINT16 DevType,
656 IN CHAR16 *DevName,
657 OUT UINT32 *Attribute,
658 OUT UINT16 *BbsIndex,
659 OUT UINT16 *OptionNumber
660 )
661 {
662 UINTN Index;
663 CHAR16 BootOption[9];
664 UINTN BootOptionSize;
665 UINT8 *BootOptionVar;
666 BBS_TABLE *BbsEntry;
667 BOOLEAN Found;
668
669 BbsEntry = NULL;
670 Found = FALSE;
671
672 if (NULL == BootOrder) {
673 return Found;
674 }
675
676 //
677 // Loop all boot option from variable
678 //
679 for (Index = 0; Index < BootOptionNum; Index++) {
680 UnicodeSPrint (BootOption, sizeof (BootOption), L"Boot%04x", (UINTN) BootOrder[Index]);
681 BootOptionVar = BdsLibGetVariableAndSize (
682 BootOption,
683 &gEfiGlobalVariableGuid,
684 &BootOptionSize
685 );
686 if (NULL == BootOptionVar) {
687 continue;
688 }
689
690 //
691 // Skip Non-legacy boot option
692 //
693 if (!BdsIsLegacyBootOption (BootOptionVar, &BbsEntry, BbsIndex)) {
694 FreePool (BootOptionVar);
695 continue;
696 }
697
698 if (
699 (BbsEntry->DeviceType != DevType) ||
700 (StrCmp (DevName, (CHAR16*)(BootOptionVar + sizeof (UINT32) + sizeof (UINT16))) != 0)
701 ) {
702 FreePool (BootOptionVar);
703 continue;
704 }
705
706 *Attribute = *(UINT32 *) BootOptionVar;
707 *OptionNumber = BootOrder[Index];
708 Found = TRUE;
709 FreePool (BootOptionVar);
710 break;
711 }
712
713 return Found;
714 }
715
716 /**
717 Create a legacy boot option.
718
719 @param BbsItem The BBS Table entry.
720 @param Index Index of the specified entry in BBS table.
721 @param BootOrderList The boot order list.
722 @param BootOrderListSize The size of boot order list.
723
724 @retval EFI_OUT_OF_RESOURCE No enough memory.
725 @retval EFI_SUCCESS The function complete successfully.
726 @return Other value if the legacy boot option is not created.
727
728 **/
729 EFI_STATUS
730 BdsCreateOneLegacyBootOption (
731 IN BBS_TABLE *BbsItem,
732 IN UINTN Index,
733 IN OUT UINT16 **BootOrderList,
734 IN OUT UINTN *BootOrderListSize
735 )
736 {
737 BBS_BBS_DEVICE_PATH BbsDevPathNode;
738 EFI_STATUS Status;
739 EFI_DEVICE_PATH_PROTOCOL *DevPath;
740
741 DevPath = NULL;
742
743 //
744 // Create device path node.
745 //
746 BbsDevPathNode.Header.Type = BBS_DEVICE_PATH;
747 BbsDevPathNode.Header.SubType = BBS_BBS_DP;
748 SetDevicePathNodeLength (&BbsDevPathNode.Header, sizeof (BBS_BBS_DEVICE_PATH));
749 BbsDevPathNode.DeviceType = BbsItem->DeviceType;
750 CopyMem (&BbsDevPathNode.StatusFlag, &BbsItem->StatusFlags, sizeof (UINT16));
751
752 DevPath = AppendDevicePathNode (
753 NULL,
754 (EFI_DEVICE_PATH_PROTOCOL *) &BbsDevPathNode
755 );
756 if (NULL == DevPath) {
757 return EFI_OUT_OF_RESOURCES;
758 }
759
760 Status = BdsCreateLegacyBootOption (
761 BbsItem,
762 DevPath,
763 Index,
764 BootOrderList,
765 BootOrderListSize
766 );
767 BbsItem->BootPriority = 0x00;
768
769 FreePool (DevPath);
770
771 return Status;
772 }
773
774 /**
775 Add the legacy boot options from BBS table if they do not exist.
776
777 @retval EFI_SUCCESS The boot options are added successfully
778 or they are already in boot options.
779 @retval EFI_NOT_FOUND No legacy boot options is found.
780 @retval EFI_OUT_OF_RESOURCE No enough memory.
781 @return Other value LegacyBoot options are not added.
782 **/
783 EFI_STATUS
784 EFIAPI
785 BdsAddNonExistingLegacyBootOptions (
786 VOID
787 )
788 {
789 UINT16 *BootOrder;
790 UINTN BootOrderSize;
791 EFI_STATUS Status;
792 CHAR16 Desc[100];
793 UINT16 HddCount;
794 UINT16 BbsCount;
795 HDD_INFO *LocalHddInfo;
796 BBS_TABLE *LocalBbsTable;
797 UINT16 BbsIndex;
798 EFI_LEGACY_BIOS_PROTOCOL *LegacyBios;
799 UINT16 Index;
800 UINT32 Attribute;
801 UINT16 OptionNumber;
802 BOOLEAN Exist;
803
804 HddCount = 0;
805 BbsCount = 0;
806 LocalHddInfo = NULL;
807 LocalBbsTable = NULL;
808
809 Status = gBS->LocateProtocol (&gEfiLegacyBiosProtocolGuid, NULL, (VOID **) &LegacyBios);
810 if (EFI_ERROR (Status)) {
811 return Status;
812 }
813
814 LegacyBios->GetBbsInfo (
815 LegacyBios,
816 &HddCount,
817 &LocalHddInfo,
818 &BbsCount,
819 &LocalBbsTable
820 );
821
822 BootOrder = BdsLibGetVariableAndSize (
823 L"BootOrder",
824 &gEfiGlobalVariableGuid,
825 &BootOrderSize
826 );
827 if (BootOrder == NULL) {
828 BootOrderSize = 0;
829 }
830
831 for (Index = 0; Index < BbsCount; Index++) {
832 if ((LocalBbsTable[Index].BootPriority == BBS_IGNORE_ENTRY) ||
833 (LocalBbsTable[Index].BootPriority == BBS_DO_NOT_BOOT_FROM)
834 ) {
835 continue;
836 }
837
838 BdsBuildLegacyDevNameString (&LocalBbsTable[Index], Index, sizeof (Desc), Desc);
839
840 Exist = BdsFindLegacyBootOptionByDevTypeAndName (
841 BootOrder,
842 BootOrderSize / sizeof (UINT16),
843 LocalBbsTable[Index].DeviceType,
844 Desc,
845 &Attribute,
846 &BbsIndex,
847 &OptionNumber
848 );
849 if (!Exist) {
850 //
851 // Not found such type of legacy device in boot options or we found but it's disabled
852 // so we have to create one and put it to the tail of boot order list
853 //
854 Status = BdsCreateOneLegacyBootOption (
855 &LocalBbsTable[Index],
856 Index,
857 &BootOrder,
858 &BootOrderSize
859 );
860 if (EFI_ERROR (Status)) {
861 break;
862 }
863 BbsIndex = Index;
864 OptionNumber = BootOrder[BootOrderSize / sizeof (UINT16) - 1];
865 }
866
867 ASSERT (BbsIndex == Index);
868 }
869
870 Status = gRT->SetVariable (
871 L"BootOrder",
872 &gEfiGlobalVariableGuid,
873 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
874 BootOrderSize,
875 BootOrder
876 );
877 if (BootOrder != NULL) {
878 FreePool (BootOrder);
879 }
880
881 return Status;
882 }
883
884 /**
885 Fill the device order buffer.
886
887 @param BbsTable The BBS table.
888 @param BbsType The BBS Type.
889 @param BbsCount The BBS Count.
890 @param Buf device order buffer.
891
892 @return The device order buffer.
893
894 **/
895 UINT16 *
896 BdsFillDevOrderBuf (
897 IN BBS_TABLE *BbsTable,
898 IN BBS_TYPE BbsType,
899 IN UINTN BbsCount,
900 OUT UINT16 *Buf
901 )
902 {
903 UINTN Index;
904
905 for (Index = 0; Index < BbsCount; Index++) {
906 if (BbsTable[Index].BootPriority == BBS_IGNORE_ENTRY) {
907 continue;
908 }
909
910 if (BbsTable[Index].DeviceType != BbsType) {
911 continue;
912 }
913
914 *Buf = (UINT16) (Index & 0xFF);
915 Buf++;
916 }
917
918 return Buf;
919 }
920
921 /**
922 Create the device order buffer.
923
924 @param BbsTable The BBS table.
925 @param BbsCount The BBS Count.
926
927 @retval EFI_SUCCES The buffer is created and the EFI variable named
928 VAR_LEGACY_DEV_ORDER and gEfiLegacyDevOrderVariableGuid is
929 set correctly.
930 @retval EFI_OUT_OF_RESOURCES Memmory or storage is not enough.
931 @retval EFI_DEVICE_ERROR Fail to add the device order into EFI variable fail
932 because of hardware error.
933 **/
934 EFI_STATUS
935 BdsCreateDevOrder (
936 IN BBS_TABLE *BbsTable,
937 IN UINT16 BbsCount
938 )
939 {
940 UINTN Index;
941 UINTN FDCount;
942 UINTN HDCount;
943 UINTN CDCount;
944 UINTN NETCount;
945 UINTN BEVCount;
946 UINTN TotalSize;
947 UINTN HeaderSize;
948 LEGACY_DEV_ORDER_ENTRY *DevOrder;
949 LEGACY_DEV_ORDER_ENTRY *DevOrderPtr;
950 EFI_STATUS Status;
951
952 FDCount = 0;
953 HDCount = 0;
954 CDCount = 0;
955 NETCount = 0;
956 BEVCount = 0;
957 TotalSize = 0;
958 HeaderSize = sizeof (BBS_TYPE) + sizeof (UINT16);
959 DevOrder = NULL;
960 Status = EFI_SUCCESS;
961
962 //
963 // Count all boot devices
964 //
965 for (Index = 0; Index < BbsCount; Index++) {
966 if (BbsTable[Index].BootPriority == BBS_IGNORE_ENTRY) {
967 continue;
968 }
969
970 switch (BbsTable[Index].DeviceType) {
971 case BBS_FLOPPY:
972 FDCount++;
973 break;
974
975 case BBS_HARDDISK:
976 HDCount++;
977 break;
978
979 case BBS_CDROM:
980 CDCount++;
981 break;
982
983 case BBS_EMBED_NETWORK:
984 NETCount++;
985 break;
986
987 case BBS_BEV_DEVICE:
988 BEVCount++;
989 break;
990
991 default:
992 break;
993 }
994 }
995
996 TotalSize += (HeaderSize + sizeof (UINT16) * FDCount);
997 TotalSize += (HeaderSize + sizeof (UINT16) * HDCount);
998 TotalSize += (HeaderSize + sizeof (UINT16) * CDCount);
999 TotalSize += (HeaderSize + sizeof (UINT16) * NETCount);
1000 TotalSize += (HeaderSize + sizeof (UINT16) * BEVCount);
1001
1002 //
1003 // Create buffer to hold all boot device order
1004 //
1005 DevOrder = AllocateZeroPool (TotalSize);
1006 if (NULL == DevOrder) {
1007 return EFI_OUT_OF_RESOURCES;
1008 }
1009 DevOrderPtr = DevOrder;
1010
1011 DevOrderPtr->BbsType = BBS_FLOPPY;
1012 DevOrderPtr->Length = (UINT16) (sizeof (DevOrderPtr->Length) + FDCount * sizeof (UINT16));
1013 DevOrderPtr = (LEGACY_DEV_ORDER_ENTRY *) BdsFillDevOrderBuf (BbsTable, BBS_FLOPPY, BbsCount, DevOrderPtr->Data);
1014
1015 DevOrderPtr->BbsType = BBS_HARDDISK;
1016 DevOrderPtr->Length = (UINT16) (sizeof (UINT16) + HDCount * sizeof (UINT16));
1017 DevOrderPtr = (LEGACY_DEV_ORDER_ENTRY *) BdsFillDevOrderBuf (BbsTable, BBS_HARDDISK, BbsCount, DevOrderPtr->Data);
1018
1019 DevOrderPtr->BbsType = BBS_CDROM;
1020 DevOrderPtr->Length = (UINT16) (sizeof (UINT16) + CDCount * sizeof (UINT16));
1021 DevOrderPtr = (LEGACY_DEV_ORDER_ENTRY *) BdsFillDevOrderBuf (BbsTable, BBS_CDROM, BbsCount, DevOrderPtr->Data);
1022
1023 DevOrderPtr->BbsType = BBS_EMBED_NETWORK;
1024 DevOrderPtr->Length = (UINT16) (sizeof (UINT16) + NETCount * sizeof (UINT16));
1025 DevOrderPtr = (LEGACY_DEV_ORDER_ENTRY *) BdsFillDevOrderBuf (BbsTable, BBS_EMBED_NETWORK, BbsCount, DevOrderPtr->Data);
1026
1027 DevOrderPtr->BbsType = BBS_BEV_DEVICE;
1028 DevOrderPtr->Length = (UINT16) (sizeof (UINT16) + BEVCount * sizeof (UINT16));
1029 DevOrderPtr = (LEGACY_DEV_ORDER_ENTRY *) BdsFillDevOrderBuf (BbsTable, BBS_BEV_DEVICE, BbsCount, DevOrderPtr->Data);
1030
1031 ASSERT (TotalSize == (UINTN) ((UINT8 *) DevOrderPtr - (UINT8 *) DevOrder));
1032
1033 //
1034 // Save device order for legacy boot device to variable.
1035 //
1036 Status = gRT->SetVariable (
1037 VAR_LEGACY_DEV_ORDER,
1038 &gEfiLegacyDevOrderVariableGuid,
1039 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
1040 TotalSize,
1041 DevOrder
1042 );
1043 FreePool (DevOrder);
1044
1045 return Status;
1046 }
1047
1048 /**
1049 Add the legacy boot devices from BBS table into
1050 the legacy device boot order.
1051
1052 @retval EFI_SUCCESS The boot devices are added successfully.
1053 @retval EFI_NOT_FOUND The legacy boot devices are not found.
1054 @retval EFI_OUT_OF_RESOURCES Memmory or storage is not enough.
1055 @retval EFI_DEVICE_ERROR Fail to add the legacy device boot order into EFI variable
1056 because of hardware error.
1057 **/
1058 EFI_STATUS
1059 EFIAPI
1060 BdsUpdateLegacyDevOrder (
1061 VOID
1062 )
1063 {
1064 LEGACY_DEV_ORDER_ENTRY *DevOrder;
1065 LEGACY_DEV_ORDER_ENTRY *NewDevOrder;
1066 LEGACY_DEV_ORDER_ENTRY *Ptr;
1067 LEGACY_DEV_ORDER_ENTRY *NewPtr;
1068 UINTN DevOrderSize;
1069 EFI_LEGACY_BIOS_PROTOCOL *LegacyBios;
1070 EFI_STATUS Status;
1071 UINT16 HddCount;
1072 UINT16 BbsCount;
1073 HDD_INFO *LocalHddInfo;
1074 BBS_TABLE *LocalBbsTable;
1075 UINTN Index;
1076 UINTN Index2;
1077 UINTN *Idx;
1078 UINTN FDCount;
1079 UINTN HDCount;
1080 UINTN CDCount;
1081 UINTN NETCount;
1082 UINTN BEVCount;
1083 UINTN TotalSize;
1084 UINTN HeaderSize;
1085 UINT16 *NewFDPtr;
1086 UINT16 *NewHDPtr;
1087 UINT16 *NewCDPtr;
1088 UINT16 *NewNETPtr;
1089 UINT16 *NewBEVPtr;
1090 UINT16 *NewDevPtr;
1091 UINTN FDIndex;
1092 UINTN HDIndex;
1093 UINTN CDIndex;
1094 UINTN NETIndex;
1095 UINTN BEVIndex;
1096
1097 Idx = NULL;
1098 FDCount = 0;
1099 HDCount = 0;
1100 CDCount = 0;
1101 NETCount = 0;
1102 BEVCount = 0;
1103 TotalSize = 0;
1104 HeaderSize = sizeof (BBS_TYPE) + sizeof (UINT16);
1105 FDIndex = 0;
1106 HDIndex = 0;
1107 CDIndex = 0;
1108 NETIndex = 0;
1109 BEVIndex = 0;
1110 NewDevPtr = NULL;
1111
1112 Status = gBS->LocateProtocol (&gEfiLegacyBiosProtocolGuid, NULL, (VOID **) &LegacyBios);
1113 if (EFI_ERROR (Status)) {
1114 return Status;
1115 }
1116
1117 Status = LegacyBios->GetBbsInfo (
1118 LegacyBios,
1119 &HddCount,
1120 &LocalHddInfo,
1121 &BbsCount,
1122 &LocalBbsTable
1123 );
1124 if (EFI_ERROR (Status)) {
1125 return Status;
1126 }
1127
1128 DevOrder = BdsLibGetVariableAndSize (
1129 VAR_LEGACY_DEV_ORDER,
1130 &gEfiLegacyDevOrderVariableGuid,
1131 &DevOrderSize
1132 );
1133 if (NULL == DevOrder) {
1134 return BdsCreateDevOrder (LocalBbsTable, BbsCount);
1135 }
1136 //
1137 // First we figure out how many boot devices with same device type respectively
1138 //
1139 for (Index = 0; Index < BbsCount; Index++) {
1140 if ((LocalBbsTable[Index].BootPriority == BBS_IGNORE_ENTRY) ||
1141 (LocalBbsTable[Index].BootPriority == BBS_DO_NOT_BOOT_FROM)
1142 ) {
1143 continue;
1144 }
1145
1146 switch (LocalBbsTable[Index].DeviceType) {
1147 case BBS_FLOPPY:
1148 FDCount++;
1149 break;
1150
1151 case BBS_HARDDISK:
1152 HDCount++;
1153 break;
1154
1155 case BBS_CDROM:
1156 CDCount++;
1157 break;
1158
1159 case BBS_EMBED_NETWORK:
1160 NETCount++;
1161 break;
1162
1163 case BBS_BEV_DEVICE:
1164 BEVCount++;
1165 break;
1166
1167 default:
1168 break;
1169 }
1170 }
1171
1172 TotalSize += (HeaderSize + FDCount * sizeof (UINT16));
1173 TotalSize += (HeaderSize + HDCount * sizeof (UINT16));
1174 TotalSize += (HeaderSize + CDCount * sizeof (UINT16));
1175 TotalSize += (HeaderSize + NETCount * sizeof (UINT16));
1176 TotalSize += (HeaderSize + BEVCount * sizeof (UINT16));
1177
1178 NewDevOrder = AllocateZeroPool (TotalSize);
1179 if (NULL == NewDevOrder) {
1180 return EFI_OUT_OF_RESOURCES;
1181 }
1182
1183
1184
1185 //
1186 // copy FD
1187 //
1188 Ptr = DevOrder;
1189 NewPtr = NewDevOrder;
1190 NewPtr->BbsType = Ptr->BbsType;
1191 NewPtr->Length = (UINT16) (sizeof (UINT16) + FDCount * sizeof (UINT16));
1192 for (Index = 0; Index < Ptr->Length / sizeof (UINT16) - 1; Index++) {
1193 if (LocalBbsTable[Ptr->Data[Index] & 0xFF].BootPriority == BBS_IGNORE_ENTRY ||
1194 LocalBbsTable[Ptr->Data[Index] & 0xFF].BootPriority == BBS_DO_NOT_BOOT_FROM ||
1195 LocalBbsTable[Ptr->Data[Index] & 0xFF].DeviceType != BBS_FLOPPY
1196 ) {
1197 continue;
1198 }
1199
1200 NewPtr->Data[FDIndex] = Ptr->Data[Index];
1201 FDIndex++;
1202 }
1203 NewFDPtr = NewPtr->Data;
1204
1205 //
1206 // copy HD
1207 //
1208 Ptr = (LEGACY_DEV_ORDER_ENTRY *) (&Ptr->Data[Ptr->Length / sizeof (UINT16) - 1]);
1209 NewPtr = (LEGACY_DEV_ORDER_ENTRY *) (&NewPtr->Data[NewPtr->Length / sizeof (UINT16) -1]);
1210 NewPtr->BbsType = Ptr->BbsType;
1211 NewPtr->Length = (UINT16) (sizeof (UINT16) + HDCount * sizeof (UINT16));
1212 for (Index = 0; Index < Ptr->Length / sizeof (UINT16) - 1; Index++) {
1213 if (LocalBbsTable[Ptr->Data[Index] & 0xFF].BootPriority == BBS_IGNORE_ENTRY ||
1214 LocalBbsTable[Ptr->Data[Index] & 0xFF].BootPriority == BBS_DO_NOT_BOOT_FROM ||
1215 LocalBbsTable[Ptr->Data[Index] & 0xFF].BootPriority == BBS_LOWEST_PRIORITY ||
1216 LocalBbsTable[Ptr->Data[Index] & 0xFF].DeviceType != BBS_HARDDISK
1217 ) {
1218 continue;
1219 }
1220
1221 NewPtr->Data[HDIndex] = Ptr->Data[Index];
1222 HDIndex++;
1223 }
1224 NewHDPtr = NewPtr->Data;
1225
1226 //
1227 // copy CD
1228 //
1229 Ptr = (LEGACY_DEV_ORDER_ENTRY *) (&Ptr->Data[Ptr->Length / sizeof (UINT16) - 1]);
1230 NewPtr = (LEGACY_DEV_ORDER_ENTRY *) (&NewPtr->Data[NewPtr->Length / sizeof (UINT16) -1]);
1231 NewPtr->BbsType = Ptr->BbsType;
1232 NewPtr->Length = (UINT16) (sizeof (UINT16) + CDCount * sizeof (UINT16));
1233 for (Index = 0; Index < Ptr->Length / sizeof (UINT16) - 1; Index++) {
1234 if (LocalBbsTable[Ptr->Data[Index] & 0xFF].BootPriority == BBS_IGNORE_ENTRY ||
1235 LocalBbsTable[Ptr->Data[Index] & 0xFF].BootPriority == BBS_DO_NOT_BOOT_FROM ||
1236 LocalBbsTable[Ptr->Data[Index] & 0xFF].BootPriority == BBS_LOWEST_PRIORITY ||
1237 LocalBbsTable[Ptr->Data[Index] & 0xFF].DeviceType != BBS_CDROM
1238 ) {
1239 continue;
1240 }
1241
1242 NewPtr->Data[CDIndex] = Ptr->Data[Index];
1243 CDIndex++;
1244 }
1245 NewCDPtr = NewPtr->Data;
1246
1247 //
1248 // copy NET
1249 //
1250 Ptr = (LEGACY_DEV_ORDER_ENTRY *) (&Ptr->Data[Ptr->Length / sizeof (UINT16) - 1]);
1251 NewPtr = (LEGACY_DEV_ORDER_ENTRY *) (&NewPtr->Data[NewPtr->Length / sizeof (UINT16) -1]);
1252 NewPtr->BbsType = Ptr->BbsType;
1253 NewPtr->Length = (UINT16) (sizeof (UINT16) + NETCount * sizeof (UINT16));
1254 for (Index = 0; Index < Ptr->Length / sizeof (UINT16) - 1; Index++) {
1255 if (LocalBbsTable[Ptr->Data[Index] & 0xFF].BootPriority == BBS_IGNORE_ENTRY ||
1256 LocalBbsTable[Ptr->Data[Index] & 0xFF].BootPriority == BBS_DO_NOT_BOOT_FROM ||
1257 LocalBbsTable[Ptr->Data[Index] & 0xFF].BootPriority == BBS_LOWEST_PRIORITY ||
1258 LocalBbsTable[Ptr->Data[Index] & 0xFF].DeviceType != BBS_EMBED_NETWORK
1259 ) {
1260 continue;
1261 }
1262
1263 NewPtr->Data[NETIndex] = Ptr->Data[Index];
1264 NETIndex++;
1265 }
1266 NewNETPtr = NewPtr->Data;
1267
1268 //
1269 // copy BEV
1270 //
1271 Ptr = (LEGACY_DEV_ORDER_ENTRY *) (&Ptr->Data[Ptr->Length / sizeof (UINT16) - 1]);
1272 NewPtr = (LEGACY_DEV_ORDER_ENTRY *) (&NewPtr->Data[NewPtr->Length / sizeof (UINT16) -1]);
1273 NewPtr->BbsType = Ptr->BbsType;
1274 NewPtr->Length = (UINT16) (sizeof (UINT16) + BEVCount * sizeof (UINT16));
1275 for (Index = 0; Index < Ptr->Length / sizeof (UINT16) - 1; Index++) {
1276 if (LocalBbsTable[Ptr->Data[Index] & 0xFF].BootPriority == BBS_IGNORE_ENTRY ||
1277 LocalBbsTable[Ptr->Data[Index] & 0xFF].BootPriority == BBS_DO_NOT_BOOT_FROM ||
1278 LocalBbsTable[Ptr->Data[Index] & 0xFF].BootPriority == BBS_LOWEST_PRIORITY ||
1279 LocalBbsTable[Ptr->Data[Index] & 0xFF].DeviceType != BBS_BEV_DEVICE
1280 ) {
1281 continue;
1282 }
1283
1284 NewPtr->Data[BEVIndex] = Ptr->Data[Index];
1285 BEVIndex++;
1286 }
1287 NewBEVPtr = NewPtr->Data;
1288
1289 for (Index = 0; Index < BbsCount; Index++) {
1290 if ((LocalBbsTable[Index].BootPriority == BBS_IGNORE_ENTRY) ||
1291 (LocalBbsTable[Index].BootPriority == BBS_DO_NOT_BOOT_FROM)
1292 ) {
1293 continue;
1294 }
1295
1296 switch (LocalBbsTable[Index].DeviceType) {
1297 case BBS_FLOPPY:
1298 Idx = &FDIndex;
1299 NewDevPtr = NewFDPtr;
1300 break;
1301
1302 case BBS_HARDDISK:
1303 Idx = &HDIndex;
1304 NewDevPtr = NewHDPtr;
1305 break;
1306
1307 case BBS_CDROM:
1308 Idx = &CDIndex;
1309 NewDevPtr = NewCDPtr;
1310 break;
1311
1312 case BBS_EMBED_NETWORK:
1313 Idx = &NETIndex;
1314 NewDevPtr = NewNETPtr;
1315 break;
1316
1317 case BBS_BEV_DEVICE:
1318 Idx = &BEVIndex;
1319 NewDevPtr = NewBEVPtr;
1320 break;
1321
1322 default:
1323 Idx = NULL;
1324 break;
1325 }
1326 //
1327 // at this point we have copied those valid indexes to new buffer
1328 // and we should check if there is any new appeared boot device
1329 //
1330 if (Idx != NULL) {
1331 for (Index2 = 0; Index2 < *Idx; Index2++) {
1332 if ((NewDevPtr[Index2] & 0xFF) == (UINT16) Index) {
1333 break;
1334 }
1335 }
1336
1337 if (Index2 == *Idx) {
1338 //
1339 // Index2 == *Idx means we didn't find Index
1340 // so Index is a new appeared device's index in BBS table
1341 // insert it before disabled indexes.
1342 //
1343 for (Index2 = 0; Index2 < *Idx; Index2++) {
1344 if ((NewDevPtr[Index2] & 0xFF00) == 0xFF00) {
1345 break;
1346 }
1347 }
1348 CopyMem (&NewDevPtr[Index2 + 1], &NewDevPtr[Index2], (*Idx - Index2) * sizeof (UINT16));
1349 NewDevPtr[Index2] = (UINT16) (Index & 0xFF);
1350 (*Idx)++;
1351 }
1352 }
1353 }
1354
1355 FreePool (DevOrder);
1356
1357 Status = gRT->SetVariable (
1358 VAR_LEGACY_DEV_ORDER,
1359 &gEfiLegacyDevOrderVariableGuid,
1360 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
1361 TotalSize,
1362 NewDevOrder
1363 );
1364 FreePool (NewDevOrder);
1365
1366 return Status;
1367 }
1368
1369 /**
1370 Set Boot Priority for specified device type.
1371
1372 @param DeviceType The device type.
1373 @param BbsIndex The BBS index to set the highest priority. Ignore when -1.
1374 @param LocalBbsTable The BBS table.
1375 @param Priority The prority table.
1376
1377 @retval EFI_SUCCESS The function completes successfully.
1378 @retval EFI_NOT_FOUND Failed to find device.
1379 @retval EFI_OUT_OF_RESOURCES Failed to get the efi variable of device order.
1380
1381 **/
1382 EFI_STATUS
1383 BdsSetBootPriority4SameTypeDev (
1384 IN UINT16 DeviceType,
1385 IN UINTN BbsIndex,
1386 IN OUT BBS_TABLE *LocalBbsTable,
1387 IN OUT UINT16 *Priority
1388 )
1389 {
1390 LEGACY_DEV_ORDER_ENTRY *DevOrder;
1391 LEGACY_DEV_ORDER_ENTRY *DevOrderPtr;
1392 UINTN DevOrderSize;
1393 UINTN Index;
1394
1395 DevOrder = BdsLibGetVariableAndSize (
1396 VAR_LEGACY_DEV_ORDER,
1397 &gEfiLegacyDevOrderVariableGuid,
1398 &DevOrderSize
1399 );
1400 if (NULL == DevOrder) {
1401 return EFI_OUT_OF_RESOURCES;
1402 }
1403
1404 DevOrderPtr = DevOrder;
1405 while ((UINT8 *) DevOrderPtr < (UINT8 *) DevOrder + DevOrderSize) {
1406 if (DevOrderPtr->BbsType == DeviceType) {
1407 break;
1408 }
1409
1410 DevOrderPtr = (LEGACY_DEV_ORDER_ENTRY *) ((UINT8 *) DevOrderPtr + sizeof (BBS_TYPE) + DevOrderPtr->Length);
1411 }
1412
1413 if ((UINT8 *) DevOrderPtr >= (UINT8 *) DevOrder + DevOrderSize) {
1414 FreePool (DevOrder);
1415 return EFI_NOT_FOUND;
1416 }
1417
1418 if (BbsIndex != (UINTN) -1) {
1419 LocalBbsTable[BbsIndex].BootPriority = *Priority;
1420 (*Priority)++;
1421 }
1422 //
1423 // If the high byte of the DevIndex is 0xFF, it indicates that this device has been disabled.
1424 //
1425 for (Index = 0; Index < DevOrderPtr->Length / sizeof (UINT16) - 1; Index++) {
1426 if ((DevOrderPtr->Data[Index] & 0xFF00) == 0xFF00) {
1427 //
1428 // LocalBbsTable[DevIndex[Index] & 0xFF].BootPriority = BBS_DISABLED_ENTRY;
1429 //
1430 } else if (DevOrderPtr->Data[Index] != BbsIndex) {
1431 LocalBbsTable[DevOrderPtr->Data[Index]].BootPriority = *Priority;
1432 (*Priority)++;
1433 }
1434 }
1435
1436 FreePool (DevOrder);
1437 return EFI_SUCCESS;
1438 }
1439
1440 /**
1441 Print the BBS Table.
1442
1443 @param LocalBbsTable The BBS table.
1444 @param BbsCount The count of entry in BBS table.
1445 **/
1446 VOID
1447 PrintBbsTable (
1448 IN BBS_TABLE *LocalBbsTable,
1449 IN UINT16 BbsCount
1450 )
1451 {
1452 UINT16 Idx;
1453
1454 DEBUG ((DEBUG_ERROR, "\n"));
1455 DEBUG ((DEBUG_ERROR, " NO Prio bb/dd/ff cl/sc Type Stat segm:offs\n"));
1456 DEBUG ((DEBUG_ERROR, "=============================================\n"));
1457 for (Idx = 0; Idx < BbsCount; Idx++) {
1458 if ((LocalBbsTable[Idx].BootPriority == BBS_IGNORE_ENTRY) ||
1459 (LocalBbsTable[Idx].BootPriority == BBS_DO_NOT_BOOT_FROM) ||
1460 (LocalBbsTable[Idx].BootPriority == BBS_LOWEST_PRIORITY)
1461 ) {
1462 continue;
1463 }
1464
1465 DEBUG (
1466 (DEBUG_ERROR,
1467 " %02x: %04x %02x/%02x/%02x %02x/%02x %04x %04x %04x:%04x\n",
1468 (UINTN) Idx,
1469 (UINTN) LocalBbsTable[Idx].BootPriority,
1470 (UINTN) LocalBbsTable[Idx].Bus,
1471 (UINTN) LocalBbsTable[Idx].Device,
1472 (UINTN) LocalBbsTable[Idx].Function,
1473 (UINTN) LocalBbsTable[Idx].Class,
1474 (UINTN) LocalBbsTable[Idx].SubClass,
1475 (UINTN) LocalBbsTable[Idx].DeviceType,
1476 (UINTN) * (UINT16 *) &LocalBbsTable[Idx].StatusFlags,
1477 (UINTN) LocalBbsTable[Idx].BootHandlerSegment,
1478 (UINTN) LocalBbsTable[Idx].BootHandlerOffset,
1479 (UINTN) ((LocalBbsTable[Idx].MfgStringSegment << 4) + LocalBbsTable[Idx].MfgStringOffset),
1480 (UINTN) ((LocalBbsTable[Idx].DescStringSegment << 4) + LocalBbsTable[Idx].DescStringOffset))
1481 );
1482 }
1483
1484 DEBUG ((DEBUG_ERROR, "\n"));
1485 }
1486
1487 /**
1488 Set the boot priority for BBS entries based on boot option entry and boot order.
1489
1490 @param Entry The boot option is to be checked for refresh BBS table.
1491
1492 @retval EFI_SUCCESS The boot priority for BBS entries is refreshed successfully.
1493 @retval EFI_NOT_FOUND BBS entries can't be found.
1494 @retval EFI_OUT_OF_RESOURCES Failed to get the legacy device boot order.
1495 **/
1496 EFI_STATUS
1497 EFIAPI
1498 BdsRefreshBbsTableForBoot (
1499 IN BDS_COMMON_OPTION *Entry
1500 )
1501 {
1502 EFI_STATUS Status;
1503 UINT16 BbsIndex;
1504 UINT16 HddCount;
1505 UINT16 BbsCount;
1506 HDD_INFO *LocalHddInfo;
1507 BBS_TABLE *LocalBbsTable;
1508 UINT16 DevType;
1509 EFI_LEGACY_BIOS_PROTOCOL *LegacyBios;
1510 UINTN Index;
1511 UINT16 Priority;
1512 UINT16 *BootOrder;
1513 UINTN BootOrderSize;
1514 UINT8 *BootOptionVar;
1515 UINTN BootOptionSize;
1516 CHAR16 BootOption[9];
1517 UINT8 *Ptr;
1518 UINT16 DevPathLen;
1519 EFI_DEVICE_PATH_PROTOCOL *DevPath;
1520 UINT16 *DeviceType;
1521 UINTN DeviceTypeCount;
1522 UINTN DeviceTypeIndex;
1523
1524 HddCount = 0;
1525 BbsCount = 0;
1526 LocalHddInfo = NULL;
1527 LocalBbsTable = NULL;
1528 DevType = BBS_UNKNOWN;
1529
1530 Status = gBS->LocateProtocol (&gEfiLegacyBiosProtocolGuid, NULL, (VOID **) &LegacyBios);
1531 if (EFI_ERROR (Status)) {
1532 return Status;
1533 }
1534
1535 LegacyBios->GetBbsInfo (
1536 LegacyBios,
1537 &HddCount,
1538 &LocalHddInfo,
1539 &BbsCount,
1540 &LocalBbsTable
1541 );
1542 //
1543 // First, set all the present devices' boot priority to BBS_UNPRIORITIZED_ENTRY
1544 // We will set them according to the settings setup by user
1545 //
1546 for (Index = 0; Index < BbsCount; Index++) {
1547 if (!((BBS_IGNORE_ENTRY == LocalBbsTable[Index].BootPriority) ||
1548 (BBS_DO_NOT_BOOT_FROM == LocalBbsTable[Index].BootPriority) ||
1549 (BBS_LOWEST_PRIORITY == LocalBbsTable[Index].BootPriority))) {
1550 LocalBbsTable[Index].BootPriority = BBS_UNPRIORITIZED_ENTRY;
1551 }
1552 }
1553 //
1554 // boot priority always starts at 0
1555 //
1556 Priority = 0;
1557 if (Entry->LoadOptionsSize == sizeof (BBS_TABLE) + sizeof (UINT16)) {
1558 //
1559 // If Entry stands for a legacy boot option, we prioritize the devices with the same type first.
1560 //
1561 DevType = ((BBS_TABLE *) Entry->LoadOptions)->DeviceType;
1562 BbsIndex = *(UINT16 *) ((BBS_TABLE *) Entry->LoadOptions + 1);
1563 Status = BdsSetBootPriority4SameTypeDev (
1564 DevType,
1565 BbsIndex,
1566 LocalBbsTable,
1567 &Priority
1568 );
1569 if (EFI_ERROR (Status)) {
1570 return Status;
1571 }
1572 }
1573 //
1574 // we have to set the boot priority for other BBS entries with different device types
1575 //
1576 BootOrder = BdsLibGetVariableAndSize (
1577 L"BootOrder",
1578 &gEfiGlobalVariableGuid,
1579 &BootOrderSize
1580 );
1581 DeviceType = AllocatePool (BootOrderSize + sizeof (UINT16));
1582 ASSERT (DeviceType != NULL);
1583
1584 DeviceType[0] = DevType;
1585 DeviceTypeCount = 1;
1586 for (Index = 0; ((BootOrder != NULL) && (Index < BootOrderSize / sizeof (UINT16))); Index++) {
1587 UnicodeSPrint (BootOption, sizeof (BootOption), L"Boot%04x", BootOrder[Index]);
1588 BootOptionVar = BdsLibGetVariableAndSize (
1589 BootOption,
1590 &gEfiGlobalVariableGuid,
1591 &BootOptionSize
1592 );
1593 if (NULL == BootOptionVar) {
1594 continue;
1595 }
1596
1597 Ptr = BootOptionVar;
1598
1599 Ptr += sizeof (UINT32);
1600 DevPathLen = *(UINT16 *) Ptr;
1601 Ptr += sizeof (UINT16);
1602 Ptr += StrSize ((UINT16 *) Ptr);
1603 DevPath = (EFI_DEVICE_PATH_PROTOCOL *) Ptr;
1604 if (BBS_DEVICE_PATH != DevPath->Type || BBS_BBS_DP != DevPath->SubType) {
1605 FreePool (BootOptionVar);
1606 continue;
1607 }
1608
1609 Ptr += DevPathLen;
1610 DevType = ((BBS_TABLE *) Ptr)->DeviceType;
1611 for (DeviceTypeIndex = 0; DeviceTypeIndex < DeviceTypeCount; DeviceTypeIndex++) {
1612 if (DeviceType[DeviceTypeIndex] == DevType) {
1613 break;
1614 }
1615 }
1616 if (DeviceTypeIndex < DeviceTypeCount) {
1617 //
1618 // We don't want to process twice for a device type
1619 //
1620 FreePool (BootOptionVar);
1621 continue;
1622 }
1623
1624 DeviceType[DeviceTypeCount] = DevType;
1625 DeviceTypeCount++;
1626
1627 Status = BdsSetBootPriority4SameTypeDev (
1628 DevType,
1629 (UINTN) -1,
1630 LocalBbsTable,
1631 &Priority
1632 );
1633 FreePool (BootOptionVar);
1634 if (EFI_ERROR (Status)) {
1635 break;
1636 }
1637 }
1638
1639 if (BootOrder != NULL) {
1640 FreePool (BootOrder);
1641 }
1642
1643 DEBUG_CODE_BEGIN();
1644 PrintBbsTable (LocalBbsTable, BbsCount);
1645 DEBUG_CODE_END();
1646
1647 return Status;
1648 }
1649
1650 /**
1651 Boot the legacy system with the boot option
1652
1653 @param Option The legacy boot option which have BBS device path
1654
1655 @retval EFI_UNSUPPORTED There is no legacybios protocol, do not support
1656 legacy boot.
1657 @retval EFI_STATUS Return the status of LegacyBios->LegacyBoot ().
1658
1659 **/
1660 EFI_STATUS
1661 BdsLibDoLegacyBoot (
1662 IN BDS_COMMON_OPTION *Option
1663 )
1664 {
1665 EFI_STATUS Status;
1666 EFI_LEGACY_BIOS_PROTOCOL *LegacyBios;
1667 EFI_EVENT LegacyBootEvent;
1668
1669 Status = gBS->LocateProtocol (&gEfiLegacyBiosProtocolGuid, NULL, (VOID **) &LegacyBios);
1670 if (EFI_ERROR (Status)) {
1671 //
1672 // If no LegacyBios protocol we do not support legacy boot
1673 //
1674 return EFI_UNSUPPORTED;
1675 }
1676 //
1677 // Notes: if we separate the int 19, then we don't need to refresh BBS
1678 //
1679 BdsRefreshBbsTableForBoot (Option);
1680
1681 //
1682 // Write boot to OS performance data for legacy boot.
1683 //
1684 PERF_CODE (
1685 //
1686 // Create an event to be signalled when Legacy Boot occurs to write performance data.
1687 //
1688 Status = EfiCreateEventLegacyBootEx(
1689 TPL_NOTIFY,
1690 WriteBootToOsPerformanceData,
1691 NULL,
1692 &LegacyBootEvent
1693 );
1694 ASSERT_EFI_ERROR (Status);
1695 );
1696
1697 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Legacy Boot: %S\n", Option->Description));
1698 return LegacyBios->LegacyBoot (
1699 LegacyBios,
1700 (BBS_BBS_DEVICE_PATH *) Option->DevicePath,
1701 Option->LoadOptionsSize,
1702 Option->LoadOptions
1703 );
1704 }
1705
1706 /**
1707 Internal function to check if the input boot option is a valid EFI NV Boot####.
1708
1709 @param OptionToCheck Boot option to be checked.
1710
1711 @retval TRUE This boot option matches a valid EFI NV Boot####.
1712 @retval FALSE If not.
1713
1714 **/
1715 BOOLEAN
1716 IsBootOptionValidNVVarialbe (
1717 IN BDS_COMMON_OPTION *OptionToCheck
1718 )
1719 {
1720 LIST_ENTRY TempList;
1721 BDS_COMMON_OPTION *BootOption;
1722 BOOLEAN Valid;
1723 CHAR16 OptionName[20];
1724
1725 Valid = FALSE;
1726
1727 InitializeListHead (&TempList);
1728 UnicodeSPrint (OptionName, sizeof (OptionName), L"Boot%04x", OptionToCheck->BootCurrent);
1729
1730 BootOption = BdsLibVariableToOption (&TempList, OptionName);
1731 if (BootOption == NULL) {
1732 return FALSE;
1733 }
1734
1735 //
1736 // If the Boot Option Number and Device Path matches, OptionToCheck matches a
1737 // valid EFI NV Boot####.
1738 //
1739 if ((OptionToCheck->BootCurrent == BootOption->BootCurrent) &&
1740 (CompareMem (OptionToCheck->DevicePath, BootOption->DevicePath, GetDevicePathSize (OptionToCheck->DevicePath)) == 0))
1741 {
1742 Valid = TRUE;
1743 }
1744
1745 FreePool (BootOption);
1746
1747 return Valid;
1748 }
1749
1750 /**
1751 Check whether a USB device match the specified USB Class device path. This
1752 function follows "Load Option Processing" behavior in UEFI specification.
1753
1754 @param UsbIo USB I/O protocol associated with the USB device.
1755 @param UsbClass The USB Class device path to match.
1756
1757 @retval TRUE The USB device match the USB Class device path.
1758 @retval FALSE The USB device does not match the USB Class device path.
1759
1760 **/
1761 BOOLEAN
1762 BdsMatchUsbClass (
1763 IN EFI_USB_IO_PROTOCOL *UsbIo,
1764 IN USB_CLASS_DEVICE_PATH *UsbClass
1765 )
1766 {
1767 EFI_STATUS Status;
1768 EFI_USB_DEVICE_DESCRIPTOR DevDesc;
1769 EFI_USB_INTERFACE_DESCRIPTOR IfDesc;
1770 UINT8 DeviceClass;
1771 UINT8 DeviceSubClass;
1772 UINT8 DeviceProtocol;
1773
1774 if ((DevicePathType (UsbClass) != MESSAGING_DEVICE_PATH) ||
1775 (DevicePathSubType (UsbClass) != MSG_USB_CLASS_DP)){
1776 return FALSE;
1777 }
1778
1779 //
1780 // Check Vendor Id and Product Id.
1781 //
1782 Status = UsbIo->UsbGetDeviceDescriptor (UsbIo, &DevDesc);
1783 if (EFI_ERROR (Status)) {
1784 return FALSE;
1785 }
1786
1787 if ((UsbClass->VendorId != 0xffff) &&
1788 (UsbClass->VendorId != DevDesc.IdVendor)) {
1789 return FALSE;
1790 }
1791
1792 if ((UsbClass->ProductId != 0xffff) &&
1793 (UsbClass->ProductId != DevDesc.IdProduct)) {
1794 return FALSE;
1795 }
1796
1797 DeviceClass = DevDesc.DeviceClass;
1798 DeviceSubClass = DevDesc.DeviceSubClass;
1799 DeviceProtocol = DevDesc.DeviceProtocol;
1800 if (DeviceClass == 0) {
1801 //
1802 // If Class in Device Descriptor is set to 0, use the Class, SubClass and
1803 // Protocol in Interface Descriptor instead.
1804 //
1805 Status = UsbIo->UsbGetInterfaceDescriptor (UsbIo, &IfDesc);
1806 if (EFI_ERROR (Status)) {
1807 return FALSE;
1808 }
1809
1810 DeviceClass = IfDesc.InterfaceClass;
1811 DeviceSubClass = IfDesc.InterfaceSubClass;
1812 DeviceProtocol = IfDesc.InterfaceProtocol;
1813 }
1814
1815 //
1816 // Check Class, SubClass and Protocol.
1817 //
1818 if ((UsbClass->DeviceClass != 0xff) &&
1819 (UsbClass->DeviceClass != DeviceClass)) {
1820 return FALSE;
1821 }
1822
1823 if ((UsbClass->DeviceSubClass != 0xff) &&
1824 (UsbClass->DeviceSubClass != DeviceSubClass)) {
1825 return FALSE;
1826 }
1827
1828 if ((UsbClass->DeviceProtocol != 0xff) &&
1829 (UsbClass->DeviceProtocol != DeviceProtocol)) {
1830 return FALSE;
1831 }
1832
1833 return TRUE;
1834 }
1835
1836 /**
1837 Check whether a USB device match the specified USB WWID device path. This
1838 function follows "Load Option Processing" behavior in UEFI specification.
1839
1840 @param UsbIo USB I/O protocol associated with the USB device.
1841 @param UsbWwid The USB WWID device path to match.
1842
1843 @retval TRUE The USB device match the USB WWID device path.
1844 @retval FALSE The USB device does not match the USB WWID device path.
1845
1846 **/
1847 BOOLEAN
1848 BdsMatchUsbWwid (
1849 IN EFI_USB_IO_PROTOCOL *UsbIo,
1850 IN USB_WWID_DEVICE_PATH *UsbWwid
1851 )
1852 {
1853 EFI_STATUS Status;
1854 EFI_USB_DEVICE_DESCRIPTOR DevDesc;
1855 EFI_USB_INTERFACE_DESCRIPTOR IfDesc;
1856 UINT16 *LangIdTable;
1857 UINT16 TableSize;
1858 UINT16 Index;
1859 CHAR16 *CompareStr;
1860 UINTN CompareLen;
1861 CHAR16 *SerialNumberStr;
1862 UINTN Length;
1863
1864 if ((DevicePathType (UsbWwid) != MESSAGING_DEVICE_PATH) ||
1865 (DevicePathSubType (UsbWwid) != MSG_USB_WWID_DP )){
1866 return FALSE;
1867 }
1868
1869 //
1870 // Check Vendor Id and Product Id.
1871 //
1872 Status = UsbIo->UsbGetDeviceDescriptor (UsbIo, &DevDesc);
1873 if (EFI_ERROR (Status)) {
1874 return FALSE;
1875 }
1876 if ((DevDesc.IdVendor != UsbWwid->VendorId) ||
1877 (DevDesc.IdProduct != UsbWwid->ProductId)) {
1878 return FALSE;
1879 }
1880
1881 //
1882 // Check Interface Number.
1883 //
1884 Status = UsbIo->UsbGetInterfaceDescriptor (UsbIo, &IfDesc);
1885 if (EFI_ERROR (Status)) {
1886 return FALSE;
1887 }
1888 if (IfDesc.InterfaceNumber != UsbWwid->InterfaceNumber) {
1889 return FALSE;
1890 }
1891
1892 //
1893 // Check Serial Number.
1894 //
1895 if (DevDesc.StrSerialNumber == 0) {
1896 return FALSE;
1897 }
1898
1899 //
1900 // Get all supported languages.
1901 //
1902 TableSize = 0;
1903 LangIdTable = NULL;
1904 Status = UsbIo->UsbGetSupportedLanguages (UsbIo, &LangIdTable, &TableSize);
1905 if (EFI_ERROR (Status) || (TableSize == 0) || (LangIdTable == NULL)) {
1906 return FALSE;
1907 }
1908
1909 //
1910 // Serial number in USB WWID device path is the last 64-or-less UTF-16 characters.
1911 //
1912 CompareStr = (CHAR16 *) (UINTN) (UsbWwid + 1);
1913 CompareLen = (DevicePathNodeLength (UsbWwid) - sizeof (USB_WWID_DEVICE_PATH)) / sizeof (CHAR16);
1914 if (CompareStr[CompareLen - 1] == L'\0') {
1915 CompareLen--;
1916 }
1917
1918 //
1919 // Compare serial number in each supported language.
1920 //
1921 for (Index = 0; Index < TableSize / sizeof (UINT16); Index++) {
1922 SerialNumberStr = NULL;
1923 Status = UsbIo->UsbGetStringDescriptor (
1924 UsbIo,
1925 LangIdTable[Index],
1926 DevDesc.StrSerialNumber,
1927 &SerialNumberStr
1928 );
1929 if (EFI_ERROR (Status) || (SerialNumberStr == NULL)) {
1930 continue;
1931 }
1932
1933 Length = StrLen (SerialNumberStr);
1934 if ((Length >= CompareLen) &&
1935 (CompareMem (SerialNumberStr + Length - CompareLen, CompareStr, CompareLen * sizeof (CHAR16)) == 0)) {
1936 FreePool (SerialNumberStr);
1937 return TRUE;
1938 }
1939
1940 FreePool (SerialNumberStr);
1941 }
1942
1943 return FALSE;
1944 }
1945
1946 /**
1947 Find a USB device path which match the specified short-form device path start
1948 with USB Class or USB WWID device path and load the boot file then return the
1949 image handle. If ParentDevicePath is NULL, this function will search in all USB
1950 devices of the platform. If ParentDevicePath is not NULL,this function will only
1951 search in its child devices.
1952
1953 @param ParentDevicePath The device path of the parent.
1954 @param ShortFormDevicePath The USB Class or USB WWID device path to match.
1955
1956 @return The image Handle if find load file from specified short-form device path
1957 or NULL if not found.
1958
1959 **/
1960 EFI_HANDLE *
1961 BdsFindUsbDevice (
1962 IN EFI_DEVICE_PATH_PROTOCOL *ParentDevicePath,
1963 IN EFI_DEVICE_PATH_PROTOCOL *ShortFormDevicePath
1964 )
1965 {
1966 EFI_STATUS Status;
1967 UINTN UsbIoHandleCount;
1968 EFI_HANDLE *UsbIoHandleBuffer;
1969 EFI_DEVICE_PATH_PROTOCOL *UsbIoDevicePath;
1970 EFI_USB_IO_PROTOCOL *UsbIo;
1971 UINTN Index;
1972 UINTN ParentSize;
1973 UINTN Size;
1974 EFI_HANDLE ImageHandle;
1975 EFI_HANDLE Handle;
1976 EFI_DEVICE_PATH_PROTOCOL *FullDevicePath;
1977 EFI_DEVICE_PATH_PROTOCOL *NextDevicePath;
1978
1979 FullDevicePath = NULL;
1980 ImageHandle = NULL;
1981
1982 //
1983 // Get all UsbIo Handles.
1984 //
1985 UsbIoHandleCount = 0;
1986 UsbIoHandleBuffer = NULL;
1987 Status = gBS->LocateHandleBuffer (
1988 ByProtocol,
1989 &gEfiUsbIoProtocolGuid,
1990 NULL,
1991 &UsbIoHandleCount,
1992 &UsbIoHandleBuffer
1993 );
1994 if (EFI_ERROR (Status) || (UsbIoHandleCount == 0) || (UsbIoHandleBuffer == NULL)) {
1995 return NULL;
1996 }
1997
1998 ParentSize = (ParentDevicePath == NULL) ? 0 : GetDevicePathSize (ParentDevicePath);
1999 for (Index = 0; Index < UsbIoHandleCount; Index++) {
2000 //
2001 // Get the Usb IO interface.
2002 //
2003 Status = gBS->HandleProtocol(
2004 UsbIoHandleBuffer[Index],
2005 &gEfiUsbIoProtocolGuid,
2006 (VOID **) &UsbIo
2007 );
2008 if (EFI_ERROR (Status)) {
2009 continue;
2010 }
2011
2012 UsbIoDevicePath = DevicePathFromHandle (UsbIoHandleBuffer[Index]);
2013 if (UsbIoDevicePath == NULL) {
2014 continue;
2015 }
2016
2017 if (ParentDevicePath != NULL) {
2018 //
2019 // Compare starting part of UsbIoHandle's device path with ParentDevicePath.
2020 //
2021 Size = GetDevicePathSize (UsbIoDevicePath);
2022 if ((Size < ParentSize) ||
2023 (CompareMem (UsbIoDevicePath, ParentDevicePath, ParentSize - END_DEVICE_PATH_LENGTH) != 0)) {
2024 continue;
2025 }
2026 }
2027
2028 if (BdsMatchUsbClass (UsbIo, (USB_CLASS_DEVICE_PATH *) ShortFormDevicePath) ||
2029 BdsMatchUsbWwid (UsbIo, (USB_WWID_DEVICE_PATH *) ShortFormDevicePath)) {
2030 //
2031 // Try to find if there is the boot file in this DevicePath
2032 //
2033 NextDevicePath = NextDevicePathNode (ShortFormDevicePath);
2034 if (!IsDevicePathEnd (NextDevicePath)) {
2035 FullDevicePath = AppendDevicePath (UsbIoDevicePath, NextDevicePath);
2036 //
2037 // Connect the full device path, so that Simple File System protocol
2038 // could be installed for this USB device.
2039 //
2040 BdsLibConnectDevicePath (FullDevicePath);
2041 REPORT_STATUS_CODE (EFI_PROGRESS_CODE, PcdGet32 (PcdProgressCodeOsLoaderLoad));
2042 Status = gBS->LoadImage (
2043 TRUE,
2044 gImageHandle,
2045 FullDevicePath,
2046 NULL,
2047 0,
2048 &ImageHandle
2049 );
2050 FreePool (FullDevicePath);
2051 } else {
2052 FullDevicePath = UsbIoDevicePath;
2053 Status = EFI_NOT_FOUND;
2054 }
2055
2056 //
2057 // If we didn't find an image directly, we need to try as if it is a removable device boot option
2058 // and load the image according to the default boot behavior for removable device.
2059 //
2060 if (EFI_ERROR (Status)) {
2061 //
2062 // check if there is a bootable removable media could be found in this device path ,
2063 // and get the bootable media handle
2064 //
2065 Handle = BdsLibGetBootableHandle(UsbIoDevicePath);
2066 if (Handle == NULL) {
2067 continue;
2068 }
2069 //
2070 // Load the default boot file \EFI\BOOT\boot{machinename}.EFI from removable Media
2071 // machinename is ia32, ia64, x64, ...
2072 //
2073 FullDevicePath = FileDevicePath (Handle, EFI_REMOVABLE_MEDIA_FILE_NAME);
2074 if (FullDevicePath != NULL) {
2075 REPORT_STATUS_CODE (EFI_PROGRESS_CODE, PcdGet32 (PcdProgressCodeOsLoaderLoad));
2076 Status = gBS->LoadImage (
2077 TRUE,
2078 gImageHandle,
2079 FullDevicePath,
2080 NULL,
2081 0,
2082 &ImageHandle
2083 );
2084 if (EFI_ERROR (Status)) {
2085 //
2086 // The DevicePath failed, and it's not a valid
2087 // removable media device.
2088 //
2089 continue;
2090 }
2091 } else {
2092 continue;
2093 }
2094 }
2095 break;
2096 }
2097 }
2098
2099 FreePool (UsbIoHandleBuffer);
2100 return ImageHandle;
2101 }
2102
2103 /**
2104 Expand USB Class or USB WWID device path node to be full device path of a USB
2105 device in platform then load the boot file on this full device path and return the
2106 image handle.
2107
2108 This function support following 4 cases:
2109 1) Boot Option device path starts with a USB Class or USB WWID device path,
2110 and there is no Media FilePath device path in the end.
2111 In this case, it will follow Removable Media Boot Behavior.
2112 2) Boot Option device path starts with a USB Class or USB WWID device path,
2113 and ended with Media FilePath device path.
2114 3) Boot Option device path starts with a full device path to a USB Host Controller,
2115 contains a USB Class or USB WWID device path node, while not ended with Media
2116 FilePath device path. In this case, it will follow Removable Media Boot Behavior.
2117 4) Boot Option device path starts with a full device path to a USB Host Controller,
2118 contains a USB Class or USB WWID device path node, and ended with Media
2119 FilePath device path.
2120
2121 @param DevicePath The Boot Option device path.
2122
2123 @return The image handle of boot file, or NULL if there is no boot file found in
2124 the specified USB Class or USB WWID device path.
2125
2126 **/
2127 EFI_HANDLE *
2128 BdsExpandUsbShortFormDevicePath (
2129 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
2130 )
2131 {
2132 EFI_HANDLE *ImageHandle;
2133 EFI_DEVICE_PATH_PROTOCOL *TempDevicePath;
2134 EFI_DEVICE_PATH_PROTOCOL *ShortFormDevicePath;
2135
2136 //
2137 // Search for USB Class or USB WWID device path node.
2138 //
2139 ShortFormDevicePath = NULL;
2140 ImageHandle = NULL;
2141 TempDevicePath = DevicePath;
2142 while (!IsDevicePathEnd (TempDevicePath)) {
2143 if ((DevicePathType (TempDevicePath) == MESSAGING_DEVICE_PATH) &&
2144 ((DevicePathSubType (TempDevicePath) == MSG_USB_CLASS_DP) ||
2145 (DevicePathSubType (TempDevicePath) == MSG_USB_WWID_DP))) {
2146 ShortFormDevicePath = TempDevicePath;
2147 break;
2148 }
2149 TempDevicePath = NextDevicePathNode (TempDevicePath);
2150 }
2151
2152 if (ShortFormDevicePath == NULL) {
2153 //
2154 // No USB Class or USB WWID device path node found, do nothing.
2155 //
2156 return NULL;
2157 }
2158
2159 if (ShortFormDevicePath == DevicePath) {
2160 //
2161 // Boot Option device path starts with USB Class or USB WWID device path.
2162 //
2163 ImageHandle = BdsFindUsbDevice (NULL, ShortFormDevicePath);
2164 if (ImageHandle == NULL) {
2165 //
2166 // Failed to find a match in existing devices, connect the short form USB
2167 // device path and try again.
2168 //
2169 BdsLibConnectUsbDevByShortFormDP (0xff, ShortFormDevicePath);
2170 ImageHandle = BdsFindUsbDevice (NULL, ShortFormDevicePath);
2171 }
2172 } else {
2173 //
2174 // Boot Option device path contains USB Class or USB WWID device path node.
2175 //
2176
2177 //
2178 // Prepare the parent device path for search.
2179 //
2180 TempDevicePath = DuplicateDevicePath (DevicePath);
2181 ASSERT (TempDevicePath != NULL);
2182 SetDevicePathEndNode (((UINT8 *) TempDevicePath) + ((UINTN) ShortFormDevicePath - (UINTN) DevicePath));
2183
2184 //
2185 // The USB Host Controller device path is already in Boot Option device path
2186 // and USB Bus driver already support RemainingDevicePath starts with USB
2187 // Class or USB WWID device path, so just search in existing USB devices and
2188 // doesn't perform ConnectController here.
2189 //
2190 ImageHandle = BdsFindUsbDevice (TempDevicePath, ShortFormDevicePath);
2191 FreePool (TempDevicePath);
2192 }
2193
2194 return ImageHandle;
2195 }
2196
2197 /**
2198 Process the boot option follow the UEFI specification and
2199 special treat the legacy boot option with BBS_DEVICE_PATH.
2200
2201 @param Option The boot option need to be processed
2202 @param DevicePath The device path which describe where to load the
2203 boot image or the legacy BBS device path to boot
2204 the legacy OS
2205 @param ExitDataSize The size of exit data.
2206 @param ExitData Data returned when Boot image failed.
2207
2208 @retval EFI_SUCCESS Boot from the input boot option successfully.
2209 @retval EFI_NOT_FOUND If the Device Path is not found in the system
2210
2211 **/
2212 EFI_STATUS
2213 EFIAPI
2214 BdsLibBootViaBootOption (
2215 IN BDS_COMMON_OPTION *Option,
2216 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,
2217 OUT UINTN *ExitDataSize,
2218 OUT CHAR16 **ExitData OPTIONAL
2219 )
2220 {
2221 EFI_STATUS Status;
2222 EFI_STATUS StatusLogo;
2223 EFI_HANDLE Handle;
2224 EFI_HANDLE ImageHandle;
2225 EFI_DEVICE_PATH_PROTOCOL *FilePath;
2226 EFI_LOADED_IMAGE_PROTOCOL *ImageInfo;
2227 EFI_DEVICE_PATH_PROTOCOL *WorkingDevicePath;
2228 EFI_ACPI_S3_SAVE_PROTOCOL *AcpiS3Save;
2229 LIST_ENTRY TempBootLists;
2230 EFI_BOOT_LOGO_PROTOCOL *BootLogo;
2231
2232 *ExitDataSize = 0;
2233 *ExitData = NULL;
2234
2235 //
2236 // Notes: this code can be remove after the s3 script table
2237 // hook on the event EVT_SIGNAL_READY_TO_BOOT or
2238 // EVT_SIGNAL_LEGACY_BOOT
2239 //
2240 Status = gBS->LocateProtocol (&gEfiAcpiS3SaveProtocolGuid, NULL, (VOID **) &AcpiS3Save);
2241 if (!EFI_ERROR (Status)) {
2242 AcpiS3Save->S3Save (AcpiS3Save, NULL);
2243 }
2244 //
2245 // If it's Device Path that starts with a hard drive path, append it with the front part to compose a
2246 // full device path
2247 //
2248 WorkingDevicePath = NULL;
2249 if ((DevicePathType (DevicePath) == MEDIA_DEVICE_PATH) &&
2250 (DevicePathSubType (DevicePath) == MEDIA_HARDDRIVE_DP)) {
2251 WorkingDevicePath = BdsExpandPartitionPartialDevicePathToFull (
2252 (HARDDRIVE_DEVICE_PATH *)DevicePath
2253 );
2254 if (WorkingDevicePath != NULL) {
2255 DevicePath = WorkingDevicePath;
2256 }
2257 }
2258
2259 //
2260 // Set Boot Current
2261 //
2262 if (IsBootOptionValidNVVarialbe (Option)) {
2263 //
2264 // For a temporary boot (i.e. a boot by selected a EFI Shell using "Boot From File"), Boot Current is actually not valid.
2265 // In this case, "BootCurrent" is not created.
2266 // Only create the BootCurrent variable when it points to a valid Boot#### variable.
2267 //
2268 gRT->SetVariable (
2269 L"BootCurrent",
2270 &gEfiGlobalVariableGuid,
2271 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS,
2272 sizeof (UINT16),
2273 &Option->BootCurrent
2274 );
2275 }
2276
2277 //
2278 // Report Status Code to indicate ReadyToBoot event will be signalled
2279 //
2280 REPORT_STATUS_CODE (EFI_PROGRESS_CODE, (EFI_SOFTWARE_DXE_BS_DRIVER | EFI_SW_DXE_BS_PC_READY_TO_BOOT_EVENT));
2281
2282 //
2283 // Signal the EVT_SIGNAL_READY_TO_BOOT event
2284 //
2285 EfiSignalEventReadyToBoot();
2286
2287 //
2288 // Expand USB Class or USB WWID device path node to be full device path of a USB
2289 // device in platform then load the boot file on this full device path and get the
2290 // image handle.
2291 //
2292 ImageHandle = BdsExpandUsbShortFormDevicePath (DevicePath);
2293
2294 //
2295 // Adjust the different type memory page number just before booting
2296 // and save the updated info into the variable for next boot to use
2297 //
2298 BdsSetMemoryTypeInformationVariable ();
2299
2300 //
2301 // By expanding the USB Class or WWID device path, the ImageHandle has returnned.
2302 // Here get the ImageHandle for the non USB class or WWID device path.
2303 //
2304 if (ImageHandle == NULL) {
2305 ASSERT (Option->DevicePath != NULL);
2306 if ((DevicePathType (Option->DevicePath) == BBS_DEVICE_PATH) &&
2307 (DevicePathSubType (Option->DevicePath) == BBS_BBS_DP)
2308 ) {
2309 //
2310 // Check to see if we should legacy BOOT. If yes then do the legacy boot
2311 //
2312 return BdsLibDoLegacyBoot (Option);
2313 }
2314
2315 //
2316 // If the boot option point to Internal FV shell, make sure it is valid
2317 //
2318 Status = BdsLibUpdateFvFileDevicePath (&DevicePath, PcdGetPtr(PcdShellFile));
2319 if (!EFI_ERROR(Status)) {
2320 if (Option->DevicePath != NULL) {
2321 FreePool(Option->DevicePath);
2322 }
2323 Option->DevicePath = AllocateZeroPool (GetDevicePathSize (DevicePath));
2324 ASSERT(Option->DevicePath != NULL);
2325 CopyMem (Option->DevicePath, DevicePath, GetDevicePathSize (DevicePath));
2326 //
2327 // Update the shell boot option
2328 //
2329 InitializeListHead (&TempBootLists);
2330 BdsLibRegisterNewOption (&TempBootLists, DevicePath, L"EFI Internal Shell", L"BootOrder");
2331
2332 //
2333 // free the temporary device path created by BdsLibUpdateFvFileDevicePath()
2334 //
2335 FreePool (DevicePath);
2336 DevicePath = Option->DevicePath;
2337 }
2338
2339 DEBUG_CODE_BEGIN();
2340
2341 if (Option->Description == NULL) {
2342 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Booting from unknown device path\n"));
2343 } else {
2344 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Booting %S\n", Option->Description));
2345 }
2346
2347 DEBUG_CODE_END();
2348
2349 //
2350 // Report status code for OS Loader LoadImage.
2351 //
2352 REPORT_STATUS_CODE (EFI_PROGRESS_CODE, PcdGet32 (PcdProgressCodeOsLoaderLoad));
2353 Status = gBS->LoadImage (
2354 TRUE,
2355 gImageHandle,
2356 DevicePath,
2357 NULL,
2358 0,
2359 &ImageHandle
2360 );
2361
2362 //
2363 // If we didn't find an image directly, we need to try as if it is a removable device boot option
2364 // and load the image according to the default boot behavior for removable device.
2365 //
2366 if (EFI_ERROR (Status)) {
2367 //
2368 // check if there is a bootable removable media could be found in this device path ,
2369 // and get the bootable media handle
2370 //
2371 Handle = BdsLibGetBootableHandle(DevicePath);
2372 if (Handle != NULL) {
2373 //
2374 // Load the default boot file \EFI\BOOT\boot{machinename}.EFI from removable Media
2375 // machinename is ia32, ia64, x64, ...
2376 //
2377 FilePath = FileDevicePath (Handle, EFI_REMOVABLE_MEDIA_FILE_NAME);
2378 if (FilePath != NULL) {
2379 REPORT_STATUS_CODE (EFI_PROGRESS_CODE, PcdGet32 (PcdProgressCodeOsLoaderLoad));
2380 Status = gBS->LoadImage (
2381 TRUE,
2382 gImageHandle,
2383 FilePath,
2384 NULL,
2385 0,
2386 &ImageHandle
2387 );
2388 }
2389 }
2390 }
2391 }
2392 //
2393 // Provide the image with it's load options
2394 //
2395 if ((ImageHandle == NULL) || (EFI_ERROR(Status))) {
2396 //
2397 // Report Status Code to indicate that the failure to load boot option
2398 //
2399 REPORT_STATUS_CODE (
2400 EFI_ERROR_CODE | EFI_ERROR_MINOR,
2401 (EFI_SOFTWARE_DXE_BS_DRIVER | EFI_SW_DXE_BS_EC_BOOT_OPTION_LOAD_ERROR)
2402 );
2403 goto Done;
2404 }
2405
2406 Status = gBS->HandleProtocol (ImageHandle, &gEfiLoadedImageProtocolGuid, (VOID **) &ImageInfo);
2407 ASSERT_EFI_ERROR (Status);
2408
2409 if (Option->LoadOptionsSize != 0) {
2410 ImageInfo->LoadOptionsSize = Option->LoadOptionsSize;
2411 ImageInfo->LoadOptions = Option->LoadOptions;
2412 }
2413
2414 //
2415 // Clean to NULL because the image is loaded directly from the firmwares boot manager.
2416 //
2417 ImageInfo->ParentHandle = NULL;
2418
2419 //
2420 // Before calling the image, enable the Watchdog Timer for
2421 // the 5 Minute period
2422 //
2423 gBS->SetWatchdogTimer (5 * 60, 0x0000, 0x00, NULL);
2424
2425 //
2426 // Write boot to OS performance data for UEFI boot
2427 //
2428 PERF_CODE (
2429 WriteBootToOsPerformanceData (NULL, NULL);
2430 );
2431
2432 //
2433 // Report status code for OS Loader StartImage.
2434 //
2435 REPORT_STATUS_CODE (EFI_PROGRESS_CODE, PcdGet32 (PcdProgressCodeOsLoaderStart));
2436
2437 Status = gBS->StartImage (ImageHandle, ExitDataSize, ExitData);
2438 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Image Return Status = %r\n", Status));
2439 if (EFI_ERROR (Status)) {
2440 //
2441 // Report Status Code to indicate that boot failure
2442 //
2443 REPORT_STATUS_CODE (
2444 EFI_ERROR_CODE | EFI_ERROR_MINOR,
2445 (EFI_SOFTWARE_DXE_BS_DRIVER | EFI_SW_DXE_BS_EC_BOOT_OPTION_FAILED)
2446 );
2447 }
2448
2449 //
2450 // Clear the Watchdog Timer after the image returns
2451 //
2452 gBS->SetWatchdogTimer (0x0000, 0x0000, 0x0000, NULL);
2453
2454 Done:
2455 //
2456 // Set Logo status invalid after trying one boot option
2457 //
2458 BootLogo = NULL;
2459 StatusLogo = gBS->LocateProtocol (&gEfiBootLogoProtocolGuid, NULL, (VOID **) &BootLogo);
2460 if (!EFI_ERROR (StatusLogo) && (BootLogo != NULL)) {
2461 BootLogo->SetBootLogo (BootLogo, NULL, 0, 0, 0, 0);
2462 }
2463
2464 //
2465 // Clear Boot Current
2466 //
2467 gRT->SetVariable (
2468 L"BootCurrent",
2469 &gEfiGlobalVariableGuid,
2470 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS,
2471 0,
2472 &Option->BootCurrent
2473 );
2474
2475 return Status;
2476 }
2477
2478
2479 /**
2480 Expand a device path that starts with a hard drive media device path node to be a
2481 full device path that includes the full hardware path to the device. We need
2482 to do this so it can be booted. As an optimization the front match (the part point
2483 to the partition node. E.g. ACPI() /PCI()/ATA()/Partition() ) is saved in a variable
2484 so a connect all is not required on every boot. All successful history device path
2485 which point to partition node (the front part) will be saved.
2486
2487 @param HardDriveDevicePath EFI Device Path to boot, if it starts with a hard
2488 drive media device path.
2489 @return A Pointer to the full device path or NULL if a valid Hard Drive devic path
2490 cannot be found.
2491
2492 **/
2493 EFI_DEVICE_PATH_PROTOCOL *
2494 EFIAPI
2495 BdsExpandPartitionPartialDevicePathToFull (
2496 IN HARDDRIVE_DEVICE_PATH *HardDriveDevicePath
2497 )
2498 {
2499 EFI_STATUS Status;
2500 UINTN BlockIoHandleCount;
2501 EFI_HANDLE *BlockIoBuffer;
2502 EFI_DEVICE_PATH_PROTOCOL *FullDevicePath;
2503 EFI_DEVICE_PATH_PROTOCOL *BlockIoDevicePath;
2504 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
2505 UINTN Index;
2506 UINTN InstanceNum;
2507 EFI_DEVICE_PATH_PROTOCOL *CachedDevicePath;
2508 EFI_DEVICE_PATH_PROTOCOL *TempNewDevicePath;
2509 UINTN CachedDevicePathSize;
2510 BOOLEAN DeviceExist;
2511 BOOLEAN NeedAdjust;
2512 EFI_DEVICE_PATH_PROTOCOL *Instance;
2513 UINTN Size;
2514
2515 FullDevicePath = NULL;
2516 //
2517 // Check if there is prestore HD_BOOT_DEVICE_PATH_VARIABLE_NAME variable.
2518 // If exist, search the front path which point to partition node in the variable instants.
2519 // If fail to find or HD_BOOT_DEVICE_PATH_VARIABLE_NAME not exist, reconnect all and search in all system
2520 //
2521 CachedDevicePath = BdsLibGetVariableAndSize (
2522 HD_BOOT_DEVICE_PATH_VARIABLE_NAME,
2523 &gHdBootDevicePathVariablGuid,
2524 &CachedDevicePathSize
2525 );
2526
2527 if (CachedDevicePath != NULL) {
2528 TempNewDevicePath = CachedDevicePath;
2529 DeviceExist = FALSE;
2530 NeedAdjust = FALSE;
2531 do {
2532 //
2533 // Check every instance of the variable
2534 // First, check whether the instance contain the partition node, which is needed for distinguishing multi
2535 // partial partition boot option. Second, check whether the instance could be connected.
2536 //
2537 Instance = GetNextDevicePathInstance (&TempNewDevicePath, &Size);
2538 if (MatchPartitionDevicePathNode (Instance, HardDriveDevicePath)) {
2539 //
2540 // Connect the device path instance, the device path point to hard drive media device path node
2541 // e.g. ACPI() /PCI()/ATA()/Partition()
2542 //
2543 Status = BdsLibConnectDevicePath (Instance);
2544 if (!EFI_ERROR (Status)) {
2545 DeviceExist = TRUE;
2546 break;
2547 }
2548 }
2549 //
2550 // Come here means the first instance is not matched
2551 //
2552 NeedAdjust = TRUE;
2553 FreePool(Instance);
2554 } while (TempNewDevicePath != NULL);
2555
2556 if (DeviceExist) {
2557 //
2558 // Find the matched device path.
2559 // Append the file path information from the boot option and return the fully expanded device path.
2560 //
2561 DevicePath = NextDevicePathNode ((EFI_DEVICE_PATH_PROTOCOL *) HardDriveDevicePath);
2562 FullDevicePath = AppendDevicePath (Instance, DevicePath);
2563
2564 //
2565 // Adjust the HD_BOOT_DEVICE_PATH_VARIABLE_NAME instances sequence if the matched one is not first one.
2566 //
2567 if (NeedAdjust) {
2568 //
2569 // First delete the matched instance.
2570 //
2571 TempNewDevicePath = CachedDevicePath;
2572 CachedDevicePath = BdsLibDelPartMatchInstance (CachedDevicePath, Instance );
2573 FreePool (TempNewDevicePath);
2574
2575 //
2576 // Second, append the remaining path after the matched instance
2577 //
2578 TempNewDevicePath = CachedDevicePath;
2579 CachedDevicePath = AppendDevicePathInstance (Instance, CachedDevicePath );
2580 FreePool (TempNewDevicePath);
2581 //
2582 // Save the matching Device Path so we don't need to do a connect all next time
2583 //
2584 Status = gRT->SetVariable (
2585 HD_BOOT_DEVICE_PATH_VARIABLE_NAME,
2586 &gHdBootDevicePathVariablGuid,
2587 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
2588 GetDevicePathSize (CachedDevicePath),
2589 CachedDevicePath
2590 );
2591 }
2592
2593 FreePool (Instance);
2594 FreePool (CachedDevicePath);
2595 return FullDevicePath;
2596 }
2597 }
2598
2599 //
2600 // If we get here we fail to find or HD_BOOT_DEVICE_PATH_VARIABLE_NAME not exist, and now we need
2601 // to search all devices in the system for a matched partition
2602 //
2603 BdsLibConnectAllDriversToAllControllers ();
2604 Status = gBS->LocateHandleBuffer (ByProtocol, &gEfiBlockIoProtocolGuid, NULL, &BlockIoHandleCount, &BlockIoBuffer);
2605 if (EFI_ERROR (Status) || BlockIoHandleCount == 0 || BlockIoBuffer == NULL) {
2606 //
2607 // If there was an error or there are no device handles that support
2608 // the BLOCK_IO Protocol, then return.
2609 //
2610 return NULL;
2611 }
2612 //
2613 // Loop through all the device handles that support the BLOCK_IO Protocol
2614 //
2615 for (Index = 0; Index < BlockIoHandleCount; Index++) {
2616
2617 Status = gBS->HandleProtocol (BlockIoBuffer[Index], &gEfiDevicePathProtocolGuid, (VOID *) &BlockIoDevicePath);
2618 if (EFI_ERROR (Status) || BlockIoDevicePath == NULL) {
2619 continue;
2620 }
2621
2622 if (MatchPartitionDevicePathNode (BlockIoDevicePath, HardDriveDevicePath)) {
2623 //
2624 // Find the matched partition device path
2625 //
2626 DevicePath = NextDevicePathNode ((EFI_DEVICE_PATH_PROTOCOL *) HardDriveDevicePath);
2627 FullDevicePath = AppendDevicePath (BlockIoDevicePath, DevicePath);
2628
2629 //
2630 // Save the matched partition device path in HD_BOOT_DEVICE_PATH_VARIABLE_NAME variable
2631 //
2632 if (CachedDevicePath != NULL) {
2633 //
2634 // Save the matched partition device path as first instance of HD_BOOT_DEVICE_PATH_VARIABLE_NAME variable
2635 //
2636 if (BdsLibMatchDevicePaths (CachedDevicePath, BlockIoDevicePath)) {
2637 TempNewDevicePath = CachedDevicePath;
2638 CachedDevicePath = BdsLibDelPartMatchInstance (CachedDevicePath, BlockIoDevicePath);
2639 FreePool(TempNewDevicePath);
2640 }
2641
2642 if (CachedDevicePath != NULL) {
2643 TempNewDevicePath = CachedDevicePath;
2644 CachedDevicePath = AppendDevicePathInstance (BlockIoDevicePath, CachedDevicePath);
2645 FreePool(TempNewDevicePath);
2646 } else {
2647 CachedDevicePath = DuplicateDevicePath (BlockIoDevicePath);
2648 }
2649
2650 //
2651 // Here limit the device path instance number to 12, which is max number for a system support 3 IDE controller
2652 // If the user try to boot many OS in different HDs or partitions, in theory,
2653 // the HD_BOOT_DEVICE_PATH_VARIABLE_NAME variable maybe become larger and larger.
2654 //
2655 InstanceNum = 0;
2656 ASSERT (CachedDevicePath != NULL);
2657 TempNewDevicePath = CachedDevicePath;
2658 while (!IsDevicePathEnd (TempNewDevicePath)) {
2659 TempNewDevicePath = NextDevicePathNode (TempNewDevicePath);
2660 //
2661 // Parse one instance
2662 //
2663 while (!IsDevicePathEndType (TempNewDevicePath)) {
2664 TempNewDevicePath = NextDevicePathNode (TempNewDevicePath);
2665 }
2666 InstanceNum++;
2667 //
2668 // If the CachedDevicePath variable contain too much instance, only remain 12 instances.
2669 //
2670 if (InstanceNum >= 12) {
2671 SetDevicePathEndNode (TempNewDevicePath);
2672 break;
2673 }
2674 }
2675 } else {
2676 CachedDevicePath = DuplicateDevicePath (BlockIoDevicePath);
2677 }
2678
2679 //
2680 // Save the matching Device Path so we don't need to do a connect all next time
2681 //
2682 Status = gRT->SetVariable (
2683 HD_BOOT_DEVICE_PATH_VARIABLE_NAME,
2684 &gHdBootDevicePathVariablGuid,
2685 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
2686 GetDevicePathSize (CachedDevicePath),
2687 CachedDevicePath
2688 );
2689
2690 break;
2691 }
2692 }
2693
2694 if (CachedDevicePath != NULL) {
2695 FreePool (CachedDevicePath);
2696 }
2697 if (BlockIoBuffer != NULL) {
2698 FreePool (BlockIoBuffer);
2699 }
2700 return FullDevicePath;
2701 }
2702
2703 /**
2704 Check whether there is a instance in BlockIoDevicePath, which contain multi device path
2705 instances, has the same partition node with HardDriveDevicePath device path
2706
2707 @param BlockIoDevicePath Multi device path instances which need to check
2708 @param HardDriveDevicePath A device path which starts with a hard drive media
2709 device path.
2710
2711 @retval TRUE There is a matched device path instance.
2712 @retval FALSE There is no matched device path instance.
2713
2714 **/
2715 BOOLEAN
2716 EFIAPI
2717 MatchPartitionDevicePathNode (
2718 IN EFI_DEVICE_PATH_PROTOCOL *BlockIoDevicePath,
2719 IN HARDDRIVE_DEVICE_PATH *HardDriveDevicePath
2720 )
2721 {
2722 HARDDRIVE_DEVICE_PATH *TmpHdPath;
2723 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
2724 BOOLEAN Match;
2725 EFI_DEVICE_PATH_PROTOCOL *BlockIoHdDevicePathNode;
2726
2727 if ((BlockIoDevicePath == NULL) || (HardDriveDevicePath == NULL)) {
2728 return FALSE;
2729 }
2730
2731 //
2732 // Make PreviousDevicePath == the device path node before the end node
2733 //
2734 DevicePath = BlockIoDevicePath;
2735 BlockIoHdDevicePathNode = NULL;
2736
2737 //
2738 // find the partition device path node
2739 //
2740 while (!IsDevicePathEnd (DevicePath)) {
2741 if ((DevicePathType (DevicePath) == MEDIA_DEVICE_PATH) &&
2742 (DevicePathSubType (DevicePath) == MEDIA_HARDDRIVE_DP)
2743 ) {
2744 BlockIoHdDevicePathNode = DevicePath;
2745 break;
2746 }
2747
2748 DevicePath = NextDevicePathNode (DevicePath);
2749 }
2750
2751 if (BlockIoHdDevicePathNode == NULL) {
2752 return FALSE;
2753 }
2754 //
2755 // See if the harddrive device path in blockio matches the orig Hard Drive Node
2756 //
2757 TmpHdPath = (HARDDRIVE_DEVICE_PATH *) BlockIoHdDevicePathNode;
2758 Match = FALSE;
2759
2760 //
2761 // Check for the match
2762 //
2763 if ((TmpHdPath->MBRType == HardDriveDevicePath->MBRType) &&
2764 (TmpHdPath->SignatureType == HardDriveDevicePath->SignatureType)) {
2765 switch (TmpHdPath->SignatureType) {
2766 case SIGNATURE_TYPE_GUID:
2767 Match = CompareGuid ((EFI_GUID *)TmpHdPath->Signature, (EFI_GUID *)HardDriveDevicePath->Signature);
2768 break;
2769 case SIGNATURE_TYPE_MBR:
2770 Match = (BOOLEAN)(*((UINT32 *)(&(TmpHdPath->Signature[0]))) == ReadUnaligned32((UINT32 *)(&(HardDriveDevicePath->Signature[0]))));
2771 break;
2772 default:
2773 Match = FALSE;
2774 break;
2775 }
2776 }
2777
2778 return Match;
2779 }
2780
2781 /**
2782 Delete the boot option associated with the handle passed in.
2783
2784 @param Handle The handle which present the device path to create
2785 boot option
2786
2787 @retval EFI_SUCCESS Delete the boot option success
2788 @retval EFI_NOT_FOUND If the Device Path is not found in the system
2789 @retval EFI_OUT_OF_RESOURCES Lack of memory resource
2790 @retval Other Error return value from SetVariable()
2791
2792 **/
2793 EFI_STATUS
2794 BdsLibDeleteOptionFromHandle (
2795 IN EFI_HANDLE Handle
2796 )
2797 {
2798 UINT16 *BootOrder;
2799 UINT8 *BootOptionVar;
2800 UINTN BootOrderSize;
2801 UINTN BootOptionSize;
2802 EFI_STATUS Status;
2803 UINTN Index;
2804 UINT16 BootOption[BOOT_OPTION_MAX_CHAR];
2805 UINTN DevicePathSize;
2806 UINTN OptionDevicePathSize;
2807 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
2808 EFI_DEVICE_PATH_PROTOCOL *OptionDevicePath;
2809 UINT8 *TempPtr;
2810
2811 Status = EFI_SUCCESS;
2812 BootOrder = NULL;
2813 BootOrderSize = 0;
2814
2815 //
2816 // Check "BootOrder" variable, if no, means there is no any boot order.
2817 //
2818 BootOrder = BdsLibGetVariableAndSize (
2819 L"BootOrder",
2820 &gEfiGlobalVariableGuid,
2821 &BootOrderSize
2822 );
2823 if (BootOrder == NULL) {
2824 return EFI_NOT_FOUND;
2825 }
2826
2827 //
2828 // Convert device handle to device path protocol instance
2829 //
2830 DevicePath = DevicePathFromHandle (Handle);
2831 if (DevicePath == NULL) {
2832 return EFI_NOT_FOUND;
2833 }
2834 DevicePathSize = GetDevicePathSize (DevicePath);
2835
2836 //
2837 // Loop all boot order variable and find the matching device path
2838 //
2839 Index = 0;
2840 while (Index < BootOrderSize / sizeof (UINT16)) {
2841 UnicodeSPrint (BootOption, sizeof (BootOption), L"Boot%04x", BootOrder[Index]);
2842 BootOptionVar = BdsLibGetVariableAndSize (
2843 BootOption,
2844 &gEfiGlobalVariableGuid,
2845 &BootOptionSize
2846 );
2847
2848 if (BootOptionVar == NULL) {
2849 FreePool (BootOrder);
2850 return EFI_OUT_OF_RESOURCES;
2851 }
2852
2853 if (!ValidateOption(BootOptionVar, BootOptionSize)) {
2854 BdsDeleteBootOption (BootOrder[Index], BootOrder, &BootOrderSize);
2855 FreePool (BootOptionVar);
2856 Index++;
2857 continue;
2858 }
2859
2860 TempPtr = BootOptionVar;
2861 TempPtr += sizeof (UINT32) + sizeof (UINT16);
2862 TempPtr += StrSize ((CHAR16 *) TempPtr);
2863 OptionDevicePath = (EFI_DEVICE_PATH_PROTOCOL *) TempPtr;
2864 OptionDevicePathSize = GetDevicePathSize (OptionDevicePath);
2865
2866 //
2867 // Check whether the device path match
2868 //
2869 if ((OptionDevicePathSize == DevicePathSize) &&
2870 (CompareMem (DevicePath, OptionDevicePath, DevicePathSize) == 0)) {
2871 BdsDeleteBootOption (BootOrder[Index], BootOrder, &BootOrderSize);
2872 FreePool (BootOptionVar);
2873 break;
2874 }
2875
2876 FreePool (BootOptionVar);
2877 Index++;
2878 }
2879
2880 //
2881 // Adjust number of boot option for "BootOrder" variable.
2882 //
2883 Status = gRT->SetVariable (
2884 L"BootOrder",
2885 &gEfiGlobalVariableGuid,
2886 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
2887 BootOrderSize,
2888 BootOrder
2889 );
2890
2891 FreePool (BootOrder);
2892
2893 return Status;
2894 }
2895
2896
2897 /**
2898 Delete all invalid EFI boot options.
2899
2900 @retval EFI_SUCCESS Delete all invalid boot option success
2901 @retval EFI_NOT_FOUND Variable "BootOrder" is not found
2902 @retval EFI_OUT_OF_RESOURCES Lack of memory resource
2903 @retval Other Error return value from SetVariable()
2904
2905 **/
2906 EFI_STATUS
2907 BdsDeleteAllInvalidEfiBootOption (
2908 VOID
2909 )
2910 {
2911 UINT16 *BootOrder;
2912 UINT8 *BootOptionVar;
2913 UINTN BootOrderSize;
2914 UINTN BootOptionSize;
2915 EFI_STATUS Status;
2916 UINTN Index;
2917 UINTN Index2;
2918 UINT16 BootOption[BOOT_OPTION_MAX_CHAR];
2919 EFI_DEVICE_PATH_PROTOCOL *OptionDevicePath;
2920 UINT8 *TempPtr;
2921 CHAR16 *Description;
2922 BOOLEAN Corrupted;
2923
2924 Status = EFI_SUCCESS;
2925 BootOrder = NULL;
2926 Description = NULL;
2927 OptionDevicePath = NULL;
2928 BootOrderSize = 0;
2929 Corrupted = FALSE;
2930
2931 //
2932 // Check "BootOrder" variable firstly, this variable hold the number of boot options
2933 //
2934 BootOrder = BdsLibGetVariableAndSize (
2935 L"BootOrder",
2936 &gEfiGlobalVariableGuid,
2937 &BootOrderSize
2938 );
2939 if (NULL == BootOrder) {
2940 return EFI_NOT_FOUND;
2941 }
2942
2943 Index = 0;
2944 while (Index < BootOrderSize / sizeof (UINT16)) {
2945 UnicodeSPrint (BootOption, sizeof (BootOption), L"Boot%04x", BootOrder[Index]);
2946 BootOptionVar = BdsLibGetVariableAndSize (
2947 BootOption,
2948 &gEfiGlobalVariableGuid,
2949 &BootOptionSize
2950 );
2951 if (NULL == BootOptionVar) {
2952 FreePool (BootOrder);
2953 return EFI_OUT_OF_RESOURCES;
2954 }
2955
2956 if (!ValidateOption(BootOptionVar, BootOptionSize)) {
2957 Corrupted = TRUE;
2958 } else {
2959 TempPtr = BootOptionVar;
2960 TempPtr += sizeof (UINT32) + sizeof (UINT16);
2961 Description = (CHAR16 *) TempPtr;
2962 TempPtr += StrSize ((CHAR16 *) TempPtr);
2963 OptionDevicePath = (EFI_DEVICE_PATH_PROTOCOL *) TempPtr;
2964
2965 //
2966 // Skip legacy boot option (BBS boot device)
2967 //
2968 if ((DevicePathType (OptionDevicePath) == BBS_DEVICE_PATH) &&
2969 (DevicePathSubType (OptionDevicePath) == BBS_BBS_DP)) {
2970 FreePool (BootOptionVar);
2971 Index++;
2972 continue;
2973 }
2974 }
2975
2976 if (Corrupted || !BdsLibIsValidEFIBootOptDevicePathExt (OptionDevicePath, FALSE, Description)) {
2977 //
2978 // Delete this invalid boot option "Boot####"
2979 //
2980 Status = gRT->SetVariable (
2981 BootOption,
2982 &gEfiGlobalVariableGuid,
2983 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
2984 0,
2985 NULL
2986 );
2987 //
2988 // Mark this boot option in boot order as deleted
2989 //
2990 BootOrder[Index] = 0xffff;
2991 Corrupted = FALSE;
2992 }
2993
2994 FreePool (BootOptionVar);
2995 Index++;
2996 }
2997
2998 //
2999 // Adjust boot order array
3000 //
3001 Index2 = 0;
3002 for (Index = 0; Index < BootOrderSize / sizeof (UINT16); Index++) {
3003 if (BootOrder[Index] != 0xffff) {
3004 BootOrder[Index2] = BootOrder[Index];
3005 Index2 ++;
3006 }
3007 }
3008 Status = gRT->SetVariable (
3009 L"BootOrder",
3010 &gEfiGlobalVariableGuid,
3011 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
3012 Index2 * sizeof (UINT16),
3013 BootOrder
3014 );
3015
3016 FreePool (BootOrder);
3017
3018 return Status;
3019 }
3020
3021
3022 /**
3023 For EFI boot option, BDS separate them as six types:
3024 1. Network - The boot option points to the SimpleNetworkProtocol device.
3025 Bds will try to automatically create this type boot option when enumerate.
3026 2. Shell - The boot option points to internal flash shell.
3027 Bds will try to automatically create this type boot option when enumerate.
3028 3. Removable BlockIo - The boot option only points to the removable media
3029 device, like USB flash disk, DVD, Floppy etc.
3030 These device should contain a *removable* blockIo
3031 protocol in their device handle.
3032 Bds will try to automatically create this type boot option
3033 when enumerate.
3034 4. Fixed BlockIo - The boot option only points to a Fixed blockIo device,
3035 like HardDisk.
3036 These device should contain a *fixed* blockIo
3037 protocol in their device handle.
3038 BDS will skip fixed blockIo devices, and NOT
3039 automatically create boot option for them. But BDS
3040 will help to delete those fixed blockIo boot option,
3041 whose description rule conflict with other auto-created
3042 boot options.
3043 5. Non-BlockIo Simplefile - The boot option points to a device whose handle
3044 has SimpleFileSystem Protocol, but has no blockio
3045 protocol. These devices do not offer blockIo
3046 protocol, but BDS still can get the
3047 \EFI\BOOT\boot{machinename}.EFI by SimpleFileSystem
3048 Protocol.
3049 6. File - The boot option points to a file. These boot options are usually
3050 created by user manually or OS loader. BDS will not delete or modify
3051 these boot options.
3052
3053 This function will enumerate all possible boot device in the system, and
3054 automatically create boot options for Network, Shell, Removable BlockIo,
3055 and Non-BlockIo Simplefile devices.
3056 It will only execute once of every boot.
3057
3058 @param BdsBootOptionList The header of the link list which indexed all
3059 current boot options
3060
3061 @retval EFI_SUCCESS Finished all the boot device enumerate and create
3062 the boot option base on that boot device
3063
3064 @retval EFI_OUT_OF_RESOURCES Failed to enumerate the boot device and create the boot option list
3065 **/
3066 EFI_STATUS
3067 EFIAPI
3068 BdsLibEnumerateAllBootOption (
3069 IN OUT LIST_ENTRY *BdsBootOptionList
3070 )
3071 {
3072 EFI_STATUS Status;
3073 UINT16 FloppyNumber;
3074 UINT16 HarddriveNumber;
3075 UINT16 CdromNumber;
3076 UINT16 UsbNumber;
3077 UINT16 MiscNumber;
3078 UINT16 ScsiNumber;
3079 UINT16 NonBlockNumber;
3080 UINTN NumberBlockIoHandles;
3081 EFI_HANDLE *BlockIoHandles;
3082 EFI_BLOCK_IO_PROTOCOL *BlkIo;
3083 BOOLEAN Removable[2];
3084 UINTN RemovableIndex;
3085 UINTN Index;
3086 UINTN NumOfLoadFileHandles;
3087 EFI_HANDLE *LoadFileHandles;
3088 UINTN FvHandleCount;
3089 EFI_HANDLE *FvHandleBuffer;
3090 EFI_FV_FILETYPE Type;
3091 UINTN Size;
3092 EFI_FV_FILE_ATTRIBUTES Attributes;
3093 UINT32 AuthenticationStatus;
3094 EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv;
3095 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
3096 UINTN DevicePathType;
3097 CHAR16 Buffer[40];
3098 EFI_HANDLE *FileSystemHandles;
3099 UINTN NumberFileSystemHandles;
3100 BOOLEAN NeedDelete;
3101 EFI_IMAGE_DOS_HEADER DosHeader;
3102 CHAR8 *PlatLang;
3103 CHAR8 *LastLang;
3104 EFI_IMAGE_OPTIONAL_HEADER_UNION HdrData;
3105 EFI_IMAGE_OPTIONAL_HEADER_PTR_UNION Hdr;
3106
3107 FloppyNumber = 0;
3108 HarddriveNumber = 0;
3109 CdromNumber = 0;
3110 UsbNumber = 0;
3111 MiscNumber = 0;
3112 ScsiNumber = 0;
3113 PlatLang = NULL;
3114 LastLang = NULL;
3115 ZeroMem (Buffer, sizeof (Buffer));
3116
3117 //
3118 // If the boot device enumerate happened, just get the boot
3119 // device from the boot order variable
3120 //
3121 if (mEnumBootDevice) {
3122 GetVariable2 (LAST_ENUM_LANGUAGE_VARIABLE_NAME, &gLastEnumLangGuid, (VOID**)&LastLang, NULL);
3123 GetEfiGlobalVariable2 (L"PlatformLang", (VOID**)&PlatLang, NULL);
3124 ASSERT (PlatLang != NULL);
3125 if ((LastLang != NULL) && (AsciiStrCmp (LastLang, PlatLang) == 0)) {
3126 Status = BdsLibBuildOptionFromVar (BdsBootOptionList, L"BootOrder");
3127 FreePool (LastLang);
3128 FreePool (PlatLang);
3129 return Status;
3130 } else {
3131 Status = gRT->SetVariable (
3132 LAST_ENUM_LANGUAGE_VARIABLE_NAME,
3133 &gLastEnumLangGuid,
3134 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_NON_VOLATILE,
3135 AsciiStrSize (PlatLang),
3136 PlatLang
3137 );
3138 ASSERT_EFI_ERROR (Status);
3139
3140 if (LastLang != NULL) {
3141 FreePool (LastLang);
3142 }
3143 FreePool (PlatLang);
3144 }
3145 }
3146
3147 //
3148 // Notes: this dirty code is to get the legacy boot option from the
3149 // BBS table and create to variable as the EFI boot option, it should
3150 // be removed after the CSM can provide legacy boot option directly
3151 //
3152 REFRESH_LEGACY_BOOT_OPTIONS;
3153
3154 //
3155 // Delete invalid boot option
3156 //
3157 BdsDeleteAllInvalidEfiBootOption ();
3158
3159 //
3160 // Parse removable media followed by fixed media.
3161 // The Removable[] array is used by the for-loop below to create removable media boot options
3162 // at first, and then to create fixed media boot options.
3163 //
3164 Removable[0] = FALSE;
3165 Removable[1] = TRUE;
3166
3167 gBS->LocateHandleBuffer (
3168 ByProtocol,
3169 &gEfiBlockIoProtocolGuid,
3170 NULL,
3171 &NumberBlockIoHandles,
3172 &BlockIoHandles
3173 );
3174
3175 for (RemovableIndex = 0; RemovableIndex < 2; RemovableIndex++) {
3176 for (Index = 0; Index < NumberBlockIoHandles; Index++) {
3177 Status = gBS->HandleProtocol (
3178 BlockIoHandles[Index],
3179 &gEfiBlockIoProtocolGuid,
3180 (VOID **) &BlkIo
3181 );
3182 //
3183 // skip the fixed block io then the removable block io
3184 //
3185 if (EFI_ERROR (Status) || (BlkIo->Media->RemovableMedia == Removable[RemovableIndex])) {
3186 continue;
3187 }
3188 DevicePath = DevicePathFromHandle (BlockIoHandles[Index]);
3189 DevicePathType = BdsGetBootTypeFromDevicePath (DevicePath);
3190
3191 switch (DevicePathType) {
3192 case BDS_EFI_ACPI_FLOPPY_BOOT:
3193 if (FloppyNumber != 0) {
3194 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s %d", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_FLOPPY)), FloppyNumber);
3195 } else {
3196 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_FLOPPY)));
3197 }
3198 BdsLibBuildOptionFromHandle (BlockIoHandles[Index], BdsBootOptionList, Buffer);
3199 FloppyNumber++;
3200 break;
3201
3202 //
3203 // Assume a removable SATA device should be the DVD/CD device, a fixed SATA device should be the Hard Drive device.
3204 //
3205 case BDS_EFI_MESSAGE_ATAPI_BOOT:
3206 case BDS_EFI_MESSAGE_SATA_BOOT:
3207 if (BlkIo->Media->RemovableMedia) {
3208 if (CdromNumber != 0) {
3209 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s %d", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_CD_DVD)), CdromNumber);
3210 } else {
3211 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_CD_DVD)));
3212 }
3213 CdromNumber++;
3214 } else {
3215 if (HarddriveNumber != 0) {
3216 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s %d", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_HARDDRIVE)), HarddriveNumber);
3217 } else {
3218 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_HARDDRIVE)));
3219 }
3220 HarddriveNumber++;
3221 }
3222 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Buffer: %S\n", Buffer));
3223 BdsLibBuildOptionFromHandle (BlockIoHandles[Index], BdsBootOptionList, Buffer);
3224 break;
3225
3226 case BDS_EFI_MESSAGE_USB_DEVICE_BOOT:
3227 if (UsbNumber != 0) {
3228 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s %d", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_USB)), UsbNumber);
3229 } else {
3230 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_USB)));
3231 }
3232 BdsLibBuildOptionFromHandle (BlockIoHandles[Index], BdsBootOptionList, Buffer);
3233 UsbNumber++;
3234 break;
3235
3236 case BDS_EFI_MESSAGE_SCSI_BOOT:
3237 if (ScsiNumber != 0) {
3238 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s %d", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_SCSI)), ScsiNumber);
3239 } else {
3240 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_SCSI)));
3241 }
3242 BdsLibBuildOptionFromHandle (BlockIoHandles[Index], BdsBootOptionList, Buffer);
3243 ScsiNumber++;
3244 break;
3245
3246 case BDS_EFI_MESSAGE_MISC_BOOT:
3247 if (MiscNumber != 0) {
3248 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s %d", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_MISC)), MiscNumber);
3249 } else {
3250 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_MISC)));
3251 }
3252 BdsLibBuildOptionFromHandle (BlockIoHandles[Index], BdsBootOptionList, Buffer);
3253 MiscNumber++;
3254 break;
3255
3256 default:
3257 break;
3258 }
3259 }
3260 }
3261
3262 if (NumberBlockIoHandles != 0) {
3263 FreePool (BlockIoHandles);
3264 }
3265
3266 //
3267 // If there is simple file protocol which does not consume block Io protocol, create a boot option for it here.
3268 //
3269 NonBlockNumber = 0;
3270 gBS->LocateHandleBuffer (
3271 ByProtocol,
3272 &gEfiSimpleFileSystemProtocolGuid,
3273 NULL,
3274 &NumberFileSystemHandles,
3275 &FileSystemHandles
3276 );
3277 for (Index = 0; Index < NumberFileSystemHandles; Index++) {
3278 Status = gBS->HandleProtocol (
3279 FileSystemHandles[Index],
3280 &gEfiBlockIoProtocolGuid,
3281 (VOID **) &BlkIo
3282 );
3283 if (!EFI_ERROR (Status)) {
3284 //
3285 // Skip if the file system handle supports a BlkIo protocol,
3286 //
3287 continue;
3288 }
3289
3290 //
3291 // Do the removable Media thing. \EFI\BOOT\boot{machinename}.EFI
3292 // machinename is ia32, ia64, x64, ...
3293 //
3294 Hdr.Union = &HdrData;
3295 NeedDelete = TRUE;
3296 Status = BdsLibGetImageHeader (
3297 FileSystemHandles[Index],
3298 EFI_REMOVABLE_MEDIA_FILE_NAME,
3299 &DosHeader,
3300 Hdr
3301 );
3302 if (!EFI_ERROR (Status) &&
3303 EFI_IMAGE_MACHINE_TYPE_SUPPORTED (Hdr.Pe32->FileHeader.Machine) &&
3304 Hdr.Pe32->OptionalHeader.Subsystem == EFI_IMAGE_SUBSYSTEM_EFI_APPLICATION) {
3305 NeedDelete = FALSE;
3306 }
3307
3308 if (NeedDelete) {
3309 //
3310 // No such file or the file is not a EFI application, delete this boot option
3311 //
3312 BdsLibDeleteOptionFromHandle (FileSystemHandles[Index]);
3313 } else {
3314 if (NonBlockNumber != 0) {
3315 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s %d", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_NON_BLOCK)), NonBlockNumber);
3316 } else {
3317 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_NON_BLOCK)));
3318 }
3319 BdsLibBuildOptionFromHandle (FileSystemHandles[Index], BdsBootOptionList, Buffer);
3320 NonBlockNumber++;
3321 }
3322 }
3323
3324 if (NumberFileSystemHandles != 0) {
3325 FreePool (FileSystemHandles);
3326 }
3327
3328 //
3329 // Parse Network Boot Device
3330 //
3331 NumOfLoadFileHandles = 0;
3332 //
3333 // Search Load File protocol for PXE boot option.
3334 //
3335 gBS->LocateHandleBuffer (
3336 ByProtocol,
3337 &gEfiLoadFileProtocolGuid,
3338 NULL,
3339 &NumOfLoadFileHandles,
3340 &LoadFileHandles
3341 );
3342
3343 for (Index = 0; Index < NumOfLoadFileHandles; Index++) {
3344 if (Index != 0) {
3345 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s %d", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_NETWORK)), Index);
3346 } else {
3347 UnicodeSPrint (Buffer, sizeof (Buffer), L"%s", BdsLibGetStringById (STRING_TOKEN (STR_DESCRIPTION_NETWORK)));
3348 }
3349 BdsLibBuildOptionFromHandle (LoadFileHandles[Index], BdsBootOptionList, Buffer);
3350 }
3351
3352 if (NumOfLoadFileHandles != 0) {
3353 FreePool (LoadFileHandles);
3354 }
3355
3356 //
3357 // Check if we have on flash shell
3358 //
3359 gBS->LocateHandleBuffer (
3360 ByProtocol,
3361 &gEfiFirmwareVolume2ProtocolGuid,
3362 NULL,
3363 &FvHandleCount,
3364 &FvHandleBuffer
3365 );
3366 for (Index = 0; Index < FvHandleCount; Index++) {
3367 gBS->HandleProtocol (
3368 FvHandleBuffer[Index],
3369 &gEfiFirmwareVolume2ProtocolGuid,
3370 (VOID **) &Fv
3371 );
3372
3373 Status = Fv->ReadFile (
3374 Fv,
3375 PcdGetPtr(PcdShellFile),
3376 NULL,
3377 &Size,
3378 &Type,
3379 &Attributes,
3380 &AuthenticationStatus
3381 );
3382 if (EFI_ERROR (Status)) {
3383 //
3384 // Skip if no shell file in the FV
3385 //
3386 continue;
3387 }
3388 //
3389 // Build the shell boot option
3390 //
3391 BdsLibBuildOptionFromShell (FvHandleBuffer[Index], BdsBootOptionList);
3392 }
3393
3394 if (FvHandleCount != 0) {
3395 FreePool (FvHandleBuffer);
3396 }
3397 //
3398 // Make sure every boot only have one time
3399 // boot device enumerate
3400 //
3401 Status = BdsLibBuildOptionFromVar (BdsBootOptionList, L"BootOrder");
3402 mEnumBootDevice = TRUE;
3403
3404 return Status;
3405 }
3406
3407 /**
3408 Build the boot option with the handle parsed in
3409
3410 @param Handle The handle which present the device path to create
3411 boot option
3412 @param BdsBootOptionList The header of the link list which indexed all
3413 current boot options
3414 @param String The description of the boot option.
3415
3416 **/
3417 VOID
3418 EFIAPI
3419 BdsLibBuildOptionFromHandle (
3420 IN EFI_HANDLE Handle,
3421 IN LIST_ENTRY *BdsBootOptionList,
3422 IN CHAR16 *String
3423 )
3424 {
3425 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
3426
3427 DevicePath = DevicePathFromHandle (Handle);
3428
3429 //
3430 // Create and register new boot option
3431 //
3432 BdsLibRegisterNewOption (BdsBootOptionList, DevicePath, String, L"BootOrder");
3433 }
3434
3435
3436 /**
3437 Build the on flash shell boot option with the handle parsed in.
3438
3439 @param Handle The handle which present the device path to create
3440 on flash shell boot option
3441 @param BdsBootOptionList The header of the link list which indexed all
3442 current boot options
3443
3444 **/
3445 VOID
3446 EFIAPI
3447 BdsLibBuildOptionFromShell (
3448 IN EFI_HANDLE Handle,
3449 IN OUT LIST_ENTRY *BdsBootOptionList
3450 )
3451 {
3452 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
3453 MEDIA_FW_VOL_FILEPATH_DEVICE_PATH ShellNode;
3454
3455 DevicePath = DevicePathFromHandle (Handle);
3456
3457 //
3458 // Build the shell device path
3459 //
3460 EfiInitializeFwVolDevicepathNode (&ShellNode, PcdGetPtr(PcdShellFile));
3461
3462 DevicePath = AppendDevicePathNode (DevicePath, (EFI_DEVICE_PATH_PROTOCOL *) &ShellNode);
3463
3464 //
3465 // Create and register the shell boot option
3466 //
3467 BdsLibRegisterNewOption (BdsBootOptionList, DevicePath, L"EFI Internal Shell", L"BootOrder");
3468
3469 }
3470
3471 /**
3472 Boot from the UEFI spec defined "BootNext" variable.
3473
3474 **/
3475 VOID
3476 EFIAPI
3477 BdsLibBootNext (
3478 VOID
3479 )
3480 {
3481 UINT16 *BootNext;
3482 UINTN BootNextSize;
3483 CHAR16 Buffer[20];
3484 BDS_COMMON_OPTION *BootOption;
3485 LIST_ENTRY TempList;
3486 UINTN ExitDataSize;
3487 CHAR16 *ExitData;
3488
3489 //
3490 // Init the boot option name buffer and temp link list
3491 //
3492 InitializeListHead (&TempList);
3493 ZeroMem (Buffer, sizeof (Buffer));
3494
3495 BootNext = BdsLibGetVariableAndSize (
3496 L"BootNext",
3497 &gEfiGlobalVariableGuid,
3498 &BootNextSize
3499 );
3500
3501 //
3502 // Clear the boot next variable first
3503 //
3504 if (BootNext != NULL) {
3505 gRT->SetVariable (
3506 L"BootNext",
3507 &gEfiGlobalVariableGuid,
3508 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
3509 0,
3510 BootNext
3511 );
3512
3513 //
3514 // Start to build the boot option and try to boot
3515 //
3516 UnicodeSPrint (Buffer, sizeof (Buffer), L"Boot%04x", *BootNext);
3517 BootOption = BdsLibVariableToOption (&TempList, Buffer);
3518 ASSERT (BootOption != NULL);
3519 BdsLibConnectDevicePath (BootOption->DevicePath);
3520 BdsLibBootViaBootOption (BootOption, BootOption->DevicePath, &ExitDataSize, &ExitData);
3521 }
3522
3523 }
3524
3525 /**
3526 Return the bootable media handle.
3527 First, check the device is connected
3528 Second, check whether the device path point to a device which support SimpleFileSystemProtocol,
3529 Third, detect the the default boot file in the Media, and return the removable Media handle.
3530
3531 @param DevicePath Device Path to a bootable device
3532
3533 @return The bootable media handle. If the media on the DevicePath is not bootable, NULL will return.
3534
3535 **/
3536 EFI_HANDLE
3537 EFIAPI
3538 BdsLibGetBootableHandle (
3539 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
3540 )
3541 {
3542 EFI_STATUS Status;
3543 EFI_TPL OldTpl;
3544 EFI_DEVICE_PATH_PROTOCOL *UpdatedDevicePath;
3545 EFI_DEVICE_PATH_PROTOCOL *DupDevicePath;
3546 EFI_HANDLE Handle;
3547 EFI_BLOCK_IO_PROTOCOL *BlockIo;
3548 VOID *Buffer;
3549 EFI_DEVICE_PATH_PROTOCOL *TempDevicePath;
3550 UINTN Size;
3551 UINTN TempSize;
3552 EFI_HANDLE ReturnHandle;
3553 EFI_HANDLE *SimpleFileSystemHandles;
3554
3555 UINTN NumberSimpleFileSystemHandles;
3556 UINTN Index;
3557 EFI_IMAGE_DOS_HEADER DosHeader;
3558 EFI_IMAGE_OPTIONAL_HEADER_UNION HdrData;
3559 EFI_IMAGE_OPTIONAL_HEADER_PTR_UNION Hdr;
3560
3561 UpdatedDevicePath = DevicePath;
3562
3563 //
3564 // Enter to critical section to protect the acquired BlockIo instance
3565 // from getting released due to the USB mass storage hotplug event
3566 //
3567 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
3568
3569 //
3570 // Check whether the device is connected
3571 //
3572 Status = gBS->LocateDevicePath (&gEfiBlockIoProtocolGuid, &UpdatedDevicePath, &Handle);
3573 if (EFI_ERROR (Status)) {
3574 //
3575 // Skip the case that the boot option point to a simple file protocol which does not consume block Io protocol,
3576 //
3577 Status = gBS->LocateDevicePath (&gEfiSimpleFileSystemProtocolGuid, &UpdatedDevicePath, &Handle);
3578 if (EFI_ERROR (Status)) {
3579 //
3580 // Fail to find the proper BlockIo and simple file protocol, maybe because device not present, we need to connect it firstly
3581 //
3582 UpdatedDevicePath = DevicePath;
3583 Status = gBS->LocateDevicePath (&gEfiDevicePathProtocolGuid, &UpdatedDevicePath, &Handle);
3584 gBS->ConnectController (Handle, NULL, NULL, TRUE);
3585 }
3586 } else {
3587 //
3588 // For removable device boot option, its contained device path only point to the removable device handle,
3589 // should make sure all its children handles (its child partion or media handles) are created and connected.
3590 //
3591 gBS->ConnectController (Handle, NULL, NULL, TRUE);
3592 //
3593 // Get BlockIo protocol and check removable attribute
3594 //
3595 Status = gBS->HandleProtocol (Handle, &gEfiBlockIoProtocolGuid, (VOID **)&BlockIo);
3596 ASSERT_EFI_ERROR (Status);
3597
3598 //
3599 // Issue a dummy read to the device to check for media change.
3600 // When the removable media is changed, any Block IO read/write will
3601 // cause the BlockIo protocol be reinstalled and EFI_MEDIA_CHANGED is
3602 // returned. After the Block IO protocol is reinstalled, subsequent
3603 // Block IO read/write will success.
3604 //
3605 Buffer = AllocatePool (BlockIo->Media->BlockSize);
3606 if (Buffer != NULL) {
3607 BlockIo->ReadBlocks (
3608 BlockIo,
3609 BlockIo->Media->MediaId,
3610 0,
3611 BlockIo->Media->BlockSize,
3612 Buffer
3613 );
3614 FreePool(Buffer);
3615 }
3616 }
3617
3618 //
3619 // Detect the the default boot file from removable Media
3620 //
3621
3622 //
3623 // 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
3624 // Try to locate the USB node device path first, if fail then use its previous PCI node to search
3625 //
3626 DupDevicePath = DuplicateDevicePath (DevicePath);
3627 ASSERT (DupDevicePath != NULL);
3628
3629 UpdatedDevicePath = DupDevicePath;
3630 Status = gBS->LocateDevicePath (&gEfiDevicePathProtocolGuid, &UpdatedDevicePath, &Handle);
3631 //
3632 // 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
3633 // Acpi()/Pci()/Usb() --> Acpi()/Pci()
3634 //
3635 if ((DevicePathType (UpdatedDevicePath) == MESSAGING_DEVICE_PATH) &&
3636 (DevicePathSubType (UpdatedDevicePath) == MSG_USB_DP)) {
3637 //
3638 // Remove the usb node, let the device path only point to PCI node
3639 //
3640 SetDevicePathEndNode (UpdatedDevicePath);
3641 UpdatedDevicePath = DupDevicePath;
3642 } else {
3643 UpdatedDevicePath = DevicePath;
3644 }
3645
3646 //
3647 // Get the device path size of boot option
3648 //
3649 Size = GetDevicePathSize(UpdatedDevicePath) - sizeof (EFI_DEVICE_PATH_PROTOCOL); // minus the end node
3650 ReturnHandle = NULL;
3651 gBS->LocateHandleBuffer (
3652 ByProtocol,
3653 &gEfiSimpleFileSystemProtocolGuid,
3654 NULL,
3655 &NumberSimpleFileSystemHandles,
3656 &SimpleFileSystemHandles
3657 );
3658 for (Index = 0; Index < NumberSimpleFileSystemHandles; Index++) {
3659 //
3660 // Get the device path size of SimpleFileSystem handle
3661 //
3662 TempDevicePath = DevicePathFromHandle (SimpleFileSystemHandles[Index]);
3663 TempSize = GetDevicePathSize (TempDevicePath)- sizeof (EFI_DEVICE_PATH_PROTOCOL); // minus the end node
3664 //
3665 // Check whether the device path of boot option is part of the SimpleFileSystem handle's device path
3666 //
3667 if (Size <= TempSize && CompareMem (TempDevicePath, UpdatedDevicePath, Size)==0) {
3668 //
3669 // Load the default boot file \EFI\BOOT\boot{machinename}.EFI from removable Media
3670 // machinename is ia32, ia64, x64, ...
3671 //
3672 Hdr.Union = &HdrData;
3673 Status = BdsLibGetImageHeader (
3674 SimpleFileSystemHandles[Index],
3675 EFI_REMOVABLE_MEDIA_FILE_NAME,
3676 &DosHeader,
3677 Hdr
3678 );
3679 if (!EFI_ERROR (Status) &&
3680 EFI_IMAGE_MACHINE_TYPE_SUPPORTED (Hdr.Pe32->FileHeader.Machine) &&
3681 Hdr.Pe32->OptionalHeader.Subsystem == EFI_IMAGE_SUBSYSTEM_EFI_APPLICATION) {
3682 ReturnHandle = SimpleFileSystemHandles[Index];
3683 break;
3684 }
3685 }
3686 }
3687
3688 FreePool(DupDevicePath);
3689
3690 if (SimpleFileSystemHandles != NULL) {
3691 FreePool(SimpleFileSystemHandles);
3692 }
3693
3694 gBS->RestoreTPL (OldTpl);
3695
3696 return ReturnHandle;
3697 }
3698
3699 /**
3700 Check to see if the network cable is plugged in. If the DevicePath is not
3701 connected it will be connected.
3702
3703 @param DevicePath Device Path to check
3704
3705 @retval TRUE DevicePath points to an Network that is connected
3706 @retval FALSE DevicePath does not point to a bootable network
3707
3708 **/
3709 BOOLEAN
3710 BdsLibNetworkBootWithMediaPresent (
3711 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
3712 )
3713 {
3714 EFI_STATUS Status;
3715 EFI_DEVICE_PATH_PROTOCOL *UpdatedDevicePath;
3716 EFI_HANDLE Handle;
3717 EFI_SIMPLE_NETWORK_PROTOCOL *Snp;
3718 BOOLEAN MediaPresent;
3719 UINT32 InterruptStatus;
3720
3721 MediaPresent = FALSE;
3722
3723 UpdatedDevicePath = DevicePath;
3724 //
3725 // Locate Load File Protocol for PXE boot option first
3726 //
3727 Status = gBS->LocateDevicePath (&gEfiLoadFileProtocolGuid, &UpdatedDevicePath, &Handle);
3728 if (EFI_ERROR (Status)) {
3729 //
3730 // Device not present so see if we need to connect it
3731 //
3732 Status = BdsLibConnectDevicePath (DevicePath);
3733 if (!EFI_ERROR (Status)) {
3734 //
3735 // This one should work after we did the connect
3736 //
3737 Status = gBS->LocateDevicePath (&gEfiLoadFileProtocolGuid, &UpdatedDevicePath, &Handle);
3738 }
3739 }
3740
3741 if (!EFI_ERROR (Status)) {
3742 Status = gBS->HandleProtocol (Handle, &gEfiSimpleNetworkProtocolGuid, (VOID **)&Snp);
3743 if (EFI_ERROR (Status)) {
3744 //
3745 // Failed to open SNP from this handle, try to get SNP from parent handle
3746 //
3747 UpdatedDevicePath = DevicePathFromHandle (Handle);
3748 if (UpdatedDevicePath != NULL) {
3749 Status = gBS->LocateDevicePath (&gEfiSimpleNetworkProtocolGuid, &UpdatedDevicePath, &Handle);
3750 if (!EFI_ERROR (Status)) {
3751 //
3752 // SNP handle found, get SNP from it
3753 //
3754 Status = gBS->HandleProtocol (Handle, &gEfiSimpleNetworkProtocolGuid, (VOID **) &Snp);
3755 }
3756 }
3757 }
3758
3759 if (!EFI_ERROR (Status)) {
3760 if (Snp->Mode->MediaPresentSupported) {
3761 if (Snp->Mode->State == EfiSimpleNetworkInitialized) {
3762 //
3763 // Invoke Snp->GetStatus() to refresh the media status
3764 //
3765 Snp->GetStatus (Snp, &InterruptStatus, NULL);
3766
3767 //
3768 // In case some one else is using the SNP check to see if it's connected
3769 //
3770 MediaPresent = Snp->Mode->MediaPresent;
3771 } else {
3772 //
3773 // No one is using SNP so we need to Start and Initialize so
3774 // MediaPresent will be valid.
3775 //
3776 Status = Snp->Start (Snp);
3777 if (!EFI_ERROR (Status)) {
3778 Status = Snp->Initialize (Snp, 0, 0);
3779 if (!EFI_ERROR (Status)) {
3780 MediaPresent = Snp->Mode->MediaPresent;
3781 Snp->Shutdown (Snp);
3782 }
3783 Snp->Stop (Snp);
3784 }
3785 }
3786 } else {
3787 MediaPresent = TRUE;
3788 }
3789 }
3790 }
3791
3792 return MediaPresent;
3793 }
3794
3795 /**
3796 For a bootable Device path, return its boot type.
3797
3798 @param DevicePath The bootable device Path to check
3799
3800 @retval BDS_EFI_MEDIA_HD_BOOT If given device path contains MEDIA_DEVICE_PATH type device path node
3801 which subtype is MEDIA_HARDDRIVE_DP
3802 @retval BDS_EFI_MEDIA_CDROM_BOOT If given device path contains MEDIA_DEVICE_PATH type device path node
3803 which subtype is MEDIA_CDROM_DP
3804 @retval BDS_EFI_ACPI_FLOPPY_BOOT If given device path contains ACPI_DEVICE_PATH type device path node
3805 which HID is floppy device.
3806 @retval BDS_EFI_MESSAGE_ATAPI_BOOT If given device path contains MESSAGING_DEVICE_PATH type device path node
3807 and its last device path node's subtype is MSG_ATAPI_DP.
3808 @retval BDS_EFI_MESSAGE_SCSI_BOOT If given device path contains MESSAGING_DEVICE_PATH type device path node
3809 and its last device path node's subtype is MSG_SCSI_DP.
3810 @retval BDS_EFI_MESSAGE_USB_DEVICE_BOOT If given device path contains MESSAGING_DEVICE_PATH type device path node
3811 and its last device path node's subtype is MSG_USB_DP.
3812 @retval BDS_EFI_MESSAGE_MISC_BOOT If the device path not contains any media device path node, and
3813 its last device path node point to a message device path node.
3814 @retval BDS_LEGACY_BBS_BOOT If given device path contains BBS_DEVICE_PATH type device path node.
3815 @retval BDS_EFI_UNSUPPORT An EFI Removable BlockIO device path not point to a media and message device,
3816
3817 **/
3818 UINT32
3819 EFIAPI
3820 BdsGetBootTypeFromDevicePath (
3821 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
3822 )
3823 {
3824 ACPI_HID_DEVICE_PATH *Acpi;
3825 EFI_DEVICE_PATH_PROTOCOL *TempDevicePath;
3826 EFI_DEVICE_PATH_PROTOCOL *LastDeviceNode;
3827 UINT32 BootType;
3828
3829 if (NULL == DevicePath) {
3830 return BDS_EFI_UNSUPPORT;
3831 }
3832
3833 TempDevicePath = DevicePath;
3834
3835 while (!IsDevicePathEndType (TempDevicePath)) {
3836 switch (DevicePathType (TempDevicePath)) {
3837 case BBS_DEVICE_PATH:
3838 return BDS_LEGACY_BBS_BOOT;
3839 case MEDIA_DEVICE_PATH:
3840 if (DevicePathSubType (TempDevicePath) == MEDIA_HARDDRIVE_DP) {
3841 return BDS_EFI_MEDIA_HD_BOOT;
3842 } else if (DevicePathSubType (TempDevicePath) == MEDIA_CDROM_DP) {
3843 return BDS_EFI_MEDIA_CDROM_BOOT;
3844 }
3845 break;
3846 case ACPI_DEVICE_PATH:
3847 Acpi = (ACPI_HID_DEVICE_PATH *) TempDevicePath;
3848 if (EISA_ID_TO_NUM (Acpi->HID) == 0x0604) {
3849 return BDS_EFI_ACPI_FLOPPY_BOOT;
3850 }
3851 break;
3852 case MESSAGING_DEVICE_PATH:
3853 //
3854 // Get the last device path node
3855 //
3856 LastDeviceNode = NextDevicePathNode (TempDevicePath);
3857 if (DevicePathSubType(LastDeviceNode) == MSG_DEVICE_LOGICAL_UNIT_DP) {
3858 //
3859 // if the next node type is Device Logical Unit, which specify the Logical Unit Number (LUN),
3860 // skip it
3861 //
3862 LastDeviceNode = NextDevicePathNode (LastDeviceNode);
3863 }
3864 //
3865 // if the device path not only point to driver device, it is not a messaging device path,
3866 //
3867 if (!IsDevicePathEndType (LastDeviceNode)) {
3868 break;
3869 }
3870
3871 switch (DevicePathSubType (TempDevicePath)) {
3872 case MSG_ATAPI_DP:
3873 BootType = BDS_EFI_MESSAGE_ATAPI_BOOT;
3874 break;
3875
3876 case MSG_USB_DP:
3877 BootType = BDS_EFI_MESSAGE_USB_DEVICE_BOOT;
3878 break;
3879
3880 case MSG_SCSI_DP:
3881 BootType = BDS_EFI_MESSAGE_SCSI_BOOT;
3882 break;
3883
3884 case MSG_SATA_DP:
3885 BootType = BDS_EFI_MESSAGE_SATA_BOOT;
3886 break;
3887
3888 case MSG_MAC_ADDR_DP:
3889 case MSG_VLAN_DP:
3890 case MSG_IPv4_DP:
3891 case MSG_IPv6_DP:
3892 BootType = BDS_EFI_MESSAGE_MAC_BOOT;
3893 break;
3894
3895 default:
3896 BootType = BDS_EFI_MESSAGE_MISC_BOOT;
3897 break;
3898 }
3899 return BootType;
3900
3901 default:
3902 break;
3903 }
3904 TempDevicePath = NextDevicePathNode (TempDevicePath);
3905 }
3906
3907 return BDS_EFI_UNSUPPORT;
3908 }
3909
3910 /**
3911 Check whether the Device path in a boot option point to a valid bootable device,
3912 And if CheckMedia is true, check the device is ready to boot now.
3913
3914 @param DevPath the Device path in a boot option
3915 @param CheckMedia if true, check the device is ready to boot now.
3916
3917 @retval TRUE the Device path is valid
3918 @retval FALSE the Device path is invalid .
3919
3920 **/
3921 BOOLEAN
3922 EFIAPI
3923 BdsLibIsValidEFIBootOptDevicePath (
3924 IN EFI_DEVICE_PATH_PROTOCOL *DevPath,
3925 IN BOOLEAN CheckMedia
3926 )
3927 {
3928 return BdsLibIsValidEFIBootOptDevicePathExt (DevPath, CheckMedia, NULL);
3929 }
3930
3931 /**
3932 Check whether the Device path in a boot option point to a valid bootable device,
3933 And if CheckMedia is true, check the device is ready to boot now.
3934 If Description is not NULL and the device path point to a fixed BlockIo
3935 device, check the description whether conflict with other auto-created
3936 boot options.
3937
3938 @param DevPath the Device path in a boot option
3939 @param CheckMedia if true, check the device is ready to boot now.
3940 @param Description the description in a boot option
3941
3942 @retval TRUE the Device path is valid
3943 @retval FALSE the Device path is invalid .
3944
3945 **/
3946 BOOLEAN
3947 EFIAPI
3948 BdsLibIsValidEFIBootOptDevicePathExt (
3949 IN EFI_DEVICE_PATH_PROTOCOL *DevPath,
3950 IN BOOLEAN CheckMedia,
3951 IN CHAR16 *Description
3952 )
3953 {
3954 EFI_STATUS Status;
3955 EFI_HANDLE Handle;
3956 EFI_DEVICE_PATH_PROTOCOL *TempDevicePath;
3957 EFI_DEVICE_PATH_PROTOCOL *LastDeviceNode;
3958 EFI_BLOCK_IO_PROTOCOL *BlockIo;
3959
3960 TempDevicePath = DevPath;
3961 LastDeviceNode = DevPath;
3962
3963 //
3964 // Check if it's a valid boot option for network boot device.
3965 // Check if there is EfiLoadFileProtocol installed.
3966 // If yes, that means there is a boot option for network.
3967 //
3968 Status = gBS->LocateDevicePath (
3969 &gEfiLoadFileProtocolGuid,
3970 &TempDevicePath,
3971 &Handle
3972 );
3973 if (EFI_ERROR (Status)) {
3974 //
3975 // Device not present so see if we need to connect it
3976 //
3977 TempDevicePath = DevPath;
3978 BdsLibConnectDevicePath (TempDevicePath);
3979 Status = gBS->LocateDevicePath (
3980 &gEfiLoadFileProtocolGuid,
3981 &TempDevicePath,
3982 &Handle
3983 );
3984 }
3985
3986 if (!EFI_ERROR (Status)) {
3987 if (!IsDevicePathEnd (TempDevicePath)) {
3988 //
3989 // LoadFile protocol is not installed on handle with exactly the same DevPath
3990 //
3991 return FALSE;
3992 }
3993
3994 if (CheckMedia) {
3995 //
3996 // Test if it is ready to boot now
3997 //
3998 if (BdsLibNetworkBootWithMediaPresent(DevPath)) {
3999 return TRUE;
4000 }
4001 } else {
4002 return TRUE;
4003 }
4004 }
4005
4006 //
4007 // If the boot option point to a file, it is a valid EFI boot option,
4008 // and assume it is ready to boot now
4009 //
4010 while (!IsDevicePathEnd (TempDevicePath)) {
4011 //
4012 // If there is USB Class or USB WWID device path node, treat it as valid EFI
4013 // Boot Option. BdsExpandUsbShortFormDevicePath () will be used to expand it
4014 // to full device path.
4015 //
4016 if ((DevicePathType (TempDevicePath) == MESSAGING_DEVICE_PATH) &&
4017 ((DevicePathSubType (TempDevicePath) == MSG_USB_CLASS_DP) ||
4018 (DevicePathSubType (TempDevicePath) == MSG_USB_WWID_DP))) {
4019 return TRUE;
4020 }
4021
4022 LastDeviceNode = TempDevicePath;
4023 TempDevicePath = NextDevicePathNode (TempDevicePath);
4024 }
4025 if ((DevicePathType (LastDeviceNode) == MEDIA_DEVICE_PATH) &&
4026 (DevicePathSubType (LastDeviceNode) == MEDIA_FILEPATH_DP)) {
4027 return TRUE;
4028 }
4029
4030 //
4031 // Check if it's a valid boot option for internal FV application
4032 //
4033 if (EfiGetNameGuidFromFwVolDevicePathNode ((MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *) LastDeviceNode) != NULL) {
4034 //
4035 // If the boot option point to internal FV application, make sure it is valid
4036 //
4037 TempDevicePath = DevPath;
4038 Status = BdsLibUpdateFvFileDevicePath (
4039 &TempDevicePath,
4040 EfiGetNameGuidFromFwVolDevicePathNode ((MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *) LastDeviceNode)
4041 );
4042 if (Status == EFI_ALREADY_STARTED) {
4043 return TRUE;
4044 } else {
4045 if (Status == EFI_SUCCESS) {
4046 FreePool (TempDevicePath);
4047 }
4048 return FALSE;
4049 }
4050 }
4051
4052 //
4053 // If the boot option point to a blockIO device:
4054 // if it is a removable blockIo device, it is valid.
4055 // if it is a fixed blockIo device, check its description confliction.
4056 //
4057 TempDevicePath = DevPath;
4058 Status = gBS->LocateDevicePath (&gEfiBlockIoProtocolGuid, &TempDevicePath, &Handle);
4059 if (EFI_ERROR (Status)) {
4060 //
4061 // Device not present so see if we need to connect it
4062 //
4063 Status = BdsLibConnectDevicePath (DevPath);
4064 if (!EFI_ERROR (Status)) {
4065 //
4066 // Try again to get the Block Io protocol after we did the connect
4067 //
4068 TempDevicePath = DevPath;
4069 Status = gBS->LocateDevicePath (&gEfiBlockIoProtocolGuid, &TempDevicePath, &Handle);
4070 }
4071 }
4072
4073 if (!EFI_ERROR (Status)) {
4074 Status = gBS->HandleProtocol (Handle, &gEfiBlockIoProtocolGuid, (VOID **)&BlockIo);
4075 if (!EFI_ERROR (Status)) {
4076 if (CheckMedia) {
4077 //
4078 // Test if it is ready to boot now
4079 //
4080 if (BdsLibGetBootableHandle (DevPath) != NULL) {
4081 return TRUE;
4082 }
4083 } else {
4084 return TRUE;
4085 }
4086 }
4087 } else {
4088 //
4089 // 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,
4090 //
4091 Status = gBS->LocateDevicePath (&gEfiSimpleFileSystemProtocolGuid, &TempDevicePath, &Handle);
4092 if (!EFI_ERROR (Status)) {
4093 if (CheckMedia) {
4094 //
4095 // Test if it is ready to boot now
4096 //
4097 if (BdsLibGetBootableHandle (DevPath) != NULL) {
4098 return TRUE;
4099 }
4100 } else {
4101 return TRUE;
4102 }
4103 }
4104 }
4105
4106 return FALSE;
4107 }
4108
4109
4110 /**
4111 According to a file guild, check a Fv file device path is valid. If it is invalid,
4112 try to return the valid device path.
4113 FV address maybe changes for memory layout adjust from time to time, use this function
4114 could promise the Fv file device path is right.
4115
4116 @param DevicePath on input, the Fv file device path need to check on
4117 output, the updated valid Fv file device path
4118 @param FileGuid the Fv file guild
4119
4120 @retval EFI_INVALID_PARAMETER the input DevicePath or FileGuid is invalid
4121 parameter
4122 @retval EFI_UNSUPPORTED the input DevicePath does not contain Fv file
4123 guild at all
4124 @retval EFI_ALREADY_STARTED the input DevicePath has pointed to Fv file, it is
4125 valid
4126 @retval EFI_SUCCESS has successfully updated the invalid DevicePath,
4127 and return the updated device path in DevicePath
4128
4129 **/
4130 EFI_STATUS
4131 EFIAPI
4132 BdsLibUpdateFvFileDevicePath (
4133 IN OUT EFI_DEVICE_PATH_PROTOCOL ** DevicePath,
4134 IN EFI_GUID *FileGuid
4135 )
4136 {
4137 EFI_DEVICE_PATH_PROTOCOL *TempDevicePath;
4138 EFI_DEVICE_PATH_PROTOCOL *LastDeviceNode;
4139 EFI_STATUS Status;
4140 EFI_GUID *GuidPoint;
4141 UINTN Index;
4142 UINTN FvHandleCount;
4143 EFI_HANDLE *FvHandleBuffer;
4144 EFI_FV_FILETYPE Type;
4145 UINTN Size;
4146 EFI_FV_FILE_ATTRIBUTES Attributes;
4147 UINT32 AuthenticationStatus;
4148 BOOLEAN FindFvFile;
4149 EFI_LOADED_IMAGE_PROTOCOL *LoadedImage;
4150 EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv;
4151 MEDIA_FW_VOL_FILEPATH_DEVICE_PATH FvFileNode;
4152 EFI_HANDLE FoundFvHandle;
4153 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
4154
4155 if ((DevicePath == NULL) || (*DevicePath == NULL)) {
4156 return EFI_INVALID_PARAMETER;
4157 }
4158 if (FileGuid == NULL) {
4159 return EFI_INVALID_PARAMETER;
4160 }
4161
4162 //
4163 // Check whether the device path point to the default the input Fv file
4164 //
4165 TempDevicePath = *DevicePath;
4166 LastDeviceNode = TempDevicePath;
4167 while (!IsDevicePathEnd (TempDevicePath)) {
4168 LastDeviceNode = TempDevicePath;
4169 TempDevicePath = NextDevicePathNode (TempDevicePath);
4170 }
4171 GuidPoint = EfiGetNameGuidFromFwVolDevicePathNode (
4172 (MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *) LastDeviceNode
4173 );
4174 if (GuidPoint == NULL) {
4175 //
4176 // if this option does not points to a Fv file, just return EFI_UNSUPPORTED
4177 //
4178 return EFI_UNSUPPORTED;
4179 }
4180 if (!CompareGuid (GuidPoint, FileGuid)) {
4181 //
4182 // If the Fv file is not the input file guid, just return EFI_UNSUPPORTED
4183 //
4184 return EFI_UNSUPPORTED;
4185 }
4186
4187 //
4188 // Check whether the input Fv file device path is valid
4189 //
4190 TempDevicePath = *DevicePath;
4191 FoundFvHandle = NULL;
4192 Status = gBS->LocateDevicePath (
4193 &gEfiFirmwareVolume2ProtocolGuid,
4194 &TempDevicePath,
4195 &FoundFvHandle
4196 );
4197 if (!EFI_ERROR (Status)) {
4198 Status = gBS->HandleProtocol (
4199 FoundFvHandle,
4200 &gEfiFirmwareVolume2ProtocolGuid,
4201 (VOID **) &Fv
4202 );
4203 if (!EFI_ERROR (Status)) {
4204 //
4205 // Set FV ReadFile Buffer as NULL, only need to check whether input Fv file exist there
4206 //
4207 Status = Fv->ReadFile (
4208 Fv,
4209 FileGuid,
4210 NULL,
4211 &Size,
4212 &Type,
4213 &Attributes,
4214 &AuthenticationStatus
4215 );
4216 if (!EFI_ERROR (Status)) {
4217 return EFI_ALREADY_STARTED;
4218 }
4219 }
4220 }
4221
4222 //
4223 // Look for the input wanted FV file in current FV
4224 // First, try to look for in Bds own FV. Bds and input wanted FV file usually are in the same FV
4225 //
4226 FindFvFile = FALSE;
4227 FoundFvHandle = NULL;
4228 Status = gBS->HandleProtocol (
4229 gImageHandle,
4230 &gEfiLoadedImageProtocolGuid,
4231 (VOID **) &LoadedImage
4232 );
4233 if (!EFI_ERROR (Status)) {
4234 Status = gBS->HandleProtocol (
4235 LoadedImage->DeviceHandle,
4236 &gEfiFirmwareVolume2ProtocolGuid,
4237 (VOID **) &Fv
4238 );
4239 if (!EFI_ERROR (Status)) {
4240 Status = Fv->ReadFile (
4241 Fv,
4242 FileGuid,
4243 NULL,
4244 &Size,
4245 &Type,
4246 &Attributes,
4247 &AuthenticationStatus
4248 );
4249 if (!EFI_ERROR (Status)) {
4250 FindFvFile = TRUE;
4251 FoundFvHandle = LoadedImage->DeviceHandle;
4252 }
4253 }
4254 }
4255 //
4256 // Second, if fail to find, try to enumerate all FV
4257 //
4258 if (!FindFvFile) {
4259 FvHandleBuffer = NULL;
4260 gBS->LocateHandleBuffer (
4261 ByProtocol,
4262 &gEfiFirmwareVolume2ProtocolGuid,
4263 NULL,
4264 &FvHandleCount,
4265 &FvHandleBuffer
4266 );
4267 for (Index = 0; Index < FvHandleCount; Index++) {
4268 gBS->HandleProtocol (
4269 FvHandleBuffer[Index],
4270 &gEfiFirmwareVolume2ProtocolGuid,
4271 (VOID **) &Fv
4272 );
4273
4274 Status = Fv->ReadFile (
4275 Fv,
4276 FileGuid,
4277 NULL,
4278 &Size,
4279 &Type,
4280 &Attributes,
4281 &AuthenticationStatus
4282 );
4283 if (EFI_ERROR (Status)) {
4284 //
4285 // Skip if input Fv file not in the FV
4286 //
4287 continue;
4288 }
4289 FindFvFile = TRUE;
4290 FoundFvHandle = FvHandleBuffer[Index];
4291 break;
4292 }
4293
4294 if (FvHandleBuffer != NULL) {
4295 FreePool (FvHandleBuffer);
4296 }
4297 }
4298
4299 if (FindFvFile) {
4300 //
4301 // Build the shell device path
4302 //
4303 NewDevicePath = DevicePathFromHandle (FoundFvHandle);
4304 EfiInitializeFwVolDevicepathNode (&FvFileNode, FileGuid);
4305 NewDevicePath = AppendDevicePathNode (NewDevicePath, (EFI_DEVICE_PATH_PROTOCOL *) &FvFileNode);
4306 *DevicePath = NewDevicePath;
4307 return EFI_SUCCESS;
4308 }
4309 return EFI_NOT_FOUND;
4310 }