TianoCore EDK2 master
Loading...
Searching...
No Matches
SmmLockBoxPeiLib.c File Reference

Go to the source code of this file.

Functions

LIST_ENTRYInternalInitLinkDxe (IN LIST_ENTRY *LinkList)
 
LIST_ENTRYInternalNextLinkDxe (IN LIST_ENTRY *Link)
 
SMM_LOCK_BOX_DATAInternalFindLockBoxByGuidFromSmram (IN LIST_ENTRY *LockBoxQueue, IN EFI_GUID *Guid)
 
VOID * InternalSmstGetVendorTableByGuid (IN UINT64 Signature, IN EFI_SMM_SYSTEM_TABLE2 *Smst, IN EFI_GUID *VendorGuid)
 
SMM_LOCK_BOX_CONTEXTInternalGetSmmLockBoxContext (VOID)
 
EFI_STATUS InternalRestoreLockBoxFromSmram (IN GUID *Guid, IN VOID *Buffer OPTIONAL, IN OUT UINTN *Length OPTIONAL)
 
EFI_STATUS InternalRestoreAllLockBoxInPlaceFromSmram (VOID)
 
RETURN_STATUS EFIAPI SaveLockBox (IN GUID *Guid, IN VOID *Buffer, IN UINTN Length)
 
RETURN_STATUS EFIAPI SetLockBoxAttributes (IN GUID *Guid, IN UINT64 Attributes)
 
RETURN_STATUS EFIAPI UpdateLockBox (IN GUID *Guid, IN UINTN Offset, IN VOID *Buffer, IN UINTN Length)
 
RETURN_STATUS EFIAPI RestoreLockBox (IN GUID *Guid, IN VOID *Buffer OPTIONAL, IN OUT UINTN *Length OPTIONAL)
 
RETURN_STATUS EFIAPI RestoreAllLockBoxInPlace (VOID)
 

Detailed Description

Copyright (c) 2010 - 2019, Intel Corporation. All rights reserved.

SPDX-License-Identifier: BSD-2-Clause-Patent

Definition in file SmmLockBoxPeiLib.c.

Function Documentation

◆ InternalFindLockBoxByGuidFromSmram()

SMM_LOCK_BOX_DATA * InternalFindLockBoxByGuidFromSmram ( IN LIST_ENTRY LockBoxQueue,
IN EFI_GUID Guid 
)

This function find LockBox by GUID from SMRAM.

Parameters
LockBoxQueueThe LockBox queue in SMRAM
GuidThe guid to indentify the LockBox
Returns
LockBoxData

Definition at line 124 of file SmmLockBoxPeiLib.c.

◆ InternalGetSmmLockBoxContext()

SMM_LOCK_BOX_CONTEXT * InternalGetSmmLockBoxContext ( VOID  )

Get SMM LockBox context.

Returns
SMM LockBox context.

Definition at line 204 of file SmmLockBoxPeiLib.c.

◆ InternalInitLinkDxe()

LIST_ENTRY * InternalInitLinkDxe ( IN LIST_ENTRY LinkList)

This function return first node of LinkList queue.

Parameters
LockBoxQueueLinkList queue
Returns
first node of LinkList queue

Definition at line 79 of file SmmLockBoxPeiLib.c.

◆ InternalNextLinkDxe()

LIST_ENTRY * InternalNextLinkDxe ( IN LIST_ENTRY Link)

This function return next node of LinkList.

Parameters
LinkLinkList node
Returns
next node of LinkList

Definition at line 101 of file SmmLockBoxPeiLib.c.

◆ InternalRestoreAllLockBoxInPlaceFromSmram()

EFI_STATUS InternalRestoreAllLockBoxInPlaceFromSmram ( VOID  )

This function will restore confidential information from all lockbox which have RestoreInPlace attribute.

Return values
RETURN_SUCCESSthe information is restored successfully.

Definition at line 348 of file SmmLockBoxPeiLib.c.

◆ InternalRestoreLockBoxFromSmram()

EFI_STATUS InternalRestoreLockBoxFromSmram ( IN GUID Guid,
IN VOID *Buffer  OPTIONAL,
IN OUT UINTN *Length  OPTIONAL 
)

This function will restore confidential information from lockbox in SMRAM directly.

Parameters
Guidthe guid to identify the confidential information
Bufferthe address of the restored confidential information NULL means restored to original address, Length MUST be NULL at same time.
Lengththe length of the restored confidential information
Return values
RETURN_SUCCESSthe information is restored successfully.
RETURN_WRITE_PROTECTEDBuffer and Length are NULL, but the LockBox has no LOCK_BOX_ATTRIBUTE_RESTORE_IN_PLACE attribute.
RETURN_BUFFER_TOO_SMALLthe Length is too small to hold the confidential information.
RETURN_NOT_FOUNDthe requested GUID not found.

Definition at line 243 of file SmmLockBoxPeiLib.c.

◆ InternalSmstGetVendorTableByGuid()

VOID * InternalSmstGetVendorTableByGuid ( IN UINT64  Signature,
IN EFI_SMM_SYSTEM_TABLE2 Smst,
IN EFI_GUID VendorGuid 
)

Get VendorTable by VendorGuid in Smst.

Parameters
SignatureSignature of SMM_S3_RESUME_STATE
SmstSMM system table
VendorGuidvendor guid
Returns
vendor table.

Definition at line 159 of file SmmLockBoxPeiLib.c.

◆ RestoreAllLockBoxInPlace()

RETURN_STATUS EFIAPI RestoreAllLockBoxInPlace ( VOID  )

This function will restore confidential information from all lockbox which have RestoreInPlace attribute.

Return values
RETURN_SUCCESSthe information is restored successfully.
RETURN_NOT_STARTEDit is too early to invoke this interface
RETURN_UNSUPPORTEDthe service is not supported by implementaion.

Definition at line 661 of file SmmLockBoxPeiLib.c.

◆ RestoreLockBox()

RETURN_STATUS EFIAPI RestoreLockBox ( IN GUID Guid,
IN VOID *Buffer  OPTIONAL,
IN OUT UINTN *Length  OPTIONAL 
)

This function will restore confidential information from lockbox.

Parameters
Guidthe guid to identify the confidential information
Bufferthe address of the restored confidential information NULL means restored to original address, Length MUST be NULL at same time.
Lengththe length of the restored confidential information
Return values
RETURN_SUCCESSthe information is restored successfully.
RETURN_INVALID_PARAMETERthe Guid is NULL, or one of Buffer and Length is NULL.
RETURN_WRITE_PROTECTEDBuffer and Length are NULL, but the LockBox has no LOCK_BOX_ATTRIBUTE_RESTORE_IN_PLACE attribute.
RETURN_BUFFER_TOO_SMALLthe Length is too small to hold the confidential information.
RETURN_NOT_FOUNDthe requested GUID not found.
RETURN_NOT_STARTEDit is too early to invoke this interface
RETURN_ACCESS_DENIEDnot allow to restore to the address
RETURN_UNSUPPORTEDthe service is not supported by implementaion.

Definition at line 526 of file SmmLockBoxPeiLib.c.

◆ SaveLockBox()

RETURN_STATUS EFIAPI SaveLockBox ( IN GUID Guid,
IN VOID *  Buffer,
IN UINTN  Length 
)

This function will save confidential information to lockbox.

Parameters
Guidthe guid to identify the confidential information
Bufferthe address of the confidential information
Lengththe length of the confidential information
Return values
RETURN_SUCCESSthe information is saved successfully.
RETURN_INVALID_PARAMETERthe Guid is NULL, or Buffer is NULL, or Length is 0
RETURN_ALREADY_STARTEDthe requested GUID already exist.
RETURN_OUT_OF_RESOURCESno enough resource to save the information.
RETURN_ACCESS_DENIEDit is too late to invoke this interface
RETURN_NOT_STARTEDit is too early to invoke this interface
RETURN_UNSUPPORTEDthe service is not supported by implementaion.

Definition at line 428 of file SmmLockBoxPeiLib.c.

◆ SetLockBoxAttributes()

RETURN_STATUS EFIAPI SetLockBoxAttributes ( IN GUID Guid,
IN UINT64  Attributes 
)

This function will set lockbox attributes.

Parameters
Guidthe guid to identify the confidential information
Attributesthe attributes of the lockbox
Return values
RETURN_SUCCESSthe information is saved successfully.
RETURN_INVALID_PARAMETERattributes is invalid.
RETURN_NOT_FOUNDthe requested GUID not found.
RETURN_ACCESS_DENIEDit is too late to invoke this interface
RETURN_NOT_STARTEDit is too early to invoke this interface
RETURN_UNSUPPORTEDthe service is not supported by implementaion.

Definition at line 457 of file SmmLockBoxPeiLib.c.

◆ UpdateLockBox()

RETURN_STATUS EFIAPI UpdateLockBox ( IN GUID Guid,
IN UINTN  Offset,
IN VOID *  Buffer,
IN UINTN  Length 
)

This function will update confidential information to lockbox.

Parameters
Guidthe guid to identify the original confidential information
Offsetthe offset of the original confidential information
Bufferthe address of the updated confidential information
Lengththe length of the updated confidential information
Return values
RETURN_SUCCESSthe information is saved successfully.
RETURN_INVALID_PARAMETERthe Guid is NULL, or Buffer is NULL, or Length is 0.
RETURN_NOT_FOUNDthe requested GUID not found.
RETURN_BUFFER_TOO_SMALLfor lockbox without attribute LOCK_BOX_ATTRIBUTE_RESTORE_IN_S3_ONLY, the original buffer to too small to hold new information.
RETURN_OUT_OF_RESOURCESfor lockbox with attribute LOCK_BOX_ATTRIBUTE_RESTORE_IN_S3_ONLY, no enough resource to save the information.
RETURN_ACCESS_DENIEDit is too late to invoke this interface
RETURN_NOT_STARTEDit is too early to invoke this interface
RETURN_UNSUPPORTEDthe service is not supported by implementaion.

Definition at line 491 of file SmmLockBoxPeiLib.c.