X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=MdeModulePkg%2FUniversal%2FHiiDatabaseDxe%2FConfigRouting.c;h=a83a2ff77779dfebfc39f24776a838ef2019e7a4;hb=40ae09a2a77740e08731fc79bc3d22f043ea3128;hp=2f38b56e2bef9a733a306ab2ee3841b8b13a053d;hpb=aa75dfeccdd9c88bd64431b1290faf7574854337;p=mirror_edk2.git diff --git a/MdeModulePkg/Universal/HiiDatabaseDxe/ConfigRouting.c b/MdeModulePkg/Universal/HiiDatabaseDxe/ConfigRouting.c index 2f38b56e2b..a83a2ff777 100644 --- a/MdeModulePkg/Universal/HiiDatabaseDxe/ConfigRouting.c +++ b/MdeModulePkg/Universal/HiiDatabaseDxe/ConfigRouting.c @@ -1,8 +1,8 @@ /** @file Implementation of interfaces function for EFI_HII_CONFIG_ROUTING_PROTOCOL. -Copyright (c) 2007 - 2008, Intel Corporation -All rights reserved. This program and the accompanying materials +Copyright (c) 2007 - 2013, Intel Corporation. All rights reserved.
+This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license.php @@ -242,7 +242,7 @@ GenerateSubStr ( if (Buffer == NULL) { *SubStr = AllocateCopyPool (StrSize (String), String); ASSERT (*SubStr != NULL); - return ; + return; } // @@ -453,8 +453,9 @@ GetValueOfNumber ( UINTN Index; CHAR16 TemStr[2]; - ASSERT (StringPtr != NULL && Number != NULL && Len != NULL); - ASSERT (*StringPtr != L'\0'); + if (StringPtr == NULL || *StringPtr == L'\0' || Number == NULL || Len == NULL) { + return EFI_INVALID_PARAMETER; + } Buf = NULL; @@ -627,44 +628,13 @@ MergeDefaultString ( // Find next AltCfg String // *(AltConfigHdr + HeaderLength) = L'\0'; - StringPtrDefault = StrStr (StringPtrDefault + 1, AltConfigHdr); + StringPtrDefault = StrStr (StringPtrDefault + 1, AltConfigHdr); } FreePool (AltConfigHdr); return EFI_SUCCESS; } -/** - This function finds the matched DefaultName for the input DefaultId - - @param DefaultIdArray Array stores the map table between DefaultId and DefaultName. - @param VarDefaultId Default Id - @param VarDefaultName Default Name string ID for the input default ID. - - @retval EFI_SUCCESS The mapped default name string ID is found. - @retval EFI_NOT_FOUND The mapped default name string ID is not found. -**/ -EFI_STATUS -FindDefaultName ( - IN IFR_DEFAULT_DATA *DefaultIdArray, - IN UINT16 VarDefaultId, - OUT EFI_STRING_ID *VarDefaultName - ) -{ - LIST_ENTRY *Link; - IFR_DEFAULT_DATA *DefaultData; - - for (Link = DefaultIdArray->Entry.ForwardLink; Link != &DefaultIdArray->Entry; Link = Link->ForwardLink) { - DefaultData = BASE_CR (Link, IFR_DEFAULT_DATA, Entry); - if (DefaultData->DefaultId == VarDefaultId) { - *VarDefaultName = DefaultData->DefaultName; - return EFI_SUCCESS; - } - } - - return EFI_NOT_FOUND; -} - /** This function inserts new DefaultValueData into the BlockData DefaultValue array. @@ -679,45 +649,43 @@ InsertDefaultValue ( ) { LIST_ENTRY *Link; - IFR_DEFAULT_DATA *DefaultValueArray; + IFR_DEFAULT_DATA *DefaultValueArray; + LIST_ENTRY *DefaultLink; + + DefaultLink = &BlockData->DefaultValueEntry; - for (Link = BlockData->DefaultValueEntry.ForwardLink; Link != &BlockData->DefaultValueEntry; Link = Link->ForwardLink) { + for (Link = DefaultLink->ForwardLink; Link != DefaultLink; Link = Link->ForwardLink) { DefaultValueArray = BASE_CR (Link, IFR_DEFAULT_DATA, Entry); if (DefaultValueArray->DefaultId == DefaultValueData->DefaultId) { - if (DefaultValueData->OpCode == EFI_IFR_DEFAULT_OP) { - // - // Update the default value array in BlockData. - // - DefaultValueArray->Value = DefaultValueData->Value; - } else if (DefaultValueArray->OpCode != EFI_IFR_DEFAULT_OP) { + // + // DEFAULT_VALUE_FROM_OPCODE has high priority, DEFAULT_VALUE_FROM_DEFAULT has low priority. + // + if (DefaultValueData->Type > DefaultValueArray->Type) { // // Update the default value array in BlockData. // - DefaultValueArray->Value = DefaultValueData->Value; + CopyMem (&DefaultValueArray->Value, &DefaultValueData->Value, sizeof (EFI_IFR_TYPE_VALUE)); + DefaultValueArray->Type = DefaultValueData->Type; + DefaultValueArray->Cleaned = DefaultValueData->Cleaned; } - FreePool (DefaultValueData); - return; - } else if (DefaultValueArray->DefaultId > DefaultValueData->DefaultId) { - // - // Insert new default value data in the front of this default value array. - // - InsertTailList (Link, &DefaultValueData->Entry); return; - } + } } // // Insert new default value data in tail. // - InsertTailList (Link, &DefaultValueData->Entry); - return; + DefaultValueArray = AllocateZeroPool (sizeof (IFR_DEFAULT_DATA)); + ASSERT (DefaultValueArray != NULL); + CopyMem (DefaultValueArray, DefaultValueData, sizeof (IFR_DEFAULT_DATA)); + InsertTailList (Link, &DefaultValueArray->Entry); } /** This function inserts new BlockData into the block link - @param BlockLink The list entry points to block array. - @param BlockData The point to BlockData is added. + @param BlockLink The list entry points to block array. + @param BlockData The point to BlockData is added. **/ VOID @@ -726,12 +694,17 @@ InsertBlockData ( IN IFR_BLOCK_DATA **BlockData ) { - LIST_ENTRY *Link; - IFR_BLOCK_DATA *BlockArray; - IFR_BLOCK_DATA *BlockSingleData; + LIST_ENTRY *Link; + IFR_BLOCK_DATA *BlockArray; + IFR_BLOCK_DATA *BlockSingleData; BlockSingleData = *BlockData; - + + if (BlockSingleData->Name != NULL) { + InsertTailList (BlockLink, &BlockSingleData->Entry); + return; + } + // // Insert block data in its Offset and Width order. // @@ -750,8 +723,10 @@ InsertBlockData ( // // The same block array has been added. // - FreePool (BlockSingleData); - *BlockData = BlockArray; + if (BlockSingleData != BlockArray) { + FreePool (BlockSingleData); + *BlockData = BlockArray; + } return; } } else if (BlockArray->Offset > BlockSingleData->Offset) { @@ -766,8 +741,225 @@ InsertBlockData ( // // Add new block data into the tail. // - InsertTailList (Link, &BlockSingleData->Entry); - return; + InsertTailList (Link, &BlockSingleData->Entry); +} + +/** + Retrieves a pointer to the a Null-terminated ASCII string containing the list + of languages that an HII handle in the HII Database supports. The returned + string is allocated using AllocatePool(). The caller is responsible for freeing + the returned string using FreePool(). The format of the returned string follows + the language format assumed the HII Database. + + If HiiHandle is NULL, then ASSERT(). + + @param[in] HiiHandle A handle that was previously registered in the HII Database. + + @retval NULL HiiHandle is not registered in the HII database + @retval NULL There are not enough resources available to retrieve the suported + languages. + @retval NULL The list of suported languages could not be retrieved. + @retval Other A pointer to the Null-terminated ASCII string of supported languages. + +**/ +CHAR8 * +GetSupportedLanguages ( + IN EFI_HII_HANDLE HiiHandle + ) +{ + EFI_STATUS Status; + UINTN LanguageSize; + CHAR8 TempSupportedLanguages; + CHAR8 *SupportedLanguages; + + ASSERT (HiiHandle != NULL); + + // + // Retrieve the size required for the supported languages buffer. + // + LanguageSize = 0; + Status = mPrivate.HiiString.GetLanguages (&mPrivate.HiiString, HiiHandle, &TempSupportedLanguages, &LanguageSize); + + // + // If GetLanguages() returns EFI_SUCCESS for a zero size, + // then there are no supported languages registered for HiiHandle. If GetLanguages() + // returns an error other than EFI_BUFFER_TOO_SMALL, then HiiHandle is not present + // in the HII Database + // + if (Status != EFI_BUFFER_TOO_SMALL) { + // + // Return NULL if the size can not be retrieved, or if HiiHandle is not in the HII Database + // + return NULL; + } + + // + // Allocate the supported languages buffer. + // + SupportedLanguages = AllocateZeroPool (LanguageSize); + if (SupportedLanguages == NULL) { + // + // Return NULL if allocation fails. + // + return NULL; + } + + // + // Retrieve the supported languages string + // + Status = mPrivate.HiiString.GetLanguages (&mPrivate.HiiString, HiiHandle, SupportedLanguages, &LanguageSize); + if (EFI_ERROR (Status)) { + // + // Free the buffer and return NULL if the supported languages can not be retrieved. + // + FreePool (SupportedLanguages); + return NULL; + } + + // + // Return the Null-terminated ASCII string of supported languages + // + return SupportedLanguages; +} + +/** + Retrieves a string from a string package. + + If HiiHandle is NULL, then ASSERT(). + If StringId is 0, then ASSET. + + @param[in] HiiHandle A handle that was previously registered in the HII Database. + @param[in] StringId The identifier of the string to retrieved from the string + package associated with HiiHandle. + + @retval NULL The string specified by StringId is not present in the string package. + @retval Other The string was returned. + +**/ +EFI_STRING +InternalGetString ( + IN EFI_HII_HANDLE HiiHandle, + IN EFI_STRING_ID StringId + ) +{ + EFI_STATUS Status; + UINTN StringSize; + CHAR16 TempString; + EFI_STRING String; + CHAR8 *SupportedLanguages; + CHAR8 *PlatformLanguage; + CHAR8 *BestLanguage; + CHAR8 *Language; + + ASSERT (HiiHandle != NULL); + ASSERT (StringId != 0); + + // + // Initialize all allocated buffers to NULL + // + SupportedLanguages = NULL; + PlatformLanguage = NULL; + BestLanguage = NULL; + String = NULL; + Language = ""; + + // + // Get the languages that the package specified by HiiHandle supports + // + SupportedLanguages = GetSupportedLanguages (HiiHandle); + if (SupportedLanguages == NULL) { + goto Error; + } + + // + // Get the current platform language setting + // + GetEfiGlobalVariable2 (L"PlatformLang", (VOID**)&PlatformLanguage, NULL); + + // + // Get the best matching language from SupportedLanguages + // + BestLanguage = GetBestLanguage ( + SupportedLanguages, + FALSE, // RFC 4646 mode + Language, // Highest priority + PlatformLanguage != NULL ? PlatformLanguage : "", // Next highest priority + SupportedLanguages, // Lowest priority + NULL + ); + if (BestLanguage == NULL) { + goto Error; + } + + // + // Retrieve the size of the string in the string package for the BestLanguage + // + StringSize = 0; + Status = mPrivate.HiiString.GetString ( + &mPrivate.HiiString, + BestLanguage, + HiiHandle, + StringId, + &TempString, + &StringSize, + NULL + ); + // + // If GetString() returns EFI_SUCCESS for a zero size, + // then there are no supported languages registered for HiiHandle. If GetString() + // returns an error other than EFI_BUFFER_TOO_SMALL, then HiiHandle is not present + // in the HII Database + // + if (Status != EFI_BUFFER_TOO_SMALL) { + goto Error; + } + + // + // Allocate a buffer for the return string + // + String = AllocateZeroPool (StringSize); + if (String == NULL) { + goto Error; + } + + // + // Retrieve the string from the string package + // + Status = mPrivate.HiiString.GetString ( + &mPrivate.HiiString, + BestLanguage, + HiiHandle, + StringId, + String, + &StringSize, + NULL + ); + if (EFI_ERROR (Status)) { + // + // Free the buffer and return NULL if the supported languages can not be retrieved. + // + FreePool (String); + String = NULL; + } + +Error: + // + // Free allocated buffers + // + if (SupportedLanguages != NULL) { + FreePool (SupportedLanguages); + } + if (PlatformLanguage != NULL) { + FreePool (PlatformLanguage); + } + if (BestLanguage != NULL) { + FreePool (BestLanguage); + } + + // + // Return the Null-terminated Unicode string + // + return String; } /** @@ -776,6 +968,8 @@ InsertBlockData ( @param RequestBlockArray The block array is to be checked. @param VarOffset Offset of var to the structure @param VarWidth Width of var. + @param IsNameValueType Whether this varstore is name/value varstore or not. + @param HiiHandle Hii handle for this hii package. @retval TRUE This Var is in the block range. @retval FALSE This Var is not in the block range. @@ -784,26 +978,41 @@ BOOLEAN BlockArrayCheck ( IN IFR_BLOCK_DATA *RequestBlockArray, IN UINT16 VarOffset, - IN UINT16 VarWidth + IN UINT16 VarWidth, + IN BOOLEAN IsNameValueType, + IN EFI_HII_HANDLE HiiHandle ) { LIST_ENTRY *Link; IFR_BLOCK_DATA *BlockData; - + EFI_STRING Name; + // // No Request Block array, all vars are got. // if (RequestBlockArray == NULL) { return TRUE; } - + // // Check the input var is in the request block range. // for (Link = RequestBlockArray->Entry.ForwardLink; Link != &RequestBlockArray->Entry; Link = Link->ForwardLink) { BlockData = BASE_CR (Link, IFR_BLOCK_DATA, Entry); - if ((VarOffset >= BlockData->Offset) && ((VarOffset + VarWidth) <= (BlockData->Offset + BlockData->Width))) { - return TRUE; + + if (IsNameValueType) { + Name = InternalGetString (HiiHandle, VarOffset); + ASSERT (Name != NULL); + + if (StrnCmp (BlockData->Name, Name, StrLen (Name)) == 0) { + FreePool (Name); + return TRUE; + } + FreePool (Name); + } else { + if ((VarOffset >= BlockData->Offset) && ((VarOffset + VarWidth) <= (BlockData->Offset + BlockData->Width))) { + return TRUE; + } } } @@ -811,100 +1020,146 @@ BlockArrayCheck ( } /** - This function parses Form Package to get the block array and the default - value array according to the request ConfigHdr. + Get form package data from data base. - @param Package Pointer to the form package data. - @param PackageLength Length of the pacakge. - @param ConfigHdr Request string ConfigHdr. If it is NULL, - the first found varstore will be as ConfigHdr. - @param RequestBlockArray The block array is retrieved from the request string. - @param VarStorageData VarStorage structure contains the got block and default value. - @param PIfrDefaultIdArray Point to the got default id and default name array. + @param DataBaseRecord The DataBaseRecord instance contains the found Hii handle and package. + @param HiiFormPackage The buffer saves the package data. + @param PackageSize The buffer size of the package data. - @retval EFI_SUCCESS The block array and the default value array are got. - @retval EFI_INVALID_PARAMETER The varstore defintion in the differnt form pacakges - are conflicted. - @retval EFI_OUT_OF_RESOURCES No enough memory. **/ EFI_STATUS -EFIAPI -ParseIfrData ( - IN UINT8 *Package, - IN UINT32 PackageLength, - IN EFI_STRING ConfigHdr, - IN IFR_BLOCK_DATA *RequestBlockArray, - IN OUT IFR_VARSTORAGE_DATA *VarStorageData, - OUT IFR_DEFAULT_DATA *DefaultIdArray +GetFormPackageData ( + IN HII_DATABASE_RECORD *DataBaseRecord, + IN OUT UINT8 **HiiFormPackage, + OUT UINTN *PackageSize + ) +{ + EFI_STATUS Status; + UINTN Size; + UINTN ResultSize; + + if (DataBaseRecord == NULL || HiiFormPackage == NULL || PackageSize == NULL) { + return EFI_INVALID_PARAMETER; + } + + Size = 0; + ResultSize = 0; + // + // 0. Get Hii Form Package by HiiHandle + // + Status = ExportFormPackages ( + &mPrivate, + DataBaseRecord->Handle, + DataBaseRecord->PackageList, + 0, + Size, + HiiFormPackage, + &ResultSize + ); + if (EFI_ERROR (Status)) { + return Status; + } + + (*HiiFormPackage) = AllocatePool (ResultSize); + if (*HiiFormPackage == NULL) { + Status = EFI_OUT_OF_RESOURCES; + return Status; + } + + // + // Get HiiFormPackage by HiiHandle + // + Size = ResultSize; + ResultSize = 0; + Status = ExportFormPackages ( + &mPrivate, + DataBaseRecord->Handle, + DataBaseRecord->PackageList, + 0, + Size, + *HiiFormPackage, + &ResultSize + ); + if (EFI_ERROR (Status)) { + FreePool (*HiiFormPackage); + } + + *PackageSize = Size; + + return Status; +} + + +/** + This function parses Form Package to get the efi varstore info according to the request ConfigHdr. + + @param DataBaseRecord The DataBaseRecord instance contains the found Hii handle and package. + @param ConfigHdr Request string ConfigHdr. If it is NULL, + the first found varstore will be as ConfigHdr. + @param IsEfiVarstore Whether the request storage type is efi varstore type. + @param EfiVarStore The efi varstore info which will return. +**/ +EFI_STATUS +GetVarStoreType ( + IN HII_DATABASE_RECORD *DataBaseRecord, + IN EFI_STRING ConfigHdr, + OUT BOOLEAN *IsEfiVarstore, + OUT EFI_IFR_VARSTORE_EFI **EfiVarStore ) { EFI_STATUS Status; UINTN IfrOffset; - EFI_IFR_VARSTORE *IfrVarStore; EFI_IFR_OP_HEADER *IfrOpHdr; - EFI_IFR_ONE_OF *IfrOneOf; - EFI_IFR_ONE_OF_OPTION *IfrOneOfOption; - EFI_IFR_DEFAULT *IfrDefault; - EFI_IFR_ORDERED_LIST *IfrOrderedList; - EFI_IFR_CHECKBOX *IfrCheckBox; - EFI_IFR_PASSWORD *IfrPassword; - EFI_IFR_STRING *IfrString; - IFR_DEFAULT_DATA *DefaultData; - IFR_BLOCK_DATA *BlockData; CHAR16 *VarStoreName; - UINT16 VarOffset; - UINT16 VarWidth; - EFI_STRING_ID VarDefaultName; - UINT16 VarDefaultId; EFI_STRING GuidStr; EFI_STRING NameStr; EFI_STRING TempStr; - UINTN LengthString; - + UINTN LengthString; + UINT8 *HiiFormPackage; + UINTN PackageSize; + EFI_IFR_VARSTORE_EFI *IfrEfiVarStore; + + HiiFormPackage = NULL; LengthString = 0; Status = EFI_SUCCESS; GuidStr = NULL; NameStr = NULL; TempStr = NULL; - BlockData = NULL; - DefaultData = NULL; - VarDefaultName = 0; - // - // Go through the form package to parse OpCode one by one. - // + Status = GetFormPackageData(DataBaseRecord, &HiiFormPackage, &PackageSize); + if (EFI_ERROR (Status)) { + return Status; + } + IfrOffset = sizeof (EFI_HII_PACKAGE_HEADER); - while (IfrOffset < PackageLength) { - IfrOpHdr = (EFI_IFR_OP_HEADER *) (Package + IfrOffset); + while (IfrOffset < PackageSize) { + IfrOpHdr = (EFI_IFR_OP_HEADER *) (HiiFormPackage + IfrOffset); + IfrOffset += IfrOpHdr->Length; - switch (IfrOpHdr->OpCode) { - case EFI_IFR_VARSTORE_OP: + if (IfrOpHdr->OpCode == EFI_IFR_VARSTORE_EFI_OP ) { + IfrEfiVarStore = (EFI_IFR_VARSTORE_EFI *) IfrOpHdr; // - // VarStore is found. Don't need to search any more. + // If the length is small than the structure, this is from old efi + // varstore definition. Old efi varstore get config directly from + // GetVariable function. // - if (VarStorageData->Size != 0) { - break; + if (IfrOpHdr->Length < sizeof (EFI_IFR_VARSTORE_EFI)) { + continue; } - // - // Get the requied varstore information - // Add varstore by Guid and Name in ConfigHdr - // Make sure Offset is in varstore size and varstoreid - // - IfrVarStore = (EFI_IFR_VARSTORE *) IfrOpHdr; - VarStoreName = AllocateZeroPool (AsciiStrSize ((CHAR8 *)IfrVarStore->Name) * sizeof (CHAR16)); + VarStoreName = AllocateZeroPool (AsciiStrSize ((CHAR8 *)IfrEfiVarStore->Name) * sizeof (CHAR16)); if (VarStoreName == NULL) { Status = EFI_OUT_OF_RESOURCES; goto Done; } - AsciiStrToUnicodeStr ((CHAR8 *) IfrVarStore->Name, VarStoreName); + AsciiStrToUnicodeStr ((CHAR8 *) IfrEfiVarStore->Name, VarStoreName); - GenerateSubStr (L"GUID=", sizeof (EFI_GUID), (VOID *) &IfrVarStore->Guid, 1, &GuidStr); + GenerateSubStr (L"GUID=", sizeof (EFI_GUID), (VOID *) &IfrEfiVarStore->Guid, 1, &GuidStr); GenerateSubStr (L"NAME=", StrLen (VarStoreName) * sizeof (CHAR16), (VOID *) VarStoreName, 2, &NameStr); LengthString = StrLen (GuidStr); LengthString = LengthString + StrLen (NameStr) + 1; TempStr = AllocateZeroPool (LengthString * sizeof (CHAR16)); - if (TempStr == NULL) { + if (TempStr == NULL) { FreePool (GuidStr); FreePool (NameStr); FreePool (VarStoreName); @@ -914,159 +1169,534 @@ ParseIfrData ( StrCpy (TempStr, GuidStr); StrCat (TempStr, NameStr); if (ConfigHdr == NULL || StrnCmp (ConfigHdr, TempStr, StrLen (TempStr)) == 0) { - // - // Find the matched VarStore - // - CopyGuid (&VarStorageData->Guid, (EFI_GUID *) (VOID *) &IfrVarStore->Guid); - VarStorageData->VarStoreId = IfrVarStore->VarStoreId; - VarStorageData->Size = IfrVarStore->Size; - VarStorageData->Name = VarStoreName; - } else { - // - // No found, free the allocated memory - // - FreePool (VarStoreName); - } + *EfiVarStore = (EFI_IFR_VARSTORE_EFI *) AllocateZeroPool (IfrOpHdr->Length); + if (*EfiVarStore == NULL) { + FreePool (VarStoreName); + FreePool (GuidStr); + FreePool (NameStr); + FreePool (TempStr); + Status = EFI_OUT_OF_RESOURCES; + goto Done; + } + *IsEfiVarstore = TRUE; + CopyMem (*EfiVarStore, IfrEfiVarStore, IfrOpHdr->Length); + } + // // Free alllocated temp string. // + FreePool (VarStoreName); FreePool (GuidStr); FreePool (NameStr); FreePool (TempStr); - break; + } + } +Done: + if (HiiFormPackage != NULL) { + FreePool (HiiFormPackage); + } - case EFI_IFR_DEFAULTSTORE_OP: + return Status; +} + +/** + Check whether the ConfigRequest string has the request elements. + For EFI_HII_VARSTORE_BUFFER type, the request has "&OFFSET=****&WIDTH=****..." format. + For EFI_HII_VARSTORE_NAME_VALUE type, the request has "&NAME1**&NAME2..." format. + + @param ConfigRequest The input config request string. + + @retval TRUE The input include config request elements. + @retval FALSE The input string not includes. + +**/ +BOOLEAN +GetElementsFromRequest ( + IN EFI_STRING ConfigRequest + ) +{ + EFI_STRING TmpRequest; + + TmpRequest = StrStr (ConfigRequest, L"PATH="); + ASSERT (TmpRequest != NULL); + + if ((StrStr (TmpRequest, L"&OFFSET=") != NULL) || (StrStr (TmpRequest, L"&") != NULL)) { + return TRUE; + } + + return FALSE; +} + +/** + Check whether the this varstore is the request varstore. + + @param VarstoreGuid Varstore guid. + @param Name Varstore name. + @param ConfigHdr Current configRequest info. + + @retval TRUE This varstore is the requst one. + @retval FALSE This varstore is not the requst one. + +**/ +BOOLEAN +IsThisVarstore ( + IN EFI_GUID *VarstoreGuid, + IN CHAR16 *Name, + IN CHAR16 *ConfigHdr + ) +{ + EFI_STRING GuidStr; + EFI_STRING NameStr; + EFI_STRING TempStr; + UINTN LengthString; + BOOLEAN RetVal; + + RetVal = FALSE; + GuidStr = NULL; + TempStr = NULL; + + GenerateSubStr (L"GUID=", sizeof (EFI_GUID), (VOID *)VarstoreGuid, 1, &GuidStr); + if (Name != NULL) { + GenerateSubStr (L"NAME=", StrLen (Name) * sizeof (CHAR16), (VOID *) Name, 2, &NameStr); + } else { + GenerateSubStr (L"NAME=", 0, NULL, 2, &NameStr); + } + LengthString = StrLen (GuidStr); + LengthString = LengthString + StrLen (NameStr) + 1; + TempStr = AllocateZeroPool (LengthString * sizeof (CHAR16)); + if (TempStr == NULL) { + goto Done; + } + + StrCpy (TempStr, GuidStr); + StrCat (TempStr, NameStr); + + if (ConfigHdr == NULL || StrnCmp (ConfigHdr, TempStr, StrLen (TempStr)) == 0) { + RetVal = TRUE; + } + +Done: + if (GuidStr != NULL) { + FreePool (GuidStr); + } + + if (NameStr != NULL) { + FreePool (NameStr); + } + + if (TempStr != NULL) { + FreePool (TempStr); + } + + return RetVal; +} + +/** + Check whether the this op code is required. + + @param RequestBlockArray The array includes all the request info or NULL. + @param HiiHandle The hii handle for this form package. + @param VarStorageData The varstore data strucure. + @param IfrOpHdr Ifr opcode header for this opcode. + @param VarWidth The buffer width for this opcode. + @param ReturnData The data block added for this opcode. + + @retval EFI_SUCCESS This opcode is required. + @retval Others This opcode is not required or error occur. + +**/ +EFI_STATUS +IsThisOpcodeRequired ( + IN IFR_BLOCK_DATA *RequestBlockArray, + IN EFI_HII_HANDLE HiiHandle, + IN OUT IFR_VARSTORAGE_DATA *VarStorageData, + IN EFI_IFR_OP_HEADER *IfrOpHdr, + IN UINT16 VarWidth, + OUT IFR_BLOCK_DATA **ReturnData + ) +{ + IFR_BLOCK_DATA *BlockData; + UINT16 VarOffset; + EFI_STRING_ID NameId; + EFI_IFR_QUESTION_HEADER *IfrQuestionHdr; + + NameId = 0; + VarOffset = 0; + IfrQuestionHdr = (EFI_IFR_QUESTION_HEADER *)((CHAR8 *) IfrOpHdr + sizeof (EFI_IFR_OP_HEADER)); + + if (VarStorageData->Type == EFI_HII_VARSTORE_NAME_VALUE) { + NameId = IfrQuestionHdr->VarStoreInfo.VarName; + + // + // Check whether this question is in requested block array. + // + if (!BlockArrayCheck (RequestBlockArray, NameId, 0, TRUE, HiiHandle)) { // - // Add new the map between default id and default name. + // This question is not in the requested string. Skip it. // - DefaultData = (IFR_DEFAULT_DATA *) AllocateZeroPool (sizeof (IFR_DEFAULT_DATA)); - if (DefaultData == NULL) { - Status = EFI_OUT_OF_RESOURCES; - goto Done; - } - DefaultData->DefaultId = ((EFI_IFR_DEFAULTSTORE *) IfrOpHdr)->DefaultId; - DefaultData->DefaultName = ((EFI_IFR_DEFAULTSTORE *) IfrOpHdr)->DefaultName; - InsertTailList (&DefaultIdArray->Entry, &DefaultData->Entry); - DefaultData = NULL; - break; + return EFI_SUCCESS; + } + } else { + VarOffset = IfrQuestionHdr->VarStoreInfo.VarOffset; + + // + // Check whether this question is in requested block array. + // + if (!BlockArrayCheck (RequestBlockArray, VarOffset, VarWidth, FALSE, HiiHandle)) { + // + // This question is not in the requested string. Skip it. + // + return EFI_SUCCESS; + } - case EFI_IFR_FORM_OP: + // + // Check this var question is in the var storage + // + if (((VarOffset + VarWidth) > VarStorageData->Size)) { + return EFI_INVALID_PARAMETER; + } + } + + BlockData = (IFR_BLOCK_DATA *) AllocateZeroPool (sizeof (IFR_BLOCK_DATA)); + if (BlockData == NULL) { + return EFI_OUT_OF_RESOURCES; + } + + if (VarStorageData->Type == EFI_HII_VARSTORE_NAME_VALUE) { + BlockData->Name = InternalGetString(HiiHandle, NameId); + } else { + BlockData->Offset = VarOffset; + } + + BlockData->Width = VarWidth; + BlockData->QuestionId = IfrQuestionHdr->QuestionId; + BlockData->OpCode = IfrOpHdr->OpCode; + BlockData->Scope = IfrOpHdr->Scope; + InitializeListHead (&BlockData->DefaultValueEntry); + // + // Add Block Data into VarStorageData BlockEntry + // + InsertBlockData (&VarStorageData->BlockEntry, &BlockData); + *ReturnData = BlockData; + + return EFI_SUCCESS; +} + +/** + This function parses Form Package to get the block array and the default + value array according to the request ConfigHdr. + + @param HiiHandle Hii Handle for this hii package. + @param Package Pointer to the form package data. + @param PackageLength Length of the pacakge. + @param ConfigHdr Request string ConfigHdr. If it is NULL, + the first found varstore will be as ConfigHdr. + @param RequestBlockArray The block array is retrieved from the request string. + @param VarStorageData VarStorage structure contains the got block and default value. + @param DefaultIdArray Point to the got default id and default name array. + + @retval EFI_SUCCESS The block array and the default value array are got. + @retval EFI_INVALID_PARAMETER The varstore defintion in the differnt form pacakges + are conflicted. + @retval EFI_OUT_OF_RESOURCES No enough memory. +**/ +EFI_STATUS +EFIAPI +ParseIfrData ( + IN EFI_HII_HANDLE HiiHandle, + IN UINT8 *Package, + IN UINT32 PackageLength, + IN EFI_STRING ConfigHdr, + IN IFR_BLOCK_DATA *RequestBlockArray, + IN OUT IFR_VARSTORAGE_DATA *VarStorageData, + OUT IFR_DEFAULT_DATA *DefaultIdArray + ) +{ + EFI_STATUS Status; + UINTN IfrOffset; + EFI_IFR_VARSTORE *IfrVarStore; + EFI_IFR_VARSTORE_EFI *IfrEfiVarStore; + EFI_IFR_OP_HEADER *IfrOpHdr; + EFI_IFR_ONE_OF *IfrOneOf; + EFI_IFR_REF4 *IfrRef; + EFI_IFR_ONE_OF_OPTION *IfrOneOfOption; + EFI_IFR_DEFAULT *IfrDefault; + EFI_IFR_ORDERED_LIST *IfrOrderedList; + EFI_IFR_CHECKBOX *IfrCheckBox; + EFI_IFR_PASSWORD *IfrPassword; + EFI_IFR_STRING *IfrString; + EFI_IFR_DATE *IfrDate; + EFI_IFR_TIME *IfrTime; + IFR_DEFAULT_DATA DefaultData; + IFR_DEFAULT_DATA *DefaultDataPtr; + IFR_BLOCK_DATA *BlockData; + CHAR16 *VarStoreName; + UINT16 VarWidth; + UINT16 VarDefaultId; + EFI_STRING GuidStr; + EFI_STRING NameStr; + EFI_STRING TempStr; + UINTN LengthString; + BOOLEAN FirstOneOfOption; + LIST_ENTRY *LinkData; + LIST_ENTRY *LinkDefault; + EFI_IFR_VARSTORE_NAME_VALUE *IfrNameValueVarStore; + + LengthString = 0; + Status = EFI_SUCCESS; + GuidStr = NULL; + NameStr = NULL; + TempStr = NULL; + BlockData = NULL; + DefaultDataPtr = NULL; + FirstOneOfOption = FALSE; + ZeroMem (&DefaultData, sizeof (IFR_DEFAULT_DATA)); + + // + // Go through the form package to parse OpCode one by one. + // + IfrOffset = sizeof (EFI_HII_PACKAGE_HEADER); + while (IfrOffset < PackageLength) { + IfrOpHdr = (EFI_IFR_OP_HEADER *) (Package + IfrOffset); + switch (IfrOpHdr->OpCode) { + case EFI_IFR_VARSTORE_OP: // - // No matched varstore is found and directly return. + // VarStore is found. Don't need to search any more. // - if (VarStorageData->Size == 0) { - Status = EFI_SUCCESS; + if (VarStorageData->VarStoreId != 0) { + break; + } + + IfrVarStore = (EFI_IFR_VARSTORE *) IfrOpHdr; + + VarStoreName = AllocateZeroPool (AsciiStrSize ((CHAR8 *)IfrVarStore->Name) * sizeof (CHAR16)); + if (VarStoreName == NULL) { + Status = EFI_OUT_OF_RESOURCES; goto Done; } + AsciiStrToUnicodeStr ((CHAR8 *)IfrVarStore->Name, VarStoreName); + + if (IsThisVarstore((VOID *)&IfrVarStore->Guid, VarStoreName, ConfigHdr)) { + // + // Find the matched VarStore + // + CopyGuid (&VarStorageData->Guid, (EFI_GUID *) (VOID *) &IfrVarStore->Guid); + VarStorageData->VarStoreId = IfrVarStore->VarStoreId; + VarStorageData->Size = IfrVarStore->Size; + VarStorageData->Name = VarStoreName; + VarStorageData->Type = EFI_HII_VARSTORE_BUFFER; + } break; - case EFI_IFR_ONE_OF_OP: - case EFI_IFR_NUMERIC_OP: + case EFI_IFR_VARSTORE_EFI_OP: // - // Numeric and OneOf has the same opcode structure. + // VarStore is found. Don't need to search any more. // + if (VarStorageData->VarStoreId != 0) { + break; + } + + IfrEfiVarStore = (EFI_IFR_VARSTORE_EFI *) IfrOpHdr; // - // Numeric and OneOf question is not in IFR Form. This IFR form is not valid. - // - if (VarStorageData->Size == 0) { - Status = EFI_INVALID_PARAMETER; + // If the length is small than the structure, this is from old efi + // varstore definition. Old efi varstore get config directly from + // GetVariable function. + // + if (IfrOpHdr->Length < sizeof (EFI_IFR_VARSTORE_EFI)) { + break; + } + + VarStoreName = AllocateZeroPool (AsciiStrSize ((CHAR8 *)IfrEfiVarStore->Name) * sizeof (CHAR16)); + if (VarStoreName == NULL) { + Status = EFI_OUT_OF_RESOURCES; goto Done; } + AsciiStrToUnicodeStr ((CHAR8 *)IfrEfiVarStore->Name, VarStoreName); + + if (IsThisVarstore (&IfrEfiVarStore->Guid, VarStoreName, ConfigHdr)) { + // + // Find the matched VarStore + // + CopyGuid (&VarStorageData->Guid, (EFI_GUID *) (VOID *) &IfrEfiVarStore->Guid); + VarStorageData->VarStoreId = IfrEfiVarStore->VarStoreId; + VarStorageData->Size = IfrEfiVarStore->Size; + VarStorageData->Name = VarStoreName; + VarStorageData->Type = EFI_HII_VARSTORE_EFI_VARIABLE_BUFFER; + } + break; + + case EFI_IFR_VARSTORE_NAME_VALUE_OP: // - // Check whether this question is for the requested varstore. + // VarStore is found. Don't need to search any more. // - IfrOneOf = (EFI_IFR_ONE_OF *) IfrOpHdr; - if (IfrOneOf->Question.VarStoreId != VarStorageData->VarStoreId) { + if (VarStorageData->VarStoreId != 0) { break; } - - // - // Get Offset/Width by Question header and OneOf Flags - // - VarOffset = IfrOneOf->Question.VarStoreInfo.VarOffset; - VarWidth = (UINT16) (1 << (IfrOneOf->Flags & EFI_IFR_NUMERIC_SIZE)); - // - // Check whether this question is in requested block array. - // - if (!BlockArrayCheck (RequestBlockArray, VarOffset, VarWidth)) { + + IfrNameValueVarStore = (EFI_IFR_VARSTORE_NAME_VALUE *) IfrOpHdr; + + if (IsThisVarstore (&IfrNameValueVarStore->Guid, NULL, ConfigHdr)) { // - // This question is not in the requested string. Skip it. + // Find the matched VarStore // - break; + CopyGuid (&VarStorageData->Guid, (EFI_GUID *) (VOID *) &IfrNameValueVarStore->Guid); + VarStorageData->VarStoreId = IfrNameValueVarStore->VarStoreId; + VarStorageData->Type = EFI_HII_VARSTORE_NAME_VALUE; } + break; + case EFI_IFR_DEFAULTSTORE_OP: // - // Check this var question is in the var storage - // - if ((VarOffset + VarWidth) > VarStorageData->Size) { - Status = EFI_INVALID_PARAMETER; - goto Done; - } - - // - // Set Block Data + // Add new the map between default id and default name. // - BlockData = (IFR_BLOCK_DATA *) AllocateZeroPool (sizeof (IFR_BLOCK_DATA)); - if (BlockData == NULL) { + DefaultDataPtr = (IFR_DEFAULT_DATA *) AllocateZeroPool (sizeof (IFR_DEFAULT_DATA)); + if (DefaultDataPtr == NULL) { Status = EFI_OUT_OF_RESOURCES; goto Done; } - BlockData->Offset = VarOffset; - BlockData->Width = VarWidth; - BlockData->QuestionId = IfrOneOf->Question.QuestionId; - BlockData->OpCode = IfrOpHdr->OpCode; - BlockData->Scope = IfrOpHdr->Scope; - InitializeListHead (&BlockData->DefaultValueEntry); - // - // Add Block Data into VarStorageData BlockEntry - // - InsertBlockData (&VarStorageData->BlockEntry, &BlockData); + DefaultDataPtr->DefaultId = ((EFI_IFR_DEFAULTSTORE *) IfrOpHdr)->DefaultId; + InsertTailList (&DefaultIdArray->Entry, &DefaultDataPtr->Entry); + DefaultDataPtr = NULL; break; - case EFI_IFR_ORDERED_LIST_OP: + case EFI_IFR_FORM_OP: + case EFI_IFR_FORM_MAP_OP: // - // offset by question header - // width by EFI_IFR_ORDERED_LIST MaxContainers * OneofOption Type - // no default value and default id, how to define its default value? + // No matched varstore is found and directly return. // + if (VarStorageData->VarStoreId == 0) { + Status = EFI_SUCCESS; + goto Done; + } + break; + case EFI_IFR_REF_OP: // - // OrderedList question is not in IFR Form. This IFR form is not valid. + // Ref question is not in IFR Form. This IFR form is not valid. // - if (VarStorageData->Size == 0) { + if (VarStorageData->VarStoreId == 0) { Status = EFI_INVALID_PARAMETER; goto Done; } // // Check whether this question is for the requested varstore. // - IfrOrderedList = (EFI_IFR_ORDERED_LIST *) IfrOpHdr; - if (IfrOrderedList->Question.VarStoreId != VarStorageData->VarStoreId) { - BlockData = NULL; + IfrRef = (EFI_IFR_REF4 *) IfrOpHdr; + if (IfrRef->Question.VarStoreId != VarStorageData->VarStoreId) { break; } + VarWidth = (UINT16) (sizeof (EFI_HII_REF)); + Status = IsThisOpcodeRequired(RequestBlockArray, HiiHandle, VarStorageData, IfrOpHdr, VarWidth, &BlockData); + if (EFI_ERROR (Status)) { + goto Done; + } + break; + + case EFI_IFR_ONE_OF_OP: + case EFI_IFR_NUMERIC_OP: + // + // Numeric and OneOf has the same opcode structure. + // + + // + // Numeric and OneOf question is not in IFR Form. This IFR form is not valid. + // + if (VarStorageData->VarStoreId == 0) { + Status = EFI_INVALID_PARAMETER; + goto Done; + } + // + // Check whether this question is for the requested varstore. // - // Get Offset/Width by Question header and OneOf Flags - // - VarOffset = IfrOrderedList->Question.VarStoreInfo.VarOffset; - VarWidth = IfrOrderedList->MaxContainers; - - // - // Set Block Data - // - BlockData = (IFR_BLOCK_DATA *) AllocateZeroPool (sizeof (IFR_BLOCK_DATA)); + IfrOneOf = (EFI_IFR_ONE_OF *) IfrOpHdr; + if (IfrOneOf->Question.VarStoreId != VarStorageData->VarStoreId) { + break; + } + VarWidth = (UINT16) (1 << (IfrOneOf->Flags & EFI_IFR_NUMERIC_SIZE)); + + Status = IsThisOpcodeRequired(RequestBlockArray, HiiHandle, VarStorageData, IfrOpHdr, VarWidth, &BlockData); + if (EFI_ERROR (Status)) { + goto Done; + } + if (BlockData == NULL) { - Status = EFI_OUT_OF_RESOURCES; + // + // BlockData == NULL means this opcode is not in the requst array. + // + break; + } + + if (IfrOpHdr->OpCode == EFI_IFR_ONE_OF_OP) { + // + // Set this flag to TRUE for the first oneof option. + // + FirstOneOfOption = TRUE; + } else if (IfrOpHdr->OpCode == EFI_IFR_NUMERIC_OP) { + // + // Numeric minimum value will be used as default value when no default is specified. + // + DefaultData.Type = DefaultValueFromDefault; + switch (IfrOneOf->Flags & EFI_IFR_NUMERIC_SIZE) { + case EFI_IFR_NUMERIC_SIZE_1: + DefaultData.Value.u8 = IfrOneOf->data.u8.MinValue; + break; + + case EFI_IFR_NUMERIC_SIZE_2: + CopyMem (&DefaultData.Value.u16, &IfrOneOf->data.u16.MinValue, sizeof (UINT16)); + break; + + case EFI_IFR_NUMERIC_SIZE_4: + CopyMem (&DefaultData.Value.u32, &IfrOneOf->data.u32.MinValue, sizeof (UINT32)); + break; + + case EFI_IFR_NUMERIC_SIZE_8: + CopyMem (&DefaultData.Value.u64, &IfrOneOf->data.u64.MinValue, sizeof (UINT64)); + break; + + default: + Status = EFI_INVALID_PARAMETER; + goto Done; + } + // + // Set default value base on the DefaultId list get from IFR data. + // + for (LinkData = DefaultIdArray->Entry.ForwardLink; LinkData != &DefaultIdArray->Entry; LinkData = LinkData->ForwardLink) { + DefaultDataPtr = BASE_CR (LinkData, IFR_DEFAULT_DATA, Entry); + DefaultData.DefaultId = DefaultDataPtr->DefaultId; + InsertDefaultValue (BlockData, &DefaultData); + } + } + break; + + case EFI_IFR_ORDERED_LIST_OP: + // + // offset by question header + // width by EFI_IFR_ORDERED_LIST MaxContainers * OneofOption Type + // no default value and default id, how to define its default value? + // + + // + // OrderedList question is not in IFR Form. This IFR form is not valid. + // + if (VarStorageData->VarStoreId == 0) { + Status = EFI_INVALID_PARAMETER; + goto Done; + } + // + // Check whether this question is for the requested varstore. + // + IfrOrderedList = (EFI_IFR_ORDERED_LIST *) IfrOpHdr; + if (IfrOrderedList->Question.VarStoreId != VarStorageData->VarStoreId) { + BlockData = NULL; + break; + } + VarWidth = IfrOrderedList->MaxContainers; + Status = IsThisOpcodeRequired(RequestBlockArray, HiiHandle, VarStorageData, IfrOpHdr, VarWidth, &BlockData); + if (EFI_ERROR (Status)) { goto Done; } - BlockData->Offset = VarOffset; - BlockData->Width = VarWidth; - BlockData->QuestionId = IfrOrderedList->Question.QuestionId; - BlockData->OpCode = IfrOpHdr->OpCode; - BlockData->Scope = IfrOpHdr->Scope; - InitializeListHead (&BlockData->DefaultValueEntry); break; case EFI_IFR_CHECKBOX_OP: @@ -1082,7 +1712,7 @@ ParseIfrData ( // // CheckBox question is not in IFR Form. This IFR form is not valid. // - if (VarStorageData->Size == 0) { + if (VarStorageData->VarStoreId == 0) { Status = EFI_INVALID_PARAMETER; goto Done; } @@ -1093,109 +1723,73 @@ ParseIfrData ( if (IfrCheckBox->Question.VarStoreId != VarStorageData->VarStoreId) { break; } - - // - // Get Offset/Width by Question header and OneOf Flags - // - VarOffset = IfrCheckBox->Question.VarStoreInfo.VarOffset; - VarWidth = sizeof (BOOLEAN); + VarWidth = (UINT16) sizeof (BOOLEAN); + Status = IsThisOpcodeRequired(RequestBlockArray, HiiHandle, VarStorageData, IfrOpHdr, VarWidth, &BlockData); + if (EFI_ERROR (Status)) { + goto Done; + } - // - // Check whether this question is in requested block array. - // - if (!BlockArrayCheck (RequestBlockArray, VarOffset, VarWidth)) { + if (BlockData == NULL) { // - // This question is not in the requested string. Skip it. + // BlockData == NULL means this opcode is not in the requst array. // break; } // - // Check this var question is in the var storage - // - if ((VarOffset + VarWidth) > VarStorageData->Size) { - Status = EFI_INVALID_PARAMETER; - goto Done; - } - - // - // Set Block Data - // - BlockData = (IFR_BLOCK_DATA *) AllocateZeroPool (sizeof (IFR_BLOCK_DATA)); - if (BlockData == NULL) { - Status = EFI_OUT_OF_RESOURCES; - goto Done; - } - BlockData->Offset = VarOffset; - BlockData->Width = VarWidth; - BlockData->QuestionId = IfrCheckBox->Question.QuestionId; - BlockData->OpCode = IfrOpHdr->OpCode; - BlockData->Scope = IfrOpHdr->Scope; - InitializeListHead (&BlockData->DefaultValueEntry); - // - // Add Block Data into VarStorageData BlockEntry + // Add default value for standard ID by CheckBox Flag // - InsertBlockData (&VarStorageData->BlockEntry, &BlockData); - + VarDefaultId = EFI_HII_DEFAULT_CLASS_STANDARD; // - // Add default value by CheckBox Flags + // Prepare new DefaultValue // + DefaultData.DefaultId = VarDefaultId; if ((IfrCheckBox->Flags & EFI_IFR_CHECKBOX_DEFAULT) == EFI_IFR_CHECKBOX_DEFAULT) { // - // Set standard ID to Manufacture ID and Get DefaultName String ID - // - VarDefaultId = EFI_HII_DEFAULT_CLASS_STANDARD; - Status = FindDefaultName (DefaultIdArray, VarDefaultId, &VarDefaultName); - if (EFI_ERROR (Status)) { - goto Done; - } - // - // Prepare new DefaultValue + // When flag is set, defautl value is TRUE. // - DefaultData = (IFR_DEFAULT_DATA *) AllocateZeroPool (sizeof (IFR_DEFAULT_DATA)); - if (DefaultData == NULL) { - Status = EFI_OUT_OF_RESOURCES; - goto Done; - } - DefaultData->OpCode = IfrOpHdr->OpCode; - DefaultData->DefaultId = VarDefaultId; - DefaultData->DefaultName = VarDefaultName; - DefaultData->Value = 1; + DefaultData.Type = DefaultValueFromFlag; + DefaultData.Value.b = TRUE; + } else { // - // Add DefaultValue into current BlockData + // When flag is not set, defautl value is FASLE. // - InsertDefaultValue (BlockData, DefaultData); + DefaultData.Type = DefaultValueFromDefault; + DefaultData.Value.b = FALSE; } + // + // Add DefaultValue into current BlockData + // + InsertDefaultValue (BlockData, &DefaultData); + // + // Add default value for Manufacture ID by CheckBox Flag + // + VarDefaultId = EFI_HII_DEFAULT_CLASS_MANUFACTURING; + // + // Prepare new DefaultValue + // + DefaultData.DefaultId = VarDefaultId; if ((IfrCheckBox->Flags & EFI_IFR_CHECKBOX_DEFAULT_MFG) == EFI_IFR_CHECKBOX_DEFAULT_MFG) { // - // Set standard ID to Manufacture ID and Get DefaultName String ID - // - VarDefaultId = EFI_HII_DEFAULT_CLASS_MANUFACTURING; - Status = FindDefaultName (DefaultIdArray, VarDefaultId, &VarDefaultName); - if (EFI_ERROR (Status)) { - goto Done; - } - // - // Prepare new DefaultValue + // When flag is set, defautl value is TRUE. // - DefaultData = (IFR_DEFAULT_DATA *) AllocateZeroPool (sizeof (IFR_DEFAULT_DATA)); - if (DefaultData == NULL) { - Status = EFI_OUT_OF_RESOURCES; - goto Done; - } - DefaultData->OpCode = IfrOpHdr->OpCode; - DefaultData->DefaultId = VarDefaultId; - DefaultData->DefaultName = VarDefaultName; - DefaultData->Value = 1; + DefaultData.Type = DefaultValueFromFlag; + DefaultData.Value.b = TRUE; + } else { // - // Add DefaultValue into current BlockData + // When flag is not set, defautl value is FASLE. // - InsertDefaultValue (BlockData, DefaultData); + DefaultData.Type = DefaultValueFromDefault; + DefaultData.Value.b = FALSE; } + // + // Add DefaultValue into current BlockData + // + InsertDefaultValue (BlockData, &DefaultData); break; - case EFI_IFR_STRING_OP: + case EFI_IFR_DATE_OP: // // offset by question header // width MaxSize * sizeof (CHAR16) @@ -1203,70 +1797,57 @@ ParseIfrData ( // // - // String question is not in IFR Form. This IFR form is not valid. + // Date question is not in IFR Form. This IFR form is not valid. // - if (VarStorageData->Size == 0) { + if (VarStorageData->VarStoreId == 0) { Status = EFI_INVALID_PARAMETER; goto Done; } // // Check whether this question is for the requested varstore. // - IfrString = (EFI_IFR_STRING *) IfrOpHdr; - if (IfrString->Question.VarStoreId != VarStorageData->VarStoreId) { + IfrDate = (EFI_IFR_DATE *) IfrOpHdr; + if (IfrDate->Question.VarStoreId != VarStorageData->VarStoreId) { break; } - - // - // Get Offset/Width by Question header and OneOf Flags - // - VarOffset = IfrString->Question.VarStoreInfo.VarOffset; - VarWidth = (UINT16) (IfrString->MaxSize * sizeof (UINT16)); + VarWidth = (UINT16) sizeof (EFI_HII_DATE); + Status = IsThisOpcodeRequired(RequestBlockArray, HiiHandle, VarStorageData, IfrOpHdr, VarWidth, &BlockData); + if (EFI_ERROR (Status)) { + goto Done; + } + break; + + case EFI_IFR_TIME_OP: // - // Check whether this question is in requested block array. + // offset by question header + // width MaxSize * sizeof (CHAR16) + // no default value, only block array // - if (!BlockArrayCheck (RequestBlockArray, VarOffset, VarWidth)) { - // - // This question is not in the requested string. Skip it. - // - break; - } // - // Check this var question is in the var storage + // Time question is not in IFR Form. This IFR form is not valid. // - if ((VarOffset + VarWidth) > VarStorageData->Size) { + if (VarStorageData->VarStoreId == 0) { Status = EFI_INVALID_PARAMETER; goto Done; } - // - // Set Block Data + // Check whether this question is for the requested varstore. // - BlockData = (IFR_BLOCK_DATA *) AllocateZeroPool (sizeof (IFR_BLOCK_DATA)); - if (BlockData == NULL) { - Status = EFI_OUT_OF_RESOURCES; + IfrTime = (EFI_IFR_TIME *) IfrOpHdr; + if (IfrTime->Question.VarStoreId != VarStorageData->VarStoreId) { + break; + } + + VarWidth = (UINT16) sizeof (EFI_HII_TIME); + Status = IsThisOpcodeRequired(RequestBlockArray, HiiHandle, VarStorageData, IfrOpHdr, VarWidth, &BlockData); + if (EFI_ERROR (Status)) { goto Done; } - BlockData->Offset = VarOffset; - BlockData->Width = VarWidth; - BlockData->QuestionId = IfrString->Question.QuestionId; - BlockData->OpCode = IfrOpHdr->OpCode; - InitializeListHead (&BlockData->DefaultValueEntry); - - // - // Add Block Data into VarStorageData BlockEntry - // - InsertBlockData (&VarStorageData->BlockEntry, &BlockData); - - // - // No default value for string. - // - BlockData = NULL; break; - case EFI_IFR_PASSWORD_OP: + case EFI_IFR_STRING_OP: // // offset by question header // width MaxSize * sizeof (CHAR16) @@ -1274,63 +1855,60 @@ ParseIfrData ( // // - // Password question is not in IFR Form. This IFR form is not valid. + // String question is not in IFR Form. This IFR form is not valid. // - if (VarStorageData->Size == 0) { + if (VarStorageData->VarStoreId == 0) { Status = EFI_INVALID_PARAMETER; goto Done; } // // Check whether this question is for the requested varstore. // - IfrPassword = (EFI_IFR_PASSWORD *) IfrOpHdr; - if (IfrPassword->Question.VarStoreId != VarStorageData->VarStoreId) { + IfrString = (EFI_IFR_STRING *) IfrOpHdr; + if (IfrString->Question.VarStoreId != VarStorageData->VarStoreId) { break; } - + + VarWidth = (UINT16) (IfrString->MaxSize * sizeof (UINT16)); + Status = IsThisOpcodeRequired(RequestBlockArray, HiiHandle, VarStorageData, IfrOpHdr, VarWidth, &BlockData); + if (EFI_ERROR (Status)) { + goto Done; + } + // - // Get Offset/Width by Question header and OneOf Flags + // No default value for string. // - VarOffset = IfrPassword->Question.VarStoreInfo.VarOffset; - VarWidth = (UINT16) (IfrPassword->MaxSize * sizeof (UINT16)); + BlockData = NULL; + break; + case EFI_IFR_PASSWORD_OP: // - // Check whether this question is in requested block array. + // offset by question header + // width MaxSize * sizeof (CHAR16) + // no default value, only block array // - if (!BlockArrayCheck (RequestBlockArray, VarOffset, VarWidth)) { - // - // This question is not in the requested string. Skip it. - // - break; - } // - // Check this var question is in the var storage + // Password question is not in IFR Form. This IFR form is not valid. // - if ((VarOffset + VarWidth) > VarStorageData->Size) { + if (VarStorageData->VarStoreId == 0) { Status = EFI_INVALID_PARAMETER; goto Done; } - // - // Set Block Data + // Check whether this question is for the requested varstore. // - BlockData = (IFR_BLOCK_DATA *) AllocateZeroPool (sizeof (IFR_BLOCK_DATA)); - if (BlockData == NULL) { - Status = EFI_OUT_OF_RESOURCES; + IfrPassword = (EFI_IFR_PASSWORD *) IfrOpHdr; + if (IfrPassword->Question.VarStoreId != VarStorageData->VarStoreId) { + break; + } + + VarWidth = (UINT16) (IfrPassword->MaxSize * sizeof (UINT16)); + Status = IsThisOpcodeRequired(RequestBlockArray, HiiHandle, VarStorageData, IfrOpHdr, VarWidth, &BlockData); + if (EFI_ERROR (Status)) { goto Done; } - BlockData->Offset = VarOffset; - BlockData->Width = VarWidth; - BlockData->QuestionId = IfrPassword->Question.QuestionId; - BlockData->OpCode = IfrOpHdr->OpCode; - InitializeListHead (&BlockData->DefaultValueEntry); - - // - // Add Block Data into VarStorageData BlockEntry - // - InsertBlockData (&VarStorageData->BlockEntry, &BlockData); - + // // No default value for string. // @@ -1344,7 +1922,7 @@ ParseIfrData ( if (BlockData == NULL || BlockData->Scope == 0) { break; } - + IfrOneOfOption = (EFI_IFR_ONE_OF_OPTION *) IfrOpHdr; if (BlockData->OpCode == EFI_IFR_ORDERED_LIST_OP) { // @@ -1363,6 +1941,9 @@ ParseIfrData ( // Invalid ordered list option data type. // Status = EFI_INVALID_PARAMETER; + if (BlockData->Name != NULL) { + FreePool (BlockData->Name); + } FreePool (BlockData); goto Done; } @@ -1374,10 +1955,13 @@ ParseIfrData ( // // Check whether this question is in requested block array. // - if (!BlockArrayCheck (RequestBlockArray, BlockData->Offset, BlockData->Width)) { + if (!BlockArrayCheck (RequestBlockArray, BlockData->Offset, BlockData->Width, (BOOLEAN)(BlockData->Name != NULL), HiiHandle)) { // // This question is not in the requested string. Skip it. // + if (BlockData->Name != NULL) { + FreePool (BlockData->Name); + } FreePool (BlockData); BlockData = NULL; break; @@ -1385,8 +1969,11 @@ ParseIfrData ( // // Check this var question is in the var storage // - if ((BlockData->Offset + BlockData->Width) > VarStorageData->Size) { + if ((BlockData->Name == NULL) && ((BlockData->Offset + BlockData->Width) > VarStorageData->Size)) { Status = EFI_INVALID_PARAMETER; + if (BlockData->Name != NULL) { + FreePool (BlockData->Name); + } FreePool (BlockData); goto Done; } @@ -1401,124 +1988,825 @@ ParseIfrData ( break; } - if ((IfrOneOfOption->Flags & EFI_IFR_OPTION_DEFAULT) == EFI_IFR_OPTION_DEFAULT) { + // + // 1. Set default value for OneOf option when flag field has default attribute. + // + if (((IfrOneOfOption->Flags & EFI_IFR_OPTION_DEFAULT) == EFI_IFR_OPTION_DEFAULT) || + ((IfrOneOfOption->Flags & EFI_IFR_OPTION_DEFAULT_MFG) == EFI_IFR_OPTION_DEFAULT_MFG)) { // - // Set standard ID to Manufacture ID and Get DefaultName String ID + // This flag is used to specify whether this option is the first. Set it to FALSE for the following options. + // The first oneof option value will be used as default value when no default value is specified. // - VarDefaultId = EFI_HII_DEFAULT_CLASS_STANDARD; - Status = FindDefaultName (DefaultIdArray, VarDefaultId, &VarDefaultName); - if (EFI_ERROR (Status)) { - goto Done; + FirstOneOfOption = FALSE; + + // Prepare new DefaultValue + // + DefaultData.Type = DefaultValueFromFlag; + CopyMem (&DefaultData.Value, &IfrOneOfOption->Value, IfrOneOfOption->Header.Length - OFFSET_OF (EFI_IFR_ONE_OF_OPTION, Value)); + if ((IfrOneOfOption->Flags & EFI_IFR_OPTION_DEFAULT) == EFI_IFR_OPTION_DEFAULT) { + DefaultData.DefaultId = EFI_HII_DEFAULT_CLASS_STANDARD; + InsertDefaultValue (BlockData, &DefaultData); + } + if ((IfrOneOfOption->Flags & EFI_IFR_OPTION_DEFAULT_MFG) == EFI_IFR_OPTION_DEFAULT_MFG) { + DefaultData.DefaultId = EFI_HII_DEFAULT_CLASS_MANUFACTURING; + InsertDefaultValue (BlockData, &DefaultData); } + } + + // + // 2. Set as the default value when this is the first option. + // The first oneof option value will be used as default value when no default value is specified. + // + if (FirstOneOfOption) { + // This flag is used to specify whether this option is the first. Set it to FALSE for the following options. + FirstOneOfOption = FALSE; + // // Prepare new DefaultValue - // - DefaultData = (IFR_DEFAULT_DATA *) AllocateZeroPool (sizeof (IFR_DEFAULT_DATA)); - if (DefaultData == NULL) { - Status = EFI_OUT_OF_RESOURCES; - goto Done; + // + DefaultData.Type = DefaultValueFromDefault; + CopyMem (&DefaultData.Value, &IfrOneOfOption->Value, IfrOneOfOption->Header.Length - OFFSET_OF (EFI_IFR_ONE_OF_OPTION, Value)); + for (LinkData = DefaultIdArray->Entry.ForwardLink; LinkData != &DefaultIdArray->Entry; LinkData = LinkData->ForwardLink) { + DefaultDataPtr = BASE_CR (LinkData, IFR_DEFAULT_DATA, Entry); + DefaultData.DefaultId = DefaultDataPtr->DefaultId; + InsertDefaultValue (BlockData, &DefaultData); } - DefaultData->OpCode = IfrOpHdr->OpCode; - DefaultData->DefaultId = VarDefaultId; - DefaultData->DefaultName = VarDefaultName; - DefaultData->Value = IfrOneOfOption->Value.u64; + } + break; + + case EFI_IFR_DEFAULT_OP: + // + // Update Current BlockData to the default value. + // + if (BlockData == NULL || BlockData->Scope == 0) { + // + // No matched block data is ignored. + // + break; + } + + if (BlockData->OpCode == EFI_IFR_ORDERED_LIST_OP) { // - // Add DefaultValue into current BlockData + // OrderedList Opcode is no default value. // - InsertDefaultValue (BlockData, DefaultData); + break; + } + // + // Get the DefaultId + // + IfrDefault = (EFI_IFR_DEFAULT *) IfrOpHdr; + VarDefaultId = IfrDefault->DefaultId; + // + // Prepare new DefaultValue + // + DefaultData.Type = DefaultValueFromOpcode; + DefaultData.DefaultId = VarDefaultId; + CopyMem (&DefaultData.Value, &IfrDefault->Value, IfrDefault->Header.Length - OFFSET_OF (EFI_IFR_DEFAULT, Value)); + + // If the value field is expression, set the cleaned flag. + if (IfrDefault->Type == EFI_IFR_TYPE_OTHER) { + DefaultData.Cleaned = TRUE; } + // + // Add DefaultValue into current BlockData + // + InsertDefaultValue (BlockData, &DefaultData); + + // + // After insert the default value, reset the cleaned value for next + // time used. If not set here, need to set the value before everytime + // use it. + // + DefaultData.Cleaned = FALSE; + break; + + case EFI_IFR_END_OP: + // + // End Opcode is for Var question. + // + if (BlockData != NULL && BlockData->Scope > 0) { + BlockData->Scope--; + } + break; + + default: + if (BlockData != NULL && BlockData->Scope > 0) { + BlockData->Scope = (UINT8) (BlockData->Scope + IfrOpHdr->Scope); + } + break; + } + + IfrOffset += IfrOpHdr->Length; + } + +Done: + for (LinkData = VarStorageData->BlockEntry.ForwardLink; LinkData != &VarStorageData->BlockEntry; LinkData = LinkData->ForwardLink) { + BlockData = BASE_CR (LinkData, IFR_BLOCK_DATA, Entry); + for (LinkDefault = BlockData->DefaultValueEntry.ForwardLink; LinkDefault != &BlockData->DefaultValueEntry; ) { + DefaultDataPtr = BASE_CR (LinkDefault, IFR_DEFAULT_DATA, Entry); + LinkDefault = LinkDefault->ForwardLink; + if (DefaultDataPtr->Cleaned == TRUE) { + RemoveEntryList (&DefaultDataPtr->Entry); + FreePool (DefaultDataPtr); + } + } + } + + return Status; +} + +/** + parse the configrequest string, get the elements. + + @param ConfigRequest The input configrequest string. + @param Progress Return the progress data. + + @retval Block data pointer. +**/ +IFR_BLOCK_DATA * +GetBlockElement ( + IN EFI_STRING ConfigRequest, + OUT EFI_STRING *Progress + ) +{ + EFI_STRING StringPtr; + IFR_BLOCK_DATA *BlockData; + IFR_BLOCK_DATA *RequestBlockArray; + EFI_STATUS Status; + UINT8 *TmpBuffer; + UINT16 Offset; + UINT16 Width; + LIST_ENTRY *Link; + IFR_BLOCK_DATA *NextBlockData; + UINTN Length; + + // + // Init RequestBlockArray + // + RequestBlockArray = (IFR_BLOCK_DATA *) AllocateZeroPool (sizeof (IFR_BLOCK_DATA)); + if (RequestBlockArray == NULL) { + goto Done; + } + InitializeListHead (&RequestBlockArray->Entry); + + // + // Get the request Block array from the request string + // Offset and Width + // + + // + // Parse each if exists + // Only format is supported by this help function. + // ::= &'OFFSET='&'WIDTH=' + // + StringPtr = ConfigRequest; + while (*StringPtr != 0 && StrnCmp (StringPtr, L"&OFFSET=", StrLen (L"&OFFSET=")) == 0) { + // + // Skip the OFFSET string + // + *Progress = StringPtr; + StringPtr += StrLen (L"&OFFSET="); + // + // Get Offset + // + Status = GetValueOfNumber (StringPtr, &TmpBuffer, &Length); + if (EFI_ERROR (Status)) { + goto Done; + } + Offset = 0; + CopyMem ( + &Offset, + TmpBuffer, + (((Length + 1) / 2) < sizeof (UINT16)) ? ((Length + 1) / 2) : sizeof (UINT16) + ); + FreePool (TmpBuffer); + + StringPtr += Length; + if (StrnCmp (StringPtr, L"&WIDTH=", StrLen (L"&WIDTH=")) != 0) { + goto Done; + } + StringPtr += StrLen (L"&WIDTH="); + + // + // Get Width + // + Status = GetValueOfNumber (StringPtr, &TmpBuffer, &Length); + if (EFI_ERROR (Status)) { + goto Done; + } + Width = 0; + CopyMem ( + &Width, + TmpBuffer, + (((Length + 1) / 2) < sizeof (UINT16)) ? ((Length + 1) / 2) : sizeof (UINT16) + ); + FreePool (TmpBuffer); + + StringPtr += Length; + if (*StringPtr != 0 && *StringPtr != L'&') { + goto Done; + } + + // + // Set Block Data + // + BlockData = (IFR_BLOCK_DATA *) AllocateZeroPool (sizeof (IFR_BLOCK_DATA)); + if (BlockData == NULL) { + goto Done; + } + BlockData->Offset = Offset; + BlockData->Width = Width; + InsertBlockData (&RequestBlockArray->Entry, &BlockData); + + // + // Skip &VALUE string if &VALUE does exists. + // + if (StrnCmp (StringPtr, L"&VALUE=", StrLen (L"&VALUE=")) == 0) { + StringPtr += StrLen (L"&VALUE="); + + // + // Get Value + // + Status = GetValueOfNumber (StringPtr, &TmpBuffer, &Length); + if (EFI_ERROR (Status)) { + goto Done; + } + + StringPtr += Length; + if (*StringPtr != 0 && *StringPtr != L'&') { + goto Done; + } + } + // + // If '\0', parsing is finished. + // + if (*StringPtr == 0) { + break; + } + } + + // + // Merge the requested block data. + // + Link = RequestBlockArray->Entry.ForwardLink; + while ((Link != &RequestBlockArray->Entry) && (Link->ForwardLink != &RequestBlockArray->Entry)) { + BlockData = BASE_CR (Link, IFR_BLOCK_DATA, Entry); + NextBlockData = BASE_CR (Link->ForwardLink, IFR_BLOCK_DATA, Entry); + if ((NextBlockData->Offset >= BlockData->Offset) && (NextBlockData->Offset <= (BlockData->Offset + BlockData->Width))) { + if ((NextBlockData->Offset + NextBlockData->Width) > (BlockData->Offset + BlockData->Width)) { + BlockData->Width = (UINT16) (NextBlockData->Offset + NextBlockData->Width - BlockData->Offset); + } + RemoveEntryList (Link->ForwardLink); + FreePool (NextBlockData); + continue; + } + Link = Link->ForwardLink; + } + + return RequestBlockArray; + +Done: + if (RequestBlockArray != NULL) { + // + // Free Link Array RequestBlockArray + // + while (!IsListEmpty (&RequestBlockArray->Entry)) { + BlockData = BASE_CR (RequestBlockArray->Entry.ForwardLink, IFR_BLOCK_DATA, Entry); + RemoveEntryList (&BlockData->Entry); + FreePool (BlockData); + } + + FreePool (RequestBlockArray); + } + + return NULL; +} + +/** + parse the configrequest string, get the elements. + + @param ConfigRequest The input config request string. + @param Progress Return the progress data. + + @retval return data block array. +**/ +IFR_BLOCK_DATA * +GetNameElement ( + IN EFI_STRING ConfigRequest, + OUT EFI_STRING *Progress + ) +{ + EFI_STRING StringPtr; + EFI_STRING NextTag; + IFR_BLOCK_DATA *BlockData; + IFR_BLOCK_DATA *RequestBlockArray; + BOOLEAN HasValue; + + StringPtr = ConfigRequest; + + // + // Init RequestBlockArray + // + RequestBlockArray = (IFR_BLOCK_DATA *) AllocateZeroPool (sizeof (IFR_BLOCK_DATA)); + if (RequestBlockArray == NULL) { + goto Done; + } + InitializeListHead (&RequestBlockArray->Entry); + + // + // Get the request Block array from the request string + // + + // + // Parse each if exists + // Only format is supported by this help function. + // ::= &'Name***=*** + // + while (StringPtr != NULL && *StringPtr == L'&') { + + *Progress = StringPtr; + // + // Skip the L"&" string + // + StringPtr += 1; + + HasValue = FALSE; + if ((NextTag = StrStr (StringPtr, L"=")) != NULL) { + *NextTag = L'\0'; + HasValue = TRUE; + } else if ((NextTag = StrStr (StringPtr, L"&")) != NULL) { + *NextTag = L'\0'; + } + + // + // Set Block Data + // + BlockData = (IFR_BLOCK_DATA *) AllocateZeroPool (sizeof (IFR_BLOCK_DATA)); + if (BlockData == NULL) { + goto Done; + } + + // + // Get Name + // + BlockData->Name = AllocateCopyPool(StrSize (StringPtr), StringPtr); + InsertBlockData (&RequestBlockArray->Entry, &BlockData); + + if (HasValue) { + // + // If has value, skip the value. + // + StringPtr = NextTag + 1; + *NextTag = L'='; + StringPtr = StrStr (StringPtr, L"&"); + } else if (NextTag != NULL) { + // + // restore the '&' text. + // + StringPtr = NextTag; + *NextTag = L'&'; + } + } + + return RequestBlockArray; + +Done: + if (RequestBlockArray != NULL) { + // + // Free Link Array RequestBlockArray + // + while (!IsListEmpty (&RequestBlockArray->Entry)) { + BlockData = BASE_CR (RequestBlockArray->Entry.ForwardLink, IFR_BLOCK_DATA, Entry); + RemoveEntryList (&BlockData->Entry); + if (BlockData->Name != NULL) { + FreePool (BlockData->Name); + } + FreePool (BlockData); + } + + FreePool (RequestBlockArray); + } + + return NULL; +} + +/** + Generate ConfigRequest string base on the varstore info. + + @param ConfigHdr The config header for this varstore. + @param VarStorageData The varstore info. + @param Status Return Status. + @param ConfigRequest The ConfigRequest info may be return. + + @retval TRUE Need to continue + @retval Others NO need to continue or error occur. +**/ +BOOLEAN +GenerateConfigRequest ( + IN CHAR16 *ConfigHdr, + IN IFR_VARSTORAGE_DATA *VarStorageData, + OUT EFI_STATUS *Status, + IN OUT EFI_STRING *ConfigRequest + ) +{ + BOOLEAN DataExist; + UINTN Length; + LIST_ENTRY *Link; + CHAR16 *FullConfigRequest; + CHAR16 *StringPtr; + IFR_BLOCK_DATA *BlockData; + + // + // Append VarStorageData BlockEntry into *Request string + // Now support only one varstore in a form package. + // + + // + // Go through all VarStorageData Entry and get BlockEntry for each one for the multiple varstore in a single form package + // Then construct them all to return MultiRequest string : ConfigHdr BlockConfig + // + + // + // Compute the length of the entire request starting with and a + // Null-terminator + // + DataExist = FALSE; + Length = StrLen (ConfigHdr) + 1; + + for (Link = VarStorageData->BlockEntry.ForwardLink; Link != &VarStorageData->BlockEntry; Link = Link->ForwardLink) { + DataExist = TRUE; + BlockData = BASE_CR (Link, IFR_BLOCK_DATA, Entry); + if (VarStorageData->Type == EFI_HII_VARSTORE_NAME_VALUE) { + // + // Add length for each Name + // + // ::= &Name1&Name2&... + // |1| StrLen(Name1) + // + Length = Length + (1 + StrLen (BlockData->Name)); + } else { + // + // Add length for each Offset/Width pair + // + // ::= &OFFSET=1234&WIDTH=1234 + // | 8 | 4 | 7 | 4 | + // + Length = Length + (8 + 4 + 7 + 4); + } + } + // + // No any request block data is found. The request string can't be constructed. + // + if (!DataExist) { + *Status = EFI_SUCCESS; + return FALSE; + } + + // + // Allocate buffer for the entire + // + FullConfigRequest = AllocateZeroPool (Length * sizeof (CHAR16)); + if (FullConfigRequest == NULL) { + *Status = EFI_OUT_OF_RESOURCES; + return FALSE; + } + StringPtr = FullConfigRequest; + + // + // Start with + // + StrCpy (StringPtr, ConfigHdr); + StringPtr += StrLen (StringPtr); + + // + // Loop through all the Offset/Width pairs and append them to ConfigRequest + // + for (Link = VarStorageData->BlockEntry.ForwardLink; Link != &VarStorageData->BlockEntry; Link = Link->ForwardLink) { + BlockData = BASE_CR (Link, IFR_BLOCK_DATA, Entry); + if (VarStorageData->Type == EFI_HII_VARSTORE_NAME_VALUE) { + // + // Append &Name1\0 + // + UnicodeSPrint ( + StringPtr, + (1 + StrLen (BlockData->Name) + 1) * sizeof (CHAR16), + L"&%s", + BlockData->Name + ); + } else { + // + // Append &OFFSET=XXXX&WIDTH=YYYY\0 + // + UnicodeSPrint ( + StringPtr, + (8 + 4 + 7 + 4 + 1) * sizeof (CHAR16), + L"&OFFSET=%04X&WIDTH=%04X", + BlockData->Offset, + BlockData->Width + ); + } + StringPtr += StrLen (StringPtr); + } + // + // Set to the got full request string. + // + HiiToLower (FullConfigRequest); + + if (*ConfigRequest != NULL) { + FreePool (*ConfigRequest); + } + *ConfigRequest = FullConfigRequest; + + return TRUE; +} + +/** + Generate ConfigRequest Header base on the varstore info. + + @param VarStorageData The varstore info. + @param DevicePath Device path for this varstore. + @param ConfigHdr The config header for this varstore. + + @retval EFI_SUCCESS Generate the header success. + @retval EFI_OUT_OF_RESOURCES Allocate buffer fail. +**/ +EFI_STATUS +GenerateHdr ( + IN IFR_VARSTORAGE_DATA *VarStorageData, + IN EFI_DEVICE_PATH_PROTOCOL *DevicePath, + OUT EFI_STRING *ConfigHdr + ) +{ + EFI_STRING GuidStr; + EFI_STRING NameStr; + EFI_STRING PathStr; + UINTN Length; + EFI_STATUS Status; + + Status = EFI_SUCCESS; + NameStr = NULL; + GuidStr = NULL; + PathStr = NULL; + + // + // Construct : "GUID=...&NAME=...&PATH=..." by VarStorageData Guid, Name and DriverHandle + // + GenerateSubStr (L"GUID=", sizeof (EFI_GUID), (VOID *) &VarStorageData->Guid, 1, &GuidStr); + if (VarStorageData->Name != NULL) { + GenerateSubStr (L"NAME=", StrLen (VarStorageData->Name) * sizeof (CHAR16), (VOID *) VarStorageData->Name, 2, &NameStr); + } else { + GenerateSubStr (L"NAME=", 0, NULL, 2, &NameStr); + } + GenerateSubStr ( + L"PATH=", + GetDevicePathSize ((EFI_DEVICE_PATH_PROTOCOL *) DevicePath), + (VOID *) DevicePath, + 1, + &PathStr + ); + Length = StrLen (GuidStr) + StrLen (NameStr) + StrLen (PathStr) + 1; + if (VarStorageData->Name == NULL) { + Length += 1; + } + + *ConfigHdr = AllocateZeroPool (Length * sizeof (CHAR16)); + if (*ConfigHdr == NULL) { + Status = EFI_OUT_OF_RESOURCES; + goto Done; + } + StrCpy (*ConfigHdr, GuidStr); + StrCat (*ConfigHdr, NameStr); + if (VarStorageData->Name == NULL) { + StrCat (*ConfigHdr, L"&"); + } + StrCat (*ConfigHdr, PathStr); + + // + // Remove the last character L'&' + // + *(*ConfigHdr + StrLen (*ConfigHdr) - 1) = L'\0'; + +Done: + if (GuidStr != NULL) { + FreePool (GuidStr); + } + + if (NameStr != NULL) { + FreePool (NameStr); + } + + if (PathStr != NULL) { + FreePool (PathStr); + } + + return Status; +} + +/** + Get Data buffer size based on data type. + + @param ValueType The input data type. + + @retval The data buffer size for the input type. +**/ +UINT16 +GetStorageWidth ( + IN UINT8 ValueType + ) +{ + UINT16 StorageWidth; + + switch (ValueType) { + case EFI_IFR_NUMERIC_SIZE_1: + case EFI_IFR_TYPE_BOOLEAN: + StorageWidth = (UINT16) sizeof (UINT8); + break; + + case EFI_IFR_NUMERIC_SIZE_2: + StorageWidth = (UINT16) sizeof (UINT16); + break; + + case EFI_IFR_NUMERIC_SIZE_4: + StorageWidth = (UINT16) sizeof (UINT32); + break; + + case EFI_IFR_NUMERIC_SIZE_8: + StorageWidth = (UINT16) sizeof (UINT64); + break; + + case EFI_IFR_TYPE_TIME: + StorageWidth = (UINT16) sizeof (EFI_IFR_TIME); + break; + + case EFI_IFR_TYPE_DATE: + StorageWidth = (UINT16) sizeof (EFI_IFR_DATE); + break; + + default: + StorageWidth = 0; + break; + } + + return StorageWidth; +} + +/** + Generate ConfigAltResp string base on the varstore info. + + @param ConfigHdr The config header for this varstore. + @param VarStorageData The varstore info. + @param DefaultIdArray The Default id array. + @param DefaultAltCfgResp The DefaultAltCfgResp info may be return. + + @retval TRUE Need to continue + @retval Others NO need to continue or error occur. +**/ +EFI_STATUS +GenerateAltConfigResp ( + IN CHAR16 *ConfigHdr, + IN IFR_VARSTORAGE_DATA *VarStorageData, + IN IFR_DEFAULT_DATA *DefaultIdArray, + IN OUT EFI_STRING *DefaultAltCfgResp + ) +{ + BOOLEAN DataExist; + UINTN Length; + LIST_ENTRY *Link; + LIST_ENTRY *LinkData; + LIST_ENTRY *LinkDefault; + LIST_ENTRY *ListEntry; + CHAR16 *StringPtr; + IFR_BLOCK_DATA *BlockData; + IFR_DEFAULT_DATA *DefaultId; + IFR_DEFAULT_DATA *DefaultValueData; + UINTN Width; + UINT8 *TmpBuffer; + + BlockData = NULL; + DataExist = FALSE; - if ((IfrOneOfOption->Flags & EFI_IFR_OPTION_DEFAULT_MFG) == EFI_IFR_OPTION_DEFAULT_MFG) { - // - // Set default ID to Manufacture ID and Get DefaultName String ID - // - VarDefaultId = EFI_HII_DEFAULT_CLASS_MANUFACTURING; - Status = FindDefaultName (DefaultIdArray, VarDefaultId, &VarDefaultName); - if (EFI_ERROR (Status)) { - goto Done; + // + // Add length for + '\0' + // + Length = StrLen (ConfigHdr) + 1; + + for (Link = DefaultIdArray->Entry.ForwardLink; Link != &DefaultIdArray->Entry; Link = Link->ForwardLink) { + DefaultId = BASE_CR (Link, IFR_DEFAULT_DATA, Entry); + // + // Add length for "&&ALTCFG=XXXX" + // |1| StrLen (ConfigHdr) | 8 | 4 | + // + Length += (1 + StrLen (ConfigHdr) + 8 + 4); + + for (LinkData = VarStorageData->BlockEntry.ForwardLink; LinkData != &VarStorageData->BlockEntry; LinkData = LinkData->ForwardLink) { + BlockData = BASE_CR (LinkData, IFR_BLOCK_DATA, Entry); + ListEntry = &BlockData->DefaultValueEntry; + for (LinkDefault = ListEntry->ForwardLink; LinkDefault != ListEntry; LinkDefault = LinkDefault->ForwardLink) { + DefaultValueData = BASE_CR (LinkDefault, IFR_DEFAULT_DATA, Entry); + if (DefaultValueData->DefaultId != DefaultId->DefaultId) { + continue; } - // - // Prepare new DefaultValue - // - DefaultData = (IFR_DEFAULT_DATA *) AllocateZeroPool (sizeof (IFR_DEFAULT_DATA)); - if (DefaultData == NULL) { - Status = EFI_OUT_OF_RESOURCES; - goto Done; + if (VarStorageData->Type == EFI_HII_VARSTORE_NAME_VALUE) { + // + // Add length for "&Name1=zzzzzzzzzzzz" + // |1|Name|1|Value| + // + Length += (1 + StrLen (BlockData->Name) + 1 + BlockData->Width * 2); + } else { + // + // Add length for "&OFFSET=XXXX&WIDTH=YYYY&VALUE=zzzzzzzzzzzz" + // | 8 | 4 | 7 | 4 | 7 | Width * 2 | + // + Length += (8 + 4 + 7 + 4 + 7 + BlockData->Width * 2); } - DefaultData->OpCode = IfrOpHdr->OpCode; - DefaultData->DefaultId = VarDefaultId; - DefaultData->DefaultName = VarDefaultName; - DefaultData->Value = IfrOneOfOption->Value.u64; - // - // Add DefaultValue into current BlockData - // - InsertDefaultValue (BlockData, DefaultData); + DataExist = TRUE; } - break; + } + } + + // + // No default value is found. The default string doesn't exist. + // + if (!DataExist) { + return EFI_SUCCESS; + } - case EFI_IFR_DEFAULT_OP: - // - // Update Current BlockData to the default value. - // - if (BlockData == NULL || BlockData->Scope == 0) { - // - // No matched block data is ignored. - // - break; - } + // + // Allocate buffer for the entire + // + *DefaultAltCfgResp = AllocateZeroPool (Length * sizeof (CHAR16)); + if (*DefaultAltCfgResp == NULL) { + return EFI_OUT_OF_RESOURCES; + } + StringPtr = *DefaultAltCfgResp; - if (BlockData->OpCode == EFI_IFR_ORDERED_LIST_OP) { + // + // Start with + // + StrCpy (StringPtr, ConfigHdr); + StringPtr += StrLen (StringPtr); + + for (Link = DefaultIdArray->Entry.ForwardLink; Link != &DefaultIdArray->Entry; Link = Link->ForwardLink) { + DefaultId = BASE_CR (Link, IFR_DEFAULT_DATA, Entry); + // + // Add of the form "&&ALTCFG=XXXX\0" + // |1| StrLen (ConfigHdr) | 8 | 4 | + // + UnicodeSPrint ( + StringPtr, + (1 + StrLen (ConfigHdr) + 8 + 4 + 1) * sizeof (CHAR16), + L"&%s&ALTCFG=%04X", + ConfigHdr, + DefaultId->DefaultId + ); + StringPtr += StrLen (StringPtr); + + for (LinkData = VarStorageData->BlockEntry.ForwardLink; LinkData != &VarStorageData->BlockEntry; LinkData = LinkData->ForwardLink) { + BlockData = BASE_CR (LinkData, IFR_BLOCK_DATA, Entry); + ListEntry = &BlockData->DefaultValueEntry; + for (LinkDefault = ListEntry->ForwardLink; LinkDefault != ListEntry; LinkDefault = LinkDefault->ForwardLink) { + DefaultValueData = BASE_CR (LinkDefault, IFR_DEFAULT_DATA, Entry); + if (DefaultValueData->DefaultId != DefaultId->DefaultId) { + continue; + } + if (VarStorageData->Type == EFI_HII_VARSTORE_NAME_VALUE) { + UnicodeSPrint ( + StringPtr, + (1 + StrLen (ConfigHdr) + 1) * sizeof (CHAR16), + L"&%s=", + BlockData->Name + ); + StringPtr += StrLen (StringPtr); + } else { + // + // Add + // ::= 'OFFSET='&'WIDTH='&'VALUE'= + // + UnicodeSPrint ( + StringPtr, + (8 + 4 + 7 + 4 + 7 + 1) * sizeof (CHAR16), + L"&OFFSET=%04X&WIDTH=%04X&VALUE=", + BlockData->Offset, + BlockData->Width + ); + StringPtr += StrLen (StringPtr); + } + Width = BlockData->Width; // - // OrderedList Opcode is no default value. + // Convert Value to a hex string in "%x" format + // NOTE: This is in the opposite byte that GUID and PATH use // - break; - } - // - // Get the DefaultId and DefaultName String ID - // - IfrDefault = (EFI_IFR_DEFAULT *) IfrOpHdr; - VarDefaultId = IfrDefault->DefaultId; - Status = FindDefaultName (DefaultIdArray, VarDefaultId, &VarDefaultName); - if (EFI_ERROR (Status)) { - goto Done; - } - // - // Prepare new DefaultValue - // - DefaultData = (IFR_DEFAULT_DATA *) AllocateZeroPool (sizeof (IFR_DEFAULT_DATA)); - if (DefaultData == NULL) { - Status = EFI_OUT_OF_RESOURCES; - goto Done; - } - DefaultData->OpCode = IfrOpHdr->OpCode; - DefaultData->DefaultId = VarDefaultId; - DefaultData->DefaultName = VarDefaultName; - DefaultData->Value = IfrDefault->Value.u64; - // - // Add DefaultValue into current BlockData - // - InsertDefaultValue (BlockData, DefaultData); - break; - case EFI_IFR_END_OP: - // - // End Opcode is for Var question. - // - if (BlockData != NULL && BlockData->Scope > 0) { - BlockData->Scope--; - } - break; - default: - if (BlockData != NULL && BlockData->Scope > 0) { - BlockData->Scope = (UINT8) (BlockData->Scope + IfrOpHdr->Scope); + TmpBuffer = (UINT8 *) &(DefaultValueData->Value); + for (; Width > 0; Width--) { + StringPtr += UnicodeValueToString (StringPtr, PREFIX_ZERO | RADIX_HEX, TmpBuffer[Width - 1], 2); + } } - break; } - - IfrOffset += IfrOpHdr->Length; } -Done: - return Status; + HiiToLower (*DefaultAltCfgResp); + + return EFI_SUCCESS; } /** @@ -1577,29 +2865,16 @@ GetFullStringFromHiiFormPackages ( EFI_STATUS Status; UINT8 *HiiFormPackage; UINTN PackageSize; - UINTN ResultSize; IFR_BLOCK_DATA *RequestBlockArray; IFR_BLOCK_DATA *BlockData; - IFR_BLOCK_DATA *NextBlockData; IFR_DEFAULT_DATA *DefaultValueData; IFR_DEFAULT_DATA *DefaultId; IFR_DEFAULT_DATA *DefaultIdArray; IFR_VARSTORAGE_DATA *VarStorageData; EFI_STRING DefaultAltCfgResp; - EFI_STRING FullConfigRequest; EFI_STRING ConfigHdr; - EFI_STRING GuidStr; - EFI_STRING NameStr; - EFI_STRING PathStr; EFI_STRING StringPtr; EFI_STRING Progress; - UINTN Length; - UINT8 *TmpBuffer; - UINT16 Offset; - UINT16 Width; - LIST_ENTRY *Link; - LIST_ENTRY *LinkData; - LIST_ENTRY *LinkDefault; BOOLEAN DataExist; if (DataBaseRecord == NULL || DevicePath == NULL || Request == NULL || AltCfgResp == NULL) { @@ -1613,55 +2888,15 @@ GetFullStringFromHiiFormPackages ( DefaultIdArray = NULL; VarStorageData = NULL; DefaultAltCfgResp = NULL; - FullConfigRequest = NULL; ConfigHdr = NULL; - GuidStr = NULL; - NameStr = NULL; - PathStr = NULL; HiiFormPackage = NULL; - ResultSize = 0; PackageSize = 0; DataExist = FALSE; Progress = *Request; - - // - // 0. Get Hii Form Package by HiiHandle - // - Status = ExportFormPackages ( - &mPrivate, - DataBaseRecord->Handle, - DataBaseRecord->PackageList, - 0, - PackageSize, - HiiFormPackage, - &ResultSize - ); - if (EFI_ERROR (Status)) { - return Status; - } - - HiiFormPackage = AllocatePool (ResultSize); - if (HiiFormPackage == NULL) { - Status = EFI_OUT_OF_RESOURCES; - goto Done; - } - // - // Get HiiFormPackage by HiiHandle - // - PackageSize = ResultSize; - ResultSize = 0; - Status = ExportFormPackages ( - &mPrivate, - DataBaseRecord->Handle, - DataBaseRecord->PackageList, - 0, - PackageSize, - HiiFormPackage, - &ResultSize - ); + Status = GetFormPackageData (DataBaseRecord, &HiiFormPackage, &PackageSize); if (EFI_ERROR (Status)) { - goto Done; + return Status; } // @@ -1697,153 +2932,30 @@ GetFullStringFromHiiFormPackages ( while (*StringPtr != L'\0' && *StringPtr != L'&') { StringPtr ++; } - // - // Check the following string &OFFSET= - // - if (*StringPtr != L'\0' && StrnCmp (StringPtr, L"&OFFSET=", StrLen (L"&OFFSET=")) != 0) { - Progress = StringPtr; - Status = EFI_INVALID_PARAMETER; - goto Done; - } else if (*StringPtr == L'\0') { - // - // No request block is found. - // - StringPtr = NULL; - } - } - if (StringPtr != NULL) { - // - // Init RequestBlockArray - // - RequestBlockArray = (IFR_BLOCK_DATA *) AllocateZeroPool (sizeof (IFR_BLOCK_DATA)); - if (RequestBlockArray == NULL) { - Status = EFI_OUT_OF_RESOURCES; - goto Done; - } - InitializeListHead (&RequestBlockArray->Entry); - - // - // Get the request Block array from the request string - // Offset and Width - // - - // - // Parse each if exists - // Only format is supported by this help function. - // ::= &'OFFSET='&'WIDTH=' - // - while (*StringPtr != 0 && StrnCmp (StringPtr, L"&OFFSET=", StrLen (L"&OFFSET=")) == 0) { - // - // Skip the OFFSET string - // - Progress = StringPtr; - StringPtr += StrLen (L"&OFFSET="); - // - // Get Offset - // - Status = GetValueOfNumber (StringPtr, &TmpBuffer, &Length); - if (EFI_ERROR (Status)) { - goto Done; - } - Offset = 0; - CopyMem ( - &Offset, - TmpBuffer, - (((Length + 1) / 2) < sizeof (UINT16)) ? ((Length + 1) / 2) : sizeof (UINT16) - ); - FreePool (TmpBuffer); - - StringPtr += Length; - if (StrnCmp (StringPtr, L"&WIDTH=", StrLen (L"&WIDTH=")) != 0) { - Status = EFI_INVALID_PARAMETER; - goto Done; - } - StringPtr += StrLen (L"&WIDTH="); - - // - // Get Width - // - Status = GetValueOfNumber (StringPtr, &TmpBuffer, &Length); - if (EFI_ERROR (Status)) { - goto Done; - } - Width = 0; - CopyMem ( - &Width, - TmpBuffer, - (((Length + 1) / 2) < sizeof (UINT16)) ? ((Length + 1) / 2) : sizeof (UINT16) - ); - FreePool (TmpBuffer); - - StringPtr += Length; - if (*StringPtr != 0 && *StringPtr != L'&') { - Status = EFI_INVALID_PARAMETER; - goto Done; - } - - // - // Set Block Data - // - BlockData = (IFR_BLOCK_DATA *) AllocateZeroPool (sizeof (IFR_BLOCK_DATA)); - if (BlockData == NULL) { - Status = EFI_OUT_OF_RESOURCES; - goto Done; - } - BlockData->Offset = Offset; - BlockData->Width = Width; - InsertBlockData (&RequestBlockArray->Entry, &BlockData); - - // - // Skip &VALUE string if &VALUE does exists. - // - if (StrnCmp (StringPtr, L"&VALUE=", StrLen (L"&VALUE=")) == 0) { - StringPtr += StrLen (L"&VALUE="); - - // - // Get Value - // - Status = GetValueOfNumber (StringPtr, &TmpBuffer, &Length); - if (EFI_ERROR (Status)) { - Status = EFI_INVALID_PARAMETER; - goto Done; - } - StringPtr += Length; - if (*StringPtr != 0 && *StringPtr != L'&') { - Status = EFI_INVALID_PARAMETER; - goto Done; - } - } - // - // If '\0', parsing is finished. - // - if (*StringPtr == 0) { - break; - } - } - - // - // Merge the requested block data. - // - Link = RequestBlockArray->Entry.ForwardLink; - while ((Link != &RequestBlockArray->Entry) && (Link->ForwardLink != &RequestBlockArray->Entry)) { - BlockData = BASE_CR (Link, IFR_BLOCK_DATA, Entry); - NextBlockData = BASE_CR (Link->ForwardLink, IFR_BLOCK_DATA, Entry); - if ((NextBlockData->Offset >= BlockData->Offset) && (NextBlockData->Offset <= (BlockData->Offset + BlockData->Width))) { - if ((NextBlockData->Offset + NextBlockData->Width) > (BlockData->Offset + BlockData->Width)) { - BlockData->Width = (UINT16) (NextBlockData->Offset + NextBlockData->Width - BlockData->Offset); - } - RemoveEntryList (Link->ForwardLink); - FreePool (NextBlockData); - continue; - } - Link = Link->ForwardLink; + if (*StringPtr == L'\0') { + // + // No request block is found. + // + StringPtr = NULL; } } - + // - // 2. Parse FormPackage to get BlockArray and DefaultId Array for the request BlockArray. + // If StringPtr != NULL, get the request elements. // + if (StringPtr != NULL) { + if (StrStr (StringPtr, L"&OFFSET=") != NULL) { + RequestBlockArray = GetBlockElement(StringPtr, &Progress); + } else { + RequestBlockArray = GetNameElement(StringPtr, &Progress); + } + + if (RequestBlockArray == NULL) { + Status = EFI_INVALID_PARAMETER; + goto Done; + } + } // // Initialize DefaultIdArray to store the map between DeaultId and DefaultName @@ -1866,18 +2978,28 @@ GetFullStringFromHiiFormPackages ( InitializeListHead (&VarStorageData->Entry); InitializeListHead (&VarStorageData->BlockEntry); + // + // 2. Parse FormPackage to get BlockArray and DefaultId Array for the request BlockArray. + // + // // Parse the opcode in form pacakge to get the default setting. // - Status = ParseIfrData (HiiFormPackage, (UINT32) PackageSize, *Request, RequestBlockArray, VarStorageData, DefaultIdArray); + Status = ParseIfrData (DataBaseRecord->Handle, + HiiFormPackage, + (UINT32) PackageSize, + *Request, + RequestBlockArray, + VarStorageData, + DefaultIdArray); if (EFI_ERROR (Status)) { goto Done; } - + // // No requested varstore in IFR data and directly return // - if (VarStorageData->Size == 0) { + if (VarStorageData->VarStoreId == 0) { Status = EFI_SUCCESS; goto Done; } @@ -1885,313 +3007,419 @@ GetFullStringFromHiiFormPackages ( // // 3. Construct Request Element (Block Name) for 2.1 and 2.2 case. // + Status = GenerateHdr (VarStorageData, DevicePath, &ConfigHdr); + if (EFI_ERROR (Status)) { + goto Done; + } + + if (RequestBlockArray == NULL) { + if (!GenerateConfigRequest(ConfigHdr, VarStorageData, &Status, Request)) { + goto Done; + } + } // - // Construct : "GUID=...&NAME=...&PATH=..." by VarStorageData Guid, Name and DriverHandle + // 4. Construct Default Value string in AltResp according to request element. + // Go through all VarStorageData Entry and get the DefaultId array for each one + // Then construct them all to : ConfigHdr AltConfigHdr ConfigBody AltConfigHdr ConfigBody // - GenerateSubStr (L"GUID=", sizeof (EFI_GUID), (VOID *) &VarStorageData->Guid, 1, &GuidStr); - GenerateSubStr (L"NAME=", StrLen (VarStorageData->Name) * sizeof (CHAR16), (VOID *) VarStorageData->Name, 2, &NameStr); - GenerateSubStr ( - L"PATH=", - GetDevicePathSize ((EFI_DEVICE_PATH_PROTOCOL *) DevicePath), - (VOID *) DevicePath, - 1, - &PathStr - ); - Length = StrLen (GuidStr); - Length = Length + StrLen (NameStr); - Length = Length + StrLen (PathStr) + 1; - ConfigHdr = AllocateZeroPool (Length * sizeof (CHAR16)); - if (ConfigHdr == NULL) { - Status = EFI_OUT_OF_RESOURCES; - goto Done; + Status = GenerateAltConfigResp (ConfigHdr, VarStorageData, DefaultIdArray, &DefaultAltCfgResp); + if (EFI_ERROR (Status)) { + goto Done; } - StrCpy (ConfigHdr, GuidStr); - StrCat (ConfigHdr, NameStr); - StrCat (ConfigHdr, PathStr); // - // Remove the last character L'&' + // 5. Merge string into the input AltCfgResp if the iput *AltCfgResp is not NULL. // - *(ConfigHdr + StrLen (ConfigHdr) - 1) = L'\0'; - - if (RequestBlockArray == NULL) { - // - // Append VarStorageData BlockEntry into *Request string - // Now support only one varstore in a form package. - // - - // - // Go through all VarStorageData Entry and get BlockEntry for each one for the multiple varstore in a single form package - // Then construct them all to return MultiRequest string : ConfigHdr BlockConfig - // - - // - // Compute the length of the entire request starting with and a - // Null-terminator - // - DataExist = FALSE; - Length = StrLen (ConfigHdr) + 1; + if (*AltCfgResp != NULL && DefaultAltCfgResp != NULL) { + Status = MergeDefaultString (AltCfgResp, DefaultAltCfgResp); + FreePool (DefaultAltCfgResp); + } else if (*AltCfgResp == NULL) { + *AltCfgResp = DefaultAltCfgResp; + } - for (Link = VarStorageData->BlockEntry.ForwardLink; Link != &VarStorageData->BlockEntry; Link = Link->ForwardLink) { - // - // Add length for each Offset/Width pair - // - // ::= &OFFSET=1234&WIDTH=1234 - // | 8 | 4 | 7 | 4 | - // - DataExist = TRUE; - Length = Length + (8 + 4 + 7 + 4); - } - +Done: + if (RequestBlockArray != NULL) { // - // No any request block data is found. The request string can't be constructed. + // Free Link Array RequestBlockArray // - if (!DataExist) { - Status = EFI_SUCCESS; - goto Done; + while (!IsListEmpty (&RequestBlockArray->Entry)) { + BlockData = BASE_CR (RequestBlockArray->Entry.ForwardLink, IFR_BLOCK_DATA, Entry); + RemoveEntryList (&BlockData->Entry); + if (BlockData->Name != NULL) { + FreePool (BlockData->Name); + } + FreePool (BlockData); } - // - // Allocate buffer for the entire - // - FullConfigRequest = AllocateZeroPool (Length * sizeof (CHAR16)); - if (FullConfigRequest == NULL) { - Status = EFI_OUT_OF_RESOURCES; - goto Done; - } - StringPtr = FullConfigRequest; - - // - // Start with - // - StrCpy (StringPtr, ConfigHdr); - StringPtr += StrLen (StringPtr); + FreePool (RequestBlockArray); + } + if (VarStorageData != NULL) { // - // Loop through all the Offset/Width pairs and append them to ConfigRequest + // Free link array VarStorageData // - for (Link = VarStorageData->BlockEntry.ForwardLink; Link != &VarStorageData->BlockEntry; Link = Link->ForwardLink) { - BlockData = BASE_CR (Link, IFR_BLOCK_DATA, Entry); + while (!IsListEmpty (&VarStorageData->BlockEntry)) { + BlockData = BASE_CR (VarStorageData->BlockEntry.ForwardLink, IFR_BLOCK_DATA, Entry); + RemoveEntryList (&BlockData->Entry); + if (BlockData->Name != NULL) { + FreePool (BlockData->Name); + } // - // Append &OFFSET=XXXX&WIDTH=YYYY\0 + // Free default value link array // - UnicodeSPrint ( - StringPtr, - (8 + 4 + 7 + 4 + 1) * sizeof (CHAR16), - L"&OFFSET=%04X&WIDTH=%04X", - BlockData->Offset, - BlockData->Width - ); - StringPtr += StrLen (StringPtr); + while (!IsListEmpty (&BlockData->DefaultValueEntry)) { + DefaultValueData = BASE_CR (BlockData->DefaultValueEntry.ForwardLink, IFR_DEFAULT_DATA, Entry); + RemoveEntryList (&DefaultValueData->Entry); + FreePool (DefaultValueData); + } + FreePool (BlockData); } + FreePool (VarStorageData); + } + + if (DefaultIdArray != NULL) { // - // Set to the got full request string. + // Free DefaultId Array // - HiiToLower (FullConfigRequest); - if (*Request != NULL) { - FreePool (*Request); + while (!IsListEmpty (&DefaultIdArray->Entry)) { + DefaultId = BASE_CR (DefaultIdArray->Entry.ForwardLink, IFR_DEFAULT_DATA, Entry); + RemoveEntryList (&DefaultId->Entry); + FreePool (DefaultId); } - *Request = FullConfigRequest; + FreePool (DefaultIdArray); } - + // - // 4. Construct Default Value string in AltResp according to request element. - // Go through all VarStorageData Entry and get the DefaultId array for each one - // Then construct them all to : ConfigHdr AltConfigHdr ConfigBody AltConfigHdr ConfigBody + // Free the allocated string // - DataExist = FALSE; + if (ConfigHdr != NULL) { + FreePool (ConfigHdr); + } + // - // Add length for + '\0' + // Free Pacakge data // - Length = StrLen (ConfigHdr) + 1; - - for (Link = DefaultIdArray->Entry.ForwardLink; Link != &DefaultIdArray->Entry; Link = Link->ForwardLink) { - DefaultId = BASE_CR (Link, IFR_DEFAULT_DATA, Entry); - // - // Add length for "&&ALTCFG=XXXX" - // |1| StrLen (ConfigHdr) | 8 | 4 | - // - Length += (1 + StrLen (ConfigHdr) + 8 + 4); - - for (LinkData = VarStorageData->BlockEntry.ForwardLink; LinkData != &VarStorageData->BlockEntry; LinkData = LinkData->ForwardLink) { - BlockData = BASE_CR (LinkData, IFR_BLOCK_DATA, Entry); - for (LinkDefault = BlockData->DefaultValueEntry.ForwardLink; LinkDefault != &BlockData->DefaultValueEntry; LinkDefault = LinkDefault->ForwardLink) { - DefaultValueData = BASE_CR (LinkDefault, IFR_DEFAULT_DATA, Entry); - if (DefaultValueData->DefaultId == DefaultId->DefaultId) { - // - // Add length for "&OFFSET=XXXX&WIDTH=YYYY&VALUE=zzzzzzzzzzzz" - // | 8 | 4 | 7 | 4 | 7 | Width * 2 | - // - Length += (8 + 4 + 7 + 4 + 7 + BlockData->Width * 2); - DataExist = TRUE; - } - } + if (HiiFormPackage != NULL) { + FreePool (HiiFormPackage); + } + + if (PointerProgress != NULL) { + if (*Request == NULL) { + *PointerProgress = NULL; + } else if (EFI_ERROR (Status)) { + *PointerProgress = *Request; + } else { + *PointerProgress = *Request + StrLen (*Request); } } + + return Status; +} + +/** + This function gets the full request resp string by + parsing IFR data in HII form packages. + + @param This A pointer to the EFI_HII_CONFIG_ROUTING_PROTOCOL + instance. + @param EfiVarStoreInfo The efi varstore info which is save in the EFI + varstore data structure. + @param Request Pointer to a null-terminated Unicode string in + format. + @param RequestResp Pointer to a null-terminated Unicode string in + format. + @param AccessProgress On return, points to a character in the Request + string. Points to the string's null terminator if + request was successful. Points to the most recent + & before the first failing name / value pair (or + the beginning of the string if the failure is in + the first name / value pair) if the request was + not successful. + + @retval EFI_SUCCESS The Results string is set to the full request string. + And AltCfgResp contains all default value string. + @retval EFI_OUT_OF_RESOURCES Not enough memory for the return string. + @retval EFI_INVALID_PARAMETER Request points to NULL. + +**/ +EFI_STATUS +GetConfigRespFromEfiVarStore ( + IN CONST EFI_HII_CONFIG_ROUTING_PROTOCOL *This, + IN EFI_IFR_VARSTORE_EFI *EfiVarStoreInfo, + IN EFI_STRING Request, + OUT EFI_STRING *RequestResp, + OUT EFI_STRING *AccessProgress + ) +{ + EFI_STATUS Status; + EFI_STRING VarStoreName; + UINT8 *VarStore; + UINTN BufferSize; + + Status = EFI_SUCCESS; + BufferSize = 0; + VarStore = NULL; + VarStoreName = NULL; + + VarStoreName = AllocateZeroPool (AsciiStrSize ((CHAR8 *)EfiVarStoreInfo->Name) * sizeof (CHAR16)); + if (VarStoreName == NULL) { + Status = EFI_OUT_OF_RESOURCES; + goto Done; + } + AsciiStrToUnicodeStr ((CHAR8 *) EfiVarStoreInfo->Name, VarStoreName); + - // - // No default value is found. The default string doesn't exist. - // - if (!DataExist) { - Status = EFI_SUCCESS; + Status = gRT->GetVariable (VarStoreName, &EfiVarStoreInfo->Guid, NULL, &BufferSize, NULL); + if (Status != EFI_BUFFER_TOO_SMALL) { goto Done; } - // - // Allocate buffer for the entire - // - DefaultAltCfgResp = AllocateZeroPool (Length * sizeof (CHAR16)); - if (DefaultAltCfgResp == NULL) { + VarStore = AllocateZeroPool (BufferSize); + ASSERT (VarStore != NULL); + Status = gRT->GetVariable (VarStoreName, &EfiVarStoreInfo->Guid, NULL, &BufferSize, VarStore); + if (EFI_ERROR (Status)) { + goto Done; + } + + Status = HiiBlockToConfig(This, Request, VarStore, BufferSize, RequestResp, AccessProgress); + if (EFI_ERROR (Status)) { + goto Done; + } + +Done: + if (VarStoreName != NULL) { + FreePool (VarStoreName); + } + + if (VarStore != NULL) { + FreePool (VarStore); + } + + return Status; +} + + +/** + This function route the full request resp string for efi varstore. + + @param This A pointer to the EFI_HII_CONFIG_ROUTING_PROTOCOL + instance. + @param EfiVarStoreInfo The efi varstore info which is save in the EFI + varstore data structure. + @param RequestResp Pointer to a null-terminated Unicode string in + format. + @param Result Pointer to a null-terminated Unicode string in + format. + + @retval EFI_SUCCESS The Results string is set to the full request string. + And AltCfgResp contains all default value string. + @retval EFI_OUT_OF_RESOURCES Not enough memory for the return string. + @retval EFI_INVALID_PARAMETER Request points to NULL. + +**/ +EFI_STATUS +RouteConfigRespForEfiVarStore ( + IN CONST EFI_HII_CONFIG_ROUTING_PROTOCOL *This, + IN EFI_IFR_VARSTORE_EFI *EfiVarStoreInfo, + IN EFI_STRING RequestResp, + OUT EFI_STRING *Result + ) +{ + EFI_STATUS Status; + EFI_STRING VarStoreName; + UINT8 *VarStore; + UINTN BufferSize; + UINTN BlockSize; + + Status = EFI_SUCCESS; + BufferSize = 0; + VarStore = NULL; + VarStoreName = NULL; + + VarStoreName = AllocateZeroPool (AsciiStrSize ((CHAR8 *)EfiVarStoreInfo->Name) * sizeof (CHAR16)); + if (VarStoreName == NULL) { Status = EFI_OUT_OF_RESOURCES; goto Done; } - StringPtr = DefaultAltCfgResp; + AsciiStrToUnicodeStr ((CHAR8 *) EfiVarStoreInfo->Name, VarStoreName); + + Status = gRT->GetVariable (VarStoreName, &EfiVarStoreInfo->Guid, NULL, &BufferSize, NULL); + if (Status != EFI_BUFFER_TOO_SMALL) { + goto Done; + } + + BlockSize = BufferSize; + VarStore = AllocateZeroPool (BufferSize); + ASSERT (VarStore != NULL); + Status = gRT->GetVariable (VarStoreName, &EfiVarStoreInfo->Guid, NULL, &BufferSize, VarStore); + if (EFI_ERROR (Status)) { + goto Done; + } + + Status = HiiConfigToBlock(This, RequestResp, VarStore, &BlockSize, Result); + if (EFI_ERROR (Status)) { + goto Done; + } + + Status = gRT->SetVariable (VarStoreName, &EfiVarStoreInfo->Guid, EfiVarStoreInfo->Attributes, BufferSize, VarStore); + if (EFI_ERROR (Status)) { + goto Done; + } + +Done: + if (VarStoreName != NULL) { + FreePool (VarStoreName); + } - // - // Start with - // - StrCpy (StringPtr, ConfigHdr); - StringPtr += StrLen (StringPtr); + if (VarStore != NULL) { + FreePool (VarStore); + } - for (Link = DefaultIdArray->Entry.ForwardLink; Link != &DefaultIdArray->Entry; Link = Link->ForwardLink) { - DefaultId = BASE_CR (Link, IFR_DEFAULT_DATA, Entry); - // - // Add of the form "&&ALTCFG=XXXX\0" - // |1| StrLen (ConfigHdr) | 8 | 4 | - // - UnicodeSPrint ( - StringPtr, - (1 + StrLen (ConfigHdr) + 8 + 4 + 1) * sizeof (CHAR16), - L"&%s&ALTCFG=%04X", - ConfigHdr, - DefaultId->DefaultName - ); - StringPtr += StrLen (StringPtr); - - for (LinkData = VarStorageData->BlockEntry.ForwardLink; LinkData != &VarStorageData->BlockEntry; LinkData = LinkData->ForwardLink) { - BlockData = BASE_CR (LinkData, IFR_BLOCK_DATA, Entry); - for (LinkDefault = BlockData->DefaultValueEntry.ForwardLink; LinkDefault != &BlockData->DefaultValueEntry; LinkDefault = LinkDefault->ForwardLink) { - DefaultValueData = BASE_CR (LinkDefault, IFR_DEFAULT_DATA, Entry); - if (DefaultValueData->DefaultId == DefaultId->DefaultId) { - // - // Add - // ::= 'OFFSET='&'WIDTH='&'VALUE'= - // - UnicodeSPrint ( - StringPtr, - (8 + 4 + 7 + 4 + 7 + 1) * sizeof (CHAR16), - L"&OFFSET=%04X&WIDTH=%04X&VALUE=", - BlockData->Offset, - BlockData->Width - ); - StringPtr += StrLen (StringPtr); + return Status; +} - // - // Convert Value to a hex string in "%x" format - // NOTE: This is in the opposite byte that GUID and PATH use - // - Width = BlockData->Width; - TmpBuffer = (UINT8 *) &(DefaultValueData->Value); - for (; Width > 0; Width--) { - StringPtr += UnicodeValueToString (StringPtr, PREFIX_ZERO | RADIX_HEX, TmpBuffer[Width - 1], 2); - } - } - } +/** + Validate the config request elements. + + @param ConfigElements A null-terminated Unicode string in format, + without configHdr field. + + @retval CHAR16 * THE first Name/value pair not correct. + @retval NULL Success parse the name/value pair +**/ +CHAR16 * +OffsetWidthValidate ( + CHAR16 *ConfigElements + ) +{ + CHAR16 *StringPtr; + CHAR16 *RetVal; + + StringPtr = ConfigElements; + + while (1) { + RetVal = StringPtr; + if (StrnCmp (StringPtr, L"&OFFSET=", StrLen (L"&OFFSET=")) != 0) { + return RetVal; } - } - HiiToLower (DefaultAltCfgResp); - // - // 5. Merge string into the input AltCfgResp if the iput *AltCfgResp is not NULL. - // - if (*AltCfgResp != NULL && DefaultAltCfgResp != NULL) { - Status = MergeDefaultString (AltCfgResp, DefaultAltCfgResp); - FreePool (DefaultAltCfgResp); - } else if (*AltCfgResp == NULL) { - *AltCfgResp = DefaultAltCfgResp; - } + while (*StringPtr != L'\0' && StrnCmp (StringPtr, L"&WIDTH=", StrLen (L"&WIDTH=")) != 0) { + StringPtr++; + } + if (*StringPtr == L'\0') { + return RetVal; + } -Done: - if (RequestBlockArray != NULL) { - // - // Free Link Array RequestBlockArray - // - while (!IsListEmpty (&RequestBlockArray->Entry)) { - BlockData = BASE_CR (RequestBlockArray->Entry.ForwardLink, IFR_BLOCK_DATA, Entry); - RemoveEntryList (&BlockData->Entry); - FreePool (BlockData); + StringPtr += StrLen (L"&WIDTH="); + while (*StringPtr != L'\0' && StrnCmp (StringPtr, L"&OFFSET=", StrLen (L"&OFFSET=")) != 0) { + StringPtr ++; } - FreePool (RequestBlockArray); - } - - if (VarStorageData != NULL) { - // - // Free link array VarStorageData - // - while (!IsListEmpty (&VarStorageData->BlockEntry)) { - BlockData = BASE_CR (VarStorageData->BlockEntry.ForwardLink, IFR_BLOCK_DATA, Entry); - RemoveEntryList (&BlockData->Entry); - // - // Free default value link array - // - while (!IsListEmpty (&BlockData->DefaultValueEntry)) { - DefaultValueData = BASE_CR (BlockData->DefaultValueEntry.ForwardLink, IFR_DEFAULT_DATA, Entry); - RemoveEntryList (&DefaultValueData->Entry); - FreePool (DefaultValueData); - } - FreePool (BlockData); + if (*StringPtr == L'\0') { + return NULL; } - FreePool (VarStorageData); } +} - if (DefaultIdArray != NULL) { - // - // Free DefaultId Array - // - while (!IsListEmpty (&DefaultIdArray->Entry)) { - DefaultId = BASE_CR (DefaultIdArray->Entry.ForwardLink, IFR_DEFAULT_DATA, Entry); - RemoveEntryList (&DefaultId->Entry); - FreePool (DefaultId); +/** + Validate the config request elements. + + @param ConfigElements A null-terminated Unicode string in format, + without configHdr field. + + @retval CHAR16 * THE first Name/value pair not correct. + @retval NULL Success parse the name/value pair + +**/ +CHAR16 * +NameValueValidate ( + CHAR16 *ConfigElements + ) +{ + CHAR16 *StringPtr; + CHAR16 *RetVal; + + StringPtr = ConfigElements; + + while (1) { + RetVal = StringPtr; + if (*StringPtr != L'&') { + return RetVal; + } + StringPtr += 1; + + StringPtr = StrStr (StringPtr, L"&"); + + if (StringPtr == NULL) { + return NULL; } - FreePool (DefaultIdArray); } - +} + +/** + Validate the config request string. + + @param ConfigRequest A null-terminated Unicode string in format. + + @retval CHAR16 * THE first element not correct. + @retval NULL Success parse the name/value pair + +**/ +CHAR16 * +ConfigRequestValidate ( + CHAR16 *ConfigRequest + ) +{ + BOOLEAN HasNameField; + CHAR16 *StringPtr; + + HasNameField = TRUE; + StringPtr = ConfigRequest; + // - // Free the allocated string + // Check // - if (GuidStr != NULL) { - FreePool (GuidStr); + if (StrnCmp (StringPtr, L"GUID=", StrLen (L"GUID=")) != 0) { + return ConfigRequest; } - if (NameStr != NULL) { - FreePool (NameStr); + StringPtr += StrLen (L"GUID="); + while (*StringPtr != L'\0' && StrnCmp (StringPtr, L"&NAME=", StrLen (L"&NAME=")) != 0) { + StringPtr++; } - if (PathStr != NULL) { - FreePool (PathStr); + if (*StringPtr == L'\0') { + return ConfigRequest; } - if (ConfigHdr != NULL) { - FreePool (ConfigHdr); + StringPtr += StrLen (L"&NAME="); + if (*StringPtr == L'&') { + HasNameField = FALSE; } - - // - // Free Pacakge data - // - if (HiiFormPackage != NULL) { - FreePool (HiiFormPackage); + while (*StringPtr != L'\0' && StrnCmp (StringPtr, L"&PATH=", StrLen (L"&PATH=")) != 0) { + StringPtr++; + } + if (*StringPtr == L'\0') { + return ConfigRequest; + } + StringPtr += StrLen (L"&PATH="); + while (*StringPtr != L'\0' && *StringPtr != L'&') { + StringPtr ++; } - if (PointerProgress != NULL) { - if (*Request == NULL) { - *PointerProgress = NULL; - } else if (EFI_ERROR (Status)) { - *PointerProgress = Progress; - } else { - *PointerProgress = *Request + StrLen (*Request); - } + if (*StringPtr == L'\0') { + return NULL; } - return Status; + if (HasNameField) { + // + // Should be Buffer varstore, config request should be "OFFSET/Width" pairs. + // + return OffsetWidthValidate(StringPtr); + } else { + // + // Should be Name/Value varstore, config request should be "&name1&name2..." pairs. + // + return NameValueValidate(StringPtr); + } } /** @@ -2261,6 +3489,9 @@ HiiConfigRoutingExtractConfig ( EFI_STRING DefaultResults; BOOLEAN FirstElement; BOOLEAN IfrDataParsedFlag; + BOOLEAN IsEfiVarStore; + EFI_IFR_VARSTORE_EFI *EfiVarStoreInfo; + EFI_STRING ErrorPtr; if (This == NULL || Progress == NULL || Results == NULL) { return EFI_INVALID_PARAMETER; @@ -2278,8 +3509,11 @@ HiiConfigRoutingExtractConfig ( ConfigRequest = NULL; Status = EFI_SUCCESS; AccessResults = NULL; + AccessProgress = NULL; DevicePath = NULL; IfrDataParsedFlag = FALSE; + IsEfiVarStore = FALSE; + EfiVarStoreInfo = NULL; // // The first element of should be @@ -2375,12 +3609,22 @@ HiiConfigRoutingExtractConfig ( goto Done; } } - + + // + // Validate ConfigRequest String. // - // Check whether ConfigRequest contains request string OFFSET/WIDTH + ErrorPtr = ConfigRequestValidate(ConfigRequest); + if (ErrorPtr != NULL) { + *Progress = StrStr (StringPtr, ErrorPtr); + Status = EFI_INVALID_PARAMETER; + goto Done; + } + + // + // Check whether ConfigRequest contains request string. // IfrDataParsedFlag = FALSE; - if ((HiiHandle != NULL) && (StrStr (ConfigRequest, L"&OFFSET=") == NULL)) { + if ((HiiHandle != NULL) && !GetElementsFromRequest(ConfigRequest)) { // // Get the full request string from IFR when HiiPackage is registered to HiiHandle // @@ -2391,34 +3635,51 @@ HiiConfigRoutingExtractConfig ( // AccessProgress indicates the parsing progress on . // Map it to the progress on then return it. // + ASSERT (AccessProgress != NULL); *Progress = StrStr (StringPtr, AccessProgress); goto Done; } // // Not any request block is found. // - if (StrStr (ConfigRequest, L"&OFFSET=") == NULL) { + if (!GetElementsFromRequest(ConfigRequest)) { AccessResults = AllocateCopyPool (StrSize (ConfigRequest), ConfigRequest); goto NextConfigString; } } // - // Call corresponding ConfigAccess protocol to extract settings + // Check whether this ConfigRequest is search from Efi varstore type storage. // - Status = gBS->HandleProtocol ( - DriverHandle, - &gEfiHiiConfigAccessProtocolGuid, - (VOID **) &ConfigAccess - ); - ASSERT_EFI_ERROR (Status); + Status = GetVarStoreType(Database, ConfigRequest, &IsEfiVarStore, &EfiVarStoreInfo); + if (EFI_ERROR (Status)) { + goto Done; + } + + if (IsEfiVarStore) { + // + // Call the GetVariable function to extract settings. + // + Status = GetConfigRespFromEfiVarStore(This, EfiVarStoreInfo, ConfigRequest, &AccessResults, &AccessProgress); + FreePool (EfiVarStoreInfo); + } else { + // + // Call corresponding ConfigAccess protocol to extract settings + // + Status = gBS->HandleProtocol ( + DriverHandle, + &gEfiHiiConfigAccessProtocolGuid, + (VOID **) &ConfigAccess + ); + ASSERT_EFI_ERROR (Status); - Status = ConfigAccess->ExtractConfig ( - ConfigAccess, - ConfigRequest, - &AccessProgress, - &AccessResults - ); + Status = ConfigAccess->ExtractConfig ( + ConfigAccess, + ConfigRequest, + &AccessProgress, + &AccessResults + ); + } if (EFI_ERROR (Status)) { // // AccessProgress indicates the parsing progress on . @@ -2452,7 +3713,7 @@ HiiConfigRoutingExtractConfig ( DefaultResults = NULL; } -NextConfigString: +NextConfigString: if (!FirstElement) { Status = AppendToMultiString (Results, L"&"); ASSERT_EFI_ERROR (Status); @@ -2663,7 +3924,7 @@ HiiConfigRoutingExportConfig ( if (StringPtr != NULL) { *StringPtr = 0; } - if (StrStr (AccessResults, L"&OFFSET=") != NULL) { + if (GetElementsFromRequest (AccessResults)) { Status = GetFullStringFromHiiFormPackages (Database, DevicePath, &AccessResults, &DefaultResults, NULL); ASSERT_EFI_ERROR (Status); } @@ -2752,6 +4013,8 @@ HiiConfigRoutingRouteConfig ( EFI_HANDLE DriverHandle; EFI_HII_CONFIG_ACCESS_PROTOCOL *ConfigAccess; EFI_STRING AccessProgress; + EFI_IFR_VARSTORE_EFI *EfiVarStoreInfo; + BOOLEAN IsEfiVarstore; if (This == NULL || Progress == NULL) { return EFI_INVALID_PARAMETER; @@ -2765,6 +4028,10 @@ HiiConfigRoutingRouteConfig ( Private = CONFIG_ROUTING_DATABASE_PRIVATE_DATA_FROM_THIS (This); StringPtr = Configuration; *Progress = StringPtr; + Database = NULL; + AccessProgress = NULL; + EfiVarStoreInfo= NULL; + IsEfiVarstore = FALSE; // // The first element of should be @@ -2855,21 +4122,36 @@ HiiConfigRoutingRouteConfig ( FreePool (DevicePath); // - // Call corresponding ConfigAccess protocol to route settings + // Check whether this ConfigRequest is search from Efi varstore type storage. // - Status = gBS->HandleProtocol ( - DriverHandle, - &gEfiHiiConfigAccessProtocolGuid, - (VOID **) &ConfigAccess - ); - ASSERT_EFI_ERROR (Status); + Status = GetVarStoreType(Database, ConfigResp, &IsEfiVarstore, &EfiVarStoreInfo); + if (EFI_ERROR (Status)) { + return Status; + } - Status = ConfigAccess->RouteConfig ( - ConfigAccess, - ConfigResp, - &AccessProgress - ); + if (IsEfiVarstore) { + // + // Call the SetVariable function to route settings. + // + Status = RouteConfigRespForEfiVarStore(This, EfiVarStoreInfo, ConfigResp, &AccessProgress); + FreePool (EfiVarStoreInfo); + } else { + // + // Call corresponding ConfigAccess protocol to route settings + // + Status = gBS->HandleProtocol ( + DriverHandle, + &gEfiHiiConfigAccessProtocolGuid, + (VOID **) &ConfigAccess + ); + ASSERT_EFI_ERROR (Status); + Status = ConfigAccess->RouteConfig ( + ConfigAccess, + ConfigResp, + &AccessProgress + ); + } if (EFI_ERROR (Status)) { // // AccessProgress indicates the parsing progress on . @@ -2961,6 +4243,7 @@ HiiBlockToConfig ( UINTN Index; UINT8 *TemBuffer; CHAR16 *TemString; + CHAR16 TemChar; if (This == NULL || Progress == NULL || Config == NULL) { return EFI_INVALID_PARAMETER; @@ -3010,8 +4293,12 @@ HiiBlockToConfig ( StringPtr++; } if (*StringPtr == 0) { - *Progress = StringPtr - 1; - Status = EFI_INVALID_PARAMETER; + *Progress = StringPtr; + Status = EFI_SUCCESS; + + AppendToMultiString(Config, ConfigRequest); + HiiToLower (*Config); + goto Exit; } // @@ -3022,8 +4309,10 @@ HiiBlockToConfig ( // // Copy and an additional '&' to // - Length = StringPtr - ConfigRequest; - CopyMem (*Config, ConfigRequest, Length * sizeof (CHAR16)); + TemChar = *StringPtr; + *StringPtr = '\0'; + AppendToMultiString(Config, ConfigRequest); + *StringPtr = TemChar; // // Parse each if exists @@ -3041,7 +4330,7 @@ HiiBlockToConfig ( // Get Offset // Status = GetValueOfNumber (StringPtr, &TmpBuffer, &Length); - if (Status == EFI_OUT_OF_RESOURCES) { + if (EFI_ERROR (Status)) { *Progress = ConfigRequest; goto Exit; } @@ -3065,7 +4354,7 @@ HiiBlockToConfig ( // Get Width // Status = GetValueOfNumber (StringPtr, &TmpBuffer, &Length); - if (Status == EFI_OUT_OF_RESOURCES) { + if (EFI_ERROR (Status)) { *Progress = ConfigRequest; goto Exit; } @@ -3191,7 +4480,7 @@ Exit: @param This A pointer to the EFI_HII_CONFIG_ROUTING_PROTOCOL instance. @param ConfigResp A null-terminated Unicode string in - format. It can be ConfigAltResp format string. + format. @param Block A possibly null array of bytes representing the current block. Only bytes referenced in the ConfigResp string in the block are modified. If @@ -3223,6 +4512,10 @@ Exit: value pair. Block is left updated and Progress points at the '&' preceding the first non-. + @retval EFI_DEVICE_ERROR Block not large enough. Progress undefined. + @retval EFI_NOT_FOUND Target for the specified routing data was not found. + Progress points to the "G" in "GUID" of the errant + routing data. **/ EFI_STATUS @@ -3244,13 +4537,14 @@ HiiConfigToBlock ( UINTN Width; UINT8 *Value; UINTN BufferSize; + UINTN MaxBlockSize; if (This == NULL || BlockSize == NULL || Progress == NULL) { return EFI_INVALID_PARAMETER; } - if (ConfigResp == NULL || Block == NULL) { - *Progress = ConfigResp; + *Progress = ConfigResp; + if (ConfigResp == NULL) { return EFI_INVALID_PARAMETER; } @@ -3260,6 +4554,7 @@ HiiConfigToBlock ( StringPtr = ConfigResp; BufferSize = *BlockSize; Value = NULL; + MaxBlockSize = 0; // // Jump @@ -3286,18 +4581,14 @@ HiiConfigToBlock ( Status = EFI_INVALID_PARAMETER; goto Exit; } - // - // Skip '&' - // - StringPtr++; // // Parse each if exists - // Only format is supported by this help function. + // Only '&' format is supported by this help function. // ::= 'OFFSET='&'WIDTH='&'VALUE=' // - while (*StringPtr != 0 && StrnCmp (StringPtr, L"OFFSET=", StrLen (L"OFFSET=")) == 0) { - StringPtr += StrLen (L"OFFSET="); + while (*StringPtr != 0 && StrnCmp (StringPtr, L"&OFFSET=", StrLen (L"&OFFSET=")) == 0) { + StringPtr += StrLen (L"&OFFSET="); // // Get Offset // @@ -3316,7 +4607,7 @@ HiiConfigToBlock ( StringPtr += Length; if (StrnCmp (StringPtr, L"&WIDTH=", StrLen (L"&WIDTH=")) != 0) { - *Progress = StringPtr - Length - StrLen (L"OFFSET=") - 1; + *Progress = StringPtr - Length - StrLen (L"&OFFSET="); Status = EFI_INVALID_PARAMETER; goto Exit; } @@ -3326,7 +4617,7 @@ HiiConfigToBlock ( // Get Width // Status = GetValueOfNumber (StringPtr, &TmpBuffer, &Length); - if (Status == EFI_OUT_OF_RESOURCES) { + if (EFI_ERROR (Status)) { *Progress = ConfigResp; goto Exit; } @@ -3357,7 +4648,7 @@ HiiConfigToBlock ( StringPtr += Length; if (*StringPtr != 0 && *StringPtr != L'&') { - *Progress = StringPtr - Length - 7; + *Progress = StringPtr - Length - StrLen (L"&VALUE="); Status = EFI_INVALID_PARAMETER; goto Exit; } @@ -3365,37 +4656,48 @@ HiiConfigToBlock ( // // Update the Block with configuration info // - - if (Offset + Width > BufferSize) { - return EFI_DEVICE_ERROR; + if ((Block != NULL) && (Offset + Width <= BufferSize)) { + CopyMem (Block + Offset, Value, Width); + } + if (Offset + Width > MaxBlockSize) { + MaxBlockSize = Offset + Width; } - - CopyMem (Block + Offset, Value, Width); - *BlockSize = Offset + Width - 1; FreePool (Value); Value = NULL; // - // If '\0', parsing is finished. Otherwise skip '&' to continue + // If '\0', parsing is finished. // if (*StringPtr == 0) { break; } - - StringPtr++; } // - // The input string is ConfigAltResp format. + // The input string is not ConfigResp format, return error. // - if ((*StringPtr != 0) && (StrnCmp (StringPtr, L"&GUID=", StrLen (L"&GUID=")) != 0)) { - *Progress = StringPtr - 1; + if (*StringPtr != 0) { + *Progress = StringPtr; Status = EFI_INVALID_PARAMETER; goto Exit; } *Progress = StringPtr + StrLen (StringPtr); + *BlockSize = MaxBlockSize - 1; + + if (MaxBlockSize > BufferSize) { + *BlockSize = MaxBlockSize; + if (Block != NULL) { + return EFI_DEVICE_ERROR; + } + } + + if (Block == NULL) { + *Progress = ConfigResp; + return EFI_INVALID_PARAMETER; + } + return EFI_SUCCESS; Exit: @@ -3414,7 +4716,7 @@ Exit: @param This A pointer to the EFI_HII_CONFIG_ROUTING_PROTOCOL instance. @param Configuration A null-terminated Unicode string in - format. It is format. + format. @param Guid A pointer to the GUID value to search for in the routing portion of the ConfigResp string when retrieving the requested data. If Guid is NULL,