]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkPkg/Library/FrameworkIfrSupportLib/IfrCommon.c
remove unnecessary comments introduced by tools.
[mirror_edk2.git] / IntelFrameworkPkg / Library / FrameworkIfrSupportLib / IfrCommon.c
1 /** @file
2 Common Library Routines to assist in IFR creation on-the-fly
3
4 Copyright (c) 2006, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include "IfrSupportLibInternal.h"
16
17 /**
18 Determine what is the current language setting
19 The setting is stored in language variable in flash. This routine
20 will get setting by accesssing that variable. If failed to access
21 language variable, then use default setting that 'eng' as current
22 language setting.
23
24 @param Lang Pointer of system language
25
26 @return whether sucess to get setting from variable
27 **/
28 EFI_STATUS
29 GetCurrentLanguage (
30 OUT CHAR16 *Lang
31 )
32 {
33 EFI_STATUS Status;
34 UINTN Size;
35 UINTN Index;
36 CHAR8 Language[4];
37
38 //
39 // Getting the system language and placing it into our Global Data
40 //
41 Size = sizeof (Language);
42
43 Status = gRT->GetVariable (
44 (CHAR16 *) L"Lang",
45 &gEfiGlobalVariableGuid,
46 NULL,
47 &Size,
48 Language
49 );
50
51 if (EFI_ERROR (Status)) {
52 AsciiStrCpy (Language, "eng");
53 }
54
55 for (Index = 0; Index < 3; Index++) {
56 //
57 // Bitwise AND ascii value with 0xDF yields an uppercase value.
58 // Sign extend into a unicode value
59 //
60 Lang[Index] = (CHAR16) (Language[Index] & 0xDF);
61 }
62
63 //
64 // Null-terminate the value
65 //
66 Lang[3] = (CHAR16) 0;
67
68 return Status;
69 }
70
71 /**
72 Add a string to the incoming buffer and return the token and offset data
73
74 @param StringBuffer The incoming buffer
75 @param Language Currrent language
76 @param String The string to be added
77 @param StringToken The index where the string placed
78
79 @retval EFI_OUT_OF_RESOURCES No enough buffer to allocate
80 @retval EFI_SUCCESS String successfully added to the incoming buffer
81 **/
82 EFI_STATUS
83 AddString (
84 IN VOID *StringBuffer,
85 IN CHAR16 *Language,
86 IN CHAR16 *String,
87 IN OUT STRING_REF *StringToken
88 )
89 {
90 EFI_HII_STRING_PACK *StringPack;
91 EFI_HII_STRING_PACK *StringPackBuffer;
92 VOID *NewBuffer;
93 RELOFST *PackSource;
94 RELOFST *PackDestination;
95 UINT8 *Source;
96 UINT8 *Destination;
97 UINTN Index;
98 BOOLEAN Finished;
99 UINTN SizeofLanguage;
100 UINTN SizeofString;
101
102 StringPack = (EFI_HII_STRING_PACK *) StringBuffer;
103 Finished = FALSE;
104
105 //
106 // Pre-allocate a buffer sufficient for us to work on.
107 // We will use it as a destination scratch pad to build data on
108 // and when complete shift the data back to the original buffer
109 //
110 NewBuffer = AllocateZeroPool (DEFAULT_STRING_BUFFER_SIZE);
111 if (NewBuffer == NULL) {
112 return EFI_OUT_OF_RESOURCES;
113 }
114
115 StringPackBuffer = (EFI_HII_STRING_PACK *) NewBuffer;
116
117 //
118 // StringPack is terminated with a length 0 entry
119 //
120 for (; StringPack->Header.Length != 0;) {
121 //
122 // If this stringpack's language is same as CurrentLanguage, use it
123 //
124 if (CompareMem ((VOID *) ((CHAR8 *) (StringPack) + StringPack->LanguageNameString), Language, 3) == 0) {
125 //
126 // We have some data in this string pack, copy the string package up to the string data
127 //
128 CopyMem (&StringPackBuffer->Header, &StringPack->Header, sizeof (StringPack));
129
130 //
131 // These are references in the structure to tokens, need to increase them by the space occupied by an additional StringPointer
132 //
133 StringPackBuffer->LanguageNameString = (UINT16) (StringPackBuffer->LanguageNameString + (UINT16) sizeof (RELOFST));
134 StringPackBuffer->PrintableLanguageName = (UINT16) (StringPackBuffer->PrintableLanguageName + (UINT16) sizeof (RELOFST));
135
136 PackSource = (RELOFST *) (StringPack + 1);
137 PackDestination = (RELOFST *) (StringPackBuffer + 1);
138 for (Index = 0; PackSource[Index] != 0x0000; Index++) {
139 //
140 // Copy the stringpointers from old to new buffer
141 // remember that we are adding a string, so the string offsets will all go up by sizeof (RELOFST)
142 //
143 PackDestination[Index] = (UINT16) (PackDestination[Index] + sizeof (RELOFST));
144 }
145
146 //
147 // Add a new stringpointer in the new buffer since we are adding a string. Null terminate it
148 //
149 PackDestination[Index] = (UINT16)(PackDestination[Index-1] +
150 StrSize((CHAR16 *)((CHAR8 *)(StringPack) + PackSource[Index-1])));
151 PackDestination[Index + 1] = (UINT16) 0;
152
153 //
154 // Index is the token value for the new string
155 //
156 *StringToken = (UINT16) Index;
157
158 //
159 // Source now points to the beginning of the old buffer strings
160 // Destination now points to the beginning of the new buffer strings
161 //
162 Source = (UINT8 *) &PackSource[Index + 1];
163 Destination = (UINT8 *) &PackDestination[Index + 2];
164
165 //
166 // This should copy all the strings from the old buffer to the new buffer
167 //
168 for (; Index != 0; Index--) {
169 //
170 // Copy Source string to destination buffer
171 //
172 StrCpy ((CHAR16 *) Destination, (CHAR16 *) Source);
173
174 //
175 // Adjust the source/destination to the next string location
176 //
177 Destination = Destination + StrSize ((CHAR16 *) Source);
178 Source = Source + StrSize ((CHAR16 *) Source);
179 }
180
181 //
182 // This copies the new string to the destination buffer
183 //
184 StrCpy ((CHAR16 *) Destination, (CHAR16 *) String);
185
186 //
187 // Adjust the size of the changed string pack by adding the size of the new string
188 // along with the size of the additional offset entry for the new string
189 //
190 StringPackBuffer->Header.Length = (UINT32) ((UINTN) StringPackBuffer->Header.Length + StrSize (String) + sizeof (RELOFST));
191
192 //
193 // Advance the buffers to point to the next spots.
194 //
195 StringPackBuffer = (EFI_HII_STRING_PACK *) ((CHAR8 *) (StringPackBuffer) + StringPackBuffer->Header.Length);
196 StringPack = (EFI_HII_STRING_PACK *) ((CHAR8 *) (StringPack) + StringPack->Header.Length);
197 Finished = TRUE;
198 continue;
199 }
200 //
201 // This isn't the language of the stringpack we were asked to add a string to
202 // so we need to copy it to the new buffer.
203 //
204 CopyMem (&StringPackBuffer->Header, &StringPack->Header, StringPack->Header.Length);
205
206 //
207 // Advance the buffers to point to the next spots.
208 //
209 StringPackBuffer = (EFI_HII_STRING_PACK *) ((CHAR8 *) (StringPackBuffer) + StringPack->Header.Length);
210 StringPack = (EFI_HII_STRING_PACK *) ((CHAR8 *) (StringPack) + StringPack->Header.Length);
211 }
212
213 //
214 // If we didn't copy the new data to a stringpack yet
215 //
216 if (!Finished) {
217 PackDestination = (RELOFST *) (StringPackBuffer + 1);
218 //
219 // Pointing to a new string pack location
220 //
221 SizeofLanguage = StrSize (Language);
222 SizeofString = StrSize (String);
223 StringPackBuffer->Header.Length = (UINT32)
224 (
225 sizeof (EFI_HII_STRING_PACK) -
226 sizeof (EFI_STRING) +
227 sizeof (RELOFST) +
228 sizeof (RELOFST) +
229 SizeofLanguage +
230 SizeofString
231 );
232 StringPackBuffer->Header.Type = EFI_HII_STRING;
233 StringPackBuffer->LanguageNameString = (UINT16) ((UINTN) &PackDestination[3] - (UINTN) StringPackBuffer);
234 StringPackBuffer->PrintableLanguageName = (UINT16) ((UINTN) &PackDestination[3] - (UINTN) StringPackBuffer);
235 StringPackBuffer->Attributes = 0;
236 PackDestination[0] = (UINT16) ((UINTN) &PackDestination[3] - (UINTN) StringPackBuffer);
237 PackDestination[1] = (UINT16) (PackDestination[0] + StrSize (Language));
238 PackDestination[2] = (UINT16) 0;
239
240 //
241 // The first string location will be set to destination. The minimum number of strings
242 // associated with a stringpack will always be token 0 stored as the languagename (e.g. ENG, SPA, etc)
243 // and token 1 as the new string being added and and null entry for the stringpointers
244 //
245 Destination = (UINT8 *) &PackDestination[3];
246
247 //
248 // Copy the language name string to the new buffer
249 //
250 StrCpy ((CHAR16 *) Destination, Language);
251
252 //
253 // Advance the destination to the new empty spot
254 //
255 Destination = Destination + StrSize (Language);
256
257 //
258 // Copy the string to the new buffer
259 //
260 StrCpy ((CHAR16 *) Destination, String);
261
262 //
263 // Since we are starting with a new string pack - we know the new string is token 1
264 //
265 *StringToken = (UINT16) 1;
266 }
267
268 //
269 // Zero out the original buffer and copy the updated data in the new buffer to the old buffer
270 //
271 ZeroMem (StringBuffer, DEFAULT_STRING_BUFFER_SIZE);
272 CopyMem (StringBuffer, NewBuffer, DEFAULT_STRING_BUFFER_SIZE);
273
274 //
275 // Free the newly created buffer since we don't need it anymore
276 //
277 gBS->FreePool (NewBuffer);
278 return EFI_SUCCESS;
279 }
280
281 /**
282 Add op-code data to the FormBuffer
283
284 @param FormBuffer Form buffer to be inserted to
285 @param OpCodeData Op-code data to be inserted
286
287 @retval EFI_OUT_OF_RESOURCES No enough buffer to allocate
288 @retval EFI_SUCCESS Op-code data successfully inserted
289 **/
290 EFI_STATUS
291 AddOpCode (
292 IN VOID *FormBuffer,
293 IN OUT VOID *OpCodeData
294 )
295 {
296 EFI_HII_PACK_HEADER *NewBuffer;
297 UINT8 *Source;
298 UINT8 *Destination;
299
300 //
301 // Pre-allocate a buffer sufficient for us to work on.
302 // We will use it as a destination scratch pad to build data on
303 // and when complete shift the data back to the original buffer
304 //
305 NewBuffer = AllocateZeroPool (DEFAULT_FORM_BUFFER_SIZE);
306 if (NewBuffer == NULL) {
307 return EFI_OUT_OF_RESOURCES;
308 }
309
310 Source = (UINT8 *) FormBuffer;
311 Destination = (UINT8 *) NewBuffer;
312
313 //
314 // Copy the IFR Package header to the new buffer
315 //
316 CopyMem (Destination, Source, sizeof (EFI_HII_PACK_HEADER));
317
318 //
319 // Advance Source and Destination to next op-code
320 //
321 Source = Source + sizeof (EFI_HII_PACK_HEADER);
322 Destination = Destination + sizeof (EFI_HII_PACK_HEADER);
323
324 //
325 // Copy data to the new buffer until we run into the end_form
326 //
327 for (; ((FRAMEWORK_EFI_IFR_OP_HEADER *) Source)->OpCode != FRAMEWORK_EFI_IFR_END_FORM_OP;) {
328 //
329 // If the this opcode is an end_form_set we better be creating and endform
330 // Nonetheless, we will add data before the end_form_set. This also provides
331 // for interesting behavior in the code we will run, but has no bad side-effects
332 // since we will possibly do a 0 byte copy in this particular end-case.
333 //
334 if (((FRAMEWORK_EFI_IFR_OP_HEADER *) Source)->OpCode == FRAMEWORK_EFI_IFR_END_FORM_SET_OP) {
335 break;
336 }
337
338 //
339 // Copy data to new buffer
340 //
341 CopyMem (Destination, Source, ((FRAMEWORK_EFI_IFR_OP_HEADER *) Source)->Length);
342
343 //
344 // Adjust Source/Destination to next op-code location
345 //
346 Destination = Destination + (UINTN) ((FRAMEWORK_EFI_IFR_OP_HEADER *) Source)->Length;
347 Source = Source + (UINTN) ((FRAMEWORK_EFI_IFR_OP_HEADER *) Source)->Length;
348 }
349
350 //
351 // Prior to the end_form is where we insert the new op-code data
352 //
353 CopyMem (Destination, OpCodeData, ((FRAMEWORK_EFI_IFR_OP_HEADER *) OpCodeData)->Length);
354 Destination = Destination + (UINTN) ((FRAMEWORK_EFI_IFR_OP_HEADER *) OpCodeData)->Length;
355
356 NewBuffer->Length = (UINT32) (NewBuffer->Length + (UINT32) (((FRAMEWORK_EFI_IFR_OP_HEADER *) OpCodeData)->Length));
357
358 //
359 // Copy end-form data to new buffer
360 //
361 CopyMem (Destination, Source, ((FRAMEWORK_EFI_IFR_OP_HEADER *) Source)->Length);
362
363 //
364 // Adjust Source/Destination to next op-code location
365 //
366 Destination = Destination + (UINTN) ((FRAMEWORK_EFI_IFR_OP_HEADER *) Source)->Length;
367 Source = Source + (UINTN) ((FRAMEWORK_EFI_IFR_OP_HEADER *) Source)->Length;
368
369 //
370 // Copy end-formset data to new buffer
371 //
372 CopyMem (Destination, Source, ((FRAMEWORK_EFI_IFR_OP_HEADER *) Source)->Length);
373
374 //
375 // Zero out the original buffer and copy the updated data in the new buffer to the old buffer
376 //
377 ZeroMem (FormBuffer, DEFAULT_FORM_BUFFER_SIZE);
378 CopyMem (FormBuffer, NewBuffer, DEFAULT_FORM_BUFFER_SIZE);
379
380 //
381 // Free the newly created buffer since we don't need it anymore
382 //
383 gBS->FreePool (NewBuffer);
384 return EFI_SUCCESS;
385 }
386
387 /**
388 Get the HII protocol interface
389
390 @param Hii HII protocol interface
391
392 @return the statue of locating HII protocol
393 **/
394 STATIC
395 EFI_STATUS
396 GetHiiInterface (
397 OUT EFI_HII_PROTOCOL **Hii
398 )
399 {
400 EFI_STATUS Status;
401
402 //
403 // There should only be one HII protocol
404 //
405 Status = gBS->LocateProtocol (
406 &gEfiHiiProtocolGuid,
407 NULL,
408 (VOID **) Hii
409 );
410
411 return Status;;
412 }
413
414 /**
415 Extract information pertaining to the HiiHandle
416
417 @param HiiHandle Hii handle
418 @param ImageLength For input, length of DefaultImage;
419 For output, length of actually required
420 @param DefaultImage Image buffer prepared by caller
421 @param Guid Guid information about the form
422
423 @retval EFI_OUT_OF_RESOURCES No enough buffer to allocate
424 @retval EFI_BUFFER_TOO_SMALL DefualtImage has no enough ImageLength
425 @retval EFI_SUCCESS Successfully extract data from Hii database.
426 **/
427 EFI_STATUS
428 ExtractDataFromHiiHandle (
429 IN FRAMEWORK_EFI_HII_HANDLE HiiHandle,
430 IN OUT UINT16 *ImageLength,
431 OUT UINT8 *DefaultImage,
432 OUT EFI_GUID *Guid
433 )
434 {
435 EFI_STATUS Status;
436 EFI_HII_PROTOCOL *Hii;
437 UINTN DataLength;
438 UINT8 *RawData;
439 UINT8 *OldData;
440 UINTN Index;
441 UINTN Temp;
442 UINTN SizeOfNvStore;
443 UINTN CachedStart;
444
445 DataLength = DEFAULT_FORM_BUFFER_SIZE;
446 SizeOfNvStore = 0;
447 CachedStart = 0;
448
449 Status = GetHiiInterface (&Hii);
450
451 if (EFI_ERROR (Status)) {
452 return Status;
453 }
454
455 //
456 // Allocate space for retrieval of IFR data
457 //
458 RawData = AllocateZeroPool (DataLength);
459 if (RawData == NULL) {
460 return EFI_OUT_OF_RESOURCES;
461 }
462
463 //
464 // Get all the forms associated with this HiiHandle
465 //
466 Status = Hii->GetForms (Hii, HiiHandle, 0, &DataLength, RawData);
467
468 if (EFI_ERROR (Status)) {
469 gBS->FreePool (RawData);
470
471 //
472 // Allocate space for retrieval of IFR data
473 //
474 RawData = AllocateZeroPool (DataLength);
475 if (RawData == NULL) {
476 return EFI_OUT_OF_RESOURCES;
477 }
478
479 //
480 // Get all the forms associated with this HiiHandle
481 //
482 Status = Hii->GetForms (Hii, HiiHandle, 0, &DataLength, RawData);
483 }
484
485 OldData = RawData;
486
487 //
488 // Point RawData to the beginning of the form data
489 //
490 RawData = (UINT8 *) ((UINTN) RawData + sizeof (EFI_HII_PACK_HEADER));
491
492 for (Index = 0; RawData[Index] != FRAMEWORK_EFI_IFR_END_FORM_SET_OP;) {
493 switch (RawData[Index]) {
494 case FRAMEWORK_EFI_IFR_FORM_SET_OP:
495 //
496 // Copy the GUID information from this handle
497 //
498 CopyMem (Guid, &((FRAMEWORK_EFI_IFR_FORM_SET *) &RawData[Index])->Guid, sizeof (EFI_GUID));
499 break;
500
501 case FRAMEWORK_EFI_IFR_ONE_OF_OP:
502 case FRAMEWORK_EFI_IFR_CHECKBOX_OP:
503 case FRAMEWORK_EFI_IFR_NUMERIC_OP:
504 case FRAMEWORK_EFI_IFR_DATE_OP:
505 case FRAMEWORK_EFI_IFR_TIME_OP:
506 case FRAMEWORK_EFI_IFR_PASSWORD_OP:
507 case FRAMEWORK_EFI_IFR_STRING_OP:
508 //
509 // Remember, multiple op-codes may reference the same item, so let's keep a running
510 // marker of what the highest QuestionId that wasn't zero length. This will accurately
511 // maintain the Size of the NvStore
512 //
513 if (((FRAMEWORK_EFI_IFR_ONE_OF *) &RawData[Index])->Width != 0) {
514 Temp = ((FRAMEWORK_EFI_IFR_ONE_OF *) &RawData[Index])->QuestionId + ((FRAMEWORK_EFI_IFR_ONE_OF *) &RawData[Index])->Width;
515 if (SizeOfNvStore < Temp) {
516 SizeOfNvStore = ((FRAMEWORK_EFI_IFR_ONE_OF *) &RawData[Index])->QuestionId + ((FRAMEWORK_EFI_IFR_ONE_OF *) &RawData[Index])->Width;
517 }
518 }
519 }
520
521 Index = RawData[Index + 1] + Index;
522 }
523
524 //
525 // Return an error if buffer is too small
526 //
527 if (SizeOfNvStore > *ImageLength) {
528 gBS->FreePool (OldData);
529 *ImageLength = (UINT16) SizeOfNvStore;
530 return EFI_BUFFER_TOO_SMALL;
531 }
532
533 if (DefaultImage != NULL) {
534 ZeroMem (DefaultImage, SizeOfNvStore);
535 }
536
537 //
538 // Copy the default image information to the user's buffer
539 //
540 for (Index = 0; RawData[Index] != FRAMEWORK_EFI_IFR_END_FORM_SET_OP;) {
541 switch (RawData[Index]) {
542 case FRAMEWORK_EFI_IFR_ONE_OF_OP:
543 CachedStart = ((FRAMEWORK_EFI_IFR_ONE_OF *) &RawData[Index])->QuestionId;
544 break;
545
546 case FRAMEWORK_EFI_IFR_ONE_OF_OPTION_OP:
547 if (((FRAMEWORK_EFI_IFR_ONE_OF_OPTION *) &RawData[Index])->Flags & FRAMEWORK_EFI_IFR_FLAG_DEFAULT) {
548 CopyMem (&DefaultImage[CachedStart], &((FRAMEWORK_EFI_IFR_ONE_OF_OPTION *) &RawData[Index])->Value, 2);
549 }
550 break;
551
552 case FRAMEWORK_EFI_IFR_CHECKBOX_OP:
553 DefaultImage[((FRAMEWORK_EFI_IFR_ONE_OF *) &RawData[Index])->QuestionId] = ((FRAMEWORK_EFI_IFR_CHECKBOX *) &RawData[Index])->Flags;
554 break;
555
556 case FRAMEWORK_EFI_IFR_NUMERIC_OP:
557 CopyMem (
558 &DefaultImage[((FRAMEWORK_EFI_IFR_ONE_OF *) &RawData[Index])->QuestionId],
559 &((FRAMEWORK_EFI_IFR_NUMERIC *) &RawData[Index])->Default,
560 2
561 );
562 break;
563
564 }
565
566 Index = RawData[Index + 1] + Index;
567 }
568
569 *ImageLength = (UINT16) SizeOfNvStore;
570
571 //
572 // Free our temporary repository of form data
573 //
574 gBS->FreePool (OldData);
575
576 return EFI_SUCCESS;
577 }
578
579 /**
580 Finds HII handle for given pack GUID previously registered with the HII.
581
582 @param HiiProtocol pointer to pointer to HII protocol interface.
583 If NULL, the interface will be found but not returned.
584 If it points to NULL, the interface will be found and
585 written back to the pointer that is pointed to.
586 @param Guid The GUID of the pack that registered with the HII.
587
588 @return Handle to the HII pack previously registered by the memory driver.
589 **/
590 FRAMEWORK_EFI_HII_HANDLE
591 FindHiiHandle (
592 IN OUT EFI_HII_PROTOCOL **HiiProtocol, OPTIONAL
593 IN EFI_GUID *Guid
594 )
595 {
596 EFI_STATUS Status;
597
598 FRAMEWORK_EFI_HII_HANDLE *HiiHandleBuffer;
599 FRAMEWORK_EFI_HII_HANDLE HiiHandle;
600 UINT16 HiiHandleBufferLength;
601 UINT32 NumberOfHiiHandles;
602 EFI_GUID HiiGuid;
603 EFI_HII_PROTOCOL *HiiProt;
604 UINT32 Index;
605 UINT16 Length;
606
607 HiiHandle = 0;
608 if ((HiiProtocol != NULL) && (*HiiProtocol != NULL)) {
609 //
610 // The protocol has been passed in
611 //
612 HiiProt = *HiiProtocol;
613 } else {
614 gBS->LocateProtocol (
615 &gEfiHiiProtocolGuid,
616 NULL,
617 (VOID **) &HiiProt
618 );
619 if (HiiProt == NULL) {
620 return HiiHandle;
621 }
622
623 if (HiiProtocol != NULL) {
624 //
625 // Return back the HII protocol for the caller as promissed
626 //
627 *HiiProtocol = HiiProt;
628 }
629 }
630 //
631 // Allocate buffer
632 //
633 HiiHandleBufferLength = 10;
634 HiiHandleBuffer = AllocatePool (HiiHandleBufferLength);
635 ASSERT (HiiHandleBuffer != NULL);
636
637 //
638 // Get the Handles of the packages that were registered with Hii
639 //
640 Status = HiiProt->FindHandles (
641 HiiProt,
642 &HiiHandleBufferLength,
643 HiiHandleBuffer
644 );
645
646 //
647 // Get a bigger bugffer if this one is to small, and try again
648 //
649 if (Status == EFI_BUFFER_TOO_SMALL) {
650
651 gBS->FreePool (HiiHandleBuffer);
652
653 HiiHandleBuffer = AllocatePool (HiiHandleBufferLength);
654 ASSERT (HiiHandleBuffer != NULL);
655
656 Status = HiiProt->FindHandles (
657 HiiProt,
658 &HiiHandleBufferLength,
659 HiiHandleBuffer
660 );
661 }
662
663 if (EFI_ERROR (Status)) {
664 goto lbl_exit;
665 }
666
667 NumberOfHiiHandles = HiiHandleBufferLength / sizeof (FRAMEWORK_EFI_HII_HANDLE );
668
669 //
670 // Iterate Hii handles and look for the one that matches our Guid
671 //
672 for (Index = 0; Index < NumberOfHiiHandles; Index++) {
673
674 Length = 0;
675 ExtractDataFromHiiHandle (HiiHandleBuffer[Index], &Length, NULL, &HiiGuid);
676
677 if (CompareGuid (&HiiGuid, Guid)) {
678
679 HiiHandle = HiiHandleBuffer[Index];
680 break;
681 }
682 }
683
684 lbl_exit:
685 gBS->FreePool (HiiHandleBuffer);
686 return HiiHandle;
687 }
688
689 /**
690 Validate that the data associated with the HiiHandle in NVRAM is within
691 the reasonable parameters for that FormSet. Values for strings and passwords
692 are not verified due to their not having the equivalent of valid range settings.
693
694 @param HiiHandle Handle of the HII database entry to query
695
696 @param Results If return Status is EFI_SUCCESS, Results provides valid data
697 TRUE = NVRAM Data is within parameters
698 FALSE = NVRAM Data is NOT within parameters
699 @retval EFI_OUT_OF_RESOURCES No enough buffer to allocate
700 @retval EFI_SUCCESS Data successfully validated
701 **/
702 EFI_STATUS
703 ValidateDataFromHiiHandle (
704 IN FRAMEWORK_EFI_HII_HANDLE HiiHandle,
705 OUT BOOLEAN *Results
706 )
707 {
708 EFI_STATUS Status;
709 EFI_HII_PROTOCOL *Hii;
710 EFI_GUID Guid;
711 UINT8 *RawData;
712 UINT8 *OldData;
713 UINTN RawDataLength;
714 UINT8 *VariableData;
715 UINTN Index;
716 UINTN Temp;
717 UINTN SizeOfNvStore;
718 UINTN CachedStart;
719 BOOLEAN GotMatch;
720
721 RawDataLength = DEFAULT_FORM_BUFFER_SIZE;
722 SizeOfNvStore = 0;
723 CachedStart = 0;
724 GotMatch = FALSE;
725 *Results = TRUE;
726
727 Status = GetHiiInterface (&Hii);
728
729 if (EFI_ERROR (Status)) {
730 return Status;
731 }
732
733 //
734 // Allocate space for retrieval of IFR data
735 //
736 RawData = AllocateZeroPool (RawDataLength);
737 if (RawData == NULL) {
738 return EFI_OUT_OF_RESOURCES;
739 }
740
741 //
742 // Get all the forms associated with this HiiHandle
743 //
744 Status = Hii->GetForms (Hii, HiiHandle, 0, &RawDataLength, RawData);
745
746 if (EFI_ERROR (Status)) {
747 gBS->FreePool (RawData);
748
749 //
750 // Allocate space for retrieval of IFR data
751 //
752 RawData = AllocateZeroPool (RawDataLength);
753 if (RawData == NULL) {
754 return EFI_OUT_OF_RESOURCES;
755 }
756
757 //
758 // Get all the forms associated with this HiiHandle
759 //
760 Status = Hii->GetForms (Hii, HiiHandle, 0, &RawDataLength, RawData);
761 }
762
763 OldData = RawData;
764
765 //
766 // Point RawData to the beginning of the form data
767 //
768 RawData = (UINT8 *) ((UINTN) RawData + sizeof (EFI_HII_PACK_HEADER));
769
770 for (Index = 0; RawData[Index] != FRAMEWORK_EFI_IFR_END_FORM_SET_OP;) {
771 if (RawData[Index] == FRAMEWORK_EFI_IFR_FORM_SET_OP) {
772 CopyMem (&Guid, &((FRAMEWORK_EFI_IFR_FORM_SET *) &RawData[Index])->Guid, sizeof (EFI_GUID));
773 break;
774 }
775
776 Index = RawData[Index + 1] + Index;
777 }
778
779 for (Index = 0; RawData[Index] != FRAMEWORK_EFI_IFR_END_FORM_SET_OP;) {
780 switch (RawData[Index]) {
781 case FRAMEWORK_EFI_IFR_FORM_SET_OP:
782 break;
783
784 case FRAMEWORK_EFI_IFR_ONE_OF_OP:
785 case FRAMEWORK_EFI_IFR_CHECKBOX_OP:
786 case FRAMEWORK_EFI_IFR_NUMERIC_OP:
787 case FRAMEWORK_EFI_IFR_DATE_OP:
788 case FRAMEWORK_EFI_IFR_TIME_OP:
789 case FRAMEWORK_EFI_IFR_PASSWORD_OP:
790 case FRAMEWORK_EFI_IFR_STRING_OP:
791 //
792 // Remember, multiple op-codes may reference the same item, so let's keep a running
793 // marker of what the highest QuestionId that wasn't zero length. This will accurately
794 // maintain the Size of the NvStore
795 //
796 if (((FRAMEWORK_EFI_IFR_ONE_OF *) &RawData[Index])->Width != 0) {
797 Temp = ((FRAMEWORK_EFI_IFR_ONE_OF *) &RawData[Index])->QuestionId + ((FRAMEWORK_EFI_IFR_ONE_OF *) &RawData[Index])->Width;
798 if (SizeOfNvStore < Temp) {
799 SizeOfNvStore = ((FRAMEWORK_EFI_IFR_ONE_OF *) &RawData[Index])->QuestionId + ((FRAMEWORK_EFI_IFR_ONE_OF *) &RawData[Index])->Width;
800 }
801 }
802 }
803
804 Index = RawData[Index + 1] + Index;
805 }
806
807 //
808 // Allocate memory for our File Form Tags
809 //
810 VariableData = AllocateZeroPool (SizeOfNvStore);
811 if (VariableData == NULL) {
812 return EFI_OUT_OF_RESOURCES;
813 }
814
815 Status = gRT->GetVariable (
816 (CHAR16 *) L"Setup",
817 &Guid,
818 NULL,
819 &SizeOfNvStore,
820 (VOID *) VariableData
821 );
822
823 if (EFI_ERROR (Status)) {
824
825 //
826 // If there is a variable that exists already and it is larger than what we calculated the
827 // storage needs to be, we must assume the variable size from GetVariable is correct and not
828 // allow the truncation of the variable. It is very possible that the user who created the IFR
829 // we are cracking is not referring to a variable that was in a previous map, however we cannot
830 // allow it's truncation.
831 //
832 if (Status == EFI_BUFFER_TOO_SMALL) {
833 //
834 // Free the buffer that was allocated that was too small
835 //
836 gBS->FreePool (VariableData);
837
838 VariableData = AllocatePool (SizeOfNvStore);
839 if (VariableData == NULL) {
840 return EFI_OUT_OF_RESOURCES;
841 }
842
843 Status = gRT->GetVariable (
844 (CHAR16 *) L"Setup",
845 &Guid,
846 NULL,
847 &SizeOfNvStore,
848 (VOID *) VariableData
849 );
850 }
851 }
852
853 //
854 // Walk through the form and see that the variable data it refers to is ok.
855 // This allows for the possibility of stale (obsoleted) data in the variable
856 // can be overlooked without causing an error
857 //
858 for (Index = 0; RawData[Index] != FRAMEWORK_EFI_IFR_END_FORM_SET_OP;) {
859 switch (RawData[Index]) {
860 case FRAMEWORK_EFI_IFR_ONE_OF_OP:
861 //
862 // A one_of has no data, its the option that does - cache the storage Id
863 //
864 CachedStart = ((FRAMEWORK_EFI_IFR_ONE_OF *) &RawData[Index])->QuestionId;
865 break;
866
867 case FRAMEWORK_EFI_IFR_ONE_OF_OPTION_OP:
868 //
869 // A one_of_option can be any value
870 //
871 if (VariableData[CachedStart] == ((FRAMEWORK_EFI_IFR_ONE_OF_OPTION *) &RawData[Index])->Value) {
872 GotMatch = TRUE;
873 }
874 break;
875
876 case FRAMEWORK_EFI_IFR_END_ONE_OF_OP:
877 //
878 // At this point lets make sure that the data value in the NVRAM matches one of the options
879 //
880 if (!GotMatch) {
881 *Results = FALSE;
882 return EFI_SUCCESS;
883 }
884 break;
885
886 case FRAMEWORK_EFI_IFR_CHECKBOX_OP:
887 //
888 // A checkbox is a boolean, so 0 and 1 are valid
889 // Remember, QuestionId corresponds to the offset location of the data in the variable
890 //
891 if (VariableData[((FRAMEWORK_EFI_IFR_CHECKBOX *) &RawData[Index])->QuestionId] > 1) {
892 *Results = FALSE;
893 return EFI_SUCCESS;
894 }
895 break;
896
897 case FRAMEWORK_EFI_IFR_NUMERIC_OP:
898 if ((VariableData[((FRAMEWORK_EFI_IFR_NUMERIC *)&RawData[Index])->QuestionId] < ((FRAMEWORK_EFI_IFR_NUMERIC *)&RawData[Index])->Minimum) ||
899 (VariableData[((FRAMEWORK_EFI_IFR_NUMERIC *)&RawData[Index])->QuestionId] > ((FRAMEWORK_EFI_IFR_NUMERIC *)&RawData[Index])->Maximum)) {
900 *Results = FALSE;
901 return EFI_SUCCESS;
902 }
903 break;
904
905 }
906
907 Index = RawData[Index + 1] + Index;
908 }
909
910 //
911 // Free our temporary repository of form data
912 //
913 gBS->FreePool (OldData);
914 gBS->FreePool (VariableData);
915
916 return EFI_SUCCESS;
917 }
918
919