]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/SetupBrowserDxe/Setup.h
Refine the load form sets process for BrowserCallback function.
[mirror_edk2.git] / MdeModulePkg / Universal / SetupBrowserDxe / Setup.h
1 /** @file
2 Private MACRO, structure and function definitions for Setup Browser module.
3
4 Copyright (c) 2007 - 2014, 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
16 #ifndef _SETUP_H_
17 #define _SETUP_H_
18
19
20 #include <PiDxe.h>
21
22 #include <Protocol/SimpleTextOut.h>
23 #include <Protocol/SimpleTextIn.h>
24 #include <Protocol/FormBrowser2.h>
25 #include <Protocol/FormBrowserEx2.h>
26 #include <Protocol/DisplayProtocol.h>
27 #include <Protocol/DevicePath.h>
28 #include <Protocol/UnicodeCollation.h>
29 #include <Protocol/HiiConfigAccess.h>
30 #include <Protocol/HiiConfigRouting.h>
31 #include <Protocol/HiiDatabase.h>
32 #include <Protocol/HiiString.h>
33 #include <Protocol/UserManager.h>
34 #include <Protocol/DevicePathFromText.h>
35
36 #include <Guid/MdeModuleHii.h>
37 #include <Guid/HiiPlatformSetupFormset.h>
38 #include <Guid/HiiFormMapMethodGuid.h>
39
40 #include <Library/PrintLib.h>
41 #include <Library/DebugLib.h>
42 #include <Library/BaseMemoryLib.h>
43 #include <Library/UefiRuntimeServicesTableLib.h>
44 #include <Library/UefiDriverEntryPoint.h>
45 #include <Library/UefiBootServicesTableLib.h>
46 #include <Library/BaseLib.h>
47 #include <Library/MemoryAllocationLib.h>
48 #include <Library/HiiLib.h>
49 #include <Library/PcdLib.h>
50 #include <Library/DevicePathLib.h>
51 #include <Library/UefiLib.h>
52
53
54 //
55 // This is the generated header file which includes whatever needs to be exported (strings + IFR)
56 //
57
58 #define UI_ACTION_NONE 0
59 #define UI_ACTION_REFRESH_FORM 1
60 #define UI_ACTION_REFRESH_FORMSET 2
61 #define UI_ACTION_EXIT 3
62
63 //
64 //
65 // Time definitions
66 //
67 #define ONE_SECOND 10000000
68
69 // Incremental string lenght of ConfigRequest
70 //
71 #define CONFIG_REQUEST_STRING_INCREMENTAL 1024
72
73 //
74 // Incremental size of stack for expression
75 //
76 #define EXPRESSION_STACK_SIZE_INCREMENT 0x100
77
78 #define EFI_IFR_SPECIFICATION_VERSION (UINT16) (((EFI_SYSTEM_TABLE_REVISION >> 16) << 8) | (((EFI_SYSTEM_TABLE_REVISION & 0xFFFF) / 10) << 4) | ((EFI_SYSTEM_TABLE_REVISION & 0xFFFF) % 10))
79
80
81 #define SETUP_DRIVER_SIGNATURE SIGNATURE_32 ('F', 'B', 'D', 'V')
82 typedef struct {
83 UINT32 Signature;
84
85 EFI_HANDLE Handle;
86
87 //
88 // Produced protocol
89 //
90 EFI_FORM_BROWSER2_PROTOCOL FormBrowser2;
91 EFI_FORM_BROWSER_EXTENSION_PROTOCOL FormBrowserEx;
92
93 EDKII_FORM_BROWSER_EXTENSION2_PROTOCOL FormBrowserEx2;
94
95 } SETUP_DRIVER_PRIVATE_DATA;
96
97 //
98 // IFR relative definition
99 //
100 #define EFI_HII_EXPRESSION_INCONSISTENT_IF 0
101 #define EFI_HII_EXPRESSION_NO_SUBMIT_IF 1
102 #define EFI_HII_EXPRESSION_GRAY_OUT_IF 2
103 #define EFI_HII_EXPRESSION_SUPPRESS_IF 3
104 #define EFI_HII_EXPRESSION_DISABLE_IF 4
105 #define EFI_HII_EXPRESSION_VALUE 5
106 #define EFI_HII_EXPRESSION_RULE 6
107 #define EFI_HII_EXPRESSION_READ 7
108 #define EFI_HII_EXPRESSION_WRITE 8
109 #define EFI_HII_EXPRESSION_WARNING_IF 9
110
111 #define EFI_HII_VARSTORE_BUFFER 0
112 #define EFI_HII_VARSTORE_NAME_VALUE 1
113 #define EFI_HII_VARSTORE_EFI_VARIABLE 2 // EFI Varstore type follow UEFI spec before 2.3.1.
114 #define EFI_HII_VARSTORE_EFI_VARIABLE_BUFFER 3 // EFI varstore type follow UEFI spec 2.3.1 and later.
115
116 #define FORM_INCONSISTENT_VALIDATION 0
117 #define FORM_NO_SUBMIT_VALIDATION 1
118
119 #define NAME_VALUE_NODE_SIGNATURE SIGNATURE_32 ('N', 'V', 'S', 'T')
120
121 typedef struct {
122 UINTN Signature;
123 LIST_ENTRY Link;
124 CHAR16 *Name;
125 CHAR16 *Value;
126 CHAR16 *EditValue;
127 } NAME_VALUE_NODE;
128
129 #define NAME_VALUE_NODE_FROM_LINK(a) CR (a, NAME_VALUE_NODE, Link, NAME_VALUE_NODE_SIGNATURE)
130
131 #define BROWSER_STORAGE_SIGNATURE SIGNATURE_32 ('B', 'S', 'T', 'G')
132
133 typedef struct {
134 UINTN Signature;
135 LIST_ENTRY Link;
136
137 UINT8 Type; // Storage type
138
139 BOOLEAN Initialized; // Whether this varstore is initialized, efi varstore not used.
140
141 EFI_HII_HANDLE HiiHandle; // HiiHandle for this varstore, efi varstore not used.
142 EFI_GUID Guid;
143
144 CHAR16 *Name; // For EFI_IFR_VARSTORE
145 UINT16 Size;
146 UINT8 *Buffer;
147 UINT8 *EditBuffer; // Edit copy for Buffer Storage
148
149 LIST_ENTRY NameValueListHead; // List of NAME_VALUE_NODE
150
151 UINT32 Attributes; // For EFI_IFR_VARSTORE_EFI: EFI Variable attribute
152
153 CHAR16 *ConfigHdr; // <ConfigHdr>
154 CHAR16 *ConfigRequest; // <ConfigRequest> = <ConfigHdr> + <RequestElement>
155 // <RequestElement> includes all fields which is used by current form sets.
156 UINTN SpareStrLen; // Spare length of ConfigRequest string buffer
157 } BROWSER_STORAGE;
158
159 #define BROWSER_STORAGE_FROM_LINK(a) CR (a, BROWSER_STORAGE, Link, BROWSER_STORAGE_SIGNATURE)
160
161 #define FORMSET_STORAGE_SIGNATURE SIGNATURE_32 ('F', 'S', 'T', 'G')
162
163 typedef struct {
164 UINTN Signature;
165 LIST_ENTRY Link;
166
167 UINT16 VarStoreId;
168
169 BROWSER_STORAGE *BrowserStorage;
170
171 CHAR16 *ConfigRequest; // <ConfigRequest> = <ConfigHdr> + <RequestElement>
172 UINTN ElementCount; // Number of <RequestElement> in the <ConfigRequest>
173 UINTN SpareStrLen; // Spare length of ConfigRequest string buffer
174 } FORMSET_STORAGE;
175
176 #define FORMSET_STORAGE_FROM_LINK(a) CR (a, FORMSET_STORAGE, Link, FORMSET_STORAGE_SIGNATURE)
177
178 typedef union {
179 EFI_STRING_ID VarName;
180 UINT16 VarOffset;
181 } VAR_STORE_INFO;
182
183 #define EXPRESSION_OPCODE_SIGNATURE SIGNATURE_32 ('E', 'X', 'O', 'P')
184
185 typedef struct {
186 UINTN Signature;
187 LIST_ENTRY Link;
188
189 UINT8 Operand;
190
191 UINT8 Format; // For EFI_IFR_TO_STRING, EFI_IFR_FIND
192 UINT8 Flags; // For EFI_IFR_SPAN
193 UINT8 RuleId; // For EFI_IFR_RULE_REF
194
195 EFI_HII_VALUE Value; // For EFI_IFR_EQ_ID_VAL, EFI_IFR_UINT64, EFI_IFR_UINT32, EFI_IFR_UINT16, EFI_IFR_UINT8, EFI_IFR_STRING_REF1
196
197 EFI_QUESTION_ID QuestionId; // For EFI_IFR_EQ_ID_ID, EFI_IFR_EQ_ID_VAL_LIST, EFI_IFR_QUESTION_REF1
198 EFI_QUESTION_ID QuestionId2;
199
200 UINT16 ListLength; // For EFI_IFR_EQ_ID_VAL_LIST
201 UINT16 *ValueList;
202
203 EFI_STRING_ID DevicePath; // For EFI_IFR_QUESTION_REF3_2, EFI_IFR_QUESTION_REF3_3
204 EFI_GUID Guid;
205
206 BROWSER_STORAGE *VarStorage; // For EFI_IFR_SET, EFI_IFR_GET
207 VAR_STORE_INFO VarStoreInfo;// For EFI_IFR_SET, EFI_IFR_GET
208 UINT8 ValueType; // For EFI_IFR_SET, EFI_IFR_GET
209 UINT8 ValueWidth; // For EFI_IFR_SET, EFI_IFR_GET
210 CHAR16 *ValueName; // For EFI_IFR_SET, EFI_IFR_GET
211 LIST_ENTRY MapExpressionList; // nested expressions inside of Map opcode.
212 } EXPRESSION_OPCODE;
213
214 #define EXPRESSION_OPCODE_FROM_LINK(a) CR (a, EXPRESSION_OPCODE, Link, EXPRESSION_OPCODE_SIGNATURE)
215
216 #define FORM_EXPRESSION_SIGNATURE SIGNATURE_32 ('F', 'E', 'X', 'P')
217
218 typedef struct {
219 UINTN Signature;
220 LIST_ENTRY Link;
221
222 UINT8 Type; // Type for this expression
223
224 UINT8 RuleId; // For EFI_IFR_RULE only
225 EFI_STRING_ID Error; // For EFI_IFR_NO_SUBMIT_IF, EFI_IFR_INCONSISTENT_IF only
226
227 EFI_HII_VALUE Result; // Expression evaluation result
228
229 UINT8 TimeOut; // For EFI_IFR_WARNING_IF
230
231 LIST_ENTRY OpCodeListHead; // OpCodes consist of this expression (EXPRESSION_OPCODE)
232 } FORM_EXPRESSION;
233
234 #define FORM_EXPRESSION_FROM_LINK(a) CR (a, FORM_EXPRESSION, Link, FORM_EXPRESSION_SIGNATURE)
235
236 #define FORM_EXPRESSION_LIST_SIGNATURE SIGNATURE_32 ('F', 'E', 'X', 'R')
237
238 typedef struct {
239 UINTN Signature;
240 UINTN Count;
241 FORM_EXPRESSION *Expression[1]; // Array[Count] of expressions
242 } FORM_EXPRESSION_LIST;
243
244 #define QUESTION_DEFAULT_SIGNATURE SIGNATURE_32 ('Q', 'D', 'F', 'T')
245
246 typedef struct {
247 UINTN Signature;
248 LIST_ENTRY Link;
249
250 UINT16 DefaultId;
251 EFI_HII_VALUE Value; // Default value
252
253 FORM_EXPRESSION *ValueExpression; // Not-NULL indicates default value is provided by EFI_IFR_VALUE
254 } QUESTION_DEFAULT;
255
256 #define QUESTION_DEFAULT_FROM_LINK(a) CR (a, QUESTION_DEFAULT, Link, QUESTION_DEFAULT_SIGNATURE)
257
258 #define QUESTION_OPTION_SIGNATURE SIGNATURE_32 ('Q', 'O', 'P', 'T')
259
260 typedef struct {
261 UINTN Signature;
262 LIST_ENTRY Link;
263
264 EFI_IFR_ONE_OF_OPTION *OpCode; // OneOfOption Data
265
266 EFI_STRING_ID Text;
267 UINT8 Flags;
268 EFI_HII_VALUE Value;
269 EFI_IMAGE_ID ImageId;
270
271 FORM_EXPRESSION_LIST *SuppressExpression; // Non-NULL indicates nested inside of SuppressIf
272 } QUESTION_OPTION;
273
274 #define QUESTION_OPTION_FROM_LINK(a) CR (a, QUESTION_OPTION, Link, QUESTION_OPTION_SIGNATURE)
275
276 typedef enum {
277 ExpressFalse = 0,
278 ExpressGrayOut,
279 ExpressSuppress,
280 ExpressDisable
281 } EXPRESS_RESULT;
282
283 typedef enum {
284 ExpressNone = 0,
285 ExpressForm,
286 ExpressStatement,
287 ExpressOption
288 } EXPRESS_LEVEL;
289
290 typedef struct _FORM_BROWSER_STATEMENT FORM_BROWSER_STATEMENT;
291
292 #define FORM_BROWSER_STATEMENT_SIGNATURE SIGNATURE_32 ('F', 'S', 'T', 'A')
293
294 struct _FORM_BROWSER_STATEMENT{
295 UINTN Signature;
296 LIST_ENTRY Link;
297
298 UINT8 Operand; // The operand (first byte) of this Statement or Question
299 EFI_IFR_OP_HEADER *OpCode;
300
301 //
302 // Statement Header
303 //
304 EFI_STRING_ID Prompt;
305 EFI_STRING_ID Help;
306 EFI_STRING_ID TextTwo; // For EFI_IFR_TEXT
307
308 //
309 // Fake Question Id, used for statement not has true QuestionId.
310 //
311 EFI_QUESTION_ID FakeQuestionId;
312
313 //
314 // Question Header
315 //
316 EFI_QUESTION_ID QuestionId; // The value of zero is reserved
317 EFI_VARSTORE_ID VarStoreId; // A value of zero indicates no variable storage
318 BROWSER_STORAGE *Storage;
319 VAR_STORE_INFO VarStoreInfo;
320 UINT16 StorageWidth;
321 UINT8 QuestionFlags;
322 CHAR16 *VariableName; // Name/Value or EFI Variable name
323 CHAR16 *BlockName; // Buffer storage block name: "OFFSET=...WIDTH=..."
324
325 EFI_HII_VALUE HiiValue; // Edit copy for checkbox, numberic, oneof
326 UINT8 *BufferValue; // Edit copy for string, password, orderedlist
327 UINT8 ValueType; // Data type for orderedlist value array
328
329 //
330 // OpCode specific members
331 //
332 UINT8 Flags; // for EFI_IFR_CHECKBOX, EFI_IFR_DATE, EFI_IFR_NUMERIC, EFI_IFR_ONE_OF,
333 // EFI_IFR_ORDERED_LIST, EFI_IFR_STRING,EFI_IFR_SUBTITLE,EFI_IFR_TIME, EFI_IFR_BANNER
334 UINT8 MaxContainers; // for EFI_IFR_ORDERED_LIST
335
336 UINT16 BannerLineNumber; // for EFI_IFR_BANNER, 1-based line number
337 EFI_STRING_ID QuestionConfig; // for EFI_IFR_ACTION, if 0 then no configuration string will be processed
338
339 UINT64 Minimum; // for EFI_IFR_ONE_OF/EFI_IFR_NUMERIC, it's Min/Max value
340 UINT64 Maximum; // for EFI_IFR_STRING/EFI_IFR_PASSWORD, it's Min/Max length
341 UINT64 Step;
342
343 EFI_DEFAULT_ID DefaultId; // for EFI_IFR_RESET_BUTTON
344 EFI_GUID RefreshGuid; // for EFI_IFR_REFRESH_ID
345 BOOLEAN Locked; // Whether this statement is locked.
346 BOOLEAN ValueChanged; // Whether this statement's value is changed.
347 //
348 // Get from IFR parsing
349 //
350 FORM_EXPRESSION *ValueExpression; // nested EFI_IFR_VALUE, provide Question value and indicate Question is ReadOnly
351 LIST_ENTRY DefaultListHead; // nested EFI_IFR_DEFAULT list (QUESTION_DEFAULT), provide default values
352 LIST_ENTRY OptionListHead; // nested EFI_IFR_ONE_OF_OPTION list (QUESTION_OPTION)
353
354 EFI_IMAGE_ID ImageId; // nested EFI_IFR_IMAGE
355 UINT8 RefreshInterval; // nested EFI_IFR_REFRESH, refresh interval(in seconds) for Question value, 0 means no refresh
356
357 FORM_BROWSER_STATEMENT *ParentStatement;
358
359 LIST_ENTRY InconsistentListHead;// nested inconsistent expression list (FORM_EXPRESSION)
360 LIST_ENTRY NoSubmitListHead; // nested nosubmit expression list (FORM_EXPRESSION)
361 LIST_ENTRY WarningListHead; // nested warning expression list (FORM_EXPRESSION)
362 FORM_EXPRESSION_LIST *Expression; // nesting inside of GrayOutIf/DisableIf/SuppressIf
363
364 FORM_EXPRESSION *ReadExpression; // nested EFI_IFR_READ, provide this question value by read expression.
365 FORM_EXPRESSION *WriteExpression; // nested EFI_IFR_WRITE, evaluate write expression after this question value is set.
366 };
367
368 #define FORM_BROWSER_STATEMENT_FROM_LINK(a) CR (a, FORM_BROWSER_STATEMENT, Link, FORM_BROWSER_STATEMENT_SIGNATURE)
369
370 #define FORM_BROWSER_CONFIG_REQUEST_SIGNATURE SIGNATURE_32 ('F', 'C', 'R', 'S')
371 typedef struct {
372 UINTN Signature;
373 LIST_ENTRY Link;
374
375 CHAR16 *ConfigRequest; // <ConfigRequest> = <ConfigHdr> + <RequestElement>
376 UINTN ElementCount; // Number of <RequestElement> in the <ConfigRequest>
377 UINTN SpareStrLen;
378
379 BROWSER_STORAGE *Storage;
380 } FORM_BROWSER_CONFIG_REQUEST;
381 #define FORM_BROWSER_CONFIG_REQUEST_FROM_LINK(a) CR (a, FORM_BROWSER_CONFIG_REQUEST, Link, FORM_BROWSER_CONFIG_REQUEST_SIGNATURE)
382
383 #define FORM_BROWSER_FORM_SIGNATURE SIGNATURE_32 ('F', 'F', 'R', 'M')
384 #define STANDARD_MAP_FORM_TYPE 0x01
385
386 typedef struct {
387 UINTN Signature;
388 LIST_ENTRY Link;
389
390 UINT16 FormId; // FormId of normal form or formmap form.
391 EFI_STRING_ID FormTitle; // FormTile of normal form, or FormMapMethod title of formmap form.
392 UINT16 FormType; // Specific form type for the different form.
393
394 EFI_IMAGE_ID ImageId;
395
396 BOOLEAN ModalForm; // Whether this is a modal form.
397 BOOLEAN Locked; // Whether this form is locked.
398
399 LIST_ENTRY ExpressionListHead; // List of Expressions (FORM_EXPRESSION)
400 LIST_ENTRY StatementListHead; // List of Statements and Questions (FORM_BROWSER_STATEMENT)
401 LIST_ENTRY ConfigRequestHead; // List of configreques for all storage.
402 FORM_EXPRESSION_LIST *SuppressExpression; // nesting inside of SuppressIf
403 } FORM_BROWSER_FORM;
404
405 #define FORM_BROWSER_FORM_FROM_LINK(a) CR (a, FORM_BROWSER_FORM, Link, FORM_BROWSER_FORM_SIGNATURE)
406
407 #define FORMSET_DEFAULTSTORE_SIGNATURE SIGNATURE_32 ('F', 'D', 'F', 'S')
408
409 typedef struct {
410 UINTN Signature;
411 LIST_ENTRY Link;
412
413 UINT16 DefaultId;
414 EFI_STRING_ID DefaultName;
415 } FORMSET_DEFAULTSTORE;
416
417 #define FORMSET_DEFAULTSTORE_FROM_LINK(a) CR (a, FORMSET_DEFAULTSTORE, Link, FORMSET_DEFAULTSTORE_SIGNATURE)
418
419 #define FORM_BROWSER_FORMSET_SIGNATURE SIGNATURE_32 ('F', 'B', 'F', 'S')
420
421 typedef struct {
422 UINTN Signature;
423 LIST_ENTRY Link;
424 EFI_HII_HANDLE HiiHandle; // unique id for formset.
425 EFI_HANDLE DriverHandle;
426 EFI_HII_CONFIG_ACCESS_PROTOCOL *ConfigAccess;
427 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
428
429 UINTN IfrBinaryLength;
430 UINT8 *IfrBinaryData;
431
432 BOOLEAN QuestionInited; // Have finished question initilization?
433 EFI_GUID Guid;
434 EFI_STRING_ID FormSetTitle;
435 EFI_STRING_ID Help;
436 UINT8 NumberOfClassGuid;
437 EFI_GUID ClassGuid[3]; // Up to three ClassGuid
438 UINT16 Class; // Tiano extended Class code
439 UINT16 SubClass; // Tiano extended Subclass code
440 EFI_IMAGE_ID ImageId;
441
442 FORM_BROWSER_STATEMENT *StatementBuffer; // Buffer for all Statements and Questions
443 EXPRESSION_OPCODE *ExpressionBuffer; // Buffer for all Expression OpCode
444
445 LIST_ENTRY StatementListOSF; // Statement list out side of the form.
446 LIST_ENTRY StorageListHead; // Storage list (FORMSET_STORAGE)
447 LIST_ENTRY DefaultStoreListHead; // DefaultStore list (FORMSET_DEFAULTSTORE)
448 LIST_ENTRY FormListHead; // Form list (FORM_BROWSER_FORM)
449 LIST_ENTRY ExpressionListHead; // List of Expressions (FORM_EXPRESSION)
450 } FORM_BROWSER_FORMSET;
451 #define FORM_BROWSER_FORMSET_FROM_LINK(a) CR (a, FORM_BROWSER_FORMSET, Link, FORM_BROWSER_FORMSET_SIGNATURE)
452
453 typedef struct {
454 LIST_ENTRY Link;
455 EFI_EVENT RefreshEvent;
456 } FORM_BROWSER_REFRESH_EVENT_NODE;
457
458 #define FORM_BROWSER_REFRESH_EVENT_FROM_LINK(a) BASE_CR (a, FORM_BROWSER_REFRESH_EVENT_NODE, Link)
459
460
461 typedef struct {
462 EFI_HII_HANDLE Handle;
463
464 //
465 // Target formset/form/Question information
466 //
467 EFI_GUID FormSetGuid;
468 UINT16 FormId;
469 UINT16 QuestionId;
470 UINTN Sequence; // used for time/date only.
471
472 UINTN TopRow;
473 UINTN BottomRow;
474 UINTN PromptCol;
475 UINTN OptionCol;
476 UINTN CurrentRow;
477
478 //
479 // Ation for Browser to taken:
480 // UI_ACTION_NONE - navigation inside a form
481 // UI_ACTION_REFRESH_FORM - re-evaluate expressions and repaint form
482 // UI_ACTION_REFRESH_FORMSET - re-parse formset IFR binary
483 //
484 UINTN Action;
485
486 //
487 // Current selected fomset/form/Question
488 //
489 FORM_BROWSER_FORMSET *FormSet;
490 FORM_BROWSER_FORM *Form;
491 FORM_BROWSER_STATEMENT *Statement;
492
493 //
494 // Whether the Form is editable
495 //
496 BOOLEAN FormEditable;
497
498 FORM_ENTRY_INFO *CurrentMenu;
499 } UI_MENU_SELECTION;
500
501 #define BROWSER_CONTEXT_SIGNATURE SIGNATURE_32 ('B', 'C', 'T', 'X')
502
503 typedef struct {
504 UINTN Signature;
505 LIST_ENTRY Link;
506
507 //
508 // Globals defined in Setup.c
509 //
510 BOOLEAN ResetRequired;
511 BOOLEAN ExitRequired;
512 EFI_HII_HANDLE HiiHandle;
513 EFI_GUID FormSetGuid;
514 EFI_FORM_ID FormId;
515 UI_MENU_SELECTION *Selection;
516
517 LIST_ENTRY FormHistoryList;
518 } BROWSER_CONTEXT;
519
520 #define BROWSER_CONTEXT_FROM_LINK(a) CR (a, BROWSER_CONTEXT, Link, BROWSER_CONTEXT_SIGNATURE)
521
522 //
523 // Scope for get defaut value. It may be GetDefaultForNoStorage, GetDefaultForStorage or GetDefaultForAll.
524 //
525 typedef enum {
526 GetDefaultForNoStorage, // Get default value for question which not has storage.
527 GetDefaultForStorage, // Get default value for question which has storage.
528 GetDefaultForAll, // Get default value for all questions.
529 GetDefaultForMax // Invalid value.
530 } BROWSER_GET_DEFAULT_VALUE;
531
532 //
533 // Get/set question value from/to.
534 //
535 typedef enum {
536 GetSetValueWithEditBuffer, // Get/Set question value from/to editbuffer in the storage.
537 GetSetValueWithBuffer, // Get/Set question value from/to buffer in the storage.
538 GetSetValueWithHiiDriver, // Get/Set question value from/to hii driver.
539 GetSetValueWithMax // Invalid value.
540 } GET_SET_QUESTION_VALUE_WITH;
541
542 extern EFI_HII_DATABASE_PROTOCOL *mHiiDatabase;
543 extern EFI_HII_CONFIG_ROUTING_PROTOCOL *mHiiConfigRouting;
544 extern EFI_DEVICE_PATH_FROM_TEXT_PROTOCOL *mPathFromText;
545 extern EDKII_FORM_DISPLAY_ENGINE_PROTOCOL *mFormDisplay;
546
547 extern BOOLEAN gResetRequired;
548 extern BOOLEAN gExitRequired;
549 extern BOOLEAN gFinishRetrieveCall;
550 extern LIST_ENTRY gBrowserFormSetList;
551 extern LIST_ENTRY gBrowserHotKeyList;
552 extern BROWSER_SETTING_SCOPE gBrowserSettingScope;
553 extern EXIT_HANDLER ExitHandlerFunction;
554 extern EFI_HII_HANDLE mCurrentHiiHandle;
555 extern SETUP_DRIVER_PRIVATE_DATA mPrivateData;
556 //
557 // Browser Global Strings
558 //
559 extern CHAR16 *gEmptyString;
560
561 extern EFI_GUID gZeroGuid;
562
563 extern UI_MENU_SELECTION *gCurrentSelection;
564
565 //
566 // Global Procedure Defines
567 //
568 #include "Expression.h"
569
570 /**
571 Initialize the HII String Token to the correct values.
572
573 **/
574 VOID
575 InitializeBrowserStrings (
576 VOID
577 );
578
579 /**
580 Parse opcodes in the formset IFR binary.
581
582 @param FormSet Pointer of the FormSet data structure.
583
584 @retval EFI_SUCCESS Opcode parse success.
585 @retval Other Opcode parse fail.
586
587 **/
588 EFI_STATUS
589 ParseOpCodes (
590 IN FORM_BROWSER_FORMSET *FormSet
591 );
592
593 /**
594 Free resources allocated for a FormSet.
595
596 @param FormSet Pointer of the FormSet
597
598 **/
599 VOID
600 DestroyFormSet (
601 IN OUT FORM_BROWSER_FORMSET *FormSet
602 );
603
604
605 /**
606 Create a new string in HII Package List.
607
608 @param String The String to be added
609 @param HiiHandle The package list in the HII database to insert the
610 specified string.
611
612 @return The output string.
613
614 **/
615 EFI_STRING_ID
616 NewString (
617 IN CHAR16 *String,
618 IN EFI_HII_HANDLE HiiHandle
619 );
620
621 /**
622 Delete a string from HII Package List.
623
624 @param StringId Id of the string in HII database.
625 @param HiiHandle The HII package list handle.
626
627 @retval EFI_SUCCESS The string was deleted successfully.
628
629 **/
630 EFI_STATUS
631 DeleteString (
632 IN EFI_STRING_ID StringId,
633 IN EFI_HII_HANDLE HiiHandle
634 );
635
636 /**
637 Get the string based on the StringId and HII Package List Handle.
638
639 @param Token The String's ID.
640 @param HiiHandle The package list in the HII database to search for
641 the specified string.
642
643 @return The output string.
644
645 **/
646 CHAR16 *
647 GetToken (
648 IN EFI_STRING_ID Token,
649 IN EFI_HII_HANDLE HiiHandle
650 );
651
652 /**
653 Get Value for given Name from a NameValue Storage.
654
655 @param Storage The NameValue Storage.
656 @param Name The Name.
657 @param Value The retured Value.
658 @param GetValueFrom Where to get source value, from EditValue or Value.
659
660 @retval EFI_SUCCESS Value found for given Name.
661 @retval EFI_NOT_FOUND No such Name found in NameValue storage.
662
663 **/
664 EFI_STATUS
665 GetValueByName (
666 IN BROWSER_STORAGE *Storage,
667 IN CHAR16 *Name,
668 IN OUT CHAR16 **Value,
669 IN GET_SET_QUESTION_VALUE_WITH GetValueFrom
670 );
671
672 /**
673 Set Value of given Name in a NameValue Storage.
674
675 @param Storage The NameValue Storage.
676 @param Name The Name.
677 @param Value The Value to set.
678 @param SetValueTo Whether update editValue or Value.
679 @param ReturnNode The node use the input name.
680
681 @retval EFI_SUCCESS Value found for given Name.
682 @retval EFI_NOT_FOUND No such Name found in NameValue storage.
683
684 **/
685 EFI_STATUS
686 SetValueByName (
687 IN BROWSER_STORAGE *Storage,
688 IN CHAR16 *Name,
689 IN CHAR16 *Value,
690 IN GET_SET_QUESTION_VALUE_WITH SetValueTo,
691 OUT NAME_VALUE_NODE **ReturnNode
692 );
693
694 /**
695 Validate whether this question's value has changed.
696
697 @param FormSet FormSet data structure.
698 @param Form Form data structure.
699 @param Question Question to be initialized.
700 @param GetValueFrom Where to get value, may from editbuffer, buffer or hii driver.
701
702 @retval TRUE Question's value has changed.
703 @retval FALSE Question's value has not changed
704
705 **/
706 BOOLEAN
707 IsQuestionValueChanged (
708 IN FORM_BROWSER_FORMSET *FormSet,
709 IN FORM_BROWSER_FORM *Form,
710 IN OUT FORM_BROWSER_STATEMENT *Question,
711 IN GET_SET_QUESTION_VALUE_WITH GetValueFrom
712 );
713
714 /**
715 Validate the FormSet. If the formset is not validate, remove it from the list.
716
717 @param FormSet The input FormSet which need to validate.
718
719 @retval TRUE The handle is validate.
720 @retval FALSE The handle is invalidate.
721
722 **/
723 BOOLEAN
724 ValidateFormSet (
725 FORM_BROWSER_FORMSET *FormSet
726 );
727
728 /**
729 Update the ValueChanged status for questions.
730
731 @param FormSet FormSet data structure.
732 @param Form Form data structure.
733 @param SettingScope Setting Scope for Default action.
734
735 **/
736 VOID
737 UpdateStatementStatus (
738 IN FORM_BROWSER_FORMSET *FormSet,
739 IN FORM_BROWSER_FORM *Form,
740 IN BROWSER_SETTING_SCOPE SettingScope
741 );
742
743 /**
744 Get Question's current Value.
745
746 @param FormSet FormSet data structure.
747 @param Form Form data structure.
748 @param Question Question to be initialized.
749 @param GetValueFrom Where to get value, may from editbuffer, buffer or hii driver.
750
751 @retval EFI_SUCCESS The function completed successfully.
752
753 **/
754 EFI_STATUS
755 GetQuestionValue (
756 IN FORM_BROWSER_FORMSET *FormSet,
757 IN FORM_BROWSER_FORM *Form,
758 IN OUT FORM_BROWSER_STATEMENT *Question,
759 IN GET_SET_QUESTION_VALUE_WITH GetValueFrom
760 );
761
762 /**
763 Save Question Value to edit copy(cached) or Storage(uncached).
764
765 @param FormSet FormSet data structure.
766 @param Form Form data structure.
767 @param Question Pointer to the Question.
768 @param SetValueTo Update the question value to editbuffer , buffer or hii driver.
769
770 @retval EFI_SUCCESS The function completed successfully.
771
772 **/
773 EFI_STATUS
774 SetQuestionValue (
775 IN FORM_BROWSER_FORMSET *FormSet,
776 IN FORM_BROWSER_FORM *Form,
777 IN OUT FORM_BROWSER_STATEMENT *Question,
778 IN GET_SET_QUESTION_VALUE_WITH SetValueTo
779 );
780
781 /**
782 Perform inconsistent check for a Form.
783
784 @param FormSet FormSet data structure.
785 @param Form Form data structure.
786 @param Question The Question to be validated.
787 @param Type Validation type: InConsistent or NoSubmit
788
789 @retval EFI_SUCCESS Form validation pass.
790 @retval other Form validation failed.
791
792 **/
793 EFI_STATUS
794 ValidateQuestion (
795 IN FORM_BROWSER_FORMSET *FormSet,
796 IN FORM_BROWSER_FORM *Form,
797 IN FORM_BROWSER_STATEMENT *Question,
798 IN UINTN Type
799 );
800
801
802 /**
803 Discard data based on the input setting scope (Form, FormSet or System).
804
805 @param FormSet FormSet data structure.
806 @param Form Form data structure.
807 @param SettingScope Setting Scope for Discard action.
808
809 @retval EFI_SUCCESS The function completed successfully.
810 @retval EFI_UNSUPPORTED Unsupport SettingScope.
811
812 **/
813 EFI_STATUS
814 DiscardForm (
815 IN FORM_BROWSER_FORMSET *FormSet,
816 IN FORM_BROWSER_FORM *Form,
817 IN BROWSER_SETTING_SCOPE SettingScope
818 );
819
820 /**
821 Submit data based on the input Setting level (Form, FormSet or System).
822
823 @param FormSet FormSet data structure.
824 @param Form Form data structure.
825 @param SettingScope Setting Scope for Submit action.
826
827 @retval EFI_SUCCESS The function completed successfully.
828 @retval EFI_UNSUPPORTED Unsupport SettingScope.
829
830 **/
831 EFI_STATUS
832 SubmitForm (
833 IN FORM_BROWSER_FORMSET *FormSet,
834 IN FORM_BROWSER_FORM *Form,
835 IN BROWSER_SETTING_SCOPE SettingScope
836 );
837
838 /**
839 Reset Question to its default value.
840
841 @param FormSet The form set.
842 @param Form The form.
843 @param Question The question.
844 @param DefaultId The Class of the default.
845
846 @retval EFI_SUCCESS Question is reset to default value.
847
848 **/
849 EFI_STATUS
850 GetQuestionDefault (
851 IN FORM_BROWSER_FORMSET *FormSet,
852 IN FORM_BROWSER_FORM *Form,
853 IN FORM_BROWSER_STATEMENT *Question,
854 IN UINT16 DefaultId
855 );
856
857 /**
858 Get current setting of Questions.
859
860 @param FormSet FormSet data structure.
861
862 **/
863 VOID
864 InitializeCurrentSetting (
865 IN OUT FORM_BROWSER_FORMSET *FormSet
866 );
867
868 /**
869 Initialize the internal data structure of a FormSet.
870
871 @param Handle PackageList Handle
872 @param FormSetGuid GUID of a formset. If not specified (NULL or zero
873 GUID), take the first FormSet found in package
874 list.
875 @param FormSet FormSet data structure.
876
877 @retval EFI_SUCCESS The function completed successfully.
878 @retval EFI_NOT_FOUND The specified FormSet could not be found.
879
880 **/
881 EFI_STATUS
882 InitializeFormSet (
883 IN EFI_HII_HANDLE Handle,
884 IN OUT EFI_GUID *FormSetGuid,
885 OUT FORM_BROWSER_FORMSET *FormSet
886 );
887
888 /**
889 Reset Questions to their initial value or default value in a Form, Formset or System.
890
891 GetDefaultValueScope parameter decides which questions will reset
892 to its default value.
893
894 @param FormSet FormSet data structure.
895 @param Form Form data structure.
896 @param DefaultId The Class of the default.
897 @param SettingScope Setting Scope for Default action.
898 @param GetDefaultValueScope Get default value scope.
899 @param Storage Get default value only for this storage.
900 @param RetrieveValueFirst Whether call the retrieve call back to
901 get the initial value before get default
902 value.
903
904 @retval EFI_SUCCESS The function completed successfully.
905 @retval EFI_UNSUPPORTED Unsupport SettingScope.
906
907 **/
908 EFI_STATUS
909 ExtractDefault (
910 IN FORM_BROWSER_FORMSET *FormSet,
911 IN FORM_BROWSER_FORM *Form,
912 IN UINT16 DefaultId,
913 IN BROWSER_SETTING_SCOPE SettingScope,
914 IN BROWSER_GET_DEFAULT_VALUE GetDefaultValueScope,
915 IN BROWSER_STORAGE *Storage,
916 IN BOOLEAN RetrieveValueFirst
917 );
918
919 /**
920 Initialize Question's Edit copy from Storage.
921
922 @param Selection Selection contains the information about
923 the Selection, form and formset to be displayed.
924 Selection action may be updated in retrieve callback.
925 If Selection is NULL, only initialize Question value.
926 @param FormSet FormSet data structure.
927 @param Form Form data structure.
928
929 @retval EFI_SUCCESS The function completed successfully.
930
931 **/
932 EFI_STATUS
933 LoadFormConfig (
934 IN OUT UI_MENU_SELECTION *Selection,
935 IN FORM_BROWSER_FORMSET *FormSet,
936 IN FORM_BROWSER_FORM *Form
937 );
938
939 /**
940 Initialize Question's Edit copy from Storage for the whole Formset.
941
942 @param Selection Selection contains the information about
943 the Selection, form and formset to be displayed.
944 Selection action may be updated in retrieve callback.
945 If Selection is NULL, only initialize Question value.
946 @param FormSet FormSet data structure.
947
948 @retval EFI_SUCCESS The function completed successfully.
949
950 **/
951 EFI_STATUS
952 LoadFormSetConfig (
953 IN OUT UI_MENU_SELECTION *Selection,
954 IN FORM_BROWSER_FORMSET *FormSet
955 );
956
957 /**
958 Convert setting of Buffer Storage or NameValue Storage to <ConfigResp>.
959
960 @param Storage The Storage to be conveted.
961 @param ConfigResp The returned <ConfigResp>.
962 @param ConfigRequest The ConfigRequest string.
963 @param GetEditBuf Get the data from editbuffer or buffer.
964
965 @retval EFI_SUCCESS Convert success.
966 @retval EFI_INVALID_PARAMETER Incorrect storage type.
967
968 **/
969 EFI_STATUS
970 StorageToConfigResp (
971 IN BROWSER_STORAGE *Storage,
972 IN CHAR16 **ConfigResp,
973 IN CHAR16 *ConfigRequest,
974 IN BOOLEAN GetEditBuf
975 );
976
977 /**
978 Convert <ConfigResp> to settings in Buffer Storage or NameValue Storage.
979
980 @param Storage The Storage to receive the settings.
981 @param ConfigResp The <ConfigResp> to be converted.
982
983 @retval EFI_SUCCESS Convert success.
984 @retval EFI_INVALID_PARAMETER Incorrect storage type.
985
986 **/
987 EFI_STATUS
988 ConfigRespToStorage (
989 IN BROWSER_STORAGE *Storage,
990 IN CHAR16 *ConfigResp
991 );
992
993 /**
994 Fill storage's edit copy with settings requested from Configuration Driver.
995
996 @param FormSet FormSet data structure.
997 @param Storage Buffer Storage.
998
999 **/
1000 VOID
1001 LoadStorage (
1002 IN FORM_BROWSER_FORMSET *FormSet,
1003 IN FORMSET_STORAGE *Storage
1004 );
1005
1006 /**
1007 Fetch the Ifr binary data of a FormSet.
1008
1009 @param Handle PackageList Handle
1010 @param FormSetGuid GUID of a formset. If not specified (NULL or zero
1011 GUID), take the first FormSet found in package
1012 list.
1013 @param BinaryLength The length of the FormSet IFR binary.
1014 @param BinaryData The buffer designed to receive the FormSet.
1015
1016 @retval EFI_SUCCESS Buffer filled with the requested FormSet.
1017 BufferLength was updated.
1018 @retval EFI_INVALID_PARAMETER The handle is unknown.
1019 @retval EFI_NOT_FOUND A form or FormSet on the requested handle cannot
1020 be found with the requested FormId.
1021
1022 **/
1023 EFI_STATUS
1024 GetIfrBinaryData (
1025 IN EFI_HII_HANDLE Handle,
1026 IN OUT EFI_GUID *FormSetGuid,
1027 OUT UINTN *BinaryLength,
1028 OUT UINT8 **BinaryData
1029 );
1030
1031 /**
1032 Save globals used by previous call to SendForm(). SendForm() may be called from
1033 HiiConfigAccess.Callback(), this will cause SendForm() be reentried.
1034 So, save globals of previous call to SendForm() and restore them upon exit.
1035
1036 **/
1037 VOID
1038 SaveBrowserContext (
1039 VOID
1040 );
1041
1042 /**
1043 Restore globals used by previous call to SendForm().
1044
1045 **/
1046 VOID
1047 RestoreBrowserContext (
1048 VOID
1049 );
1050
1051 /**
1052 This is the routine which an external caller uses to direct the browser
1053 where to obtain it's information.
1054
1055
1056 @param This The Form Browser protocol instanse.
1057 @param Handles A pointer to an array of Handles. If HandleCount > 1 we
1058 display a list of the formsets for the handles specified.
1059 @param HandleCount The number of Handles specified in Handle.
1060 @param FormSetGuid This field points to the EFI_GUID which must match the Guid
1061 field in the EFI_IFR_FORM_SET op-code for the specified
1062 forms-based package. If FormSetGuid is NULL, then this
1063 function will display the first found forms package.
1064 @param FormId This field specifies which EFI_IFR_FORM to render as the first
1065 displayable page. If this field has a value of 0x0000, then
1066 the forms browser will render the specified forms in their encoded order.
1067 ScreenDimenions - This allows the browser to be called so that it occupies a
1068 portion of the physical screen instead of dynamically determining the screen dimensions.
1069 ActionRequest - Points to the action recommended by the form.
1070 @param ScreenDimensions Points to recommended form dimensions, including any non-content area, in
1071 characters.
1072 @param ActionRequest Points to the action recommended by the form.
1073
1074 @retval EFI_SUCCESS The function completed successfully.
1075 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.
1076 @retval EFI_NOT_FOUND No valid forms could be found to display.
1077
1078 **/
1079 EFI_STATUS
1080 EFIAPI
1081 SendForm (
1082 IN CONST EFI_FORM_BROWSER2_PROTOCOL *This,
1083 IN EFI_HII_HANDLE *Handles,
1084 IN UINTN HandleCount,
1085 IN EFI_GUID *FormSetGuid, OPTIONAL
1086 IN UINT16 FormId, OPTIONAL
1087 IN CONST EFI_SCREEN_DESCRIPTOR *ScreenDimensions, OPTIONAL
1088 OUT EFI_BROWSER_ACTION_REQUEST *ActionRequest OPTIONAL
1089 );
1090
1091 /**
1092 This function is called by a callback handler to retrieve uncommitted state
1093 data from the browser.
1094
1095 @param This A pointer to the EFI_FORM_BROWSER2_PROTOCOL
1096 instance.
1097 @param ResultsDataSize A pointer to the size of the buffer associated
1098 with ResultsData.
1099 @param ResultsData A string returned from an IFR browser or
1100 equivalent. The results string will have no
1101 routing information in them.
1102 @param RetrieveData A BOOLEAN field which allows an agent to retrieve
1103 (if RetrieveData = TRUE) data from the uncommitted
1104 browser state information or set (if RetrieveData
1105 = FALSE) data in the uncommitted browser state
1106 information.
1107 @param VariableGuid An optional field to indicate the target variable
1108 GUID name to use.
1109 @param VariableName An optional field to indicate the target
1110 human-readable variable name.
1111
1112 @retval EFI_SUCCESS The results have been distributed or are awaiting
1113 distribution.
1114 @retval EFI_BUFFER_TOO_SMALL The ResultsDataSize specified was too small to
1115 contain the results data.
1116
1117 **/
1118 EFI_STATUS
1119 EFIAPI
1120 BrowserCallback (
1121 IN CONST EFI_FORM_BROWSER2_PROTOCOL *This,
1122 IN OUT UINTN *ResultsDataSize,
1123 IN OUT EFI_STRING ResultsData,
1124 IN BOOLEAN RetrieveData,
1125 IN CONST EFI_GUID *VariableGuid, OPTIONAL
1126 IN CONST CHAR16 *VariableName OPTIONAL
1127 );
1128
1129 /**
1130 Find menu which will show next time.
1131
1132 @param Selection On input, Selection tell setup browser the information
1133 about the Selection, form and formset to be displayed.
1134 On output, Selection return the screen item that is selected
1135 by user.
1136 @param SettingLevel Input Settting level, if it is FormLevel, just exit current form.
1137 else, we need to exit current formset.
1138
1139 @retval TRUE Exit current form.
1140 @retval FALSE User press ESC and keep in current form.
1141 **/
1142 BOOLEAN
1143 FindNextMenu (
1144 IN OUT UI_MENU_SELECTION *Selection,
1145 IN BROWSER_SETTING_SCOPE SettingLevel
1146 );
1147
1148 /**
1149 check whether the form need to update the NV.
1150
1151 @param Form Form data structure.
1152
1153 @retval TRUE Need to update the NV.
1154 @retval FALSE No need to update the NV.
1155 **/
1156 BOOLEAN
1157 IsNvUpdateRequiredForForm (
1158 IN FORM_BROWSER_FORM *Form
1159 );
1160
1161 /**
1162 check whether the formset need to update the NV.
1163
1164 @param FormSet FormSet data structure.
1165
1166 @retval TRUE Need to update the NV.
1167 @retval FALSE No need to update the NV.
1168 **/
1169 BOOLEAN
1170 IsNvUpdateRequiredForFormSet (
1171 IN FORM_BROWSER_FORMSET *FormSet
1172 );
1173
1174 /**
1175 Call the call back function for the question and process the return action.
1176
1177 @param Selection On input, Selection tell setup browser the information
1178 about the Selection, form and formset to be displayed.
1179 On output, Selection return the screen item that is selected
1180 by user.
1181 @param FormSet The formset this question belong to.
1182 @param Form The form this question belong to.
1183 @param Question The Question which need to call.
1184 @param Action The action request.
1185 @param SkipSaveOrDiscard Whether skip save or discard action.
1186
1187 @retval EFI_SUCCESS The call back function excutes successfully.
1188 @return Other value if the call back function failed to excute.
1189 **/
1190 EFI_STATUS
1191 ProcessCallBackFunction (
1192 IN OUT UI_MENU_SELECTION *Selection,
1193 IN FORM_BROWSER_FORMSET *FormSet,
1194 IN FORM_BROWSER_FORM *Form,
1195 IN FORM_BROWSER_STATEMENT *Question,
1196 IN EFI_BROWSER_ACTION Action,
1197 IN BOOLEAN SkipSaveOrDiscard
1198 );
1199
1200 /**
1201 Call the retrieve type call back function for one question to get the initialize data.
1202
1203 This function only used when in the initialize stage, because in this stage, the
1204 Selection->Form is not ready. For other case, use the ProcessCallBackFunction instead.
1205
1206 @param ConfigAccess The config access protocol produced by the hii driver.
1207 @param Statement The Question which need to call.
1208
1209 @retval EFI_SUCCESS The call back function excutes successfully.
1210 @return Other value if the call back function failed to excute.
1211 **/
1212 EFI_STATUS
1213 ProcessRetrieveForQuestion (
1214 IN EFI_HII_CONFIG_ACCESS_PROTOCOL *ConfigAccess,
1215 IN FORM_BROWSER_STATEMENT *Statement
1216 );
1217
1218 /**
1219 Find the matched FormSet context in the backup maintain list based on HiiHandle.
1220
1221 @param Handle The Hii Handle.
1222
1223 @return the found FormSet context. If no found, NULL will return.
1224
1225 **/
1226 FORM_BROWSER_FORMSET *
1227 GetFormSetFromHiiHandle (
1228 EFI_HII_HANDLE Handle
1229 );
1230
1231 /**
1232 Check whether the input HII handle is the FormSet that is being used.
1233
1234 @param Handle The Hii Handle.
1235
1236 @retval TRUE HII handle is being used.
1237 @retval FALSE HII handle is not being used.
1238
1239 **/
1240 BOOLEAN
1241 IsHiiHandleInBrowserContext (
1242 EFI_HII_HANDLE Handle
1243 );
1244
1245 /**
1246 Configure what scope the hot key will impact.
1247 All hot keys have the same scope. The mixed hot keys with the different level are not supported.
1248 If no scope is set, the default scope will be FormSet level.
1249 After all registered hot keys are removed, previous Scope can reset to another level.
1250
1251 @param[in] Scope Scope level to be set.
1252
1253 @retval EFI_SUCCESS Scope is set correctly.
1254 @retval EFI_INVALID_PARAMETER Scope is not the valid value specified in BROWSER_SETTING_SCOPE.
1255 @retval EFI_UNSPPORTED Scope level is different from current one that the registered hot keys have.
1256
1257 **/
1258 EFI_STATUS
1259 EFIAPI
1260 SetScope (
1261 IN BROWSER_SETTING_SCOPE Scope
1262 );
1263
1264 /**
1265 Register the hot key with its browser action, or unregistered the hot key.
1266 Only support hot key that is not printable character (control key, function key, etc.).
1267 If the action value is zero, the hot key will be unregistered if it has been registered.
1268 If the same hot key has been registered, the new action and help string will override the previous ones.
1269
1270 @param[in] KeyData A pointer to a buffer that describes the keystroke
1271 information for the hot key. Its type is EFI_INPUT_KEY to
1272 be supported by all ConsoleIn devices.
1273 @param[in] Action Action value that describes what action will be trigged when the hot key is pressed.
1274 @param[in] DefaultId Specifies the type of defaults to retrieve, which is only for DEFAULT action.
1275 @param[in] HelpString Help string that describes the hot key information.
1276 Its value may be NULL for the unregistered hot key.
1277
1278 @retval EFI_SUCCESS Hot key is registered or unregistered.
1279 @retval EFI_INVALID_PARAMETER KeyData is NULL.
1280 @retval EFI_NOT_FOUND KeyData is not found to be unregistered.
1281 @retval EFI_UNSUPPORTED Key represents a printable character. It is conflicted with Browser.
1282 **/
1283 EFI_STATUS
1284 EFIAPI
1285 RegisterHotKey (
1286 IN EFI_INPUT_KEY *KeyData,
1287 IN UINT32 Action,
1288 IN UINT16 DefaultId,
1289 IN EFI_STRING HelpString OPTIONAL
1290 );
1291
1292 /**
1293 Register Exit handler function.
1294 When more than one handler function is registered, the latter one will override the previous one.
1295 When NULL handler is specified, the previous Exit handler will be unregistered.
1296
1297 @param[in] Handler Pointer to handler function.
1298
1299 **/
1300 VOID
1301 EFIAPI
1302 RegiserExitHandler (
1303 IN EXIT_HANDLER Handler
1304 );
1305
1306 /**
1307
1308 Check whether the browser data has been modified.
1309
1310 @retval TRUE Browser data is changed.
1311 @retval FALSE No browser data is changed.
1312
1313 **/
1314 BOOLEAN
1315 EFIAPI
1316 IsBrowserDataModified (
1317 VOID
1318 );
1319
1320 /**
1321
1322 Execute the action requested by the Action parameter.
1323
1324 @param[in] Action Execute the request action.
1325 @param[in] DefaultId The default Id info when need to load default value.
1326
1327 @retval EFI_SUCCESS Execute the request action succss.
1328 @retval EFI_INVALID_PARAMETER The input action value is invalid.
1329
1330 **/
1331 EFI_STATUS
1332 EFIAPI
1333 ExecuteAction (
1334 IN UINT32 Action,
1335 IN UINT16 DefaultId
1336 );
1337
1338 /**
1339 Create reminder to let user to choose save or discard the changed browser data.
1340 Caller can use it to actively check the changed browser data.
1341
1342 @retval BROWSER_NO_CHANGES No browser data is changed.
1343 @retval BROWSER_SAVE_CHANGES The changed browser data is saved.
1344 @retval BROWSER_DISCARD_CHANGES The changed browser data is discard.
1345 @retval BROWSER_KEEP_CURRENT Browser keep current changes.
1346
1347 **/
1348 UINT32
1349 EFIAPI
1350 SaveReminder (
1351 VOID
1352 );
1353
1354 /**
1355 Find the registered HotKey based on KeyData.
1356
1357 @param[in] KeyData A pointer to a buffer that describes the keystroke
1358 information for the hot key.
1359
1360 @return The registered HotKey context. If no found, NULL will return.
1361 **/
1362 BROWSER_HOT_KEY *
1363 GetHotKeyFromRegisterList (
1364 IN EFI_INPUT_KEY *KeyData
1365 );
1366
1367 /**
1368
1369 Get FORM_BROWSER_STATEMENT from FORM_DISPLAY_ENGINE_STATEMENT based on the OpCode info.
1370
1371 @param DisplayStatement The input FORM_DISPLAY_ENGINE_STATEMENT.
1372
1373 @retval FORM_BROWSER_STATEMENT The return FORM_BROWSER_STATEMENT info.
1374
1375 **/
1376 FORM_BROWSER_STATEMENT *
1377 GetBrowserStatement (
1378 IN FORM_DISPLAY_ENGINE_STATEMENT *DisplayStatement
1379 );
1380
1381 /**
1382 Password may be stored as encrypted by Configuration Driver. When change a
1383 password, user will be challenged with old password. To validate user input old
1384 password, we will send the clear text to Configuration Driver via Callback().
1385 Configuration driver is responsible to check the passed in password and return
1386 the validation result. If validation pass, state machine in password Callback()
1387 will transit from BROWSER_STATE_VALIDATE_PASSWORD to BROWSER_STATE_SET_PASSWORD.
1388 After user type in new password twice, Callback() will be invoked to send the
1389 new password to Configuration Driver.
1390
1391 @param Selection Pointer to UI_MENU_SELECTION.
1392 @param MenuOption The MenuOption for this password Question.
1393 @param String The clear text of password.
1394
1395 @retval EFI_NOT_AVAILABLE_YET Callback() request to terminate password input.
1396 @return In state of BROWSER_STATE_VALIDATE_PASSWORD:
1397 @retval EFI_SUCCESS Password correct, Browser will prompt for new
1398 password.
1399 @retval EFI_NOT_READY Password incorrect, Browser will show error
1400 message.
1401 @retval Other Browser will do nothing.
1402 @return In state of BROWSER_STATE_SET_PASSWORD:
1403 @retval EFI_SUCCESS Set password success.
1404 @retval Other Set password failed.
1405
1406 **/
1407 EFI_STATUS
1408 PasswordCallback (
1409 IN UI_MENU_SELECTION *Selection,
1410 IN FORM_BROWSER_STATEMENT *Question,
1411 IN CHAR16 *String
1412 );
1413
1414 /**
1415 Display error message for invalid password.
1416
1417 **/
1418 VOID
1419 PasswordInvalid (
1420 VOID
1421 );
1422
1423 /**
1424 The worker function that send the displays to the screen. On output,
1425 the selection made by user is returned.
1426
1427 @param Selection On input, Selection tell setup browser the information
1428 about the Selection, form and formset to be displayed.
1429 On output, Selection return the screen item that is selected
1430 by user.
1431
1432 @retval EFI_SUCCESS The page is displayed successfully.
1433 @return Other value if the page failed to be diplayed.
1434
1435 **/
1436 EFI_STATUS
1437 SetupBrowser (
1438 IN OUT UI_MENU_SELECTION *Selection
1439 );
1440
1441 /**
1442 Free up the resource allocated for all strings required
1443 by Setup Browser.
1444
1445 **/
1446 VOID
1447 FreeBrowserStrings (
1448 VOID
1449 );
1450
1451 /**
1452 Create a menu with specified formset GUID and form ID, and add it as a child
1453 of the given parent menu.
1454
1455 @param HiiHandle Hii handle related to this formset.
1456 @param FormSetGuid The Formset Guid of menu to be added.
1457 @param FormId The Form ID of menu to be added.
1458 @param QuestionId The question id of this menu to be added.
1459
1460 @return A pointer to the newly added menu or NULL if memory is insufficient.
1461
1462 **/
1463 FORM_ENTRY_INFO *
1464 UiAddMenuList (
1465 IN EFI_HII_HANDLE HiiHandle,
1466 IN EFI_GUID *FormSetGuid,
1467 IN UINT16 FormId,
1468 IN UINT16 QuestionId
1469 );
1470
1471 /**
1472 Search Menu with given FormSetGuid and FormId in all cached menu list.
1473
1474 @param HiiHandle HiiHandle for FormSet.
1475 @param FormSetGuid The Formset GUID of the menu to search.
1476 @param FormId The Form ID of menu to search.
1477
1478 @return A pointer to menu found or NULL if not found.
1479
1480 **/
1481 FORM_ENTRY_INFO *
1482 UiFindMenuList (
1483 IN EFI_HII_HANDLE HiiHandle,
1484 IN EFI_GUID *FormSetGuid,
1485 IN UINT16 FormId
1486 );
1487
1488 /**
1489 Free Menu list linked list.
1490
1491 @param MenuListHead One Menu list point in the menu list.
1492
1493 **/
1494 VOID
1495 UiFreeMenuList (
1496 LIST_ENTRY *MenuListHead
1497 );
1498
1499 /**
1500 Find parent menu for current menu.
1501
1502 @param CurrentMenu Current Menu
1503
1504 @retval The parent menu for current menu.
1505 **/
1506 FORM_ENTRY_INFO *
1507 UiFindParentMenu (
1508 IN FORM_ENTRY_INFO *CurrentMenu
1509 );
1510
1511 /**
1512 Search an Option of a Question by its value.
1513
1514 @param Question The Question
1515 @param OptionValue Value for Option to be searched.
1516
1517 @retval Pointer Pointer to the found Option.
1518 @retval NULL Option not found.
1519
1520 **/
1521 QUESTION_OPTION *
1522 ValueToOption (
1523 IN FORM_BROWSER_STATEMENT *Question,
1524 IN EFI_HII_VALUE *OptionValue
1525 );
1526 /**
1527 Return data element in an Array by its Index.
1528
1529 @param Array The data array.
1530 @param Type Type of the data in this array.
1531 @param Index Zero based index for data in this array.
1532
1533 @retval Value The data to be returned
1534
1535 **/
1536 UINT64
1537 GetArrayData (
1538 IN VOID *Array,
1539 IN UINT8 Type,
1540 IN UINTN Index
1541 );
1542
1543 /**
1544 Set value of a data element in an Array by its Index.
1545
1546 @param Array The data array.
1547 @param Type Type of the data in this array.
1548 @param Index Zero based index for data in this array.
1549 @param Value The value to be set.
1550
1551 **/
1552 VOID
1553 SetArrayData (
1554 IN VOID *Array,
1555 IN UINT8 Type,
1556 IN UINTN Index,
1557 IN UINT64 Value
1558 );
1559
1560 /**
1561 Compare two Hii value.
1562
1563 @param Value1 Expression value to compare on left-hand.
1564 @param Value2 Expression value to compare on right-hand.
1565 @param Result Return value after compare.
1566 retval 0 Two operators equal.
1567 return Positive value if Value1 is greater than Value2.
1568 retval Negative value if Value1 is less than Value2.
1569 @param HiiHandle Only required for string compare.
1570
1571 @retval other Could not perform compare on two values.
1572 @retval EFI_SUCCESS Compare the value success.
1573
1574 **/
1575 EFI_STATUS
1576 CompareHiiValue (
1577 IN EFI_HII_VALUE *Value1,
1578 IN EFI_HII_VALUE *Value2,
1579 OUT INTN *Result,
1580 IN EFI_HII_HANDLE HiiHandle OPTIONAL
1581 );
1582
1583 /**
1584 Perform Password check.
1585 Passwork may be encrypted by driver that requires the specific check.
1586
1587 @param Form Form where Password Statement is in.
1588 @param Statement Password statement
1589 @param PasswordString Password string to be checked. It may be NULL.
1590 NULL means to restore password.
1591 "" string can be used to checked whether old password does exist.
1592
1593 @return Status Status of Password check.
1594 **/
1595 EFI_STATUS
1596 EFIAPI
1597 PasswordCheck (
1598 IN FORM_DISPLAY_ENGINE_FORM *Form,
1599 IN FORM_DISPLAY_ENGINE_STATEMENT *Statement,
1600 IN EFI_STRING PasswordString OPTIONAL
1601 );
1602
1603 /**
1604
1605 Get FORM_BROWSER_STATEMENT from FORM_DISPLAY_ENGINE_STATEMENT based on the OpCode info.
1606
1607 @param DisplayStatement The input FORM_DISPLAY_ENGINE_STATEMENT.
1608
1609 @retval FORM_BROWSER_STATEMENT The return FORM_BROWSER_STATEMENT info.
1610
1611 **/
1612 FORM_BROWSER_STATEMENT *
1613 GetBrowserStatement (
1614 IN FORM_DISPLAY_ENGINE_STATEMENT *DisplayStatement
1615 );
1616
1617 /**
1618
1619 Initialize the Display form structure data.
1620
1621 **/
1622 VOID
1623 InitializeDisplayFormData (
1624 VOID
1625 );
1626
1627
1628 /**
1629 Base on the current formset info, clean the ConfigRequest string in browser storage.
1630
1631 @param FormSet Pointer of the FormSet
1632
1633 **/
1634 VOID
1635 CleanBrowserStorage (
1636 IN OUT FORM_BROWSER_FORMSET *FormSet
1637 );
1638
1639 /**
1640 Find HII Handle in the HII database associated with given Device Path.
1641
1642 If DevicePath is NULL, then ASSERT.
1643
1644 @param DevicePath Device Path associated with the HII package list
1645 handle.
1646 @param FormsetGuid The formset guid for this formset.
1647
1648 @retval Handle HII package list Handle associated with the Device
1649 Path.
1650 @retval NULL Hii Package list handle is not found.
1651
1652 **/
1653 EFI_HII_HANDLE
1654 DevicePathToHiiHandle (
1655 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,
1656 IN EFI_GUID *FormsetGuid
1657 );
1658
1659 /**
1660 Adjust the config request info, remove the request elements which already in AllConfigRequest string.
1661
1662 @param Storage Form set Storage.
1663 @param Request The input request string.
1664 @param RespString Whether the input is ConfigRequest or ConfigResp format.
1665
1666 @retval TRUE Has element not covered by current used elements, need to continue to call ExtractConfig
1667 @retval FALSE All elements covered by current used elements.
1668
1669 **/
1670 BOOLEAN
1671 ConfigRequestAdjust (
1672 IN BROWSER_STORAGE *Storage,
1673 IN CHAR16 *Request,
1674 IN BOOLEAN RespString
1675 );
1676
1677 #endif