]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/SetupBrowserDxe/Setup.c
Retire Extended HII library class.
[mirror_edk2.git] / MdeModulePkg / Universal / SetupBrowserDxe / Setup.c
1 /** @file
2 Entry and initialization module for the browser.
3
4 Copyright (c) 2007 - 2008, Intel Corporation
5 All rights reserved. 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 "Setup.h"
16 #include "Ui.h"
17
18
19 SETUP_DRIVER_PRIVATE_DATA mPrivateData = {
20 SETUP_DRIVER_SIGNATURE,
21 NULL,
22 {
23 SendForm,
24 BrowserCallback
25 }
26 };
27
28 EFI_HII_DATABASE_PROTOCOL *mHiiDatabase;
29 EFI_HII_STRING_PROTOCOL *mHiiString;
30 EFI_HII_CONFIG_ROUTING_PROTOCOL *mHiiConfigRouting;
31
32 BANNER_DATA *BannerData;
33 EFI_HII_HANDLE FrontPageHandle;
34 UINTN gClassOfVfr;
35 UINTN gFunctionKeySetting;
36 BOOLEAN gResetRequired;
37 BOOLEAN gNvUpdateRequired;
38 EFI_HII_HANDLE gHiiHandle;
39 UINT16 gDirection;
40 EFI_SCREEN_DESCRIPTOR gScreenDimensions;
41 BOOLEAN gUpArrow;
42 BOOLEAN gDownArrow;
43
44 //
45 // Browser Global Strings
46 //
47 CHAR16 *gFunctionOneString;
48 CHAR16 *gFunctionTwoString;
49 CHAR16 *gFunctionNineString;
50 CHAR16 *gFunctionTenString;
51 CHAR16 *gEnterString;
52 CHAR16 *gEnterCommitString;
53 CHAR16 *gEnterEscapeString;
54 CHAR16 *gEscapeString;
55 CHAR16 *gSaveFailed;
56 CHAR16 *gMoveHighlight;
57 CHAR16 *gMakeSelection;
58 CHAR16 *gDecNumericInput;
59 CHAR16 *gHexNumericInput;
60 CHAR16 *gToggleCheckBox;
61 CHAR16 *gPromptForData;
62 CHAR16 *gPromptForPassword;
63 CHAR16 *gPromptForNewPassword;
64 CHAR16 *gConfirmPassword;
65 CHAR16 *gConfirmError;
66 CHAR16 *gPassowordInvalid;
67 CHAR16 *gPressEnter;
68 CHAR16 *gEmptyString;
69 CHAR16 *gAreYouSure;
70 CHAR16 *gYesResponse;
71 CHAR16 *gNoResponse;
72 CHAR16 *gMiniString;
73 CHAR16 *gPlusString;
74 CHAR16 *gMinusString;
75 CHAR16 *gAdjustNumber;
76 CHAR16 *gSaveChanges;
77 CHAR16 *gOptionMismatch;
78
79 CHAR16 gPromptBlockWidth;
80 CHAR16 gOptionBlockWidth;
81 CHAR16 gHelpBlockWidth;
82
83 EFI_GUID gZeroGuid = {0, 0, 0, {0, 0, 0, 0, 0, 0, 0, 0}};
84 EFI_GUID gSetupBrowserGuid = {
85 0xab368524, 0xb60c, 0x495b, {0xa0, 0x9, 0x12, 0xe8, 0x5b, 0x1a, 0xea, 0x32}
86 };
87
88 FUNCTIION_KEY_SETTING gFunctionKeySettingTable[] = {
89 //
90 // Boot Manager
91 //
92 {
93 {
94 0x847bc3fe,
95 0xb974,
96 0x446d,
97 {
98 0x94,
99 0x49,
100 0x5a,
101 0xd5,
102 0x41,
103 0x2e,
104 0x99,
105 0x3b
106 }
107 },
108 NONE_FUNCTION_KEY_SETTING
109 },
110 //
111 // Device Manager
112 //
113 {
114 {
115 0x3ebfa8e6,
116 0x511d,
117 0x4b5b,
118 {
119 0xa9,
120 0x5f,
121 0xfb,
122 0x38,
123 0x26,
124 0xf,
125 0x1c,
126 0x27
127 }
128 },
129 NONE_FUNCTION_KEY_SETTING
130 },
131 //
132 // BMM FormSet.
133 //
134 {
135 {
136 0x642237c7,
137 0x35d4,
138 0x472d,
139 {
140 0x83,
141 0x65,
142 0x12,
143 0xe0,
144 0xcc,
145 0xf2,
146 0x7a,
147 0x22
148 }
149 },
150 NONE_FUNCTION_KEY_SETTING
151 },
152 //
153 // BMM File Explorer FormSet.
154 //
155 {
156 {
157 0x1f2d63e1,
158 0xfebd,
159 0x4dc7,
160 {
161 0x9c,
162 0xc5,
163 0xba,
164 0x2b,
165 0x1c,
166 0xef,
167 0x9c,
168 0x5b
169 }
170 },
171 NONE_FUNCTION_KEY_SETTING
172 },
173 };
174
175 /**
176 This is the routine which an external caller uses to direct the browser
177 where to obtain it's information.
178
179
180 @param This The Form Browser protocol instanse.
181 @param Handles A pointer to an array of Handles. If HandleCount > 1 we
182 display a list of the formsets for the handles specified.
183 @param HandleCount The number of Handles specified in Handle.
184 @param FormSetGuid This field points to the EFI_GUID which must match the Guid
185 field in the EFI_IFR_FORM_SET op-code for the specified
186 forms-based package. If FormSetGuid is NULL, then this
187 function will display the first found forms package.
188 @param FormId This field specifies which EFI_IFR_FORM to render as the first
189 displayable page. If this field has a value of 0x0000, then
190 the forms browser will render the specified forms in their encoded order.
191 @param ScreenDimensions Points to recommended form dimensions, including any non-content area, in
192 characters.
193 @param ActionRequest Points to the action recommended by the form.
194
195 @retval EFI_SUCCESS The function completed successfully.
196 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.
197 @retval EFI_NOT_FOUND No valid forms could be found to display.
198
199 **/
200 EFI_STATUS
201 EFIAPI
202 SendForm (
203 IN CONST EFI_FORM_BROWSER2_PROTOCOL *This,
204 IN EFI_HII_HANDLE *Handles,
205 IN UINTN HandleCount,
206 IN EFI_GUID *FormSetGuid, OPTIONAL
207 IN UINT16 FormId, OPTIONAL
208 IN CONST EFI_SCREEN_DESCRIPTOR *ScreenDimensions, OPTIONAL
209 OUT EFI_BROWSER_ACTION_REQUEST *ActionRequest OPTIONAL
210 )
211 {
212 EFI_STATUS Status;
213 UI_MENU_SELECTION *Selection;
214 UINTN Index;
215 FORM_BROWSER_FORMSET *FormSet;
216
217 Status = EFI_SUCCESS;
218 ZeroMem (&gScreenDimensions, sizeof (EFI_SCREEN_DESCRIPTOR));
219
220 //
221 // Seed the dimensions in the global
222 //
223 gST->ConOut->QueryMode (
224 gST->ConOut,
225 gST->ConOut->Mode->Mode,
226 &gScreenDimensions.RightColumn,
227 &gScreenDimensions.BottomRow
228 );
229
230 if (ScreenDimensions != NULL) {
231 //
232 // Check local dimension vs. global dimension.
233 //
234 if ((gScreenDimensions.RightColumn < ScreenDimensions->RightColumn) ||
235 (gScreenDimensions.BottomRow < ScreenDimensions->BottomRow)
236 ) {
237 return EFI_INVALID_PARAMETER;
238 } else {
239 //
240 // Local dimension validation.
241 //
242 if ((ScreenDimensions->RightColumn > ScreenDimensions->LeftColumn) &&
243 (ScreenDimensions->BottomRow > ScreenDimensions->TopRow) &&
244 ((ScreenDimensions->RightColumn - ScreenDimensions->LeftColumn) > 2) &&
245 (
246 (ScreenDimensions->BottomRow - ScreenDimensions->TopRow) > STATUS_BAR_HEIGHT +
247 SCROLL_ARROW_HEIGHT *
248 2 +
249 FRONT_PAGE_HEADER_HEIGHT +
250 FOOTER_HEIGHT +
251 1
252 )
253 ) {
254 CopyMem (&gScreenDimensions, (VOID *) ScreenDimensions, sizeof (EFI_SCREEN_DESCRIPTOR));
255 } else {
256 return EFI_INVALID_PARAMETER;
257 }
258 }
259 }
260
261 gOptionBlockWidth = (CHAR16) ((gScreenDimensions.RightColumn - gScreenDimensions.LeftColumn) / 3);
262 gHelpBlockWidth = gOptionBlockWidth;
263 gPromptBlockWidth = gOptionBlockWidth;
264
265 //
266 // Initialize the strings for the browser, upon exit of the browser, the strings will be freed
267 //
268 InitializeBrowserStrings ();
269
270 gFunctionKeySetting = DEFAULT_FUNCTION_KEY_SETTING;
271 gClassOfVfr = EFI_SETUP_APPLICATION_SUBCLASS;
272
273 //
274 // Ensure we are in Text mode
275 //
276 gST->ConOut->SetAttribute (gST->ConOut, EFI_TEXT_ATTR (EFI_LIGHTGRAY, EFI_BLACK));
277
278 for (Index = 0; Index < HandleCount; Index++) {
279 Selection = AllocateZeroPool (sizeof (UI_MENU_SELECTION));
280 ASSERT (Selection != NULL);
281
282 Selection->Handle = Handles[Index];
283 if (FormSetGuid != NULL) {
284 CopyMem (&Selection->FormSetGuid, FormSetGuid, sizeof (EFI_GUID));
285 Selection->FormId = FormId;
286 }
287
288 do {
289 FormSet = AllocateZeroPool (sizeof (FORM_BROWSER_FORMSET));
290 ASSERT (FormSet != NULL);
291
292 //
293 // Initialize internal data structures of FormSet
294 //
295 Status = InitializeFormSet (Selection->Handle, &Selection->FormSetGuid, FormSet);
296 if (EFI_ERROR (Status) || IsListEmpty (&FormSet->FormListHead)) {
297 DestroyFormSet (FormSet);
298 break;
299 }
300 Selection->FormSet = FormSet;
301
302 //
303 // Initialize current settings of Questions in this FormSet
304 //
305 Status = InitializeCurrentSetting (FormSet);
306 if (EFI_ERROR (Status)) {
307 DestroyFormSet (FormSet);
308 break;
309 }
310
311 //
312 // Display this formset
313 //
314 gCurrentSelection = Selection;
315
316 Status = SetupBrowser (Selection);
317
318 gCurrentSelection = NULL;
319 DestroyFormSet (FormSet);
320
321 if (EFI_ERROR (Status)) {
322 break;
323 }
324
325 } while (Selection->Action == UI_ACTION_REFRESH_FORMSET);
326
327 FreePool (Selection);
328 }
329
330 if (ActionRequest != NULL) {
331 *ActionRequest = EFI_BROWSER_ACTION_REQUEST_NONE;
332 if (gResetRequired) {
333 *ActionRequest = EFI_BROWSER_ACTION_REQUEST_RESET;
334 }
335 }
336
337 FreeBrowserStrings ();
338
339 gST->ConOut->SetAttribute (gST->ConOut, EFI_TEXT_ATTR (EFI_LIGHTGRAY, EFI_BLACK));
340 gST->ConOut->ClearScreen (gST->ConOut);
341
342 return Status;
343 }
344
345
346 /**
347 This function is called by a callback handler to retrieve uncommitted state
348 data from the browser.
349
350 @param This A pointer to the EFI_FORM_BROWSER2_PROTOCOL
351 instance.
352 @param ResultsDataSize A pointer to the size of the buffer associated
353 with ResultsData.
354 @param ResultsData A string returned from an IFR browser or
355 equivalent. The results string will have no
356 routing information in them.
357 @param RetrieveData A BOOLEAN field which allows an agent to retrieve
358 (if RetrieveData = TRUE) data from the uncommitted
359 browser state information or set (if RetrieveData
360 = FALSE) data in the uncommitted browser state
361 information.
362 @param VariableGuid An optional field to indicate the target variable
363 GUID name to use.
364 @param VariableName An optional field to indicate the target
365 human-readable variable name.
366
367 @retval EFI_SUCCESS The results have been distributed or are awaiting
368 distribution.
369 @retval EFI_BUFFER_TOO_SMALL The ResultsDataSize specified was too small to
370 contain the results data.
371
372 **/
373 EFI_STATUS
374 EFIAPI
375 BrowserCallback (
376 IN CONST EFI_FORM_BROWSER2_PROTOCOL *This,
377 IN OUT UINTN *ResultsDataSize,
378 IN OUT EFI_STRING ResultsData,
379 IN BOOLEAN RetrieveData,
380 IN CONST EFI_GUID *VariableGuid, OPTIONAL
381 IN CONST CHAR16 *VariableName OPTIONAL
382 )
383 {
384 EFI_STATUS Status;
385 LIST_ENTRY *Link;
386 FORMSET_STORAGE *Storage;
387 FORM_BROWSER_FORMSET *FormSet;
388 BOOLEAN Found;
389 CHAR16 *ConfigResp;
390 CHAR16 *StrPtr;
391 UINTN BufferSize;
392 UINTN TmpSize;
393
394 if (ResultsDataSize == NULL || ResultsData == NULL) {
395 return EFI_INVALID_PARAMETER;
396 }
397
398 if (gCurrentSelection == NULL) {
399 return EFI_NOT_READY;
400 }
401
402 Storage = NULL;
403 ConfigResp = NULL;
404 FormSet = gCurrentSelection->FormSet;
405
406 //
407 // Find target storage
408 //
409 Link = GetFirstNode (&FormSet->StorageListHead);
410 if (IsNull (&FormSet->StorageListHead, Link)) {
411 return EFI_UNSUPPORTED;
412 }
413
414 if (VariableGuid != NULL) {
415 //
416 // Try to find target storage
417 //
418 Found = FALSE;
419 while (!IsNull (&FormSet->StorageListHead, Link)) {
420 Storage = FORMSET_STORAGE_FROM_LINK (Link);
421 Link = GetNextNode (&FormSet->StorageListHead, Link);
422
423 if (CompareGuid (&Storage->Guid, (EFI_GUID *) VariableGuid)) {
424 if (Storage->Type == EFI_HII_VARSTORE_BUFFER) {
425 //
426 // Buffer storage require both GUID and Name
427 //
428 if (VariableName == NULL) {
429 return EFI_NOT_FOUND;
430 }
431
432 if (StrCmp (Storage->Name, (CHAR16 *) VariableName) != 0) {
433 continue;
434 }
435 }
436 Found = TRUE;
437 break;
438 }
439 }
440
441 if (!Found) {
442 return EFI_NOT_FOUND;
443 }
444 } else {
445 //
446 // GUID/Name is not specified, take the first storage in FormSet
447 //
448 Storage = FORMSET_STORAGE_FROM_LINK (Link);
449 }
450
451 if (RetrieveData) {
452 //
453 // Skip if there is no RequestElement
454 //
455 if (Storage->ElementCount == 0) {
456 return EFI_SUCCESS;
457 }
458
459 //
460 // Generate <ConfigResp>
461 //
462 Status = StorageToConfigResp (Storage, &ConfigResp);
463 if (EFI_ERROR (Status)) {
464 return Status;
465 }
466
467 //
468 // Skip <ConfigHdr> and '&' to point to <ConfigBody>
469 //
470 StrPtr = ConfigResp + StrLen (Storage->ConfigHdr) + 1;
471
472 BufferSize = StrSize (StrPtr);
473 if (*ResultsDataSize < BufferSize) {
474 *ResultsDataSize = BufferSize;
475
476 FreePool (ConfigResp);
477 return EFI_BUFFER_TOO_SMALL;
478 }
479
480 *ResultsDataSize = BufferSize;
481 CopyMem (ResultsData, StrPtr, BufferSize);
482
483 FreePool (ConfigResp);
484 } else {
485 //
486 // Prepare <ConfigResp>
487 //
488 TmpSize = StrLen (ResultsData);
489 BufferSize = (TmpSize + StrLen (Storage->ConfigHdr) + 2) * sizeof (CHAR16);
490 ConfigResp = AllocateZeroPool (BufferSize);
491 ASSERT (ConfigResp != NULL);
492
493 StrCpy (ConfigResp, Storage->ConfigHdr);
494 StrCat (ConfigResp, L"&");
495 StrCat (ConfigResp, ResultsData);
496
497 //
498 // Update Browser uncommited data
499 //
500 Status = ConfigRespToStorage (Storage, ConfigResp);
501 if (EFI_ERROR (Status)) {
502 return Status;
503 }
504 }
505
506 return EFI_SUCCESS;
507 }
508
509
510 /**
511 Initialize Setup Browser driver.
512
513 @param ImageHandle The image handle.
514 @param SystemTable The system table.
515
516 @retval EFI_SUCCESS The Setup Browser module is initialized correctly..
517 @return Other value if failed to initialize the Setup Browser module.
518
519 **/
520 EFI_STATUS
521 EFIAPI
522 InitializeSetup (
523 IN EFI_HANDLE ImageHandle,
524 IN EFI_SYSTEM_TABLE *SystemTable
525 )
526 {
527 EFI_STATUS Status;
528 EFI_HII_PACKAGE_LIST_HEADER *PackageList;
529
530 //
531 // Locate required Hii relative protocols
532 //
533 Status = gBS->LocateProtocol (
534 &gEfiHiiDatabaseProtocolGuid,
535 NULL,
536 (VOID **) &mHiiDatabase
537 );
538 ASSERT_EFI_ERROR (Status);
539
540 Status = gBS->LocateProtocol (
541 &gEfiHiiStringProtocolGuid,
542 NULL,
543 (VOID **) &mHiiString
544 );
545 ASSERT_EFI_ERROR (Status);
546
547 Status = gBS->LocateProtocol (
548 &gEfiHiiConfigRoutingProtocolGuid,
549 NULL,
550 (VOID **) &mHiiConfigRouting
551 );
552 ASSERT_EFI_ERROR (Status);
553
554 //
555 // Publish our HII data
556 //
557 PackageList = HiiLibPreparePackageList (1, &gSetupBrowserGuid, SetupBrowserStrings);
558 ASSERT (PackageList != NULL);
559 Status = mHiiDatabase->NewPackageList (
560 mHiiDatabase,
561 PackageList,
562 ImageHandle,
563 &gHiiHandle
564 );
565 ASSERT_EFI_ERROR (Status);
566
567 //
568 // Initialize Driver private data
569 //
570 BannerData = AllocateZeroPool (sizeof (BANNER_DATA));
571 ASSERT (BannerData != NULL);
572
573 //
574 // Install FormBrowser2 protocol
575 //
576 mPrivateData.Handle = NULL;
577 Status = gBS->InstallProtocolInterface (
578 &mPrivateData.Handle,
579 &gEfiFormBrowser2ProtocolGuid,
580 EFI_NATIVE_INTERFACE,
581 &mPrivateData.FormBrowser2
582 );
583 ASSERT_EFI_ERROR (Status);
584
585 return Status;
586 }
587
588
589 /**
590 Create a new string in HII Package List.
591
592 @param String The String to be added
593 @param HiiHandle The package list in the HII database to insert the
594 specified string.
595
596 @return The output string.
597
598 **/
599 EFI_STRING_ID
600 NewString (
601 IN CHAR16 *String,
602 IN EFI_HII_HANDLE HiiHandle
603 )
604 {
605 EFI_STRING_ID StringId;
606 EFI_STATUS Status;
607
608 StringId = 0;
609 Status = HiiLibNewString (HiiHandle, &StringId, String);
610 ASSERT_EFI_ERROR (Status);
611
612 return StringId;
613 }
614
615
616 /**
617 Delete a string from HII Package List.
618
619 @param StringId Id of the string in HII database.
620 @param HiiHandle The HII package list handle.
621
622 @retval EFI_SUCCESS The string was deleted successfully.
623
624 **/
625 EFI_STATUS
626 DeleteString (
627 IN EFI_STRING_ID StringId,
628 IN EFI_HII_HANDLE HiiHandle
629 )
630 {
631 CHAR16 NullChar;
632
633 NullChar = CHAR_NULL;
634 return HiiLibSetString (HiiHandle, StringId, &NullChar);
635 }
636
637
638 /**
639 Get the string based on the StringId and HII Package List Handle.
640
641 @param Token The String's ID.
642 @param HiiHandle The package list in the HII database to search for
643 the specified string.
644
645 @return The output string.
646
647 **/
648 CHAR16 *
649 GetToken (
650 IN EFI_STRING_ID Token,
651 IN EFI_HII_HANDLE HiiHandle
652 )
653 {
654 EFI_STATUS Status;
655 CHAR16 *String;
656 UINTN BufferLength;
657
658 //
659 // Set default string size assumption at no more than 256 bytes
660 //
661 BufferLength = 0x100;
662 String = AllocateZeroPool (BufferLength);
663 ASSERT (String != NULL);
664
665 Status = HiiLibGetString (HiiHandle, Token, String, &BufferLength);
666
667 if (Status == EFI_BUFFER_TOO_SMALL) {
668 FreePool (String);
669 String = AllocateZeroPool (BufferLength);
670 ASSERT (String != NULL);
671
672 Status = HiiLibGetString (HiiHandle, Token, String, &BufferLength);
673 }
674 ASSERT_EFI_ERROR (Status);
675
676 return String;
677 }
678
679
680 /**
681 Allocate new memory and then copy the Unicode string Source to Destination.
682
683 @param Dest Location to copy string
684 @param Src String to copy
685
686 **/
687 VOID
688 NewStringCpy (
689 IN OUT CHAR16 **Dest,
690 IN CHAR16 *Src
691 )
692 {
693 if (*Dest != NULL) {
694 FreePool (*Dest);
695 }
696 *Dest = AllocateCopyPool (StrSize (Src), Src);
697 ASSERT (*Dest != NULL);
698 }
699
700
701 /**
702 Allocate new memory and concatinate Source on the end of Destination.
703
704 @param Dest String to added to the end of.
705 @param Src String to concatinate.
706
707 **/
708 VOID
709 NewStringCat (
710 IN OUT CHAR16 **Dest,
711 IN CHAR16 *Src
712 )
713 {
714 CHAR16 *NewString;
715 UINTN TmpSize;
716
717 if (*Dest == NULL) {
718 NewStringCpy (Dest, Src);
719 return;
720 }
721
722 TmpSize = StrSize (*Dest);
723 NewString = AllocateZeroPool (TmpSize + StrSize (Src) - 1);
724 ASSERT (NewString != NULL);
725
726 StrCpy (NewString, *Dest);
727 StrCat (NewString, Src);
728
729 FreePool (*Dest);
730 *Dest = NewString;
731 }
732
733
734 /**
735 Synchronize Storage's Edit copy to Shadow copy.
736
737 @param Storage The Storage to be synchronized.
738
739 **/
740 VOID
741 SynchronizeStorage (
742 IN FORMSET_STORAGE *Storage
743 )
744 {
745 LIST_ENTRY *Link;
746 NAME_VALUE_NODE *Node;
747
748 switch (Storage->Type) {
749 case EFI_HII_VARSTORE_BUFFER:
750 CopyMem (Storage->Buffer, Storage->EditBuffer, Storage->Size);
751 break;
752
753 case EFI_HII_VARSTORE_NAME_VALUE:
754 Link = GetFirstNode (&Storage->NameValueListHead);
755 while (!IsNull (&Storage->NameValueListHead, Link)) {
756 Node = NAME_VALUE_NODE_FROM_LINK (Link);
757
758 NewStringCpy (&Node->Value, Node->EditValue);
759
760 Link = GetNextNode (&Storage->NameValueListHead, Link);
761 }
762 break;
763
764 case EFI_HII_VARSTORE_EFI_VARIABLE:
765 default:
766 break;
767 }
768 }
769
770
771 /**
772 Get Value for given Name from a NameValue Storage.
773
774 @param Storage The NameValue Storage.
775 @param Name The Name.
776 @param Value The retured Value.
777
778 @retval EFI_SUCCESS Value found for given Name.
779 @retval EFI_NOT_FOUND No such Name found in NameValue storage.
780
781 **/
782 EFI_STATUS
783 GetValueByName (
784 IN FORMSET_STORAGE *Storage,
785 IN CHAR16 *Name,
786 IN OUT CHAR16 **Value
787 )
788 {
789 LIST_ENTRY *Link;
790 NAME_VALUE_NODE *Node;
791
792 *Value = NULL;
793
794 Link = GetFirstNode (&Storage->NameValueListHead);
795 while (!IsNull (&Storage->NameValueListHead, Link)) {
796 Node = NAME_VALUE_NODE_FROM_LINK (Link);
797
798 if (StrCmp (Name, Node->Name) == 0) {
799 NewStringCpy (Value, Node->EditValue);
800 return EFI_SUCCESS;
801 }
802
803 Link = GetNextNode (&Storage->NameValueListHead, Link);
804 }
805
806 return EFI_NOT_FOUND;
807 }
808
809
810 /**
811 Set Value of given Name in a NameValue Storage.
812
813 @param Storage The NameValue Storage.
814 @param Name The Name.
815 @param Value The Value to set.
816
817 @retval EFI_SUCCESS Value found for given Name.
818 @retval EFI_NOT_FOUND No such Name found in NameValue storage.
819
820 **/
821 EFI_STATUS
822 SetValueByName (
823 IN FORMSET_STORAGE *Storage,
824 IN CHAR16 *Name,
825 IN CHAR16 *Value
826 )
827 {
828 LIST_ENTRY *Link;
829 NAME_VALUE_NODE *Node;
830
831 Link = GetFirstNode (&Storage->NameValueListHead);
832 while (!IsNull (&Storage->NameValueListHead, Link)) {
833 Node = NAME_VALUE_NODE_FROM_LINK (Link);
834
835 if (StrCmp (Name, Node->Name) == 0) {
836 if (Node->EditValue != NULL) {
837 FreePool (Node->EditValue);
838 }
839 Node->EditValue = AllocateCopyPool (StrSize (Value), Value);
840 ASSERT (Node->EditValue != NULL);
841 return EFI_SUCCESS;
842 }
843
844 Link = GetNextNode (&Storage->NameValueListHead, Link);
845 }
846
847 return EFI_NOT_FOUND;
848 }
849
850
851 /**
852 Convert setting of Buffer Storage or NameValue Storage to <ConfigResp>.
853
854 @param Storage The Storage to be conveted.
855 @param ConfigResp The returned <ConfigResp>.
856
857 @retval EFI_SUCCESS Convert success.
858 @retval EFI_INVALID_PARAMETER Incorrect storage type.
859
860 **/
861 EFI_STATUS
862 StorageToConfigResp (
863 IN FORMSET_STORAGE *Storage,
864 IN CHAR16 **ConfigResp
865 )
866 {
867 EFI_STATUS Status;
868 EFI_STRING Progress;
869 LIST_ENTRY *Link;
870 NAME_VALUE_NODE *Node;
871
872 Status = EFI_SUCCESS;
873
874 switch (Storage->Type) {
875 case EFI_HII_VARSTORE_BUFFER:
876 Status = mHiiConfigRouting->BlockToConfig (
877 mHiiConfigRouting,
878 Storage->ConfigRequest,
879 Storage->EditBuffer,
880 Storage->Size,
881 ConfigResp,
882 &Progress
883 );
884 break;
885
886 case EFI_HII_VARSTORE_NAME_VALUE:
887 *ConfigResp = NULL;
888 NewStringCat (ConfigResp, Storage->ConfigHdr);
889
890 Link = GetFirstNode (&Storage->NameValueListHead);
891 while (!IsNull (&Storage->NameValueListHead, Link)) {
892 Node = NAME_VALUE_NODE_FROM_LINK (Link);
893
894 NewStringCat (ConfigResp, L"&");
895 NewStringCat (ConfigResp, Node->Name);
896 NewStringCat (ConfigResp, L"=");
897 NewStringCat (ConfigResp, Node->EditValue);
898
899 Link = GetNextNode (&Storage->NameValueListHead, Link);
900 }
901 break;
902
903 case EFI_HII_VARSTORE_EFI_VARIABLE:
904 default:
905 Status = EFI_INVALID_PARAMETER;
906 break;
907 }
908
909 return Status;
910 }
911
912
913 /**
914 Convert <ConfigResp> to settings in Buffer Storage or NameValue Storage.
915
916 @param Storage The Storage to receive the settings.
917 @param ConfigResp The <ConfigResp> to be converted.
918
919 @retval EFI_SUCCESS Convert success.
920 @retval EFI_INVALID_PARAMETER Incorrect storage type.
921
922 **/
923 EFI_STATUS
924 ConfigRespToStorage (
925 IN FORMSET_STORAGE *Storage,
926 IN CHAR16 *ConfigResp
927 )
928 {
929 EFI_STATUS Status;
930 EFI_STRING Progress;
931 UINTN BufferSize;
932 CHAR16 *StrPtr;
933 CHAR16 *Name;
934 CHAR16 *Value;
935
936 Status = EFI_SUCCESS;
937
938 switch (Storage->Type) {
939 case EFI_HII_VARSTORE_BUFFER:
940 BufferSize = Storage->Size;
941 Status = mHiiConfigRouting->ConfigToBlock (
942 mHiiConfigRouting,
943 ConfigResp,
944 Storage->EditBuffer,
945 &BufferSize,
946 &Progress
947 );
948 break;
949
950 case EFI_HII_VARSTORE_NAME_VALUE:
951 StrPtr = StrStr (ConfigResp, L"&");
952 while (StrPtr != NULL) {
953 //
954 // Skip '&'
955 //
956 StrPtr = StrPtr + 1;
957 Name = StrPtr;
958 StrPtr = StrStr (StrPtr, L"=");
959 if (StrPtr == NULL) {
960 break;
961 }
962 *StrPtr = 0;
963
964 //
965 // Skip '='
966 //
967 StrPtr = StrPtr + 1;
968 Value = StrPtr;
969 StrPtr = StrStr (StrPtr, L"&");
970 if (StrPtr != NULL) {
971 *StrPtr = 0;
972 }
973 SetValueByName (Storage, Name, Value);
974 }
975 break;
976
977 case EFI_HII_VARSTORE_EFI_VARIABLE:
978 default:
979 Status = EFI_INVALID_PARAMETER;
980 break;
981 }
982
983 return Status;
984 }
985
986
987 /**
988 Get Question's current Value.
989
990 @param FormSet FormSet data structure.
991 @param Form Form data structure.
992 @param Question Question to be initialized.
993 @param Cached TRUE: get from Edit copy FALSE: get from original
994 Storage
995
996 @retval EFI_SUCCESS The function completed successfully.
997
998 **/
999 EFI_STATUS
1000 GetQuestionValue (
1001 IN FORM_BROWSER_FORMSET *FormSet,
1002 IN FORM_BROWSER_FORM *Form,
1003 IN OUT FORM_BROWSER_STATEMENT *Question,
1004 IN BOOLEAN Cached
1005 )
1006 {
1007 EFI_STATUS Status;
1008 BOOLEAN Enabled;
1009 BOOLEAN Pending;
1010 UINT8 *Dst;
1011 UINTN StorageWidth;
1012 EFI_TIME EfiTime;
1013 FORMSET_STORAGE *Storage;
1014 EFI_IFR_TYPE_VALUE *QuestionValue;
1015 CHAR16 *ConfigRequest;
1016 CHAR16 *Progress;
1017 CHAR16 *Result;
1018 CHAR16 *Value;
1019 CHAR16 *StringPtr;
1020 UINTN Length;
1021 BOOLEAN IsBufferStorage;
1022 BOOLEAN IsString;
1023
1024 Status = EFI_SUCCESS;
1025
1026 //
1027 // Statement don't have storage, skip them
1028 //
1029 if (Question->QuestionId == 0) {
1030 return Status;
1031 }
1032
1033 //
1034 // Question value is provided by an Expression, evaluate it
1035 //
1036 if (Question->ValueExpression != NULL) {
1037 Status = EvaluateExpression (FormSet, Form, Question->ValueExpression);
1038 if (!EFI_ERROR (Status)) {
1039 CopyMem (&Question->HiiValue, &Question->ValueExpression->Result, sizeof (EFI_HII_VALUE));
1040 }
1041 return Status;
1042 }
1043
1044 //
1045 // Question value is provided by RTC
1046 //
1047 Storage = Question->Storage;
1048 QuestionValue = &Question->HiiValue.Value;
1049 if (Storage == NULL) {
1050 //
1051 // It's a Question without storage, or RTC date/time
1052 //
1053 if (Question->Operand == EFI_IFR_DATE_OP || Question->Operand == EFI_IFR_TIME_OP) {
1054 //
1055 // Date and time define the same Flags bit
1056 //
1057 switch (Question->Flags & EFI_QF_DATE_STORAGE) {
1058 case QF_DATE_STORAGE_TIME:
1059 Status = gRT->GetTime (&EfiTime, NULL);
1060 break;
1061
1062 case QF_DATE_STORAGE_WAKEUP:
1063 Status = gRT->GetWakeupTime (&Enabled, &Pending, &EfiTime);
1064 break;
1065
1066 case QF_DATE_STORAGE_NORMAL:
1067 default:
1068 //
1069 // For date/time without storage
1070 //
1071 return EFI_SUCCESS;
1072 }
1073
1074 if (EFI_ERROR (Status)) {
1075 return Status;
1076 }
1077
1078 if (Question->Operand == EFI_IFR_DATE_OP) {
1079 QuestionValue->date.Year = EfiTime.Year;
1080 QuestionValue->date.Month = EfiTime.Month;
1081 QuestionValue->date.Day = EfiTime.Day;
1082 } else {
1083 QuestionValue->time.Hour = EfiTime.Hour;
1084 QuestionValue->time.Minute = EfiTime.Minute;
1085 QuestionValue->time.Second = EfiTime.Second;
1086 }
1087 }
1088
1089 return EFI_SUCCESS;
1090 }
1091
1092 //
1093 // Question value is provided by EFI variable
1094 //
1095 StorageWidth = Question->StorageWidth;
1096 if (Storage->Type == EFI_HII_VARSTORE_EFI_VARIABLE) {
1097 if (Question->BufferValue != NULL) {
1098 Dst = Question->BufferValue;
1099 } else {
1100 Dst = (UINT8 *) QuestionValue;
1101 }
1102
1103 Status = gRT->GetVariable (
1104 Question->VariableName,
1105 &Storage->Guid,
1106 NULL,
1107 &StorageWidth,
1108 Dst
1109 );
1110 //
1111 // Always return success, even this EFI variable doesn't exist
1112 //
1113 return EFI_SUCCESS;
1114 }
1115
1116 //
1117 // Question Value is provided by Buffer Storage or NameValue Storage
1118 //
1119 if (Question->BufferValue != NULL) {
1120 //
1121 // This Question is password or orderedlist
1122 //
1123 Dst = Question->BufferValue;
1124 } else {
1125 //
1126 // Other type of Questions
1127 //
1128 Dst = (UINT8 *) &Question->HiiValue.Value;
1129 }
1130
1131 IsBufferStorage = (BOOLEAN) ((Storage->Type == EFI_HII_VARSTORE_BUFFER) ? TRUE : FALSE);
1132 IsString = (BOOLEAN) ((Question->HiiValue.Type == EFI_IFR_TYPE_STRING) ? TRUE : FALSE);
1133 if (Cached) {
1134 if (IsBufferStorage) {
1135 //
1136 // Copy from storage Edit buffer
1137 //
1138 CopyMem (Dst, Storage->EditBuffer + Question->VarStoreInfo.VarOffset, StorageWidth);
1139 } else {
1140 Status = GetValueByName (Storage, Question->VariableName, &Value);
1141 if (EFI_ERROR (Status)) {
1142 return Status;
1143 }
1144
1145 if (IsString) {
1146 //
1147 // Convert Config String to Unicode String, e.g "0041004200430044" => "ABCD"
1148 //
1149 Length = StorageWidth + sizeof (CHAR16);
1150 Status = ConfigStringToUnicode ((CHAR16 *) Dst, &Length, Value);
1151 } else {
1152 Status = HexStringToBuf (Dst, &StorageWidth, Value, NULL);
1153 }
1154
1155 FreePool (Value);
1156 }
1157 } else {
1158 //
1159 // Request current settings from Configuration Driver
1160 //
1161 if (FormSet->ConfigAccess == NULL) {
1162 return EFI_NOT_FOUND;
1163 }
1164
1165 //
1166 // <ConfigRequest> ::= <ConfigHdr> + <BlockName> ||
1167 // <ConfigHdr> + "&" + <VariableName>
1168 //
1169 if (IsBufferStorage) {
1170 Length = StrLen (Storage->ConfigHdr);
1171 Length += StrLen (Question->BlockName);
1172 } else {
1173 Length = StrLen (Storage->ConfigHdr);
1174 Length += StrLen (Question->VariableName) + 1;
1175 }
1176 ConfigRequest = AllocateZeroPool ((Length + 1) * sizeof (CHAR16));
1177 ASSERT (ConfigRequest != NULL);
1178
1179 StrCpy (ConfigRequest, Storage->ConfigHdr);
1180 if (IsBufferStorage) {
1181 StrCat (ConfigRequest, Question->BlockName);
1182 } else {
1183 StrCat (ConfigRequest, L"&");
1184 StrCat (ConfigRequest, Question->VariableName);
1185 }
1186
1187 Status = FormSet->ConfigAccess->ExtractConfig (
1188 FormSet->ConfigAccess,
1189 ConfigRequest,
1190 &Progress,
1191 &Result
1192 );
1193 if (EFI_ERROR (Status)) {
1194 return Status;
1195 }
1196
1197 //
1198 // Skip <ConfigRequest>
1199 //
1200 Value = Result + Length;
1201 if (IsBufferStorage) {
1202 //
1203 // Skip "&VALUE"
1204 //
1205 Value = Value + 6;
1206 }
1207 if (*Value != '=') {
1208 FreePool (Result);
1209 return EFI_NOT_FOUND;
1210 }
1211 //
1212 // Skip '=', point to value
1213 //
1214 Value = Value + 1;
1215
1216 //
1217 // Suppress <AltResp> if any
1218 //
1219 StringPtr = Value;
1220 while (*StringPtr != L'\0' && *StringPtr != L'&') {
1221 StringPtr++;
1222 }
1223 *StringPtr = L'\0';
1224
1225 if (!IsBufferStorage && IsString) {
1226 //
1227 // Convert Config String to Unicode String, e.g "0041004200430044" => "ABCD"
1228 //
1229 Length = StorageWidth + sizeof (CHAR16);
1230 Status = ConfigStringToUnicode ((CHAR16 *) Dst, &Length, Value);
1231 } else {
1232 Status = HexStringToBuf (Dst, &StorageWidth, Value, NULL);
1233 if (EFI_ERROR (Status)) {
1234 FreePool (Result);
1235 return Status;
1236 }
1237 }
1238
1239 //
1240 // Synchronize Edit Buffer
1241 //
1242 if (IsBufferStorage) {
1243 CopyMem (Storage->EditBuffer + Question->VarStoreInfo.VarOffset, Dst, StorageWidth);
1244 } else {
1245 SetValueByName (Storage, Question->VariableName, Value);
1246 }
1247 FreePool (Result);
1248 }
1249
1250 return Status;
1251 }
1252
1253
1254 /**
1255 Save Question Value to edit copy(cached) or Storage(uncached).
1256
1257 @param FormSet FormSet data structure.
1258 @param Form Form data structure.
1259 @param Question Pointer to the Question.
1260 @param Cached TRUE: set to Edit copy FALSE: set to original
1261 Storage
1262
1263 @retval EFI_SUCCESS The function completed successfully.
1264
1265 **/
1266 EFI_STATUS
1267 SetQuestionValue (
1268 IN FORM_BROWSER_FORMSET *FormSet,
1269 IN FORM_BROWSER_FORM *Form,
1270 IN OUT FORM_BROWSER_STATEMENT *Question,
1271 IN BOOLEAN Cached
1272 )
1273 {
1274 EFI_STATUS Status;
1275 BOOLEAN Enabled;
1276 BOOLEAN Pending;
1277 UINT8 *Src;
1278 EFI_TIME EfiTime;
1279 UINTN BufferLen;
1280 UINTN StorageWidth;
1281 FORMSET_STORAGE *Storage;
1282 EFI_IFR_TYPE_VALUE *QuestionValue;
1283 CHAR16 *ConfigResp;
1284 CHAR16 *Progress;
1285 CHAR16 *Value;
1286 UINTN Length;
1287 BOOLEAN IsBufferStorage;
1288 BOOLEAN IsString;
1289
1290 Status = EFI_SUCCESS;
1291
1292 //
1293 // Statement don't have storage, skip them
1294 //
1295 if (Question->QuestionId == 0) {
1296 return Status;
1297 }
1298
1299 //
1300 // If Question value is provided by an Expression, then it is read only
1301 //
1302 if (Question->ValueExpression != NULL) {
1303 return Status;
1304 }
1305
1306 //
1307 // Question value is provided by RTC
1308 //
1309 Storage = Question->Storage;
1310 QuestionValue = &Question->HiiValue.Value;
1311 if (Storage == NULL) {
1312 //
1313 // It's a Question without storage, or RTC date/time
1314 //
1315 if (Question->Operand == EFI_IFR_DATE_OP || Question->Operand == EFI_IFR_TIME_OP) {
1316 //
1317 // Date and time define the same Flags bit
1318 //
1319 switch (Question->Flags & EFI_QF_DATE_STORAGE) {
1320 case QF_DATE_STORAGE_TIME:
1321 Status = gRT->GetTime (&EfiTime, NULL);
1322 break;
1323
1324 case QF_DATE_STORAGE_WAKEUP:
1325 Status = gRT->GetWakeupTime (&Enabled, &Pending, &EfiTime);
1326 break;
1327
1328 case QF_DATE_STORAGE_NORMAL:
1329 default:
1330 //
1331 // For date/time without storage
1332 //
1333 return EFI_SUCCESS;
1334 }
1335
1336 if (EFI_ERROR (Status)) {
1337 return Status;
1338 }
1339
1340 if (Question->Operand == EFI_IFR_DATE_OP) {
1341 EfiTime.Year = QuestionValue->date.Year;
1342 EfiTime.Month = QuestionValue->date.Month;
1343 EfiTime.Day = QuestionValue->date.Day;
1344 } else {
1345 EfiTime.Hour = QuestionValue->time.Hour;
1346 EfiTime.Minute = QuestionValue->time.Minute;
1347 EfiTime.Second = QuestionValue->time.Second;
1348 }
1349
1350 if ((Question->Flags & EFI_QF_DATE_STORAGE) == QF_DATE_STORAGE_TIME) {
1351 Status = gRT->SetTime (&EfiTime);
1352 } else {
1353 Status = gRT->SetWakeupTime (TRUE, &EfiTime);
1354 }
1355 }
1356
1357 return Status;
1358 }
1359
1360 //
1361 // Question value is provided by EFI variable
1362 //
1363 StorageWidth = Question->StorageWidth;
1364 if (Storage->Type == EFI_HII_VARSTORE_EFI_VARIABLE) {
1365 if (Question->BufferValue != NULL) {
1366 Src = Question->BufferValue;
1367 } else {
1368 Src = (UINT8 *) QuestionValue;
1369 }
1370
1371 Status = gRT->SetVariable (
1372 Question->VariableName,
1373 &Storage->Guid,
1374 Storage->Attributes,
1375 StorageWidth,
1376 Src
1377 );
1378 return Status;
1379 }
1380
1381 //
1382 // Question Value is provided by Buffer Storage or NameValue Storage
1383 //
1384 if (Question->BufferValue != NULL) {
1385 Src = Question->BufferValue;
1386 } else {
1387 Src = (UINT8 *) &Question->HiiValue.Value;
1388 }
1389
1390 IsBufferStorage = (BOOLEAN) ((Storage->Type == EFI_HII_VARSTORE_BUFFER) ? TRUE : FALSE);
1391 IsString = (BOOLEAN) ((Question->HiiValue.Type == EFI_IFR_TYPE_STRING) ? TRUE : FALSE);
1392 if (IsBufferStorage) {
1393 //
1394 // Copy to storage edit buffer
1395 //
1396 CopyMem (Storage->EditBuffer + Question->VarStoreInfo.VarOffset, Src, StorageWidth);
1397 } else {
1398 if (IsString) {
1399 //
1400 // Convert Unicode String to Config String, e.g. "ABCD" => "0041004200430044"
1401 //
1402 Value = NULL;
1403 BufferLen = ((StrLen ((CHAR16 *) Src) * 4) + 1) * sizeof (CHAR16);
1404 Value = AllocateZeroPool (BufferLen);
1405 ASSERT (Value != NULL);
1406 Status = UnicodeToConfigString (Value, &BufferLen, (CHAR16 *) Src);
1407 ASSERT_EFI_ERROR (Status);
1408 } else {
1409 BufferLen = StorageWidth * 2 + 1;
1410 Value = AllocateZeroPool (BufferLen * sizeof (CHAR16));
1411 ASSERT (Value != NULL);
1412 BufToHexString (Value, &BufferLen, Src, StorageWidth);
1413 ToLower (Value);
1414 }
1415
1416 Status = SetValueByName (Storage, Question->VariableName, Value);
1417 FreePool (Value);
1418 }
1419
1420 if (!Cached) {
1421 //
1422 // <ConfigResp> ::= <ConfigHdr> + <BlockName> + "&VALUE=" + "<HexCh>StorageWidth * 2" ||
1423 // <ConfigHdr> + "&" + <VariableName> + "=" + "<string>"
1424 //
1425 if (IsBufferStorage) {
1426 Length = StrLen (Question->BlockName) + 7;
1427 } else {
1428 Length = StrLen (Question->VariableName) + 2;
1429 }
1430 if (!IsBufferStorage && IsString) {
1431 Length += (StrLen ((CHAR16 *) Src) * 4);
1432 } else {
1433 Length += (StorageWidth * 2);
1434 }
1435 ConfigResp = AllocateZeroPool ((StrLen (Storage->ConfigHdr) + Length + 1) * sizeof (CHAR16));
1436 ASSERT (ConfigResp != NULL);
1437
1438 StrCpy (ConfigResp, Storage->ConfigHdr);
1439 if (IsBufferStorage) {
1440 StrCat (ConfigResp, Question->BlockName);
1441 StrCat (ConfigResp, L"&VALUE=");
1442 } else {
1443 StrCat (ConfigResp, L"&");
1444 StrCat (ConfigResp, Question->VariableName);
1445 StrCat (ConfigResp, L"=");
1446 }
1447
1448 Value = ConfigResp + StrLen (ConfigResp);
1449 if (!IsBufferStorage && IsString) {
1450 //
1451 // Convert Unicode String to Config String, e.g. "ABCD" => "0041004200430044"
1452 //
1453 BufferLen = ((StrLen ((CHAR16 *) Src) * 4) + 1) * sizeof (CHAR16);
1454 Status = UnicodeToConfigString (Value, &BufferLen, (CHAR16 *) Src);
1455 ASSERT_EFI_ERROR (Status);
1456 } else {
1457 BufferLen = StorageWidth * 2 + 1;
1458 BufToHexString (Value, &BufferLen, Src, StorageWidth);
1459 ToLower (Value);
1460 }
1461
1462 //
1463 // Submit Question Value to Configuration Driver
1464 //
1465 if (FormSet->ConfigAccess != NULL) {
1466 Status = FormSet->ConfigAccess->RouteConfig (
1467 FormSet->ConfigAccess,
1468 ConfigResp,
1469 &Progress
1470 );
1471 if (EFI_ERROR (Status)) {
1472 FreePool (ConfigResp);
1473 return Status;
1474 }
1475 }
1476 FreePool (ConfigResp);
1477
1478 //
1479 // Synchronize shadow Buffer
1480 //
1481 SynchronizeStorage (Storage);
1482 }
1483
1484 return Status;
1485 }
1486
1487
1488 /**
1489 Perform inconsistent check for a Form.
1490
1491 @param FormSet FormSet data structure.
1492 @param Form Form data structure.
1493 @param Question The Question to be validated.
1494 @param Type Validation type: InConsistent or NoSubmit
1495
1496 @retval EFI_SUCCESS Form validation pass.
1497 @retval other Form validation failed.
1498
1499 **/
1500 EFI_STATUS
1501 ValidateQuestion (
1502 IN FORM_BROWSER_FORMSET *FormSet,
1503 IN FORM_BROWSER_FORM *Form,
1504 IN FORM_BROWSER_STATEMENT *Question,
1505 IN UINTN Type
1506 )
1507 {
1508 EFI_STATUS Status;
1509 LIST_ENTRY *Link;
1510 LIST_ENTRY *ListHead;
1511 EFI_STRING PopUp;
1512 EFI_INPUT_KEY Key;
1513 FORM_EXPRESSION *Expression;
1514
1515 if (Type == EFI_HII_EXPRESSION_INCONSISTENT_IF) {
1516 ListHead = &Question->InconsistentListHead;
1517 } else if (Type == EFI_HII_EXPRESSION_NO_SUBMIT_IF) {
1518 ListHead = &Question->NoSubmitListHead;
1519 } else {
1520 return EFI_UNSUPPORTED;
1521 }
1522
1523 Link = GetFirstNode (ListHead);
1524 while (!IsNull (ListHead, Link)) {
1525 Expression = FORM_EXPRESSION_FROM_LINK (Link);
1526
1527 //
1528 // Evaluate the expression
1529 //
1530 Status = EvaluateExpression (FormSet, Form, Expression);
1531 if (EFI_ERROR (Status)) {
1532 return Status;
1533 }
1534
1535 if (Expression->Result.Value.b) {
1536 //
1537 // Condition meet, show up error message
1538 //
1539 if (Expression->Error != 0) {
1540 PopUp = GetToken (Expression->Error, FormSet->HiiHandle);
1541 do {
1542 CreateDialog (4, TRUE, 0, NULL, &Key, gEmptyString, PopUp, gPressEnter, gEmptyString);
1543 } while (Key.UnicodeChar != CHAR_CARRIAGE_RETURN);
1544 FreePool (PopUp);
1545 }
1546
1547 return EFI_NOT_READY;
1548 }
1549
1550 Link = GetNextNode (ListHead, Link);
1551 }
1552
1553 return EFI_SUCCESS;
1554 }
1555
1556
1557 /**
1558 Perform NoSubmit check for a Form.
1559
1560 @param FormSet FormSet data structure.
1561 @param Form Form data structure.
1562
1563 @retval EFI_SUCCESS Form validation pass.
1564 @retval other Form validation failed.
1565
1566 **/
1567 EFI_STATUS
1568 NoSubmitCheck (
1569 IN FORM_BROWSER_FORMSET *FormSet,
1570 IN FORM_BROWSER_FORM *Form
1571 )
1572 {
1573 EFI_STATUS Status;
1574 LIST_ENTRY *Link;
1575 FORM_BROWSER_STATEMENT *Question;
1576
1577 Link = GetFirstNode (&Form->StatementListHead);
1578 while (!IsNull (&Form->StatementListHead, Link)) {
1579 Question = FORM_BROWSER_STATEMENT_FROM_LINK (Link);
1580
1581 Status = ValidateQuestion (FormSet, Form, Question, EFI_HII_EXPRESSION_NO_SUBMIT_IF);
1582 if (EFI_ERROR (Status)) {
1583 return Status;
1584 }
1585
1586 Link = GetNextNode (&Form->StatementListHead, Link);
1587 }
1588
1589 return EFI_SUCCESS;
1590 }
1591
1592
1593 /**
1594 Submit a Form.
1595
1596 @param FormSet FormSet data structure.
1597 @param Form Form data structure.
1598
1599 @retval EFI_SUCCESS The function completed successfully.
1600
1601 **/
1602 EFI_STATUS
1603 SubmitForm (
1604 IN FORM_BROWSER_FORMSET *FormSet,
1605 IN FORM_BROWSER_FORM *Form
1606 )
1607 {
1608 EFI_STATUS Status;
1609 LIST_ENTRY *Link;
1610 EFI_STRING ConfigResp;
1611 EFI_STRING Progress;
1612 FORMSET_STORAGE *Storage;
1613
1614 //
1615 // Validate the Form by NoSubmit check
1616 //
1617 Status = NoSubmitCheck (FormSet, Form);
1618 if (EFI_ERROR (Status)) {
1619 return Status;
1620 }
1621
1622 //
1623 // Submit Buffer storage or Name/Value storage
1624 //
1625 Link = GetFirstNode (&FormSet->StorageListHead);
1626 while (!IsNull (&FormSet->StorageListHead, Link)) {
1627 Storage = FORMSET_STORAGE_FROM_LINK (Link);
1628 Link = GetNextNode (&FormSet->StorageListHead, Link);
1629
1630 if (Storage->Type == EFI_HII_VARSTORE_EFI_VARIABLE) {
1631 continue;
1632 }
1633
1634 //
1635 // Skip if there is no RequestElement
1636 //
1637 if (Storage->ElementCount == 0) {
1638 continue;
1639 }
1640
1641 //
1642 // Prepare <ConfigResp>
1643 //
1644 Status = StorageToConfigResp (Storage, &ConfigResp);
1645 if (EFI_ERROR (Status)) {
1646 return Status;
1647 }
1648
1649 //
1650 // Send <ConfigResp> to Configuration Driver
1651 //
1652 if (FormSet->ConfigAccess != NULL) {
1653 Status = FormSet->ConfigAccess->RouteConfig (
1654 FormSet->ConfigAccess,
1655 ConfigResp,
1656 &Progress
1657 );
1658 if (EFI_ERROR (Status)) {
1659 FreePool (ConfigResp);
1660 return Status;
1661 }
1662 }
1663 FreePool (ConfigResp);
1664
1665 //
1666 // Config success, update storage shadow Buffer
1667 //
1668 SynchronizeStorage (Storage);
1669 }
1670
1671 gNvUpdateRequired = FALSE;
1672
1673 return EFI_SUCCESS;
1674 }
1675
1676
1677 /**
1678 Reset Question to its default value.
1679
1680 @param FormSet The form set.
1681 @param Form The form.
1682 @param Question The question.
1683 @param DefaultId The Class of the default.
1684
1685 @retval EFI_SUCCESS Question is reset to default value.
1686
1687 **/
1688 EFI_STATUS
1689 GetQuestionDefault (
1690 IN FORM_BROWSER_FORMSET *FormSet,
1691 IN FORM_BROWSER_FORM *Form,
1692 IN FORM_BROWSER_STATEMENT *Question,
1693 IN UINT16 DefaultId
1694 )
1695 {
1696 EFI_STATUS Status;
1697 LIST_ENTRY *Link;
1698 QUESTION_DEFAULT *Default;
1699 QUESTION_OPTION *Option;
1700 EFI_HII_VALUE *HiiValue;
1701 UINT8 Index;
1702
1703 Status = EFI_SUCCESS;
1704
1705 //
1706 // Statement don't have storage, skip them
1707 //
1708 if (Question->QuestionId == 0) {
1709 return Status;
1710 }
1711
1712 //
1713 // There are three ways to specify default value for a Question:
1714 // 1, use nested EFI_IFR_DEFAULT (highest priority)
1715 // 2, set flags of EFI_ONE_OF_OPTION (provide Standard and Manufacturing default)
1716 // 3, set flags of EFI_IFR_CHECKBOX (provide Standard and Manufacturing default) (lowest priority)
1717 //
1718 HiiValue = &Question->HiiValue;
1719
1720 //
1721 // EFI_IFR_DEFAULT has highest priority
1722 //
1723 if (!IsListEmpty (&Question->DefaultListHead)) {
1724 Link = GetFirstNode (&Question->DefaultListHead);
1725 while (!IsNull (&Question->DefaultListHead, Link)) {
1726 Default = QUESTION_DEFAULT_FROM_LINK (Link);
1727
1728 if (Default->DefaultId == DefaultId) {
1729 if (Default->ValueExpression != NULL) {
1730 //
1731 // Default is provided by an Expression, evaluate it
1732 //
1733 Status = EvaluateExpression (FormSet, Form, Default->ValueExpression);
1734 if (EFI_ERROR (Status)) {
1735 return Status;
1736 }
1737
1738 CopyMem (HiiValue, &Default->ValueExpression->Result, sizeof (EFI_HII_VALUE));
1739 } else {
1740 //
1741 // Default value is embedded in EFI_IFR_DEFAULT
1742 //
1743 CopyMem (HiiValue, &Default->Value, sizeof (EFI_HII_VALUE));
1744 }
1745
1746 return EFI_SUCCESS;
1747 }
1748
1749 Link = GetNextNode (&Question->DefaultListHead, Link);
1750 }
1751 }
1752
1753 //
1754 // EFI_ONE_OF_OPTION
1755 //
1756 if ((Question->Operand == EFI_IFR_ONE_OF_OP) && !IsListEmpty (&Question->OptionListHead)) {
1757 if (DefaultId <= EFI_HII_DEFAULT_CLASS_MANUFACTURING) {
1758 //
1759 // OneOfOption could only provide Standard and Manufacturing default
1760 //
1761 Link = GetFirstNode (&Question->OptionListHead);
1762 while (!IsNull (&Question->OptionListHead, Link)) {
1763 Option = QUESTION_OPTION_FROM_LINK (Link);
1764
1765 if (((DefaultId == EFI_HII_DEFAULT_CLASS_STANDARD) && ((Option->Flags & EFI_IFR_OPTION_DEFAULT) != 0)) ||
1766 ((DefaultId == EFI_HII_DEFAULT_CLASS_MANUFACTURING) && ((Option->Flags & EFI_IFR_OPTION_DEFAULT_MFG) != 0))
1767 ) {
1768 CopyMem (HiiValue, &Option->Value, sizeof (EFI_HII_VALUE));
1769
1770 return EFI_SUCCESS;
1771 }
1772
1773 Link = GetNextNode (&Question->OptionListHead, Link);
1774 }
1775 }
1776 }
1777
1778 //
1779 // EFI_IFR_CHECKBOX - lowest priority
1780 //
1781 if (Question->Operand == EFI_IFR_CHECKBOX_OP) {
1782 if (DefaultId <= EFI_HII_DEFAULT_CLASS_MANUFACTURING) {
1783 //
1784 // Checkbox could only provide Standard and Manufacturing default
1785 //
1786 if (((DefaultId == EFI_HII_DEFAULT_CLASS_STANDARD) && ((Question->Flags & EFI_IFR_CHECKBOX_DEFAULT) != 0)) ||
1787 ((DefaultId == EFI_HII_DEFAULT_CLASS_MANUFACTURING) && ((Question->Flags & EFI_IFR_CHECKBOX_DEFAULT_MFG) != 0))
1788 ) {
1789 HiiValue->Value.b = TRUE;
1790 } else {
1791 HiiValue->Value.b = FALSE;
1792 }
1793
1794 return EFI_SUCCESS;
1795 }
1796 }
1797
1798 //
1799 // For Questions without default
1800 //
1801 switch (Question->Operand) {
1802 case EFI_IFR_NUMERIC_OP:
1803 //
1804 // Take minimal value as numeric's default value
1805 //
1806 HiiValue->Value.u64 = Question->Minimum;
1807 break;
1808
1809 case EFI_IFR_ONE_OF_OP:
1810 //
1811 // Take first oneof option as oneof's default value
1812 //
1813 Link = GetFirstNode (&Question->OptionListHead);
1814 if (!IsNull (&Question->OptionListHead, Link)) {
1815 Option = QUESTION_OPTION_FROM_LINK (Link);
1816 CopyMem (HiiValue, &Option->Value, sizeof (EFI_HII_VALUE));
1817 }
1818 break;
1819
1820 case EFI_IFR_ORDERED_LIST_OP:
1821 //
1822 // Take option sequence in IFR as ordered list's default value
1823 //
1824 Index = 0;
1825 Link = GetFirstNode (&Question->OptionListHead);
1826 while (!IsNull (&Question->OptionListHead, Link)) {
1827 Option = QUESTION_OPTION_FROM_LINK (Link);
1828
1829 Question->BufferValue[Index] = Option->Value.Value.u8;
1830
1831 Index++;
1832 if (Index >= Question->MaxContainers) {
1833 break;
1834 }
1835
1836 Link = GetNextNode (&Question->OptionListHead, Link);
1837 }
1838 break;
1839
1840 default:
1841 Status = EFI_NOT_FOUND;
1842 break;
1843 }
1844
1845 return Status;
1846 }
1847
1848
1849 /**
1850 Reset Questions in a Form to their default value.
1851
1852 @param FormSet FormSet data structure.
1853 @param Form The Form which to be reset.
1854 @param DefaultId The Class of the default.
1855
1856 @retval EFI_SUCCESS The function completed successfully.
1857
1858 **/
1859 EFI_STATUS
1860 ExtractFormDefault (
1861 IN FORM_BROWSER_FORMSET *FormSet,
1862 IN FORM_BROWSER_FORM *Form,
1863 IN UINT16 DefaultId
1864 )
1865 {
1866 EFI_STATUS Status;
1867 LIST_ENTRY *Link;
1868 FORM_BROWSER_STATEMENT *Question;
1869
1870 Link = GetFirstNode (&Form->StatementListHead);
1871 while (!IsNull (&Form->StatementListHead, Link)) {
1872 Question = FORM_BROWSER_STATEMENT_FROM_LINK (Link);
1873 Link = GetNextNode (&Form->StatementListHead, Link);
1874
1875 //
1876 // If Question is suppressed, don't reset it to default
1877 //
1878 if (Question->SuppressExpression != NULL) {
1879 Status = EvaluateExpression (FormSet, Form, Question->SuppressExpression);
1880 if (!EFI_ERROR (Status) && Question->SuppressExpression->Result.Value.b) {
1881 continue;
1882 }
1883 }
1884
1885 //
1886 // Reset Question to its default value
1887 //
1888 Status = GetQuestionDefault (FormSet, Form, Question, DefaultId);
1889 if (EFI_ERROR (Status)) {
1890 continue;
1891 }
1892
1893 //
1894 // Synchronize Buffer storage's Edit buffer
1895 //
1896 if ((Question->Storage != NULL) &&
1897 (Question->Storage->Type != EFI_HII_VARSTORE_EFI_VARIABLE)) {
1898 SetQuestionValue (FormSet, Form, Question, TRUE);
1899 }
1900 }
1901
1902 return EFI_SUCCESS;
1903 }
1904
1905
1906 /**
1907 Initialize Question's Edit copy from Storage.
1908
1909 @param FormSet FormSet data structure.
1910 @param Form Form data structure.
1911
1912 @retval EFI_SUCCESS The function completed successfully.
1913
1914 **/
1915 EFI_STATUS
1916 LoadFormConfig (
1917 IN FORM_BROWSER_FORMSET *FormSet,
1918 IN FORM_BROWSER_FORM *Form
1919 )
1920 {
1921 EFI_STATUS Status;
1922 LIST_ENTRY *Link;
1923 FORM_BROWSER_STATEMENT *Question;
1924
1925 Link = GetFirstNode (&Form->StatementListHead);
1926 while (!IsNull (&Form->StatementListHead, Link)) {
1927 Question = FORM_BROWSER_STATEMENT_FROM_LINK (Link);
1928
1929 //
1930 // Initialize local copy of Value for each Question
1931 //
1932 Status = GetQuestionValue (FormSet, Form, Question, TRUE);
1933 if (EFI_ERROR (Status)) {
1934 return Status;
1935 }
1936
1937 Link = GetNextNode (&Form->StatementListHead, Link);
1938 }
1939
1940 return EFI_SUCCESS;
1941 }
1942
1943
1944 /**
1945 Fill storage's edit copy with settings requested from Configuration Driver.
1946
1947 @param FormSet FormSet data structure.
1948 @param Storage Buffer Storage.
1949
1950 @retval EFI_SUCCESS The function completed successfully.
1951
1952 **/
1953 EFI_STATUS
1954 LoadStorage (
1955 IN FORM_BROWSER_FORMSET *FormSet,
1956 IN FORMSET_STORAGE *Storage
1957 )
1958 {
1959 EFI_STATUS Status;
1960 EFI_STRING Progress;
1961 EFI_STRING Result;
1962 CHAR16 *StrPtr;
1963
1964 if (Storage->Type == EFI_HII_VARSTORE_EFI_VARIABLE) {
1965 return EFI_SUCCESS;
1966 }
1967
1968 if (FormSet->ConfigAccess == NULL) {
1969 return EFI_NOT_FOUND;
1970 }
1971
1972 if (Storage->ElementCount == 0) {
1973 //
1974 // Skip if there is no RequestElement
1975 //
1976 return EFI_SUCCESS;
1977 }
1978
1979 //
1980 // Request current settings from Configuration Driver
1981 //
1982 Status = FormSet->ConfigAccess->ExtractConfig (
1983 FormSet->ConfigAccess,
1984 Storage->ConfigRequest,
1985 &Progress,
1986 &Result
1987 );
1988 if (EFI_ERROR (Status)) {
1989 return Status;
1990 }
1991
1992 //
1993 // Convert Result from <ConfigAltResp> to <ConfigResp>
1994 //
1995 StrPtr = StrStr (Result, L"ALTCFG");
1996 if (StrPtr != NULL) {
1997 *StrPtr = L'\0';
1998 }
1999
2000 Status = ConfigRespToStorage (Storage, Result);
2001 FreePool (Result);
2002 return Status;
2003 }
2004
2005
2006 /**
2007 Get current setting of Questions.
2008
2009 @param FormSet FormSet data structure.
2010
2011 @retval EFI_SUCCESS The function completed successfully.
2012
2013 **/
2014 EFI_STATUS
2015 InitializeCurrentSetting (
2016 IN OUT FORM_BROWSER_FORMSET *FormSet
2017 )
2018 {
2019 LIST_ENTRY *Link;
2020 FORMSET_STORAGE *Storage;
2021 FORM_BROWSER_FORM *Form;
2022 EFI_STATUS Status;
2023
2024 //
2025 // Extract default from IFR binary
2026 //
2027 Link = GetFirstNode (&FormSet->FormListHead);
2028 while (!IsNull (&FormSet->FormListHead, Link)) {
2029 Form = FORM_BROWSER_FORM_FROM_LINK (Link);
2030
2031 Status = ExtractFormDefault (FormSet, Form, EFI_HII_DEFAULT_CLASS_STANDARD);
2032
2033 Link = GetNextNode (&FormSet->FormListHead, Link);
2034 }
2035
2036 //
2037 // Request current settings from Configuration Driver
2038 //
2039 Link = GetFirstNode (&FormSet->StorageListHead);
2040 while (!IsNull (&FormSet->StorageListHead, Link)) {
2041 Storage = FORMSET_STORAGE_FROM_LINK (Link);
2042
2043 Status = LoadStorage (FormSet, Storage);
2044
2045 //
2046 // Now Edit Buffer is filled with default values(lower priority) and current
2047 // settings(higher priority), sychronize it to shadow Buffer
2048 //
2049 if (!EFI_ERROR (Status)) {
2050 SynchronizeStorage (Storage);
2051 }
2052
2053 Link = GetNextNode (&FormSet->StorageListHead, Link);
2054 }
2055
2056 return EFI_SUCCESS;
2057 }
2058
2059
2060 /**
2061 Fetch the Ifr binary data of a FormSet.
2062
2063 @param Handle PackageList Handle
2064 @param FormSetGuid GUID of a formset. If not specified (NULL or zero
2065 GUID), take the first FormSet found in package
2066 list.
2067 @param BinaryLength The length of the FormSet IFR binary.
2068 @param BinaryData The buffer designed to receive the FormSet.
2069
2070 @retval EFI_SUCCESS Buffer filled with the requested FormSet.
2071 BufferLength was updated.
2072 @retval EFI_INVALID_PARAMETER The handle is unknown.
2073 @retval EFI_NOT_FOUND A form or FormSet on the requested handle cannot
2074 be found with the requested FormId.
2075
2076 **/
2077 EFI_STATUS
2078 GetIfrBinaryData (
2079 IN EFI_HII_HANDLE Handle,
2080 IN OUT EFI_GUID *FormSetGuid,
2081 OUT UINTN *BinaryLength,
2082 OUT UINT8 **BinaryData
2083 )
2084 {
2085 EFI_STATUS Status;
2086 EFI_HII_PACKAGE_LIST_HEADER *HiiPackageList;
2087 UINTN BufferSize;
2088 UINT8 *Package;
2089 UINT8 *OpCodeData;
2090 UINT32 Offset;
2091 UINT32 Offset2;
2092 BOOLEAN ReturnDefault;
2093 UINT32 PackageListLength;
2094 EFI_HII_PACKAGE_HEADER PackageHeader;
2095
2096 OpCodeData = NULL;
2097 Package = NULL;
2098 ZeroMem (&PackageHeader, sizeof (EFI_HII_PACKAGE_HEADER));;
2099
2100 //
2101 // if FormSetGuid is NULL or zero GUID, return first FormSet in the package list
2102 //
2103 if (FormSetGuid == NULL || CompareGuid (FormSetGuid, &gZeroGuid)) {
2104 ReturnDefault = TRUE;
2105 } else {
2106 ReturnDefault = FALSE;
2107 }
2108
2109 //
2110 // Get HII PackageList
2111 //
2112 BufferSize = 0;
2113 HiiPackageList = NULL;
2114 Status = mHiiDatabase->ExportPackageLists (mHiiDatabase, Handle, &BufferSize, HiiPackageList);
2115 if (Status == EFI_BUFFER_TOO_SMALL) {
2116 HiiPackageList = AllocatePool (BufferSize);
2117 ASSERT (HiiPackageList != NULL);
2118
2119 Status = mHiiDatabase->ExportPackageLists (mHiiDatabase, Handle, &BufferSize, HiiPackageList);
2120 }
2121 if (EFI_ERROR (Status)) {
2122 return Status;
2123 }
2124 ASSERT (HiiPackageList != NULL);
2125
2126 //
2127 // Get Form package from this HII package List
2128 //
2129 Offset = sizeof (EFI_HII_PACKAGE_LIST_HEADER);
2130 Offset2 = 0;
2131 CopyMem (&PackageListLength, &HiiPackageList->PackageLength, sizeof (UINT32));
2132
2133 while (Offset < PackageListLength) {
2134 Package = ((UINT8 *) HiiPackageList) + Offset;
2135 CopyMem (&PackageHeader, Package, sizeof (EFI_HII_PACKAGE_HEADER));
2136
2137 if (PackageHeader.Type == EFI_HII_PACKAGE_FORMS) {
2138 //
2139 // Search FormSet in this Form Package
2140 //
2141 Offset2 = sizeof (EFI_HII_PACKAGE_HEADER);
2142 while (Offset2 < PackageHeader.Length) {
2143 OpCodeData = Package + Offset2;
2144
2145 if (((EFI_IFR_OP_HEADER *) OpCodeData)->OpCode == EFI_IFR_FORM_SET_OP) {
2146 //
2147 // Check whether return default FormSet
2148 //
2149 if (ReturnDefault) {
2150 break;
2151 }
2152
2153 //
2154 // FormSet GUID is specified, check it
2155 //
2156 if (CompareGuid (FormSetGuid, (EFI_GUID *)(OpCodeData + sizeof (EFI_IFR_OP_HEADER)))) {
2157 break;
2158 }
2159 }
2160
2161 Offset2 += ((EFI_IFR_OP_HEADER *) OpCodeData)->Length;
2162 }
2163
2164 if (Offset2 < PackageHeader.Length) {
2165 //
2166 // Target formset found
2167 //
2168 break;
2169 }
2170 }
2171
2172 Offset += PackageHeader.Length;
2173 }
2174
2175 if (Offset >= PackageListLength) {
2176 //
2177 // Form package not found in this Package List
2178 //
2179 FreePool (HiiPackageList);
2180 return EFI_NOT_FOUND;
2181 }
2182
2183 if (ReturnDefault && FormSetGuid != NULL) {
2184 //
2185 // Return the default FormSet GUID
2186 //
2187 CopyMem (FormSetGuid, &((EFI_IFR_FORM_SET *) OpCodeData)->Guid, sizeof (EFI_GUID));
2188 }
2189
2190 //
2191 // To determine the length of a whole FormSet IFR binary, one have to parse all the Opcodes
2192 // in this FormSet; So, here just simply copy the data from start of a FormSet to the end
2193 // of the Form Package.
2194 //
2195 *BinaryLength = PackageHeader.Length - Offset2;
2196 *BinaryData = AllocateCopyPool (*BinaryLength, OpCodeData);
2197
2198 FreePool (HiiPackageList);
2199
2200 if (*BinaryData == NULL) {
2201 return EFI_OUT_OF_RESOURCES;
2202 }
2203
2204 return EFI_SUCCESS;
2205 }
2206
2207
2208 /**
2209 Initialize the internal data structure of a FormSet.
2210
2211 @param Handle PackageList Handle
2212 @param FormSetGuid GUID of a formset. If not specified (NULL or zero
2213 GUID), take the first FormSet found in package
2214 list.
2215 @param FormSet FormSet data structure.
2216
2217 @retval EFI_SUCCESS The function completed successfully.
2218 @retval EFI_NOT_FOUND The specified FormSet could not be found.
2219
2220 **/
2221 EFI_STATUS
2222 InitializeFormSet (
2223 IN EFI_HII_HANDLE Handle,
2224 IN OUT EFI_GUID *FormSetGuid,
2225 OUT FORM_BROWSER_FORMSET *FormSet
2226 )
2227 {
2228 EFI_STATUS Status;
2229 EFI_HANDLE DriverHandle;
2230 UINT16 Index;
2231
2232 Status = GetIfrBinaryData (Handle, FormSetGuid, &FormSet->IfrBinaryLength, &FormSet->IfrBinaryData);
2233 if (EFI_ERROR (Status)) {
2234 return Status;
2235 }
2236
2237 FormSet->HiiHandle = Handle;
2238 CopyMem (&FormSet->Guid, FormSetGuid, sizeof (EFI_GUID));
2239
2240 //
2241 // Retrieve ConfigAccess Protocol associated with this HiiPackageList
2242 //
2243 Status = mHiiDatabase->GetPackageListHandle (mHiiDatabase, Handle, &DriverHandle);
2244 if (EFI_ERROR (Status)) {
2245 return Status;
2246 }
2247 FormSet->DriverHandle = DriverHandle;
2248 Status = gBS->HandleProtocol (
2249 DriverHandle,
2250 &gEfiHiiConfigAccessProtocolGuid,
2251 (VOID **) &FormSet->ConfigAccess
2252 );
2253 if (EFI_ERROR (Status)) {
2254 //
2255 // Configuration Driver don't attach ConfigAccess protocol to its HII package
2256 // list, then there will be no configuration action required
2257 //
2258 FormSet->ConfigAccess = NULL;
2259 }
2260
2261 //
2262 // Parse the IFR binary OpCodes
2263 //
2264 Status = ParseOpCodes (FormSet);
2265 if (EFI_ERROR (Status)) {
2266 return Status;
2267 }
2268
2269 gClassOfVfr = FormSet->SubClass;
2270 if (gClassOfVfr == EFI_FRONT_PAGE_SUBCLASS) {
2271 FrontPageHandle = FormSet->HiiHandle;
2272 }
2273
2274 //
2275 // Match GUID to find out the function key setting. If match fail, use the default setting.
2276 //
2277 for (Index = 0; Index < sizeof (gFunctionKeySettingTable) / sizeof (FUNCTIION_KEY_SETTING); Index++) {
2278 if (CompareGuid (&FormSet->Guid, &(gFunctionKeySettingTable[Index].FormSetGuid))) {
2279 //
2280 // Update the function key setting.
2281 //
2282 gFunctionKeySetting = gFunctionKeySettingTable[Index].KeySetting;
2283 //
2284 // Function key prompt can not be displayed if the function key has been disabled.
2285 //
2286 if ((gFunctionKeySetting & FUNCTION_ONE) != FUNCTION_ONE) {
2287 gFunctionOneString = GetToken (STRING_TOKEN (EMPTY_STRING), gHiiHandle);
2288 }
2289
2290 if ((gFunctionKeySetting & FUNCTION_TWO) != FUNCTION_TWO) {
2291 gFunctionTwoString = GetToken (STRING_TOKEN (EMPTY_STRING), gHiiHandle);
2292 }
2293
2294 if ((gFunctionKeySetting & FUNCTION_NINE) != FUNCTION_NINE) {
2295 gFunctionNineString = GetToken (STRING_TOKEN (EMPTY_STRING), gHiiHandle);
2296 }
2297
2298 if ((gFunctionKeySetting & FUNCTION_TEN) != FUNCTION_TEN) {
2299 gFunctionTenString = GetToken (STRING_TOKEN (EMPTY_STRING), gHiiHandle);
2300 }
2301 }
2302 }
2303
2304 return Status;
2305 }