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