mirror of https://github.com/acidanthera/audk.git
Add error handling code to prevent variable store corruption in release build.
Signed-off-by: Fu Siyuan <siyuan.fu@intel.com> Reviewed-by: Ye Ting <ting.ye@intel.com> Reviewed-by: Dong Guo <guo.dong@intel.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@14139 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
fb5278ef78
commit
ca5a7d87e3
|
@ -445,6 +445,10 @@ AddPubKeyInStore (
|
|||
FALSE
|
||||
);
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
if (EFI_ERROR (Status)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
//
|
||||
// Check whether the public key entry does exist.
|
||||
//
|
||||
|
@ -492,6 +496,9 @@ AddPubKeyInStore (
|
|||
FALSE
|
||||
);
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
if (EFI_ERROR (Status)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
DataSize = DataSizeOfVariable (Variable.CurrPtr);
|
||||
Data = GetVariableDataPtr (Variable.CurrPtr);
|
||||
|
|
|
@ -651,27 +651,28 @@ PubKeyStoreFilter (
|
|||
If ReclaimPubKeyStore is TRUE, reclaim invalid key in public key database and update the PubKeyIndex
|
||||
for all the count-based authenticate variable in NV storage.
|
||||
|
||||
@param[in] VariableBase Base address of variable store.
|
||||
@param[out] LastVariableOffset Offset of last variable.
|
||||
@param[in] IsVolatile The variable store is volatile or not;
|
||||
if it is non-volatile, need FTW.
|
||||
@param[in, out] UpdatingPtrTrack Pointer to updating variable pointer track structure.
|
||||
@param[in] ReclaimPubKeyStore Reclaim for public key database or not.
|
||||
@param[in] ReclaimAnyway If TRUE, do reclaim anyway.
|
||||
@param[in] VariableBase Base address of variable store.
|
||||
@param[out] LastVariableOffset Offset of last variable.
|
||||
@param[in] IsVolatile The variable store is volatile or not;
|
||||
if it is non-volatile, need FTW.
|
||||
@param[in, out] UpdatingPtrTrack Pointer to updating variable pointer track structure.
|
||||
@param[in] ReclaimPubKeyStore Reclaim for public key database or not.
|
||||
@param[in] ReclaimAnyway If TRUE, do reclaim anyway.
|
||||
|
||||
@return EFI_OUT_OF_RESOURCES No enough memory resources.
|
||||
@return EFI_SUCCESS Reclaim operation has finished successfully.
|
||||
@return EFI_OUT_OF_RESOURCES No enough memory resources.
|
||||
@return EFI_DEVICE_ERROR The public key database doesn't exist.
|
||||
@return Others Unexpect error happened during reclaim operation.
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
Reclaim (
|
||||
IN EFI_PHYSICAL_ADDRESS VariableBase,
|
||||
OUT UINTN *LastVariableOffset,
|
||||
IN BOOLEAN IsVolatile,
|
||||
IN OUT VARIABLE_POINTER_TRACK *UpdatingPtrTrack,
|
||||
IN BOOLEAN ReclaimPubKeyStore,
|
||||
IN BOOLEAN ReclaimAnyway
|
||||
IN EFI_PHYSICAL_ADDRESS VariableBase,
|
||||
OUT UINTN *LastVariableOffset,
|
||||
IN BOOLEAN IsVolatile,
|
||||
IN OUT VARIABLE_POINTER_TRACK *UpdatingPtrTrack,
|
||||
IN BOOLEAN ReclaimPubKeyStore,
|
||||
IN BOOLEAN ReclaimAnyway
|
||||
)
|
||||
{
|
||||
VARIABLE_HEADER *Variable;
|
||||
|
@ -809,6 +810,12 @@ Reclaim (
|
|||
// Reinstall the new public key database.
|
||||
//
|
||||
ASSERT (PubKeyHeader != NULL);
|
||||
if (PubKeyHeader == NULL) {
|
||||
FreePool (ValidBuffer);
|
||||
FreePool (NewPubKeyIndex);
|
||||
FreePool (NewPubKeyStore);
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
CopyMem (CurrPtr, (UINT8*) PubKeyHeader, sizeof (VARIABLE_HEADER));
|
||||
Variable = (VARIABLE_HEADER*) CurrPtr;
|
||||
Variable->DataSize = NewPubKeySize;
|
||||
|
|
|
@ -381,27 +381,28 @@ VariableCommonInitialize (
|
|||
If ReclaimPubKeyStore is TRUE, reclaim invalid key in public key database and update the PubKeyIndex
|
||||
for all the count-based authenticate variable in NV storage.
|
||||
|
||||
@param[in] VariableBase Base address of variable store.
|
||||
@param[out] LastVariableOffset Offset of last variable.
|
||||
@param[in] IsVolatile The variable store is volatile or not;
|
||||
if it is non-volatile, need FTW.
|
||||
@param[in, out] UpdatingPtrTrack Pointer to updating variable pointer track structure.
|
||||
@param[in] ReclaimPubKeyStore Reclaim for public key database or not.
|
||||
@param[in] ReclaimAnyway If TRUE, do reclaim anyway.
|
||||
@param[in] VariableBase Base address of variable store.
|
||||
@param[out] LastVariableOffset Offset of last variable.
|
||||
@param[in] IsVolatile The variable store is volatile or not;
|
||||
if it is non-volatile, need FTW.
|
||||
@param[in, out] UpdatingPtrTrack Pointer to updating variable pointer track structure.
|
||||
@param[in] ReclaimPubKeyStore Reclaim for public key database or not.
|
||||
@param[in] ReclaimAnyway If TRUE, do reclaim anyway.
|
||||
|
||||
@return EFI_OUT_OF_RESOURCES No enough memory resources.
|
||||
@return EFI_SUCCESS Reclaim operation has finished successfully.
|
||||
@return EFI_OUT_OF_RESOURCES No enough memory resources.
|
||||
@return EFI_DEVICE_ERROR The public key database doesn't exist.
|
||||
@return Others Unexpect error happened during reclaim operation.
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
Reclaim (
|
||||
IN EFI_PHYSICAL_ADDRESS VariableBase,
|
||||
OUT UINTN *LastVariableOffset,
|
||||
IN BOOLEAN IsVolatile,
|
||||
IN OUT VARIABLE_POINTER_TRACK *UpdatingPtrTrack,
|
||||
IN BOOLEAN ReclaimPubKeyStore,
|
||||
IN BOOLEAN ReclaimAnyway
|
||||
IN EFI_PHYSICAL_ADDRESS VariableBase,
|
||||
OUT UINTN *LastVariableOffset,
|
||||
IN BOOLEAN IsVolatile,
|
||||
IN OUT VARIABLE_POINTER_TRACK *UpdatingPtrTrack,
|
||||
IN BOOLEAN ReclaimPubKeyStore,
|
||||
IN BOOLEAN ReclaimAnyway
|
||||
);
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue