]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Variable/Pei/Variable.c
MdeModulePkg/Variable: Check if there is a NV Variable Storage header prior to use...
[mirror_edk2.git] / MdeModulePkg / Universal / Variable / Pei / Variable.c
1 /** @file
2
3 Implement ReadOnly Variable Services required by PEIM and install
4 PEI ReadOnly Varaiable2 PPI. These services operates the non volatile storage space.
5
6 Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
7 This program and the accompanying materials
8 are licensed and made available under the terms and conditions of the BSD License
9 which accompanies this distribution. The full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php
11
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14 Module Name:
15
16 **/
17
18
19 #include "Variable.h"
20
21 //
22 // Module globals
23 //
24 EFI_PEI_READ_ONLY_VARIABLE2_PPI mVariablePpi = {
25 PeiGetVariable,
26 PeiGetNextVariableName
27 };
28
29 EFI_PEI_PPI_DESCRIPTOR mPpiListVariable = {
30 (EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),
31 &gEfiPeiReadOnlyVariable2PpiGuid,
32 &mVariablePpi
33 };
34
35
36 /**
37 Provide the functionality of the variable services.
38
39 @param FileHandle Handle of the file being invoked.
40 Type EFI_PEI_FILE_HANDLE is defined in FfsFindNextFile().
41 @param PeiServices General purpose services available to every PEIM.
42
43 @retval EFI_SUCCESS If the interface could be successfully installed
44 @retval Others Returned from PeiServicesInstallPpi()
45 **/
46 EFI_STATUS
47 EFIAPI
48 PeimInitializeVariableServices (
49 IN EFI_PEI_FILE_HANDLE FileHandle,
50 IN CONST EFI_PEI_SERVICES **PeiServices
51 )
52 {
53 return PeiServicesInstallPpi (&mPpiListVariable);
54 }
55
56 /**
57
58 Gets the pointer to the first variable header in given variable store area.
59
60 @param VarStoreHeader Pointer to the Variable Store Header.
61
62 @return Pointer to the first variable header
63
64 **/
65 VARIABLE_HEADER *
66 GetStartPointer (
67 IN VARIABLE_STORE_HEADER *VarStoreHeader
68 )
69 {
70 //
71 // The end of variable store
72 //
73 return (VARIABLE_HEADER *) HEADER_ALIGN (VarStoreHeader + 1);
74 }
75
76
77 /**
78 This code gets the pointer to the last variable memory pointer byte.
79
80 @param VarStoreHeader Pointer to the Variable Store Header.
81
82 @return VARIABLE_HEADER* pointer to last unavailable Variable Header.
83
84 **/
85 VARIABLE_HEADER *
86 GetEndPointer (
87 IN VARIABLE_STORE_HEADER *VarStoreHeader
88 )
89 {
90 //
91 // The end of variable store
92 //
93 return (VARIABLE_HEADER *) HEADER_ALIGN ((UINTN) VarStoreHeader + VarStoreHeader->Size);
94 }
95
96
97 /**
98 This code checks if variable header is valid or not.
99
100 @param Variable Pointer to the Variable Header.
101
102 @retval TRUE Variable header is valid.
103 @retval FALSE Variable header is not valid.
104
105 **/
106 BOOLEAN
107 IsValidVariableHeader (
108 IN VARIABLE_HEADER *Variable
109 )
110 {
111 if (Variable == NULL || Variable->StartId != VARIABLE_DATA ) {
112 return FALSE;
113 }
114
115 return TRUE;
116 }
117
118
119 /**
120 This code gets the size of name of variable.
121
122 @param Variable Pointer to the Variable Header.
123
124 @return Size of variable in bytes in type UINTN.
125
126 **/
127 UINTN
128 NameSizeOfVariable (
129 IN VARIABLE_HEADER *Variable
130 )
131 {
132 if (Variable->State == (UINT8) (-1) ||
133 Variable->DataSize == (UINT32) (-1) ||
134 Variable->NameSize == (UINT32) (-1) ||
135 Variable->Attributes == (UINT32) (-1)) {
136 return 0;
137 }
138 return (UINTN) Variable->NameSize;
139 }
140
141
142 /**
143 This code gets the size of data of variable.
144
145 @param Variable Pointer to the Variable Header.
146
147 @return Size of variable in bytes in type UINTN.
148
149 **/
150 UINTN
151 DataSizeOfVariable (
152 IN VARIABLE_HEADER *Variable
153 )
154 {
155 if (Variable->State == (UINT8) (-1) ||
156 Variable->DataSize == (UINT32) (-1) ||
157 Variable->NameSize == (UINT32) (-1) ||
158 Variable->Attributes == (UINT32) (-1)) {
159 return 0;
160 }
161 return (UINTN) Variable->DataSize;
162 }
163
164 /**
165 This code gets the pointer to the variable name.
166
167 @param Variable Pointer to the Variable Header.
168
169 @return A CHAR16* pointer to Variable Name.
170
171 **/
172 CHAR16 *
173 GetVariableNamePtr (
174 IN VARIABLE_HEADER *Variable
175 )
176 {
177
178 return (CHAR16 *) (Variable + 1);
179 }
180
181
182 /**
183 This code gets the pointer to the variable data.
184
185 @param Variable Pointer to the Variable Header.
186
187 @return A UINT8* pointer to Variable Data.
188
189 **/
190 UINT8 *
191 GetVariableDataPtr (
192 IN VARIABLE_HEADER *Variable
193 )
194 {
195 UINTN Value;
196
197 //
198 // Be careful about pad size for alignment
199 //
200 Value = (UINTN) GetVariableNamePtr (Variable);
201 Value += NameSizeOfVariable (Variable);
202 Value += GET_PAD_SIZE (NameSizeOfVariable (Variable));
203
204 return (UINT8 *) Value;
205 }
206
207
208 /**
209 This code gets the pointer to the next variable header.
210
211 @param Variable Pointer to the Variable Header.
212
213 @return A VARIABLE_HEADER* pointer to next variable header.
214
215 **/
216 VARIABLE_HEADER *
217 GetNextVariablePtr (
218 IN VARIABLE_HEADER *Variable
219 )
220 {
221 UINTN Value;
222
223 if (!IsValidVariableHeader (Variable)) {
224 return NULL;
225 }
226
227 Value = (UINTN) GetVariableDataPtr (Variable);
228 Value += DataSizeOfVariable (Variable);
229 Value += GET_PAD_SIZE (DataSizeOfVariable (Variable));
230
231 //
232 // Be careful about pad size for alignment
233 //
234 return (VARIABLE_HEADER *) HEADER_ALIGN (Value);
235 }
236
237 /**
238 This code gets the pointer to the variable name.
239
240 @param VarStoreHeader Pointer to the Variable Store Header.
241
242 @retval EfiRaw Variable store is raw
243 @retval EfiValid Variable store is valid
244 @retval EfiInvalid Variable store is invalid
245
246 **/
247 VARIABLE_STORE_STATUS
248 GetVariableStoreStatus (
249 IN VARIABLE_STORE_HEADER *VarStoreHeader
250 )
251 {
252
253 if (CompareGuid (&VarStoreHeader->Signature, &gEfiVariableGuid) &&
254 VarStoreHeader->Format == VARIABLE_STORE_FORMATTED &&
255 VarStoreHeader->State == VARIABLE_STORE_HEALTHY
256 ) {
257
258 return EfiValid;
259 }
260
261 if (((UINT32 *)(&VarStoreHeader->Signature))[0] == 0xffffffff &&
262 ((UINT32 *)(&VarStoreHeader->Signature))[1] == 0xffffffff &&
263 ((UINT32 *)(&VarStoreHeader->Signature))[2] == 0xffffffff &&
264 ((UINT32 *)(&VarStoreHeader->Signature))[3] == 0xffffffff &&
265 VarStoreHeader->Size == 0xffffffff &&
266 VarStoreHeader->Format == 0xff &&
267 VarStoreHeader->State == 0xff
268 ) {
269
270 return EfiRaw;
271 } else {
272 return EfiInvalid;
273 }
274 }
275
276
277 /**
278 This function compares a variable with variable entries in database.
279
280 @param Variable Pointer to the variable in our database
281 @param VariableName Name of the variable to compare to 'Variable'
282 @param VendorGuid GUID of the variable to compare to 'Variable'
283 @param PtrTrack Variable Track Pointer structure that contains Variable Information.
284
285 @retval EFI_SUCCESS Found match variable
286 @retval EFI_NOT_FOUND Variable not found
287
288 **/
289 EFI_STATUS
290 CompareWithValidVariable (
291 IN VARIABLE_HEADER *Variable,
292 IN CONST CHAR16 *VariableName,
293 IN CONST EFI_GUID *VendorGuid,
294 OUT VARIABLE_POINTER_TRACK *PtrTrack
295 )
296 {
297 VOID *Point;
298
299 if (VariableName[0] == 0) {
300 PtrTrack->CurrPtr = Variable;
301 return EFI_SUCCESS;
302 } else {
303 //
304 // Don't use CompareGuid function here for performance reasons.
305 // Instead we compare the GUID a UINT32 at a time and branch
306 // on the first failed comparison.
307 //
308 if ((((INT32 *) VendorGuid)[0] == ((INT32 *) &Variable->VendorGuid)[0]) &&
309 (((INT32 *) VendorGuid)[1] == ((INT32 *) &Variable->VendorGuid)[1]) &&
310 (((INT32 *) VendorGuid)[2] == ((INT32 *) &Variable->VendorGuid)[2]) &&
311 (((INT32 *) VendorGuid)[3] == ((INT32 *) &Variable->VendorGuid)[3])
312 ) {
313 ASSERT (NameSizeOfVariable (Variable) != 0);
314 Point = (VOID *) GetVariableNamePtr (Variable);
315 if (CompareMem (VariableName, Point, NameSizeOfVariable (Variable)) == 0) {
316 PtrTrack->CurrPtr = Variable;
317 return EFI_SUCCESS;
318 }
319 }
320 }
321
322 return EFI_NOT_FOUND;
323 }
324
325 /**
326 Return the variable store header and the index table based on the Index.
327
328 @param Type The type of the variable store.
329 @param IndexTable Return the index table.
330
331 @return Pointer to the variable store header.
332 **/
333 VARIABLE_STORE_HEADER *
334 GetVariableStore (
335 IN VARIABLE_STORE_TYPE Type,
336 OUT VARIABLE_INDEX_TABLE **IndexTable OPTIONAL
337 )
338 {
339 EFI_HOB_GUID_TYPE *GuidHob;
340 EFI_FIRMWARE_VOLUME_HEADER *FvHeader;
341 VARIABLE_STORE_HEADER *VariableStoreHeader;
342
343 if (IndexTable != NULL) {
344 *IndexTable = NULL;
345 }
346 VariableStoreHeader = NULL;
347 switch (Type) {
348 case VariableStoreTypeHob:
349 GuidHob = GetFirstGuidHob (&gEfiVariableGuid);
350 if (GuidHob != NULL) {
351 VariableStoreHeader = (VARIABLE_STORE_HEADER *) GET_GUID_HOB_DATA (GuidHob);
352 }
353 break;
354
355 case VariableStoreTypeNv:
356 if (GetBootModeHob () != BOOT_IN_RECOVERY_MODE) {
357 //
358 // The content of NV storage for variable is not reliable in recovery boot mode.
359 //
360 FvHeader = (EFI_FIRMWARE_VOLUME_HEADER *) (UINTN) (PcdGet64 (PcdFlashNvStorageVariableBase64) != 0 ?
361 PcdGet64 (PcdFlashNvStorageVariableBase64) :
362 PcdGet32 (PcdFlashNvStorageVariableBase)
363 );
364
365 //
366 // Check if the Firmware Volume is not corrupted
367 //
368 if ((FvHeader->Signature != EFI_FVH_SIGNATURE) || (!CompareGuid (&gEfiSystemNvDataFvGuid, &FvHeader->FileSystemGuid))) {
369 DEBUG ((EFI_D_ERROR, "Firmware Volume for Variable Store is corrupted\n"));
370 break;
371 }
372
373 VariableStoreHeader = (VARIABLE_STORE_HEADER *) ((UINT8 *) FvHeader + FvHeader->HeaderLength);
374
375 if (IndexTable != NULL) {
376 GuidHob = GetFirstGuidHob (&gEfiVariableIndexTableGuid);
377 if (GuidHob != NULL) {
378 *IndexTable = GET_GUID_HOB_DATA (GuidHob);
379 } else {
380 //
381 // If it's the first time to access variable region in flash, create a guid hob to record
382 // VAR_ADDED type variable info.
383 // Note that as the resource of PEI phase is limited, only store the limited number of
384 // VAR_ADDED type variables to reduce access time.
385 //
386 *IndexTable = BuildGuidHob (&gEfiVariableIndexTableGuid, sizeof (VARIABLE_INDEX_TABLE));
387 (*IndexTable)->Length = 0;
388 (*IndexTable)->StartPtr = GetStartPointer (VariableStoreHeader);
389 (*IndexTable)->EndPtr = GetEndPointer (VariableStoreHeader);
390 (*IndexTable)->GoneThrough = 0;
391 }
392 }
393 }
394 break;
395
396 default:
397 ASSERT (FALSE);
398 break;
399 }
400
401 return VariableStoreHeader;
402 }
403
404 /**
405 Find the variable in the specified variable store.
406
407 @param VariableStoreHeader Pointer to the variable store header.
408 @param IndexTable Pointer to the index table.
409 @param VariableName Name of the variable to be found
410 @param VendorGuid Vendor GUID to be found.
411 @param PtrTrack Variable Track Pointer structure that contains Variable Information.
412
413 @retval EFI_SUCCESS Variable found successfully
414 @retval EFI_NOT_FOUND Variable not found
415 @retval EFI_INVALID_PARAMETER Invalid variable name
416
417 **/
418 EFI_STATUS
419 FindVariableEx (
420 IN VARIABLE_STORE_HEADER *VariableStoreHeader,
421 IN VARIABLE_INDEX_TABLE *IndexTable,
422 IN CONST CHAR16 *VariableName,
423 IN CONST EFI_GUID *VendorGuid,
424 OUT VARIABLE_POINTER_TRACK *PtrTrack
425 )
426 {
427 VARIABLE_HEADER *Variable;
428 VARIABLE_HEADER *LastVariable;
429 VARIABLE_HEADER *MaxIndex;
430 UINTN Index;
431 UINTN Offset;
432 BOOLEAN StopRecord;
433
434 if (VariableStoreHeader == NULL) {
435 return EFI_INVALID_PARAMETER;
436 }
437
438 if (GetVariableStoreStatus (VariableStoreHeader) != EfiValid) {
439 return EFI_UNSUPPORTED;
440 }
441
442 if (~VariableStoreHeader->Size == 0) {
443 return EFI_NOT_FOUND;
444 }
445
446 PtrTrack->StartPtr = GetStartPointer (VariableStoreHeader);
447 PtrTrack->EndPtr = GetEndPointer (VariableStoreHeader);
448
449 //
450 // No Variable Address equals zero, so 0 as initial value is safe.
451 //
452 MaxIndex = NULL;
453
454 if (IndexTable != NULL) {
455 //
456 // traverse the variable index table to look for varible.
457 // The IndexTable->Index[Index] records the distance of two neighbouring VAR_ADDED type variables.
458 //
459 for (Offset = 0, Index = 0; Index < IndexTable->Length; Index++) {
460 ASSERT (Index < sizeof (IndexTable->Index) / sizeof (IndexTable->Index[0]));
461 Offset += IndexTable->Index[Index];
462 MaxIndex = (VARIABLE_HEADER *) ((UINT8 *) IndexTable->StartPtr + Offset);
463 if (CompareWithValidVariable (MaxIndex, VariableName, VendorGuid, PtrTrack) == EFI_SUCCESS) {
464 return EFI_SUCCESS;
465 }
466 }
467
468 if (IndexTable->GoneThrough != 0) {
469 //
470 // If the table has all the existing variables indexed and we still cannot find it.
471 //
472 return EFI_NOT_FOUND;
473 }
474 }
475
476 if (MaxIndex != NULL) {
477 //
478 // HOB exists but the variable cannot be found in HOB
479 // If not found in HOB, then let's start from the MaxIndex we've found.
480 //
481 Variable = GetNextVariablePtr (MaxIndex);
482 LastVariable = MaxIndex;
483 } else {
484 //
485 // Start Pointers for the variable.
486 // Actual Data Pointer where data can be written.
487 //
488 Variable = PtrTrack->StartPtr;
489 LastVariable = PtrTrack->StartPtr;
490 }
491
492 //
493 // Find the variable by walk through non-volatile variable store
494 //
495 StopRecord = FALSE;
496 while ((Variable < PtrTrack->EndPtr) && IsValidVariableHeader (Variable)) {
497 if (Variable->State == VAR_ADDED) {
498 //
499 // Record Variable in VariableIndex HOB
500 //
501 if ((IndexTable != NULL) && !StopRecord) {
502 Offset = (UINTN) Variable - (UINTN) LastVariable;
503 if ((Offset > 0x0FFFF) || (IndexTable->Length == sizeof (IndexTable->Index) / sizeof (IndexTable->Index[0]))) {
504 //
505 // Stop to record if the distance of two neighbouring VAR_ADDED variable is larger than the allowable scope(UINT16),
506 // or the record buffer is full.
507 //
508 StopRecord = TRUE;
509 } else {
510 IndexTable->Index[IndexTable->Length++] = (UINT16) Offset;
511 LastVariable = Variable;
512 }
513 }
514
515 if (CompareWithValidVariable (Variable, VariableName, VendorGuid, PtrTrack) == EFI_SUCCESS) {
516 return EFI_SUCCESS;
517 }
518 }
519
520 Variable = GetNextVariablePtr (Variable);
521 }
522 //
523 // If gone through the VariableStore, that means we never find in Firmware any more.
524 //
525 if ((IndexTable != NULL) && !StopRecord) {
526 IndexTable->GoneThrough = 1;
527 }
528
529 PtrTrack->CurrPtr = NULL;
530
531 return EFI_NOT_FOUND;
532 }
533
534 /**
535 Find the variable in HOB and Non-Volatile variable storages.
536
537 @param VariableName Name of the variable to be found
538 @param VendorGuid Vendor GUID to be found.
539 @param PtrTrack Variable Track Pointer structure that contains Variable Information.
540
541 @retval EFI_SUCCESS Variable found successfully
542 @retval EFI_NOT_FOUND Variable not found
543 @retval EFI_INVALID_PARAMETER Invalid variable name
544 **/
545 EFI_STATUS
546 FindVariable (
547 IN CONST CHAR16 *VariableName,
548 IN CONST EFI_GUID *VendorGuid,
549 OUT VARIABLE_POINTER_TRACK *PtrTrack
550 )
551 {
552 EFI_STATUS Status;
553 VARIABLE_STORE_HEADER *VariableStoreHeader;
554 VARIABLE_INDEX_TABLE *IndexTable;
555 VARIABLE_STORE_TYPE Type;
556
557 if (VariableName[0] != 0 && VendorGuid == NULL) {
558 return EFI_INVALID_PARAMETER;
559 }
560
561 for (Type = (VARIABLE_STORE_TYPE) 0; Type < VariableStoreTypeMax; Type++) {
562 VariableStoreHeader = GetVariableStore (Type, &IndexTable);
563 Status = FindVariableEx (
564 VariableStoreHeader,
565 IndexTable,
566 VariableName,
567 VendorGuid,
568 PtrTrack
569 );
570 if (!EFI_ERROR (Status)) {
571 return Status;
572 }
573 }
574
575 return EFI_NOT_FOUND;
576 }
577
578 /**
579 This service retrieves a variable's value using its name and GUID.
580
581 Read the specified variable from the UEFI variable store. If the Data
582 buffer is too small to hold the contents of the variable, the error
583 EFI_BUFFER_TOO_SMALL is returned and DataSize is set to the required buffer
584 size to obtain the data.
585
586 @param This A pointer to this instance of the EFI_PEI_READ_ONLY_VARIABLE2_PPI.
587 @param VariableName A pointer to a null-terminated string that is the variable's name.
588 @param VariableGuid A pointer to an EFI_GUID that is the variable's GUID. The combination of
589 VariableGuid and VariableName must be unique.
590 @param Attributes If non-NULL, on return, points to the variable's attributes.
591 @param DataSize On entry, points to the size in bytes of the Data buffer.
592 On return, points to the size of the data returned in Data.
593 @param Data Points to the buffer which will hold the returned variable value.
594
595 @retval EFI_SUCCESS The variable was read successfully.
596 @retval EFI_NOT_FOUND The variable could not be found.
597 @retval EFI_BUFFER_TOO_SMALL The DataSize is too small for the resulting data.
598 DataSize is updated with the size required for
599 the specified variable.
600 @retval EFI_INVALID_PARAMETER VariableName, VariableGuid, DataSize or Data is NULL.
601 @retval EFI_DEVICE_ERROR The variable could not be retrieved because of a device error.
602
603 **/
604 EFI_STATUS
605 EFIAPI
606 PeiGetVariable (
607 IN CONST EFI_PEI_READ_ONLY_VARIABLE2_PPI *This,
608 IN CONST CHAR16 *VariableName,
609 IN CONST EFI_GUID *VariableGuid,
610 OUT UINT32 *Attributes,
611 IN OUT UINTN *DataSize,
612 OUT VOID *Data
613 )
614 {
615 VARIABLE_POINTER_TRACK Variable;
616 UINTN VarDataSize;
617 EFI_STATUS Status;
618
619 if (VariableName == NULL || VariableGuid == NULL || DataSize == NULL) {
620 return EFI_INVALID_PARAMETER;
621 }
622
623 //
624 // Find existing variable
625 //
626 Status = FindVariable (VariableName, VariableGuid, &Variable);
627 if (EFI_ERROR (Status)) {
628 return Status;
629 }
630 //
631 // Get data size
632 //
633 VarDataSize = DataSizeOfVariable (Variable.CurrPtr);
634 if (*DataSize >= VarDataSize) {
635 if (Data == NULL) {
636 return EFI_INVALID_PARAMETER;
637 }
638
639 CopyMem (Data, GetVariableDataPtr (Variable.CurrPtr), VarDataSize);
640
641 if (Attributes != NULL) {
642 *Attributes = Variable.CurrPtr->Attributes;
643 }
644
645 *DataSize = VarDataSize;
646 return EFI_SUCCESS;
647 } else {
648 *DataSize = VarDataSize;
649 return EFI_BUFFER_TOO_SMALL;
650 }
651 }
652
653 /**
654 Return the next variable name and GUID.
655
656 This function is called multiple times to retrieve the VariableName
657 and VariableGuid of all variables currently available in the system.
658 On each call, the previous results are passed into the interface,
659 and, on return, the interface returns the data for the next
660 interface. When the entire variable list has been returned,
661 EFI_NOT_FOUND is returned.
662
663 @param This A pointer to this instance of the EFI_PEI_READ_ONLY_VARIABLE2_PPI.
664
665 @param VariableNameSize On entry, points to the size of the buffer pointed to by VariableName.
666 On return, the size of the variable name buffer.
667 @param VariableName On entry, a pointer to a null-terminated string that is the variable's name.
668 On return, points to the next variable's null-terminated name string.
669 @param VariableGuid On entry, a pointer to an EFI_GUID that is the variable's GUID.
670 On return, a pointer to the next variable's GUID.
671
672 @retval EFI_SUCCESS The variable was read successfully.
673 @retval EFI_NOT_FOUND The variable could not be found.
674 @retval EFI_BUFFER_TOO_SMALL The VariableNameSize is too small for the resulting
675 data. VariableNameSize is updated with the size
676 required for the specified variable.
677 @retval EFI_INVALID_PARAMETER VariableName, VariableGuid or
678 VariableNameSize is NULL.
679 @retval EFI_DEVICE_ERROR The variable could not be retrieved because of a device error.
680
681 **/
682 EFI_STATUS
683 EFIAPI
684 PeiGetNextVariableName (
685 IN CONST EFI_PEI_READ_ONLY_VARIABLE2_PPI *This,
686 IN OUT UINTN *VariableNameSize,
687 IN OUT CHAR16 *VariableName,
688 IN OUT EFI_GUID *VariableGuid
689 )
690 {
691 VARIABLE_STORE_TYPE Type;
692 VARIABLE_POINTER_TRACK Variable;
693 VARIABLE_POINTER_TRACK VariableInHob;
694 UINTN VarNameSize;
695 EFI_STATUS Status;
696 VARIABLE_STORE_HEADER *VariableStoreHeader[VariableStoreTypeMax];
697
698 if (VariableName == NULL || VariableGuid == NULL || VariableNameSize == NULL) {
699 return EFI_INVALID_PARAMETER;
700 }
701
702 Status = FindVariable (VariableName, VariableGuid, &Variable);
703 if (Variable.CurrPtr == NULL || Status != EFI_SUCCESS) {
704 return Status;
705 }
706
707 if (VariableName[0] != 0) {
708 //
709 // If variable name is not NULL, get next variable
710 //
711 Variable.CurrPtr = GetNextVariablePtr (Variable.CurrPtr);
712 }
713
714 VariableStoreHeader[VariableStoreTypeHob] = GetVariableStore (VariableStoreTypeHob, NULL);
715 VariableStoreHeader[VariableStoreTypeNv] = GetVariableStore (VariableStoreTypeNv, NULL);
716
717 while (TRUE) {
718 //
719 // Switch from HOB to Non-Volatile.
720 //
721 while ((Variable.CurrPtr >= Variable.EndPtr) ||
722 (Variable.CurrPtr == NULL) ||
723 !IsValidVariableHeader (Variable.CurrPtr)
724 ) {
725 //
726 // Find current storage index
727 //
728 for (Type = (VARIABLE_STORE_TYPE) 0; Type < VariableStoreTypeMax; Type++) {
729 if ((VariableStoreHeader[Type] != NULL) && (Variable.StartPtr == GetStartPointer (VariableStoreHeader[Type]))) {
730 break;
731 }
732 }
733 ASSERT (Type < VariableStoreTypeMax);
734 //
735 // Switch to next storage
736 //
737 for (Type++; Type < VariableStoreTypeMax; Type++) {
738 if (VariableStoreHeader[Type] != NULL) {
739 break;
740 }
741 }
742 //
743 // Capture the case that
744 // 1. current storage is the last one, or
745 // 2. no further storage
746 //
747 if (Type == VariableStoreTypeMax) {
748 return EFI_NOT_FOUND;
749 }
750 Variable.StartPtr = GetStartPointer (VariableStoreHeader[Type]);
751 Variable.EndPtr = GetEndPointer (VariableStoreHeader[Type]);
752 Variable.CurrPtr = Variable.StartPtr;
753 }
754
755 if (Variable.CurrPtr->State == VAR_ADDED) {
756
757 //
758 // Don't return NV variable when HOB overrides it
759 //
760 if ((VariableStoreHeader[VariableStoreTypeHob] != NULL) && (VariableStoreHeader[VariableStoreTypeNv] != NULL) &&
761 (Variable.StartPtr == GetStartPointer (VariableStoreHeader[VariableStoreTypeNv]))
762 ) {
763 Status = FindVariableEx (
764 VariableStoreHeader[VariableStoreTypeHob],
765 NULL,
766 GetVariableNamePtr (Variable.CurrPtr),
767 &Variable.CurrPtr->VendorGuid,
768 &VariableInHob
769 );
770 if (!EFI_ERROR (Status)) {
771 Variable.CurrPtr = GetNextVariablePtr (Variable.CurrPtr);
772 continue;
773 }
774 }
775
776 VarNameSize = NameSizeOfVariable (Variable.CurrPtr);
777 ASSERT (VarNameSize != 0);
778
779 if (VarNameSize <= *VariableNameSize) {
780 CopyMem (VariableName, GetVariableNamePtr (Variable.CurrPtr), VarNameSize);
781
782 CopyMem (VariableGuid, &Variable.CurrPtr->VendorGuid, sizeof (EFI_GUID));
783
784 Status = EFI_SUCCESS;
785 } else {
786 Status = EFI_BUFFER_TOO_SMALL;
787 }
788
789 *VariableNameSize = VarNameSize;
790 //
791 // Variable is found
792 //
793 return Status;
794 } else {
795 Variable.CurrPtr = GetNextVariablePtr (Variable.CurrPtr);
796 }
797 }
798 }