]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Variable/Pei/Variable.c
Fix a typo in the comments
[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 VariableStoreHeader = (VARIABLE_STORE_HEADER *) ((UINT8 *) FvHeader + FvHeader->HeaderLength);
365
366 if (IndexTable != NULL) {
367 GuidHob = GetFirstGuidHob (&gEfiVariableIndexTableGuid);
368 if (GuidHob != NULL) {
369 *IndexTable = GET_GUID_HOB_DATA (GuidHob);
370 } else {
371 //
372 // If it's the first time to access variable region in flash, create a guid hob to record
373 // VAR_ADDED type variable info.
374 // Note that as the resource of PEI phase is limited, only store the limited number of
375 // VAR_ADDED type variables to reduce access time.
376 //
377 *IndexTable = BuildGuidHob (&gEfiVariableIndexTableGuid, sizeof (VARIABLE_INDEX_TABLE));
378 (*IndexTable)->Length = 0;
379 (*IndexTable)->StartPtr = GetStartPointer (VariableStoreHeader);
380 (*IndexTable)->EndPtr = GetEndPointer (VariableStoreHeader);
381 (*IndexTable)->GoneThrough = 0;
382 }
383 }
384 }
385 break;
386
387 default:
388 ASSERT (FALSE);
389 break;
390 }
391
392 return VariableStoreHeader;
393 }
394
395 /**
396 Find the variable in the specified variable store.
397
398 @param VariableStoreHeader Pointer to the variable store header.
399 @param IndexTable Pointer to the index table.
400 @param VariableName Name of the variable to be found
401 @param VendorGuid Vendor GUID to be found.
402 @param PtrTrack Variable Track Pointer structure that contains Variable Information.
403
404 @retval EFI_SUCCESS Variable found successfully
405 @retval EFI_NOT_FOUND Variable not found
406 @retval EFI_INVALID_PARAMETER Invalid variable name
407
408 **/
409 EFI_STATUS
410 FindVariableEx (
411 IN VARIABLE_STORE_HEADER *VariableStoreHeader,
412 IN VARIABLE_INDEX_TABLE *IndexTable,
413 IN CONST CHAR16 *VariableName,
414 IN CONST EFI_GUID *VendorGuid,
415 OUT VARIABLE_POINTER_TRACK *PtrTrack
416 )
417 {
418 VARIABLE_HEADER *Variable;
419 VARIABLE_HEADER *LastVariable;
420 VARIABLE_HEADER *MaxIndex;
421 UINTN Index;
422 UINTN Offset;
423 BOOLEAN StopRecord;
424
425 if (VariableStoreHeader == NULL) {
426 return EFI_INVALID_PARAMETER;
427 }
428
429 if (GetVariableStoreStatus (VariableStoreHeader) != EfiValid) {
430 return EFI_UNSUPPORTED;
431 }
432
433 if (~VariableStoreHeader->Size == 0) {
434 return EFI_NOT_FOUND;
435 }
436
437 PtrTrack->StartPtr = GetStartPointer (VariableStoreHeader);
438 PtrTrack->EndPtr = GetEndPointer (VariableStoreHeader);
439
440 //
441 // No Variable Address equals zero, so 0 as initial value is safe.
442 //
443 MaxIndex = NULL;
444
445 if (IndexTable != NULL) {
446 //
447 // traverse the variable index table to look for varible.
448 // The IndexTable->Index[Index] records the distance of two neighbouring VAR_ADDED type variables.
449 //
450 for (Offset = 0, Index = 0; Index < IndexTable->Length; Index++) {
451 ASSERT (Index < sizeof (IndexTable->Index) / sizeof (IndexTable->Index[0]));
452 Offset += IndexTable->Index[Index];
453 MaxIndex = (VARIABLE_HEADER *) ((UINT8 *) IndexTable->StartPtr + Offset);
454 if (CompareWithValidVariable (MaxIndex, VariableName, VendorGuid, PtrTrack) == EFI_SUCCESS) {
455 return EFI_SUCCESS;
456 }
457 }
458
459 if (IndexTable->GoneThrough != 0) {
460 //
461 // If the table has all the existing variables indexed and we still cannot find it.
462 //
463 return EFI_NOT_FOUND;
464 }
465 }
466
467 if (MaxIndex != NULL) {
468 //
469 // HOB exists but the variable cannot be found in HOB
470 // If not found in HOB, then let's start from the MaxIndex we've found.
471 //
472 Variable = GetNextVariablePtr (MaxIndex);
473 LastVariable = MaxIndex;
474 } else {
475 //
476 // Start Pointers for the variable.
477 // Actual Data Pointer where data can be written.
478 //
479 Variable = PtrTrack->StartPtr;
480 LastVariable = PtrTrack->StartPtr;
481 }
482
483 //
484 // Find the variable by walk through non-volatile variable store
485 //
486 StopRecord = FALSE;
487 while ((Variable < PtrTrack->EndPtr) && IsValidVariableHeader (Variable)) {
488 if (Variable->State == VAR_ADDED) {
489 //
490 // Record Variable in VariableIndex HOB
491 //
492 if ((IndexTable != NULL) && !StopRecord) {
493 Offset = (UINTN) Variable - (UINTN) LastVariable;
494 if ((Offset > 0x0FFFF) || (IndexTable->Length == sizeof (IndexTable->Index) / sizeof (IndexTable->Index[0]))) {
495 //
496 // Stop to record if the distance of two neighbouring VAR_ADDED variable is larger than the allowable scope(UINT16),
497 // or the record buffer is full.
498 //
499 StopRecord = TRUE;
500 } else {
501 IndexTable->Index[IndexTable->Length++] = (UINT16) Offset;
502 LastVariable = Variable;
503 }
504 }
505
506 if (CompareWithValidVariable (Variable, VariableName, VendorGuid, PtrTrack) == EFI_SUCCESS) {
507 return EFI_SUCCESS;
508 }
509 }
510
511 Variable = GetNextVariablePtr (Variable);
512 }
513 //
514 // If gone through the VariableStore, that means we never find in Firmware any more.
515 //
516 if ((IndexTable != NULL) && !StopRecord) {
517 IndexTable->GoneThrough = 1;
518 }
519
520 PtrTrack->CurrPtr = NULL;
521
522 return EFI_NOT_FOUND;
523 }
524
525 /**
526 Find the variable in HOB and Non-Volatile variable storages.
527
528 @param VariableName Name of the variable to be found
529 @param VendorGuid Vendor GUID to be found.
530 @param PtrTrack Variable Track Pointer structure that contains Variable Information.
531
532 @retval EFI_SUCCESS Variable found successfully
533 @retval EFI_NOT_FOUND Variable not found
534 @retval EFI_INVALID_PARAMETER Invalid variable name
535 **/
536 EFI_STATUS
537 FindVariable (
538 IN CONST CHAR16 *VariableName,
539 IN CONST EFI_GUID *VendorGuid,
540 OUT VARIABLE_POINTER_TRACK *PtrTrack
541 )
542 {
543 EFI_STATUS Status;
544 VARIABLE_STORE_HEADER *VariableStoreHeader;
545 VARIABLE_INDEX_TABLE *IndexTable;
546 VARIABLE_STORE_TYPE Type;
547
548 if (VariableName[0] != 0 && VendorGuid == NULL) {
549 return EFI_INVALID_PARAMETER;
550 }
551
552 for (Type = (VARIABLE_STORE_TYPE) 0; Type < VariableStoreTypeMax; Type++) {
553 VariableStoreHeader = GetVariableStore (Type, &IndexTable);
554 Status = FindVariableEx (
555 VariableStoreHeader,
556 IndexTable,
557 VariableName,
558 VendorGuid,
559 PtrTrack
560 );
561 if (!EFI_ERROR (Status)) {
562 return Status;
563 }
564 }
565
566 return EFI_NOT_FOUND;
567 }
568
569 /**
570 This service retrieves a variable's value using its name and GUID.
571
572 Read the specified variable from the UEFI variable store. If the Data
573 buffer is too small to hold the contents of the variable, the error
574 EFI_BUFFER_TOO_SMALL is returned and DataSize is set to the required buffer
575 size to obtain the data.
576
577 @param This A pointer to this instance of the EFI_PEI_READ_ONLY_VARIABLE2_PPI.
578 @param VariableName A pointer to a null-terminated string that is the variable's name.
579 @param VariableGuid A pointer to an EFI_GUID that is the variable's GUID. The combination of
580 VariableGuid and VariableName must be unique.
581 @param Attributes If non-NULL, on return, points to the variable's attributes.
582 @param DataSize On entry, points to the size in bytes of the Data buffer.
583 On return, points to the size of the data returned in Data.
584 @param Data Points to the buffer which will hold the returned variable value.
585
586 @retval EFI_SUCCESS The variable was read successfully.
587 @retval EFI_NOT_FOUND The variable could not be found.
588 @retval EFI_BUFFER_TOO_SMALL The DataSize is too small for the resulting data.
589 DataSize is updated with the size required for
590 the specified variable.
591 @retval EFI_INVALID_PARAMETER VariableName, VariableGuid, DataSize or Data is NULL.
592 @retval EFI_DEVICE_ERROR The variable could not be retrieved because of a device error.
593
594 **/
595 EFI_STATUS
596 EFIAPI
597 PeiGetVariable (
598 IN CONST EFI_PEI_READ_ONLY_VARIABLE2_PPI *This,
599 IN CONST CHAR16 *VariableName,
600 IN CONST EFI_GUID *VariableGuid,
601 OUT UINT32 *Attributes,
602 IN OUT UINTN *DataSize,
603 OUT VOID *Data
604 )
605 {
606 VARIABLE_POINTER_TRACK Variable;
607 UINTN VarDataSize;
608 EFI_STATUS Status;
609
610 if (VariableName == NULL || VariableGuid == NULL || DataSize == NULL) {
611 return EFI_INVALID_PARAMETER;
612 }
613
614 //
615 // Find existing variable
616 //
617 Status = FindVariable (VariableName, VariableGuid, &Variable);
618 if (EFI_ERROR (Status)) {
619 return Status;
620 }
621 //
622 // Get data size
623 //
624 VarDataSize = DataSizeOfVariable (Variable.CurrPtr);
625 if (*DataSize >= VarDataSize) {
626 if (Data == NULL) {
627 return EFI_INVALID_PARAMETER;
628 }
629
630 CopyMem (Data, GetVariableDataPtr (Variable.CurrPtr), VarDataSize);
631
632 if (Attributes != NULL) {
633 *Attributes = Variable.CurrPtr->Attributes;
634 }
635
636 *DataSize = VarDataSize;
637 return EFI_SUCCESS;
638 } else {
639 *DataSize = VarDataSize;
640 return EFI_BUFFER_TOO_SMALL;
641 }
642 }
643
644 /**
645 Return the next variable name and GUID.
646
647 This function is called multiple times to retrieve the VariableName
648 and VariableGuid of all variables currently available in the system.
649 On each call, the previous results are passed into the interface,
650 and, on return, the interface returns the data for the next
651 interface. When the entire variable list has been returned,
652 EFI_NOT_FOUND is returned.
653
654 @param This A pointer to this instance of the EFI_PEI_READ_ONLY_VARIABLE2_PPI.
655
656 @param VariableNameSize On entry, points to the size of the buffer pointed to by VariableName.
657 On return, the size of the variable name buffer.
658 @param VariableName On entry, a pointer to a null-terminated string that is the variable's name.
659 On return, points to the next variable's null-terminated name string.
660 @param VariableGuid On entry, a pointer to an EFI_GUID that is the variable's GUID.
661 On return, a pointer to the next variable's GUID.
662
663 @retval EFI_SUCCESS The variable was read successfully.
664 @retval EFI_NOT_FOUND The variable could not be found.
665 @retval EFI_BUFFER_TOO_SMALL The VariableNameSize is too small for the resulting
666 data. VariableNameSize is updated with the size
667 required for the specified variable.
668 @retval EFI_INVALID_PARAMETER VariableName, VariableGuid or
669 VariableNameSize is NULL.
670 @retval EFI_DEVICE_ERROR The variable could not be retrieved because of a device error.
671
672 **/
673 EFI_STATUS
674 EFIAPI
675 PeiGetNextVariableName (
676 IN CONST EFI_PEI_READ_ONLY_VARIABLE2_PPI *This,
677 IN OUT UINTN *VariableNameSize,
678 IN OUT CHAR16 *VariableName,
679 IN OUT EFI_GUID *VariableGuid
680 )
681 {
682 VARIABLE_STORE_TYPE Type;
683 VARIABLE_POINTER_TRACK Variable;
684 VARIABLE_POINTER_TRACK VariableInHob;
685 UINTN VarNameSize;
686 EFI_STATUS Status;
687 VARIABLE_STORE_HEADER *VariableStoreHeader[VariableStoreTypeMax];
688
689 if (VariableName == NULL || VariableGuid == NULL || VariableNameSize == NULL) {
690 return EFI_INVALID_PARAMETER;
691 }
692
693 Status = FindVariable (VariableName, VariableGuid, &Variable);
694 if (Variable.CurrPtr == NULL || Status != EFI_SUCCESS) {
695 return Status;
696 }
697
698 if (VariableName[0] != 0) {
699 //
700 // If variable name is not NULL, get next variable
701 //
702 Variable.CurrPtr = GetNextVariablePtr (Variable.CurrPtr);
703 }
704
705 VariableStoreHeader[VariableStoreTypeHob] = GetVariableStore (VariableStoreTypeHob, NULL);
706 VariableStoreHeader[VariableStoreTypeNv] = GetVariableStore (VariableStoreTypeNv, NULL);
707
708 while (TRUE) {
709 //
710 // Switch from HOB to Non-Volatile.
711 //
712 while ((Variable.CurrPtr >= Variable.EndPtr) ||
713 (Variable.CurrPtr == NULL) ||
714 !IsValidVariableHeader (Variable.CurrPtr)
715 ) {
716 //
717 // Find current storage index
718 //
719 for (Type = (VARIABLE_STORE_TYPE) 0; Type < VariableStoreTypeMax; Type++) {
720 if ((VariableStoreHeader[Type] != NULL) && (Variable.StartPtr == GetStartPointer (VariableStoreHeader[Type]))) {
721 break;
722 }
723 }
724 ASSERT (Type < VariableStoreTypeMax);
725 //
726 // Switch to next storage
727 //
728 for (Type++; Type < VariableStoreTypeMax; Type++) {
729 if (VariableStoreHeader[Type] != NULL) {
730 break;
731 }
732 }
733 //
734 // Capture the case that
735 // 1. current storage is the last one, or
736 // 2. no further storage
737 //
738 if (Type == VariableStoreTypeMax) {
739 return EFI_NOT_FOUND;
740 }
741 Variable.StartPtr = GetStartPointer (VariableStoreHeader[Type]);
742 Variable.EndPtr = GetEndPointer (VariableStoreHeader[Type]);
743 Variable.CurrPtr = Variable.StartPtr;
744 }
745
746 if (Variable.CurrPtr->State == VAR_ADDED) {
747
748 //
749 // Don't return NV variable when HOB overrides it
750 //
751 if ((VariableStoreHeader[VariableStoreTypeHob] != NULL) && (VariableStoreHeader[VariableStoreTypeNv] != NULL) &&
752 (Variable.StartPtr == GetStartPointer (VariableStoreHeader[VariableStoreTypeNv]))
753 ) {
754 Status = FindVariableEx (
755 VariableStoreHeader[VariableStoreTypeHob],
756 NULL,
757 GetVariableNamePtr (Variable.CurrPtr),
758 &Variable.CurrPtr->VendorGuid,
759 &VariableInHob
760 );
761 if (!EFI_ERROR (Status)) {
762 Variable.CurrPtr = GetNextVariablePtr (Variable.CurrPtr);
763 continue;
764 }
765 }
766
767 VarNameSize = NameSizeOfVariable (Variable.CurrPtr);
768 ASSERT (VarNameSize != 0);
769
770 if (VarNameSize <= *VariableNameSize) {
771 CopyMem (VariableName, GetVariableNamePtr (Variable.CurrPtr), VarNameSize);
772
773 CopyMem (VariableGuid, &Variable.CurrPtr->VendorGuid, sizeof (EFI_GUID));
774
775 Status = EFI_SUCCESS;
776 } else {
777 Status = EFI_BUFFER_TOO_SMALL;
778 }
779
780 *VariableNameSize = VarNameSize;
781 //
782 // Variable is found
783 //
784 return Status;
785 } else {
786 Variable.CurrPtr = GetNextVariablePtr (Variable.CurrPtr);
787 }
788 }
789 }