]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Variable/RuntimeDxe/Variable.c
MdeModulePkg: Refine description a little for PcdEmuVariableNvStoreReserved
[mirror_edk2.git] / MdeModulePkg / Universal / Variable / RuntimeDxe / Variable.c
CommitLineData
052ad7e1 1/** @file\r
fa0737a8 2 The common variable operation routines shared by DXE_RUNTIME variable\r
8a2d4996 3 module and DXE_SMM variable module.\r
fa0737a8 4\r
18a7dbbc
SZ
5 Caution: This module requires additional review when modified.\r
6 This driver will have external input - variable data. They may be input in SMM mode.\r
7 This external input must be validated carefully to avoid security issue like\r
8 buffer overflow, integer overflow.\r
9\r
10 VariableServiceGetNextVariableName () and VariableServiceQueryVariableInfo() are external API.\r
11 They need check input parameter.\r
12\r
13 VariableServiceGetVariable() and VariableServiceSetVariable() are external API\r
14 to receive datasize and data buffer. The size should be checked carefully.\r
15\r
fa0737a8
SZ
16 VariableServiceSetVariable() should also check authenticate data to avoid buffer overflow,\r
17 integer overflow. It should also check attribute to avoid authentication bypass.\r
18\r
874c8434 19Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>\r
d741d141 20(C) Copyright 2015-2018 Hewlett Packard Enterprise Development LP<BR>\r
fa0737a8
SZ
21This program and the accompanying materials\r
22are licensed and made available under the terms and conditions of the BSD License\r
23which accompanies this distribution. The full text of the license may be found at\r
24http://opensource.org/licenses/bsd-license.php\r
504214c4 25\r
fa0737a8
SZ
26THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
27WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
8d3a5c82 28\r
052ad7e1 29**/\r
8d3a5c82 30\r
8d3a5c82 31#include "Variable.h"\r
33a5a666 32\r
7800593d 33VARIABLE_MODULE_GLOBAL *mVariableModuleGlobal;\r
8d3a5c82 34\r
7c80e839 35///\r
8a2d4996 36/// Define a memory cache that improves the search performance for a variable.\r
7c80e839 37///\r
ff843847 38VARIABLE_STORE_HEADER *mNvVariableCache = NULL;\r
aa79b0b3 39\r
9b18845a
DL
40///\r
41/// Memory cache of Fv Header.\r
42///\r
43EFI_FIRMWARE_VOLUME_HEADER *mNvFvHeaderCache = NULL;\r
44\r
8a2d4996 45///\r
46/// The memory entry used for variable statistics data.\r
47///\r
ff843847
RN
48VARIABLE_INFO_ENTRY *gVariableInfo = NULL;\r
49\r
ff843847
RN
50///\r
51/// The flag to indicate whether the platform has left the DXE phase of execution.\r
52///\r
53BOOLEAN mEndOfDxe = FALSE;\r
54\r
55///\r
8021f4c7
SZ
56/// It indicates the var check request source.\r
57/// In the implementation, DXE is regarded as untrusted, and SMM is trusted.\r
ff843847 58///\r
8021f4c7 59VAR_CHECK_REQUEST_SOURCE mRequestSource = VarCheckFromUntrusted;\r
8d3a5c82 60\r
00ab76e0
SZ
61//\r
62// It will record the current boot error flag before EndOfDxe.\r
63//\r
64VAR_ERROR_FLAG mCurrentBootVarErrFlag = VAR_ERROR_FLAG_NO_ERROR;\r
33a5a666 65\r
fa0737a8
SZ
66VARIABLE_ENTRY_PROPERTY mVariableEntryProperty[] = {\r
67 {\r
68 &gEdkiiVarErrorFlagGuid,\r
69 VAR_ERROR_FLAG_NAME,\r
70 {\r
71 VAR_CHECK_VARIABLE_PROPERTY_REVISION,\r
72 VAR_CHECK_VARIABLE_PROPERTY_READ_ONLY,\r
73 VARIABLE_ATTRIBUTE_NV_BS_RT,\r
74 sizeof (VAR_ERROR_FLAG),\r
75 sizeof (VAR_ERROR_FLAG)\r
76 }\r
77 },\r
78};\r
79\r
8021f4c7 80AUTH_VAR_LIB_CONTEXT_IN mAuthContextIn = {\r
fa0737a8 81 AUTH_VAR_LIB_CONTEXT_IN_STRUCT_VERSION,\r
dbd030bb
SZ
82 //\r
83 // StructSize, TO BE FILLED\r
84 //\r
85 0,\r
fa0737a8
SZ
86 //\r
87 // MaxAuthVariableSize, TO BE FILLED\r
88 //\r
89 0,\r
90 VariableExLibFindVariable,\r
91 VariableExLibFindNextVariable,\r
92 VariableExLibUpdateVariable,\r
93 VariableExLibGetScratchBuffer,\r
94 VariableExLibCheckRemainingSpaceForConsistency,\r
95 VariableExLibAtRuntime,\r
96};\r
97\r
8021f4c7 98AUTH_VAR_LIB_CONTEXT_OUT mAuthContextOut;\r
fa0737a8 99\r
fa0737a8
SZ
100/**\r
101 Routine used to track statistical information about variable usage.\r
052ad7e1 102 The data is stored in the EFI system table so it can be accessed later.\r
fa0737a8 103 VariableInfo.efi can dump out the table. Only Boot Services variable\r
052ad7e1 104 accesses are tracked by this code. The PcdVariableCollectStatistics\r
fa0737a8 105 build flag controls if this feature is enabled.\r
052ad7e1 106\r
fa0737a8 107 A read that hits in the cache will have Read and Cache true for\r
052ad7e1
A
108 the transaction. Data is allocated by this routine, but never\r
109 freed.\r
110\r
8a2d4996 111 @param[in] VariableName Name of the Variable to track.\r
112 @param[in] VendorGuid Guid of the Variable to track.\r
113 @param[in] Volatile TRUE if volatile FALSE if non-volatile.\r
114 @param[in] Read TRUE if GetVariable() was called.\r
115 @param[in] Write TRUE if SetVariable() was called.\r
116 @param[in] Delete TRUE if deleted via SetVariable().\r
052ad7e1
A
117 @param[in] Cache TRUE for a cache hit.\r
118\r
119**/\r
33a5a666
A
120VOID\r
121UpdateVariableInfo (\r
122 IN CHAR16 *VariableName,\r
123 IN EFI_GUID *VendorGuid,\r
124 IN BOOLEAN Volatile,\r
125 IN BOOLEAN Read,\r
126 IN BOOLEAN Write,\r
127 IN BOOLEAN Delete,\r
128 IN BOOLEAN Cache\r
129 )\r
130{\r
131 VARIABLE_INFO_ENTRY *Entry;\r
132\r
133 if (FeaturePcdGet (PcdVariableCollectStatistics)) {\r
134\r
8a2d4996 135 if (AtRuntime ()) {\r
136 // Don't collect statistics at runtime.\r
33a5a666
A
137 return;\r
138 }\r
139\r
140 if (gVariableInfo == NULL) {\r
052ad7e1 141 //\r
8a2d4996 142 // On the first call allocate a entry and place a pointer to it in\r
143 // the EFI System Table.\r
052ad7e1 144 //\r
33a5a666 145 gVariableInfo = AllocateZeroPool (sizeof (VARIABLE_INFO_ENTRY));\r
052ad7e1
A
146 ASSERT (gVariableInfo != NULL);\r
147\r
33a5a666 148 CopyGuid (&gVariableInfo->VendorGuid, VendorGuid);\r
6e1e5405 149 gVariableInfo->Name = AllocateZeroPool (StrSize (VariableName));\r
e6c4ef13 150 ASSERT (gVariableInfo->Name != NULL);\r
568a5119 151 StrCpyS (gVariableInfo->Name, StrSize(VariableName)/sizeof(CHAR16), VariableName);\r
33a5a666 152 gVariableInfo->Volatile = Volatile;\r
33a5a666
A
153 }\r
154\r
fa0737a8 155\r
33a5a666
A
156 for (Entry = gVariableInfo; Entry != NULL; Entry = Entry->Next) {\r
157 if (CompareGuid (VendorGuid, &Entry->VendorGuid)) {\r
158 if (StrCmp (VariableName, Entry->Name) == 0) {\r
159 if (Read) {\r
160 Entry->ReadCount++;\r
161 }\r
162 if (Write) {\r
163 Entry->WriteCount++;\r
164 }\r
165 if (Delete) {\r
166 Entry->DeleteCount++;\r
167 }\r
168 if (Cache) {\r
169 Entry->CacheCount++;\r
170 }\r
171\r
172 return;\r
173 }\r
174 }\r
175\r
176 if (Entry->Next == NULL) {\r
052ad7e1
A
177 //\r
178 // If the entry is not in the table add it.\r
8a2d4996 179 // Next iteration of the loop will fill in the data.\r
052ad7e1 180 //\r
33a5a666 181 Entry->Next = AllocateZeroPool (sizeof (VARIABLE_INFO_ENTRY));\r
052ad7e1 182 ASSERT (Entry->Next != NULL);\r
33a5a666
A
183\r
184 CopyGuid (&Entry->Next->VendorGuid, VendorGuid);\r
6e1e5405 185 Entry->Next->Name = AllocateZeroPool (StrSize (VariableName));\r
e6c4ef13 186 ASSERT (Entry->Next->Name != NULL);\r
568a5119 187 StrCpyS (Entry->Next->Name, StrSize(VariableName)/sizeof(CHAR16), VariableName);\r
33a5a666
A
188 Entry->Next->Volatile = Volatile;\r
189 }\r
190\r
191 }\r
192 }\r
193}\r
194\r
195\r
7c80e839 196/**\r
8d3a5c82 197\r
198 This code checks if variable header is valid or not.\r
199\r
6ebffb67
SZ
200 @param Variable Pointer to the Variable Header.\r
201 @param VariableStoreEnd Pointer to the Variable Store End.\r
8d3a5c82 202\r
6ebffb67
SZ
203 @retval TRUE Variable header is valid.\r
204 @retval FALSE Variable header is not valid.\r
8d3a5c82 205\r
7c80e839 206**/\r
207BOOLEAN\r
208IsValidVariableHeader (\r
6ebffb67
SZ
209 IN VARIABLE_HEADER *Variable,\r
210 IN VARIABLE_HEADER *VariableStoreEnd\r
7c80e839 211 )\r
8d3a5c82 212{\r
6ebffb67
SZ
213 if ((Variable == NULL) || (Variable >= VariableStoreEnd) || (Variable->StartId != VARIABLE_DATA)) {\r
214 //\r
215 // Variable is NULL or has reached the end of variable store,\r
216 // or the StartId is not correct.\r
217 //\r
8d3a5c82 218 return FALSE;\r
219 }\r
220\r
221 return TRUE;\r
222}\r
223\r
052ad7e1 224\r
7c80e839 225/**\r
226\r
227 This function writes data to the FWH at the correct LBA even if the LBAs\r
228 are fragmented.\r
229\r
8a2d4996 230 @param Global Pointer to VARAIBLE_GLOBAL structure.\r
231 @param Volatile Point out the Variable is Volatile or Non-Volatile.\r
232 @param SetByIndex TRUE if target pointer is given as index.\r
233 FALSE if target pointer is absolute.\r
234 @param Fvb Pointer to the writable FVB protocol.\r
7c80e839 235 @param DataPtrIndex Pointer to the Data from the end of VARIABLE_STORE_HEADER\r
8a2d4996 236 structure.\r
237 @param DataSize Size of data to be written.\r
238 @param Buffer Pointer to the buffer from which data is written.\r
7c80e839 239\r
8a2d4996 240 @retval EFI_INVALID_PARAMETER Parameters not valid.\r
989f7a2c 241 @retval EFI_UNSUPPORTED Fvb is a NULL for Non-Volatile variable update.\r
242 @retval EFI_OUT_OF_RESOURCES The remaining size is not enough.\r
8a2d4996 243 @retval EFI_SUCCESS Variable store successfully updated.\r
7c80e839 244\r
245**/\r
8d3a5c82 246EFI_STATUS\r
8d3a5c82 247UpdateVariableStore (\r
8a9e0b72 248 IN VARIABLE_GLOBAL *Global,\r
249 IN BOOLEAN Volatile,\r
250 IN BOOLEAN SetByIndex,\r
251 IN EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *Fvb,\r
252 IN UINTN DataPtrIndex,\r
253 IN UINT32 DataSize,\r
254 IN UINT8 *Buffer\r
8d3a5c82 255 )\r
8d3a5c82 256{\r
257 EFI_FV_BLOCK_MAP_ENTRY *PtrBlockMapEntry;\r
258 UINTN BlockIndex2;\r
259 UINTN LinearOffset;\r
260 UINTN CurrWriteSize;\r
261 UINTN CurrWritePtr;\r
262 UINT8 *CurrBuffer;\r
263 EFI_LBA LbaNumber;\r
264 UINTN Size;\r
8d3a5c82 265 VARIABLE_STORE_HEADER *VolatileBase;\r
266 EFI_PHYSICAL_ADDRESS FvVolHdr;\r
267 EFI_PHYSICAL_ADDRESS DataPtr;\r
268 EFI_STATUS Status;\r
269\r
874c8434 270 FvVolHdr = 0;\r
8d3a5c82 271 DataPtr = DataPtrIndex;\r
272\r
273 //\r
8a2d4996 274 // Check if the Data is Volatile.\r
8d3a5c82 275 //\r
276 if (!Volatile) {\r
fa0737a8 277 if (Fvb == NULL) {\r
989f7a2c 278 return EFI_UNSUPPORTED;\r
fa0737a8 279 }\r
8a9e0b72 280 Status = Fvb->GetPhysicalAddress(Fvb, &FvVolHdr);\r
281 ASSERT_EFI_ERROR (Status);\r
282\r
8d3a5c82 283 //\r
284 // Data Pointer should point to the actual Address where data is to be\r
8a2d4996 285 // written.\r
8d3a5c82 286 //\r
287 if (SetByIndex) {\r
052ad7e1 288 DataPtr += mVariableModuleGlobal->VariableGlobal.NonVolatileVariableBase;\r
8d3a5c82 289 }\r
290\r
874c8434 291 if ((DataPtr + DataSize) > (FvVolHdr + mNvFvHeaderCache->FvLength)) {\r
989f7a2c 292 return EFI_OUT_OF_RESOURCES;\r
8d3a5c82 293 }\r
294 } else {\r
295 //\r
296 // Data Pointer should point to the actual Address where data is to be\r
8a2d4996 297 // written.\r
8d3a5c82 298 //\r
052ad7e1 299 VolatileBase = (VARIABLE_STORE_HEADER *) ((UINTN) mVariableModuleGlobal->VariableGlobal.VolatileVariableBase);\r
8d3a5c82 300 if (SetByIndex) {\r
052ad7e1 301 DataPtr += mVariableModuleGlobal->VariableGlobal.VolatileVariableBase;\r
8d3a5c82 302 }\r
303\r
602cd0b6 304 if ((DataPtr + DataSize) > ((UINTN) VolatileBase + VolatileBase->Size)) {\r
989f7a2c 305 return EFI_OUT_OF_RESOURCES;\r
8d3a5c82 306 }\r
fa0737a8 307\r
c6492839 308 //\r
309 // If Volatile Variable just do a simple mem copy.\r
fa0737a8 310 //\r
c6492839 311 CopyMem ((UINT8 *)(UINTN)DataPtr, Buffer, DataSize);\r
8d3a5c82 312 return EFI_SUCCESS;\r
313 }\r
fa0737a8 314\r
8d3a5c82 315 //\r
8a2d4996 316 // If we are here we are dealing with Non-Volatile Variables.\r
8d3a5c82 317 //\r
874c8434 318 LinearOffset = (UINTN) FvVolHdr;\r
8d3a5c82 319 CurrWritePtr = (UINTN) DataPtr;\r
320 CurrWriteSize = DataSize;\r
321 CurrBuffer = Buffer;\r
322 LbaNumber = 0;\r
323\r
324 if (CurrWritePtr < LinearOffset) {\r
325 return EFI_INVALID_PARAMETER;\r
326 }\r
327\r
9b18845a 328 for (PtrBlockMapEntry = mNvFvHeaderCache->BlockMap; PtrBlockMapEntry->NumBlocks != 0; PtrBlockMapEntry++) {\r
8d3a5c82 329 for (BlockIndex2 = 0; BlockIndex2 < PtrBlockMapEntry->NumBlocks; BlockIndex2++) {\r
330 //\r
331 // Check to see if the Variable Writes are spanning through multiple\r
332 // blocks.\r
333 //\r
334 if ((CurrWritePtr >= LinearOffset) && (CurrWritePtr < LinearOffset + PtrBlockMapEntry->Length)) {\r
335 if ((CurrWritePtr + CurrWriteSize) <= (LinearOffset + PtrBlockMapEntry->Length)) {\r
8a9e0b72 336 Status = Fvb->Write (\r
337 Fvb,\r
8d3a5c82 338 LbaNumber,\r
339 (UINTN) (CurrWritePtr - LinearOffset),\r
340 &CurrWriteSize,\r
341 CurrBuffer\r
342 );\r
8a9e0b72 343 return Status;\r
8d3a5c82 344 } else {\r
345 Size = (UINT32) (LinearOffset + PtrBlockMapEntry->Length - CurrWritePtr);\r
8a9e0b72 346 Status = Fvb->Write (\r
347 Fvb,\r
8d3a5c82 348 LbaNumber,\r
349 (UINTN) (CurrWritePtr - LinearOffset),\r
350 &Size,\r
351 CurrBuffer\r
352 );\r
353 if (EFI_ERROR (Status)) {\r
354 return Status;\r
355 }\r
356\r
357 CurrWritePtr = LinearOffset + PtrBlockMapEntry->Length;\r
358 CurrBuffer = CurrBuffer + Size;\r
359 CurrWriteSize = CurrWriteSize - Size;\r
360 }\r
361 }\r
362\r
363 LinearOffset += PtrBlockMapEntry->Length;\r
364 LbaNumber++;\r
365 }\r
366 }\r
367\r
368 return EFI_SUCCESS;\r
369}\r
370\r
052ad7e1 371\r
7c80e839 372/**\r
8d3a5c82 373\r
374 This code gets the current status of Variable Store.\r
375\r
7c80e839 376 @param VarStoreHeader Pointer to the Variable Store Header.\r
8d3a5c82 377\r
8a2d4996 378 @retval EfiRaw Variable store status is raw.\r
379 @retval EfiValid Variable store status is valid.\r
380 @retval EfiInvalid Variable store status is invalid.\r
8d3a5c82 381\r
7c80e839 382**/\r
383VARIABLE_STORE_STATUS\r
384GetVariableStoreStatus (\r
385 IN VARIABLE_STORE_HEADER *VarStoreHeader\r
386 )\r
8d3a5c82 387{\r
fa0737a8
SZ
388 if ((CompareGuid (&VarStoreHeader->Signature, &gEfiAuthenticatedVariableGuid) ||\r
389 CompareGuid (&VarStoreHeader->Signature, &gEfiVariableGuid)) &&\r
8d3a5c82 390 VarStoreHeader->Format == VARIABLE_STORE_FORMATTED &&\r
391 VarStoreHeader->State == VARIABLE_STORE_HEALTHY\r
392 ) {\r
393\r
394 return EfiValid;\r
3709c4cd 395 } else if (((UINT32 *)(&VarStoreHeader->Signature))[0] == 0xffffffff &&\r
396 ((UINT32 *)(&VarStoreHeader->Signature))[1] == 0xffffffff &&\r
397 ((UINT32 *)(&VarStoreHeader->Signature))[2] == 0xffffffff &&\r
398 ((UINT32 *)(&VarStoreHeader->Signature))[3] == 0xffffffff &&\r
399 VarStoreHeader->Size == 0xffffffff &&\r
400 VarStoreHeader->Format == 0xff &&\r
401 VarStoreHeader->State == 0xff\r
8d3a5c82 402 ) {\r
403\r
404 return EfiRaw;\r
405 } else {\r
406 return EfiInvalid;\r
407 }\r
408}\r
409\r
fa0737a8
SZ
410/**\r
411 This code gets the size of variable header.\r
412\r
413 @return Size of variable header in bytes in type UINTN.\r
414\r
415**/\r
416UINTN\r
417GetVariableHeaderSize (\r
418 VOID\r
419 )\r
420{\r
421 UINTN Value;\r
422\r
423 if (mVariableModuleGlobal->VariableGlobal.AuthFormat) {\r
424 Value = sizeof (AUTHENTICATED_VARIABLE_HEADER);\r
425 } else {\r
426 Value = sizeof (VARIABLE_HEADER);\r
427 }\r
428\r
429 return Value;\r
430}\r
130e2569 431\r
7c80e839 432/**\r
130e2569 433\r
434 This code gets the size of name of variable.\r
435\r
8a2d4996 436 @param Variable Pointer to the Variable Header.\r
130e2569 437\r
8a2d4996 438 @return UINTN Size of variable in bytes.\r
130e2569 439\r
7c80e839 440**/\r
441UINTN\r
442NameSizeOfVariable (\r
443 IN VARIABLE_HEADER *Variable\r
444 )\r
130e2569 445{\r
fa0737a8
SZ
446 AUTHENTICATED_VARIABLE_HEADER *AuthVariable;\r
447\r
448 AuthVariable = (AUTHENTICATED_VARIABLE_HEADER *) Variable;\r
449 if (mVariableModuleGlobal->VariableGlobal.AuthFormat) {\r
450 if (AuthVariable->State == (UINT8) (-1) ||\r
451 AuthVariable->DataSize == (UINT32) (-1) ||\r
452 AuthVariable->NameSize == (UINT32) (-1) ||\r
453 AuthVariable->Attributes == (UINT32) (-1)) {\r
454 return 0;\r
455 }\r
456 return (UINTN) AuthVariable->NameSize;\r
457 } else {\r
458 if (Variable->State == (UINT8) (-1) ||\r
459 Variable->DataSize == (UINT32) (-1) ||\r
460 Variable->NameSize == (UINT32) (-1) ||\r
461 Variable->Attributes == (UINT32) (-1)) {\r
462 return 0;\r
463 }\r
464 return (UINTN) Variable->NameSize;\r
465 }\r
466}\r
467\r
468/**\r
469 This code sets the size of name of variable.\r
470\r
471 @param[in] Variable Pointer to the Variable Header.\r
472 @param[in] NameSize Name size to set.\r
473\r
474**/\r
475VOID\r
476SetNameSizeOfVariable (\r
477 IN VARIABLE_HEADER *Variable,\r
478 IN UINTN NameSize\r
479 )\r
480{\r
481 AUTHENTICATED_VARIABLE_HEADER *AuthVariable;\r
482\r
483 AuthVariable = (AUTHENTICATED_VARIABLE_HEADER *) Variable;\r
484 if (mVariableModuleGlobal->VariableGlobal.AuthFormat) {\r
485 AuthVariable->NameSize = (UINT32) NameSize;\r
486 } else {\r
487 Variable->NameSize = (UINT32) NameSize;\r
130e2569 488 }\r
130e2569 489}\r
490\r
7c80e839 491/**\r
130e2569 492\r
7c80e839 493 This code gets the size of variable data.\r
130e2569 494\r
8a2d4996 495 @param Variable Pointer to the Variable Header.\r
130e2569 496\r
8a2d4996 497 @return Size of variable in bytes.\r
130e2569 498\r
7c80e839 499**/\r
500UINTN\r
501DataSizeOfVariable (\r
502 IN VARIABLE_HEADER *Variable\r
503 )\r
130e2569 504{\r
fa0737a8
SZ
505 AUTHENTICATED_VARIABLE_HEADER *AuthVariable;\r
506\r
507 AuthVariable = (AUTHENTICATED_VARIABLE_HEADER *) Variable;\r
508 if (mVariableModuleGlobal->VariableGlobal.AuthFormat) {\r
509 if (AuthVariable->State == (UINT8) (-1) ||\r
510 AuthVariable->DataSize == (UINT32) (-1) ||\r
511 AuthVariable->NameSize == (UINT32) (-1) ||\r
512 AuthVariable->Attributes == (UINT32) (-1)) {\r
513 return 0;\r
514 }\r
515 return (UINTN) AuthVariable->DataSize;\r
516 } else {\r
517 if (Variable->State == (UINT8) (-1) ||\r
518 Variable->DataSize == (UINT32) (-1) ||\r
519 Variable->NameSize == (UINT32) (-1) ||\r
520 Variable->Attributes == (UINT32) (-1)) {\r
521 return 0;\r
522 }\r
523 return (UINTN) Variable->DataSize;\r
524 }\r
525}\r
526\r
527/**\r
528 This code sets the size of variable data.\r
529\r
530 @param[in] Variable Pointer to the Variable Header.\r
531 @param[in] DataSize Data size to set.\r
532\r
533**/\r
534VOID\r
535SetDataSizeOfVariable (\r
536 IN VARIABLE_HEADER *Variable,\r
537 IN UINTN DataSize\r
538 )\r
539{\r
540 AUTHENTICATED_VARIABLE_HEADER *AuthVariable;\r
541\r
542 AuthVariable = (AUTHENTICATED_VARIABLE_HEADER *) Variable;\r
543 if (mVariableModuleGlobal->VariableGlobal.AuthFormat) {\r
544 AuthVariable->DataSize = (UINT32) DataSize;\r
545 } else {\r
546 Variable->DataSize = (UINT32) DataSize;\r
130e2569 547 }\r
130e2569 548}\r
549\r
7c80e839 550/**\r
130e2569 551\r
552 This code gets the pointer to the variable name.\r
553\r
8a2d4996 554 @param Variable Pointer to the Variable Header.\r
130e2569 555\r
8a2d4996 556 @return Pointer to Variable Name which is Unicode encoding.\r
130e2569 557\r
7c80e839 558**/\r
559CHAR16 *\r
560GetVariableNamePtr (\r
561 IN VARIABLE_HEADER *Variable\r
562 )\r
130e2569 563{\r
fa0737a8
SZ
564 return (CHAR16 *) ((UINTN) Variable + GetVariableHeaderSize ());\r
565}\r
130e2569 566\r
fa0737a8
SZ
567/**\r
568 This code gets the pointer to the variable guid.\r
569\r
570 @param Variable Pointer to the Variable Header.\r
571\r
572 @return A EFI_GUID* pointer to Vendor Guid.\r
573\r
574**/\r
575EFI_GUID *\r
576GetVendorGuidPtr (\r
577 IN VARIABLE_HEADER *Variable\r
578 )\r
579{\r
580 AUTHENTICATED_VARIABLE_HEADER *AuthVariable;\r
581\r
582 AuthVariable = (AUTHENTICATED_VARIABLE_HEADER *) Variable;\r
583 if (mVariableModuleGlobal->VariableGlobal.AuthFormat) {\r
584 return &AuthVariable->VendorGuid;\r
585 } else {\r
586 return &Variable->VendorGuid;\r
587 }\r
130e2569 588}\r
589\r
7c80e839 590/**\r
8d3a5c82 591\r
592 This code gets the pointer to the variable data.\r
593\r
8a2d4996 594 @param Variable Pointer to the Variable Header.\r
8d3a5c82 595\r
8a2d4996 596 @return Pointer to Variable Data.\r
8d3a5c82 597\r
7c80e839 598**/\r
599UINT8 *\r
600GetVariableDataPtr (\r
601 IN VARIABLE_HEADER *Variable\r
602 )\r
8d3a5c82 603{\r
130e2569 604 UINTN Value;\r
fa0737a8 605\r
8d3a5c82 606 //\r
8a2d4996 607 // Be careful about pad size for alignment.\r
8d3a5c82 608 //\r
130e2569 609 Value = (UINTN) GetVariableNamePtr (Variable);\r
610 Value += NameSizeOfVariable (Variable);\r
611 Value += GET_PAD_SIZE (NameSizeOfVariable (Variable));\r
612\r
613 return (UINT8 *) Value;\r
8d3a5c82 614}\r
615\r
fa0737a8
SZ
616/**\r
617 This code gets the variable data offset related to variable header.\r
618\r
619 @param Variable Pointer to the Variable Header.\r
620\r
621 @return Variable Data offset.\r
622\r
623**/\r
624UINTN\r
625GetVariableDataOffset (\r
626 IN VARIABLE_HEADER *Variable\r
627 )\r
628{\r
629 UINTN Value;\r
630\r
631 //\r
632 // Be careful about pad size for alignment\r
633 //\r
634 Value = GetVariableHeaderSize ();\r
635 Value += NameSizeOfVariable (Variable);\r
636 Value += GET_PAD_SIZE (NameSizeOfVariable (Variable));\r
637\r
638 return Value;\r
639}\r
052ad7e1 640\r
7c80e839 641/**\r
8d3a5c82 642\r
643 This code gets the pointer to the next variable header.\r
644\r
8a2d4996 645 @param Variable Pointer to the Variable Header.\r
8d3a5c82 646\r
8a2d4996 647 @return Pointer to next variable header.\r
8d3a5c82 648\r
7c80e839 649**/\r
650VARIABLE_HEADER *\r
651GetNextVariablePtr (\r
652 IN VARIABLE_HEADER *Variable\r
653 )\r
8d3a5c82 654{\r
130e2569 655 UINTN Value;\r
656\r
130e2569 657 Value = (UINTN) GetVariableDataPtr (Variable);\r
658 Value += DataSizeOfVariable (Variable);\r
659 Value += GET_PAD_SIZE (DataSizeOfVariable (Variable));\r
660\r
8d3a5c82 661 //\r
8a2d4996 662 // Be careful about pad size for alignment.\r
8d3a5c82 663 //\r
130e2569 664 return (VARIABLE_HEADER *) HEADER_ALIGN (Value);\r
8d3a5c82 665}\r
666\r
7c80e839 667/**\r
9cad030b 668\r
7c80e839 669 Gets the pointer to the first variable header in given variable store area.\r
9cad030b 670\r
7c80e839 671 @param VarStoreHeader Pointer to the Variable Store Header.\r
9cad030b 672\r
8a2d4996 673 @return Pointer to the first variable header.\r
9cad030b 674\r
7c80e839 675**/\r
676VARIABLE_HEADER *\r
677GetStartPointer (\r
678 IN VARIABLE_STORE_HEADER *VarStoreHeader\r
679 )\r
9cad030b 680{\r
681 //\r
4063d37c 682 // The start of variable store.\r
9cad030b 683 //\r
684 return (VARIABLE_HEADER *) HEADER_ALIGN (VarStoreHeader + 1);\r
685}\r
052ad7e1 686\r
7c80e839 687/**\r
8d3a5c82 688\r
7c80e839 689 Gets the pointer to the end of the variable storage area.\r
8d3a5c82 690\r
7c80e839 691 This function gets pointer to the end of the variable storage\r
692 area, according to the input variable store header.\r
8d3a5c82 693\r
8a2d4996 694 @param VarStoreHeader Pointer to the Variable Store Header.\r
8d3a5c82 695\r
fa0737a8 696 @return Pointer to the end of the variable storage area.\r
8d3a5c82 697\r
7c80e839 698**/\r
699VARIABLE_HEADER *\r
700GetEndPointer (\r
701 IN VARIABLE_STORE_HEADER *VarStoreHeader\r
702 )\r
8d3a5c82 703{\r
704 //\r
705 // The end of variable store\r
706 //\r
9cad030b 707 return (VARIABLE_HEADER *) HEADER_ALIGN ((UINTN) VarStoreHeader + VarStoreHeader->Size);\r
8d3a5c82 708}\r
709\r
4edb1866
SZ
710/**\r
711 Record variable error flag.\r
712\r
713 @param[in] Flag Variable error flag to record.\r
714 @param[in] VariableName Name of variable.\r
715 @param[in] VendorGuid Guid of variable.\r
716 @param[in] Attributes Attributes of the variable.\r
717 @param[in] VariableSize Size of the variable.\r
718\r
719**/\r
720VOID\r
721RecordVarErrorFlag (\r
722 IN VAR_ERROR_FLAG Flag,\r
723 IN CHAR16 *VariableName,\r
724 IN EFI_GUID *VendorGuid,\r
725 IN UINT32 Attributes,\r
726 IN UINTN VariableSize\r
727 )\r
728{\r
729 EFI_STATUS Status;\r
730 VARIABLE_POINTER_TRACK Variable;\r
731 VAR_ERROR_FLAG *VarErrFlag;\r
732 VAR_ERROR_FLAG TempFlag;\r
733\r
734 DEBUG_CODE (\r
735 DEBUG ((EFI_D_ERROR, "RecordVarErrorFlag (0x%02x) %s:%g - 0x%08x - 0x%x\n", Flag, VariableName, VendorGuid, Attributes, VariableSize));\r
736 if (Flag == VAR_ERROR_FLAG_SYSTEM_ERROR) {\r
737 if (AtRuntime ()) {\r
738 DEBUG ((EFI_D_ERROR, "CommonRuntimeVariableSpace = 0x%x - CommonVariableTotalSize = 0x%x\n", mVariableModuleGlobal->CommonRuntimeVariableSpace, mVariableModuleGlobal->CommonVariableTotalSize));\r
739 } else {\r
740 DEBUG ((EFI_D_ERROR, "CommonVariableSpace = 0x%x - CommonVariableTotalSize = 0x%x\n", mVariableModuleGlobal->CommonVariableSpace, mVariableModuleGlobal->CommonVariableTotalSize));\r
741 }\r
742 } else {\r
743 DEBUG ((EFI_D_ERROR, "CommonMaxUserVariableSpace = 0x%x - CommonUserVariableTotalSize = 0x%x\n", mVariableModuleGlobal->CommonMaxUserVariableSpace, mVariableModuleGlobal->CommonUserVariableTotalSize));\r
744 }\r
745 );\r
746\r
00ab76e0
SZ
747 if (!mEndOfDxe) {\r
748 //\r
749 // Before EndOfDxe, just record the current boot variable error flag to local variable,\r
750 // and leave the variable error flag in NV flash as the last boot variable error flag.\r
751 // After EndOfDxe in InitializeVarErrorFlag (), the variable error flag in NV flash\r
752 // will be initialized to this local current boot variable error flag.\r
753 //\r
754 mCurrentBootVarErrFlag &= Flag;\r
755 return;\r
756 }\r
757\r
4edb1866
SZ
758 //\r
759 // Record error flag (it should have be initialized).\r
760 //\r
761 Status = FindVariable (\r
762 VAR_ERROR_FLAG_NAME,\r
763 &gEdkiiVarErrorFlagGuid,\r
764 &Variable,\r
765 &mVariableModuleGlobal->VariableGlobal,\r
766 FALSE\r
767 );\r
768 if (!EFI_ERROR (Status)) {\r
769 VarErrFlag = (VAR_ERROR_FLAG *) GetVariableDataPtr (Variable.CurrPtr);\r
770 TempFlag = *VarErrFlag;\r
771 TempFlag &= Flag;\r
772 if (TempFlag == *VarErrFlag) {\r
773 return;\r
774 }\r
775 Status = UpdateVariableStore (\r
776 &mVariableModuleGlobal->VariableGlobal,\r
777 FALSE,\r
778 FALSE,\r
779 mVariableModuleGlobal->FvbInstance,\r
780 (UINTN) VarErrFlag - (UINTN) mNvVariableCache + (UINTN) mVariableModuleGlobal->VariableGlobal.NonVolatileVariableBase,\r
781 sizeof (TempFlag),\r
782 &TempFlag\r
783 );\r
784 if (!EFI_ERROR (Status)) {\r
785 //\r
786 // Update the data in NV cache.\r
787 //\r
4a23636a 788 *VarErrFlag = TempFlag;\r
4edb1866
SZ
789 }\r
790 }\r
791}\r
792\r
793/**\r
794 Initialize variable error flag.\r
795\r
796 Before EndOfDxe, the variable indicates the last boot variable error flag,\r
797 then it means the last boot variable error flag must be got before EndOfDxe.\r
798 After EndOfDxe, the variable indicates the current boot variable error flag,\r
799 then it means the current boot variable error flag must be got after EndOfDxe.\r
800\r
801**/\r
802VOID\r
803InitializeVarErrorFlag (\r
804 VOID\r
805 )\r
806{\r
807 EFI_STATUS Status;\r
808 VARIABLE_POINTER_TRACK Variable;\r
809 VAR_ERROR_FLAG Flag;\r
810 VAR_ERROR_FLAG VarErrFlag;\r
811\r
812 if (!mEndOfDxe) {\r
813 return;\r
814 }\r
815\r
00ab76e0 816 Flag = mCurrentBootVarErrFlag;\r
4edb1866
SZ
817 DEBUG ((EFI_D_INFO, "Initialize variable error flag (%02x)\n", Flag));\r
818\r
819 Status = FindVariable (\r
820 VAR_ERROR_FLAG_NAME,\r
821 &gEdkiiVarErrorFlagGuid,\r
822 &Variable,\r
823 &mVariableModuleGlobal->VariableGlobal,\r
824 FALSE\r
825 );\r
826 if (!EFI_ERROR (Status)) {\r
827 VarErrFlag = *((VAR_ERROR_FLAG *) GetVariableDataPtr (Variable.CurrPtr));\r
828 if (VarErrFlag == Flag) {\r
829 return;\r
830 }\r
831 }\r
832\r
833 UpdateVariable (\r
834 VAR_ERROR_FLAG_NAME,\r
835 &gEdkiiVarErrorFlagGuid,\r
836 &Flag,\r
837 sizeof (Flag),\r
838 VARIABLE_ATTRIBUTE_NV_BS_RT,\r
fa0737a8
SZ
839 0,\r
840 0,\r
841 &Variable,\r
842 NULL\r
4edb1866
SZ
843 );\r
844}\r
845\r
846/**\r
847 Is user variable?\r
848\r
849 @param[in] Variable Pointer to variable header.\r
850\r
851 @retval TRUE User variable.\r
852 @retval FALSE System variable.\r
853\r
854**/\r
855BOOLEAN\r
856IsUserVariable (\r
857 IN VARIABLE_HEADER *Variable\r
858 )\r
859{\r
860 VAR_CHECK_VARIABLE_PROPERTY Property;\r
861\r
862 //\r
863 // Only after End Of Dxe, the variables belong to system variable are fixed.\r
864 // If PcdMaxUserNvStorageVariableSize is 0, it means user variable share the same NV storage with system variable,\r
865 // then no need to check if the variable is user variable or not specially.\r
866 //\r
867 if (mEndOfDxe && (mVariableModuleGlobal->CommonMaxUserVariableSpace != mVariableModuleGlobal->CommonVariableSpace)) {\r
8021f4c7 868 if (VarCheckLibVariablePropertyGet (GetVariableNamePtr (Variable), GetVendorGuidPtr (Variable), &Property) == EFI_NOT_FOUND) {\r
4edb1866
SZ
869 return TRUE;\r
870 }\r
871 }\r
872 return FALSE;\r
873}\r
874\r
875/**\r
876 Calculate common user variable total size.\r
877\r
878**/\r
879VOID\r
880CalculateCommonUserVariableTotalSize (\r
881 VOID\r
882 )\r
883{\r
884 VARIABLE_HEADER *Variable;\r
885 VARIABLE_HEADER *NextVariable;\r
886 UINTN VariableSize;\r
887 VAR_CHECK_VARIABLE_PROPERTY Property;\r
888\r
889 //\r
890 // Only after End Of Dxe, the variables belong to system variable are fixed.\r
891 // If PcdMaxUserNvStorageVariableSize is 0, it means user variable share the same NV storage with system variable,\r
892 // then no need to calculate the common user variable total size specially.\r
893 //\r
894 if (mEndOfDxe && (mVariableModuleGlobal->CommonMaxUserVariableSpace != mVariableModuleGlobal->CommonVariableSpace)) {\r
895 Variable = GetStartPointer (mNvVariableCache);\r
896 while (IsValidVariableHeader (Variable, GetEndPointer (mNvVariableCache))) {\r
897 NextVariable = GetNextVariablePtr (Variable);\r
898 VariableSize = (UINTN) NextVariable - (UINTN) Variable;\r
899 if ((Variable->Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) != EFI_VARIABLE_HARDWARE_ERROR_RECORD) {\r
8021f4c7 900 if (VarCheckLibVariablePropertyGet (GetVariableNamePtr (Variable), GetVendorGuidPtr (Variable), &Property) == EFI_NOT_FOUND) {\r
4edb1866
SZ
901 //\r
902 // No property, it is user variable.\r
903 //\r
904 mVariableModuleGlobal->CommonUserVariableTotalSize += VariableSize;\r
905 }\r
906 }\r
907\r
908 Variable = NextVariable;\r
909 }\r
910 }\r
911}\r
912\r
913/**\r
914 Initialize variable quota.\r
915\r
916**/\r
917VOID\r
918InitializeVariableQuota (\r
919 VOID\r
920 )\r
921{\r
8021f4c7 922 if (!mEndOfDxe) {\r
4edb1866
SZ
923 return;\r
924 }\r
4edb1866
SZ
925\r
926 InitializeVarErrorFlag ();\r
927 CalculateCommonUserVariableTotalSize ();\r
928}\r
052ad7e1 929\r
7c80e839 930/**\r
931\r
932 Variable store garbage collection and reclaim operation.\r
933\r
fa0737a8
SZ
934 @param[in] VariableBase Base address of variable store.\r
935 @param[out] LastVariableOffset Offset of last variable.\r
936 @param[in] IsVolatile The variable store is volatile or not;\r
937 if it is non-volatile, need FTW.\r
938 @param[in, out] UpdatingPtrTrack Pointer to updating variable pointer track structure.\r
939 @param[in] NewVariable Pointer to new variable.\r
940 @param[in] NewVariableSize New variable size.\r
7c80e839 941\r
fa0737a8
SZ
942 @return EFI_SUCCESS Reclaim operation has finished successfully.\r
943 @return EFI_OUT_OF_RESOURCES No enough memory resources or variable space.\r
944 @return Others Unexpect error happened during reclaim operation.\r
7c80e839 945\r
946**/\r
8d3a5c82 947EFI_STATUS\r
8d3a5c82 948Reclaim (\r
fa0737a8
SZ
949 IN EFI_PHYSICAL_ADDRESS VariableBase,\r
950 OUT UINTN *LastVariableOffset,\r
951 IN BOOLEAN IsVolatile,\r
952 IN OUT VARIABLE_POINTER_TRACK *UpdatingPtrTrack,\r
953 IN VARIABLE_HEADER *NewVariable,\r
954 IN UINTN NewVariableSize\r
8d3a5c82 955 )\r
8d3a5c82 956{\r
957 VARIABLE_HEADER *Variable;\r
814bae52 958 VARIABLE_HEADER *AddedVariable;\r
8d3a5c82 959 VARIABLE_HEADER *NextVariable;\r
814bae52 960 VARIABLE_HEADER *NextAddedVariable;\r
8d3a5c82 961 VARIABLE_STORE_HEADER *VariableStoreHeader;\r
962 UINT8 *ValidBuffer;\r
814bae52 963 UINTN MaximumBufferSize;\r
8d3a5c82 964 UINTN VariableSize;\r
814bae52 965 UINTN NameSize;\r
8d3a5c82 966 UINT8 *CurrPtr;\r
814bae52 967 VOID *Point0;\r
968 VOID *Point1;\r
969 BOOLEAN FoundAdded;\r
8d3a5c82 970 EFI_STATUS Status;\r
8f3a9e58 971 UINTN CommonVariableTotalSize;\r
4edb1866 972 UINTN CommonUserVariableTotalSize;\r
8f3a9e58 973 UINTN HwErrVariableTotalSize;\r
23b06935 974 VARIABLE_HEADER *UpdatingVariable;\r
7baf3c69 975 VARIABLE_HEADER *UpdatingInDeletedTransition;\r
23b06935
SZ
976\r
977 UpdatingVariable = NULL;\r
7baf3c69 978 UpdatingInDeletedTransition = NULL;\r
23b06935
SZ
979 if (UpdatingPtrTrack != NULL) {\r
980 UpdatingVariable = UpdatingPtrTrack->CurrPtr;\r
7baf3c69 981 UpdatingInDeletedTransition = UpdatingPtrTrack->InDeletedTransitionPtr;\r
23b06935 982 }\r
8d3a5c82 983\r
984 VariableStoreHeader = (VARIABLE_STORE_HEADER *) ((UINTN) VariableBase);\r
8f3a9e58
SZ
985\r
986 CommonVariableTotalSize = 0;\r
4edb1866 987 CommonUserVariableTotalSize = 0;\r
8f3a9e58 988 HwErrVariableTotalSize = 0;\r
8d3a5c82 989\r
128ef095
SZ
990 if (IsVolatile) {\r
991 //\r
992 // Start Pointers for the variable.\r
993 //\r
994 Variable = GetStartPointer (VariableStoreHeader);\r
995 MaximumBufferSize = sizeof (VARIABLE_STORE_HEADER);\r
996\r
6ebffb67 997 while (IsValidVariableHeader (Variable, GetEndPointer (VariableStoreHeader))) {\r
128ef095
SZ
998 NextVariable = GetNextVariablePtr (Variable);\r
999 if ((Variable->State == VAR_ADDED || Variable->State == (VAR_IN_DELETED_TRANSITION & VAR_ADDED)) &&\r
1000 Variable != UpdatingVariable &&\r
1001 Variable != UpdatingInDeletedTransition\r
1002 ) {\r
1003 VariableSize = (UINTN) NextVariable - (UINTN) Variable;\r
1004 MaximumBufferSize += VariableSize;\r
1005 }\r
8d3a5c82 1006\r
128ef095 1007 Variable = NextVariable;\r
8d3a5c82 1008 }\r
1009\r
128ef095
SZ
1010 if (NewVariable != NULL) {\r
1011 //\r
1012 // Add the new variable size.\r
1013 //\r
1014 MaximumBufferSize += NewVariableSize;\r
1015 }\r
8d3a5c82 1016\r
7baf3c69 1017 //\r
128ef095
SZ
1018 // Reserve the 1 Bytes with Oxff to identify the\r
1019 // end of the variable buffer.\r
7baf3c69 1020 //\r
128ef095
SZ
1021 MaximumBufferSize += 1;\r
1022 ValidBuffer = AllocatePool (MaximumBufferSize);\r
1023 if (ValidBuffer == NULL) {\r
1024 return EFI_OUT_OF_RESOURCES;\r
1025 }\r
1026 } else {\r
1027 //\r
1028 // For NV variable reclaim, don't allocate pool here and just use mNvVariableCache\r
1029 // as the buffer to reduce SMRAM consumption for SMM variable driver.\r
1030 //\r
1031 MaximumBufferSize = mNvVariableCache->Size;\r
1032 ValidBuffer = (UINT8 *) mNvVariableCache;\r
8d3a5c82 1033 }\r
1034\r
814bae52 1035 SetMem (ValidBuffer, MaximumBufferSize, 0xff);\r
8d3a5c82 1036\r
1037 //\r
8a2d4996 1038 // Copy variable store header.\r
8d3a5c82 1039 //\r
814bae52 1040 CopyMem (ValidBuffer, VariableStoreHeader, sizeof (VARIABLE_STORE_HEADER));\r
1041 CurrPtr = (UINT8 *) GetStartPointer ((VARIABLE_STORE_HEADER *) ValidBuffer);\r
8d3a5c82 1042\r
814bae52 1043 //\r
8a2d4996 1044 // Reinstall all ADDED variables as long as they are not identical to Updating Variable.\r
fa0737a8 1045 //\r
814bae52 1046 Variable = GetStartPointer (VariableStoreHeader);\r
6ebffb67 1047 while (IsValidVariableHeader (Variable, GetEndPointer (VariableStoreHeader))) {\r
8d3a5c82 1048 NextVariable = GetNextVariablePtr (Variable);\r
7baf3c69 1049 if (Variable != UpdatingVariable && Variable->State == VAR_ADDED) {\r
8d3a5c82 1050 VariableSize = (UINTN) NextVariable - (UINTN) Variable;\r
1051 CopyMem (CurrPtr, (UINT8 *) Variable, VariableSize);\r
1052 CurrPtr += VariableSize;\r
2fcdca1d 1053 if ((!IsVolatile) && ((Variable->Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) == EFI_VARIABLE_HARDWARE_ERROR_RECORD)) {\r
8f3a9e58 1054 HwErrVariableTotalSize += VariableSize;\r
2fcdca1d 1055 } else if ((!IsVolatile) && ((Variable->Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) != EFI_VARIABLE_HARDWARE_ERROR_RECORD)) {\r
8f3a9e58 1056 CommonVariableTotalSize += VariableSize;\r
4edb1866
SZ
1057 if (IsUserVariable (Variable)) {\r
1058 CommonUserVariableTotalSize += VariableSize;\r
1059 }\r
2fcdca1d 1060 }\r
8d3a5c82 1061 }\r
8d3a5c82 1062 Variable = NextVariable;\r
1063 }\r
5ead4a07 1064\r
814bae52 1065 //\r
8a2d4996 1066 // Reinstall all in delete transition variables.\r
fa0737a8 1067 //\r
7baf3c69 1068 Variable = GetStartPointer (VariableStoreHeader);\r
6ebffb67 1069 while (IsValidVariableHeader (Variable, GetEndPointer (VariableStoreHeader))) {\r
814bae52 1070 NextVariable = GetNextVariablePtr (Variable);\r
7baf3c69 1071 if (Variable != UpdatingVariable && Variable != UpdatingInDeletedTransition && Variable->State == (VAR_IN_DELETED_TRANSITION & VAR_ADDED)) {\r
814bae52 1072\r
1073 //\r
fa0737a8 1074 // Buffer has cached all ADDED variable.\r
814bae52 1075 // Per IN_DELETED variable, we have to guarantee that\r
fa0737a8
SZ
1076 // no ADDED one in previous buffer.\r
1077 //\r
1078\r
814bae52 1079 FoundAdded = FALSE;\r
1080 AddedVariable = GetStartPointer ((VARIABLE_STORE_HEADER *) ValidBuffer);\r
6ebffb67 1081 while (IsValidVariableHeader (AddedVariable, GetEndPointer ((VARIABLE_STORE_HEADER *) ValidBuffer))) {\r
814bae52 1082 NextAddedVariable = GetNextVariablePtr (AddedVariable);\r
1083 NameSize = NameSizeOfVariable (AddedVariable);\r
fa0737a8 1084 if (CompareGuid (GetVendorGuidPtr (AddedVariable), GetVendorGuidPtr (Variable)) &&\r
814bae52 1085 NameSize == NameSizeOfVariable (Variable)\r
1086 ) {\r
1087 Point0 = (VOID *) GetVariableNamePtr (AddedVariable);\r
1088 Point1 = (VOID *) GetVariableNamePtr (Variable);\r
23b06935 1089 if (CompareMem (Point0, Point1, NameSize) == 0) {\r
814bae52 1090 FoundAdded = TRUE;\r
1091 break;\r
1092 }\r
1093 }\r
1094 AddedVariable = NextAddedVariable;\r
1095 }\r
1096 if (!FoundAdded) {\r
5ead4a07 1097 //\r
8a2d4996 1098 // Promote VAR_IN_DELETED_TRANSITION to VAR_ADDED.\r
5ead4a07 1099 //\r
814bae52 1100 VariableSize = (UINTN) NextVariable - (UINTN) Variable;\r
1101 CopyMem (CurrPtr, (UINT8 *) Variable, VariableSize);\r
5ead4a07 1102 ((VARIABLE_HEADER *) CurrPtr)->State = VAR_ADDED;\r
814bae52 1103 CurrPtr += VariableSize;\r
2fcdca1d 1104 if ((!IsVolatile) && ((Variable->Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) == EFI_VARIABLE_HARDWARE_ERROR_RECORD)) {\r
8f3a9e58 1105 HwErrVariableTotalSize += VariableSize;\r
2fcdca1d 1106 } else if ((!IsVolatile) && ((Variable->Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) != EFI_VARIABLE_HARDWARE_ERROR_RECORD)) {\r
8f3a9e58 1107 CommonVariableTotalSize += VariableSize;\r
4edb1866
SZ
1108 if (IsUserVariable (Variable)) {\r
1109 CommonUserVariableTotalSize += VariableSize;\r
1110 }\r
2fcdca1d 1111 }\r
814bae52 1112 }\r
1113 }\r
1114\r
1115 Variable = NextVariable;\r
1116 }\r
8d3a5c82 1117\r
7baf3c69
SZ
1118 //\r
1119 // Install the new variable if it is not NULL.\r
1120 //\r
1121 if (NewVariable != NULL) {\r
809e2bbf 1122 if (((UINTN) CurrPtr - (UINTN) ValidBuffer) + NewVariableSize > VariableStoreHeader->Size) {\r
7baf3c69
SZ
1123 //\r
1124 // No enough space to store the new variable.\r
1125 //\r
1126 Status = EFI_OUT_OF_RESOURCES;\r
1127 goto Done;\r
1128 }\r
1129 if (!IsVolatile) {\r
1130 if ((NewVariable->Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) == EFI_VARIABLE_HARDWARE_ERROR_RECORD) {\r
1131 HwErrVariableTotalSize += NewVariableSize;\r
1132 } else if ((NewVariable->Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) != EFI_VARIABLE_HARDWARE_ERROR_RECORD) {\r
1133 CommonVariableTotalSize += NewVariableSize;\r
4edb1866
SZ
1134 if (IsUserVariable (NewVariable)) {\r
1135 CommonUserVariableTotalSize += NewVariableSize;\r
1136 }\r
7baf3c69
SZ
1137 }\r
1138 if ((HwErrVariableTotalSize > PcdGet32 (PcdHwErrStorageSize)) ||\r
4edb1866
SZ
1139 (CommonVariableTotalSize > mVariableModuleGlobal->CommonVariableSpace) ||\r
1140 (CommonUserVariableTotalSize > mVariableModuleGlobal->CommonMaxUserVariableSpace)) {\r
7baf3c69
SZ
1141 //\r
1142 // No enough space to store the new variable by NV or NV+HR attribute.\r
1143 //\r
1144 Status = EFI_OUT_OF_RESOURCES;\r
1145 goto Done;\r
1146 }\r
1147 }\r
1148\r
1149 CopyMem (CurrPtr, (UINT8 *) NewVariable, NewVariableSize);\r
1150 ((VARIABLE_HEADER *) CurrPtr)->State = VAR_ADDED;\r
1151 if (UpdatingVariable != NULL) {\r
1152 UpdatingPtrTrack->CurrPtr = (VARIABLE_HEADER *)((UINTN)UpdatingPtrTrack->StartPtr + ((UINTN)CurrPtr - (UINTN)GetStartPointer ((VARIABLE_STORE_HEADER *) ValidBuffer)));\r
1153 UpdatingPtrTrack->InDeletedTransitionPtr = NULL;\r
1154 }\r
1155 CurrPtr += NewVariableSize;\r
1156 }\r
1157\r
8d3a5c82 1158 if (IsVolatile) {\r
1159 //\r
8a2d4996 1160 // If volatile variable store, just copy valid buffer.\r
8d3a5c82 1161 //\r
1162 SetMem ((UINT8 *) (UINTN) VariableBase, VariableStoreHeader->Size, 0xff);\r
809e2bbf
HW
1163 CopyMem ((UINT8 *) (UINTN) VariableBase, ValidBuffer, (UINTN) CurrPtr - (UINTN) ValidBuffer);\r
1164 *LastVariableOffset = (UINTN) CurrPtr - (UINTN) ValidBuffer;\r
8a2d4996 1165 Status = EFI_SUCCESS;\r
8d3a5c82 1166 } else {\r
1167 //\r
1168 // If non-volatile variable store, perform FTW here.\r
1169 //\r
1170 Status = FtwVariableSpace (\r
1171 VariableBase,\r
128ef095 1172 (VARIABLE_STORE_HEADER *) ValidBuffer\r
8d3a5c82 1173 );\r
128ef095 1174 if (!EFI_ERROR (Status)) {\r
809e2bbf 1175 *LastVariableOffset = (UINTN) CurrPtr - (UINTN) ValidBuffer;\r
8f3a9e58
SZ
1176 mVariableModuleGlobal->HwErrVariableTotalSize = HwErrVariableTotalSize;\r
1177 mVariableModuleGlobal->CommonVariableTotalSize = CommonVariableTotalSize;\r
4edb1866 1178 mVariableModuleGlobal->CommonUserVariableTotalSize = CommonUserVariableTotalSize;\r
128ef095 1179 } else {\r
b2c59ce8
SZ
1180 mVariableModuleGlobal->HwErrVariableTotalSize = 0;\r
1181 mVariableModuleGlobal->CommonVariableTotalSize = 0;\r
1182 mVariableModuleGlobal->CommonUserVariableTotalSize = 0;\r
4edb1866
SZ
1183 Variable = GetStartPointer ((VARIABLE_STORE_HEADER *)(UINTN)VariableBase);\r
1184 while (IsValidVariableHeader (Variable, GetEndPointer ((VARIABLE_STORE_HEADER *)(UINTN)VariableBase))) {\r
1185 NextVariable = GetNextVariablePtr (Variable);\r
1186 VariableSize = (UINTN) NextVariable - (UINTN) Variable;\r
128ef095 1187 if ((Variable->Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) == EFI_VARIABLE_HARDWARE_ERROR_RECORD) {\r
4edb1866 1188 mVariableModuleGlobal->HwErrVariableTotalSize += VariableSize;\r
128ef095 1189 } else if ((Variable->Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) != EFI_VARIABLE_HARDWARE_ERROR_RECORD) {\r
4edb1866
SZ
1190 mVariableModuleGlobal->CommonVariableTotalSize += VariableSize;\r
1191 if (IsUserVariable (Variable)) {\r
1192 mVariableModuleGlobal->CommonUserVariableTotalSize += VariableSize;\r
1193 }\r
128ef095 1194 }\r
8f3a9e58 1195\r
4edb1866 1196 Variable = NextVariable;\r
128ef095 1197 }\r
4edb1866 1198 *LastVariableOffset = (UINTN) Variable - (UINTN) VariableBase;\r
8f3a9e58 1199 }\r
8d3a5c82 1200 }\r
1201\r
7baf3c69 1202Done:\r
128ef095
SZ
1203 if (IsVolatile) {\r
1204 FreePool (ValidBuffer);\r
1205 } else {\r
1206 //\r
1207 // For NV variable reclaim, we use mNvVariableCache as the buffer, so copy the data back.\r
1208 //\r
1209 CopyMem (mNvVariableCache, (UINT8 *)(UINTN)VariableBase, VariableStoreHeader->Size);\r
1210 }\r
814bae52 1211\r
8d3a5c82 1212 return Status;\r
1213}\r
1214\r
0f7aff72
RN
1215/**\r
1216 Find the variable in the specified variable store.\r
1217\r
fa0737a8
SZ
1218 @param[in] VariableName Name of the variable to be found\r
1219 @param[in] VendorGuid Vendor GUID to be found.\r
1220 @param[in] IgnoreRtCheck Ignore EFI_VARIABLE_RUNTIME_ACCESS attribute\r
1221 check at runtime when searching variable.\r
1222 @param[in, out] PtrTrack Variable Track Pointer structure that contains Variable Information.\r
0f7aff72 1223\r
fa0737a8
SZ
1224 @retval EFI_SUCCESS Variable found successfully\r
1225 @retval EFI_NOT_FOUND Variable not found\r
0f7aff72
RN
1226**/\r
1227EFI_STATUS\r
1228FindVariableEx (\r
1229 IN CHAR16 *VariableName,\r
1230 IN EFI_GUID *VendorGuid,\r
9622df63 1231 IN BOOLEAN IgnoreRtCheck,\r
0f7aff72
RN
1232 IN OUT VARIABLE_POINTER_TRACK *PtrTrack\r
1233 )\r
1234{\r
1235 VARIABLE_HEADER *InDeletedVariable;\r
1236 VOID *Point;\r
1237\r
23b06935
SZ
1238 PtrTrack->InDeletedTransitionPtr = NULL;\r
1239\r
0f7aff72
RN
1240 //\r
1241 // Find the variable by walk through HOB, volatile and non-volatile variable store.\r
1242 //\r
1243 InDeletedVariable = NULL;\r
1244\r
1245 for ( PtrTrack->CurrPtr = PtrTrack->StartPtr\r
6ebffb67 1246 ; IsValidVariableHeader (PtrTrack->CurrPtr, PtrTrack->EndPtr)\r
0f7aff72
RN
1247 ; PtrTrack->CurrPtr = GetNextVariablePtr (PtrTrack->CurrPtr)\r
1248 ) {\r
fa0737a8 1249 if (PtrTrack->CurrPtr->State == VAR_ADDED ||\r
0f7aff72
RN
1250 PtrTrack->CurrPtr->State == (VAR_IN_DELETED_TRANSITION & VAR_ADDED)\r
1251 ) {\r
9622df63 1252 if (IgnoreRtCheck || !AtRuntime () || ((PtrTrack->CurrPtr->Attributes & EFI_VARIABLE_RUNTIME_ACCESS) != 0)) {\r
0f7aff72
RN
1253 if (VariableName[0] == 0) {\r
1254 if (PtrTrack->CurrPtr->State == (VAR_IN_DELETED_TRANSITION & VAR_ADDED)) {\r
1255 InDeletedVariable = PtrTrack->CurrPtr;\r
1256 } else {\r
23b06935 1257 PtrTrack->InDeletedTransitionPtr = InDeletedVariable;\r
0f7aff72
RN
1258 return EFI_SUCCESS;\r
1259 }\r
1260 } else {\r
fa0737a8 1261 if (CompareGuid (VendorGuid, GetVendorGuidPtr (PtrTrack->CurrPtr))) {\r
0f7aff72
RN
1262 Point = (VOID *) GetVariableNamePtr (PtrTrack->CurrPtr);\r
1263\r
1264 ASSERT (NameSizeOfVariable (PtrTrack->CurrPtr) != 0);\r
1265 if (CompareMem (VariableName, Point, NameSizeOfVariable (PtrTrack->CurrPtr)) == 0) {\r
1266 if (PtrTrack->CurrPtr->State == (VAR_IN_DELETED_TRANSITION & VAR_ADDED)) {\r
1267 InDeletedVariable = PtrTrack->CurrPtr;\r
1268 } else {\r
23b06935 1269 PtrTrack->InDeletedTransitionPtr = InDeletedVariable;\r
0f7aff72
RN
1270 return EFI_SUCCESS;\r
1271 }\r
1272 }\r
1273 }\r
1274 }\r
1275 }\r
1276 }\r
1277 }\r
1278\r
1279 PtrTrack->CurrPtr = InDeletedVariable;\r
1280 return (PtrTrack->CurrPtr == NULL) ? EFI_NOT_FOUND : EFI_SUCCESS;\r
1281}\r
1282\r
33a5a666 1283\r
7c80e839 1284/**\r
1285 Finds variable in storage blocks of volatile and non-volatile storage areas.\r
1286\r
1287 This code finds variable in storage blocks of volatile and non-volatile storage areas.\r
1288 If VariableName is an empty string, then we just return the first\r
1289 qualified variable without comparing VariableName and VendorGuid.\r
9622df63
SZ
1290 If IgnoreRtCheck is TRUE, then we ignore the EFI_VARIABLE_RUNTIME_ACCESS attribute check\r
1291 at runtime when searching existing variable, only VariableName and VendorGuid are compared.\r
1292 Otherwise, variables without EFI_VARIABLE_RUNTIME_ACCESS are not visible at runtime.\r
7c80e839 1293\r
fa0737a8
SZ
1294 @param[in] VariableName Name of the variable to be found.\r
1295 @param[in] VendorGuid Vendor GUID to be found.\r
1296 @param[out] PtrTrack VARIABLE_POINTER_TRACK structure for output,\r
7c80e839 1297 including the range searched and the target position.\r
fa0737a8 1298 @param[in] Global Pointer to VARIABLE_GLOBAL structure, including\r
7c80e839 1299 base of volatile variable storage area, base of\r
1300 NV variable storage area, and a lock.\r
fa0737a8 1301 @param[in] IgnoreRtCheck Ignore EFI_VARIABLE_RUNTIME_ACCESS attribute\r
9622df63 1302 check at runtime when searching variable.\r
7c80e839 1303\r
1304 @retval EFI_INVALID_PARAMETER If VariableName is not an empty string, while\r
8a2d4996 1305 VendorGuid is NULL.\r
1306 @retval EFI_SUCCESS Variable successfully found.\r
255a3f33 1307 @retval EFI_NOT_FOUND Variable not found\r
33a5a666 1308\r
7c80e839 1309**/\r
8d3a5c82 1310EFI_STATUS\r
8d3a5c82 1311FindVariable (\r
1312 IN CHAR16 *VariableName,\r
1313 IN EFI_GUID *VendorGuid,\r
1314 OUT VARIABLE_POINTER_TRACK *PtrTrack,\r
9622df63
SZ
1315 IN VARIABLE_GLOBAL *Global,\r
1316 IN BOOLEAN IgnoreRtCheck\r
8d3a5c82 1317 )\r
8d3a5c82 1318{\r
0f7aff72
RN
1319 EFI_STATUS Status;\r
1320 VARIABLE_STORE_HEADER *VariableStoreHeader[VariableStoreTypeMax];\r
1321 VARIABLE_STORE_TYPE Type;\r
1322\r
1323 if (VariableName[0] != 0 && VendorGuid == NULL) {\r
1324 return EFI_INVALID_PARAMETER;\r
1325 }\r
8d3a5c82 1326\r
8d3a5c82 1327 //\r
0f7aff72 1328 // 0: Volatile, 1: HOB, 2: Non-Volatile.\r
36873a61 1329 // The index and attributes mapping must be kept in this order as RuntimeServiceGetNextVariableName\r
8a2d4996 1330 // make use of this mapping to implement search algorithm.\r
8d3a5c82 1331 //\r
0f7aff72
RN
1332 VariableStoreHeader[VariableStoreTypeVolatile] = (VARIABLE_STORE_HEADER *) (UINTN) Global->VolatileVariableBase;\r
1333 VariableStoreHeader[VariableStoreTypeHob] = (VARIABLE_STORE_HEADER *) (UINTN) Global->HobVariableBase;\r
1334 VariableStoreHeader[VariableStoreTypeNv] = mNvVariableCache;\r
8d3a5c82 1335\r
1336 //\r
0f7aff72 1337 // Find the variable by walk through HOB, volatile and non-volatile variable store.\r
8d3a5c82 1338 //\r
0f7aff72
RN
1339 for (Type = (VARIABLE_STORE_TYPE) 0; Type < VariableStoreTypeMax; Type++) {\r
1340 if (VariableStoreHeader[Type] == NULL) {\r
1341 continue;\r
1342 }\r
814bae52 1343\r
0f7aff72
RN
1344 PtrTrack->StartPtr = GetStartPointer (VariableStoreHeader[Type]);\r
1345 PtrTrack->EndPtr = GetEndPointer (VariableStoreHeader[Type]);\r
1346 PtrTrack->Volatile = (BOOLEAN) (Type == VariableStoreTypeVolatile);\r
8d3a5c82 1347\r
9622df63 1348 Status = FindVariableEx (VariableName, VendorGuid, IgnoreRtCheck, PtrTrack);\r
0f7aff72
RN
1349 if (!EFI_ERROR (Status)) {\r
1350 return Status;\r
814bae52 1351 }\r
8d3a5c82 1352 }\r
8d3a5c82 1353 return EFI_NOT_FOUND;\r
1354}\r
1355\r
7c80e839 1356/**\r
72399dae 1357 Get index from supported language codes according to language string.\r
1358\r
1359 This code is used to get corresponding index in supported language codes. It can handle\r
0254efc0 1360 RFC4646 and ISO639 language tags.\r
72399dae 1361 In ISO639 language tags, take 3-characters as a delimitation to find matched string and calculate the index.\r
0254efc0 1362 In RFC4646 language tags, take semicolon as a delimitation to find matched string and calculate the index.\r
72399dae 1363\r
1364 For example:\r
1365 SupportedLang = "engfraengfra"\r
1366 Lang = "eng"\r
1367 Iso639Language = TRUE\r
1368 The return value is "0".\r
1369 Another example:\r
1370 SupportedLang = "en;fr;en-US;fr-FR"\r
1371 Lang = "fr-FR"\r
1372 Iso639Language = FALSE\r
1373 The return value is "3".\r
1374\r
1375 @param SupportedLang Platform supported language codes.\r
1376 @param Lang Configured language.\r
0254efc0 1377 @param Iso639Language A bool value to signify if the handler is operated on ISO639 or RFC4646.\r
72399dae 1378\r
8a2d4996 1379 @retval The index of language in the language codes.\r
8d3a5c82 1380\r
7c80e839 1381**/\r
72399dae 1382UINTN\r
72399dae 1383GetIndexFromSupportedLangCodes(\r
1384 IN CHAR8 *SupportedLang,\r
1385 IN CHAR8 *Lang,\r
1386 IN BOOLEAN Iso639Language\r
fa0737a8 1387 )\r
8d3a5c82 1388{\r
72399dae 1389 UINTN Index;\r
255a3f33
RN
1390 UINTN CompareLength;\r
1391 UINTN LanguageLength;\r
72399dae 1392\r
72399dae 1393 if (Iso639Language) {\r
255a3f33 1394 CompareLength = ISO_639_2_ENTRY_SIZE;\r
72399dae 1395 for (Index = 0; Index < AsciiStrLen (SupportedLang); Index += CompareLength) {\r
1396 if (AsciiStrnCmp (Lang, SupportedLang + Index, CompareLength) == 0) {\r
1397 //\r
1398 // Successfully find the index of Lang string in SupportedLang string.\r
1399 //\r
1400 Index = Index / CompareLength;\r
1401 return Index;\r
1402 }\r
1403 }\r
1404 ASSERT (FALSE);\r
1405 return 0;\r
1406 } else {\r
1407 //\r
0254efc0 1408 // Compare RFC4646 language code\r
72399dae 1409 //\r
255a3f33
RN
1410 Index = 0;\r
1411 for (LanguageLength = 0; Lang[LanguageLength] != '\0'; LanguageLength++);\r
1412\r
1413 for (Index = 0; *SupportedLang != '\0'; Index++, SupportedLang += CompareLength) {\r
72399dae 1414 //\r
255a3f33 1415 // Skip ';' characters in SupportedLang\r
72399dae 1416 //\r
255a3f33
RN
1417 for (; *SupportedLang != '\0' && *SupportedLang == ';'; SupportedLang++);\r
1418 //\r
1419 // Determine the length of the next language code in SupportedLang\r
1420 //\r
1421 for (CompareLength = 0; SupportedLang[CompareLength] != '\0' && SupportedLang[CompareLength] != ';'; CompareLength++);\r
fa0737a8
SZ
1422\r
1423 if ((CompareLength == LanguageLength) &&\r
255a3f33 1424 (AsciiStrnCmp (Lang, SupportedLang, CompareLength) == 0)) {\r
72399dae 1425 //\r
1426 // Successfully find the index of Lang string in SupportedLang string.\r
1427 //\r
1428 return Index;\r
1429 }\r
72399dae 1430 }\r
1431 ASSERT (FALSE);\r
1432 return 0;\r
8d3a5c82 1433 }\r
72399dae 1434}\r
33a5a666 1435\r
72399dae 1436/**\r
1437 Get language string from supported language codes according to index.\r
1438\r
8a2d4996 1439 This code is used to get corresponding language strings in supported language codes. It can handle\r
0254efc0 1440 RFC4646 and ISO639 language tags.\r
72399dae 1441 In ISO639 language tags, take 3-characters as a delimitation. Find language string according to the index.\r
0254efc0 1442 In RFC4646 language tags, take semicolon as a delimitation. Find language string according to the index.\r
72399dae 1443\r
1444 For example:\r
1445 SupportedLang = "engfraengfra"\r
1446 Index = "1"\r
1447 Iso639Language = TRUE\r
1448 The return value is "fra".\r
1449 Another example:\r
1450 SupportedLang = "en;fr;en-US;fr-FR"\r
1451 Index = "1"\r
1452 Iso639Language = FALSE\r
1453 The return value is "fr".\r
1454\r
1455 @param SupportedLang Platform supported language codes.\r
8a2d4996 1456 @param Index The index in supported language codes.\r
0254efc0 1457 @param Iso639Language A bool value to signify if the handler is operated on ISO639 or RFC4646.\r
72399dae 1458\r
8a2d4996 1459 @retval The language string in the language codes.\r
8d3a5c82 1460\r
72399dae 1461**/\r
1462CHAR8 *\r
72399dae 1463GetLangFromSupportedLangCodes (\r
1464 IN CHAR8 *SupportedLang,\r
1465 IN UINTN Index,\r
1466 IN BOOLEAN Iso639Language\r
1467)\r
1468{\r
1469 UINTN SubIndex;\r
255a3f33 1470 UINTN CompareLength;\r
72399dae 1471 CHAR8 *Supported;\r
8d3a5c82 1472\r
72399dae 1473 SubIndex = 0;\r
1474 Supported = SupportedLang;\r
1475 if (Iso639Language) {\r
1476 //\r
8a2d4996 1477 // According to the index of Lang string in SupportedLang string to get the language.\r
1478 // This code will be invoked in RUNTIME, therefore there is not a memory allocate/free operation.\r
72399dae 1479 // In driver entry, it pre-allocates a runtime attribute memory to accommodate this string.\r
1480 //\r
255a3f33
RN
1481 CompareLength = ISO_639_2_ENTRY_SIZE;\r
1482 mVariableModuleGlobal->Lang[CompareLength] = '\0';\r
72399dae 1483 return CopyMem (mVariableModuleGlobal->Lang, SupportedLang + Index * CompareLength, CompareLength);\r
f68af18e 1484\r
8d3a5c82 1485 } else {\r
72399dae 1486 while (TRUE) {\r
1487 //\r
8a2d4996 1488 // Take semicolon as delimitation, sequentially traverse supported language codes.\r
72399dae 1489 //\r
1490 for (CompareLength = 0; *Supported != ';' && *Supported != '\0'; CompareLength++) {\r
1491 Supported++;\r
1492 }\r
1493 if ((*Supported == '\0') && (SubIndex != Index)) {\r
1494 //\r
1495 // Have completed the traverse, but not find corrsponding string.\r
1496 // This case is not allowed to happen.\r
1497 //\r
1498 ASSERT(FALSE);\r
1499 return NULL;\r
1500 }\r
1501 if (SubIndex == Index) {\r
1502 //\r
8a2d4996 1503 // According to the index of Lang string in SupportedLang string to get the language.\r
72399dae 1504 // As this code will be invoked in RUNTIME, therefore there is not memory allocate/free operation.\r
1505 // In driver entry, it pre-allocates a runtime attribute memory to accommodate this string.\r
1506 //\r
255a3f33 1507 mVariableModuleGlobal->PlatformLang[CompareLength] = '\0';\r
72399dae 1508 return CopyMem (mVariableModuleGlobal->PlatformLang, Supported - CompareLength, CompareLength);\r
1509 }\r
1510 SubIndex++;\r
8a2d4996 1511\r
5c033766
RN
1512 //\r
1513 // Skip ';' characters in Supported\r
1514 //\r
1515 for (; *Supported != '\0' && *Supported == ';'; Supported++);\r
72399dae 1516 }\r
8d3a5c82 1517 }\r
8d3a5c82 1518}\r
1519\r
255a3f33 1520/**\r
fa0737a8
SZ
1521 Returns a pointer to an allocated buffer that contains the best matching language\r
1522 from a set of supported languages.\r
1523\r
1524 This function supports both ISO 639-2 and RFC 4646 language codes, but language\r
255a3f33
RN
1525 code types may not be mixed in a single call to this function. This function\r
1526 supports a variable argument list that allows the caller to pass in a prioritized\r
1527 list of language codes to test against all the language codes in SupportedLanguages.\r
1528\r
1529 If SupportedLanguages is NULL, then ASSERT().\r
1530\r
1531 @param[in] SupportedLanguages A pointer to a Null-terminated ASCII string that\r
fa0737a8 1532 contains a set of language codes in the format\r
255a3f33 1533 specified by Iso639Language.\r
051bf6e0
LG
1534 @param[in] Iso639Language If not zero, then all language codes are assumed to be\r
1535 in ISO 639-2 format. If zero, then all language\r
255a3f33 1536 codes are assumed to be in RFC 4646 language format\r
fa0737a8 1537 @param[in] ... A variable argument list that contains pointers to\r
255a3f33
RN
1538 Null-terminated ASCII strings that contain one or more\r
1539 language codes in the format specified by Iso639Language.\r
1540 The first language code from each of these language\r
1541 code lists is used to determine if it is an exact or\r
fa0737a8 1542 close match to any of the language codes in\r
255a3f33
RN
1543 SupportedLanguages. Close matches only apply to RFC 4646\r
1544 language codes, and the matching algorithm from RFC 4647\r
fa0737a8 1545 is used to determine if a close match is present. If\r
255a3f33
RN
1546 an exact or close match is found, then the matching\r
1547 language code from SupportedLanguages is returned. If\r
1548 no matches are found, then the next variable argument\r
fa0737a8 1549 parameter is evaluated. The variable argument list\r
255a3f33
RN
1550 is terminated by a NULL.\r
1551\r
1552 @retval NULL The best matching language could not be found in SupportedLanguages.\r
fa0737a8 1553 @retval NULL There are not enough resources available to return the best matching\r
255a3f33 1554 language.\r
fa0737a8 1555 @retval Other A pointer to a Null-terminated ASCII string that is the best matching\r
255a3f33
RN
1556 language in SupportedLanguages.\r
1557\r
1558**/\r
1559CHAR8 *\r
e1adae60 1560EFIAPI\r
255a3f33 1561VariableGetBestLanguage (\r
fa0737a8 1562 IN CONST CHAR8 *SupportedLanguages,\r
180ac200 1563 IN UINTN Iso639Language,\r
255a3f33
RN
1564 ...\r
1565 )\r
1566{\r
1567 VA_LIST Args;\r
1568 CHAR8 *Language;\r
1569 UINTN CompareLength;\r
1570 UINTN LanguageLength;\r
1571 CONST CHAR8 *Supported;\r
1572 CHAR8 *Buffer;\r
1573\r
fa0737a8
SZ
1574 if (SupportedLanguages == NULL) {\r
1575 return NULL;\r
1576 }\r
255a3f33
RN
1577\r
1578 VA_START (Args, Iso639Language);\r
1579 while ((Language = VA_ARG (Args, CHAR8 *)) != NULL) {\r
1580 //\r
1581 // Default to ISO 639-2 mode\r
1582 //\r
1583 CompareLength = 3;\r
1584 LanguageLength = MIN (3, AsciiStrLen (Language));\r
1585\r
1586 //\r
1587 // If in RFC 4646 mode, then determine the length of the first RFC 4646 language code in Language\r
1588 //\r
051bf6e0 1589 if (Iso639Language == 0) {\r
255a3f33
RN
1590 for (LanguageLength = 0; Language[LanguageLength] != 0 && Language[LanguageLength] != ';'; LanguageLength++);\r
1591 }\r
1592\r
1593 //\r
1594 // Trim back the length of Language used until it is empty\r
1595 //\r
1596 while (LanguageLength > 0) {\r
1597 //\r
1598 // Loop through all language codes in SupportedLanguages\r
1599 //\r
1600 for (Supported = SupportedLanguages; *Supported != '\0'; Supported += CompareLength) {\r
1601 //\r
1602 // In RFC 4646 mode, then Loop through all language codes in SupportedLanguages\r
1603 //\r
051bf6e0 1604 if (Iso639Language == 0) {\r
255a3f33
RN
1605 //\r
1606 // Skip ';' characters in Supported\r
1607 //\r
1608 for (; *Supported != '\0' && *Supported == ';'; Supported++);\r
1609 //\r
1610 // Determine the length of the next language code in Supported\r
1611 //\r
1612 for (CompareLength = 0; Supported[CompareLength] != 0 && Supported[CompareLength] != ';'; CompareLength++);\r
1613 //\r
1614 // If Language is longer than the Supported, then skip to the next language\r
1615 //\r
1616 if (LanguageLength > CompareLength) {\r
1617 continue;\r
1618 }\r
1619 }\r
1620 //\r
1621 // See if the first LanguageLength characters in Supported match Language\r
1622 //\r
1623 if (AsciiStrnCmp (Supported, Language, LanguageLength) == 0) {\r
1624 VA_END (Args);\r
1625\r
051bf6e0 1626 Buffer = (Iso639Language != 0) ? mVariableModuleGlobal->Lang : mVariableModuleGlobal->PlatformLang;\r
255a3f33
RN
1627 Buffer[CompareLength] = '\0';\r
1628 return CopyMem (Buffer, Supported, CompareLength);\r
1629 }\r
1630 }\r
1631\r
051bf6e0 1632 if (Iso639Language != 0) {\r
255a3f33
RN
1633 //\r
1634 // If ISO 639 mode, then each language can only be tested once\r
1635 //\r
1636 LanguageLength = 0;\r
1637 } else {\r
1638 //\r
fa0737a8 1639 // If RFC 4646 mode, then trim Language from the right to the next '-' character\r
255a3f33
RN
1640 //\r
1641 for (LanguageLength--; LanguageLength > 0 && Language[LanguageLength] != '-'; LanguageLength--);\r
1642 }\r
1643 }\r
1644 }\r
1645 VA_END (Args);\r
1646\r
1647 //\r
fa0737a8 1648 // No matches were found\r
255a3f33
RN
1649 //\r
1650 return NULL;\r
1651}\r
1652\r
b2bd493e
SZ
1653/**\r
1654 This function is to check if the remaining variable space is enough to set\r
1655 all Variables from argument list successfully. The purpose of the check\r
1656 is to keep the consistency of the Variables to be in variable storage.\r
1657\r
1658 Note: Variables are assumed to be in same storage.\r
1659 The set sequence of Variables will be same with the sequence of VariableEntry from argument list,\r
1660 so follow the argument sequence to check the Variables.\r
1661\r
1662 @param[in] Attributes Variable attributes for Variable entries.\r
fa0737a8
SZ
1663 @param[in] Marker VA_LIST style variable argument list.\r
1664 The variable argument list with type VARIABLE_ENTRY_CONSISTENCY *.\r
1665 A NULL terminates the list. The VariableSize of\r
9a12e582
DG
1666 VARIABLE_ENTRY_CONSISTENCY is the variable data size as input.\r
1667 It will be changed to variable total size as output.\r
b2bd493e
SZ
1668\r
1669 @retval TRUE Have enough variable space to set the Variables successfully.\r
1670 @retval FALSE No enough variable space to set the Variables successfully.\r
1671\r
1672**/\r
1673BOOLEAN\r
1674EFIAPI\r
fa0737a8 1675CheckRemainingSpaceForConsistencyInternal (\r
b2bd493e 1676 IN UINT32 Attributes,\r
fa0737a8 1677 IN VA_LIST Marker\r
b2bd493e
SZ
1678 )\r
1679{\r
1680 EFI_STATUS Status;\r
1681 VA_LIST Args;\r
1682 VARIABLE_ENTRY_CONSISTENCY *VariableEntry;\r
1683 UINT64 MaximumVariableStorageSize;\r
1684 UINT64 RemainingVariableStorageSize;\r
1685 UINT64 MaximumVariableSize;\r
1686 UINTN TotalNeededSize;\r
1687 UINTN OriginalVarSize;\r
1688 VARIABLE_STORE_HEADER *VariableStoreHeader;\r
1689 VARIABLE_POINTER_TRACK VariablePtrTrack;\r
1690 VARIABLE_HEADER *NextVariable;\r
9a12e582
DG
1691 UINTN VarNameSize;\r
1692 UINTN VarDataSize;\r
b2bd493e
SZ
1693\r
1694 //\r
1695 // Non-Volatile related.\r
1696 //\r
1697 VariableStoreHeader = mNvVariableCache;\r
1698\r
1699 Status = VariableServiceQueryVariableInfoInternal (\r
1700 Attributes,\r
1701 &MaximumVariableStorageSize,\r
1702 &RemainingVariableStorageSize,\r
1703 &MaximumVariableSize\r
1704 );\r
1705 ASSERT_EFI_ERROR (Status);\r
1706\r
1707 TotalNeededSize = 0;\r
b7789dc6 1708 VA_COPY (Args, Marker);\r
b2bd493e
SZ
1709 VariableEntry = VA_ARG (Args, VARIABLE_ENTRY_CONSISTENCY *);\r
1710 while (VariableEntry != NULL) {\r
9a12e582
DG
1711 //\r
1712 // Calculate variable total size.\r
1713 //\r
1714 VarNameSize = StrSize (VariableEntry->Name);\r
1715 VarNameSize += GET_PAD_SIZE (VarNameSize);\r
1716 VarDataSize = VariableEntry->VariableSize;\r
1717 VarDataSize += GET_PAD_SIZE (VarDataSize);\r
fa0737a8 1718 VariableEntry->VariableSize = HEADER_ALIGN (GetVariableHeaderSize () + VarNameSize + VarDataSize);\r
9a12e582 1719\r
b2bd493e
SZ
1720 TotalNeededSize += VariableEntry->VariableSize;\r
1721 VariableEntry = VA_ARG (Args, VARIABLE_ENTRY_CONSISTENCY *);\r
1722 }\r
415700ec 1723 VA_END (Args);\r
b2bd493e
SZ
1724\r
1725 if (RemainingVariableStorageSize >= TotalNeededSize) {\r
1726 //\r
1727 // Already have enough space.\r
1728 //\r
1729 return TRUE;\r
1730 } else if (AtRuntime ()) {\r
1731 //\r
1732 // At runtime, no reclaim.\r
1733 // The original variable space of Variables can't be reused.\r
1734 //\r
1735 return FALSE;\r
1736 }\r
1737\r
b7789dc6 1738 VA_COPY (Args, Marker);\r
b2bd493e
SZ
1739 VariableEntry = VA_ARG (Args, VARIABLE_ENTRY_CONSISTENCY *);\r
1740 while (VariableEntry != NULL) {\r
1741 //\r
1742 // Check if Variable[Index] has been present and get its size.\r
1743 //\r
1744 OriginalVarSize = 0;\r
1745 VariablePtrTrack.StartPtr = GetStartPointer (VariableStoreHeader);\r
1746 VariablePtrTrack.EndPtr = GetEndPointer (VariableStoreHeader);\r
1747 Status = FindVariableEx (\r
1748 VariableEntry->Name,\r
1749 VariableEntry->Guid,\r
1750 FALSE,\r
1751 &VariablePtrTrack\r
1752 );\r
1753 if (!EFI_ERROR (Status)) {\r
1754 //\r
1755 // Get size of Variable[Index].\r
1756 //\r
1757 NextVariable = GetNextVariablePtr (VariablePtrTrack.CurrPtr);\r
1758 OriginalVarSize = (UINTN) NextVariable - (UINTN) VariablePtrTrack.CurrPtr;\r
1759 //\r
1760 // Add the original size of Variable[Index] to remaining variable storage size.\r
1761 //\r
1762 RemainingVariableStorageSize += OriginalVarSize;\r
1763 }\r
1764 if (VariableEntry->VariableSize > RemainingVariableStorageSize) {\r
1765 //\r
1766 // No enough space for Variable[Index].\r
1767 //\r
a0460be7 1768 VA_END (Args);\r
b2bd493e
SZ
1769 return FALSE;\r
1770 }\r
1771 //\r
1772 // Sub the (new) size of Variable[Index] from remaining variable storage size.\r
1773 //\r
1774 RemainingVariableStorageSize -= VariableEntry->VariableSize;\r
1775 VariableEntry = VA_ARG (Args, VARIABLE_ENTRY_CONSISTENCY *);\r
1776 }\r
415700ec 1777 VA_END (Args);\r
b2bd493e
SZ
1778\r
1779 return TRUE;\r
1780}\r
1781\r
fa0737a8
SZ
1782/**\r
1783 This function is to check if the remaining variable space is enough to set\r
1784 all Variables from argument list successfully. The purpose of the check\r
1785 is to keep the consistency of the Variables to be in variable storage.\r
1786\r
1787 Note: Variables are assumed to be in same storage.\r
1788 The set sequence of Variables will be same with the sequence of VariableEntry from argument list,\r
1789 so follow the argument sequence to check the Variables.\r
1790\r
1791 @param[in] Attributes Variable attributes for Variable entries.\r
1792 @param ... The variable argument list with type VARIABLE_ENTRY_CONSISTENCY *.\r
1793 A NULL terminates the list. The VariableSize of\r
1794 VARIABLE_ENTRY_CONSISTENCY is the variable data size as input.\r
1795 It will be changed to variable total size as output.\r
1796\r
1797 @retval TRUE Have enough variable space to set the Variables successfully.\r
1798 @retval FALSE No enough variable space to set the Variables successfully.\r
1799\r
1800**/\r
1801BOOLEAN\r
1802EFIAPI\r
1803CheckRemainingSpaceForConsistency (\r
1804 IN UINT32 Attributes,\r
1805 ...\r
1806 )\r
1807{\r
1808 VA_LIST Marker;\r
1809 BOOLEAN Return;\r
1810\r
1811 VA_START (Marker, Attributes);\r
1812\r
1813 Return = CheckRemainingSpaceForConsistencyInternal (Attributes, Marker);\r
1814\r
1815 VA_END (Marker);\r
1816\r
1817 return Return;\r
1818}\r
1819\r
72399dae 1820/**\r
1821 Hook the operations in PlatformLangCodes, LangCodes, PlatformLang and Lang.\r
052ad7e1 1822\r
72399dae 1823 When setting Lang/LangCodes, simultaneously update PlatformLang/PlatformLangCodes.\r
052ad7e1 1824\r
72399dae 1825 According to UEFI spec, PlatformLangCodes/LangCodes are only set once in firmware initialization,\r
1826 and are read-only. Therefore, in variable driver, only store the original value for other use.\r
8d3a5c82 1827\r
8a2d4996 1828 @param[in] VariableName Name of variable.\r
8d3a5c82 1829\r
8a2d4996 1830 @param[in] Data Variable data.\r
8d3a5c82 1831\r
8a2d4996 1832 @param[in] DataSize Size of data. 0 means delete.\r
72399dae 1833\r
9bc5dabb
SZ
1834 @retval EFI_SUCCESS The update operation is successful or ignored.\r
1835 @retval EFI_WRITE_PROTECTED Update PlatformLangCodes/LangCodes at runtime.\r
1836 @retval EFI_OUT_OF_RESOURCES No enough variable space to do the update operation.\r
1837 @retval Others Other errors happened during the update operation.\r
1838\r
7c80e839 1839**/\r
9bc5dabb 1840EFI_STATUS\r
d6550260 1841AutoUpdateLangVariable (\r
72399dae 1842 IN CHAR16 *VariableName,\r
1843 IN VOID *Data,\r
1844 IN UINTN DataSize\r
052ad7e1 1845 )\r
8d3a5c82 1846{\r
255a3f33
RN
1847 EFI_STATUS Status;\r
1848 CHAR8 *BestPlatformLang;\r
1849 CHAR8 *BestLang;\r
1850 UINTN Index;\r
1851 UINT32 Attributes;\r
72399dae 1852 VARIABLE_POINTER_TRACK Variable;\r
255a3f33 1853 BOOLEAN SetLanguageCodes;\r
b2bd493e 1854 VARIABLE_ENTRY_CONSISTENCY VariableEntry[2];\r
8d3a5c82 1855\r
72399dae 1856 //\r
255a3f33 1857 // Don't do updates for delete operation\r
72399dae 1858 //\r
255a3f33 1859 if (DataSize == 0) {\r
9bc5dabb 1860 return EFI_SUCCESS;\r
255a3f33
RN
1861 }\r
1862\r
1863 SetLanguageCodes = FALSE;\r
8d3a5c82 1864\r
6675a21f 1865 if (StrCmp (VariableName, EFI_PLATFORM_LANG_CODES_VARIABLE_NAME) == 0) {\r
255a3f33
RN
1866 //\r
1867 // PlatformLangCodes is a volatile variable, so it can not be updated at runtime.\r
1868 //\r
8a2d4996 1869 if (AtRuntime ()) {\r
9bc5dabb 1870 return EFI_WRITE_PROTECTED;\r
255a3f33
RN
1871 }\r
1872\r
1873 SetLanguageCodes = TRUE;\r
1874\r
72399dae 1875 //\r
1876 // According to UEFI spec, PlatformLangCodes is only set once in firmware initialization, and is read-only\r
1877 // Therefore, in variable driver, only store the original value for other use.\r
1878 //\r
255a3f33
RN
1879 if (mVariableModuleGlobal->PlatformLangCodes != NULL) {\r
1880 FreePool (mVariableModuleGlobal->PlatformLangCodes);\r
1881 }\r
1882 mVariableModuleGlobal->PlatformLangCodes = AllocateRuntimeCopyPool (DataSize, Data);\r
1883 ASSERT (mVariableModuleGlobal->PlatformLangCodes != NULL);\r
1884\r
72399dae 1885 //\r
fa0737a8 1886 // PlatformLang holds a single language from PlatformLangCodes,\r
255a3f33 1887 // so the size of PlatformLangCodes is enough for the PlatformLang.\r
72399dae 1888 //\r
255a3f33
RN
1889 if (mVariableModuleGlobal->PlatformLang != NULL) {\r
1890 FreePool (mVariableModuleGlobal->PlatformLang);\r
1891 }\r
1892 mVariableModuleGlobal->PlatformLang = AllocateRuntimePool (DataSize);\r
1893 ASSERT (mVariableModuleGlobal->PlatformLang != NULL);\r
fdb7765f 1894\r
6675a21f 1895 } else if (StrCmp (VariableName, EFI_LANG_CODES_VARIABLE_NAME) == 0) {\r
72399dae 1896 //\r
255a3f33 1897 // LangCodes is a volatile variable, so it can not be updated at runtime.\r
72399dae 1898 //\r
8a2d4996 1899 if (AtRuntime ()) {\r
9bc5dabb 1900 return EFI_WRITE_PROTECTED;\r
255a3f33
RN
1901 }\r
1902\r
1903 SetLanguageCodes = TRUE;\r
8d3a5c82 1904\r
8d3a5c82 1905 //\r
255a3f33
RN
1906 // According to UEFI spec, LangCodes is only set once in firmware initialization, and is read-only\r
1907 // Therefore, in variable driver, only store the original value for other use.\r
8d3a5c82 1908 //\r
255a3f33
RN
1909 if (mVariableModuleGlobal->LangCodes != NULL) {\r
1910 FreePool (mVariableModuleGlobal->LangCodes);\r
1911 }\r
1912 mVariableModuleGlobal->LangCodes = AllocateRuntimeCopyPool (DataSize, Data);\r
1913 ASSERT (mVariableModuleGlobal->LangCodes != NULL);\r
1914 }\r
8d3a5c82 1915\r
fa0737a8 1916 if (SetLanguageCodes\r
255a3f33
RN
1917 && (mVariableModuleGlobal->PlatformLangCodes != NULL)\r
1918 && (mVariableModuleGlobal->LangCodes != NULL)) {\r
8d3a5c82 1919 //\r
255a3f33
RN
1920 // Update Lang if PlatformLang is already set\r
1921 // Update PlatformLang if Lang is already set\r
8d3a5c82 1922 //\r
6675a21f 1923 Status = FindVariable (EFI_PLATFORM_LANG_VARIABLE_NAME, &gEfiGlobalVariableGuid, &Variable, &mVariableModuleGlobal->VariableGlobal, FALSE);\r
255a3f33
RN
1924 if (!EFI_ERROR (Status)) {\r
1925 //\r
1926 // Update Lang\r
1927 //\r
6675a21f 1928 VariableName = EFI_PLATFORM_LANG_VARIABLE_NAME;\r
255a3f33 1929 Data = GetVariableDataPtr (Variable.CurrPtr);\r
fa0737a8 1930 DataSize = DataSizeOfVariable (Variable.CurrPtr);\r
255a3f33 1931 } else {\r
6675a21f 1932 Status = FindVariable (EFI_LANG_VARIABLE_NAME, &gEfiGlobalVariableGuid, &Variable, &mVariableModuleGlobal->VariableGlobal, FALSE);\r
255a3f33
RN
1933 if (!EFI_ERROR (Status)) {\r
1934 //\r
1935 // Update PlatformLang\r
1936 //\r
6675a21f 1937 VariableName = EFI_LANG_VARIABLE_NAME;\r
255a3f33 1938 Data = GetVariableDataPtr (Variable.CurrPtr);\r
fa0737a8 1939 DataSize = DataSizeOfVariable (Variable.CurrPtr);\r
255a3f33
RN
1940 } else {\r
1941 //\r
1942 // Neither PlatformLang nor Lang is set, directly return\r
1943 //\r
9bc5dabb 1944 return EFI_SUCCESS;\r
255a3f33
RN
1945 }\r
1946 }\r
1947 }\r
9bc5dabb
SZ
1948\r
1949 Status = EFI_SUCCESS;\r
1950\r
255a3f33
RN
1951 //\r
1952 // According to UEFI spec, "Lang" and "PlatformLang" is NV|BS|RT attributions.\r
1953 //\r
1954 Attributes = EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS;\r
8d3a5c82 1955\r
6675a21f 1956 if (StrCmp (VariableName, EFI_PLATFORM_LANG_VARIABLE_NAME) == 0) {\r
8d3a5c82 1957 //\r
255a3f33 1958 // Update Lang when PlatformLangCodes/LangCodes were set.\r
8d3a5c82 1959 //\r
255a3f33
RN
1960 if ((mVariableModuleGlobal->PlatformLangCodes != NULL) && (mVariableModuleGlobal->LangCodes != NULL)) {\r
1961 //\r
1962 // When setting PlatformLang, firstly get most matched language string from supported language codes.\r
1963 //\r
1964 BestPlatformLang = VariableGetBestLanguage (mVariableModuleGlobal->PlatformLangCodes, FALSE, Data, NULL);\r
1965 if (BestPlatformLang != NULL) {\r
1966 //\r
1967 // Get the corresponding index in language codes.\r
1968 //\r
1969 Index = GetIndexFromSupportedLangCodes (mVariableModuleGlobal->PlatformLangCodes, BestPlatformLang, FALSE);\r
fdb7765f 1970\r
255a3f33
RN
1971 //\r
1972 // Get the corresponding ISO639 language tag according to RFC4646 language tag.\r
1973 //\r
1974 BestLang = GetLangFromSupportedLangCodes (mVariableModuleGlobal->LangCodes, Index, TRUE);\r
8d3a5c82 1975\r
255a3f33 1976 //\r
9a12e582 1977 // Check the variable space for both Lang and PlatformLang variable.\r
b2bd493e 1978 //\r
9a12e582 1979 VariableEntry[0].VariableSize = ISO_639_2_ENTRY_SIZE + 1;\r
b2bd493e
SZ
1980 VariableEntry[0].Guid = &gEfiGlobalVariableGuid;\r
1981 VariableEntry[0].Name = EFI_LANG_VARIABLE_NAME;\r
fa0737a8 1982\r
9a12e582 1983 VariableEntry[1].VariableSize = AsciiStrSize (BestPlatformLang);\r
b2bd493e
SZ
1984 VariableEntry[1].Guid = &gEfiGlobalVariableGuid;\r
1985 VariableEntry[1].Name = EFI_PLATFORM_LANG_VARIABLE_NAME;\r
1986 if (!CheckRemainingSpaceForConsistency (VARIABLE_ATTRIBUTE_NV_BS_RT, &VariableEntry[0], &VariableEntry[1], NULL)) {\r
1987 //\r
1988 // No enough variable space to set both Lang and PlatformLang successfully.\r
1989 //\r
1990 Status = EFI_OUT_OF_RESOURCES;\r
1991 } else {\r
1992 //\r
1993 // Successfully convert PlatformLang to Lang, and set the BestLang value into Lang variable simultaneously.\r
1994 //\r
1995 FindVariable (EFI_LANG_VARIABLE_NAME, &gEfiGlobalVariableGuid, &Variable, &mVariableModuleGlobal->VariableGlobal, FALSE);\r
8d3a5c82 1996\r
b2bd493e 1997 Status = UpdateVariable (EFI_LANG_VARIABLE_NAME, &gEfiGlobalVariableGuid, BestLang,\r
fa0737a8 1998 ISO_639_2_ENTRY_SIZE + 1, Attributes, 0, 0, &Variable, NULL);\r
b2bd493e 1999 }\r
8d3a5c82 2000\r
b2bd493e 2001 DEBUG ((EFI_D_INFO, "Variable Driver Auto Update PlatformLang, PlatformLang:%a, Lang:%a Status: %r\n", BestPlatformLang, BestLang, Status));\r
255a3f33
RN
2002 }\r
2003 }\r
72399dae 2004\r
6675a21f 2005 } else if (StrCmp (VariableName, EFI_LANG_VARIABLE_NAME) == 0) {\r
72399dae 2006 //\r
255a3f33 2007 // Update PlatformLang when PlatformLangCodes/LangCodes were set.\r
72399dae 2008 //\r
255a3f33
RN
2009 if ((mVariableModuleGlobal->PlatformLangCodes != NULL) && (mVariableModuleGlobal->LangCodes != NULL)) {\r
2010 //\r
2011 // When setting Lang, firstly get most matched language string from supported language codes.\r
2012 //\r
2013 BestLang = VariableGetBestLanguage (mVariableModuleGlobal->LangCodes, TRUE, Data, NULL);\r
2014 if (BestLang != NULL) {\r
2015 //\r
2016 // Get the corresponding index in language codes.\r
2017 //\r
2018 Index = GetIndexFromSupportedLangCodes (mVariableModuleGlobal->LangCodes, BestLang, TRUE);\r
72399dae 2019\r
255a3f33
RN
2020 //\r
2021 // Get the corresponding RFC4646 language tag according to ISO639 language tag.\r
2022 //\r
2023 BestPlatformLang = GetLangFromSupportedLangCodes (mVariableModuleGlobal->PlatformLangCodes, Index, FALSE);\r
2024\r
2025 //\r
9a12e582 2026 // Check the variable space for both PlatformLang and Lang variable.\r
b2bd493e 2027 //\r
9a12e582 2028 VariableEntry[0].VariableSize = AsciiStrSize (BestPlatformLang);\r
b2bd493e
SZ
2029 VariableEntry[0].Guid = &gEfiGlobalVariableGuid;\r
2030 VariableEntry[0].Name = EFI_PLATFORM_LANG_VARIABLE_NAME;\r
9a12e582
DG
2031\r
2032 VariableEntry[1].VariableSize = ISO_639_2_ENTRY_SIZE + 1;\r
b2bd493e
SZ
2033 VariableEntry[1].Guid = &gEfiGlobalVariableGuid;\r
2034 VariableEntry[1].Name = EFI_LANG_VARIABLE_NAME;\r
2035 if (!CheckRemainingSpaceForConsistency (VARIABLE_ATTRIBUTE_NV_BS_RT, &VariableEntry[0], &VariableEntry[1], NULL)) {\r
2036 //\r
2037 // No enough variable space to set both PlatformLang and Lang successfully.\r
2038 //\r
2039 Status = EFI_OUT_OF_RESOURCES;\r
2040 } else {\r
2041 //\r
2042 // Successfully convert Lang to PlatformLang, and set the BestPlatformLang value into PlatformLang variable simultaneously.\r
2043 //\r
2044 FindVariable (EFI_PLATFORM_LANG_VARIABLE_NAME, &gEfiGlobalVariableGuid, &Variable, &mVariableModuleGlobal->VariableGlobal, FALSE);\r
72399dae 2045\r
fa0737a8
SZ
2046 Status = UpdateVariable (EFI_PLATFORM_LANG_VARIABLE_NAME, &gEfiGlobalVariableGuid, BestPlatformLang,\r
2047 AsciiStrSize (BestPlatformLang), Attributes, 0, 0, &Variable, NULL);\r
b2bd493e 2048 }\r
72399dae 2049\r
9bc5dabb 2050 DEBUG ((EFI_D_INFO, "Variable Driver Auto Update Lang, Lang:%a, PlatformLang:%a Status: %r\n", BestLang, BestPlatformLang, Status));\r
255a3f33
RN
2051 }\r
2052 }\r
72399dae 2053 }\r
9bc5dabb 2054\r
b2bd493e
SZ
2055 if (SetLanguageCodes) {\r
2056 //\r
2057 // Continue to set PlatformLangCodes or LangCodes.\r
2058 //\r
2059 return EFI_SUCCESS;\r
2060 } else {\r
2061 return Status;\r
2062 }\r
8d3a5c82 2063}\r
2064\r
7c80e839 2065/**\r
fa0737a8
SZ
2066 Compare two EFI_TIME data.\r
2067\r
2068\r
2069 @param FirstTime A pointer to the first EFI_TIME data.\r
2070 @param SecondTime A pointer to the second EFI_TIME data.\r
2071\r
2072 @retval TRUE The FirstTime is not later than the SecondTime.\r
2073 @retval FALSE The FirstTime is later than the SecondTime.\r
2074\r
2075**/\r
2076BOOLEAN\r
2077VariableCompareTimeStampInternal (\r
2078 IN EFI_TIME *FirstTime,\r
2079 IN EFI_TIME *SecondTime\r
2080 )\r
2081{\r
2082 if (FirstTime->Year != SecondTime->Year) {\r
2083 return (BOOLEAN) (FirstTime->Year < SecondTime->Year);\r
2084 } else if (FirstTime->Month != SecondTime->Month) {\r
2085 return (BOOLEAN) (FirstTime->Month < SecondTime->Month);\r
2086 } else if (FirstTime->Day != SecondTime->Day) {\r
2087 return (BOOLEAN) (FirstTime->Day < SecondTime->Day);\r
2088 } else if (FirstTime->Hour != SecondTime->Hour) {\r
2089 return (BOOLEAN) (FirstTime->Hour < SecondTime->Hour);\r
2090 } else if (FirstTime->Minute != SecondTime->Minute) {\r
2091 return (BOOLEAN) (FirstTime->Minute < SecondTime->Minute);\r
2092 }\r
2093\r
2094 return (BOOLEAN) (FirstTime->Second <= SecondTime->Second);\r
2095}\r
2096\r
2097/**\r
2098 Update the variable region with Variable information. If EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS is set,\r
2099 index of associated public key is needed.\r
052ad7e1 2100\r
8a2d4996 2101 @param[in] VariableName Name of variable.\r
2102 @param[in] VendorGuid Guid of variable.\r
2103 @param[in] Data Variable data.\r
2104 @param[in] DataSize Size of data. 0 means delete.\r
fa0737a8
SZ
2105 @param[in] Attributes Attributes of the variable.\r
2106 @param[in] KeyIndex Index of associated public key.\r
2107 @param[in] MonotonicCount Value of associated monotonic count.\r
23b06935 2108 @param[in, out] CacheVariable The variable information which is used to keep track of variable usage.\r
fa0737a8
SZ
2109 @param[in] TimeStamp Value of associated TimeStamp.\r
2110\r
72399dae 2111 @retval EFI_SUCCESS The update operation is success.\r
72399dae 2112 @retval EFI_OUT_OF_RESOURCES Variable region is full, can not write other data into this region.\r
8d3a5c82 2113\r
7c80e839 2114**/\r
052ad7e1 2115EFI_STATUS\r
72399dae 2116UpdateVariable (\r
8a2d4996 2117 IN CHAR16 *VariableName,\r
2118 IN EFI_GUID *VendorGuid,\r
2119 IN VOID *Data,\r
2120 IN UINTN DataSize,\r
2121 IN UINT32 Attributes OPTIONAL,\r
fa0737a8
SZ
2122 IN UINT32 KeyIndex OPTIONAL,\r
2123 IN UINT64 MonotonicCount OPTIONAL,\r
2124 IN OUT VARIABLE_POINTER_TRACK *CacheVariable,\r
2125 IN EFI_TIME *TimeStamp OPTIONAL\r
052ad7e1 2126 )\r
8d3a5c82 2127{\r
8a9e0b72 2128 EFI_STATUS Status;\r
2129 VARIABLE_HEADER *NextVariable;\r
72399dae 2130 UINTN ScratchSize;\r
fa0737a8 2131 UINTN MaxDataSize;\r
8a9e0b72 2132 UINTN VarNameOffset;\r
2133 UINTN VarDataOffset;\r
72399dae 2134 UINTN VarNameSize;\r
8a9e0b72 2135 UINTN VarSize;\r
72399dae 2136 BOOLEAN Volatile;\r
2137 EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *Fvb;\r
8a9e0b72 2138 UINT8 State;\r
8a2d4996 2139 VARIABLE_POINTER_TRACK *Variable;\r
2140 VARIABLE_POINTER_TRACK NvVariable;\r
2141 VARIABLE_STORE_HEADER *VariableStoreHeader;\r
fa0737a8
SZ
2142 UINT8 *BufferForMerge;\r
2143 UINTN MergedBufSize;\r
2144 BOOLEAN DataReady;\r
2145 UINTN DataOffset;\r
4edb1866
SZ
2146 BOOLEAN IsCommonVariable;\r
2147 BOOLEAN IsCommonUserVariable;\r
fa0737a8 2148 AUTHENTICATED_VARIABLE_HEADER *AuthVariable;\r
fdb7765f 2149\r
fa0737a8 2150 if (mVariableModuleGlobal->FvbInstance == NULL) {\r
5456306f 2151 //\r
fa0737a8 2152 // The FVB protocol is not ready, so the EFI_VARIABLE_WRITE_ARCH_PROTOCOL is not installed.\r
5456306f 2153 //\r
fa0737a8
SZ
2154 if ((Attributes & EFI_VARIABLE_NON_VOLATILE) != 0) {\r
2155 //\r
2156 // Trying to update NV variable prior to the installation of EFI_VARIABLE_WRITE_ARCH_PROTOCOL\r
2157 //\r
2158 DEBUG ((EFI_D_ERROR, "Update NV variable before EFI_VARIABLE_WRITE_ARCH_PROTOCOL ready - %r\n", EFI_NOT_AVAILABLE_YET));\r
2159 return EFI_NOT_AVAILABLE_YET;\r
2160 } else if ((Attributes & VARIABLE_ATTRIBUTE_AT_AW) != 0) {\r
2161 //\r
2162 // Trying to update volatile authenticated variable prior to the installation of EFI_VARIABLE_WRITE_ARCH_PROTOCOL\r
2163 // The authenticated variable perhaps is not initialized, just return here.\r
2164 //\r
2165 DEBUG ((EFI_D_ERROR, "Update AUTH variable before EFI_VARIABLE_WRITE_ARCH_PROTOCOL ready - %r\n", EFI_NOT_AVAILABLE_YET));\r
2166 return EFI_NOT_AVAILABLE_YET;\r
2167 }\r
5456306f 2168 }\r
2169\r
31349131
SZ
2170 //\r
2171 // Check if CacheVariable points to the variable in variable HOB.\r
2172 // If yes, let CacheVariable points to the variable in NV variable cache.\r
2173 //\r
2174 if ((CacheVariable->CurrPtr != NULL) &&\r
2175 (mVariableModuleGlobal->VariableGlobal.HobVariableBase != 0) &&\r
2176 (CacheVariable->StartPtr == GetStartPointer ((VARIABLE_STORE_HEADER *) (UINTN) mVariableModuleGlobal->VariableGlobal.HobVariableBase))\r
2177 ) {\r
2178 CacheVariable->StartPtr = GetStartPointer (mNvVariableCache);\r
2179 CacheVariable->EndPtr = GetEndPointer (mNvVariableCache);\r
2180 CacheVariable->Volatile = FALSE;\r
2181 Status = FindVariableEx (VariableName, VendorGuid, FALSE, CacheVariable);\r
2182 if (CacheVariable->CurrPtr == NULL || EFI_ERROR (Status)) {\r
2183 //\r
2184 // There is no matched variable in NV variable cache.\r
2185 //\r
2186 if ((((Attributes & EFI_VARIABLE_APPEND_WRITE) == 0) && (DataSize == 0)) || (Attributes == 0)) {\r
2187 //\r
2188 // It is to delete variable,\r
2189 // go to delete this variable in variable HOB and\r
2190 // try to flush other variables from HOB to flash.\r
2191 //\r
38eb83b8 2192 UpdateVariableInfo (VariableName, VendorGuid, FALSE, FALSE, FALSE, TRUE, FALSE);\r
31349131
SZ
2193 FlushHobVariableToFlash (VariableName, VendorGuid);\r
2194 return EFI_SUCCESS;\r
2195 }\r
2196 }\r
2197 }\r
2198\r
5456306f 2199 if ((CacheVariable->CurrPtr == NULL) || CacheVariable->Volatile) {\r
8a2d4996 2200 Variable = CacheVariable;\r
2201 } else {\r
8a2d4996 2202 //\r
5456306f 2203 // Update/Delete existing NV variable.\r
8a2d4996 2204 // CacheVariable points to the variable in the memory copy of Flash area\r
2205 // Now let Variable points to the same variable in Flash area.\r
2206 //\r
2207 VariableStoreHeader = (VARIABLE_STORE_HEADER *) ((UINTN) mVariableModuleGlobal->VariableGlobal.NonVolatileVariableBase);\r
fa0737a8 2208 Variable = &NvVariable;\r
8a2d4996 2209 Variable->StartPtr = GetStartPointer (VariableStoreHeader);\r
9b18845a
DL
2210 Variable->EndPtr = (VARIABLE_HEADER *)((UINTN)Variable->StartPtr + ((UINTN)CacheVariable->EndPtr - (UINTN)CacheVariable->StartPtr));\r
2211\r
5456306f 2212 Variable->CurrPtr = (VARIABLE_HEADER *)((UINTN)Variable->StartPtr + ((UINTN)CacheVariable->CurrPtr - (UINTN)CacheVariable->StartPtr));\r
23b06935
SZ
2213 if (CacheVariable->InDeletedTransitionPtr != NULL) {\r
2214 Variable->InDeletedTransitionPtr = (VARIABLE_HEADER *)((UINTN)Variable->StartPtr + ((UINTN)CacheVariable->InDeletedTransitionPtr - (UINTN)CacheVariable->StartPtr));\r
2215 } else {\r
2216 Variable->InDeletedTransitionPtr = NULL;\r
2217 }\r
5456306f 2218 Variable->Volatile = FALSE;\r
fa0737a8 2219 }\r
5456306f 2220\r
2221 Fvb = mVariableModuleGlobal->FvbInstance;\r
fdb7765f 2222\r
fa0737a8
SZ
2223 //\r
2224 // Tricky part: Use scratch data area at the end of volatile variable store\r
2225 // as a temporary storage.\r
2226 //\r
2227 NextVariable = GetEndPointer ((VARIABLE_STORE_HEADER *) ((UINTN) mVariableModuleGlobal->VariableGlobal.VolatileVariableBase));\r
2228 ScratchSize = mVariableModuleGlobal->ScratchBufferSize;\r
2229 SetMem (NextVariable, ScratchSize, 0xff);\r
2230 DataReady = FALSE;\r
2231\r
72399dae 2232 if (Variable->CurrPtr != NULL) {\r
8d3a5c82 2233 //\r
8a2d4996 2234 // Update/Delete existing variable.\r
8d3a5c82 2235 //\r
fa0737a8 2236 if (AtRuntime ()) {\r
c6492839 2237 //\r
fa0737a8
SZ
2238 // If AtRuntime and the variable is Volatile and Runtime Access,\r
2239 // the volatile is ReadOnly, and SetVariable should be aborted and\r
c6492839 2240 // return EFI_WRITE_PROTECTED.\r
2241 //\r
72399dae 2242 if (Variable->Volatile) {\r
c6492839 2243 Status = EFI_WRITE_PROTECTED;\r
2244 goto Done;\r
2245 }\r
2246 //\r
fa0737a8
SZ
2247 // Only variable that have NV attributes can be updated/deleted in Runtime.\r
2248 //\r
9b18845a 2249 if ((CacheVariable->CurrPtr->Attributes & EFI_VARIABLE_NON_VOLATILE) == 0) {\r
fa0737a8
SZ
2250 Status = EFI_INVALID_PARAMETER;\r
2251 goto Done;\r
2252 }\r
2253\r
2254 //\r
2255 // Only variable that have RT attributes can be updated/deleted in Runtime.\r
c6492839 2256 //\r
9b18845a 2257 if ((CacheVariable->CurrPtr->Attributes & EFI_VARIABLE_RUNTIME_ACCESS) == 0) {\r
c6492839 2258 Status = EFI_INVALID_PARAMETER;\r
fa0737a8 2259 goto Done;\r
c6492839 2260 }\r
2261 }\r
8a2d4996 2262\r
8d3a5c82 2263 //\r
c6492839 2264 // Setting a data variable with no access, or zero DataSize attributes\r
8a2d4996 2265 // causes it to be deleted.\r
fa0737a8
SZ
2266 // When the EFI_VARIABLE_APPEND_WRITE attribute is set, DataSize of zero will\r
2267 // not delete the variable.\r
8d3a5c82 2268 //\r
fa0737a8 2269 if ((((Attributes & EFI_VARIABLE_APPEND_WRITE) == 0) && (DataSize == 0))|| ((Attributes & (EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_BOOTSERVICE_ACCESS)) == 0)) {\r
23b06935
SZ
2270 if (Variable->InDeletedTransitionPtr != NULL) {\r
2271 //\r
2272 // Both ADDED and IN_DELETED_TRANSITION variable are present,\r
2273 // set IN_DELETED_TRANSITION one to DELETED state first.\r
2274 //\r
ae658d91 2275 ASSERT (CacheVariable->InDeletedTransitionPtr != NULL);\r
9b18845a 2276 State = CacheVariable->InDeletedTransitionPtr->State;\r
23b06935
SZ
2277 State &= VAR_DELETED;\r
2278 Status = UpdateVariableStore (\r
2279 &mVariableModuleGlobal->VariableGlobal,\r
2280 Variable->Volatile,\r
2281 FALSE,\r
2282 Fvb,\r
2283 (UINTN) &Variable->InDeletedTransitionPtr->State,\r
2284 sizeof (UINT8),\r
2285 &State\r
2286 );\r
2287 if (!EFI_ERROR (Status)) {\r
2288 if (!Variable->Volatile) {\r
2289 CacheVariable->InDeletedTransitionPtr->State = State;\r
2290 }\r
2291 } else {\r
2292 goto Done;\r
2293 }\r
2294 }\r
2295\r
9b18845a 2296 State = CacheVariable->CurrPtr->State;\r
c6492839 2297 State &= VAR_DELETED;\r
2298\r
2299 Status = UpdateVariableStore (\r
052ad7e1 2300 &mVariableModuleGlobal->VariableGlobal,\r
72399dae 2301 Variable->Volatile,\r
c6492839 2302 FALSE,\r
8a9e0b72 2303 Fvb,\r
72399dae 2304 (UINTN) &Variable->CurrPtr->State,\r
c6492839 2305 sizeof (UINT8),\r
2306 &State\r
fa0737a8 2307 );\r
33a5a666 2308 if (!EFI_ERROR (Status)) {\r
8a2d4996 2309 UpdateVariableInfo (VariableName, VendorGuid, Variable->Volatile, FALSE, FALSE, TRUE, FALSE);\r
2310 if (!Variable->Volatile) {\r
2311 CacheVariable->CurrPtr->State = State;\r
335e2681 2312 FlushHobVariableToFlash (VariableName, VendorGuid);\r
8a2d4996 2313 }\r
33a5a666 2314 }\r
fa0737a8 2315 goto Done;\r
c6492839 2316 }\r
8d3a5c82 2317 //\r
8a2d4996 2318 // If the variable is marked valid, and the same data has been passed in,\r
c6492839 2319 // then return to the caller immediately.\r
8d3a5c82 2320 //\r
9b18845a
DL
2321 if (DataSizeOfVariable (CacheVariable->CurrPtr) == DataSize &&\r
2322 (CompareMem (Data, GetVariableDataPtr (CacheVariable->CurrPtr), DataSize) == 0) &&\r
fa0737a8
SZ
2323 ((Attributes & EFI_VARIABLE_APPEND_WRITE) == 0) &&\r
2324 (TimeStamp == NULL)) {\r
2325 //\r
2326 // Variable content unchanged and no need to update timestamp, just return.\r
2327 //\r
8a2d4996 2328 UpdateVariableInfo (VariableName, VendorGuid, Variable->Volatile, FALSE, TRUE, FALSE, FALSE);\r
c6492839 2329 Status = EFI_SUCCESS;\r
2330 goto Done;\r
9b18845a
DL
2331 } else if ((CacheVariable->CurrPtr->State == VAR_ADDED) ||\r
2332 (CacheVariable->CurrPtr->State == (VAR_ADDED & VAR_IN_DELETED_TRANSITION))) {\r
814bae52 2333\r
fa0737a8
SZ
2334 //\r
2335 // EFI_VARIABLE_APPEND_WRITE attribute only effects for existing variable.\r
2336 //\r
2337 if ((Attributes & EFI_VARIABLE_APPEND_WRITE) != 0) {\r
2338 //\r
2339 // NOTE: From 0 to DataOffset of NextVariable is reserved for Variable Header and Name.\r
2340 // From DataOffset of NextVariable is to save the existing variable data.\r
2341 //\r
9b18845a 2342 DataOffset = GetVariableDataOffset (CacheVariable->CurrPtr);\r
fa0737a8 2343 BufferForMerge = (UINT8 *) ((UINTN) NextVariable + DataOffset);\r
9b18845a 2344 CopyMem (BufferForMerge, (UINT8 *) ((UINTN) CacheVariable->CurrPtr + DataOffset), DataSizeOfVariable (CacheVariable->CurrPtr));\r
fa0737a8
SZ
2345\r
2346 //\r
9b4a2032 2347 // Set Max Auth/Non-Volatile/Volatile Variable Data Size as default MaxDataSize.\r
fa0737a8
SZ
2348 //\r
2349 if ((Attributes & VARIABLE_ATTRIBUTE_AT_AW) != 0) {\r
2350 MaxDataSize = mVariableModuleGlobal->MaxAuthVariableSize - DataOffset;\r
9b4a2032 2351 } else if ((Attributes & EFI_VARIABLE_NON_VOLATILE) != 0) {\r
fa0737a8 2352 MaxDataSize = mVariableModuleGlobal->MaxVariableSize - DataOffset;\r
9b4a2032
LE
2353 } else {\r
2354 MaxDataSize = mVariableModuleGlobal->MaxVolatileVariableSize - DataOffset;\r
fa0737a8
SZ
2355 }\r
2356\r
2357 //\r
2358 // Append the new data to the end of existing data.\r
2359 // Max Harware error record variable data size is different from common/auth variable.\r
2360 //\r
2361 if ((Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) == EFI_VARIABLE_HARDWARE_ERROR_RECORD) {\r
2362 MaxDataSize = PcdGet32 (PcdMaxHardwareErrorVariableSize) - DataOffset;\r
2363 }\r
2364\r
9b18845a 2365 if (DataSizeOfVariable (CacheVariable->CurrPtr) + DataSize > MaxDataSize) {\r
fa0737a8
SZ
2366 //\r
2367 // Existing data size + new data size exceed maximum variable size limitation.\r
2368 //\r
2369 Status = EFI_INVALID_PARAMETER;\r
2370 goto Done;\r
2371 }\r
9b18845a
DL
2372 CopyMem ((UINT8*) ((UINTN) BufferForMerge + DataSizeOfVariable (CacheVariable->CurrPtr)), Data, DataSize);\r
2373 MergedBufSize = DataSizeOfVariable (CacheVariable->CurrPtr) + DataSize;\r
fa0737a8
SZ
2374\r
2375 //\r
2376 // BufferForMerge(from DataOffset of NextVariable) has included the merged existing and new data.\r
2377 //\r
2378 Data = BufferForMerge;\r
2379 DataSize = MergedBufSize;\r
2380 DataReady = TRUE;\r
2381 }\r
2382\r
c6492839 2383 //\r
8a2d4996 2384 // Mark the old variable as in delete transition.\r
c6492839 2385 //\r
9b18845a 2386 State = CacheVariable->CurrPtr->State;\r
c6492839 2387 State &= VAR_IN_DELETED_TRANSITION;\r
2388\r
2389 Status = UpdateVariableStore (\r
052ad7e1 2390 &mVariableModuleGlobal->VariableGlobal,\r
72399dae 2391 Variable->Volatile,\r
c6492839 2392 FALSE,\r
8a9e0b72 2393 Fvb,\r
72399dae 2394 (UINTN) &Variable->CurrPtr->State,\r
c6492839 2395 sizeof (UINT8),\r
2396 &State\r
fa0737a8 2397 );\r
c6492839 2398 if (EFI_ERROR (Status)) {\r
fa0737a8
SZ
2399 goto Done;\r
2400 }\r
8a2d4996 2401 if (!Variable->Volatile) {\r
2402 CacheVariable->CurrPtr->State = State;\r
2403 }\r
fa0737a8 2404 }\r
72399dae 2405 } else {\r
8d3a5c82 2406 //\r
8a2d4996 2407 // Not found existing variable. Create a new variable.\r
fa0737a8
SZ
2408 //\r
2409\r
2410 if ((DataSize == 0) && ((Attributes & EFI_VARIABLE_APPEND_WRITE) != 0)) {\r
2411 Status = EFI_SUCCESS;\r
2412 goto Done;\r
2413 }\r
2414\r
8d3a5c82 2415 //\r
c6492839 2416 // Make sure we are trying to create a new variable.\r
fa0737a8 2417 // Setting a data variable with zero DataSize or no access attributes means to delete it.\r
8d3a5c82 2418 //\r
c6492839 2419 if (DataSize == 0 || (Attributes & (EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_BOOTSERVICE_ACCESS)) == 0) {\r
2420 Status = EFI_NOT_FOUND;\r
2421 goto Done;\r
2422 }\r
fa0737a8 2423\r
8d3a5c82 2424 //\r
8a2d4996 2425 // Only variable have NV|RT attribute can be created in Runtime.\r
c6492839 2426 //\r
8a2d4996 2427 if (AtRuntime () &&\r
45f6c85b 2428 (((Attributes & EFI_VARIABLE_RUNTIME_ACCESS) == 0) || ((Attributes & EFI_VARIABLE_NON_VOLATILE) == 0))) {\r
c6492839 2429 Status = EFI_INVALID_PARAMETER;\r
2430 goto Done;\r
fa0737a8 2431 }\r
c6492839 2432 }\r
2433\r
2434 //\r
2435 // Function part - create a new variable and copy the data.\r
2436 // Both update a variable and create a variable will come here.\r
c6492839 2437 //\r
c6492839 2438 NextVariable->StartId = VARIABLE_DATA;\r
c6492839 2439 //\r
2440 // NextVariable->State = VAR_ADDED;\r
2441 //\r
8a2d4996 2442 NextVariable->Reserved = 0;\r
fa0737a8
SZ
2443 if (mVariableModuleGlobal->VariableGlobal.AuthFormat) {\r
2444 AuthVariable = (AUTHENTICATED_VARIABLE_HEADER *) NextVariable;\r
2445 AuthVariable->PubKeyIndex = KeyIndex;\r
2446 AuthVariable->MonotonicCount = MonotonicCount;\r
2447 ZeroMem (&AuthVariable->TimeStamp, sizeof (EFI_TIME));\r
2448\r
2449 if (((Attributes & EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS) != 0) &&\r
2450 (TimeStamp != NULL)) {\r
2451 if ((Attributes & EFI_VARIABLE_APPEND_WRITE) == 0) {\r
2452 CopyMem (&AuthVariable->TimeStamp, TimeStamp, sizeof (EFI_TIME));\r
2453 } else {\r
2454 //\r
2455 // In the case when the EFI_VARIABLE_APPEND_WRITE attribute is set, only\r
2456 // when the new TimeStamp value is later than the current timestamp associated\r
2457 // with the variable, we need associate the new timestamp with the updated value.\r
2458 //\r
2459 if (Variable->CurrPtr != NULL) {\r
9b18845a 2460 if (VariableCompareTimeStampInternal (&(((AUTHENTICATED_VARIABLE_HEADER *) CacheVariable->CurrPtr)->TimeStamp), TimeStamp)) {\r
fa0737a8 2461 CopyMem (&AuthVariable->TimeStamp, TimeStamp, sizeof (EFI_TIME));\r
b7dc8888
SZ
2462 } else {\r
2463 CopyMem (&AuthVariable->TimeStamp, &(((AUTHENTICATED_VARIABLE_HEADER *) CacheVariable->CurrPtr)->TimeStamp), sizeof (EFI_TIME));\r
fa0737a8
SZ
2464 }\r
2465 }\r
2466 }\r
2467 }\r
2468 }\r
2469\r
2470 //\r
2471 // The EFI_VARIABLE_APPEND_WRITE attribute will never be set in the returned\r
2472 // Attributes bitmask parameter of a GetVariable() call.\r
2473 //\r
2474 NextVariable->Attributes = Attributes & (~EFI_VARIABLE_APPEND_WRITE);\r
2475\r
2476 VarNameOffset = GetVariableHeaderSize ();\r
8a2d4996 2477 VarNameSize = StrSize (VariableName);\r
c6492839 2478 CopyMem (\r
2479 (UINT8 *) ((UINTN) NextVariable + VarNameOffset),\r
2480 VariableName,\r
2481 VarNameSize\r
2482 );\r
2483 VarDataOffset = VarNameOffset + VarNameSize + GET_PAD_SIZE (VarNameSize);\r
fa0737a8
SZ
2484\r
2485 //\r
2486 // If DataReady is TRUE, it means the variable data has been saved into\r
2487 // NextVariable during EFI_VARIABLE_APPEND_WRITE operation preparation.\r
2488 //\r
2489 if (!DataReady) {\r
2490 CopyMem (\r
2491 (UINT8 *) ((UINTN) NextVariable + VarDataOffset),\r
2492 Data,\r
2493 DataSize\r
2494 );\r
2495 }\r
2496\r
2497 CopyMem (GetVendorGuidPtr (NextVariable), VendorGuid, sizeof (EFI_GUID));\r
c6492839 2498 //\r
2499 // There will be pad bytes after Data, the NextVariable->NameSize and\r
2500 // NextVariable->DataSize should not include pad size so that variable\r
8a2d4996 2501 // service can get actual size in GetVariable.\r
c6492839 2502 //\r
fa0737a8
SZ
2503 SetNameSizeOfVariable (NextVariable, VarNameSize);\r
2504 SetDataSizeOfVariable (NextVariable, DataSize);\r
c6492839 2505\r
2506 //\r
2507 // The actual size of the variable that stores in storage should\r
2508 // include pad size.\r
2509 //\r
2510 VarSize = VarDataOffset + DataSize + GET_PAD_SIZE (DataSize);\r
45f6c85b 2511 if ((Attributes & EFI_VARIABLE_NON_VOLATILE) != 0) {\r
8d3a5c82 2512 //\r
8a2d4996 2513 // Create a nonvolatile variable.\r
8d3a5c82 2514 //\r
fd51bf70 2515 Volatile = FALSE;\r
4edb1866
SZ
2516\r
2517 IsCommonVariable = FALSE;\r
2518 IsCommonUserVariable = FALSE;\r
2519 if ((Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) == 0) {\r
2520 IsCommonVariable = TRUE;\r
2521 IsCommonUserVariable = IsUserVariable (NextVariable);\r
2522 }\r
2523 if ((((Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) != 0)\r
188e4e84 2524 && ((VarSize + mVariableModuleGlobal->HwErrVariableTotalSize) > PcdGet32 (PcdHwErrStorageSize)))\r
4edb1866
SZ
2525 || (IsCommonVariable && ((VarSize + mVariableModuleGlobal->CommonVariableTotalSize) > mVariableModuleGlobal->CommonVariableSpace))\r
2526 || (IsCommonVariable && AtRuntime () && ((VarSize + mVariableModuleGlobal->CommonVariableTotalSize) > mVariableModuleGlobal->CommonRuntimeVariableSpace))\r
2527 || (IsCommonUserVariable && ((VarSize + mVariableModuleGlobal->CommonUserVariableTotalSize) > mVariableModuleGlobal->CommonMaxUserVariableSpace))) {\r
8a2d4996 2528 if (AtRuntime ()) {\r
4edb1866
SZ
2529 if (IsCommonUserVariable && ((VarSize + mVariableModuleGlobal->CommonUserVariableTotalSize) > mVariableModuleGlobal->CommonMaxUserVariableSpace)) {\r
2530 RecordVarErrorFlag (VAR_ERROR_FLAG_USER_ERROR, VariableName, VendorGuid, Attributes, VarSize);\r
2531 }\r
2532 if (IsCommonVariable && ((VarSize + mVariableModuleGlobal->CommonVariableTotalSize) > mVariableModuleGlobal->CommonRuntimeVariableSpace)) {\r
2533 RecordVarErrorFlag (VAR_ERROR_FLAG_SYSTEM_ERROR, VariableName, VendorGuid, Attributes, VarSize);\r
2534 }\r
c6492839 2535 Status = EFI_OUT_OF_RESOURCES;\r
2536 goto Done;\r
2537 }\r
2538 //\r
7baf3c69 2539 // Perform garbage collection & reclaim operation, and integrate the new variable at the same time.\r
c6492839 2540 //\r
fa0737a8
SZ
2541 Status = Reclaim (\r
2542 mVariableModuleGlobal->VariableGlobal.NonVolatileVariableBase,\r
2543 &mVariableModuleGlobal->NonVolatileLastVariableOffset,\r
2544 FALSE,\r
2545 Variable,\r
2546 NextVariable,\r
2547 HEADER_ALIGN (VarSize)\r
2548 );\r
7baf3c69
SZ
2549 if (!EFI_ERROR (Status)) {\r
2550 //\r
2551 // The new variable has been integrated successfully during reclaiming.\r
2552 //\r
2553 if (Variable->CurrPtr != NULL) {\r
2554 CacheVariable->CurrPtr = (VARIABLE_HEADER *)((UINTN) CacheVariable->StartPtr + ((UINTN) Variable->CurrPtr - (UINTN) Variable->StartPtr));\r
2555 CacheVariable->InDeletedTransitionPtr = NULL;\r
2556 }\r
2557 UpdateVariableInfo (VariableName, VendorGuid, FALSE, FALSE, TRUE, FALSE, FALSE);\r
2558 FlushHobVariableToFlash (VariableName, VendorGuid);\r
4edb1866
SZ
2559 } else {\r
2560 if (IsCommonUserVariable && ((VarSize + mVariableModuleGlobal->CommonUserVariableTotalSize) > mVariableModuleGlobal->CommonMaxUserVariableSpace)) {\r
2561 RecordVarErrorFlag (VAR_ERROR_FLAG_USER_ERROR, VariableName, VendorGuid, Attributes, VarSize);\r
2562 }\r
2563 if (IsCommonVariable && ((VarSize + mVariableModuleGlobal->CommonVariableTotalSize) > mVariableModuleGlobal->CommonVariableSpace)) {\r
2564 RecordVarErrorFlag (VAR_ERROR_FLAG_SYSTEM_ERROR, VariableName, VendorGuid, Attributes, VarSize);\r
2565 }\r
23b06935 2566 }\r
7baf3c69 2567 goto Done;\r
8d3a5c82 2568 }\r
2569 //\r
8a2d4996 2570 // Four steps\r
c6492839 2571 // 1. Write variable header\r
fa0737a8 2572 // 2. Set variable state to header valid\r
130e2569 2573 // 3. Write variable data\r
2574 // 4. Set variable state to valid\r
8d3a5c82 2575 //\r
8d3a5c82 2576 //\r
c6492839 2577 // Step 1:\r
8d3a5c82 2578 //\r
c6492839 2579 Status = UpdateVariableStore (\r
052ad7e1 2580 &mVariableModuleGlobal->VariableGlobal,\r
c6492839 2581 FALSE,\r
2582 TRUE,\r
8a9e0b72 2583 Fvb,\r
72399dae 2584 mVariableModuleGlobal->NonVolatileLastVariableOffset,\r
fa0737a8 2585 (UINT32) GetVariableHeaderSize (),\r
c6492839 2586 (UINT8 *) NextVariable\r
2587 );\r
2588\r
2589 if (EFI_ERROR (Status)) {\r
2590 goto Done;\r
2591 }\r
130e2569 2592\r
8d3a5c82 2593 //\r
c6492839 2594 // Step 2:\r
8d3a5c82 2595 //\r
130e2569 2596 NextVariable->State = VAR_HEADER_VALID_ONLY;\r
2597 Status = UpdateVariableStore (\r
2598 &mVariableModuleGlobal->VariableGlobal,\r
2599 FALSE,\r
2600 TRUE,\r
8a9e0b72 2601 Fvb,\r
8a2d4996 2602 mVariableModuleGlobal->NonVolatileLastVariableOffset + OFFSET_OF (VARIABLE_HEADER, State),\r
2603 sizeof (UINT8),\r
2604 &NextVariable->State\r
130e2569 2605 );\r
2606\r
2607 if (EFI_ERROR (Status)) {\r
2608 goto Done;\r
2609 }\r
2610 //\r
2611 // Step 3:\r
2612 //\r
c6492839 2613 Status = UpdateVariableStore (\r
052ad7e1 2614 &mVariableModuleGlobal->VariableGlobal,\r
c6492839 2615 FALSE,\r
2616 TRUE,\r
8a9e0b72 2617 Fvb,\r
fa0737a8
SZ
2618 mVariableModuleGlobal->NonVolatileLastVariableOffset + GetVariableHeaderSize (),\r
2619 (UINT32) (VarSize - GetVariableHeaderSize ()),\r
2620 (UINT8 *) NextVariable + GetVariableHeaderSize ()\r
c6492839 2621 );\r
2622\r
2623 if (EFI_ERROR (Status)) {\r
2624 goto Done;\r
2625 }\r
8d3a5c82 2626 //\r
130e2569 2627 // Step 4:\r
8d3a5c82 2628 //\r
c6492839 2629 NextVariable->State = VAR_ADDED;\r
2630 Status = UpdateVariableStore (\r
052ad7e1 2631 &mVariableModuleGlobal->VariableGlobal,\r
c6492839 2632 FALSE,\r
2633 TRUE,\r
8a9e0b72 2634 Fvb,\r
8a2d4996 2635 mVariableModuleGlobal->NonVolatileLastVariableOffset + OFFSET_OF (VARIABLE_HEADER, State),\r
2636 sizeof (UINT8),\r
2637 &NextVariable->State\r
c6492839 2638 );\r
2639\r
2640 if (EFI_ERROR (Status)) {\r
2641 goto Done;\r
2642 }\r
8d3a5c82 2643\r
ebe34c96
SZ
2644 //\r
2645 // Update the memory copy of Flash region.\r
2646 //\r
2647 CopyMem ((UINT8 *)mNvVariableCache + mVariableModuleGlobal->NonVolatileLastVariableOffset, (UINT8 *)NextVariable, VarSize);\r
2648\r
72399dae 2649 mVariableModuleGlobal->NonVolatileLastVariableOffset += HEADER_ALIGN (VarSize);\r
8d3a5c82 2650\r
2fcdca1d 2651 if ((Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) != 0) {\r
2652 mVariableModuleGlobal->HwErrVariableTotalSize += HEADER_ALIGN (VarSize);\r
2653 } else {\r
2654 mVariableModuleGlobal->CommonVariableTotalSize += HEADER_ALIGN (VarSize);\r
4edb1866
SZ
2655 if (IsCommonUserVariable) {\r
2656 mVariableModuleGlobal->CommonUserVariableTotalSize += HEADER_ALIGN (VarSize);\r
2657 }\r
2fcdca1d 2658 }\r
c6492839 2659 } else {\r
2660 //\r
8a2d4996 2661 // Create a volatile variable.\r
fa0737a8 2662 //\r
fd51bf70 2663 Volatile = TRUE;\r
c6492839 2664\r
72399dae 2665 if ((UINT32) (VarSize + mVariableModuleGlobal->VolatileLastVariableOffset) >\r
052ad7e1 2666 ((VARIABLE_STORE_HEADER *) ((UINTN) (mVariableModuleGlobal->VariableGlobal.VolatileVariableBase)))->Size) {\r
8d3a5c82 2667 //\r
7baf3c69 2668 // Perform garbage collection & reclaim operation, and integrate the new variable at the same time.\r
8d3a5c82 2669 //\r
fa0737a8
SZ
2670 Status = Reclaim (\r
2671 mVariableModuleGlobal->VariableGlobal.VolatileVariableBase,\r
2672 &mVariableModuleGlobal->VolatileLastVariableOffset,\r
2673 TRUE,\r
2674 Variable,\r
2675 NextVariable,\r
2676 HEADER_ALIGN (VarSize)\r
2677 );\r
7baf3c69
SZ
2678 if (!EFI_ERROR (Status)) {\r
2679 //\r
2680 // The new variable has been integrated successfully during reclaiming.\r
2681 //\r
2682 if (Variable->CurrPtr != NULL) {\r
2683 CacheVariable->CurrPtr = (VARIABLE_HEADER *)((UINTN) CacheVariable->StartPtr + ((UINTN) Variable->CurrPtr - (UINTN) Variable->StartPtr));\r
2684 CacheVariable->InDeletedTransitionPtr = NULL;\r
2685 }\r
2686 UpdateVariableInfo (VariableName, VendorGuid, TRUE, FALSE, TRUE, FALSE, FALSE);\r
23b06935 2687 }\r
7baf3c69 2688 goto Done;\r
8d3a5c82 2689 }\r
8d3a5c82 2690\r
c6492839 2691 NextVariable->State = VAR_ADDED;\r
2692 Status = UpdateVariableStore (\r
052ad7e1 2693 &mVariableModuleGlobal->VariableGlobal,\r
c6492839 2694 TRUE,\r
2695 TRUE,\r
8a9e0b72 2696 Fvb,\r
72399dae 2697 mVariableModuleGlobal->VolatileLastVariableOffset,\r
c6492839 2698 (UINT32) VarSize,\r
2699 (UINT8 *) NextVariable\r
2700 );\r
2701\r
2702 if (EFI_ERROR (Status)) {\r
2703 goto Done;\r
8d3a5c82 2704 }\r
c6492839 2705\r
72399dae 2706 mVariableModuleGlobal->VolatileLastVariableOffset += HEADER_ALIGN (VarSize);\r
c6492839 2707 }\r
72399dae 2708\r
c6492839 2709 //\r
8a2d4996 2710 // Mark the old variable as deleted.\r
c6492839 2711 //\r
23b06935
SZ
2712 if (!EFI_ERROR (Status) && Variable->CurrPtr != NULL) {\r
2713 if (Variable->InDeletedTransitionPtr != NULL) {\r
2714 //\r
2715 // Both ADDED and IN_DELETED_TRANSITION old variable are present,\r
2716 // set IN_DELETED_TRANSITION one to DELETED state first.\r
2717 //\r
ae658d91 2718 ASSERT (CacheVariable->InDeletedTransitionPtr != NULL);\r
9b18845a 2719 State = CacheVariable->InDeletedTransitionPtr->State;\r
23b06935
SZ
2720 State &= VAR_DELETED;\r
2721 Status = UpdateVariableStore (\r
2722 &mVariableModuleGlobal->VariableGlobal,\r
2723 Variable->Volatile,\r
2724 FALSE,\r
2725 Fvb,\r
2726 (UINTN) &Variable->InDeletedTransitionPtr->State,\r
2727 sizeof (UINT8),\r
2728 &State\r
2729 );\r
2730 if (!EFI_ERROR (Status)) {\r
2731 if (!Variable->Volatile) {\r
2732 CacheVariable->InDeletedTransitionPtr->State = State;\r
2733 }\r
2734 } else {\r
2735 goto Done;\r
2736 }\r
2737 }\r
2738\r
874c8434 2739 State = CacheVariable->CurrPtr->State;\r
c6492839 2740 State &= VAR_DELETED;\r
2741\r
2742 Status = UpdateVariableStore (\r
72399dae 2743 &mVariableModuleGlobal->VariableGlobal,\r
2744 Variable->Volatile,\r
2745 FALSE,\r
2746 Fvb,\r
2747 (UINTN) &Variable->CurrPtr->State,\r
2748 sizeof (UINT8),\r
2749 &State\r
2750 );\r
fa0737a8 2751 if (!EFI_ERROR (Status) && !Variable->Volatile) {\r
8a2d4996 2752 CacheVariable->CurrPtr->State = State;\r
2753 }\r
72399dae 2754 }\r
2755\r
2756 if (!EFI_ERROR (Status)) {\r
2757 UpdateVariableInfo (VariableName, VendorGuid, Volatile, FALSE, TRUE, FALSE, FALSE);\r
335e2681
SZ
2758 if (!Volatile) {\r
2759 FlushHobVariableToFlash (VariableName, VendorGuid);\r
2760 }\r
72399dae 2761 }\r
2762\r
2763Done:\r
2764 return Status;\r
2765}\r
2766\r
2767/**\r
2768\r
2769 This code finds variable in storage blocks (Volatile or Non-Volatile).\r
2770\r
18a7dbbc
SZ
2771 Caution: This function may receive untrusted input.\r
2772 This function may be invoked in SMM mode, and datasize is external input.\r
2773 This function will do basic validation, before parse the data.\r
2774\r
72399dae 2775 @param VariableName Name of Variable to be found.\r
2776 @param VendorGuid Variable vendor GUID.\r
2777 @param Attributes Attribute value of the variable found.\r
2778 @param DataSize Size of Data found. If size is less than the\r
2779 data, this value contains the required size.\r
dd59d95e
SZ
2780 @param Data The buffer to return the contents of the variable. May be NULL\r
2781 with a zero DataSize in order to determine the size buffer needed.\r
fa0737a8 2782\r
8a2d4996 2783 @return EFI_INVALID_PARAMETER Invalid parameter.\r
2784 @return EFI_SUCCESS Find the specified variable.\r
2785 @return EFI_NOT_FOUND Not found.\r
2786 @return EFI_BUFFER_TO_SMALL DataSize is too small for the result.\r
72399dae 2787\r
2788**/\r
2789EFI_STATUS\r
2790EFIAPI\r
8a2d4996 2791VariableServiceGetVariable (\r
72399dae 2792 IN CHAR16 *VariableName,\r
2793 IN EFI_GUID *VendorGuid,\r
2794 OUT UINT32 *Attributes OPTIONAL,\r
2795 IN OUT UINTN *DataSize,\r
dd59d95e 2796 OUT VOID *Data OPTIONAL\r
72399dae 2797 )\r
2798{\r
2799 EFI_STATUS Status;\r
2800 VARIABLE_POINTER_TRACK Variable;\r
2801 UINTN VarDataSize;\r
2802\r
2803 if (VariableName == NULL || VendorGuid == NULL || DataSize == NULL) {\r
2804 return EFI_INVALID_PARAMETER;\r
2805 }\r
2806\r
e19eab61
SZ
2807 if (VariableName[0] == 0) {\r
2808 return EFI_NOT_FOUND;\r
2809 }\r
2810\r
72399dae 2811 AcquireLockOnlyAtBootTime(&mVariableModuleGlobal->VariableGlobal.VariableServicesLock);\r
fa0737a8 2812\r
9622df63 2813 Status = FindVariable (VariableName, VendorGuid, &Variable, &mVariableModuleGlobal->VariableGlobal, FALSE);\r
72399dae 2814 if (Variable.CurrPtr == NULL || EFI_ERROR (Status)) {\r
2815 goto Done;\r
2816 }\r
2817\r
2818 //\r
2819 // Get data size\r
2820 //\r
2821 VarDataSize = DataSizeOfVariable (Variable.CurrPtr);\r
2822 ASSERT (VarDataSize != 0);\r
2823\r
2824 if (*DataSize >= VarDataSize) {\r
2825 if (Data == NULL) {\r
2826 Status = EFI_INVALID_PARAMETER;\r
2827 goto Done;\r
33a5a666 2828 }\r
72399dae 2829\r
2830 CopyMem (Data, GetVariableDataPtr (Variable.CurrPtr), VarDataSize);\r
2831 if (Attributes != NULL) {\r
2832 *Attributes = Variable.CurrPtr->Attributes;\r
2833 }\r
2834\r
2835 *DataSize = VarDataSize;\r
2836 UpdateVariableInfo (VariableName, VendorGuid, Variable.Volatile, TRUE, FALSE, FALSE, FALSE);\r
fa0737a8 2837\r
72399dae 2838 Status = EFI_SUCCESS;\r
2839 goto Done;\r
2840 } else {\r
2841 *DataSize = VarDataSize;\r
2842 Status = EFI_BUFFER_TOO_SMALL;\r
2843 goto Done;\r
8d3a5c82 2844 }\r
2845\r
72399dae 2846Done:\r
2847 ReleaseLockOnlyAtBootTime (&mVariableModuleGlobal->VariableGlobal.VariableServicesLock);\r
2848 return Status;\r
2849}\r
2850\r
72399dae 2851/**\r
72399dae 2852 This code Finds the Next available variable.\r
2853\r
18a7dbbc
SZ
2854 Caution: This function may receive untrusted input.\r
2855 This function may be invoked in SMM mode. This function will do basic validation, before parse the data.\r
2856\r
fa0737a8
SZ
2857 @param[in] VariableName Pointer to variable name.\r
2858 @param[in] VendorGuid Variable Vendor Guid.\r
2859 @param[out] VariablePtr Pointer to variable header address.\r
72399dae 2860\r
6f817f9b
SZ
2861 @retval EFI_SUCCESS The function completed successfully.\r
2862 @retval EFI_NOT_FOUND The next variable was not found.\r
2863 @retval EFI_INVALID_PARAMETER If VariableName is not an empty string, while VendorGuid is NULL.\r
2864 @retval EFI_INVALID_PARAMETER The input values of VariableName and VendorGuid are not a name and\r
2865 GUID of an existing variable.\r
72399dae 2866\r
2867**/\r
2868EFI_STATUS\r
2869EFIAPI\r
fa0737a8
SZ
2870VariableServiceGetNextVariableInternal (\r
2871 IN CHAR16 *VariableName,\r
2872 IN EFI_GUID *VendorGuid,\r
2873 OUT VARIABLE_HEADER **VariablePtr\r
72399dae 2874 )\r
2875{\r
0f7aff72 2876 VARIABLE_STORE_TYPE Type;\r
72399dae 2877 VARIABLE_POINTER_TRACK Variable;\r
0f7aff72 2878 VARIABLE_POINTER_TRACK VariableInHob;\r
23b06935 2879 VARIABLE_POINTER_TRACK VariablePtrTrack;\r
72399dae 2880 EFI_STATUS Status;\r
0f7aff72 2881 VARIABLE_STORE_HEADER *VariableStoreHeader[VariableStoreTypeMax];\r
72399dae 2882\r
9622df63 2883 Status = FindVariable (VariableName, VendorGuid, &Variable, &mVariableModuleGlobal->VariableGlobal, FALSE);\r
72399dae 2884 if (Variable.CurrPtr == NULL || EFI_ERROR (Status)) {\r
6f817f9b
SZ
2885 //\r
2886 // For VariableName is an empty string, FindVariable() will try to find and return\r
2887 // the first qualified variable, and if FindVariable() returns error (EFI_NOT_FOUND)\r
2888 // as no any variable is found, still go to return the error (EFI_NOT_FOUND).\r
2889 //\r
2890 if (VariableName[0] != 0) {\r
2891 //\r
2892 // For VariableName is not an empty string, and FindVariable() returns error as\r
2893 // VariableName and VendorGuid are not a name and GUID of an existing variable,\r
2894 // there is no way to get next variable, follow spec to return EFI_INVALID_PARAMETER.\r
2895 //\r
2896 Status = EFI_INVALID_PARAMETER;\r
2897 }\r
72399dae 2898 goto Done;\r
2899 }\r
2900\r
2901 if (VariableName[0] != 0) {\r
2902 //\r
8a2d4996 2903 // If variable name is not NULL, get next variable.\r
72399dae 2904 //\r
2905 Variable.CurrPtr = GetNextVariablePtr (Variable.CurrPtr);\r
2906 }\r
2907\r
0f7aff72
RN
2908 //\r
2909 // 0: Volatile, 1: HOB, 2: Non-Volatile.\r
2910 // The index and attributes mapping must be kept in this order as FindVariable\r
2911 // makes use of this mapping to implement search algorithm.\r
2912 //\r
2913 VariableStoreHeader[VariableStoreTypeVolatile] = (VARIABLE_STORE_HEADER *) (UINTN) mVariableModuleGlobal->VariableGlobal.VolatileVariableBase;\r
2914 VariableStoreHeader[VariableStoreTypeHob] = (VARIABLE_STORE_HEADER *) (UINTN) mVariableModuleGlobal->VariableGlobal.HobVariableBase;\r
2915 VariableStoreHeader[VariableStoreTypeNv] = mNvVariableCache;\r
2916\r
72399dae 2917 while (TRUE) {\r
2918 //\r
0f7aff72 2919 // Switch from Volatile to HOB, to Non-Volatile.\r
72399dae 2920 //\r
6ebffb67 2921 while (!IsValidVariableHeader (Variable.CurrPtr, Variable.EndPtr)) {\r
0f7aff72
RN
2922 //\r
2923 // Find current storage index\r
2924 //\r
2925 for (Type = (VARIABLE_STORE_TYPE) 0; Type < VariableStoreTypeMax; Type++) {\r
2926 if ((VariableStoreHeader[Type] != NULL) && (Variable.StartPtr == GetStartPointer (VariableStoreHeader[Type]))) {\r
2927 break;\r
2928 }\r
2929 }\r
2930 ASSERT (Type < VariableStoreTypeMax);\r
2931 //\r
2932 // Switch to next storage\r
2933 //\r
2934 for (Type++; Type < VariableStoreTypeMax; Type++) {\r
2935 if (VariableStoreHeader[Type] != NULL) {\r
2936 break;\r
2937 }\r
2938 }\r
2939 //\r
fa0737a8 2940 // Capture the case that\r
0f7aff72
RN
2941 // 1. current storage is the last one, or\r
2942 // 2. no further storage\r
2943 //\r
2944 if (Type == VariableStoreTypeMax) {\r
72399dae 2945 Status = EFI_NOT_FOUND;\r
2946 goto Done;\r
2947 }\r
0f7aff72
RN
2948 Variable.StartPtr = GetStartPointer (VariableStoreHeader[Type]);\r
2949 Variable.EndPtr = GetEndPointer (VariableStoreHeader[Type]);\r
2950 Variable.CurrPtr = Variable.StartPtr;\r
72399dae 2951 }\r
0f7aff72 2952\r
72399dae 2953 //\r
2954 // Variable is found\r
2955 //\r
23b06935
SZ
2956 if (Variable.CurrPtr->State == VAR_ADDED || Variable.CurrPtr->State == (VAR_IN_DELETED_TRANSITION & VAR_ADDED)) {\r
2957 if (!AtRuntime () || ((Variable.CurrPtr->Attributes & EFI_VARIABLE_RUNTIME_ACCESS) != 0)) {\r
2958 if (Variable.CurrPtr->State == (VAR_IN_DELETED_TRANSITION & VAR_ADDED)) {\r
2959 //\r
2960 // If it is a IN_DELETED_TRANSITION variable,\r
2961 // and there is also a same ADDED one at the same time,\r
2962 // don't return it.\r
2963 //\r
2964 VariablePtrTrack.StartPtr = Variable.StartPtr;\r
2965 VariablePtrTrack.EndPtr = Variable.EndPtr;\r
2966 Status = FindVariableEx (\r
2967 GetVariableNamePtr (Variable.CurrPtr),\r
fa0737a8 2968 GetVendorGuidPtr (Variable.CurrPtr),\r
23b06935
SZ
2969 FALSE,\r
2970 &VariablePtrTrack\r
2971 );\r
2972 if (!EFI_ERROR (Status) && VariablePtrTrack.CurrPtr->State == VAR_ADDED) {\r
2973 Variable.CurrPtr = GetNextVariablePtr (Variable.CurrPtr);\r
2974 continue;\r
2975 }\r
2976 }\r
0f7aff72
RN
2977\r
2978 //\r
2979 // Don't return NV variable when HOB overrides it\r
2980 //\r
fa0737a8 2981 if ((VariableStoreHeader[VariableStoreTypeHob] != NULL) && (VariableStoreHeader[VariableStoreTypeNv] != NULL) &&\r
0f7aff72
RN
2982 (Variable.StartPtr == GetStartPointer (VariableStoreHeader[VariableStoreTypeNv]))\r
2983 ) {\r
2984 VariableInHob.StartPtr = GetStartPointer (VariableStoreHeader[VariableStoreTypeHob]);\r
2985 VariableInHob.EndPtr = GetEndPointer (VariableStoreHeader[VariableStoreTypeHob]);\r
2986 Status = FindVariableEx (\r
2987 GetVariableNamePtr (Variable.CurrPtr),\r
fa0737a8 2988 GetVendorGuidPtr (Variable.CurrPtr),\r
9622df63 2989 FALSE,\r
0f7aff72
RN
2990 &VariableInHob\r
2991 );\r
2992 if (!EFI_ERROR (Status)) {\r
2993 Variable.CurrPtr = GetNextVariablePtr (Variable.CurrPtr);\r
2994 continue;\r
2995 }\r
2996 }\r
2997\r
fa0737a8
SZ
2998 *VariablePtr = Variable.CurrPtr;\r
2999 Status = EFI_SUCCESS;\r
72399dae 3000 goto Done;\r
3001 }\r
3002 }\r
3003\r
3004 Variable.CurrPtr = GetNextVariablePtr (Variable.CurrPtr);\r
3005 }\r
33a5a666 3006\r
8d3a5c82 3007Done:\r
fa0737a8
SZ
3008 return Status;\r
3009}\r
3010\r
3011/**\r
3012\r
3013 This code Finds the Next available variable.\r
3014\r
3015 Caution: This function may receive untrusted input.\r
3016 This function may be invoked in SMM mode. This function will do basic validation, before parse the data.\r
3017\r
6f817f9b
SZ
3018 @param VariableNameSize The size of the VariableName buffer. The size must be large\r
3019 enough to fit input string supplied in VariableName buffer.\r
fa0737a8
SZ
3020 @param VariableName Pointer to variable name.\r
3021 @param VendorGuid Variable Vendor Guid.\r
3022\r
6f817f9b
SZ
3023 @retval EFI_SUCCESS The function completed successfully.\r
3024 @retval EFI_NOT_FOUND The next variable was not found.\r
3025 @retval EFI_BUFFER_TOO_SMALL The VariableNameSize is too small for the result.\r
3026 VariableNameSize has been updated with the size needed to complete the request.\r
3027 @retval EFI_INVALID_PARAMETER VariableNameSize is NULL.\r
3028 @retval EFI_INVALID_PARAMETER VariableName is NULL.\r
3029 @retval EFI_INVALID_PARAMETER VendorGuid is NULL.\r
3030 @retval EFI_INVALID_PARAMETER The input values of VariableName and VendorGuid are not a name and\r
3031 GUID of an existing variable.\r
3032 @retval EFI_INVALID_PARAMETER Null-terminator is not found in the first VariableNameSize bytes of\r
3033 the input VariableName buffer.\r
fa0737a8
SZ
3034\r
3035**/\r
3036EFI_STATUS\r
3037EFIAPI\r
3038VariableServiceGetNextVariableName (\r
3039 IN OUT UINTN *VariableNameSize,\r
3040 IN OUT CHAR16 *VariableName,\r
3041 IN OUT EFI_GUID *VendorGuid\r
3042 )\r
3043{\r
3044 EFI_STATUS Status;\r
6f817f9b 3045 UINTN MaxLen;\r
fa0737a8
SZ
3046 UINTN VarNameSize;\r
3047 VARIABLE_HEADER *VariablePtr;\r
3048\r
3049 if (VariableNameSize == NULL || VariableName == NULL || VendorGuid == NULL) {\r
3050 return EFI_INVALID_PARAMETER;\r
3051 }\r
3052\r
6f817f9b
SZ
3053 //\r
3054 // Calculate the possible maximum length of name string, including the Null terminator.\r
3055 //\r
3056 MaxLen = *VariableNameSize / sizeof (CHAR16);\r
3057 if ((MaxLen == 0) || (StrnLenS (VariableName, MaxLen) == MaxLen)) {\r
3058 //\r
3059 // Null-terminator is not found in the first VariableNameSize bytes of the input VariableName buffer,\r
3060 // follow spec to return EFI_INVALID_PARAMETER.\r
3061 //\r
3062 return EFI_INVALID_PARAMETER;\r
3063 }\r
3064\r
fa0737a8
SZ
3065 AcquireLockOnlyAtBootTime(&mVariableModuleGlobal->VariableGlobal.VariableServicesLock);\r
3066\r
3067 Status = VariableServiceGetNextVariableInternal (VariableName, VendorGuid, &VariablePtr);\r
3068 if (!EFI_ERROR (Status)) {\r
3069 VarNameSize = NameSizeOfVariable (VariablePtr);\r
3070 ASSERT (VarNameSize != 0);\r
3071 if (VarNameSize <= *VariableNameSize) {\r
3072 CopyMem (VariableName, GetVariableNamePtr (VariablePtr), VarNameSize);\r
3073 CopyMem (VendorGuid, GetVendorGuidPtr (VariablePtr), sizeof (EFI_GUID));\r
3074 Status = EFI_SUCCESS;\r
3075 } else {\r
3076 Status = EFI_BUFFER_TOO_SMALL;\r
3077 }\r
3078\r
3079 *VariableNameSize = VarNameSize;\r
3080 }\r
3081\r
72399dae 3082 ReleaseLockOnlyAtBootTime (&mVariableModuleGlobal->VariableGlobal.VariableServicesLock);\r
3083 return Status;\r
3084}\r
3085\r
3086/**\r
3087\r
3088 This code sets variable in storage blocks (Volatile or Non-Volatile).\r
3089\r
18a7dbbc
SZ
3090 Caution: This function may receive untrusted input.\r
3091 This function may be invoked in SMM mode, and datasize and data are external input.\r
3092 This function will do basic validation, before parse the data.\r
fa0737a8
SZ
3093 This function will parse the authentication carefully to avoid security issues, like\r
3094 buffer overflow, integer overflow.\r
3095 This function will check attribute carefully to avoid authentication bypass.\r
18a7dbbc 3096\r
8a2d4996 3097 @param VariableName Name of Variable to be found.\r
3098 @param VendorGuid Variable vendor GUID.\r
72399dae 3099 @param Attributes Attribute value of the variable found\r
3100 @param DataSize Size of Data found. If size is less than the\r
3101 data, this value contains the required size.\r
8a2d4996 3102 @param Data Data pointer.\r
72399dae 3103\r
8a2d4996 3104 @return EFI_INVALID_PARAMETER Invalid parameter.\r
3105 @return EFI_SUCCESS Set successfully.\r
3106 @return EFI_OUT_OF_RESOURCES Resource not enough to set variable.\r
3107 @return EFI_NOT_FOUND Not found.\r
3108 @return EFI_WRITE_PROTECTED Variable is read-only.\r
72399dae 3109\r
3110**/\r
3111EFI_STATUS\r
3112EFIAPI\r
8a2d4996 3113VariableServiceSetVariable (\r
72399dae 3114 IN CHAR16 *VariableName,\r
3115 IN EFI_GUID *VendorGuid,\r
3116 IN UINT32 Attributes,\r
3117 IN UINTN DataSize,\r
3118 IN VOID *Data\r
3119 )\r
3120{\r
3121 VARIABLE_POINTER_TRACK Variable;\r
3122 EFI_STATUS Status;\r
3123 VARIABLE_HEADER *NextVariable;\r
3124 EFI_PHYSICAL_ADDRESS Point;\r
fa0737a8 3125 UINTN PayloadSize;\r
72399dae 3126\r
3127 //\r
8a2d4996 3128 // Check input parameters.\r
72399dae 3129 //\r
3130 if (VariableName == NULL || VariableName[0] == 0 || VendorGuid == NULL) {\r
3131 return EFI_INVALID_PARAMETER;\r
fa0737a8 3132 }\r
48a0e6bf 3133\r
3134 if (DataSize != 0 && Data == NULL) {\r
3135 return EFI_INVALID_PARAMETER;\r
3136 }\r
3137\r
8e38f18e 3138 //\r
fa0737a8 3139 // Check for reserverd bit in variable attribute.\r
4073f85d
ZC
3140 // EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS is deprecated but we still allow\r
3141 // the delete operation of common authenticated variable at user physical presence.\r
3142 // So leave EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS attribute check to AuthVariableLib\r
8e38f18e 3143 //\r
4073f85d 3144 if ((Attributes & (~(EFI_VARIABLE_ATTRIBUTES_MASK | EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS))) != 0) {\r
8e38f18e 3145 return EFI_INVALID_PARAMETER;\r
3146 }\r
3147\r
72399dae 3148 //\r
8a2d4996 3149 // Make sure if runtime bit is set, boot service bit is set also.\r
72399dae 3150 //\r
3151 if ((Attributes & (EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_BOOTSERVICE_ACCESS)) == EFI_VARIABLE_RUNTIME_ACCESS) {\r
67943427 3152 if ((Attributes & EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS) != 0) {\r
3153 return EFI_UNSUPPORTED;\r
3154 } else {\r
3155 return EFI_INVALID_PARAMETER;\r
3156 }\r
fa0737a8
SZ
3157 } else if ((Attributes & VARIABLE_ATTRIBUTE_AT_AW) != 0) {\r
3158 if (!mVariableModuleGlobal->VariableGlobal.AuthSupport) {\r
3159 //\r
3160 // Not support authenticated variable write.\r
3161 //\r
3162 return EFI_INVALID_PARAMETER;\r
3163 }\r
3164 } else if ((Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) != 0) {\r
3165 if (PcdGet32 (PcdHwErrStorageSize) == 0) {\r
3166 //\r
3167 // Not support harware error record variable variable.\r
3168 //\r
3169 return EFI_INVALID_PARAMETER;\r
3170 }\r
3171 }\r
3172\r
3173 //\r
3174 // EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS and EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS attribute\r
3175 // cannot be set both.\r
3176 //\r
3177 if (((Attributes & EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS) == EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS)\r
3178 && ((Attributes & EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS) == EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS)) {\r
67943427 3179 return EFI_UNSUPPORTED;\r
72399dae 3180 }\r
3181\r
fa0737a8 3182 if ((Attributes & EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS) == EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS) {\r
67943427 3183 //\r
3184 // If DataSize == AUTHINFO_SIZE and then PayloadSize is 0.\r
3185 // Maybe it's the delete operation of common authenticated variable at user physical presence.\r
3186 //\r
3187 if (DataSize != AUTHINFO_SIZE) {\r
3188 return EFI_UNSUPPORTED;\r
fa0737a8
SZ
3189 }\r
3190 PayloadSize = DataSize - AUTHINFO_SIZE;\r
3191 } else if ((Attributes & EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS) == EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS) {\r
3192 //\r
3193 // Sanity check for EFI_VARIABLE_AUTHENTICATION_2 descriptor.\r
3194 //\r
3195 if (DataSize < OFFSET_OF_AUTHINFO2_CERT_DATA ||\r
3196 ((EFI_VARIABLE_AUTHENTICATION_2 *) Data)->AuthInfo.Hdr.dwLength > DataSize - (OFFSET_OF (EFI_VARIABLE_AUTHENTICATION_2, AuthInfo)) ||\r
3197 ((EFI_VARIABLE_AUTHENTICATION_2 *) Data)->AuthInfo.Hdr.dwLength < OFFSET_OF (WIN_CERTIFICATE_UEFI_GUID, CertData)) {\r
3198 return EFI_SECURITY_VIOLATION;\r
3199 }\r
e83d841f 3200 //\r
49395ea0
HW
3201 // The VariableSpeculationBarrier() call here is to ensure the above sanity\r
3202 // check for the EFI_VARIABLE_AUTHENTICATION_2 descriptor has been completed\r
e83d841f
HW
3203 // before the execution of subsequent codes.\r
3204 //\r
49395ea0 3205 VariableSpeculationBarrier ();\r
fa0737a8
SZ
3206 PayloadSize = DataSize - AUTHINFO2_SIZE (Data);\r
3207 } else {\r
3208 PayloadSize = DataSize;\r
3209 }\r
3210\r
3211 if ((UINTN)(~0) - PayloadSize < StrSize(VariableName)){\r
3212 //\r
3213 // Prevent whole variable size overflow\r
56251c66 3214 //\r
56251c66 3215 return EFI_INVALID_PARAMETER;\r
3216 }\r
3217\r
72399dae 3218 //\r
3219 // The size of the VariableName, including the Unicode Null in bytes plus\r
188e4e84 3220 // the DataSize is limited to maximum size of PcdGet32 (PcdMaxHardwareErrorVariableSize)\r
fa0737a8 3221 // bytes for HwErrRec#### variable.\r
72399dae 3222 //\r
3223 if ((Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) == EFI_VARIABLE_HARDWARE_ERROR_RECORD) {\r
fa0737a8 3224 if (StrSize (VariableName) + PayloadSize > PcdGet32 (PcdMaxHardwareErrorVariableSize) - GetVariableHeaderSize ()) {\r
72399dae 3225 return EFI_INVALID_PARAMETER;\r
3226 }\r
72399dae 3227 } else {\r
3228 //\r
3229 // The size of the VariableName, including the Unicode Null in bytes plus\r
9b4a2032 3230 // the DataSize is limited to maximum size of Max(Auth|Volatile)VariableSize bytes.\r
72399dae 3231 //\r
fa0737a8
SZ
3232 if ((Attributes & VARIABLE_ATTRIBUTE_AT_AW) != 0) {\r
3233 if (StrSize (VariableName) + PayloadSize > mVariableModuleGlobal->MaxAuthVariableSize - GetVariableHeaderSize ()) {\r
a90c7df7
VS
3234 DEBUG ((DEBUG_ERROR,\r
3235 "%a: Failed to set variable '%s' with Guid %g\n",\r
3236 __FUNCTION__, VariableName, VendorGuid));\r
3237 DEBUG ((DEBUG_ERROR,\r
3238 "NameSize(0x%x) + PayloadSize(0x%x) > "\r
3239 "MaxAuthVariableSize(0x%x) - HeaderSize(0x%x)\n",\r
3240 StrSize (VariableName), PayloadSize,\r
3241 mVariableModuleGlobal->MaxAuthVariableSize,\r
3242 GetVariableHeaderSize ()\r
3243 ));\r
fa0737a8
SZ
3244 return EFI_INVALID_PARAMETER;\r
3245 }\r
9b4a2032 3246 } else if ((Attributes & EFI_VARIABLE_NON_VOLATILE) != 0) {\r
fa0737a8 3247 if (StrSize (VariableName) + PayloadSize > mVariableModuleGlobal->MaxVariableSize - GetVariableHeaderSize ()) {\r
a90c7df7
VS
3248 DEBUG ((DEBUG_ERROR,\r
3249 "%a: Failed to set variable '%s' with Guid %g\n",\r
3250 __FUNCTION__, VariableName, VendorGuid));\r
3251 DEBUG ((DEBUG_ERROR,\r
3252 "NameSize(0x%x) + PayloadSize(0x%x) > "\r
3253 "MaxVariableSize(0x%x) - HeaderSize(0x%x)\n",\r
3254 StrSize (VariableName), PayloadSize,\r
3255 mVariableModuleGlobal->MaxVariableSize,\r
3256 GetVariableHeaderSize ()\r
3257 ));\r
fa0737a8
SZ
3258 return EFI_INVALID_PARAMETER;\r
3259 }\r
9b4a2032
LE
3260 } else {\r
3261 if (StrSize (VariableName) + PayloadSize > mVariableModuleGlobal->MaxVolatileVariableSize - GetVariableHeaderSize ()) {\r
a90c7df7
VS
3262 DEBUG ((DEBUG_ERROR,\r
3263 "%a: Failed to set variable '%s' with Guid %g\n",\r
3264 __FUNCTION__, VariableName, VendorGuid));\r
3265 DEBUG ((DEBUG_ERROR,\r
3266 "NameSize(0x%x) + PayloadSize(0x%x) > "\r
3267 "MaxVolatileVariableSize(0x%x) - HeaderSize(0x%x)\n",\r
3268 StrSize (VariableName), PayloadSize,\r
3269 mVariableModuleGlobal->MaxVolatileVariableSize,\r
3270 GetVariableHeaderSize ()\r
3271 ));\r
9b4a2032
LE
3272 return EFI_INVALID_PARAMETER;\r
3273 }\r
efb01a10 3274 }\r
6675a21f
SZ
3275 }\r
3276\r
2f6aa774
JY
3277 //\r
3278 // Special Handling for MOR Lock variable.\r
3279 //\r
3280 Status = SetVariableCheckHandlerMor (VariableName, VendorGuid, Attributes, PayloadSize, (VOID *) ((UINTN) Data + DataSize - PayloadSize));\r
3281 if (Status == EFI_ALREADY_STARTED) {\r
3282 //\r
3283 // EFI_ALREADY_STARTED means the SetVariable() action is handled inside of SetVariableCheckHandlerMor().\r
3284 // Variable driver can just return SUCCESS.\r
3285 //\r
3286 return EFI_SUCCESS;\r
3287 }\r
3288 if (EFI_ERROR (Status)) {\r
3289 return Status;\r
3290 }\r
3291\r
8021f4c7 3292 Status = VarCheckLibSetVariableCheck (VariableName, VendorGuid, Attributes, PayloadSize, (VOID *) ((UINTN) Data + DataSize - PayloadSize), mRequestSource);\r
fa0737a8
SZ
3293 if (EFI_ERROR (Status)) {\r
3294 return Status;\r
3295 }\r
3296\r
72399dae 3297 AcquireLockOnlyAtBootTime(&mVariableModuleGlobal->VariableGlobal.VariableServicesLock);\r
3298\r
3299 //\r
8a2d4996 3300 // Consider reentrant in MCA/INIT/NMI. It needs be reupdated.\r
72399dae 3301 //\r
3302 if (1 < InterlockedIncrement (&mVariableModuleGlobal->VariableGlobal.ReentrantState)) {\r
8a2d4996 3303 Point = mVariableModuleGlobal->VariableGlobal.NonVolatileVariableBase;\r
72399dae 3304 //\r
8a2d4996 3305 // Parse non-volatile variable data and get last variable offset.\r
72399dae 3306 //\r
3307 NextVariable = GetStartPointer ((VARIABLE_STORE_HEADER *) (UINTN) Point);\r
6ebffb67 3308 while (IsValidVariableHeader (NextVariable, GetEndPointer ((VARIABLE_STORE_HEADER *) (UINTN) Point))) {\r
72399dae 3309 NextVariable = GetNextVariablePtr (NextVariable);\r
3310 }\r
3311 mVariableModuleGlobal->NonVolatileLastVariableOffset = (UINTN) NextVariable - (UINTN) Point;\r
3312 }\r
3313\r
3314 //\r
8a2d4996 3315 // Check whether the input variable is already existed.\r
72399dae 3316 //\r
9622df63
SZ
3317 Status = FindVariable (VariableName, VendorGuid, &Variable, &mVariableModuleGlobal->VariableGlobal, TRUE);\r
3318 if (!EFI_ERROR (Status)) {\r
3319 if (((Variable.CurrPtr->Attributes & EFI_VARIABLE_RUNTIME_ACCESS) == 0) && AtRuntime ()) {\r
ff843847
RN
3320 Status = EFI_WRITE_PROTECTED;\r
3321 goto Done;\r
9622df63 3322 }\r
fa0737a8 3323 if (Attributes != 0 && (Attributes & (~EFI_VARIABLE_APPEND_WRITE)) != Variable.CurrPtr->Attributes) {\r
6e67fec0
SZ
3324 //\r
3325 // If a preexisting variable is rewritten with different attributes, SetVariable() shall not\r
3326 // modify the variable and shall return EFI_INVALID_PARAMETER. Two exceptions to this rule:\r
3327 // 1. No access attributes specified\r
3328 // 2. The only attribute differing is EFI_VARIABLE_APPEND_WRITE\r
3329 //\r
3330 Status = EFI_INVALID_PARAMETER;\r
4edb1866 3331 DEBUG ((EFI_D_INFO, "[Variable]: Rewritten a preexisting variable(0x%08x) with different attributes(0x%08x) - %g:%s\n", Variable.CurrPtr->Attributes, Attributes, VendorGuid, VariableName));\r
6e67fec0
SZ
3332 goto Done;\r
3333 }\r
9622df63 3334 }\r
72399dae 3335\r
b2bd493e 3336 if (!FeaturePcdGet (PcdUefiVariableDefaultLangDeprecate)) {\r
9bc5dabb 3337 //\r
b2bd493e 3338 // Hook the operation of setting PlatformLangCodes/PlatformLang and LangCodes/Lang.\r
9bc5dabb 3339 //\r
b2bd493e
SZ
3340 Status = AutoUpdateLangVariable (VariableName, Data, DataSize);\r
3341 if (EFI_ERROR (Status)) {\r
3342 //\r
3343 // The auto update operation failed, directly return to avoid inconsistency between PlatformLang and Lang.\r
3344 //\r
3345 goto Done;\r
3346 }\r
9bc5dabb 3347 }\r
72399dae 3348\r
fa0737a8
SZ
3349 if (mVariableModuleGlobal->VariableGlobal.AuthSupport) {\r
3350 Status = AuthVariableLibProcessVariable (VariableName, VendorGuid, Data, DataSize, Attributes);\r
3351 } else {\r
3352 Status = UpdateVariable (VariableName, VendorGuid, Data, DataSize, Attributes, 0, 0, &Variable, NULL);\r
3353 }\r
72399dae 3354\r
ff843847 3355Done:\r
fdb7765f 3356 InterlockedDecrement (&mVariableModuleGlobal->VariableGlobal.ReentrantState);\r
052ad7e1 3357 ReleaseLockOnlyAtBootTime (&mVariableModuleGlobal->VariableGlobal.VariableServicesLock);\r
fdb7765f 3358\r
fa0737a8
SZ
3359 if (!AtRuntime ()) {\r
3360 if (!EFI_ERROR (Status)) {\r
3361 SecureBootHook (\r
3362 VariableName,\r
3363 VendorGuid\r
3364 );\r
3365 }\r
3366 }\r
3367\r
8d3a5c82 3368 return Status;\r
3369}\r
3370\r
7c80e839 3371/**\r
8d3a5c82 3372\r
3373 This code returns information about the EFI variables.\r
3374\r
18a7dbbc
SZ
3375 Caution: This function may receive untrusted input.\r
3376 This function may be invoked in SMM mode. This function will do basic validation, before parse the data.\r
3377\r
7c80e839 3378 @param Attributes Attributes bitmask to specify the type of variables\r
3379 on which to return information.\r
3380 @param MaximumVariableStorageSize Pointer to the maximum size of the storage space available\r
3381 for the EFI variables associated with the attributes specified.\r
3382 @param RemainingVariableStorageSize Pointer to the remaining size of the storage space available\r
3383 for EFI variables associated with the attributes specified.\r
3384 @param MaximumVariableSize Pointer to the maximum size of an individual EFI variables\r
3385 associated with the attributes specified.\r
8d3a5c82 3386\r
7c80e839 3387 @return EFI_SUCCESS Query successfully.\r
8d3a5c82 3388\r
7c80e839 3389**/\r
052ad7e1
A
3390EFI_STATUS\r
3391EFIAPI\r
b2bd493e 3392VariableServiceQueryVariableInfoInternal (\r
052ad7e1
A
3393 IN UINT32 Attributes,\r
3394 OUT UINT64 *MaximumVariableStorageSize,\r
3395 OUT UINT64 *RemainingVariableStorageSize,\r
3396 OUT UINT64 *MaximumVariableSize\r
3397 )\r
8d3a5c82 3398{\r
3399 VARIABLE_HEADER *Variable;\r
3400 VARIABLE_HEADER *NextVariable;\r
3401 UINT64 VariableSize;\r
3402 VARIABLE_STORE_HEADER *VariableStoreHeader;\r
2fcdca1d 3403 UINT64 CommonVariableTotalSize;\r
3404 UINT64 HwErrVariableTotalSize;\r
b2bd493e
SZ
3405 EFI_STATUS Status;\r
3406 VARIABLE_POINTER_TRACK VariablePtrTrack;\r
2fcdca1d 3407\r
3408 CommonVariableTotalSize = 0;\r
3409 HwErrVariableTotalSize = 0;\r
8d3a5c82 3410\r
8d3a5c82 3411 if((Attributes & EFI_VARIABLE_NON_VOLATILE) == 0) {\r
3412 //\r
3413 // Query is Volatile related.\r
3414 //\r
052ad7e1 3415 VariableStoreHeader = (VARIABLE_STORE_HEADER *) ((UINTN) mVariableModuleGlobal->VariableGlobal.VolatileVariableBase);\r
8d3a5c82 3416 } else {\r
3417 //\r
3418 // Query is Non-Volatile related.\r
3419 //\r
8a2d4996 3420 VariableStoreHeader = mNvVariableCache;\r
8d3a5c82 3421 }\r
3422\r
3423 //\r
3424 // Now let's fill *MaximumVariableStorageSize *RemainingVariableStorageSize\r
3425 // with the storage size (excluding the storage header size).\r
3426 //\r
3427 *MaximumVariableStorageSize = VariableStoreHeader->Size - sizeof (VARIABLE_STORE_HEADER);\r
c6492839 3428\r
3429 //\r
3430 // Harware error record variable needs larger size.\r
3431 //\r
2fcdca1d 3432 if ((Attributes & (EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_HARDWARE_ERROR_RECORD)) == (EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_HARDWARE_ERROR_RECORD)) {\r
188e4e84 3433 *MaximumVariableStorageSize = PcdGet32 (PcdHwErrStorageSize);\r
fa0737a8 3434 *MaximumVariableSize = PcdGet32 (PcdMaxHardwareErrorVariableSize) - GetVariableHeaderSize ();\r
2fcdca1d 3435 } else {\r
3436 if ((Attributes & EFI_VARIABLE_NON_VOLATILE) != 0) {\r
4edb1866
SZ
3437 if (AtRuntime ()) {\r
3438 *MaximumVariableStorageSize = mVariableModuleGlobal->CommonRuntimeVariableSpace;\r
3439 } else {\r
3440 *MaximumVariableStorageSize = mVariableModuleGlobal->CommonVariableSpace;\r
3441 }\r
2fcdca1d 3442 }\r
3443\r
3444 //\r
9b4a2032 3445 // Let *MaximumVariableSize be Max(Auth|Volatile)VariableSize with the exception of the variable header size.\r
2fcdca1d 3446 //\r
fa0737a8
SZ
3447 if ((Attributes & VARIABLE_ATTRIBUTE_AT_AW) != 0) {\r
3448 *MaximumVariableSize = mVariableModuleGlobal->MaxAuthVariableSize - GetVariableHeaderSize ();\r
9b4a2032 3449 } else if ((Attributes & EFI_VARIABLE_NON_VOLATILE) != 0) {\r
fa0737a8 3450 *MaximumVariableSize = mVariableModuleGlobal->MaxVariableSize - GetVariableHeaderSize ();\r
9b4a2032
LE
3451 } else {\r
3452 *MaximumVariableSize = mVariableModuleGlobal->MaxVolatileVariableSize - GetVariableHeaderSize ();\r
fa0737a8 3453 }\r
c6492839 3454 }\r
8d3a5c82 3455\r
3456 //\r
3457 // Point to the starting address of the variables.\r
3458 //\r
9cad030b 3459 Variable = GetStartPointer (VariableStoreHeader);\r
8d3a5c82 3460\r
3461 //\r
3462 // Now walk through the related variable store.\r
3463 //\r
6ebffb67 3464 while (IsValidVariableHeader (Variable, GetEndPointer (VariableStoreHeader))) {\r
8d3a5c82 3465 NextVariable = GetNextVariablePtr (Variable);\r
3466 VariableSize = (UINT64) (UINTN) NextVariable - (UINT64) (UINTN) Variable;\r
3467\r
8a2d4996 3468 if (AtRuntime ()) {\r
8d3a5c82 3469 //\r
8a2d4996 3470 // We don't take the state of the variables in mind\r
8d3a5c82 3471 // when calculating RemainingVariableStorageSize,\r
3472 // since the space occupied by variables not marked with\r
3473 // VAR_ADDED is not allowed to be reclaimed in Runtime.\r
3474 //\r
3b425367 3475 if ((Variable->Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) == EFI_VARIABLE_HARDWARE_ERROR_RECORD) {\r
2fcdca1d 3476 HwErrVariableTotalSize += VariableSize;\r
3477 } else {\r
3478 CommonVariableTotalSize += VariableSize;\r
3479 }\r
8d3a5c82 3480 } else {\r
3481 //\r
8a2d4996 3482 // Only care about Variables with State VAR_ADDED, because\r
8d3a5c82 3483 // the space not marked as VAR_ADDED is reclaimable now.\r
3484 //\r
3485 if (Variable->State == VAR_ADDED) {\r
3b425367 3486 if ((Variable->Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) == EFI_VARIABLE_HARDWARE_ERROR_RECORD) {\r
2fcdca1d 3487 HwErrVariableTotalSize += VariableSize;\r
3488 } else {\r
3489 CommonVariableTotalSize += VariableSize;\r
3490 }\r
b2bd493e
SZ
3491 } else if (Variable->State == (VAR_IN_DELETED_TRANSITION & VAR_ADDED)) {\r
3492 //\r
3493 // If it is a IN_DELETED_TRANSITION variable,\r
3494 // and there is not also a same ADDED one at the same time,\r
3495 // this IN_DELETED_TRANSITION variable is valid.\r
3496 //\r
3497 VariablePtrTrack.StartPtr = GetStartPointer (VariableStoreHeader);\r
3498 VariablePtrTrack.EndPtr = GetEndPointer (VariableStoreHeader);\r
3499 Status = FindVariableEx (\r
3500 GetVariableNamePtr (Variable),\r
fa0737a8 3501 GetVendorGuidPtr (Variable),\r
b2bd493e
SZ
3502 FALSE,\r
3503 &VariablePtrTrack\r
3504 );\r
3505 if (!EFI_ERROR (Status) && VariablePtrTrack.CurrPtr->State != VAR_ADDED) {\r
3506 if ((Variable->Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) == EFI_VARIABLE_HARDWARE_ERROR_RECORD) {\r
3507 HwErrVariableTotalSize += VariableSize;\r
3508 } else {\r
3509 CommonVariableTotalSize += VariableSize;\r
3510 }\r
3511 }\r
8d3a5c82 3512 }\r
3513 }\r
3514\r
3515 //\r
8a2d4996 3516 // Go to the next one.\r
8d3a5c82 3517 //\r
3518 Variable = NextVariable;\r
3519 }\r
3520\r
2fcdca1d 3521 if ((Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) == EFI_VARIABLE_HARDWARE_ERROR_RECORD){\r
3522 *RemainingVariableStorageSize = *MaximumVariableStorageSize - HwErrVariableTotalSize;\r
4edb1866
SZ
3523 } else {\r
3524 if (*MaximumVariableStorageSize < CommonVariableTotalSize) {\r
3525 *RemainingVariableStorageSize = 0;\r
3526 } else {\r
3527 *RemainingVariableStorageSize = *MaximumVariableStorageSize - CommonVariableTotalSize;\r
3528 }\r
2fcdca1d 3529 }\r
3530\r
fa0737a8 3531 if (*RemainingVariableStorageSize < GetVariableHeaderSize ()) {\r
c6492839 3532 *MaximumVariableSize = 0;\r
fa0737a8
SZ
3533 } else if ((*RemainingVariableStorageSize - GetVariableHeaderSize ()) < *MaximumVariableSize) {\r
3534 *MaximumVariableSize = *RemainingVariableStorageSize - GetVariableHeaderSize ();\r
c6492839 3535 }\r
3536\r
8d3a5c82 3537 return EFI_SUCCESS;\r
3538}\r
3539\r
b2bd493e
SZ
3540/**\r
3541\r
3542 This code returns information about the EFI variables.\r
3543\r
18a7dbbc
SZ
3544 Caution: This function may receive untrusted input.\r
3545 This function may be invoked in SMM mode. This function will do basic validation, before parse the data.\r
3546\r
b2bd493e
SZ
3547 @param Attributes Attributes bitmask to specify the type of variables\r
3548 on which to return information.\r
3549 @param MaximumVariableStorageSize Pointer to the maximum size of the storage space available\r
3550 for the EFI variables associated with the attributes specified.\r
3551 @param RemainingVariableStorageSize Pointer to the remaining size of the storage space available\r
3552 for EFI variables associated with the attributes specified.\r
3553 @param MaximumVariableSize Pointer to the maximum size of an individual EFI variables\r
3554 associated with the attributes specified.\r
3555\r
3556 @return EFI_INVALID_PARAMETER An invalid combination of attribute bits was supplied.\r
3557 @return EFI_SUCCESS Query successfully.\r
3558 @return EFI_UNSUPPORTED The attribute is not supported on this platform.\r
3559\r
3560**/\r
3561EFI_STATUS\r
3562EFIAPI\r
3563VariableServiceQueryVariableInfo (\r
3564 IN UINT32 Attributes,\r
3565 OUT UINT64 *MaximumVariableStorageSize,\r
3566 OUT UINT64 *RemainingVariableStorageSize,\r
3567 OUT UINT64 *MaximumVariableSize\r
3568 )\r
3569{\r
3570 EFI_STATUS Status;\r
3571\r
3572 if(MaximumVariableStorageSize == NULL || RemainingVariableStorageSize == NULL || MaximumVariableSize == NULL || Attributes == 0) {\r
3573 return EFI_INVALID_PARAMETER;\r
3574 }\r
3575\r
67943427 3576 if ((Attributes & EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS) != 0) {\r
3577 //\r
3578 // Deprecated attribute, make this check as highest priority.\r
3579 //\r
3580 return EFI_UNSUPPORTED;\r
3581 }\r
3582\r
fa0737a8 3583 if ((Attributes & EFI_VARIABLE_ATTRIBUTES_MASK) == 0) {\r
b2bd493e
SZ
3584 //\r
3585 // Make sure the Attributes combination is supported by the platform.\r
3586 //\r
3587 return EFI_UNSUPPORTED;\r
3588 } else if ((Attributes & (EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_BOOTSERVICE_ACCESS)) == EFI_VARIABLE_RUNTIME_ACCESS) {\r
3589 //\r
3590 // Make sure if runtime bit is set, boot service bit is set also.\r
3591 //\r
3592 return EFI_INVALID_PARAMETER;\r
3593 } else if (AtRuntime () && ((Attributes & EFI_VARIABLE_RUNTIME_ACCESS) == 0)) {\r
3594 //\r
3595 // Make sure RT Attribute is set if we are in Runtime phase.\r
3596 //\r
3597 return EFI_INVALID_PARAMETER;\r
3598 } else if ((Attributes & (EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_HARDWARE_ERROR_RECORD)) == EFI_VARIABLE_HARDWARE_ERROR_RECORD) {\r
3599 //\r
3600 // Make sure Hw Attribute is set with NV.\r
3601 //\r
3602 return EFI_INVALID_PARAMETER;\r
fa0737a8
SZ
3603 } else if ((Attributes & VARIABLE_ATTRIBUTE_AT_AW) != 0) {\r
3604 if (!mVariableModuleGlobal->VariableGlobal.AuthSupport) {\r
3605 //\r
3606 // Not support authenticated variable write.\r
3607 //\r
3608 return EFI_UNSUPPORTED;\r
3609 }\r
3610 } else if ((Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) != 0) {\r
3611 if (PcdGet32 (PcdHwErrStorageSize) == 0) {\r
3612 //\r
3613 // Not support harware error record variable variable.\r
3614 //\r
3615 return EFI_UNSUPPORTED;\r
3616 }\r
b2bd493e
SZ
3617 }\r
3618\r
3619 AcquireLockOnlyAtBootTime(&mVariableModuleGlobal->VariableGlobal.VariableServicesLock);\r
3620\r
3621 Status = VariableServiceQueryVariableInfoInternal (\r
3622 Attributes,\r
3623 MaximumVariableStorageSize,\r
3624 RemainingVariableStorageSize,\r
3625 MaximumVariableSize\r
3626 );\r
3627\r
3628 ReleaseLockOnlyAtBootTime (&mVariableModuleGlobal->VariableGlobal.VariableServicesLock);\r
3629 return Status;\r
3630}\r
7c80e839 3631\r
3632/**\r
8a2d4996 3633 This function reclaims variable storage if free size is below the threshold.\r
18a7dbbc
SZ
3634\r
3635 Caution: This function may be invoked at SMM mode.\r
3636 Care must be taken to make sure not security issue.\r
3637\r
7c80e839 3638**/\r
7800593d 3639VOID\r
7800593d 3640ReclaimForOS(\r
8a2d4996 3641 VOID\r
7800593d
LG
3642 )\r
3643{\r
9948c0b0 3644 EFI_STATUS Status;\r
4edb1866 3645 UINTN RemainingCommonRuntimeVariableSpace;\r
2fcdca1d 3646 UINTN RemainingHwErrVariableSpace;\r
0fb5e515
SZ
3647 STATIC BOOLEAN Reclaimed;\r
3648\r
3649 //\r
3650 // This function will be called only once at EndOfDxe or ReadyToBoot event.\r
3651 //\r
3652 if (Reclaimed) {\r
3653 return;\r
3654 }\r
3655 Reclaimed = TRUE;\r
7800593d 3656\r
4edb1866 3657 Status = EFI_SUCCESS;\r
7800593d 3658\r
4edb1866
SZ
3659 if (mVariableModuleGlobal->CommonRuntimeVariableSpace < mVariableModuleGlobal->CommonVariableTotalSize) {\r
3660 RemainingCommonRuntimeVariableSpace = 0;\r
3661 } else {\r
3662 RemainingCommonRuntimeVariableSpace = mVariableModuleGlobal->CommonRuntimeVariableSpace - mVariableModuleGlobal->CommonVariableTotalSize;\r
3663 }\r
2fcdca1d 3664\r
3665 RemainingHwErrVariableSpace = PcdGet32 (PcdHwErrStorageSize) - mVariableModuleGlobal->HwErrVariableTotalSize;\r
fa0737a8 3666\r
7800593d 3667 //\r
4edb1866 3668 // Check if the free area is below a threshold.\r
7800593d 3669 //\r
fa0737a8
SZ
3670 if (((RemainingCommonRuntimeVariableSpace < mVariableModuleGlobal->MaxVariableSize) ||\r
3671 (RemainingCommonRuntimeVariableSpace < mVariableModuleGlobal->MaxAuthVariableSize)) ||\r
3672 ((PcdGet32 (PcdHwErrStorageSize) != 0) &&\r
9948c0b0 3673 (RemainingHwErrVariableSpace < PcdGet32 (PcdMaxHardwareErrorVariableSize)))){\r
7800593d 3674 Status = Reclaim (\r
2fcdca1d 3675 mVariableModuleGlobal->VariableGlobal.NonVolatileVariableBase,\r
3676 &mVariableModuleGlobal->NonVolatileLastVariableOffset,\r
3677 FALSE,\r
335e2681 3678 NULL,\r
7baf3c69
SZ
3679 NULL,\r
3680 0\r
2fcdca1d 3681 );\r
7800593d
LG
3682 ASSERT_EFI_ERROR (Status);\r
3683 }\r
3684}\r
3685\r
fa0737a8
SZ
3686/**\r
3687 Get non-volatile maximum variable size.\r
3688\r
3689 @return Non-volatile maximum variable size.\r
3690\r
3691**/\r
3692UINTN\r
3693GetNonVolatileMaxVariableSize (\r
3694 VOID\r
3695 )\r
3696{\r
3697 if (PcdGet32 (PcdHwErrStorageSize) != 0) {\r
3698 return MAX (MAX (PcdGet32 (PcdMaxVariableSize), PcdGet32 (PcdMaxAuthVariableSize)),\r
3699 PcdGet32 (PcdMaxHardwareErrorVariableSize));\r
3700 } else {\r
3701 return MAX (PcdGet32 (PcdMaxVariableSize), PcdGet32 (PcdMaxAuthVariableSize));\r
3702 }\r
3703}\r
3704\r
9b4a2032
LE
3705/**\r
3706 Get maximum variable size, covering both non-volatile and volatile variables.\r
3707\r
3708 @return Maximum variable size.\r
3709\r
3710**/\r
3711UINTN\r
3712GetMaxVariableSize (\r
3713 VOID\r
3714 )\r
3715{\r
3716 UINTN MaxVariableSize;\r
3717\r
3718 MaxVariableSize = GetNonVolatileMaxVariableSize();\r
3719 //\r
3720 // The condition below fails implicitly if PcdMaxVolatileVariableSize equals\r
3721 // the default zero value.\r
3722 //\r
3723 if (MaxVariableSize < PcdGet32 (PcdMaxVolatileVariableSize)) {\r
3724 MaxVariableSize = PcdGet32 (PcdMaxVolatileVariableSize);\r
3725 }\r
3726 return MaxVariableSize;\r
3727}\r
3728\r
3e02ebb2 3729/**\r
701d603f 3730 Init real non-volatile variable store.\r
3e02ebb2 3731\r
701d603f 3732 @param[out] VariableStoreBase Output pointer to real non-volatile variable store base.\r
fa0737a8 3733\r
3e02ebb2
SZ
3734 @retval EFI_SUCCESS Function successfully executed.\r
3735 @retval EFI_OUT_OF_RESOURCES Fail to allocate enough memory resource.\r
3736 @retval EFI_VOLUME_CORRUPTED Variable Store or Firmware Volume for Variable Store is corrupted.\r
3737\r
3738**/\r
3739EFI_STATUS\r
701d603f
SZ
3740InitRealNonVolatileVariableStore (\r
3741 OUT EFI_PHYSICAL_ADDRESS *VariableStoreBase\r
3e02ebb2
SZ
3742 )\r
3743{\r
3744 EFI_FIRMWARE_VOLUME_HEADER *FvHeader;\r
701d603f
SZ
3745 VARIABLE_STORE_HEADER *VariableStore;\r
3746 UINT32 VariableStoreLength;\r
3e02ebb2
SZ
3747 EFI_HOB_GUID_TYPE *GuidHob;\r
3748 EFI_PHYSICAL_ADDRESS NvStorageBase;\r
3749 UINT8 *NvStorageData;\r
3750 UINT32 NvStorageSize;\r
3751 FAULT_TOLERANT_WRITE_LAST_WRITE_DATA *FtwLastWriteData;\r
3752 UINT32 BackUpOffset;\r
3753 UINT32 BackUpSize;\r
4edb1866
SZ
3754 UINT32 HwErrStorageSize;\r
3755 UINT32 MaxUserNvVariableSpaceSize;\r
3756 UINT32 BoottimeReservedNvVariableSpaceSize;\r
14326ed0
SZ
3757 EFI_STATUS Status;\r
3758 VOID *FtwProtocol;\r
3e02ebb2
SZ
3759\r
3760 mVariableModuleGlobal->FvbInstance = NULL;\r
3761\r
3e02ebb2
SZ
3762 //\r
3763 // Allocate runtime memory used for a memory copy of the FLASH region.\r
3764 // Keep the memory and the FLASH in sync as updates occur.\r
3765 //\r
3766 NvStorageSize = PcdGet32 (PcdFlashNvStorageVariableSize);\r
3767 NvStorageData = AllocateRuntimeZeroPool (NvStorageSize);\r
3768 if (NvStorageData == NULL) {\r
3769 return EFI_OUT_OF_RESOURCES;\r
3770 }\r
3771\r
904e0ca9 3772 NvStorageBase = NV_STORAGE_VARIABLE_BASE;\r
701d603f
SZ
3773 ASSERT (NvStorageBase != 0);\r
3774\r
3e02ebb2
SZ
3775 //\r
3776 // Copy NV storage data to the memory buffer.\r
3777 //\r
3778 CopyMem (NvStorageData, (UINT8 *) (UINTN) NvStorageBase, NvStorageSize);\r
3779\r
14326ed0 3780 Status = GetFtwProtocol ((VOID **)&FtwProtocol);\r
3e02ebb2 3781 //\r
14326ed0 3782 // If FTW protocol has been installed, no need to check FTW last write data hob.\r
3e02ebb2 3783 //\r
14326ed0
SZ
3784 if (EFI_ERROR (Status)) {\r
3785 //\r
3786 // Check the FTW last write data hob.\r
3787 //\r
3788 GuidHob = GetFirstGuidHob (&gEdkiiFaultTolerantWriteGuid);\r
3789 if (GuidHob != NULL) {\r
3790 FtwLastWriteData = (FAULT_TOLERANT_WRITE_LAST_WRITE_DATA *) GET_GUID_HOB_DATA (GuidHob);\r
3791 if (FtwLastWriteData->TargetAddress == NvStorageBase) {\r
3792 DEBUG ((EFI_D_INFO, "Variable: NV storage is backed up in spare block: 0x%x\n", (UINTN) FtwLastWriteData->SpareAddress));\r
3793 //\r
3794 // Copy the backed up NV storage data to the memory buffer from spare block.\r
3795 //\r
3796 CopyMem (NvStorageData, (UINT8 *) (UINTN) (FtwLastWriteData->SpareAddress), NvStorageSize);\r
3797 } else if ((FtwLastWriteData->TargetAddress > NvStorageBase) &&\r
3798 (FtwLastWriteData->TargetAddress < (NvStorageBase + NvStorageSize))) {\r
3799 //\r
3800 // Flash NV storage from the Offset is backed up in spare block.\r
3801 //\r
3802 BackUpOffset = (UINT32) (FtwLastWriteData->TargetAddress - NvStorageBase);\r
3803 BackUpSize = NvStorageSize - BackUpOffset;\r
3804 DEBUG ((EFI_D_INFO, "Variable: High partial NV storage from offset: %x is backed up in spare block: 0x%x\n", BackUpOffset, (UINTN) FtwLastWriteData->SpareAddress));\r
3805 //\r
3806 // Copy the partial backed up NV storage data to the memory buffer from spare block.\r
3807 //\r
3808 CopyMem (NvStorageData + BackUpOffset, (UINT8 *) (UINTN) FtwLastWriteData->SpareAddress, BackUpSize);\r
3809 }\r
3e02ebb2
SZ
3810 }\r
3811 }\r
3812\r
3813 FvHeader = (EFI_FIRMWARE_VOLUME_HEADER *) NvStorageData;\r
3814\r
3815 //\r
3816 // Check if the Firmware Volume is not corrupted\r
3817 //\r
3818 if ((FvHeader->Signature != EFI_FVH_SIGNATURE) || (!CompareGuid (&gEfiSystemNvDataFvGuid, &FvHeader->FileSystemGuid))) {\r
3819 FreePool (NvStorageData);\r
3820 DEBUG ((EFI_D_ERROR, "Firmware Volume for Variable Store is corrupted\n"));\r
3821 return EFI_VOLUME_CORRUPTED;\r
3822 }\r
3823\r
701d603f 3824 VariableStore = (VARIABLE_STORE_HEADER *) ((UINTN) FvHeader + FvHeader->HeaderLength);\r
16f69227 3825 VariableStoreLength = NvStorageSize - FvHeader->HeaderLength;\r
701d603f
SZ
3826 ASSERT (sizeof (VARIABLE_STORE_HEADER) <= VariableStoreLength);\r
3827 ASSERT (VariableStore->Size == VariableStoreLength);\r
3e02ebb2 3828\r
701d603f
SZ
3829 //\r
3830 // Check if the Variable Store header is not corrupted\r
3831 //\r
3832 if (GetVariableStoreStatus (VariableStore) != EfiValid) {\r
3e02ebb2
SZ
3833 FreePool (NvStorageData);\r
3834 DEBUG((EFI_D_ERROR, "Variable Store header is corrupted\n"));\r
3835 return EFI_VOLUME_CORRUPTED;\r
3836 }\r
3e02ebb2 3837\r
701d603f 3838 mNvFvHeaderCache = FvHeader;\r
4edb1866 3839\r
701d603f 3840 *VariableStoreBase = (EFI_PHYSICAL_ADDRESS) (UINTN) VariableStore;\r
fa0737a8 3841\r
4edb1866
SZ
3842 HwErrStorageSize = PcdGet32 (PcdHwErrStorageSize);\r
3843 MaxUserNvVariableSpaceSize = PcdGet32 (PcdMaxUserNvVariableSpaceSize);\r
3844 BoottimeReservedNvVariableSpaceSize = PcdGet32 (PcdBoottimeReservedNvVariableSpaceSize);\r
3845\r
3846 //\r
3847 // Note that in EdkII variable driver implementation, Hardware Error Record type variable\r
3848 // is stored with common variable in the same NV region. So the platform integrator should\r
3849 // ensure that the value of PcdHwErrStorageSize is less than the value of\r
fa0737a8 3850 // (VariableStoreLength - sizeof (VARIABLE_STORE_HEADER)).\r
4edb1866
SZ
3851 //\r
3852 ASSERT (HwErrStorageSize < (VariableStoreLength - sizeof (VARIABLE_STORE_HEADER)));\r
3853 //\r
3854 // Ensure that the value of PcdMaxUserNvVariableSpaceSize is less than the value of\r
fa0737a8 3855 // (VariableStoreLength - sizeof (VARIABLE_STORE_HEADER)) - PcdGet32 (PcdHwErrStorageSize).\r
4edb1866
SZ
3856 //\r
3857 ASSERT (MaxUserNvVariableSpaceSize < (VariableStoreLength - sizeof (VARIABLE_STORE_HEADER) - HwErrStorageSize));\r
3858 //\r
3859 // Ensure that the value of PcdBoottimeReservedNvVariableSpaceSize is less than the value of\r
fa0737a8 3860 // (VariableStoreLength - sizeof (VARIABLE_STORE_HEADER)) - PcdGet32 (PcdHwErrStorageSize).\r
4edb1866
SZ
3861 //\r
3862 ASSERT (BoottimeReservedNvVariableSpaceSize < (VariableStoreLength - sizeof (VARIABLE_STORE_HEADER) - HwErrStorageSize));\r
3863\r
3864 mVariableModuleGlobal->CommonVariableSpace = ((UINTN) VariableStoreLength - sizeof (VARIABLE_STORE_HEADER) - HwErrStorageSize);\r
3865 mVariableModuleGlobal->CommonMaxUserVariableSpace = ((MaxUserNvVariableSpaceSize != 0) ? MaxUserNvVariableSpaceSize : mVariableModuleGlobal->CommonVariableSpace);\r
3866 mVariableModuleGlobal->CommonRuntimeVariableSpace = mVariableModuleGlobal->CommonVariableSpace - BoottimeReservedNvVariableSpaceSize;\r
3867\r
3868 DEBUG ((EFI_D_INFO, "Variable driver common space: 0x%x 0x%x 0x%x\n", mVariableModuleGlobal->CommonVariableSpace, mVariableModuleGlobal->CommonMaxUserVariableSpace, mVariableModuleGlobal->CommonRuntimeVariableSpace));\r
3869\r
3e02ebb2 3870 //\r
fa0737a8 3871 // The max NV variable size should be < (VariableStoreLength - sizeof (VARIABLE_STORE_HEADER)).\r
3e02ebb2 3872 //\r
fa0737a8
SZ
3873 ASSERT (GetNonVolatileMaxVariableSize () < (VariableStoreLength - sizeof (VARIABLE_STORE_HEADER)));\r
3874\r
701d603f
SZ
3875 return EFI_SUCCESS;\r
3876}\r
3877\r
3878/**\r
3879 Init non-volatile variable store.\r
3880\r
3881 @retval EFI_SUCCESS Function successfully executed.\r
3882 @retval EFI_OUT_OF_RESOURCES Fail to allocate enough memory resource.\r
3883 @retval EFI_VOLUME_CORRUPTED Variable Store or Firmware Volume for Variable Store is corrupted.\r
3884\r
3885**/\r
3886EFI_STATUS\r
3887InitNonVolatileVariableStore (\r
3888 VOID\r
3889 )\r
3890{\r
3891 VARIABLE_HEADER *Variable;\r
3892 VARIABLE_HEADER *NextVariable;\r
3893 EFI_PHYSICAL_ADDRESS VariableStoreBase;\r
3894 UINTN VariableSize;\r
3895 EFI_STATUS Status;\r
3896\r
3897 Status = InitRealNonVolatileVariableStore (&VariableStoreBase);\r
3898 if (EFI_ERROR (Status)) {\r
3899 return Status;\r
3900 }\r
3901\r
3902 mVariableModuleGlobal->VariableGlobal.NonVolatileVariableBase = VariableStoreBase;\r
3903 mNvVariableCache = (VARIABLE_STORE_HEADER *) (UINTN) VariableStoreBase;\r
3904 mVariableModuleGlobal->VariableGlobal.AuthFormat = (BOOLEAN)(CompareGuid (&mNvVariableCache->Signature, &gEfiAuthenticatedVariableGuid));\r
3905\r
fa0737a8
SZ
3906 mVariableModuleGlobal->MaxVariableSize = PcdGet32 (PcdMaxVariableSize);\r
3907 mVariableModuleGlobal->MaxAuthVariableSize = ((PcdGet32 (PcdMaxAuthVariableSize) != 0) ? PcdGet32 (PcdMaxAuthVariableSize) : mVariableModuleGlobal->MaxVariableSize);\r
3e02ebb2
SZ
3908\r
3909 //\r
3910 // Parse non-volatile variable data and get last variable offset.\r
3911 //\r
701d603f
SZ
3912 Variable = GetStartPointer (mNvVariableCache);\r
3913 while (IsValidVariableHeader (Variable, GetEndPointer (mNvVariableCache))) {\r
4edb1866
SZ
3914 NextVariable = GetNextVariablePtr (Variable);\r
3915 VariableSize = (UINTN) NextVariable - (UINTN) Variable;\r
3916 if ((Variable->Attributes & (EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_HARDWARE_ERROR_RECORD)) == (EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_HARDWARE_ERROR_RECORD)) {\r
3917 mVariableModuleGlobal->HwErrVariableTotalSize += VariableSize;\r
3e02ebb2 3918 } else {\r
4edb1866 3919 mVariableModuleGlobal->CommonVariableTotalSize += VariableSize;\r
3e02ebb2
SZ
3920 }\r
3921\r
4edb1866 3922 Variable = NextVariable;\r
3e02ebb2 3923 }\r
701d603f 3924 mVariableModuleGlobal->NonVolatileLastVariableOffset = (UINTN) Variable - (UINTN) mNvVariableCache;\r
3e02ebb2
SZ
3925\r
3926 return EFI_SUCCESS;\r
3927}\r
3928\r
335e2681
SZ
3929/**\r
3930 Flush the HOB variable to flash.\r
3931\r
3932 @param[in] VariableName Name of variable has been updated or deleted.\r
3933 @param[in] VendorGuid Guid of variable has been updated or deleted.\r
3934\r
3935**/\r
3936VOID\r
3937FlushHobVariableToFlash (\r
3938 IN CHAR16 *VariableName,\r
3939 IN EFI_GUID *VendorGuid\r
3940 )\r
3941{\r
3942 EFI_STATUS Status;\r
3943 VARIABLE_STORE_HEADER *VariableStoreHeader;\r
3944 VARIABLE_HEADER *Variable;\r
3945 VOID *VariableData;\r
31349131 3946 VARIABLE_POINTER_TRACK VariablePtrTrack;\r
335e2681
SZ
3947 BOOLEAN ErrorFlag;\r
3948\r
3949 ErrorFlag = FALSE;\r
3950\r
3951 //\r
3952 // Flush the HOB variable to flash.\r
3953 //\r
3954 if (mVariableModuleGlobal->VariableGlobal.HobVariableBase != 0) {\r
3955 VariableStoreHeader = (VARIABLE_STORE_HEADER *) (UINTN) mVariableModuleGlobal->VariableGlobal.HobVariableBase;\r
3956 //\r
3957 // Set HobVariableBase to 0, it can avoid SetVariable to call back.\r
3958 //\r
3959 mVariableModuleGlobal->VariableGlobal.HobVariableBase = 0;\r
3960 for ( Variable = GetStartPointer (VariableStoreHeader)\r
6ebffb67 3961 ; IsValidVariableHeader (Variable, GetEndPointer (VariableStoreHeader))\r
335e2681
SZ
3962 ; Variable = GetNextVariablePtr (Variable)\r
3963 ) {\r
3964 if (Variable->State != VAR_ADDED) {\r
3965 //\r
3966 // The HOB variable has been set to DELETED state in local.\r
3967 //\r
3968 continue;\r
3969 }\r
3970 ASSERT ((Variable->Attributes & EFI_VARIABLE_NON_VOLATILE) != 0);\r
3971 if (VendorGuid == NULL || VariableName == NULL ||\r
fa0737a8 3972 !CompareGuid (VendorGuid, GetVendorGuidPtr (Variable)) ||\r
335e2681
SZ
3973 StrCmp (VariableName, GetVariableNamePtr (Variable)) != 0) {\r
3974 VariableData = GetVariableDataPtr (Variable);\r
31349131
SZ
3975 FindVariable (GetVariableNamePtr (Variable), GetVendorGuidPtr (Variable), &VariablePtrTrack, &mVariableModuleGlobal->VariableGlobal, FALSE);\r
3976 Status = UpdateVariable (\r
335e2681 3977 GetVariableNamePtr (Variable),\r
fa0737a8 3978 GetVendorGuidPtr (Variable),\r
31349131 3979 VariableData,\r
fa0737a8 3980 DataSizeOfVariable (Variable),\r
31349131
SZ
3981 Variable->Attributes,\r
3982 0,\r
3983 0,\r
3984 &VariablePtrTrack,\r
3985 NULL\r
3986 );\r
fa0737a8 3987 DEBUG ((EFI_D_INFO, "Variable driver flush the HOB variable to flash: %g %s %r\n", GetVendorGuidPtr (Variable), GetVariableNamePtr (Variable), Status));\r
335e2681
SZ
3988 } else {\r
3989 //\r
31349131 3990 // The updated or deleted variable is matched with this HOB variable.\r
335e2681
SZ
3991 // Don't break here because we will try to set other HOB variables\r
3992 // since this variable could be set successfully.\r
3993 //\r
3994 Status = EFI_SUCCESS;\r
3995 }\r
3996 if (!EFI_ERROR (Status)) {\r
3997 //\r
3998 // If set variable successful, or the updated or deleted variable is matched with the HOB variable,\r
3999 // set the HOB variable to DELETED state in local.\r
4000 //\r
fa0737a8 4001 DEBUG ((EFI_D_INFO, "Variable driver set the HOB variable to DELETED state in local: %g %s\n", GetVendorGuidPtr (Variable), GetVariableNamePtr (Variable)));\r
335e2681
SZ
4002 Variable->State &= VAR_DELETED;\r
4003 } else {\r
4004 ErrorFlag = TRUE;\r
4005 }\r
4006 }\r
4007 if (ErrorFlag) {\r
4008 //\r
4009 // We still have HOB variable(s) not flushed in flash.\r
4010 //\r
4011 mVariableModuleGlobal->VariableGlobal.HobVariableBase = (EFI_PHYSICAL_ADDRESS) (UINTN) VariableStoreHeader;\r
4012 } else {\r
4013 //\r
4014 // All HOB variables have been flushed in flash.\r
4015 //\r
4016 DEBUG ((EFI_D_INFO, "Variable driver: all HOB variables have been flushed in flash.\n"));\r
4017 if (!AtRuntime ()) {\r
4018 FreePool ((VOID *) VariableStoreHeader);\r
4019 }\r
4020 }\r
4021 }\r
4022\r
4023}\r
8a2d4996 4024\r
7c80e839 4025/**\r
904e0ca9 4026 Initializes variable write service.\r
7c80e839 4027\r
8a2d4996 4028 @retval EFI_SUCCESS Function successfully executed.\r
4029 @retval Others Fail to initialize the variable service.\r
4030\r
4031**/\r
4032EFI_STATUS\r
4033VariableWriteServiceInitialize (\r
4034 VOID\r
4035 )\r
4036{\r
4037 EFI_STATUS Status;\r
8a2d4996 4038 UINTN Index;\r
4039 UINT8 Data;\r
fa0737a8 4040 VARIABLE_ENTRY_PROPERTY *VariableEntry;\r
8a2d4996 4041\r
31349131
SZ
4042 AcquireLockOnlyAtBootTime(&mVariableModuleGlobal->VariableGlobal.VariableServicesLock);\r
4043\r
8a2d4996 4044 //\r
4045 // Check if the free area is really free.\r
4046 //\r
9b18845a 4047 for (Index = mVariableModuleGlobal->NonVolatileLastVariableOffset; Index < mNvVariableCache->Size; Index++) {\r
8a2d4996 4048 Data = ((UINT8 *) mNvVariableCache)[Index];\r
4049 if (Data != 0xff) {\r
4050 //\r
4051 // There must be something wrong in variable store, do reclaim operation.\r
4052 //\r
4053 Status = Reclaim (\r
4054 mVariableModuleGlobal->VariableGlobal.NonVolatileVariableBase,\r
4055 &mVariableModuleGlobal->NonVolatileLastVariableOffset,\r
4056 FALSE,\r
335e2681 4057 NULL,\r
7baf3c69
SZ
4058 NULL,\r
4059 0\r
8a2d4996 4060 );\r
4061 if (EFI_ERROR (Status)) {\r
31349131 4062 ReleaseLockOnlyAtBootTime (&mVariableModuleGlobal->VariableGlobal.VariableServicesLock);\r
8a2d4996 4063 return Status;\r
4064 }\r
4065 break;\r
4066 }\r
4067 }\r
4068\r
335e2681 4069 FlushHobVariableToFlash (NULL, NULL);\r
0f7aff72 4070\r
fa0737a8 4071 Status = EFI_SUCCESS;\r
8021f4c7 4072 ZeroMem (&mAuthContextOut, sizeof (mAuthContextOut));\r
fa0737a8
SZ
4073 if (mVariableModuleGlobal->VariableGlobal.AuthFormat) {\r
4074 //\r
4075 // Authenticated variable initialize.\r
4076 //\r
8021f4c7
SZ
4077 mAuthContextIn.StructSize = sizeof (AUTH_VAR_LIB_CONTEXT_IN);\r
4078 mAuthContextIn.MaxAuthVariableSize = mVariableModuleGlobal->MaxAuthVariableSize - GetVariableHeaderSize ();\r
4079 Status = AuthVariableLibInitialize (&mAuthContextIn, &mAuthContextOut);\r
fa0737a8
SZ
4080 if (!EFI_ERROR (Status)) {\r
4081 DEBUG ((EFI_D_INFO, "Variable driver will work with auth variable support!\n"));\r
4082 mVariableModuleGlobal->VariableGlobal.AuthSupport = TRUE;\r
8021f4c7
SZ
4083 if (mAuthContextOut.AuthVarEntry != NULL) {\r
4084 for (Index = 0; Index < mAuthContextOut.AuthVarEntryCount; Index++) {\r
4085 VariableEntry = &mAuthContextOut.AuthVarEntry[Index];\r
4086 Status = VarCheckLibVariablePropertySet (\r
fa0737a8
SZ
4087 VariableEntry->Name,\r
4088 VariableEntry->Guid,\r
4089 &VariableEntry->VariableProperty\r
4090 );\r
4091 ASSERT_EFI_ERROR (Status);\r
4092 }\r
4093 }\r
4094 } else if (Status == EFI_UNSUPPORTED) {\r
4095 DEBUG ((EFI_D_INFO, "NOTICE - AuthVariableLibInitialize() returns %r!\n", Status));\r
4096 DEBUG ((EFI_D_INFO, "Variable driver will continue to work without auth variable support!\n"));\r
4097 mVariableModuleGlobal->VariableGlobal.AuthSupport = FALSE;\r
4098 Status = EFI_SUCCESS;\r
4099 }\r
4100 }\r
4101\r
4102 if (!EFI_ERROR (Status)) {\r
33f615e2 4103 for (Index = 0; Index < ARRAY_SIZE (mVariableEntryProperty); Index++) {\r
fa0737a8 4104 VariableEntry = &mVariableEntryProperty[Index];\r
8021f4c7 4105 Status = VarCheckLibVariablePropertySet (VariableEntry->Name, VariableEntry->Guid, &VariableEntry->VariableProperty);\r
fa0737a8
SZ
4106 ASSERT_EFI_ERROR (Status);\r
4107 }\r
4108 }\r
4109\r
31349131 4110 ReleaseLockOnlyAtBootTime (&mVariableModuleGlobal->VariableGlobal.VariableServicesLock);\r
2f6aa774
JY
4111\r
4112 //\r
4113 // Initialize MOR Lock variable.\r
4114 //\r
4115 MorLockInit ();\r
4116\r
fa0737a8 4117 return Status;\r
8a2d4996 4118}\r
4119\r
a37044ef
LG
4120/**\r
4121 Convert normal variable storage to the allocated auth variable storage.\r
4122\r
4123 @param[in] NormalVarStorage Pointer to the normal variable storage header\r
4124\r
4125 @retval the allocated auth variable storage\r
4126**/\r
4127VOID *\r
4128ConvertNormalVarStorageToAuthVarStorage (\r
4129 VARIABLE_STORE_HEADER *NormalVarStorage\r
4130 )\r
4131{\r
4132 VARIABLE_HEADER *StartPtr;\r
4133 UINT8 *NextPtr;\r
4134 VARIABLE_HEADER *EndPtr;\r
4135 UINTN AuthVarStroageSize;\r
4136 AUTHENTICATED_VARIABLE_HEADER *AuthStartPtr;\r
4137 VARIABLE_STORE_HEADER *AuthVarStorage;\r
4138\r
4139 AuthVarStroageSize = sizeof (VARIABLE_STORE_HEADER);\r
4140 //\r
4141 // Set AuthFormat as FALSE for normal variable storage\r
4142 //\r
4143 mVariableModuleGlobal->VariableGlobal.AuthFormat = FALSE;\r
4144\r
4145 //\r
4146 // Calculate Auth Variable Storage Size\r
4147 //\r
4148 StartPtr = GetStartPointer (NormalVarStorage);\r
4149 EndPtr = GetEndPointer (NormalVarStorage);\r
4150 while (StartPtr < EndPtr) {\r
4151 if (StartPtr->State == VAR_ADDED) {\r
4152 AuthVarStroageSize = HEADER_ALIGN (AuthVarStroageSize);\r
4153 AuthVarStroageSize += sizeof (AUTHENTICATED_VARIABLE_HEADER);\r
4154 AuthVarStroageSize += StartPtr->NameSize + GET_PAD_SIZE (StartPtr->NameSize);\r
4155 AuthVarStroageSize += StartPtr->DataSize + GET_PAD_SIZE (StartPtr->DataSize);\r
4156 }\r
4157 StartPtr = GetNextVariablePtr (StartPtr);\r
4158 }\r
4159\r
4160 //\r
4161 // Allocate Runtime memory for Auth Variable Storage\r
4162 //\r
4163 AuthVarStorage = AllocateRuntimeZeroPool (AuthVarStroageSize);\r
4164 ASSERT (AuthVarStorage != NULL);\r
4165 if (AuthVarStorage == NULL) {\r
4166 return NULL;\r
4167 }\r
4168\r
4169 //\r
4170 // Copy Variable from Normal storage to Auth storage\r
4171 //\r
4172 StartPtr = GetStartPointer (NormalVarStorage);\r
4173 EndPtr = GetEndPointer (NormalVarStorage);\r
4174 AuthStartPtr = (AUTHENTICATED_VARIABLE_HEADER *) GetStartPointer (AuthVarStorage);\r
4175 while (StartPtr < EndPtr) {\r
4176 if (StartPtr->State == VAR_ADDED) {\r
4177 AuthStartPtr = (AUTHENTICATED_VARIABLE_HEADER *) HEADER_ALIGN (AuthStartPtr);\r
4178 //\r
4179 // Copy Variable Header\r
4180 //\r
4181 AuthStartPtr->StartId = StartPtr->StartId;\r
4182 AuthStartPtr->State = StartPtr->State;\r
4183 AuthStartPtr->Attributes = StartPtr->Attributes;\r
4184 AuthStartPtr->NameSize = StartPtr->NameSize;\r
4185 AuthStartPtr->DataSize = StartPtr->DataSize;\r
4186 CopyGuid (&AuthStartPtr->VendorGuid, &StartPtr->VendorGuid);\r
4187 //\r
4188 // Copy Variable Name\r
4189 //\r
4190 NextPtr = (UINT8 *) (AuthStartPtr + 1);\r
4191 CopyMem (NextPtr, GetVariableNamePtr (StartPtr), AuthStartPtr->NameSize);\r
4192 //\r
4193 // Copy Variable Data\r
4194 //\r
4195 NextPtr = NextPtr + AuthStartPtr->NameSize + GET_PAD_SIZE (AuthStartPtr->NameSize);\r
4196 CopyMem (NextPtr, GetVariableDataPtr (StartPtr), AuthStartPtr->DataSize);\r
4197 //\r
4198 // Go to next variable\r
4199 //\r
4200 AuthStartPtr = (AUTHENTICATED_VARIABLE_HEADER *) (NextPtr + AuthStartPtr->DataSize + GET_PAD_SIZE (AuthStartPtr->DataSize));\r
4201 }\r
4202 StartPtr = GetNextVariablePtr (StartPtr);\r
4203 }\r
4204 //\r
4205 // Update Auth Storage Header\r
4206 //\r
4207 AuthVarStorage->Format = NormalVarStorage->Format;\r
4208 AuthVarStorage->State = NormalVarStorage->State;\r
1b79547a 4209 AuthVarStorage->Size = (UINT32)((UINTN)AuthStartPtr - (UINTN)AuthVarStorage);\r
a37044ef
LG
4210 CopyGuid (&AuthVarStorage->Signature, &gEfiAuthenticatedVariableGuid);\r
4211 ASSERT (AuthVarStorage->Size <= AuthVarStroageSize);\r
8a2d4996 4212\r
a37044ef
LG
4213 //\r
4214 // Restore AuthFormat\r
4215 //\r
4216 mVariableModuleGlobal->VariableGlobal.AuthFormat = TRUE;\r
4217 return AuthVarStorage;\r
4218}\r
09808bd3
SZ
4219\r
4220/**\r
4221 Get HOB variable store.\r
4222\r
5f463523 4223 @param[in] VariableGuid NV variable store signature.\r
09808bd3
SZ
4224\r
4225 @retval EFI_SUCCESS Function successfully executed.\r
4226 @retval EFI_OUT_OF_RESOURCES Fail to allocate enough memory resource.\r
4227\r
4228**/\r
4229EFI_STATUS\r
4230GetHobVariableStore (\r
4231 IN EFI_GUID *VariableGuid\r
4232 )\r
4233{\r
4234 VARIABLE_STORE_HEADER *VariableStoreHeader;\r
4235 UINT64 VariableStoreLength;\r
4236 EFI_HOB_GUID_TYPE *GuidHob;\r
4237 BOOLEAN NeedConvertNormalToAuth;\r
4238\r
fdd3e77a
SZ
4239 //\r
4240 // Make sure there is no more than one Variable HOB.\r
4241 //\r
4242 DEBUG_CODE (\r
4243 GuidHob = GetFirstGuidHob (&gEfiAuthenticatedVariableGuid);\r
4244 if (GuidHob != NULL) {\r
4245 if ((GetNextGuidHob (&gEfiAuthenticatedVariableGuid, GET_NEXT_HOB (GuidHob)) != NULL)) {\r
4246 DEBUG ((DEBUG_ERROR, "ERROR: Found two Auth Variable HOBs\n"));\r
4247 ASSERT (FALSE);\r
4248 } else if (GetFirstGuidHob (&gEfiVariableGuid) != NULL) {\r
4249 DEBUG ((DEBUG_ERROR, "ERROR: Found one Auth + one Normal Variable HOBs\n"));\r
4250 ASSERT (FALSE);\r
4251 }\r
4252 } else {\r
4253 GuidHob = GetFirstGuidHob (&gEfiVariableGuid);\r
4254 if (GuidHob != NULL) {\r
4255 if ((GetNextGuidHob (&gEfiVariableGuid, GET_NEXT_HOB (GuidHob)) != NULL)) {\r
4256 DEBUG ((DEBUG_ERROR, "ERROR: Found two Normal Variable HOBs\n"));\r
4257 ASSERT (FALSE);\r
4258 }\r
4259 }\r
4260 }\r
4261 );\r
4262\r
09808bd3
SZ
4263 //\r
4264 // Combinations supported:\r
4265 // 1. Normal NV variable store +\r
4266 // Normal HOB variable store\r
4267 // 2. Auth NV variable store +\r
4268 // Auth HOB variable store\r
4269 // 3. Auth NV variable store +\r
4270 // Normal HOB variable store (code will convert it to Auth Format)\r
4271 //\r
4272 NeedConvertNormalToAuth = FALSE;\r
4273 GuidHob = GetFirstGuidHob (VariableGuid);\r
4274 if (GuidHob == NULL && VariableGuid == &gEfiAuthenticatedVariableGuid) {\r
4275 //\r
4276 // Try getting it from normal variable HOB\r
4277 //\r
4278 GuidHob = GetFirstGuidHob (&gEfiVariableGuid);\r
4279 NeedConvertNormalToAuth = TRUE;\r
4280 }\r
4281 if (GuidHob != NULL) {\r
4282 VariableStoreHeader = GET_GUID_HOB_DATA (GuidHob);\r
4283 VariableStoreLength = GuidHob->Header.HobLength - sizeof (EFI_HOB_GUID_TYPE);\r
4284 if (GetVariableStoreStatus (VariableStoreHeader) == EfiValid) {\r
4285 if (!NeedConvertNormalToAuth) {\r
4286 mVariableModuleGlobal->VariableGlobal.HobVariableBase = (EFI_PHYSICAL_ADDRESS) (UINTN) AllocateRuntimeCopyPool ((UINTN) VariableStoreLength, (VOID *) VariableStoreHeader);\r
4287 } else {\r
4288 mVariableModuleGlobal->VariableGlobal.HobVariableBase = (EFI_PHYSICAL_ADDRESS) (UINTN) ConvertNormalVarStorageToAuthVarStorage ((VOID *) VariableStoreHeader);\r
4289 }\r
4290 if (mVariableModuleGlobal->VariableGlobal.HobVariableBase == 0) {\r
4291 return EFI_OUT_OF_RESOURCES;\r
4292 }\r
4293 } else {\r
4294 DEBUG ((EFI_D_ERROR, "HOB Variable Store header is corrupted!\n"));\r
4295 }\r
4296 }\r
4297\r
4298 return EFI_SUCCESS;\r
4299}\r
4300\r
8a2d4996 4301/**\r
4302 Initializes variable store area for non-volatile and volatile variable.\r
7c80e839 4303\r
4304 @retval EFI_SUCCESS Function successfully executed.\r
4305 @retval EFI_OUT_OF_RESOURCES Fail to allocate enough memory resource.\r
4306\r
4307**/\r
8d3a5c82 4308EFI_STATUS\r
8d3a5c82 4309VariableCommonInitialize (\r
8a2d4996 4310 VOID\r
8d3a5c82 4311 )\r
8d3a5c82 4312{\r
4313 EFI_STATUS Status;\r
8d3a5c82 4314 VARIABLE_STORE_HEADER *VolatileVariableStore;\r
2fcdca1d 4315 UINTN ScratchSize;\r
fa0737a8 4316 EFI_GUID *VariableGuid;\r
8d3a5c82 4317\r
7800593d
LG
4318 //\r
4319 // Allocate runtime memory for variable driver global structure.\r
4320 //\r
72399dae 4321 mVariableModuleGlobal = AllocateRuntimeZeroPool (sizeof (VARIABLE_MODULE_GLOBAL));\r
7800593d
LG
4322 if (mVariableModuleGlobal == NULL) {\r
4323 return EFI_OUT_OF_RESOURCES;\r
4324 }\r
8d3a5c82 4325\r
8a2d4996 4326 InitializeLock (&mVariableModuleGlobal->VariableGlobal.VariableServicesLock, TPL_NOTIFY);\r
8d3a5c82 4327\r
fa0737a8
SZ
4328 //\r
4329 // Init non-volatile variable store.\r
4330 //\r
701d603f 4331 Status = InitNonVolatileVariableStore ();\r
fa0737a8
SZ
4332 if (EFI_ERROR (Status)) {\r
4333 FreePool (mVariableModuleGlobal);\r
4334 return Status;\r
4335 }\r
4336\r
4337 //\r
4338 // mVariableModuleGlobal->VariableGlobal.AuthFormat\r
4339 // has been initialized in InitNonVolatileVariableStore().\r
4340 //\r
4341 if (mVariableModuleGlobal->VariableGlobal.AuthFormat) {\r
4342 DEBUG ((EFI_D_INFO, "Variable driver will work with auth variable format!\n"));\r
4343 //\r
4344 // Set AuthSupport to FALSE first, VariableWriteServiceInitialize() will initialize it.\r
4345 //\r
4346 mVariableModuleGlobal->VariableGlobal.AuthSupport = FALSE;\r
4347 VariableGuid = &gEfiAuthenticatedVariableGuid;\r
4348 } else {\r
4349 DEBUG ((EFI_D_INFO, "Variable driver will work without auth variable support!\n"));\r
4350 mVariableModuleGlobal->VariableGlobal.AuthSupport = FALSE;\r
4351 VariableGuid = &gEfiVariableGuid;\r
4352 }\r
4353\r
0f7aff72
RN
4354 //\r
4355 // Get HOB variable store.\r
4356 //\r
09808bd3
SZ
4357 Status = GetHobVariableStore (VariableGuid);\r
4358 if (EFI_ERROR (Status)) {\r
701d603f
SZ
4359 if (mNvFvHeaderCache != NULL) {\r
4360 FreePool (mNvFvHeaderCache);\r
4361 }\r
09808bd3
SZ
4362 FreePool (mVariableModuleGlobal);\r
4363 return Status;\r
0f7aff72
RN
4364 }\r
4365\r
9b4a2032
LE
4366 mVariableModuleGlobal->MaxVolatileVariableSize = ((PcdGet32 (PcdMaxVolatileVariableSize) != 0) ?\r
4367 PcdGet32 (PcdMaxVolatileVariableSize) :\r
4368 mVariableModuleGlobal->MaxVariableSize\r
4369 );\r
8d3a5c82 4370 //\r
2fcdca1d 4371 // Allocate memory for volatile variable store, note that there is a scratch space to store scratch data.\r
8d3a5c82 4372 //\r
9b4a2032 4373 ScratchSize = GetMaxVariableSize ();\r
fa0737a8 4374 mVariableModuleGlobal->ScratchBufferSize = ScratchSize;\r
188e4e84 4375 VolatileVariableStore = AllocateRuntimePool (PcdGet32 (PcdVariableStoreSize) + ScratchSize);\r
8d3a5c82 4376 if (VolatileVariableStore == NULL) {\r
3e02ebb2
SZ
4377 if (mVariableModuleGlobal->VariableGlobal.HobVariableBase != 0) {\r
4378 FreePool ((VOID *) (UINTN) mVariableModuleGlobal->VariableGlobal.HobVariableBase);\r
4379 }\r
701d603f
SZ
4380 if (mNvFvHeaderCache != NULL) {\r
4381 FreePool (mNvFvHeaderCache);\r
4382 }\r
8d3a5c82 4383 FreePool (mVariableModuleGlobal);\r
4384 return EFI_OUT_OF_RESOURCES;\r
4385 }\r
4386\r
188e4e84 4387 SetMem (VolatileVariableStore, PcdGet32 (PcdVariableStoreSize) + ScratchSize, 0xff);\r
8d3a5c82 4388\r
4389 //\r
8a2d4996 4390 // Initialize Variable Specific Data.\r
8d3a5c82 4391 //\r
052ad7e1 4392 mVariableModuleGlobal->VariableGlobal.VolatileVariableBase = (EFI_PHYSICAL_ADDRESS) (UINTN) VolatileVariableStore;\r
9cad030b 4393 mVariableModuleGlobal->VolatileLastVariableOffset = (UINTN) GetStartPointer (VolatileVariableStore) - (UINTN) VolatileVariableStore;\r
8d3a5c82 4394\r
fa0737a8 4395 CopyGuid (&VolatileVariableStore->Signature, VariableGuid);\r
8a2d4996 4396 VolatileVariableStore->Size = PcdGet32 (PcdVariableStoreSize);\r
4397 VolatileVariableStore->Format = VARIABLE_STORE_FORMATTED;\r
4398 VolatileVariableStore->State = VARIABLE_STORE_HEALTHY;\r
4399 VolatileVariableStore->Reserved = 0;\r
4400 VolatileVariableStore->Reserved1 = 0;\r
8d3a5c82 4401\r
fa0737a8 4402 return EFI_SUCCESS;\r
8d3a5c82 4403}\r
052ad7e1 4404\r
052ad7e1 4405\r
aa75dfec 4406/**\r
8a2d4996 4407 Get the proper fvb handle and/or fvb protocol by the given Flash address.\r
aa75dfec 4408\r
fa0737a8 4409 @param[in] Address The Flash address.\r
8a2d4996 4410 @param[out] FvbHandle In output, if it is not NULL, it points to the proper FVB handle.\r
4411 @param[out] FvbProtocol In output, if it is not NULL, it points to the proper FVB protocol.\r
aa75dfec 4412\r
aa75dfec 4413**/\r
8a2d4996 4414EFI_STATUS\r
4415GetFvbInfoByAddress (\r
4416 IN EFI_PHYSICAL_ADDRESS Address,\r
4417 OUT EFI_HANDLE *FvbHandle OPTIONAL,\r
4418 OUT EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL **FvbProtocol OPTIONAL\r
8a9e0b72 4419 )\r
4420{\r
8a2d4996 4421 EFI_STATUS Status;\r
4422 EFI_HANDLE *HandleBuffer;\r
4423 UINTN HandleCount;\r
4424 UINTN Index;\r
4425 EFI_PHYSICAL_ADDRESS FvbBaseAddress;\r
4426 EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *Fvb;\r
8a2d4996 4427 EFI_FVB_ATTRIBUTES_2 Attributes;\r
1fcbeaea
DG
4428 UINTN BlockSize;\r
4429 UINTN NumberOfBlocks;\r
4430\r
4e1005ec 4431 HandleBuffer = NULL;\r
8a9e0b72 4432 //\r
8a2d4996 4433 // Get all FVB handles.\r
8a9e0b72 4434 //\r
8a2d4996 4435 Status = GetFvbCountAndBuffer (&HandleCount, &HandleBuffer);\r
8a9e0b72 4436 if (EFI_ERROR (Status)) {\r
8a2d4996 4437 return EFI_NOT_FOUND;\r
8a9e0b72 4438 }\r
8a2d4996 4439\r
8a9e0b72 4440 //\r
8a2d4996 4441 // Get the FVB to access variable store.\r
8a9e0b72 4442 //\r
8a2d4996 4443 Fvb = NULL;\r
f0480ecf 4444 for (Index = 0; Index < HandleCount; Index += 1, Status = EFI_NOT_FOUND, Fvb = NULL) {\r
8a2d4996 4445 Status = GetFvbByHandle (HandleBuffer[Index], &Fvb);\r
8a9e0b72 4446 if (EFI_ERROR (Status)) {\r
4447 Status = EFI_NOT_FOUND;\r
4448 break;\r
4449 }\r
4450\r
4451 //\r
4452 // Ensure this FVB protocol supported Write operation.\r
4453 //\r
4454 Status = Fvb->GetAttributes (Fvb, &Attributes);\r
4455 if (EFI_ERROR (Status) || ((Attributes & EFI_FVB2_WRITE_STATUS) == 0)) {\r
1fcbeaea 4456 continue;\r
8a9e0b72 4457 }\r
1fcbeaea 4458\r
8a9e0b72 4459 //\r
8a2d4996 4460 // Compare the address and select the right one.\r
8a9e0b72 4461 //\r
4462 Status = Fvb->GetPhysicalAddress (Fvb, &FvbBaseAddress);\r
4463 if (EFI_ERROR (Status)) {\r
4464 continue;\r
4465 }\r
4466\r
1fcbeaea
DG
4467 //\r
4468 // Assume one FVB has one type of BlockSize.\r
4469 //\r
4470 Status = Fvb->GetBlockSize (Fvb, 0, &BlockSize, &NumberOfBlocks);\r
4471 if (EFI_ERROR (Status)) {\r
4472 continue;\r
4473 }\r
4474\r
4475 if ((Address >= FvbBaseAddress) && (Address < (FvbBaseAddress + BlockSize * NumberOfBlocks))) {\r
8a2d4996 4476 if (FvbHandle != NULL) {\r
4477 *FvbHandle = HandleBuffer[Index];\r
4478 }\r
4479 if (FvbProtocol != NULL) {\r
4480 *FvbProtocol = Fvb;\r
4481 }\r
4482 Status = EFI_SUCCESS;\r
8a9e0b72 4483 break;\r
4484 }\r
4485 }\r
8a9e0b72 4486 FreePool (HandleBuffer);\r
533020ef 4487\r
8a2d4996 4488 if (Fvb == NULL) {\r
4489 Status = EFI_NOT_FOUND;\r
8a9e0b72 4490 }\r
fa0737a8
SZ
4491\r
4492 return Status;\r
052ad7e1
A
4493}\r
4494\r