From 137749b7ed48dad505eafaf187f24aa8cfd09300 Mon Sep 17 00:00:00 2001 From: klu2 Date: Thu, 15 Mar 2007 07:08:48 +0000 Subject: [PATCH] Fix the issue that HiiGetForms does not return correct BufferLength git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2474 6f19259b-4bc3-4df7-8a09-765794883524 --- .../UserInterface/HiiDataBase/Dxe/Forms.c | 52 ++++++++++--------- 1 file changed, 28 insertions(+), 24 deletions(-) diff --git a/EdkModulePkg/Universal/UserInterface/HiiDataBase/Dxe/Forms.c b/EdkModulePkg/Universal/UserInterface/HiiDataBase/Dxe/Forms.c index 0c8629c06f..b7b02a85f8 100644 --- a/EdkModulePkg/Universal/UserInterface/HiiDataBase/Dxe/Forms.c +++ b/EdkModulePkg/Universal/UserInterface/HiiDataBase/Dxe/Forms.c @@ -1,6 +1,7 @@ -/*++ - -Copyright (c) 2006, Intel Corporation +/**@file + This file contains the form processing code to the HII database. + +Copyright (c) 2006 - 2007 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 @@ -9,15 +10,7 @@ http://opensource.org/licenses/bsd-license.php THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. -Module Name: - - Forms.c - -Abstract: - - This file contains the form processing code to the HII database. - ---*/ +**/ #include "HiiDatabase.h" @@ -738,6 +731,7 @@ Returns: EFI_IFR_FORM *Form; EFI_IFR_OP_HEADER *Location; UINT16 *BufferLength = (UINT16 *) BufferLengthTemp; + UINTN FormLength; if (This == NULL) { return EFI_INVALID_PARAMETER; @@ -749,6 +743,8 @@ Returns: PackageInstance = NULL; + FormLength = 0; + // // Check numeric value against the head of the database // @@ -809,19 +805,27 @@ Returns: // If we found a Form Op-code and it is of the correct Id, copy it and return // if (Form->FormId == FormId) { - if (Location->Length > *BufferLength || Buffer == NULL) { - *BufferLength = Location->Length; - return EFI_BUFFER_TOO_SMALL; - } else { - for (; Location->OpCode != EFI_IFR_END_FORM_OP;) { - CopyMem (Buffer, Location, Location->Length); - Buffer = Buffer + Location->Length; - Location = (EFI_IFR_OP_HEADER *) ((CHAR8 *) (Location) + Location->Length); - } + // + // Calculate the total size of form + // + for (FormLength = 0; Location->OpCode != EFI_IFR_END_FORM_OP; ) { + FormLength += Location->Length; + Location = (EFI_IFR_OP_HEADER *) ((CHAR8 *) (Location) + Location->Length); + } + FormLength += Location->Length; + Location = (EFI_IFR_OP_HEADER *) ((CHAR8 *) (Location) + Location->Length); - CopyMem (Buffer, Location, Location->Length); - return EFI_SUCCESS; + if ((Buffer == NULL) || (FormLength > *BufferLength)) { + *BufferLengthTemp = FormLength; + return EFI_BUFFER_TOO_SMALL; } + + // + // Rewind to start offset of the found Form + // + Location = (EFI_IFR_OP_HEADER *) ((CHAR8 *)Location - FormLength); + CopyMem (Buffer, Location, FormLength); + return EFI_SUCCESS; } default: @@ -834,7 +838,7 @@ Returns: } } - return EFI_SUCCESS; + return EFI_NOT_FOUND; } // -- 2.39.2