TianoCore EDK2 master
|
#include <Uefi.h>
#include <Library/BaseLib.h>
#include <Library/TimerLib.h>
#include <Library/BaseMemoryLib.h>
#include <Library/DebugLib.h>
#include <Library/TcgStorageOpalLib.h>
#include "TcgStorageOpalLibInternal.h"
Go to the source code of this file.
Data Structures | |
struct | TCG_BLOCK_SID_CLEAR_EVENTS |
Macros | |
#define | TRUSTED_COMMAND_TIMEOUT_NS ((UINT64) 5 * ((UINT64)(1000000)) * 1000) |
#define | BUFFER_SIZE 512 |
Functions | |
TCG_RESULT | OpalTrustedSend (EFI_STORAGE_SECURITY_COMMAND_PROTOCOL *Sscp, UINT32 MediaId, UINT8 SecurityProtocol, UINT16 SpSpecific, UINTN TransferLength, VOID *Buffer, UINTN BufferSize) |
TCG_RESULT | OpalTrustedRecv (EFI_STORAGE_SECURITY_COMMAND_PROTOCOL *Sscp, UINT32 MediaId, UINT8 SecurityProtocol, UINT16 SpSpecific, VOID *Buffer, UINTN BufferSize, UINT32 EstimateTimeCost) |
TCG_RESULT EFIAPI | OpalPerformMethod (OPAL_SESSION *Session, UINT32 SendSize, VOID *Buffer, UINT32 BufferSize, TCG_PARSE_STRUCT *ParseStruct, UINT8 *MethodStatus, UINT32 EstimateTimeCost) |
TCG_RESULT EFIAPI | OpalBlockSid (OPAL_SESSION *Session, BOOLEAN HardwareReset) |
TCG_RESULT EFIAPI | OpalPsidRevert (OPAL_SESSION *AdminSpSession) |
TCG_RESULT | OpalPyrite2PsidRevert (OPAL_SESSION *AdminSpSession, UINT32 EstimateTimeCost) |
TCG_RESULT EFIAPI | OpalRetrieveLevel0DiscoveryHeader (OPAL_SESSION *Session, UINTN BufferSize, VOID *BuffAddress) |
TCG_RESULT EFIAPI | OpalRetrieveSupportedProtocolList (OPAL_SESSION *Session, UINTN BufferSize, VOID *BuffAddress) |
TCG_RESULT EFIAPI | OpalStartSession (OPAL_SESSION *Session, TCG_UID SpId, BOOLEAN Write, UINT32 HostChallengeLength, const VOID *HostChallenge, TCG_UID HostSigningAuthority, UINT8 *MethodStatus) |
TCG_RESULT EFIAPI | OpalEndSession (OPAL_SESSION *Session) |
TCG_RESULT EFIAPI | OpalGetMsid (OPAL_SESSION *AdminSpSession, UINT32 MsidBufferSize, UINT8 *Msid, UINT32 *MsidLength) |
TCG_RESULT | OpalPyrite2GetActiveDataRemovalMechanism (IN OPAL_SESSION *AdminSpSession, OUT UINT8 *ActiveDataRemovalMechanism) |
TCG_RESULT EFIAPI | OpalAdminRevert (OPAL_SESSION *LockingSpSession, BOOLEAN KeepUserData, UINT8 *MethodStatus) |
TCG_RESULT | OpalPyrite2AdminRevert (OPAL_SESSION *LockingSpSession, BOOLEAN KeepUserData, UINT8 *MethodStatus, UINT32 EstimateTimeCost) |
TCG_RESULT EFIAPI | OpalActivateLockingSp (OPAL_SESSION *AdminSpSession, UINT8 *MethodStatus) |
TCG_RESULT EFIAPI | OpalSetPassword (OPAL_SESSION *Session, TCG_UID CpinRowUid, const VOID *NewPin, UINT32 NewPinLength, UINT8 *MethodStatus) |
TCG_RESULT EFIAPI | OpalSetLockingSpAuthorityEnabledAndPin (OPAL_SESSION *LockingSpSession, TCG_UID CpinRowUid, TCG_UID AuthorityUid, const VOID *NewPin, UINT32 NewPinLength, UINT8 *MethodStatus) |
TCG_RESULT EFIAPI | OpalDisableUser (OPAL_SESSION *LockingSpSession, UINT8 *MethodStatus) |
TCG_RESULT EFIAPI | OpalGlobalLockingRangeGenKey (OPAL_SESSION *LockingSpSession, UINT8 *MethodStatus) |
TCG_RESULT EFIAPI | OpalUpdateGlobalLockingRange (OPAL_SESSION *LockingSpSession, BOOLEAN ReadLocked, BOOLEAN WriteLocked, UINT8 *MethodStatus) |
TCG_RESULT EFIAPI | OpalSetLockingRange (OPAL_SESSION *LockingSpSession, TCG_UID LockingRangeUid, UINT64 RangeStart, UINT64 RangeLength, BOOLEAN ReadLockEnabled, BOOLEAN WriteLockEnabled, BOOLEAN ReadLocked, BOOLEAN WriteLocked, UINT8 *MethodStatus) |
TCG_RESULT EFIAPI | OpalCreateRetrieveGlobalLockingRangeActiveKey (const OPAL_SESSION *Session, TCG_CREATE_STRUCT *CreateStruct, UINT32 *Size) |
TCG_RESULT EFIAPI | OpalParseRetrieveGlobalLockingRangeActiveKey (TCG_PARSE_STRUCT *ParseStruct, TCG_UID *ActiveKey) |
TCG_RESULT EFIAPI | OpalGetTryLimit (OPAL_SESSION *LockingSpSession, TCG_UID RowUid, UINT32 *TryLimit) |
TCG_RESULT EFIAPI | OpalGetSupportedAttributesInfo (IN OPAL_SESSION *Session, OUT OPAL_DISK_SUPPORT_ATTRIBUTE *SupportedAttributes, OUT UINT16 *OpalBaseComId) |
TCG_RESULT EFIAPI | OpalGetLockingInfo (OPAL_SESSION *Session, TCG_LOCKING_FEATURE_DESCRIPTOR *LockingFeature) |
TCG_RESULT | OpalGetFeatureDescriptor (IN OPAL_SESSION *Session, IN UINT16 FeatureCode, IN OUT UINTN *DataSize, OUT VOID *Data) |
BOOLEAN EFIAPI | OpalFeatureSupported (OPAL_DISK_SUPPORT_ATTRIBUTE *SupportedAttributes) |
BOOLEAN EFIAPI | OpalFeatureEnabled (OPAL_DISK_SUPPORT_ATTRIBUTE *SupportedAttributes, TCG_LOCKING_FEATURE_DESCRIPTOR *LockingFeature) |
BOOLEAN | OpalDeviceLocked (OPAL_DISK_SUPPORT_ATTRIBUTE *SupportedAttributes, TCG_LOCKING_FEATURE_DESCRIPTOR *LockingFeature) |
Public API for Opal Core library.
Copyright (c) 2016 - 2021, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
Definition in file TcgStorageOpalCore.c.
#define BUFFER_SIZE 512 |
Definition at line 26 of file TcgStorageOpalCore.c.
#define TRUSTED_COMMAND_TIMEOUT_NS ((UINT64) 5 * ((UINT64)(1000000)) * 1000) |
Definition at line 25 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalActivateLockingSp | ( | OPAL_SESSION * | AdminSpSession, |
UINT8 * | MethodStatus | ||
) |
The function activates the Locking SP. Once activated, per Opal spec, the ADMIN SP SID PIN is copied over to the ADMIN1 LOCKING SP PIN. If the Locking SP is already enabled, then TcgResultSuccess is returned and no action occurs.
[in] | AdminSpSession | OPAL_SESSION with OPAL_UID_ADMIN_SP as OPAL_ADMIN_SP_SID_AUTHORITY to activate Locking SP |
[in/out] | MethodStatus Method status of last action performed. If action succeeded, it should be TCG_METHOD_STATUS_CODE_SUCCESS. |
Definition at line 948 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalAdminRevert | ( | OPAL_SESSION * | LockingSpSession, |
BOOLEAN | KeepUserData, | ||
UINT8 * | MethodStatus | ||
) |
The function calls the Admin SP RevertSP method on the Locking SP. If KeepUserData is True, then the optional parameter to keep the user Data is set to True, otherwise the optional parameter is not provided.
[in] | LockingSpSession | OPAL_SESSION with OPAL_UID_LOCKING_SP as OPAL_LOCKING_SP_ADMIN1_AUTHORITY to revertSP |
[in] | KeepUserData | Specifies whether or not to keep user Data when performing RevertSP action. True = keeps user Data. |
[in/out] | MethodStatus Method status of last action performed. If action succeeded, it should be TCG_METHOD_STATUS_CODE_SUCCESS. |
Definition at line 757 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalBlockSid | ( | OPAL_SESSION * | Session, |
BOOLEAN | HardwareReset | ||
) |
Trig the block sid action.
[in] | Session | OPAL_SESSION related to this method.. |
[in] | HardwareReset | Whether need to do hardware reset. |
Definition at line 248 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalCreateRetrieveGlobalLockingRangeActiveKey | ( | const OPAL_SESSION * | Session, |
TCG_CREATE_STRUCT * | CreateStruct, | ||
UINT32 * | Size | ||
) |
The function populates the CreateStruct with a payload that will retrieve the global locking range active key. It is intended to be called with a session that is already started with a valid credential. The function does not send the payload.
[in] | Session | OPAL_SESSION to populate command for, needs ComId |
[in/out] | CreateStruct Structure to populate with encoded TCG command | |
[in/out] | Size Size in bytes of the command created. |
Definition at line 1503 of file TcgStorageOpalCore.c.
BOOLEAN OpalDeviceLocked | ( | OPAL_DISK_SUPPORT_ATTRIBUTE * | SupportedAttributes, |
TCG_LOCKING_FEATURE_DESCRIPTOR * | LockingFeature | ||
) |
The function returns whether or not the device is Opal Locked. TRUE means that the device is partially or fully locked. This will perform a Level 0 Discovery and parse the locking feature descriptor
[in] | SupportedAttributes | Opal device attribute. |
[in] | LockingFeature | Opal device locking status. |
Definition at line 2021 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalDisableUser | ( | OPAL_SESSION * | LockingSpSession, |
UINT8 * | MethodStatus | ||
) |
The function sets the Enabled column to FALSE for the USER1 authority.
[in] | LockingSpSession | OPAL_SESSION with OPAL_UID_LOCKING_SP as OPAL_LOCKING_SP_ADMIN1_AUTHORITY to disable User1 |
[in/out] | MethodStatus Method status of last action performed. If action succeeded, it should be TCG_METHOD_STATUS_CODE_SUCCESS. |
Definition at line 1233 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalEndSession | ( | OPAL_SESSION * | Session | ) |
Close a session opened with OpalStartSession.
[in/out] | Session OPAL_SESSION to end. |
Definition at line 518 of file TcgStorageOpalCore.c.
BOOLEAN EFIAPI OpalFeatureEnabled | ( | OPAL_DISK_SUPPORT_ATTRIBUTE * | SupportedAttributes, |
TCG_LOCKING_FEATURE_DESCRIPTOR * | LockingFeature | ||
) |
The function returns whether or not the device is Opal Enabled. TRUE means that the device is partially or fully locked. This will perform a Level 0 Discovery and parse the locking feature descriptor
[in] | SupportedAttributes | Opal device attribute. |
[in] | LockingFeature | Opal device locking status. |
Definition at line 1991 of file TcgStorageOpalCore.c.
BOOLEAN EFIAPI OpalFeatureSupported | ( | OPAL_DISK_SUPPORT_ATTRIBUTE * | SupportedAttributes | ) |
The function determines whether or not all of the requirements for the Opal Feature (not full specification) are met by the specified device.
[in] | SupportedAttributes | Opal device attribute. |
Definition at line 1955 of file TcgStorageOpalCore.c.
TCG_RESULT OpalGetFeatureDescriptor | ( | IN OPAL_SESSION * | Session, |
IN UINT16 | FeatureCode, | ||
IN OUT UINTN * | DataSize, | ||
OUT VOID * | Data | ||
) |
Get the descriptor for the specific feature code.
[in] | Session | OPAL_SESSION with OPAL_UID_LOCKING_SP to retrieve info. |
[in] | FeatureCode | The feature code user request. |
[in,out] | DataSize | The data size. |
[out] | Data | The data buffer used to save the feature descriptor. |
Definition at line 1904 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalGetLockingInfo | ( | OPAL_SESSION * | Session, |
TCG_LOCKING_FEATURE_DESCRIPTOR * | LockingFeature | ||
) |
Get the support attribute info.
[in] | Session | OPAL_SESSION with OPAL_UID_LOCKING_SP to retrieve info. |
[in/out] | LockingFeature Return the Locking info. |
Definition at line 1861 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalGetMsid | ( | OPAL_SESSION * | AdminSpSession, |
UINT32 | MsidBufferSize, | ||
UINT8 * | Msid, | ||
UINT32 * | MsidLength | ||
) |
The function retrieves the MSID from the device specified
[in] | AdminSpSession | OPAL_SESSION with OPAL_UID_ADMIN_SP as OPAL_ADMIN_SP_PSID_AUTHORITY to perform PSID revert. |
[in] | MsidBufferSize | Allocated Buffer Size (in bytes) for MSID allocated by caller |
[in] | Msid | Variable Length byte sequence representing MSID of device |
[in] | MsidLength | Actual Length of MSID retrieved from device |
Definition at line 583 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalGetSupportedAttributesInfo | ( | IN OPAL_SESSION * | Session, |
OUT OPAL_DISK_SUPPORT_ATTRIBUTE * | SupportedAttributes, | ||
OUT UINT16 * | OpalBaseComId | ||
) |
Get the support attribute info.
[in] | Session | OPAL_SESSION with OPAL_UID_LOCKING_SP to retrieve info. |
[out] | SupportedAttributes | Return the support attribute info. |
[out] | OpalBaseComId | Return the base com id info. |
Definition at line 1663 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalGetTryLimit | ( | OPAL_SESSION * | LockingSpSession, |
TCG_UID | RowUid, | ||
UINT32 * | TryLimit | ||
) |
The function retrieves the TryLimit column for the specified rowUid (authority).
[in] | LockingSpSession | OPAL_SESSION with OPAL_UID_LOCKING_SP to retrieve try limit |
[in] | RowUid | Row UID of the Locking SP C_PIN table to retrieve TryLimit column |
[in/out] | TryLimit Value from TryLimit column |
Definition at line 1593 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalGlobalLockingRangeGenKey | ( | OPAL_SESSION * | LockingSpSession, |
UINT8 * | MethodStatus | ||
) |
The function retrieves the active key of the global locking range and calls the GenKey method on the active key retrieved.
[in] | LockingSpSession | OPAL_SESSION with OPAL_UID_LOCKING_SP to generate key |
[in/out] | MethodStatus Method status of last action performed. If action succeeded, it should be TCG_METHOD_STATUS_CODE_SUCCESS. |
Definition at line 1276 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalParseRetrieveGlobalLockingRangeActiveKey | ( | TCG_PARSE_STRUCT * | ParseStruct, |
TCG_UID * | ActiveKey | ||
) |
The function acquires the activeKey specified for the Global Locking Range from the ParseStruct.
[in] | ParseStruct | Structure that contains the device's response with the activekey |
[in/out] | ActiveKey The UID of the active key retrieved |
Definition at line 1548 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalPerformMethod | ( | OPAL_SESSION * | Session, |
UINT32 | SendSize, | ||
VOID * | Buffer, | ||
UINT32 | BufferSize, | ||
TCG_PARSE_STRUCT * | ParseStruct, | ||
UINT8 * | MethodStatus, | ||
UINT32 | EstimateTimeCost | ||
) |
The function performs send, recv, check comIDs, check method status action.
[in] | Session | OPAL_SESSION related to this method.. |
[in] | SendSize | Transfer Length of Buffer (in bytes) - always a multiple of 512 |
[in] | Buffer | Address of Data to transfer |
[in] | BufferSize | Full Size of Buffer, including space that may be used for padding. |
[in] | ParseStruct | Structure used to parse received TCG response. |
[in] | MethodStatus | Method status of last action performed. If action succeeded, it should be TCG_METHOD_STATUS_CODE_SUCCESS. |
[in] | EstimateTimeCost | Estimate the time need to for the method. |
Definition at line 195 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalPsidRevert | ( | OPAL_SESSION * | AdminSpSession | ) |
Reverts device using Admin SP Revert method.
[in] | AdminSpSession | OPAL_SESSION with OPAL_UID_ADMIN_SP as OPAL_ADMIN_SP_PSID_AUTHORITY to perform PSID revert. |
Definition at line 286 of file TcgStorageOpalCore.c.
TCG_RESULT OpalPyrite2AdminRevert | ( | OPAL_SESSION * | LockingSpSession, |
BOOLEAN | KeepUserData, | ||
UINT8 * | MethodStatus, | ||
UINT32 | EstimateTimeCost | ||
) |
The function calls the Admin SP RevertSP method on the Locking SP. If KeepUserData is True, then the optional parameter to keep the user Data is set to True, otherwise the optional parameter is not provided.
[in] | LockingSpSession | OPAL_SESSION with OPAL_UID_LOCKING_SP as OPAL_LOCKING_SP_ADMIN1_AUTHORITY to revertSP |
[in] | KeepUserData | Specifies whether or not to keep user Data when performing RevertSP action. True = keeps user Data. |
[in/out] | MethodStatus Method status of last action performed. If action succeeded, it should be TCG_METHOD_STATUS_CODE_SUCCESS. | |
[in] | EstimateTimeCost | Estimate the time needed. |
Definition at line 852 of file TcgStorageOpalCore.c.
TCG_RESULT OpalPyrite2GetActiveDataRemovalMechanism | ( | IN OPAL_SESSION * | AdminSpSession, |
OUT UINT8 * | ActiveDataRemovalMechanism | ||
) |
The function retrieves the MSID from the device specified
[in] | AdminSpSession | OPAL_SESSION with OPAL_UID_ADMIN_SP as OPAL_ADMIN_SP_ANYBODY_AUTHORITY |
[out] | ActiveDataRemovalMechanism | Active Data Removal Mechanism that the device will use for Revert/RevertSP calls. |
Definition at line 675 of file TcgStorageOpalCore.c.
TCG_RESULT OpalPyrite2PsidRevert | ( | OPAL_SESSION * | AdminSpSession, |
UINT32 | EstimateTimeCost | ||
) |
Reverts device using Admin SP Revert method.
[in] | AdminSpSession | OPAL_SESSION with OPAL_UID_ADMIN_SP as OPAL_ADMIN_SP_PSID_AUTHORITY to perform PSID revert. |
[in] | EstimateTimeCost | Estimate the time needed. |
Definition at line 336 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalRetrieveLevel0DiscoveryHeader | ( | OPAL_SESSION * | Session, |
UINTN | BufferSize, | ||
VOID * | BuffAddress | ||
) |
The function fills in the provided Buffer with the level 0 discovery Header of the device specified.
[in] | Session | OPAL_SESSION data. |
[in] | BufferSize | Size of Buffer provided (in bytes) |
[in] | BuffAddress | Buffer address to fill with Level 0 Discovery response |
Definition at line 390 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalRetrieveSupportedProtocolList | ( | OPAL_SESSION * | Session, |
UINTN | BufferSize, | ||
VOID * | BuffAddress | ||
) |
The function fills in the provided Buffer with the supported protocol list of the device specified.
[in] | Session | OPAL_SESSION data. |
[in] | BufferSize | Size of Buffer provided (in bytes) |
[in] | BuffAddress | Buffer address to fill with security protocol list |
Definition at line 419 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalSetLockingRange | ( | OPAL_SESSION * | LockingSpSession, |
TCG_UID | LockingRangeUid, | ||
UINT64 | RangeStart, | ||
UINT64 | RangeLength, | ||
BOOLEAN | ReadLockEnabled, | ||
BOOLEAN | WriteLockEnabled, | ||
BOOLEAN | ReadLocked, | ||
BOOLEAN | WriteLocked, | ||
UINT8 * | MethodStatus | ||
) |
The function updates the RangeStart, RangeLength, ReadLockedEnabled, WriteLockedEnabled, ReadLocked and WriteLocked columns of the specified Locking Range. This function requires admin authority of a locking SP session.
[in] | LockingSpSession | OPAL_SESSION with OPAL_UID_LOCKING_SP to generate key |
[in] | LockingRangeUid | Locking range UID to set values |
[in] | RangeStart | Value to set RangeStart column for Locking Range |
[in] | RangeLength | Value to set RangeLength column for Locking Range |
[in] | ReadLockEnabled | Value to set readLockEnabled column for Locking Range |
[in] | WriteLockEnabled | Value to set writeLockEnabled column for Locking Range |
[in] | ReadLocked | Value to set ReadLocked column for Locking Range |
[in] | WriteLocked | Value to set WriteLocked column for Locking Range |
[in/out] | MethodStatus Method status of last action performed. If action succeeded, it should be TCG_METHOD_STATUS_CODE_SUCCESS. |
Definition at line 1406 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalSetLockingSpAuthorityEnabledAndPin | ( | OPAL_SESSION * | LockingSpSession, |
TCG_UID | CpinRowUid, | ||
TCG_UID | AuthorityUid, | ||
const VOID * | NewPin, | ||
UINT32 | NewPinLength, | ||
UINT8 * | MethodStatus | ||
) |
The function sets the Enabled column to TRUE for the authorityUid provided and updates the PIN column for the cpinRowUid provided using the newPin provided. AuthorityUid and cpinRowUid should describe the same authority.
[in] | LockingSpSession | OPAL_SESSION with OPAL_UID_LOCKING_SP as OPAL_LOCKING_SP_ADMIN1_AUTHORITY to update |
[in] | CpinRowUid | Row UID of C_PIN table of Locking SP to update PIN |
[in] | AuthorityUid | UID of Locking SP authority to update Pin column with |
[in] | NewPin | New Password used to set Pin column |
[in] | NewPinLength | Length in bytes of new password |
[in/out] | MethodStatus Method status of last action performed. If action succeeded, it should be TCG_METHOD_STATUS_CODE_SUCCESS. |
Definition at line 1052 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalSetPassword | ( | OPAL_SESSION * | Session, |
TCG_UID | CpinRowUid, | ||
const VOID * | NewPin, | ||
UINT32 | NewPinLength, | ||
UINT8 * | MethodStatus | ||
) |
The function sets the PIN column of the specified cpinRowUid (authority) with the newPin Value.
[in/out] | Session OPAL_SESSION to set password | |
[in] | CpinRowUid | UID of row (authority) to update PIN column |
[in] | NewPin | New Pin to set for cpinRowUid specified |
[in] | NewPinLength | Length in bytes of newPin |
[in/out] | MethodStatus Method status of last action performed. If action succeeded, it should be TCG_METHOD_STATUS_CODE_SUCCESS. |
Definition at line 998 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalStartSession | ( | OPAL_SESSION * | Session, |
TCG_UID | SpId, | ||
BOOLEAN | Write, | ||
UINT32 | HostChallengeLength, | ||
const VOID * | HostChallenge, | ||
TCG_UID | HostSigningAuthority, | ||
UINT8 * | MethodStatus | ||
) |
Starts a session with a security provider (SP).
If a session is started successfully, the caller must end the session with OpalEndSession when finished performing Opal actions.
[in/out] | Session OPAL_SESSION to initialize. | |
[in] | SpId | Security provider ID to start the session with. |
[in] | Write | Whether the session should be read-only (FALSE) or read/write (TRUE). |
[in] | HostChallengeLength | Length of the host challenge. Length should be 0 if hostChallenge is NULL |
[in] | HostChallenge | Host challenge for Host Signing Authority. If NULL, then no Host Challenge will be sent. |
[in] | HostSigningAuthority | Host Signing Authority used for start session. If NULL, then no Host Signing Authority will be sent. |
[in/out] | MethodStatus Status of the StartSession method; only valid if TcgResultSuccess is returned. |
Definition at line 456 of file TcgStorageOpalCore.c.
TCG_RESULT OpalTrustedRecv | ( | EFI_STORAGE_SECURITY_COMMAND_PROTOCOL * | Sscp, |
UINT32 | MediaId, | ||
UINT8 | SecurityProtocol, | ||
UINT16 | SpSpecific, | ||
VOID * | Buffer, | ||
UINTN | BufferSize, | ||
UINT32 | EstimateTimeCost | ||
) |
The function performs a Trusted Receive of a Buffer containing a TCG_COM_PACKET.
[in] | Sscp | The input Ssc Protocol. |
[in] | MediaId | The input Media id info used by Ssc Protocol. |
[in] | SecurityProtocol | Security Protocol |
[in] | SpSpecific | Security Protocol Specific |
[in] | Buffer | Address of Data to transfer |
[in] | BufferSize | Full Size of Buffer, including space that may be used for padding. |
[in] | EstimateTimeCost | Estimate the time needed. |
Definition at line 92 of file TcgStorageOpalCore.c.
TCG_RESULT OpalTrustedSend | ( | EFI_STORAGE_SECURITY_COMMAND_PROTOCOL * | Sscp, |
UINT32 | MediaId, | ||
UINT8 | SecurityProtocol, | ||
UINT16 | SpSpecific, | ||
UINTN | TransferLength, | ||
VOID * | Buffer, | ||
UINTN | BufferSize | ||
) |
The function performs a Trusted Send of a Buffer containing a TCG_COM_PACKET.
[in] | Sscp | The input Ssc Protocol. |
[in] | MediaId | The input Media id info used by Ssc Protocol. |
[in] | SecurityProtocol | Security Protocol |
[in] | SpSpecific | Security Protocol Specific |
[in] | TransferLength | Transfer Length of Buffer (in bytes) - always a multiple of 512 |
[in] | Buffer | Address of Data to transfer |
[in] | BufferSize | Full Size of Buffer, including space that may be used for padding. |
Definition at line 41 of file TcgStorageOpalCore.c.
TCG_RESULT EFIAPI OpalUpdateGlobalLockingRange | ( | OPAL_SESSION * | LockingSpSession, |
BOOLEAN | ReadLocked, | ||
BOOLEAN | WriteLocked, | ||
UINT8 * | MethodStatus | ||
) |
The function updates the ReadLocked and WriteLocked columns of the Global Locking Range. This function is required for a user1 authority, since a user1 authority shall only have access to ReadLocked and WriteLocked columns (not ReadLockEnabled and WriteLockEnabled columns).
[in] | LockingSpSession | OPAL_SESSION with OPAL_UID_LOCKING_SP to generate key |
[in] | ReadLocked | Value to set ReadLocked column for Global Locking Range |
[in] | WriteLocked | Value to set WriteLocked column for Global Locking Range |
[in/out] | MethodStatus Method status of last action performed. If action succeeded, it should be TCG_METHOD_STATUS_CODE_SUCCESS. |
Definition at line 1335 of file TcgStorageOpalCore.c.