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