?? tss_error.h
字號:
/*++
TSS error return codes
--*/
#ifndef __TSS_ERROR_H__
#define __TSS_ERROR_H__
#include <tss/platform.h>
//
// error coding scheme for a Microsoft Windows platform -
// refer to the TSS Specification Parts
//
// Values are 32 bit values layed out as follows:
//
// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
// +---+-+-+-----------------------+-------+-----------------------+
// |Lev|C|R| Facility | Layer | Code |
// +---+-+-+-----------------------+-------+-----------------------+
// | Platform specific coding | TSS error coding system |
// +---+-+-+-----------------------+-------+-----------------------+
//
// Lev - is the Level code
//
// 00 - Success
// 01 - Informational
// 10 - Warning
// 11 - Error
//
// C - is the Customer code flag (must actually be set)
//
// R - is a reserved bit (unused)
//
// Facility - is the facility code: TCPA: proposal 0x028
//
// Code - is the facility's status code
//
//
// definitions for the code level information
//
#define TSS_LEVEL_SUCCESS 0x00 // code level success
#define TSS_LEVEL_INFO 0x40000000L // code level information
#define TSS_LEVEL_WARNING 0x80000000L // code level warning
#define TSS_LEVEL_ERROR 0xC0000000L // code level error
//
// some defines for the platform specific information
//
#define FACILITY_TSS 0x28L // facility number for TCPA return codes
#define FACILITY_TSS_CODEPOS (FACILITY_TSS << 16) // shift the facility info to the code
// position
#define TSS_CUSTOM_CODEFLAG 0x20000000L // bit position for the custom flag in
// return code
//
//
// TSS error return codes
//
//
#ifndef TSS_E_BASE
#define TSS_E_BASE 0x00000000L
#endif // TSS_E_BASE
#ifndef TSS_W_BASE
#define TSS_W_BASE 0x00000000L
#endif // TSS_W_BASE
#ifndef TSS_I_BASE
#define TSS_I_BASE 0x00000000L
#endif // TSS_I_BASE
//
// basic error return codes common to all TSS Service Provider Interface methods
// and returned by all TSS SW stack components
//
//
// MessageId: TSS_SUCCESS
//
// MessageText:
//
// Successful completion of the operation.
//
#define TSS_SUCCESS (UINT32)(0x00000000L)
//
// MessageId: TSS_E_FAIL
//
// MessageText:
//
// An internal error has been detected, but the source is unknown.
//
#define TSS_E_FAIL (UINT32)(TSS_E_BASE + 0x002L)
//
// MessageId: TSS_E_BAD_PARAMETER
//
// MessageText:
//
// One or more parameter is bad.
//
#define TSS_E_BAD_PARAMETER (UINT32)(TSS_E_BASE + 0x003L)
//
// MessageId: TSS_E_INTERNAL_ERROR
//
// MessageText:
//
// An internal SW error has been detected.
//
#define TSS_E_INTERNAL_ERROR (UINT32)(TSS_E_BASE + 0x004L)
//
// MessageId: TSS_E_OUTOFMEMORY
//
// MessageText:
//
// Ran out of memory.
//
#define TSS_E_OUTOFMEMORY (UINT32)(TSS_E_BASE + 0x005L)
//
// MessageId: TSS_E_NOTIMPL
//
// MessageText:
//
// Not implemented.
//
#define TSS_E_NOTIMPL (UINT32)(TSS_E_BASE + 0x006L)
//
// MessageId: TSS_E_KEY_ALREADY_REGISTERED
//
// MessageText:
//
// Key is already registered
//
#define TSS_E_KEY_ALREADY_REGISTERED (UINT32)(TSS_E_BASE + 0x008L)
//
// MessageId: TSS_E_TPM_UNEXPECTED
//
// MessageText:
//
// An unexpected TPM error has occurred.
//
#define TSS_E_TPM_UNEXPECTED (UINT32)(TSS_E_BASE + 0x010L)
//
// MessageId: TSS_E_COMM_FAILURE
//
// MessageText:
//
// A communications error with the TPM has been detected.
//
#define TSS_E_COMM_FAILURE (UINT32)(TSS_E_BASE + 0x011L)
//
// MessageId: TSS_E_TIMEOUT
//
// MessageText:
//
// The operation has timed out.
//
#define TSS_E_TIMEOUT (UINT32)(TSS_E_BASE + 0x012L)
//
// MessageId: TSS_E_TPM_UNSUPPORTED_FEATURE
//
// MessageText:
//
// The TPM does not support the requested feature.
//
#define TSS_E_TPM_UNSUPPORTED_FEATURE (UINT32)(TSS_E_BASE + 0x014L)
//
// MessageId: TSS_E_CANCELED
//
// MessageText:
//
// The action was canceled by request.
//
#define TSS_E_CANCELED (UINT32)(TSS_E_BASE + 0x016L)
//
// MessageId: TSS_E_PS_KEY_NOTFOUND
//
// MessageText:
//
// The key cannot be found in the persistent storage database.
//
#define TSS_E_PS_KEY_NOTFOUND (UINT32)(TSS_E_BASE + 0x020L)
//
// MessageId: TSS_E_PS_KEY_EXISTS
//
// MessageText:
//
// The key already exists in the persistent storage database.
//
#define TSS_E_PS_KEY_EXISTS (UINT32)(TSS_E_BASE + 0x021L)
//
// MessageId: TSS_E_PS_BAD_KEY_STATE
//
// MessageText:
//
// The key data set not valid in the persistent storage database.
//
#define TSS_E_PS_BAD_KEY_STATE (UINT32)(TSS_E_BASE + 0x022L)
//
// error codes returned by specific TSS Service Provider Interface methods
// offset TSS_TSPI_OFFSET
//
//
// MessageId: TSS_E_INVALID_OBJECT_TYPE
//
// MessageText:
//
// Object type not valid for this operation.
//
#define TSS_E_INVALID_OBJECT_TYPE (UINT32)(TSS_E_BASE + 0x101L)
//
// MessageId: TSS_E_NO_CONNECTION
//
// MessageText:
//
// Core Service connection doesn't exist.
//
#define TSS_E_NO_CONNECTION (UINT32)(TSS_E_BASE + 0x102L)
//
// MessageId: TSS_E_CONNECTION_FAILED
//
// MessageText:
//
// Core Service connection failed.
//
#define TSS_E_CONNECTION_FAILED (UINT32)(TSS_E_BASE + 0x103L)
//
// MessageId: TSS_E_CONNECTION_BROKEN
//
// MessageText:
//
// Communication with Core Service failed.
//
#define TSS_E_CONNECTION_BROKEN (UINT32)(TSS_E_BASE + 0x104L)
//
// MessageId: TSS_E_HASH_INVALID_ALG
//
// MessageText:
//
// Invalid hash algorithm.
//
#define TSS_E_HASH_INVALID_ALG (UINT32)(TSS_E_BASE + 0x105L)
//
// MessageId: TSS_E_HASH_INVALID_LENGTH
//
// MessageText:
//
// Hash length is inconsistent with hash algorithm.
//
#define TSS_E_HASH_INVALID_LENGTH (UINT32)(TSS_E_BASE + 0x106L)
//
// MessageId: TSS_E_HASH_NO_DATA
//
// MessageText:
//
// Hash object has no internal hash value.
//
#define TSS_E_HASH_NO_DATA (UINT32)(TSS_E_BASE + 0x107L)
//
// MessageId: TSS_E_INVALID_ATTRIB_FLAG
//
// MessageText:
//
// Flag value for attrib-functions inconsistent.
//
#define TSS_E_INVALID_ATTRIB_FLAG (UINT32)(TSS_E_BASE + 0x109L)
//
// MessageId: TSS_E_INVALID_ATTRIB_SUBFLAG
//
// MessageText:
//
// Subflag value for attrib-functions inconsistent.
//
#define TSS_E_INVALID_ATTRIB_SUBFLAG (UINT32)(TSS_E_BASE + 0x10AL)
//
// MessageId: TSS_E_INVALID_ATTRIB_DATA
//
// MessageText:
//
// Data for attrib-functions invalid.
//
#define TSS_E_INVALID_ATTRIB_DATA (UINT32)(TSS_E_BASE + 0x10BL)
//
// MessageId: TSS_E_INVALID_OBJECT_INITFLAG
//
// MessageText:
//
// Wrong flag information for object creation.
//
// The alternate spelling is supported to be compatible with a typo
// in the 1.1b header files.
//
#define TSS_E_INVALID_OBJECT_INIT_FLAG (UINT32)(TSS_E_BASE + 0x10CL)
#define TSS_E_INVALID_OBJECT_INITFLAG TSS_E_INVALID_OBJECT_INIT_FLAG
//
// MessageId: TSS_E_NO_PCRS_SET
//
// MessageText:
//
// No PCR register are selected or set.
//
#define TSS_E_NO_PCRS_SET (UINT32)(TSS_E_BASE + 0x10DL)
//
// MessageId: TSS_E_KEY_NOT_LOADED
//
// MessageText:
//
// The addressed key is currently not loaded.
//
#define TSS_E_KEY_NOT_LOADED (UINT32)(TSS_E_BASE + 0x10EL)
//
// MessageId: TSS_E_KEY_NOT_SET
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -