2 The common variable operation routines shared by DXE_RUNTIME variable
3 module and DXE_SMM variable module.
5 Caution: This module requires additional review when modified.
6 This driver will have external input - variable data. They may be input in SMM mode.
7 This external input must be validated carefully to avoid security issue like
8 buffer overflow, integer overflow.
10 VariableServiceGetNextVariableName () and VariableServiceQueryVariableInfo() are external API.
11 They need check input parameter.
13 VariableServiceGetVariable() and VariableServiceSetVariable() are external API
14 to receive datasize and data buffer. The size should be checked carefully.
16 VariableServiceSetVariable() should also check authenticate data to avoid buffer overflow,
17 integer overflow. It should also check attribute to avoid authentication bypass.
19 Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>
20 This program and the accompanying materials
21 are licensed and made available under the terms and conditions of the BSD License
22 which accompanies this distribution. The full text of the license may be found at
23 http://opensource.org/licenses/bsd-license.php
25 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
26 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
31 #include "AuthService.h"
33 VARIABLE_MODULE_GLOBAL
*mVariableModuleGlobal
;
36 /// Define a memory cache that improves the search performance for a variable.
38 VARIABLE_STORE_HEADER
*mNvVariableCache
= NULL
;
41 /// The memory entry used for variable statistics data.
43 VARIABLE_INFO_ENTRY
*gVariableInfo
= NULL
;
46 /// The list to store the variables which cannot be set after the EFI_END_OF_DXE_EVENT_GROUP_GUID
47 /// or EVT_GROUP_READY_TO_BOOT event.
49 LIST_ENTRY mLockedVariableList
= INITIALIZE_LIST_HEAD_VARIABLE (mLockedVariableList
);
52 /// The flag to indicate whether the platform has left the DXE phase of execution.
54 BOOLEAN mEndOfDxe
= FALSE
;
57 /// The flag to indicate whether the variable storage locking is enabled.
59 BOOLEAN mEnableLocking
= TRUE
;
62 // To prevent name collisions with possible future globally defined variables,
63 // other internal firmware data variables that are not defined here must be
64 // saved with a unique VendorGuid other than EFI_GLOBAL_VARIABLE or
65 // any other GUID defined by the UEFI Specification. Implementations must
66 // only permit the creation of variables with a UEFI Specification-defined
67 // VendorGuid when these variables are documented in the UEFI Specification.
69 GLOBAL_VARIABLE_ENTRY mGlobalVariableList
[] = {
70 {EFI_LANG_CODES_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_BS_RT
},
71 {EFI_LANG_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_NV_BS_RT
},
72 {EFI_TIME_OUT_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_NV_BS_RT
},
73 {EFI_PLATFORM_LANG_CODES_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_BS_RT
},
74 {EFI_PLATFORM_LANG_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_NV_BS_RT
},
75 {EFI_CON_IN_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_NV_BS_RT
},
76 {EFI_CON_OUT_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_NV_BS_RT
},
77 {EFI_ERR_OUT_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_NV_BS_RT
},
78 {EFI_CON_IN_DEV_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_BS_RT
},
79 {EFI_CON_OUT_DEV_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_BS_RT
},
80 {EFI_ERR_OUT_DEV_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_BS_RT
},
81 {EFI_BOOT_ORDER_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_NV_BS_RT
},
82 {EFI_BOOT_NEXT_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_NV_BS_RT
},
83 {EFI_BOOT_CURRENT_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_BS_RT
},
84 {EFI_BOOT_OPTION_SUPPORT_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_BS_RT
},
85 {EFI_DRIVER_ORDER_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_NV_BS_RT
},
86 {EFI_HW_ERR_REC_SUPPORT_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_NV_BS_RT
},
87 {EFI_SETUP_MODE_NAME
, VARIABLE_ATTRIBUTE_BS_RT
},
88 {EFI_KEY_EXCHANGE_KEY_NAME
, VARIABLE_ATTRIBUTE_NV_BS_RT_AT
},
89 {EFI_PLATFORM_KEY_NAME
, VARIABLE_ATTRIBUTE_NV_BS_RT_AT
},
90 {EFI_SIGNATURE_SUPPORT_NAME
, VARIABLE_ATTRIBUTE_BS_RT
},
91 {EFI_SECURE_BOOT_MODE_NAME
, VARIABLE_ATTRIBUTE_BS_RT
},
92 {EFI_KEK_DEFAULT_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_BS_RT
},
93 {EFI_PK_DEFAULT_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_BS_RT
},
94 {EFI_DB_DEFAULT_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_BS_RT
},
95 {EFI_DBX_DEFAULT_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_BS_RT
},
96 {EFI_DBT_DEFAULT_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_BS_RT
},
97 {EFI_OS_INDICATIONS_SUPPORT_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_BS_RT
},
98 {EFI_OS_INDICATIONS_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_NV_BS_RT
},
99 {EFI_VENDOR_KEYS_VARIABLE_NAME
, VARIABLE_ATTRIBUTE_BS_RT
},
101 GLOBAL_VARIABLE_ENTRY mGlobalVariableList2
[] = {
102 {L
"Boot####", VARIABLE_ATTRIBUTE_NV_BS_RT
},
103 {L
"Driver####", VARIABLE_ATTRIBUTE_NV_BS_RT
},
104 {L
"Key####", VARIABLE_ATTRIBUTE_NV_BS_RT
},
109 SecureBoot Hook for auth variable update.
111 @param[in] VariableName Name of Variable to be found.
112 @param[in] VendorGuid Variable vendor GUID.
117 IN CHAR16
*VariableName
,
118 IN EFI_GUID
*VendorGuid
122 Routine used to track statistical information about variable usage.
123 The data is stored in the EFI system table so it can be accessed later.
124 VariableInfo.efi can dump out the table. Only Boot Services variable
125 accesses are tracked by this code. The PcdVariableCollectStatistics
126 build flag controls if this feature is enabled.
128 A read that hits in the cache will have Read and Cache true for
129 the transaction. Data is allocated by this routine, but never
132 @param[in] VariableName Name of the Variable to track.
133 @param[in] VendorGuid Guid of the Variable to track.
134 @param[in] Volatile TRUE if volatile FALSE if non-volatile.
135 @param[in] Read TRUE if GetVariable() was called.
136 @param[in] Write TRUE if SetVariable() was called.
137 @param[in] Delete TRUE if deleted via SetVariable().
138 @param[in] Cache TRUE for a cache hit.
143 IN CHAR16
*VariableName
,
144 IN EFI_GUID
*VendorGuid
,
152 VARIABLE_INFO_ENTRY
*Entry
;
154 if (FeaturePcdGet (PcdVariableCollectStatistics
)) {
157 // Don't collect statistics at runtime.
161 if (gVariableInfo
== NULL
) {
163 // On the first call allocate a entry and place a pointer to it in
164 // the EFI System Table.
166 gVariableInfo
= AllocateZeroPool (sizeof (VARIABLE_INFO_ENTRY
));
167 ASSERT (gVariableInfo
!= NULL
);
169 CopyGuid (&gVariableInfo
->VendorGuid
, VendorGuid
);
170 gVariableInfo
->Name
= AllocatePool (StrSize (VariableName
));
171 ASSERT (gVariableInfo
->Name
!= NULL
);
172 StrCpy (gVariableInfo
->Name
, VariableName
);
173 gVariableInfo
->Volatile
= Volatile
;
177 for (Entry
= gVariableInfo
; Entry
!= NULL
; Entry
= Entry
->Next
) {
178 if (CompareGuid (VendorGuid
, &Entry
->VendorGuid
)) {
179 if (StrCmp (VariableName
, Entry
->Name
) == 0) {
187 Entry
->DeleteCount
++;
197 if (Entry
->Next
== NULL
) {
199 // If the entry is not in the table add it.
200 // Next iteration of the loop will fill in the data.
202 Entry
->Next
= AllocateZeroPool (sizeof (VARIABLE_INFO_ENTRY
));
203 ASSERT (Entry
->Next
!= NULL
);
205 CopyGuid (&Entry
->Next
->VendorGuid
, VendorGuid
);
206 Entry
->Next
->Name
= AllocatePool (StrSize (VariableName
));
207 ASSERT (Entry
->Next
->Name
!= NULL
);
208 StrCpy (Entry
->Next
->Name
, VariableName
);
209 Entry
->Next
->Volatile
= Volatile
;
219 This code checks if variable header is valid or not.
221 @param Variable Pointer to the Variable Header.
223 @retval TRUE Variable header is valid.
224 @retval FALSE Variable header is not valid.
228 IsValidVariableHeader (
229 IN VARIABLE_HEADER
*Variable
232 if (Variable
== NULL
|| Variable
->StartId
!= VARIABLE_DATA
) {
242 This function writes data to the FWH at the correct LBA even if the LBAs
245 @param Global Pointer to VARAIBLE_GLOBAL structure.
246 @param Volatile Point out the Variable is Volatile or Non-Volatile.
247 @param SetByIndex TRUE if target pointer is given as index.
248 FALSE if target pointer is absolute.
249 @param Fvb Pointer to the writable FVB protocol.
250 @param DataPtrIndex Pointer to the Data from the end of VARIABLE_STORE_HEADER
252 @param DataSize Size of data to be written.
253 @param Buffer Pointer to the buffer from which data is written.
255 @retval EFI_INVALID_PARAMETER Parameters not valid.
256 @retval EFI_SUCCESS Variable store successfully updated.
260 UpdateVariableStore (
261 IN VARIABLE_GLOBAL
*Global
,
263 IN BOOLEAN SetByIndex
,
264 IN EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL
*Fvb
,
265 IN UINTN DataPtrIndex
,
270 EFI_FV_BLOCK_MAP_ENTRY
*PtrBlockMapEntry
;
278 EFI_FIRMWARE_VOLUME_HEADER
*FwVolHeader
;
279 VARIABLE_STORE_HEADER
*VolatileBase
;
280 EFI_PHYSICAL_ADDRESS FvVolHdr
;
281 EFI_PHYSICAL_ADDRESS DataPtr
;
285 DataPtr
= DataPtrIndex
;
288 // Check if the Data is Volatile.
292 return EFI_INVALID_PARAMETER
;
294 Status
= Fvb
->GetPhysicalAddress(Fvb
, &FvVolHdr
);
295 ASSERT_EFI_ERROR (Status
);
297 FwVolHeader
= (EFI_FIRMWARE_VOLUME_HEADER
*) ((UINTN
) FvVolHdr
);
299 // Data Pointer should point to the actual Address where data is to be
303 DataPtr
+= mVariableModuleGlobal
->VariableGlobal
.NonVolatileVariableBase
;
306 if ((DataPtr
+ DataSize
) >= ((EFI_PHYSICAL_ADDRESS
) (UINTN
) ((UINT8
*) FwVolHeader
+ FwVolHeader
->FvLength
))) {
307 return EFI_INVALID_PARAMETER
;
311 // Data Pointer should point to the actual Address where data is to be
314 VolatileBase
= (VARIABLE_STORE_HEADER
*) ((UINTN
) mVariableModuleGlobal
->VariableGlobal
.VolatileVariableBase
);
316 DataPtr
+= mVariableModuleGlobal
->VariableGlobal
.VolatileVariableBase
;
319 if ((DataPtr
+ DataSize
) >= ((UINTN
) ((UINT8
*) VolatileBase
+ VolatileBase
->Size
))) {
320 return EFI_INVALID_PARAMETER
;
324 // If Volatile Variable just do a simple mem copy.
326 CopyMem ((UINT8
*)(UINTN
)DataPtr
, Buffer
, DataSize
);
331 // If we are here we are dealing with Non-Volatile Variables.
333 LinearOffset
= (UINTN
) FwVolHeader
;
334 CurrWritePtr
= (UINTN
) DataPtr
;
335 CurrWriteSize
= DataSize
;
339 if (CurrWritePtr
< LinearOffset
) {
340 return EFI_INVALID_PARAMETER
;
343 for (PtrBlockMapEntry
= FwVolHeader
->BlockMap
; PtrBlockMapEntry
->NumBlocks
!= 0; PtrBlockMapEntry
++) {
344 for (BlockIndex2
= 0; BlockIndex2
< PtrBlockMapEntry
->NumBlocks
; BlockIndex2
++) {
346 // Check to see if the Variable Writes are spanning through multiple
349 if ((CurrWritePtr
>= LinearOffset
) && (CurrWritePtr
< LinearOffset
+ PtrBlockMapEntry
->Length
)) {
350 if ((CurrWritePtr
+ CurrWriteSize
) <= (LinearOffset
+ PtrBlockMapEntry
->Length
)) {
351 Status
= Fvb
->Write (
354 (UINTN
) (CurrWritePtr
- LinearOffset
),
360 Size
= (UINT32
) (LinearOffset
+ PtrBlockMapEntry
->Length
- CurrWritePtr
);
361 Status
= Fvb
->Write (
364 (UINTN
) (CurrWritePtr
- LinearOffset
),
368 if (EFI_ERROR (Status
)) {
372 CurrWritePtr
= LinearOffset
+ PtrBlockMapEntry
->Length
;
373 CurrBuffer
= CurrBuffer
+ Size
;
374 CurrWriteSize
= CurrWriteSize
- Size
;
378 LinearOffset
+= PtrBlockMapEntry
->Length
;
389 This code gets the current status of Variable Store.
391 @param VarStoreHeader Pointer to the Variable Store Header.
393 @retval EfiRaw Variable store status is raw.
394 @retval EfiValid Variable store status is valid.
395 @retval EfiInvalid Variable store status is invalid.
398 VARIABLE_STORE_STATUS
399 GetVariableStoreStatus (
400 IN VARIABLE_STORE_HEADER
*VarStoreHeader
403 if (CompareGuid (&VarStoreHeader
->Signature
, &gEfiAuthenticatedVariableGuid
) &&
404 VarStoreHeader
->Format
== VARIABLE_STORE_FORMATTED
&&
405 VarStoreHeader
->State
== VARIABLE_STORE_HEALTHY
409 } else if (((UINT32
*)(&VarStoreHeader
->Signature
))[0] == 0xffffffff &&
410 ((UINT32
*)(&VarStoreHeader
->Signature
))[1] == 0xffffffff &&
411 ((UINT32
*)(&VarStoreHeader
->Signature
))[2] == 0xffffffff &&
412 ((UINT32
*)(&VarStoreHeader
->Signature
))[3] == 0xffffffff &&
413 VarStoreHeader
->Size
== 0xffffffff &&
414 VarStoreHeader
->Format
== 0xff &&
415 VarStoreHeader
->State
== 0xff
427 This code gets the size of name of variable.
429 @param Variable Pointer to the Variable Header.
431 @return UINTN Size of variable in bytes.
436 IN VARIABLE_HEADER
*Variable
439 if (Variable
->State
== (UINT8
) (-1) ||
440 Variable
->DataSize
== (UINT32
) (-1) ||
441 Variable
->NameSize
== (UINT32
) (-1) ||
442 Variable
->Attributes
== (UINT32
) (-1)) {
445 return (UINTN
) Variable
->NameSize
;
450 This code gets the size of variable data.
452 @param Variable Pointer to the Variable Header.
454 @return Size of variable in bytes.
459 IN VARIABLE_HEADER
*Variable
462 if (Variable
->State
== (UINT8
) (-1) ||
463 Variable
->DataSize
== (UINT32
) (-1) ||
464 Variable
->NameSize
== (UINT32
) (-1) ||
465 Variable
->Attributes
== (UINT32
) (-1)) {
468 return (UINTN
) Variable
->DataSize
;
473 This code gets the pointer to the variable name.
475 @param Variable Pointer to the Variable Header.
477 @return Pointer to Variable Name which is Unicode encoding.
482 IN VARIABLE_HEADER
*Variable
486 return (CHAR16
*) (Variable
+ 1);
491 This code gets the pointer to the variable data.
493 @param Variable Pointer to the Variable Header.
495 @return Pointer to Variable Data.
500 IN VARIABLE_HEADER
*Variable
506 // Be careful about pad size for alignment.
508 Value
= (UINTN
) GetVariableNamePtr (Variable
);
509 Value
+= NameSizeOfVariable (Variable
);
510 Value
+= GET_PAD_SIZE (NameSizeOfVariable (Variable
));
512 return (UINT8
*) Value
;
518 This code gets the pointer to the next variable header.
520 @param Variable Pointer to the Variable Header.
522 @return Pointer to next variable header.
527 IN VARIABLE_HEADER
*Variable
532 if (!IsValidVariableHeader (Variable
)) {
536 Value
= (UINTN
) GetVariableDataPtr (Variable
);
537 Value
+= DataSizeOfVariable (Variable
);
538 Value
+= GET_PAD_SIZE (DataSizeOfVariable (Variable
));
541 // Be careful about pad size for alignment.
543 return (VARIABLE_HEADER
*) HEADER_ALIGN (Value
);
548 Gets the pointer to the first variable header in given variable store area.
550 @param VarStoreHeader Pointer to the Variable Store Header.
552 @return Pointer to the first variable header.
557 IN VARIABLE_STORE_HEADER
*VarStoreHeader
561 // The end of variable store.
563 return (VARIABLE_HEADER
*) HEADER_ALIGN (VarStoreHeader
+ 1);
568 Gets the pointer to the end of the variable storage area.
570 This function gets pointer to the end of the variable storage
571 area, according to the input variable store header.
573 @param VarStoreHeader Pointer to the Variable Store Header.
575 @return Pointer to the end of the variable storage area.
580 IN VARIABLE_STORE_HEADER
*VarStoreHeader
584 // The end of variable store
586 return (VARIABLE_HEADER
*) HEADER_ALIGN ((UINTN
) VarStoreHeader
+ VarStoreHeader
->Size
);
591 Check the PubKeyIndex is a valid key or not.
593 This function will iterate the NV storage to see if this PubKeyIndex is still referenced
594 by any valid count-based auth variabe.
596 @param[in] PubKeyIndex Index of the public key in public key store.
598 @retval TRUE The PubKeyIndex is still in use.
599 @retval FALSE The PubKeyIndex is not referenced by any count-based auth variabe.
604 IN UINT32 PubKeyIndex
607 VARIABLE_HEADER
*Variable
;
609 if (PubKeyIndex
> mPubKeyNumber
) {
613 Variable
= GetStartPointer ((VARIABLE_STORE_HEADER
*) (UINTN
) mVariableModuleGlobal
->VariableGlobal
.NonVolatileVariableBase
);
615 while (IsValidVariableHeader (Variable
)) {
616 if ((Variable
->State
== VAR_ADDED
|| Variable
->State
== (VAR_IN_DELETED_TRANSITION
& VAR_ADDED
)) &&
617 Variable
->PubKeyIndex
== PubKeyIndex
) {
620 Variable
= GetNextVariablePtr (Variable
);
628 Get the number of valid public key in PubKeyStore.
630 @param[in] PubKeyNumber Number of the public key in public key store.
632 @return Number of valid public key in PubKeyStore.
636 GetValidPubKeyNumber (
637 IN UINT32 PubKeyNumber
645 for (PubKeyIndex
= 1; PubKeyIndex
<= PubKeyNumber
; PubKeyIndex
++) {
646 if (IsValidPubKeyIndex (PubKeyIndex
)) {
656 Filter the useless key in public key store.
658 This function will find out all valid public keys in public key database, save them in new allocated
659 buffer NewPubKeyStore, and give the new PubKeyIndex. The caller is responsible for freeing buffer
660 NewPubKeyIndex and NewPubKeyStore with FreePool().
662 @param[in] PubKeyStore Point to the public key database.
663 @param[in] PubKeyNumber Number of the public key in PubKeyStore.
664 @param[out] NewPubKeyIndex Point to an array of new PubKeyIndex corresponds to NewPubKeyStore.
665 @param[out] NewPubKeyStore Saved all valid public keys in PubKeyStore.
666 @param[out] NewPubKeySize Buffer size of the NewPubKeyStore.
668 @retval EFI_SUCCESS Trim operation is complete successfully.
669 @retval EFI_OUT_OF_RESOURCES No enough memory resources, or no useless key in PubKeyStore.
674 IN UINT8
*PubKeyStore
,
675 IN UINT32 PubKeyNumber
,
676 OUT UINT32
**NewPubKeyIndex
,
677 OUT UINT8
**NewPubKeyStore
,
678 OUT UINT32
*NewPubKeySize
683 UINT32 NewPubKeyNumber
;
685 NewPubKeyNumber
= GetValidPubKeyNumber (PubKeyNumber
);
686 if (NewPubKeyNumber
== PubKeyNumber
) {
687 return EFI_OUT_OF_RESOURCES
;
690 if (NewPubKeyNumber
!= 0) {
691 *NewPubKeySize
= NewPubKeyNumber
* EFI_CERT_TYPE_RSA2048_SIZE
;
693 *NewPubKeySize
= sizeof (UINT8
);
696 *NewPubKeyStore
= AllocatePool (*NewPubKeySize
);
697 if (*NewPubKeyStore
== NULL
) {
698 return EFI_OUT_OF_RESOURCES
;
701 *NewPubKeyIndex
= AllocateZeroPool ((PubKeyNumber
+ 1) * sizeof (UINT32
));
702 if (*NewPubKeyIndex
== NULL
) {
703 FreePool (*NewPubKeyStore
);
704 *NewPubKeyStore
= NULL
;
705 return EFI_OUT_OF_RESOURCES
;
709 for (PubKeyIndex
= 1; PubKeyIndex
<= PubKeyNumber
; PubKeyIndex
++) {
710 if (IsValidPubKeyIndex (PubKeyIndex
)) {
712 *NewPubKeyStore
+ CopiedKey
* EFI_CERT_TYPE_RSA2048_SIZE
,
713 PubKeyStore
+ (PubKeyIndex
- 1) * EFI_CERT_TYPE_RSA2048_SIZE
,
714 EFI_CERT_TYPE_RSA2048_SIZE
716 (*NewPubKeyIndex
)[PubKeyIndex
] = ++CopiedKey
;
724 Variable store garbage collection and reclaim operation.
726 If ReclaimPubKeyStore is FALSE, reclaim variable space by deleting the obsoleted varaibles.
727 If ReclaimPubKeyStore is TRUE, reclaim invalid key in public key database and update the PubKeyIndex
728 for all the count-based authenticate variable in NV storage.
730 @param[in] VariableBase Base address of variable store.
731 @param[out] LastVariableOffset Offset of last variable.
732 @param[in] IsVolatile The variable store is volatile or not;
733 if it is non-volatile, need FTW.
734 @param[in, out] UpdatingPtrTrack Pointer to updating variable pointer track structure.
735 @param[in] NewVariable Pointer to new variable.
736 @param[in] NewVariableSize New variable size.
737 @param[in] ReclaimPubKeyStore Reclaim for public key database or not.
739 @return EFI_SUCCESS Reclaim operation has finished successfully.
740 @return EFI_OUT_OF_RESOURCES No enough memory resources or variable space.
741 @return EFI_DEVICE_ERROR The public key database doesn't exist.
742 @return Others Unexpect error happened during reclaim operation.
747 IN EFI_PHYSICAL_ADDRESS VariableBase
,
748 OUT UINTN
*LastVariableOffset
,
749 IN BOOLEAN IsVolatile
,
750 IN OUT VARIABLE_POINTER_TRACK
*UpdatingPtrTrack
,
751 IN VARIABLE_HEADER
*NewVariable
,
752 IN UINTN NewVariableSize
,
753 IN BOOLEAN ReclaimPubKeyStore
756 VARIABLE_HEADER
*Variable
;
757 VARIABLE_HEADER
*AddedVariable
;
758 VARIABLE_HEADER
*NextVariable
;
759 VARIABLE_HEADER
*NextAddedVariable
;
760 VARIABLE_STORE_HEADER
*VariableStoreHeader
;
762 UINTN MaximumBufferSize
;
770 UINTN CommonVariableTotalSize
;
771 UINTN HwErrVariableTotalSize
;
772 UINT32
*NewPubKeyIndex
;
773 UINT8
*NewPubKeyStore
;
774 UINT32 NewPubKeySize
;
775 VARIABLE_HEADER
*PubKeyHeader
;
776 VARIABLE_HEADER
*UpdatingVariable
;
777 VARIABLE_HEADER
*UpdatingInDeletedTransition
;
779 UpdatingVariable
= NULL
;
780 UpdatingInDeletedTransition
= NULL
;
781 if (UpdatingPtrTrack
!= NULL
) {
782 UpdatingVariable
= UpdatingPtrTrack
->CurrPtr
;
783 UpdatingInDeletedTransition
= UpdatingPtrTrack
->InDeletedTransitionPtr
;
786 VariableStoreHeader
= (VARIABLE_STORE_HEADER
*) ((UINTN
) VariableBase
);
788 CommonVariableTotalSize
= 0;
789 HwErrVariableTotalSize
= 0;
790 NewPubKeyIndex
= NULL
;
791 NewPubKeyStore
= NULL
;
797 // Start Pointers for the variable.
799 Variable
= GetStartPointer (VariableStoreHeader
);
800 MaximumBufferSize
= sizeof (VARIABLE_STORE_HEADER
);
802 while (IsValidVariableHeader (Variable
)) {
803 NextVariable
= GetNextVariablePtr (Variable
);
804 if ((Variable
->State
== VAR_ADDED
|| Variable
->State
== (VAR_IN_DELETED_TRANSITION
& VAR_ADDED
)) &&
805 Variable
!= UpdatingVariable
&&
806 Variable
!= UpdatingInDeletedTransition
808 VariableSize
= (UINTN
) NextVariable
- (UINTN
) Variable
;
809 MaximumBufferSize
+= VariableSize
;
812 Variable
= NextVariable
;
815 if (NewVariable
!= NULL
) {
817 // Add the new variable size.
819 MaximumBufferSize
+= NewVariableSize
;
823 // Reserve the 1 Bytes with Oxff to identify the
824 // end of the variable buffer.
826 MaximumBufferSize
+= 1;
827 ValidBuffer
= AllocatePool (MaximumBufferSize
);
828 if (ValidBuffer
== NULL
) {
829 return EFI_OUT_OF_RESOURCES
;
833 // For NV variable reclaim, don't allocate pool here and just use mNvVariableCache
834 // as the buffer to reduce SMRAM consumption for SMM variable driver.
836 MaximumBufferSize
= mNvVariableCache
->Size
;
837 ValidBuffer
= (UINT8
*) mNvVariableCache
;
840 SetMem (ValidBuffer
, MaximumBufferSize
, 0xff);
843 // Copy variable store header.
845 CopyMem (ValidBuffer
, VariableStoreHeader
, sizeof (VARIABLE_STORE_HEADER
));
846 CurrPtr
= (UINT8
*) GetStartPointer ((VARIABLE_STORE_HEADER
*) ValidBuffer
);
848 if (ReclaimPubKeyStore
) {
849 ASSERT (IsVolatile
== FALSE
);
851 // Trim the PubKeyStore and get new PubKeyIndex.
853 Status
= PubKeyStoreFilter (
860 if (EFI_ERROR (Status
)) {
865 // Refresh the PubKeyIndex for all valid variables (ADDED and IN_DELETED_TRANSITION).
867 Variable
= GetStartPointer (VariableStoreHeader
);
868 while (IsValidVariableHeader (Variable
)) {
869 NextVariable
= GetNextVariablePtr (Variable
);
870 if (Variable
->State
== VAR_ADDED
|| Variable
->State
== (VAR_IN_DELETED_TRANSITION
& VAR_ADDED
)) {
871 if ((StrCmp (GetVariableNamePtr (Variable
), AUTHVAR_KEYDB_NAME
) == 0) &&
872 (CompareGuid (&Variable
->VendorGuid
, &gEfiAuthenticatedVariableGuid
))) {
874 // Skip the public key database, it will be reinstalled later.
876 PubKeyHeader
= Variable
;
877 Variable
= NextVariable
;
881 VariableSize
= (UINTN
) NextVariable
- (UINTN
) Variable
;
882 CopyMem (CurrPtr
, (UINT8
*) Variable
, VariableSize
);
883 ((VARIABLE_HEADER
*) CurrPtr
)->PubKeyIndex
= NewPubKeyIndex
[Variable
->PubKeyIndex
];
884 CurrPtr
+= VariableSize
;
885 if ((Variable
->Attributes
& EFI_VARIABLE_HARDWARE_ERROR_RECORD
) == EFI_VARIABLE_HARDWARE_ERROR_RECORD
) {
886 HwErrVariableTotalSize
+= VariableSize
;
887 } else if ((Variable
->Attributes
& EFI_VARIABLE_HARDWARE_ERROR_RECORD
) != EFI_VARIABLE_HARDWARE_ERROR_RECORD
) {
888 CommonVariableTotalSize
+= VariableSize
;
891 Variable
= NextVariable
;
895 // Reinstall the new public key database.
897 ASSERT (PubKeyHeader
!= NULL
);
898 if (PubKeyHeader
== NULL
) {
899 Status
= EFI_DEVICE_ERROR
;
902 CopyMem (CurrPtr
, (UINT8
*) PubKeyHeader
, sizeof (VARIABLE_HEADER
));
903 Variable
= (VARIABLE_HEADER
*) CurrPtr
;
904 Variable
->DataSize
= NewPubKeySize
;
905 StrCpy (GetVariableNamePtr (Variable
), GetVariableNamePtr (PubKeyHeader
));
906 CopyMem (GetVariableDataPtr (Variable
), NewPubKeyStore
, NewPubKeySize
);
907 CurrPtr
= (UINT8
*) GetNextVariablePtr (Variable
);
908 CommonVariableTotalSize
+= (UINTN
) CurrPtr
- (UINTN
) Variable
;
911 // Reinstall all ADDED variables as long as they are not identical to Updating Variable.
913 Variable
= GetStartPointer (VariableStoreHeader
);
914 while (IsValidVariableHeader (Variable
)) {
915 NextVariable
= GetNextVariablePtr (Variable
);
916 if (Variable
!= UpdatingVariable
&& Variable
->State
== VAR_ADDED
) {
917 VariableSize
= (UINTN
) NextVariable
- (UINTN
) Variable
;
918 CopyMem (CurrPtr
, (UINT8
*) Variable
, VariableSize
);
919 CurrPtr
+= VariableSize
;
920 if ((!IsVolatile
) && ((Variable
->Attributes
& EFI_VARIABLE_HARDWARE_ERROR_RECORD
) == EFI_VARIABLE_HARDWARE_ERROR_RECORD
)) {
921 HwErrVariableTotalSize
+= VariableSize
;
922 } else if ((!IsVolatile
) && ((Variable
->Attributes
& EFI_VARIABLE_HARDWARE_ERROR_RECORD
) != EFI_VARIABLE_HARDWARE_ERROR_RECORD
)) {
923 CommonVariableTotalSize
+= VariableSize
;
926 Variable
= NextVariable
;
930 // Reinstall all in delete transition variables.
932 Variable
= GetStartPointer (VariableStoreHeader
);
933 while (IsValidVariableHeader (Variable
)) {
934 NextVariable
= GetNextVariablePtr (Variable
);
935 if (Variable
!= UpdatingVariable
&& Variable
!= UpdatingInDeletedTransition
&& Variable
->State
== (VAR_IN_DELETED_TRANSITION
& VAR_ADDED
)) {
938 // Buffer has cached all ADDED variable.
939 // Per IN_DELETED variable, we have to guarantee that
940 // no ADDED one in previous buffer.
944 AddedVariable
= GetStartPointer ((VARIABLE_STORE_HEADER
*) ValidBuffer
);
945 while (IsValidVariableHeader (AddedVariable
)) {
946 NextAddedVariable
= GetNextVariablePtr (AddedVariable
);
947 NameSize
= NameSizeOfVariable (AddedVariable
);
948 if (CompareGuid (&AddedVariable
->VendorGuid
, &Variable
->VendorGuid
) &&
949 NameSize
== NameSizeOfVariable (Variable
)
951 Point0
= (VOID
*) GetVariableNamePtr (AddedVariable
);
952 Point1
= (VOID
*) GetVariableNamePtr (Variable
);
953 if (CompareMem (Point0
, Point1
, NameSize
) == 0) {
958 AddedVariable
= NextAddedVariable
;
962 // Promote VAR_IN_DELETED_TRANSITION to VAR_ADDED.
964 VariableSize
= (UINTN
) NextVariable
- (UINTN
) Variable
;
965 CopyMem (CurrPtr
, (UINT8
*) Variable
, VariableSize
);
966 ((VARIABLE_HEADER
*) CurrPtr
)->State
= VAR_ADDED
;
967 CurrPtr
+= VariableSize
;
968 if ((!IsVolatile
) && ((Variable
->Attributes
& EFI_VARIABLE_HARDWARE_ERROR_RECORD
) == EFI_VARIABLE_HARDWARE_ERROR_RECORD
)) {
969 HwErrVariableTotalSize
+= VariableSize
;
970 } else if ((!IsVolatile
) && ((Variable
->Attributes
& EFI_VARIABLE_HARDWARE_ERROR_RECORD
) != EFI_VARIABLE_HARDWARE_ERROR_RECORD
)) {
971 CommonVariableTotalSize
+= VariableSize
;
976 Variable
= NextVariable
;
980 // Install the new variable if it is not NULL.
982 if (NewVariable
!= NULL
) {
983 if ((UINTN
) (CurrPtr
- ValidBuffer
) + NewVariableSize
> VariableStoreHeader
->Size
) {
985 // No enough space to store the new variable.
987 Status
= EFI_OUT_OF_RESOURCES
;
991 if ((NewVariable
->Attributes
& EFI_VARIABLE_HARDWARE_ERROR_RECORD
) == EFI_VARIABLE_HARDWARE_ERROR_RECORD
) {
992 HwErrVariableTotalSize
+= NewVariableSize
;
993 } else if ((NewVariable
->Attributes
& EFI_VARIABLE_HARDWARE_ERROR_RECORD
) != EFI_VARIABLE_HARDWARE_ERROR_RECORD
) {
994 CommonVariableTotalSize
+= NewVariableSize
;
996 if ((HwErrVariableTotalSize
> PcdGet32 (PcdHwErrStorageSize
)) ||
997 (CommonVariableTotalSize
> VariableStoreHeader
->Size
- sizeof (VARIABLE_STORE_HEADER
) - PcdGet32 (PcdHwErrStorageSize
))) {
999 // No enough space to store the new variable by NV or NV+HR attribute.
1001 Status
= EFI_OUT_OF_RESOURCES
;
1006 CopyMem (CurrPtr
, (UINT8
*) NewVariable
, NewVariableSize
);
1007 ((VARIABLE_HEADER
*) CurrPtr
)->State
= VAR_ADDED
;
1008 if (UpdatingVariable
!= NULL
) {
1009 UpdatingPtrTrack
->CurrPtr
= (VARIABLE_HEADER
*)((UINTN
)UpdatingPtrTrack
->StartPtr
+ ((UINTN
)CurrPtr
- (UINTN
)GetStartPointer ((VARIABLE_STORE_HEADER
*) ValidBuffer
)));
1010 UpdatingPtrTrack
->InDeletedTransitionPtr
= NULL
;
1012 CurrPtr
+= NewVariableSize
;
1018 // If volatile variable store, just copy valid buffer.
1020 SetMem ((UINT8
*) (UINTN
) VariableBase
, VariableStoreHeader
->Size
, 0xff);
1021 CopyMem ((UINT8
*) (UINTN
) VariableBase
, ValidBuffer
, (UINTN
) (CurrPtr
- ValidBuffer
));
1022 *LastVariableOffset
= (UINTN
) (CurrPtr
- ValidBuffer
);
1023 Status
= EFI_SUCCESS
;
1026 // If non-volatile variable store, perform FTW here.
1028 Status
= FtwVariableSpace (
1030 (VARIABLE_STORE_HEADER
*) ValidBuffer
1032 if (!EFI_ERROR (Status
)) {
1033 *LastVariableOffset
= (UINTN
) (CurrPtr
- ValidBuffer
);
1034 mVariableModuleGlobal
->HwErrVariableTotalSize
= HwErrVariableTotalSize
;
1035 mVariableModuleGlobal
->CommonVariableTotalSize
= CommonVariableTotalSize
;
1037 NextVariable
= GetStartPointer ((VARIABLE_STORE_HEADER
*)(UINTN
)VariableBase
);
1038 while (IsValidVariableHeader (NextVariable
)) {
1039 VariableSize
= NextVariable
->NameSize
+ NextVariable
->DataSize
+ sizeof (VARIABLE_HEADER
);
1040 if ((Variable
->Attributes
& EFI_VARIABLE_HARDWARE_ERROR_RECORD
) == EFI_VARIABLE_HARDWARE_ERROR_RECORD
) {
1041 mVariableModuleGlobal
->HwErrVariableTotalSize
+= HEADER_ALIGN (VariableSize
);
1042 } else if ((Variable
->Attributes
& EFI_VARIABLE_HARDWARE_ERROR_RECORD
) != EFI_VARIABLE_HARDWARE_ERROR_RECORD
) {
1043 mVariableModuleGlobal
->CommonVariableTotalSize
+= HEADER_ALIGN (VariableSize
);
1046 NextVariable
= GetNextVariablePtr (NextVariable
);
1048 *LastVariableOffset
= (UINTN
) NextVariable
- (UINTN
) VariableBase
;
1054 FreePool (ValidBuffer
);
1057 // For NV variable reclaim, we use mNvVariableCache as the buffer, so copy the data back.
1059 CopyMem (mNvVariableCache
, (UINT8
*)(UINTN
)VariableBase
, VariableStoreHeader
->Size
);
1061 if (NewPubKeyStore
!= NULL
) {
1062 FreePool (NewPubKeyStore
);
1065 if (NewPubKeyIndex
!= NULL
) {
1066 FreePool (NewPubKeyIndex
);
1074 Find the variable in the specified variable store.
1076 @param[in] VariableName Name of the variable to be found
1077 @param[in] VendorGuid Vendor GUID to be found.
1078 @param[in] IgnoreRtCheck Ignore EFI_VARIABLE_RUNTIME_ACCESS attribute
1079 check at runtime when searching variable.
1080 @param[in, out] PtrTrack Variable Track Pointer structure that contains Variable Information.
1082 @retval EFI_SUCCESS Variable found successfully
1083 @retval EFI_NOT_FOUND Variable not found
1087 IN CHAR16
*VariableName
,
1088 IN EFI_GUID
*VendorGuid
,
1089 IN BOOLEAN IgnoreRtCheck
,
1090 IN OUT VARIABLE_POINTER_TRACK
*PtrTrack
1093 VARIABLE_HEADER
*InDeletedVariable
;
1096 PtrTrack
->InDeletedTransitionPtr
= NULL
;
1099 // Find the variable by walk through HOB, volatile and non-volatile variable store.
1101 InDeletedVariable
= NULL
;
1103 for ( PtrTrack
->CurrPtr
= PtrTrack
->StartPtr
1104 ; (PtrTrack
->CurrPtr
< PtrTrack
->EndPtr
) && IsValidVariableHeader (PtrTrack
->CurrPtr
)
1105 ; PtrTrack
->CurrPtr
= GetNextVariablePtr (PtrTrack
->CurrPtr
)
1107 if (PtrTrack
->CurrPtr
->State
== VAR_ADDED
||
1108 PtrTrack
->CurrPtr
->State
== (VAR_IN_DELETED_TRANSITION
& VAR_ADDED
)
1110 if (IgnoreRtCheck
|| !AtRuntime () || ((PtrTrack
->CurrPtr
->Attributes
& EFI_VARIABLE_RUNTIME_ACCESS
) != 0)) {
1111 if (VariableName
[0] == 0) {
1112 if (PtrTrack
->CurrPtr
->State
== (VAR_IN_DELETED_TRANSITION
& VAR_ADDED
)) {
1113 InDeletedVariable
= PtrTrack
->CurrPtr
;
1115 PtrTrack
->InDeletedTransitionPtr
= InDeletedVariable
;
1119 if (CompareGuid (VendorGuid
, &PtrTrack
->CurrPtr
->VendorGuid
)) {
1120 Point
= (VOID
*) GetVariableNamePtr (PtrTrack
->CurrPtr
);
1122 ASSERT (NameSizeOfVariable (PtrTrack
->CurrPtr
) != 0);
1123 if (CompareMem (VariableName
, Point
, NameSizeOfVariable (PtrTrack
->CurrPtr
)) == 0) {
1124 if (PtrTrack
->CurrPtr
->State
== (VAR_IN_DELETED_TRANSITION
& VAR_ADDED
)) {
1125 InDeletedVariable
= PtrTrack
->CurrPtr
;
1127 PtrTrack
->InDeletedTransitionPtr
= InDeletedVariable
;
1137 PtrTrack
->CurrPtr
= InDeletedVariable
;
1138 return (PtrTrack
->CurrPtr
== NULL
) ? EFI_NOT_FOUND
: EFI_SUCCESS
;
1143 Finds variable in storage blocks of volatile and non-volatile storage areas.
1145 This code finds variable in storage blocks of volatile and non-volatile storage areas.
1146 If VariableName is an empty string, then we just return the first
1147 qualified variable without comparing VariableName and VendorGuid.
1148 If IgnoreRtCheck is TRUE, then we ignore the EFI_VARIABLE_RUNTIME_ACCESS attribute check
1149 at runtime when searching existing variable, only VariableName and VendorGuid are compared.
1150 Otherwise, variables without EFI_VARIABLE_RUNTIME_ACCESS are not visible at runtime.
1152 @param[in] VariableName Name of the variable to be found.
1153 @param[in] VendorGuid Vendor GUID to be found.
1154 @param[out] PtrTrack VARIABLE_POINTER_TRACK structure for output,
1155 including the range searched and the target position.
1156 @param[in] Global Pointer to VARIABLE_GLOBAL structure, including
1157 base of volatile variable storage area, base of
1158 NV variable storage area, and a lock.
1159 @param[in] IgnoreRtCheck Ignore EFI_VARIABLE_RUNTIME_ACCESS attribute
1160 check at runtime when searching variable.
1162 @retval EFI_INVALID_PARAMETER If VariableName is not an empty string, while
1164 @retval EFI_SUCCESS Variable successfully found.
1165 @retval EFI_NOT_FOUND Variable not found
1170 IN CHAR16
*VariableName
,
1171 IN EFI_GUID
*VendorGuid
,
1172 OUT VARIABLE_POINTER_TRACK
*PtrTrack
,
1173 IN VARIABLE_GLOBAL
*Global
,
1174 IN BOOLEAN IgnoreRtCheck
1178 VARIABLE_STORE_HEADER
*VariableStoreHeader
[VariableStoreTypeMax
];
1179 VARIABLE_STORE_TYPE Type
;
1181 if (VariableName
[0] != 0 && VendorGuid
== NULL
) {
1182 return EFI_INVALID_PARAMETER
;
1186 // 0: Volatile, 1: HOB, 2: Non-Volatile.
1187 // The index and attributes mapping must be kept in this order as RuntimeServiceGetNextVariableName
1188 // make use of this mapping to implement search algorithm.
1190 VariableStoreHeader
[VariableStoreTypeVolatile
] = (VARIABLE_STORE_HEADER
*) (UINTN
) Global
->VolatileVariableBase
;
1191 VariableStoreHeader
[VariableStoreTypeHob
] = (VARIABLE_STORE_HEADER
*) (UINTN
) Global
->HobVariableBase
;
1192 VariableStoreHeader
[VariableStoreTypeNv
] = mNvVariableCache
;
1195 // Find the variable by walk through HOB, volatile and non-volatile variable store.
1197 for (Type
= (VARIABLE_STORE_TYPE
) 0; Type
< VariableStoreTypeMax
; Type
++) {
1198 if (VariableStoreHeader
[Type
] == NULL
) {
1202 PtrTrack
->StartPtr
= GetStartPointer (VariableStoreHeader
[Type
]);
1203 PtrTrack
->EndPtr
= GetEndPointer (VariableStoreHeader
[Type
]);
1204 PtrTrack
->Volatile
= (BOOLEAN
) (Type
== VariableStoreTypeVolatile
);
1206 Status
= FindVariableEx (VariableName
, VendorGuid
, IgnoreRtCheck
, PtrTrack
);
1207 if (!EFI_ERROR (Status
)) {
1211 return EFI_NOT_FOUND
;
1215 Get index from supported language codes according to language string.
1217 This code is used to get corresponding index in supported language codes. It can handle
1218 RFC4646 and ISO639 language tags.
1219 In ISO639 language tags, take 3-characters as a delimitation to find matched string and calculate the index.
1220 In RFC4646 language tags, take semicolon as a delimitation to find matched string and calculate the index.
1223 SupportedLang = "engfraengfra"
1225 Iso639Language = TRUE
1226 The return value is "0".
1228 SupportedLang = "en;fr;en-US;fr-FR"
1230 Iso639Language = FALSE
1231 The return value is "3".
1233 @param SupportedLang Platform supported language codes.
1234 @param Lang Configured language.
1235 @param Iso639Language A bool value to signify if the handler is operated on ISO639 or RFC4646.
1237 @retval The index of language in the language codes.
1241 GetIndexFromSupportedLangCodes(
1242 IN CHAR8
*SupportedLang
,
1244 IN BOOLEAN Iso639Language
1248 UINTN CompareLength
;
1249 UINTN LanguageLength
;
1251 if (Iso639Language
) {
1252 CompareLength
= ISO_639_2_ENTRY_SIZE
;
1253 for (Index
= 0; Index
< AsciiStrLen (SupportedLang
); Index
+= CompareLength
) {
1254 if (AsciiStrnCmp (Lang
, SupportedLang
+ Index
, CompareLength
) == 0) {
1256 // Successfully find the index of Lang string in SupportedLang string.
1258 Index
= Index
/ CompareLength
;
1266 // Compare RFC4646 language code
1269 for (LanguageLength
= 0; Lang
[LanguageLength
] != '\0'; LanguageLength
++);
1271 for (Index
= 0; *SupportedLang
!= '\0'; Index
++, SupportedLang
+= CompareLength
) {
1273 // Skip ';' characters in SupportedLang
1275 for (; *SupportedLang
!= '\0' && *SupportedLang
== ';'; SupportedLang
++);
1277 // Determine the length of the next language code in SupportedLang
1279 for (CompareLength
= 0; SupportedLang
[CompareLength
] != '\0' && SupportedLang
[CompareLength
] != ';'; CompareLength
++);
1281 if ((CompareLength
== LanguageLength
) &&
1282 (AsciiStrnCmp (Lang
, SupportedLang
, CompareLength
) == 0)) {
1284 // Successfully find the index of Lang string in SupportedLang string.
1295 Get language string from supported language codes according to index.
1297 This code is used to get corresponding language strings in supported language codes. It can handle
1298 RFC4646 and ISO639 language tags.
1299 In ISO639 language tags, take 3-characters as a delimitation. Find language string according to the index.
1300 In RFC4646 language tags, take semicolon as a delimitation. Find language string according to the index.
1303 SupportedLang = "engfraengfra"
1305 Iso639Language = TRUE
1306 The return value is "fra".
1308 SupportedLang = "en;fr;en-US;fr-FR"
1310 Iso639Language = FALSE
1311 The return value is "fr".
1313 @param SupportedLang Platform supported language codes.
1314 @param Index The index in supported language codes.
1315 @param Iso639Language A bool value to signify if the handler is operated on ISO639 or RFC4646.
1317 @retval The language string in the language codes.
1321 GetLangFromSupportedLangCodes (
1322 IN CHAR8
*SupportedLang
,
1324 IN BOOLEAN Iso639Language
1328 UINTN CompareLength
;
1332 Supported
= SupportedLang
;
1333 if (Iso639Language
) {
1335 // According to the index of Lang string in SupportedLang string to get the language.
1336 // This code will be invoked in RUNTIME, therefore there is not a memory allocate/free operation.
1337 // In driver entry, it pre-allocates a runtime attribute memory to accommodate this string.
1339 CompareLength
= ISO_639_2_ENTRY_SIZE
;
1340 mVariableModuleGlobal
->Lang
[CompareLength
] = '\0';
1341 return CopyMem (mVariableModuleGlobal
->Lang
, SupportedLang
+ Index
* CompareLength
, CompareLength
);
1346 // Take semicolon as delimitation, sequentially traverse supported language codes.
1348 for (CompareLength
= 0; *Supported
!= ';' && *Supported
!= '\0'; CompareLength
++) {
1351 if ((*Supported
== '\0') && (SubIndex
!= Index
)) {
1353 // Have completed the traverse, but not find corrsponding string.
1354 // This case is not allowed to happen.
1359 if (SubIndex
== Index
) {
1361 // According to the index of Lang string in SupportedLang string to get the language.
1362 // As this code will be invoked in RUNTIME, therefore there is not memory allocate/free operation.
1363 // In driver entry, it pre-allocates a runtime attribute memory to accommodate this string.
1365 mVariableModuleGlobal
->PlatformLang
[CompareLength
] = '\0';
1366 return CopyMem (mVariableModuleGlobal
->PlatformLang
, Supported
- CompareLength
, CompareLength
);
1371 // Skip ';' characters in Supported
1373 for (; *Supported
!= '\0' && *Supported
== ';'; Supported
++);
1379 Returns a pointer to an allocated buffer that contains the best matching language
1380 from a set of supported languages.
1382 This function supports both ISO 639-2 and RFC 4646 language codes, but language
1383 code types may not be mixed in a single call to this function. This function
1384 supports a variable argument list that allows the caller to pass in a prioritized
1385 list of language codes to test against all the language codes in SupportedLanguages.
1387 If SupportedLanguages is NULL, then ASSERT().
1389 @param[in] SupportedLanguages A pointer to a Null-terminated ASCII string that
1390 contains a set of language codes in the format
1391 specified by Iso639Language.
1392 @param[in] Iso639Language If TRUE, then all language codes are assumed to be
1393 in ISO 639-2 format. If FALSE, then all language
1394 codes are assumed to be in RFC 4646 language format
1395 @param[in] ... A variable argument list that contains pointers to
1396 Null-terminated ASCII strings that contain one or more
1397 language codes in the format specified by Iso639Language.
1398 The first language code from each of these language
1399 code lists is used to determine if it is an exact or
1400 close match to any of the language codes in
1401 SupportedLanguages. Close matches only apply to RFC 4646
1402 language codes, and the matching algorithm from RFC 4647
1403 is used to determine if a close match is present. If
1404 an exact or close match is found, then the matching
1405 language code from SupportedLanguages is returned. If
1406 no matches are found, then the next variable argument
1407 parameter is evaluated. The variable argument list
1408 is terminated by a NULL.
1410 @retval NULL The best matching language could not be found in SupportedLanguages.
1411 @retval NULL There are not enough resources available to return the best matching
1413 @retval Other A pointer to a Null-terminated ASCII string that is the best matching
1414 language in SupportedLanguages.
1419 VariableGetBestLanguage (
1420 IN CONST CHAR8
*SupportedLanguages
,
1421 IN BOOLEAN Iso639Language
,
1427 UINTN CompareLength
;
1428 UINTN LanguageLength
;
1429 CONST CHAR8
*Supported
;
1432 if (SupportedLanguages
== NULL
) {
1436 VA_START (Args
, Iso639Language
);
1437 while ((Language
= VA_ARG (Args
, CHAR8
*)) != NULL
) {
1439 // Default to ISO 639-2 mode
1442 LanguageLength
= MIN (3, AsciiStrLen (Language
));
1445 // If in RFC 4646 mode, then determine the length of the first RFC 4646 language code in Language
1447 if (!Iso639Language
) {
1448 for (LanguageLength
= 0; Language
[LanguageLength
] != 0 && Language
[LanguageLength
] != ';'; LanguageLength
++);
1452 // Trim back the length of Language used until it is empty
1454 while (LanguageLength
> 0) {
1456 // Loop through all language codes in SupportedLanguages
1458 for (Supported
= SupportedLanguages
; *Supported
!= '\0'; Supported
+= CompareLength
) {
1460 // In RFC 4646 mode, then Loop through all language codes in SupportedLanguages
1462 if (!Iso639Language
) {
1464 // Skip ';' characters in Supported
1466 for (; *Supported
!= '\0' && *Supported
== ';'; Supported
++);
1468 // Determine the length of the next language code in Supported
1470 for (CompareLength
= 0; Supported
[CompareLength
] != 0 && Supported
[CompareLength
] != ';'; CompareLength
++);
1472 // If Language is longer than the Supported, then skip to the next language
1474 if (LanguageLength
> CompareLength
) {
1479 // See if the first LanguageLength characters in Supported match Language
1481 if (AsciiStrnCmp (Supported
, Language
, LanguageLength
) == 0) {
1484 Buffer
= Iso639Language
? mVariableModuleGlobal
->Lang
: mVariableModuleGlobal
->PlatformLang
;
1485 Buffer
[CompareLength
] = '\0';
1486 return CopyMem (Buffer
, Supported
, CompareLength
);
1490 if (Iso639Language
) {
1492 // If ISO 639 mode, then each language can only be tested once
1497 // If RFC 4646 mode, then trim Language from the right to the next '-' character
1499 for (LanguageLength
--; LanguageLength
> 0 && Language
[LanguageLength
] != '-'; LanguageLength
--);
1506 // No matches were found
1512 This function is to check if the remaining variable space is enough to set
1513 all Variables from argument list successfully. The purpose of the check
1514 is to keep the consistency of the Variables to be in variable storage.
1516 Note: Variables are assumed to be in same storage.
1517 The set sequence of Variables will be same with the sequence of VariableEntry from argument list,
1518 so follow the argument sequence to check the Variables.
1520 @param[in] Attributes Variable attributes for Variable entries.
1521 @param ... The variable argument list with type VARIABLE_ENTRY_CONSISTENCY *.
1522 A NULL terminates the list. The VariableSize of
1523 VARIABLE_ENTRY_CONSISTENCY is the variable data size as input.
1524 It will be changed to variable total size as output.
1526 @retval TRUE Have enough variable space to set the Variables successfully.
1527 @retval FALSE No enough variable space to set the Variables successfully.
1532 CheckRemainingSpaceForConsistency (
1533 IN UINT32 Attributes
,
1539 VARIABLE_ENTRY_CONSISTENCY
*VariableEntry
;
1540 UINT64 MaximumVariableStorageSize
;
1541 UINT64 RemainingVariableStorageSize
;
1542 UINT64 MaximumVariableSize
;
1543 UINTN TotalNeededSize
;
1544 UINTN OriginalVarSize
;
1545 VARIABLE_STORE_HEADER
*VariableStoreHeader
;
1546 VARIABLE_POINTER_TRACK VariablePtrTrack
;
1547 VARIABLE_HEADER
*NextVariable
;
1552 // Non-Volatile related.
1554 VariableStoreHeader
= mNvVariableCache
;
1556 Status
= VariableServiceQueryVariableInfoInternal (
1558 &MaximumVariableStorageSize
,
1559 &RemainingVariableStorageSize
,
1560 &MaximumVariableSize
1562 ASSERT_EFI_ERROR (Status
);
1564 TotalNeededSize
= 0;
1565 VA_START (Args
, Attributes
);
1566 VariableEntry
= VA_ARG (Args
, VARIABLE_ENTRY_CONSISTENCY
*);
1567 while (VariableEntry
!= NULL
) {
1569 // Calculate variable total size.
1571 VarNameSize
= StrSize (VariableEntry
->Name
);
1572 VarNameSize
+= GET_PAD_SIZE (VarNameSize
);
1573 VarDataSize
= VariableEntry
->VariableSize
;
1574 VarDataSize
+= GET_PAD_SIZE (VarDataSize
);
1575 VariableEntry
->VariableSize
= HEADER_ALIGN (sizeof (VARIABLE_HEADER
) + VarNameSize
+ VarDataSize
);
1577 TotalNeededSize
+= VariableEntry
->VariableSize
;
1578 VariableEntry
= VA_ARG (Args
, VARIABLE_ENTRY_CONSISTENCY
*);
1582 if (RemainingVariableStorageSize
>= TotalNeededSize
) {
1584 // Already have enough space.
1587 } else if (AtRuntime ()) {
1589 // At runtime, no reclaim.
1590 // The original variable space of Variables can't be reused.
1595 VA_START (Args
, Attributes
);
1596 VariableEntry
= VA_ARG (Args
, VARIABLE_ENTRY_CONSISTENCY
*);
1597 while (VariableEntry
!= NULL
) {
1599 // Check if Variable[Index] has been present and get its size.
1601 OriginalVarSize
= 0;
1602 VariablePtrTrack
.StartPtr
= GetStartPointer (VariableStoreHeader
);
1603 VariablePtrTrack
.EndPtr
= GetEndPointer (VariableStoreHeader
);
1604 Status
= FindVariableEx (
1605 VariableEntry
->Name
,
1606 VariableEntry
->Guid
,
1610 if (!EFI_ERROR (Status
)) {
1612 // Get size of Variable[Index].
1614 NextVariable
= GetNextVariablePtr (VariablePtrTrack
.CurrPtr
);
1615 OriginalVarSize
= (UINTN
) NextVariable
- (UINTN
) VariablePtrTrack
.CurrPtr
;
1617 // Add the original size of Variable[Index] to remaining variable storage size.
1619 RemainingVariableStorageSize
+= OriginalVarSize
;
1621 if (VariableEntry
->VariableSize
> RemainingVariableStorageSize
) {
1623 // No enough space for Variable[Index].
1629 // Sub the (new) size of Variable[Index] from remaining variable storage size.
1631 RemainingVariableStorageSize
-= VariableEntry
->VariableSize
;
1632 VariableEntry
= VA_ARG (Args
, VARIABLE_ENTRY_CONSISTENCY
*);
1640 Hook the operations in PlatformLangCodes, LangCodes, PlatformLang and Lang.
1642 When setting Lang/LangCodes, simultaneously update PlatformLang/PlatformLangCodes.
1644 According to UEFI spec, PlatformLangCodes/LangCodes are only set once in firmware initialization,
1645 and are read-only. Therefore, in variable driver, only store the original value for other use.
1647 @param[in] VariableName Name of variable.
1649 @param[in] Data Variable data.
1651 @param[in] DataSize Size of data. 0 means delete.
1653 @retval EFI_SUCCESS The update operation is successful or ignored.
1654 @retval EFI_WRITE_PROTECTED Update PlatformLangCodes/LangCodes at runtime.
1655 @retval EFI_OUT_OF_RESOURCES No enough variable space to do the update operation.
1656 @retval Others Other errors happened during the update operation.
1660 AutoUpdateLangVariable (
1661 IN CHAR16
*VariableName
,
1667 CHAR8
*BestPlatformLang
;
1671 VARIABLE_POINTER_TRACK Variable
;
1672 BOOLEAN SetLanguageCodes
;
1673 VARIABLE_ENTRY_CONSISTENCY VariableEntry
[2];
1676 // Don't do updates for delete operation
1678 if (DataSize
== 0) {
1682 SetLanguageCodes
= FALSE
;
1684 if (StrCmp (VariableName
, EFI_PLATFORM_LANG_CODES_VARIABLE_NAME
) == 0) {
1686 // PlatformLangCodes is a volatile variable, so it can not be updated at runtime.
1689 return EFI_WRITE_PROTECTED
;
1692 SetLanguageCodes
= TRUE
;
1695 // According to UEFI spec, PlatformLangCodes is only set once in firmware initialization, and is read-only
1696 // Therefore, in variable driver, only store the original value for other use.
1698 if (mVariableModuleGlobal
->PlatformLangCodes
!= NULL
) {
1699 FreePool (mVariableModuleGlobal
->PlatformLangCodes
);
1701 mVariableModuleGlobal
->PlatformLangCodes
= AllocateRuntimeCopyPool (DataSize
, Data
);
1702 ASSERT (mVariableModuleGlobal
->PlatformLangCodes
!= NULL
);
1705 // PlatformLang holds a single language from PlatformLangCodes,
1706 // so the size of PlatformLangCodes is enough for the PlatformLang.
1708 if (mVariableModuleGlobal
->PlatformLang
!= NULL
) {
1709 FreePool (mVariableModuleGlobal
->PlatformLang
);
1711 mVariableModuleGlobal
->PlatformLang
= AllocateRuntimePool (DataSize
);
1712 ASSERT (mVariableModuleGlobal
->PlatformLang
!= NULL
);
1714 } else if (StrCmp (VariableName
, EFI_LANG_CODES_VARIABLE_NAME
) == 0) {
1716 // LangCodes is a volatile variable, so it can not be updated at runtime.
1719 return EFI_WRITE_PROTECTED
;
1722 SetLanguageCodes
= TRUE
;
1725 // According to UEFI spec, LangCodes is only set once in firmware initialization, and is read-only
1726 // Therefore, in variable driver, only store the original value for other use.
1728 if (mVariableModuleGlobal
->LangCodes
!= NULL
) {
1729 FreePool (mVariableModuleGlobal
->LangCodes
);
1731 mVariableModuleGlobal
->LangCodes
= AllocateRuntimeCopyPool (DataSize
, Data
);
1732 ASSERT (mVariableModuleGlobal
->LangCodes
!= NULL
);
1735 if (SetLanguageCodes
1736 && (mVariableModuleGlobal
->PlatformLangCodes
!= NULL
)
1737 && (mVariableModuleGlobal
->LangCodes
!= NULL
)) {
1739 // Update Lang if PlatformLang is already set
1740 // Update PlatformLang if Lang is already set
1742 Status
= FindVariable (EFI_PLATFORM_LANG_VARIABLE_NAME
, &gEfiGlobalVariableGuid
, &Variable
, &mVariableModuleGlobal
->VariableGlobal
, FALSE
);
1743 if (!EFI_ERROR (Status
)) {
1747 VariableName
= EFI_PLATFORM_LANG_VARIABLE_NAME
;
1748 Data
= GetVariableDataPtr (Variable
.CurrPtr
);
1749 DataSize
= Variable
.CurrPtr
->DataSize
;
1751 Status
= FindVariable (EFI_LANG_VARIABLE_NAME
, &gEfiGlobalVariableGuid
, &Variable
, &mVariableModuleGlobal
->VariableGlobal
, FALSE
);
1752 if (!EFI_ERROR (Status
)) {
1754 // Update PlatformLang
1756 VariableName
= EFI_LANG_VARIABLE_NAME
;
1757 Data
= GetVariableDataPtr (Variable
.CurrPtr
);
1758 DataSize
= Variable
.CurrPtr
->DataSize
;
1761 // Neither PlatformLang nor Lang is set, directly return
1768 Status
= EFI_SUCCESS
;
1771 // According to UEFI spec, "Lang" and "PlatformLang" is NV|BS|RT attributions.
1773 Attributes
= EFI_VARIABLE_NON_VOLATILE
| EFI_VARIABLE_BOOTSERVICE_ACCESS
| EFI_VARIABLE_RUNTIME_ACCESS
;
1775 if (StrCmp (VariableName
, EFI_PLATFORM_LANG_VARIABLE_NAME
) == 0) {
1777 // Update Lang when PlatformLangCodes/LangCodes were set.
1779 if ((mVariableModuleGlobal
->PlatformLangCodes
!= NULL
) && (mVariableModuleGlobal
->LangCodes
!= NULL
)) {
1781 // When setting PlatformLang, firstly get most matched language string from supported language codes.
1783 BestPlatformLang
= VariableGetBestLanguage (mVariableModuleGlobal
->PlatformLangCodes
, FALSE
, Data
, NULL
);
1784 if (BestPlatformLang
!= NULL
) {
1786 // Get the corresponding index in language codes.
1788 Index
= GetIndexFromSupportedLangCodes (mVariableModuleGlobal
->PlatformLangCodes
, BestPlatformLang
, FALSE
);
1791 // Get the corresponding ISO639 language tag according to RFC4646 language tag.
1793 BestLang
= GetLangFromSupportedLangCodes (mVariableModuleGlobal
->LangCodes
, Index
, TRUE
);
1796 // Check the variable space for both Lang and PlatformLang variable.
1798 VariableEntry
[0].VariableSize
= ISO_639_2_ENTRY_SIZE
+ 1;
1799 VariableEntry
[0].Guid
= &gEfiGlobalVariableGuid
;
1800 VariableEntry
[0].Name
= EFI_LANG_VARIABLE_NAME
;
1802 VariableEntry
[1].VariableSize
= AsciiStrSize (BestPlatformLang
);
1803 VariableEntry
[1].Guid
= &gEfiGlobalVariableGuid
;
1804 VariableEntry
[1].Name
= EFI_PLATFORM_LANG_VARIABLE_NAME
;
1805 if (!CheckRemainingSpaceForConsistency (VARIABLE_ATTRIBUTE_NV_BS_RT
, &VariableEntry
[0], &VariableEntry
[1], NULL
)) {
1807 // No enough variable space to set both Lang and PlatformLang successfully.
1809 Status
= EFI_OUT_OF_RESOURCES
;
1812 // Successfully convert PlatformLang to Lang, and set the BestLang value into Lang variable simultaneously.
1814 FindVariable (EFI_LANG_VARIABLE_NAME
, &gEfiGlobalVariableGuid
, &Variable
, &mVariableModuleGlobal
->VariableGlobal
, FALSE
);
1816 Status
= UpdateVariable (EFI_LANG_VARIABLE_NAME
, &gEfiGlobalVariableGuid
, BestLang
,
1817 ISO_639_2_ENTRY_SIZE
+ 1, Attributes
, 0, 0, &Variable
, NULL
);
1820 DEBUG ((EFI_D_INFO
, "Variable Driver Auto Update PlatformLang, PlatformLang:%a, Lang:%a Status: %r\n", BestPlatformLang
, BestLang
, Status
));
1824 } else if (StrCmp (VariableName
, EFI_LANG_VARIABLE_NAME
) == 0) {
1826 // Update PlatformLang when PlatformLangCodes/LangCodes were set.
1828 if ((mVariableModuleGlobal
->PlatformLangCodes
!= NULL
) && (mVariableModuleGlobal
->LangCodes
!= NULL
)) {
1830 // When setting Lang, firstly get most matched language string from supported language codes.
1832 BestLang
= VariableGetBestLanguage (mVariableModuleGlobal
->LangCodes
, TRUE
, Data
, NULL
);
1833 if (BestLang
!= NULL
) {
1835 // Get the corresponding index in language codes.
1837 Index
= GetIndexFromSupportedLangCodes (mVariableModuleGlobal
->LangCodes
, BestLang
, TRUE
);
1840 // Get the corresponding RFC4646 language tag according to ISO639 language tag.
1842 BestPlatformLang
= GetLangFromSupportedLangCodes (mVariableModuleGlobal
->PlatformLangCodes
, Index
, FALSE
);
1845 // Check the variable space for both PlatformLang and Lang variable.
1847 VariableEntry
[0].VariableSize
= AsciiStrSize (BestPlatformLang
);
1848 VariableEntry
[0].Guid
= &gEfiGlobalVariableGuid
;
1849 VariableEntry
[0].Name
= EFI_PLATFORM_LANG_VARIABLE_NAME
;
1851 VariableEntry
[1].VariableSize
= ISO_639_2_ENTRY_SIZE
+ 1;
1852 VariableEntry
[1].Guid
= &gEfiGlobalVariableGuid
;
1853 VariableEntry
[1].Name
= EFI_LANG_VARIABLE_NAME
;
1854 if (!CheckRemainingSpaceForConsistency (VARIABLE_ATTRIBUTE_NV_BS_RT
, &VariableEntry
[0], &VariableEntry
[1], NULL
)) {
1856 // No enough variable space to set both PlatformLang and Lang successfully.
1858 Status
= EFI_OUT_OF_RESOURCES
;
1861 // Successfully convert Lang to PlatformLang, and set the BestPlatformLang value into PlatformLang variable simultaneously.
1863 FindVariable (EFI_PLATFORM_LANG_VARIABLE_NAME
, &gEfiGlobalVariableGuid
, &Variable
, &mVariableModuleGlobal
->VariableGlobal
, FALSE
);
1865 Status
= UpdateVariable (EFI_PLATFORM_LANG_VARIABLE_NAME
, &gEfiGlobalVariableGuid
, BestPlatformLang
,
1866 AsciiStrSize (BestPlatformLang
), Attributes
, 0, 0, &Variable
, NULL
);
1869 DEBUG ((EFI_D_INFO
, "Variable Driver Auto Update Lang, Lang:%a, PlatformLang:%a Status: %r\n", BestLang
, BestPlatformLang
, Status
));
1874 if (SetLanguageCodes
) {
1876 // Continue to set PlatformLangCodes or LangCodes.
1885 Update the variable region with Variable information. If EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS is set,
1886 index of associated public key is needed.
1888 @param[in] VariableName Name of variable.
1889 @param[in] VendorGuid Guid of variable.
1890 @param[in] Data Variable data.
1891 @param[in] DataSize Size of data. 0 means delete.
1892 @param[in] Attributes Attributes of the variable.
1893 @param[in] KeyIndex Index of associated public key.
1894 @param[in] MonotonicCount Value of associated monotonic count.
1895 @param[in, out] CacheVariable The variable information which is used to keep track of variable usage.
1896 @param[in] TimeStamp Value of associated TimeStamp.
1898 @retval EFI_SUCCESS The update operation is success.
1899 @retval EFI_OUT_OF_RESOURCES Variable region is full, can not write other data into this region.
1904 IN CHAR16
*VariableName
,
1905 IN EFI_GUID
*VendorGuid
,
1908 IN UINT32 Attributes OPTIONAL
,
1909 IN UINT32 KeyIndex OPTIONAL
,
1910 IN UINT64 MonotonicCount OPTIONAL
,
1911 IN OUT VARIABLE_POINTER_TRACK
*CacheVariable
,
1912 IN EFI_TIME
*TimeStamp OPTIONAL
1916 VARIABLE_HEADER
*NextVariable
;
1919 UINTN NonVolatileVarableStoreSize
;
1920 UINTN VarNameOffset
;
1921 UINTN VarDataOffset
;
1925 EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL
*Fvb
;
1927 VARIABLE_POINTER_TRACK
*Variable
;
1928 VARIABLE_POINTER_TRACK NvVariable
;
1929 VARIABLE_STORE_HEADER
*VariableStoreHeader
;
1931 UINT8
*BufferForMerge
;
1932 UINTN MergedBufSize
;
1936 if (mVariableModuleGlobal
->FvbInstance
== NULL
) {
1938 // The FVB protocol is not installed, so the EFI_VARIABLE_WRITE_ARCH_PROTOCOL is not installed.
1940 if ((Attributes
& EFI_VARIABLE_NON_VOLATILE
) != 0) {
1942 // Trying to update NV variable prior to the installation of EFI_VARIABLE_WRITE_ARCH_PROTOCOL
1944 return EFI_NOT_AVAILABLE_YET
;
1945 } else if ((Attributes
& EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS
) != 0) {
1947 // Trying to update volatile authenticated variable prior to the installation of EFI_VARIABLE_WRITE_ARCH_PROTOCOL
1948 // The authenticated variable perhaps is not initialized, just return here.
1950 return EFI_NOT_AVAILABLE_YET
;
1954 if ((CacheVariable
->CurrPtr
== NULL
) || CacheVariable
->Volatile
) {
1955 Variable
= CacheVariable
;
1958 // Update/Delete existing NV variable.
1959 // CacheVariable points to the variable in the memory copy of Flash area
1960 // Now let Variable points to the same variable in Flash area.
1962 VariableStoreHeader
= (VARIABLE_STORE_HEADER
*) ((UINTN
) mVariableModuleGlobal
->VariableGlobal
.NonVolatileVariableBase
);
1963 Variable
= &NvVariable
;
1964 Variable
->StartPtr
= GetStartPointer (VariableStoreHeader
);
1965 Variable
->EndPtr
= GetEndPointer (VariableStoreHeader
);
1966 Variable
->CurrPtr
= (VARIABLE_HEADER
*)((UINTN
)Variable
->StartPtr
+ ((UINTN
)CacheVariable
->CurrPtr
- (UINTN
)CacheVariable
->StartPtr
));
1967 if (CacheVariable
->InDeletedTransitionPtr
!= NULL
) {
1968 Variable
->InDeletedTransitionPtr
= (VARIABLE_HEADER
*)((UINTN
)Variable
->StartPtr
+ ((UINTN
)CacheVariable
->InDeletedTransitionPtr
- (UINTN
)CacheVariable
->StartPtr
));
1970 Variable
->InDeletedTransitionPtr
= NULL
;
1972 Variable
->Volatile
= FALSE
;
1975 Fvb
= mVariableModuleGlobal
->FvbInstance
;
1978 // Tricky part: Use scratch data area at the end of volatile variable store
1979 // as a temporary storage.
1981 NextVariable
= GetEndPointer ((VARIABLE_STORE_HEADER
*) ((UINTN
) mVariableModuleGlobal
->VariableGlobal
.VolatileVariableBase
));
1982 ScratchSize
= MAX (PcdGet32 (PcdMaxVariableSize
), PcdGet32 (PcdMaxHardwareErrorVariableSize
));
1983 SetMem (NextVariable
, ScratchSize
, 0xff);
1986 if (Variable
->CurrPtr
!= NULL
) {
1988 // Update/Delete existing variable.
1992 // If AtRuntime and the variable is Volatile and Runtime Access,
1993 // the volatile is ReadOnly, and SetVariable should be aborted and
1994 // return EFI_WRITE_PROTECTED.
1996 if (Variable
->Volatile
) {
1997 Status
= EFI_WRITE_PROTECTED
;
2001 // Only variable that have NV attributes can be updated/deleted in Runtime.
2003 if ((Variable
->CurrPtr
->Attributes
& EFI_VARIABLE_NON_VOLATILE
) == 0) {
2004 Status
= EFI_INVALID_PARAMETER
;
2009 // Only variable that have RT attributes can be updated/deleted in Runtime.
2011 if ((Variable
->CurrPtr
->Attributes
& EFI_VARIABLE_RUNTIME_ACCESS
) == 0) {
2012 Status
= EFI_INVALID_PARAMETER
;
2018 // Setting a data variable with no access, or zero DataSize attributes
2019 // causes it to be deleted.
2020 // When the EFI_VARIABLE_APPEND_WRITE attribute is set, DataSize of zero will
2021 // not delete the variable.
2023 if ((((Attributes
& EFI_VARIABLE_APPEND_WRITE
) == 0) && (DataSize
== 0))|| ((Attributes
& (EFI_VARIABLE_RUNTIME_ACCESS
| EFI_VARIABLE_BOOTSERVICE_ACCESS
)) == 0)) {
2024 if (Variable
->InDeletedTransitionPtr
!= NULL
) {
2026 // Both ADDED and IN_DELETED_TRANSITION variable are present,
2027 // set IN_DELETED_TRANSITION one to DELETED state first.
2029 State
= Variable
->InDeletedTransitionPtr
->State
;
2030 State
&= VAR_DELETED
;
2031 Status
= UpdateVariableStore (
2032 &mVariableModuleGlobal
->VariableGlobal
,
2036 (UINTN
) &Variable
->InDeletedTransitionPtr
->State
,
2040 if (!EFI_ERROR (Status
)) {
2041 if (!Variable
->Volatile
) {
2042 ASSERT (CacheVariable
->InDeletedTransitionPtr
!= NULL
);
2043 CacheVariable
->InDeletedTransitionPtr
->State
= State
;
2050 State
= Variable
->CurrPtr
->State
;
2051 State
&= VAR_DELETED
;
2053 Status
= UpdateVariableStore (
2054 &mVariableModuleGlobal
->VariableGlobal
,
2058 (UINTN
) &Variable
->CurrPtr
->State
,
2062 if (!EFI_ERROR (Status
)) {
2063 UpdateVariableInfo (VariableName
, VendorGuid
, Variable
->Volatile
, FALSE
, FALSE
, TRUE
, FALSE
);
2064 if (!Variable
->Volatile
) {
2065 CacheVariable
->CurrPtr
->State
= State
;
2066 FlushHobVariableToFlash (VariableName
, VendorGuid
);
2072 // If the variable is marked valid, and the same data has been passed in,
2073 // then return to the caller immediately.
2075 if (DataSizeOfVariable (Variable
->CurrPtr
) == DataSize
&&
2076 (CompareMem (Data
, GetVariableDataPtr (Variable
->CurrPtr
), DataSize
) == 0) &&
2077 ((Attributes
& EFI_VARIABLE_APPEND_WRITE
) == 0) &&
2078 (TimeStamp
== NULL
)) {
2080 // Variable content unchanged and no need to update timestamp, just return.
2082 UpdateVariableInfo (VariableName
, VendorGuid
, Variable
->Volatile
, FALSE
, TRUE
, FALSE
, FALSE
);
2083 Status
= EFI_SUCCESS
;
2085 } else if ((Variable
->CurrPtr
->State
== VAR_ADDED
) ||
2086 (Variable
->CurrPtr
->State
== (VAR_ADDED
& VAR_IN_DELETED_TRANSITION
))) {
2089 // EFI_VARIABLE_APPEND_WRITE attribute only effects for existing variable
2091 if ((Attributes
& EFI_VARIABLE_APPEND_WRITE
) != 0) {
2093 // NOTE: From 0 to DataOffset of NextVariable is reserved for Variable Header and Name.
2094 // From DataOffset of NextVariable is to save the existing variable data.
2096 DataOffset
= sizeof (VARIABLE_HEADER
) + Variable
->CurrPtr
->NameSize
+ GET_PAD_SIZE (Variable
->CurrPtr
->NameSize
);
2097 BufferForMerge
= (UINT8
*) ((UINTN
) NextVariable
+ DataOffset
);
2098 CopyMem (BufferForMerge
, (UINT8
*) ((UINTN
) Variable
->CurrPtr
+ DataOffset
), Variable
->CurrPtr
->DataSize
);
2101 // Set Max Common Variable Data Size as default MaxDataSize
2103 MaxDataSize
= PcdGet32 (PcdMaxVariableSize
) - DataOffset
;
2105 if ((CompareGuid (VendorGuid
, &gEfiImageSecurityDatabaseGuid
) &&
2106 ((StrCmp (VariableName
, EFI_IMAGE_SECURITY_DATABASE
) == 0) || (StrCmp (VariableName
, EFI_IMAGE_SECURITY_DATABASE1
) == 0))) ||
2107 (CompareGuid (VendorGuid
, &gEfiGlobalVariableGuid
) && (StrCmp (VariableName
, EFI_KEY_EXCHANGE_KEY_NAME
) == 0))) {
2109 // For variables with formatted as EFI_SIGNATURE_LIST, the driver shall not perform an append of
2110 // EFI_SIGNATURE_DATA values that are already part of the existing variable value.
2112 Status
= AppendSignatureList (
2114 Variable
->CurrPtr
->DataSize
,
2115 MaxDataSize
- Variable
->CurrPtr
->DataSize
,
2120 if (Status
== EFI_BUFFER_TOO_SMALL
) {
2122 // Signature List is too long, Failed to Append.
2124 Status
= EFI_INVALID_PARAMETER
;
2128 if (MergedBufSize
== Variable
->CurrPtr
->DataSize
) {
2129 if ((TimeStamp
== NULL
) || CompareTimeStamp (TimeStamp
, &Variable
->CurrPtr
->TimeStamp
)) {
2131 // New EFI_SIGNATURE_DATA is not found and timestamp is not later
2132 // than current timestamp, return EFI_SUCCESS directly.
2134 UpdateVariableInfo (VariableName
, VendorGuid
, Variable
->Volatile
, FALSE
, TRUE
, FALSE
, FALSE
);
2135 Status
= EFI_SUCCESS
;
2141 // For other Variables, append the new data to the end of existing data.
2142 // Max Harware error record variable data size is different from common variable
2144 if ((Attributes
& EFI_VARIABLE_HARDWARE_ERROR_RECORD
) == EFI_VARIABLE_HARDWARE_ERROR_RECORD
) {
2145 MaxDataSize
= PcdGet32 (PcdMaxHardwareErrorVariableSize
) - DataOffset
;
2148 if (Variable
->CurrPtr
->DataSize
+ DataSize
> MaxDataSize
) {
2150 // Existing data size + new data size exceed maximum variable size limitation.
2152 Status
= EFI_INVALID_PARAMETER
;
2155 CopyMem ((UINT8
*) ((UINTN
) BufferForMerge
+ Variable
->CurrPtr
->DataSize
), Data
, DataSize
);
2156 MergedBufSize
= Variable
->CurrPtr
->DataSize
+ DataSize
;
2160 // BufferForMerge(from DataOffset of NextVariable) has included the merged existing and new data.
2162 Data
= BufferForMerge
;
2163 DataSize
= MergedBufSize
;
2168 // Mark the old variable as in delete transition.
2170 State
= Variable
->CurrPtr
->State
;
2171 State
&= VAR_IN_DELETED_TRANSITION
;
2173 Status
= UpdateVariableStore (
2174 &mVariableModuleGlobal
->VariableGlobal
,
2178 (UINTN
) &Variable
->CurrPtr
->State
,
2182 if (EFI_ERROR (Status
)) {
2185 if (!Variable
->Volatile
) {
2186 CacheVariable
->CurrPtr
->State
= State
;
2191 // Not found existing variable. Create a new variable.
2194 if ((DataSize
== 0) && ((Attributes
& EFI_VARIABLE_APPEND_WRITE
) != 0)) {
2195 Status
= EFI_SUCCESS
;
2200 // Make sure we are trying to create a new variable.
2201 // Setting a data variable with zero DataSize or no access attributes means to delete it.
2203 if (DataSize
== 0 || (Attributes
& (EFI_VARIABLE_RUNTIME_ACCESS
| EFI_VARIABLE_BOOTSERVICE_ACCESS
)) == 0) {
2204 Status
= EFI_NOT_FOUND
;
2209 // Only variable have NV|RT attribute can be created in Runtime.
2212 (((Attributes
& EFI_VARIABLE_RUNTIME_ACCESS
) == 0) || ((Attributes
& EFI_VARIABLE_NON_VOLATILE
) == 0))) {
2213 Status
= EFI_INVALID_PARAMETER
;
2219 // Function part - create a new variable and copy the data.
2220 // Both update a variable and create a variable will come here.
2222 NextVariable
->StartId
= VARIABLE_DATA
;
2224 // NextVariable->State = VAR_ADDED;
2226 NextVariable
->Reserved
= 0;
2227 NextVariable
->PubKeyIndex
= KeyIndex
;
2228 NextVariable
->MonotonicCount
= MonotonicCount
;
2229 ZeroMem (&NextVariable
->TimeStamp
, sizeof (EFI_TIME
));
2231 if (((Attributes
& EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS
) != 0) &&
2232 (TimeStamp
!= NULL
)) {
2233 if ((Attributes
& EFI_VARIABLE_APPEND_WRITE
) == 0) {
2234 CopyMem (&NextVariable
->TimeStamp
, TimeStamp
, sizeof (EFI_TIME
));
2237 // In the case when the EFI_VARIABLE_APPEND_WRITE attribute is set, only
2238 // when the new TimeStamp value is later than the current timestamp associated
2239 // with the variable, we need associate the new timestamp with the updated value.
2241 if (Variable
->CurrPtr
!= NULL
) {
2242 if (CompareTimeStamp (&Variable
->CurrPtr
->TimeStamp
, TimeStamp
)) {
2243 CopyMem (&NextVariable
->TimeStamp
, TimeStamp
, sizeof (EFI_TIME
));
2250 // The EFI_VARIABLE_APPEND_WRITE attribute will never be set in the returned
2251 // Attributes bitmask parameter of a GetVariable() call.
2253 NextVariable
->Attributes
= Attributes
& (~EFI_VARIABLE_APPEND_WRITE
);
2255 VarNameOffset
= sizeof (VARIABLE_HEADER
);
2256 VarNameSize
= StrSize (VariableName
);
2258 (UINT8
*) ((UINTN
) NextVariable
+ VarNameOffset
),
2262 VarDataOffset
= VarNameOffset
+ VarNameSize
+ GET_PAD_SIZE (VarNameSize
);
2265 // If DataReady is TRUE, it means the variable data has been saved into
2266 // NextVariable during EFI_VARIABLE_APPEND_WRITE operation preparation.
2270 (UINT8
*) ((UINTN
) NextVariable
+ VarDataOffset
),
2276 CopyMem (&NextVariable
->VendorGuid
, VendorGuid
, sizeof (EFI_GUID
));
2278 // There will be pad bytes after Data, the NextVariable->NameSize and
2279 // NextVariable->DataSize should not include pad size so that variable
2280 // service can get actual size in GetVariable.
2282 NextVariable
->NameSize
= (UINT32
)VarNameSize
;
2283 NextVariable
->DataSize
= (UINT32
)DataSize
;
2286 // The actual size of the variable that stores in storage should
2287 // include pad size.
2289 VarSize
= VarDataOffset
+ DataSize
+ GET_PAD_SIZE (DataSize
);
2290 if ((Attributes
& EFI_VARIABLE_NON_VOLATILE
) != 0) {
2292 // Create a nonvolatile variable.
2295 NonVolatileVarableStoreSize
= ((VARIABLE_STORE_HEADER
*)(UINTN
)(mVariableModuleGlobal
->VariableGlobal
.NonVolatileVariableBase
))->Size
;
2296 if ((((Attributes
& EFI_VARIABLE_HARDWARE_ERROR_RECORD
) != 0)
2297 && ((VarSize
+ mVariableModuleGlobal
->HwErrVariableTotalSize
) > PcdGet32 (PcdHwErrStorageSize
)))
2298 || (((Attributes
& EFI_VARIABLE_HARDWARE_ERROR_RECORD
) == 0)
2299 && ((VarSize
+ mVariableModuleGlobal
->CommonVariableTotalSize
) > NonVolatileVarableStoreSize
- sizeof (VARIABLE_STORE_HEADER
) - PcdGet32 (PcdHwErrStorageSize
)))) {
2301 Status
= EFI_OUT_OF_RESOURCES
;
2305 // Perform garbage collection & reclaim operation, and integrate the new variable at the same time.
2308 mVariableModuleGlobal
->VariableGlobal
.NonVolatileVariableBase
,
2309 &mVariableModuleGlobal
->NonVolatileLastVariableOffset
,
2313 HEADER_ALIGN (VarSize
),
2316 if (!EFI_ERROR (Status
)) {
2318 // The new variable has been integrated successfully during reclaiming.
2320 if (Variable
->CurrPtr
!= NULL
) {
2321 CacheVariable
->CurrPtr
= (VARIABLE_HEADER
*)((UINTN
) CacheVariable
->StartPtr
+ ((UINTN
) Variable
->CurrPtr
- (UINTN
) Variable
->StartPtr
));
2322 CacheVariable
->InDeletedTransitionPtr
= NULL
;
2324 UpdateVariableInfo (VariableName
, VendorGuid
, FALSE
, FALSE
, TRUE
, FALSE
, FALSE
);
2325 FlushHobVariableToFlash (VariableName
, VendorGuid
);
2331 // 1. Write variable header
2332 // 2. Set variable state to header valid
2333 // 3. Write variable data
2334 // 4. Set variable state to valid
2339 CacheOffset
= mVariableModuleGlobal
->NonVolatileLastVariableOffset
;
2340 Status
= UpdateVariableStore (
2341 &mVariableModuleGlobal
->VariableGlobal
,
2345 mVariableModuleGlobal
->NonVolatileLastVariableOffset
,
2346 sizeof (VARIABLE_HEADER
),
2347 (UINT8
*) NextVariable
2350 if (EFI_ERROR (Status
)) {
2357 NextVariable
->State
= VAR_HEADER_VALID_ONLY
;
2358 Status
= UpdateVariableStore (
2359 &mVariableModuleGlobal
->VariableGlobal
,
2363 mVariableModuleGlobal
->NonVolatileLastVariableOffset
+ OFFSET_OF (VARIABLE_HEADER
, State
),
2365 &NextVariable
->State
2368 if (EFI_ERROR (Status
)) {
2374 Status
= UpdateVariableStore (
2375 &mVariableModuleGlobal
->VariableGlobal
,
2379 mVariableModuleGlobal
->NonVolatileLastVariableOffset
+ sizeof (VARIABLE_HEADER
),
2380 (UINT32
) VarSize
- sizeof (VARIABLE_HEADER
),
2381 (UINT8
*) NextVariable
+ sizeof (VARIABLE_HEADER
)
2384 if (EFI_ERROR (Status
)) {
2390 NextVariable
->State
= VAR_ADDED
;
2391 Status
= UpdateVariableStore (
2392 &mVariableModuleGlobal
->VariableGlobal
,
2396 mVariableModuleGlobal
->NonVolatileLastVariableOffset
+ OFFSET_OF (VARIABLE_HEADER
, State
),
2398 &NextVariable
->State
2401 if (EFI_ERROR (Status
)) {
2405 mVariableModuleGlobal
->NonVolatileLastVariableOffset
+= HEADER_ALIGN (VarSize
);
2407 if ((Attributes
& EFI_VARIABLE_HARDWARE_ERROR_RECORD
) != 0) {
2408 mVariableModuleGlobal
->HwErrVariableTotalSize
+= HEADER_ALIGN (VarSize
);
2410 mVariableModuleGlobal
->CommonVariableTotalSize
+= HEADER_ALIGN (VarSize
);
2413 // update the memory copy of Flash region.
2415 CopyMem ((UINT8
*)mNvVariableCache
+ CacheOffset
, (UINT8
*)NextVariable
, VarSize
);
2418 // Create a volatile variable.
2422 if ((UINT32
) (VarSize
+ mVariableModuleGlobal
->VolatileLastVariableOffset
) >
2423 ((VARIABLE_STORE_HEADER
*) ((UINTN
) (mVariableModuleGlobal
->VariableGlobal
.VolatileVariableBase
)))->Size
) {
2425 // Perform garbage collection & reclaim operation, and integrate the new variable at the same time.
2428 mVariableModuleGlobal
->VariableGlobal
.VolatileVariableBase
,
2429 &mVariableModuleGlobal
->VolatileLastVariableOffset
,
2433 HEADER_ALIGN (VarSize
),
2436 if (!EFI_ERROR (Status
)) {
2438 // The new variable has been integrated successfully during reclaiming.
2440 if (Variable
->CurrPtr
!= NULL
) {
2441 CacheVariable
->CurrPtr
= (VARIABLE_HEADER
*)((UINTN
) CacheVariable
->StartPtr
+ ((UINTN
) Variable
->CurrPtr
- (UINTN
) Variable
->StartPtr
));
2442 CacheVariable
->InDeletedTransitionPtr
= NULL
;
2444 UpdateVariableInfo (VariableName
, VendorGuid
, TRUE
, FALSE
, TRUE
, FALSE
, FALSE
);
2449 NextVariable
->State
= VAR_ADDED
;
2450 Status
= UpdateVariableStore (
2451 &mVariableModuleGlobal
->VariableGlobal
,
2455 mVariableModuleGlobal
->VolatileLastVariableOffset
,
2457 (UINT8
*) NextVariable
2460 if (EFI_ERROR (Status
)) {
2464 mVariableModuleGlobal
->VolatileLastVariableOffset
+= HEADER_ALIGN (VarSize
);
2468 // Mark the old variable as deleted.
2470 if (!EFI_ERROR (Status
) && Variable
->CurrPtr
!= NULL
) {
2471 if (Variable
->InDeletedTransitionPtr
!= NULL
) {
2473 // Both ADDED and IN_DELETED_TRANSITION old variable are present,
2474 // set IN_DELETED_TRANSITION one to DELETED state first.
2476 State
= Variable
->InDeletedTransitionPtr
->State
;
2477 State
&= VAR_DELETED
;
2478 Status
= UpdateVariableStore (
2479 &mVariableModuleGlobal
->VariableGlobal
,
2483 (UINTN
) &Variable
->InDeletedTransitionPtr
->State
,
2487 if (!EFI_ERROR (Status
)) {
2488 if (!Variable
->Volatile
) {
2489 ASSERT (CacheVariable
->InDeletedTransitionPtr
!= NULL
);
2490 CacheVariable
->InDeletedTransitionPtr
->State
= State
;
2497 State
= Variable
->CurrPtr
->State
;
2498 State
&= VAR_DELETED
;
2500 Status
= UpdateVariableStore (
2501 &mVariableModuleGlobal
->VariableGlobal
,
2505 (UINTN
) &Variable
->CurrPtr
->State
,
2509 if (!EFI_ERROR (Status
) && !Variable
->Volatile
) {
2510 CacheVariable
->CurrPtr
->State
= State
;
2514 if (!EFI_ERROR (Status
)) {
2515 UpdateVariableInfo (VariableName
, VendorGuid
, Volatile
, FALSE
, TRUE
, FALSE
, FALSE
);
2517 FlushHobVariableToFlash (VariableName
, VendorGuid
);
2526 Check if a Unicode character is a hexadecimal character.
2528 This function checks if a Unicode character is a
2529 hexadecimal character. The valid hexadecimal character is
2530 L'0' to L'9', L'a' to L'f', or L'A' to L'F'.
2533 @param Char The character to check against.
2535 @retval TRUE If the Char is a hexadecmial character.
2536 @retval FALSE If the Char is not a hexadecmial character.
2541 IsHexaDecimalDigitCharacter (
2545 return (BOOLEAN
) ((Char
>= L
'0' && Char
<= L
'9') || (Char
>= L
'A' && Char
<= L
'F') || (Char
>= L
'a' && Char
<= L
'f'));
2550 This code checks if variable is hardware error record variable or not.
2552 According to UEFI spec, hardware error record variable should use the EFI_HARDWARE_ERROR_VARIABLE VendorGuid
2553 and have the L"HwErrRec####" name convention, #### is a printed hex value and no 0x or h is included in the hex value.
2555 @param VariableName Pointer to variable name.
2556 @param VendorGuid Variable Vendor Guid.
2558 @retval TRUE Variable is hardware error record variable.
2559 @retval FALSE Variable is not hardware error record variable.
2564 IsHwErrRecVariable (
2565 IN CHAR16
*VariableName
,
2566 IN EFI_GUID
*VendorGuid
2569 if (!CompareGuid (VendorGuid
, &gEfiHardwareErrorVariableGuid
) ||
2570 (StrLen (VariableName
) != StrLen (L
"HwErrRec####")) ||
2571 (StrnCmp(VariableName
, L
"HwErrRec", StrLen (L
"HwErrRec")) != 0) ||
2572 !IsHexaDecimalDigitCharacter (VariableName
[0x8]) ||
2573 !IsHexaDecimalDigitCharacter (VariableName
[0x9]) ||
2574 !IsHexaDecimalDigitCharacter (VariableName
[0xA]) ||
2575 !IsHexaDecimalDigitCharacter (VariableName
[0xB])) {
2583 This code checks if variable guid is global variable guid first.
2584 If yes, further check if variable name is in mGlobalVariableList or mGlobalVariableList2 and attributes matched.
2586 @param[in] VariableName Pointer to variable name.
2587 @param[in] VendorGuid Variable Vendor Guid.
2588 @param[in] Attributes Attributes of the variable.
2590 @retval EFI_SUCCESS Variable is not global variable, or Variable is global variable, variable name is in the lists and attributes matched.
2591 @retval EFI_INVALID_PARAMETER Variable is global variable, but variable name is not in the lists or attributes unmatched.
2596 CheckEfiGlobalVariable (
2597 IN CHAR16
*VariableName
,
2598 IN EFI_GUID
*VendorGuid
,
2599 IN UINT32 Attributes
2605 if (CompareGuid (VendorGuid
, &gEfiGlobalVariableGuid
)){
2607 // Try list 1, exactly match.
2609 for (Index
= 0; Index
< sizeof (mGlobalVariableList
)/sizeof (mGlobalVariableList
[0]); Index
++) {
2610 if ((StrCmp (mGlobalVariableList
[Index
].Name
, VariableName
) == 0) &&
2611 (Attributes
== 0 || (Attributes
& (~EFI_VARIABLE_APPEND_WRITE
)) == mGlobalVariableList
[Index
].Attributes
)) {
2619 NameLength
= StrLen (VariableName
) - 4;
2620 for (Index
= 0; Index
< sizeof (mGlobalVariableList2
)/sizeof (mGlobalVariableList2
[0]); Index
++) {
2621 if ((StrLen (VariableName
) == StrLen (mGlobalVariableList2
[Index
].Name
)) &&
2622 (StrnCmp (mGlobalVariableList2
[Index
].Name
, VariableName
, NameLength
) == 0) &&
2623 IsHexaDecimalDigitCharacter (VariableName
[NameLength
]) &&
2624 IsHexaDecimalDigitCharacter (VariableName
[NameLength
+ 1]) &&
2625 IsHexaDecimalDigitCharacter (VariableName
[NameLength
+ 2]) &&
2626 IsHexaDecimalDigitCharacter (VariableName
[NameLength
+ 3]) &&
2627 (Attributes
== 0 || (Attributes
& (~EFI_VARIABLE_APPEND_WRITE
)) == mGlobalVariableList2
[Index
].Attributes
)) {
2632 DEBUG ((EFI_D_INFO
, "[Variable]: set global variable with invalid variable name or attributes - %g:%s:%x\n", VendorGuid
, VariableName
, Attributes
));
2633 return EFI_INVALID_PARAMETER
;
2640 Mark a variable that will become read-only after leaving the DXE phase of execution.
2642 @param[in] This The VARIABLE_LOCK_PROTOCOL instance.
2643 @param[in] VariableName A pointer to the variable name that will be made read-only subsequently.
2644 @param[in] VendorGuid A pointer to the vendor GUID that will be made read-only subsequently.
2646 @retval EFI_SUCCESS The variable specified by the VariableName and the VendorGuid was marked
2647 as pending to be read-only.
2648 @retval EFI_INVALID_PARAMETER VariableName or VendorGuid is NULL.
2649 Or VariableName is an empty string.
2650 @retval EFI_ACCESS_DENIED EFI_END_OF_DXE_EVENT_GROUP_GUID or EFI_EVENT_GROUP_READY_TO_BOOT has
2651 already been signaled.
2652 @retval EFI_OUT_OF_RESOURCES There is not enough resource to hold the lock request.
2656 VariableLockRequestToLock (
2657 IN CONST EDKII_VARIABLE_LOCK_PROTOCOL
*This
,
2658 IN CHAR16
*VariableName
,
2659 IN EFI_GUID
*VendorGuid
2662 VARIABLE_ENTRY
*Entry
;
2664 if (VariableName
== NULL
|| VariableName
[0] == 0 || VendorGuid
== NULL
) {
2665 return EFI_INVALID_PARAMETER
;
2669 return EFI_ACCESS_DENIED
;
2672 Entry
= AllocateRuntimePool (sizeof (*Entry
) + StrSize (VariableName
));
2673 if (Entry
== NULL
) {
2674 return EFI_OUT_OF_RESOURCES
;
2677 DEBUG ((EFI_D_INFO
, "[Variable] Lock: %g:%s\n", VendorGuid
, VariableName
));
2679 AcquireLockOnlyAtBootTime(&mVariableModuleGlobal
->VariableGlobal
.VariableServicesLock
);
2681 Entry
->Name
= (CHAR16
*) (Entry
+ 1);
2682 StrCpy (Entry
->Name
, VariableName
);
2683 CopyGuid (&Entry
->Guid
, VendorGuid
);
2684 InsertTailList (&mLockedVariableList
, &Entry
->Link
);
2686 ReleaseLockOnlyAtBootTime (&mVariableModuleGlobal
->VariableGlobal
.VariableServicesLock
);
2692 This code checks if variable should be treated as read-only variable.
2694 @param[in] VariableName Name of the Variable.
2695 @param[in] VendorGuid GUID of the Variable.
2697 @retval TRUE This variable is read-only variable.
2698 @retval FALSE This variable is NOT read-only variable.
2702 IsReadOnlyVariable (
2703 IN CHAR16
*VariableName
,
2704 IN EFI_GUID
*VendorGuid
2707 if (CompareGuid (VendorGuid
, &gEfiGlobalVariableGuid
)) {
2708 if ((StrCmp (VariableName
, EFI_SETUP_MODE_NAME
) == 0) ||
2709 (StrCmp (VariableName
, EFI_SIGNATURE_SUPPORT_NAME
) == 0) ||
2710 (StrCmp (VariableName
, EFI_SECURE_BOOT_MODE_NAME
) == 0) ||
2711 (StrCmp (VariableName
, EFI_VENDOR_KEYS_VARIABLE_NAME
) == 0) ||
2712 (StrCmp (VariableName
, EFI_KEK_DEFAULT_VARIABLE_NAME
) == 0) ||
2713 (StrCmp (VariableName
, EFI_PK_DEFAULT_VARIABLE_NAME
) == 0) ||
2714 (StrCmp (VariableName
, EFI_DB_DEFAULT_VARIABLE_NAME
) == 0) ||
2715 (StrCmp (VariableName
, EFI_DBX_DEFAULT_VARIABLE_NAME
) == 0) ||
2716 (StrCmp (VariableName
, EFI_DBT_DEFAULT_VARIABLE_NAME
) == 0)) {
2726 This code finds variable in storage blocks (Volatile or Non-Volatile).
2728 Caution: This function may receive untrusted input.
2729 This function may be invoked in SMM mode, and datasize is external input.
2730 This function will do basic validation, before parse the data.
2732 @param VariableName Name of Variable to be found.
2733 @param VendorGuid Variable vendor GUID.
2734 @param Attributes Attribute value of the variable found.
2735 @param DataSize Size of Data found. If size is less than the
2736 data, this value contains the required size.
2737 @param Data Data pointer.
2739 @return EFI_INVALID_PARAMETER Invalid parameter.
2740 @return EFI_SUCCESS Find the specified variable.
2741 @return EFI_NOT_FOUND Not found.
2742 @return EFI_BUFFER_TO_SMALL DataSize is too small for the result.
2747 VariableServiceGetVariable (
2748 IN CHAR16
*VariableName
,
2749 IN EFI_GUID
*VendorGuid
,
2750 OUT UINT32
*Attributes OPTIONAL
,
2751 IN OUT UINTN
*DataSize
,
2756 VARIABLE_POINTER_TRACK Variable
;
2759 if (VariableName
== NULL
|| VendorGuid
== NULL
|| DataSize
== NULL
) {
2760 return EFI_INVALID_PARAMETER
;
2763 AcquireLockOnlyAtBootTime(&mVariableModuleGlobal
->VariableGlobal
.VariableServicesLock
);
2765 Status
= FindVariable (VariableName
, VendorGuid
, &Variable
, &mVariableModuleGlobal
->VariableGlobal
, FALSE
);
2766 if (Variable
.CurrPtr
== NULL
|| EFI_ERROR (Status
)) {
2773 VarDataSize
= DataSizeOfVariable (Variable
.CurrPtr
);
2774 ASSERT (VarDataSize
!= 0);
2776 if (*DataSize
>= VarDataSize
) {
2778 Status
= EFI_INVALID_PARAMETER
;
2782 CopyMem (Data
, GetVariableDataPtr (Variable
.CurrPtr
), VarDataSize
);
2783 if (Attributes
!= NULL
) {
2784 *Attributes
= Variable
.CurrPtr
->Attributes
;
2787 *DataSize
= VarDataSize
;
2788 UpdateVariableInfo (VariableName
, VendorGuid
, Variable
.Volatile
, TRUE
, FALSE
, FALSE
, FALSE
);
2790 Status
= EFI_SUCCESS
;
2793 *DataSize
= VarDataSize
;
2794 Status
= EFI_BUFFER_TOO_SMALL
;
2799 ReleaseLockOnlyAtBootTime (&mVariableModuleGlobal
->VariableGlobal
.VariableServicesLock
);
2807 This code Finds the Next available variable.
2809 Caution: This function may receive untrusted input.
2810 This function may be invoked in SMM mode. This function will do basic validation, before parse the data.
2812 @param VariableNameSize Size of the variable name.
2813 @param VariableName Pointer to variable name.
2814 @param VendorGuid Variable Vendor Guid.
2816 @return EFI_INVALID_PARAMETER Invalid parameter.
2817 @return EFI_SUCCESS Find the specified variable.
2818 @return EFI_NOT_FOUND Not found.
2819 @return EFI_BUFFER_TO_SMALL DataSize is too small for the result.
2824 VariableServiceGetNextVariableName (
2825 IN OUT UINTN
*VariableNameSize
,
2826 IN OUT CHAR16
*VariableName
,
2827 IN OUT EFI_GUID
*VendorGuid
2830 VARIABLE_STORE_TYPE Type
;
2831 VARIABLE_POINTER_TRACK Variable
;
2832 VARIABLE_POINTER_TRACK VariableInHob
;
2833 VARIABLE_POINTER_TRACK VariablePtrTrack
;
2836 VARIABLE_STORE_HEADER
*VariableStoreHeader
[VariableStoreTypeMax
];
2838 if (VariableNameSize
== NULL
|| VariableName
== NULL
|| VendorGuid
== NULL
) {
2839 return EFI_INVALID_PARAMETER
;
2842 AcquireLockOnlyAtBootTime(&mVariableModuleGlobal
->VariableGlobal
.VariableServicesLock
);
2844 Status
= FindVariable (VariableName
, VendorGuid
, &Variable
, &mVariableModuleGlobal
->VariableGlobal
, FALSE
);
2845 if (Variable
.CurrPtr
== NULL
|| EFI_ERROR (Status
)) {
2849 if (VariableName
[0] != 0) {
2851 // If variable name is not NULL, get next variable.
2853 Variable
.CurrPtr
= GetNextVariablePtr (Variable
.CurrPtr
);
2857 // 0: Volatile, 1: HOB, 2: Non-Volatile.
2858 // The index and attributes mapping must be kept in this order as FindVariable
2859 // makes use of this mapping to implement search algorithm.
2861 VariableStoreHeader
[VariableStoreTypeVolatile
] = (VARIABLE_STORE_HEADER
*) (UINTN
) mVariableModuleGlobal
->VariableGlobal
.VolatileVariableBase
;
2862 VariableStoreHeader
[VariableStoreTypeHob
] = (VARIABLE_STORE_HEADER
*) (UINTN
) mVariableModuleGlobal
->VariableGlobal
.HobVariableBase
;
2863 VariableStoreHeader
[VariableStoreTypeNv
] = mNvVariableCache
;
2867 // Switch from Volatile to HOB, to Non-Volatile.
2869 while ((Variable
.CurrPtr
>= Variable
.EndPtr
) ||
2870 (Variable
.CurrPtr
== NULL
) ||
2871 !IsValidVariableHeader (Variable
.CurrPtr
)
2874 // Find current storage index
2876 for (Type
= (VARIABLE_STORE_TYPE
) 0; Type
< VariableStoreTypeMax
; Type
++) {
2877 if ((VariableStoreHeader
[Type
] != NULL
) && (Variable
.StartPtr
== GetStartPointer (VariableStoreHeader
[Type
]))) {
2881 ASSERT (Type
< VariableStoreTypeMax
);
2883 // Switch to next storage
2885 for (Type
++; Type
< VariableStoreTypeMax
; Type
++) {
2886 if (VariableStoreHeader
[Type
] != NULL
) {
2891 // Capture the case that
2892 // 1. current storage is the last one, or
2893 // 2. no further storage
2895 if (Type
== VariableStoreTypeMax
) {
2896 Status
= EFI_NOT_FOUND
;
2899 Variable
.StartPtr
= GetStartPointer (VariableStoreHeader
[Type
]);
2900 Variable
.EndPtr
= GetEndPointer (VariableStoreHeader
[Type
]);
2901 Variable
.CurrPtr
= Variable
.StartPtr
;
2905 // Variable is found
2907 if (Variable
.CurrPtr
->State
== VAR_ADDED
|| Variable
.CurrPtr
->State
== (VAR_IN_DELETED_TRANSITION
& VAR_ADDED
)) {
2908 if (!AtRuntime () || ((Variable
.CurrPtr
->Attributes
& EFI_VARIABLE_RUNTIME_ACCESS
) != 0)) {
2909 if (Variable
.CurrPtr
->State
== (VAR_IN_DELETED_TRANSITION
& VAR_ADDED
)) {
2911 // If it is a IN_DELETED_TRANSITION variable,
2912 // and there is also a same ADDED one at the same time,
2915 VariablePtrTrack
.StartPtr
= Variable
.StartPtr
;
2916 VariablePtrTrack
.EndPtr
= Variable
.EndPtr
;
2917 Status
= FindVariableEx (
2918 GetVariableNamePtr (Variable
.CurrPtr
),
2919 &Variable
.CurrPtr
->VendorGuid
,
2923 if (!EFI_ERROR (Status
) && VariablePtrTrack
.CurrPtr
->State
== VAR_ADDED
) {
2924 Variable
.CurrPtr
= GetNextVariablePtr (Variable
.CurrPtr
);
2930 // Don't return NV variable when HOB overrides it
2932 if ((VariableStoreHeader
[VariableStoreTypeHob
] != NULL
) && (VariableStoreHeader
[VariableStoreTypeNv
] != NULL
) &&
2933 (Variable
.StartPtr
== GetStartPointer (VariableStoreHeader
[VariableStoreTypeNv
]))
2935 VariableInHob
.StartPtr
= GetStartPointer (VariableStoreHeader
[VariableStoreTypeHob
]);
2936 VariableInHob
.EndPtr
= GetEndPointer (VariableStoreHeader
[VariableStoreTypeHob
]);
2937 Status
= FindVariableEx (
2938 GetVariableNamePtr (Variable
.CurrPtr
),
2939 &Variable
.CurrPtr
->VendorGuid
,
2943 if (!EFI_ERROR (Status
)) {
2944 Variable
.CurrPtr
= GetNextVariablePtr (Variable
.CurrPtr
);
2949 VarNameSize
= NameSizeOfVariable (Variable
.CurrPtr
);
2950 ASSERT (VarNameSize
!= 0);
2952 if (VarNameSize
<= *VariableNameSize
) {
2953 CopyMem (VariableName
, GetVariableNamePtr (Variable
.CurrPtr
), VarNameSize
);
2954 CopyMem (VendorGuid
, &Variable
.CurrPtr
->VendorGuid
, sizeof (EFI_GUID
));
2955 Status
= EFI_SUCCESS
;
2957 Status
= EFI_BUFFER_TOO_SMALL
;
2960 *VariableNameSize
= VarNameSize
;
2965 Variable
.CurrPtr
= GetNextVariablePtr (Variable
.CurrPtr
);
2969 ReleaseLockOnlyAtBootTime (&mVariableModuleGlobal
->VariableGlobal
.VariableServicesLock
);
2975 This code sets variable in storage blocks (Volatile or Non-Volatile).
2977 Caution: This function may receive untrusted input.
2978 This function may be invoked in SMM mode, and datasize and data are external input.
2979 This function will do basic validation, before parse the data.
2980 This function will parse the authentication carefully to avoid security issues, like
2981 buffer overflow, integer overflow.
2982 This function will check attribute carefully to avoid authentication bypass.
2984 @param VariableName Name of Variable to be found.
2985 @param VendorGuid Variable vendor GUID.
2986 @param Attributes Attribute value of the variable found
2987 @param DataSize Size of Data found. If size is less than the
2988 data, this value contains the required size.
2989 @param Data Data pointer.
2991 @return EFI_INVALID_PARAMETER Invalid parameter.
2992 @return EFI_SUCCESS Set successfully.
2993 @return EFI_OUT_OF_RESOURCES Resource not enough to set variable.
2994 @return EFI_NOT_FOUND Not found.
2995 @return EFI_WRITE_PROTECTED Variable is read-only.
3000 VariableServiceSetVariable (
3001 IN CHAR16
*VariableName
,
3002 IN EFI_GUID
*VendorGuid
,
3003 IN UINT32 Attributes
,
3008 VARIABLE_POINTER_TRACK Variable
;
3010 VARIABLE_HEADER
*NextVariable
;
3011 EFI_PHYSICAL_ADDRESS Point
;
3014 VARIABLE_ENTRY
*Entry
;
3017 // Check input parameters.
3019 if (VariableName
== NULL
|| VariableName
[0] == 0 || VendorGuid
== NULL
) {
3020 return EFI_INVALID_PARAMETER
;
3023 if (IsReadOnlyVariable (VariableName
, VendorGuid
)) {
3024 return EFI_WRITE_PROTECTED
;
3027 if (DataSize
!= 0 && Data
== NULL
) {
3028 return EFI_INVALID_PARAMETER
;
3032 // Check for reserverd bit in variable attribute.
3034 if ((Attributes
& (~EFI_VARIABLE_ATTRIBUTES_MASK
)) != 0) {
3035 return EFI_INVALID_PARAMETER
;
3039 // Make sure if runtime bit is set, boot service bit is set also.
3041 if ((Attributes
& (EFI_VARIABLE_RUNTIME_ACCESS
| EFI_VARIABLE_BOOTSERVICE_ACCESS
)) == EFI_VARIABLE_RUNTIME_ACCESS
) {
3042 return EFI_INVALID_PARAMETER
;
3046 // EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS and EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS attribute
3047 // cannot be set both.
3049 if (((Attributes
& EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS
) == EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS
)
3050 && ((Attributes
& EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS
) == EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS
)) {
3051 return EFI_INVALID_PARAMETER
;
3054 if ((Attributes
& EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS
) == EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS
) {