You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
3.5 KiB
106 lines
3.5 KiB
// |
|
// Copyright (C) 2014 The Android Open Source Project |
|
// |
|
// Licensed under the Apache License, Version 2.0 (the "License"); |
|
// you may not use this file except in compliance with the License. |
|
// You may obtain a copy of the License at |
|
// |
|
// http://www.apache.org/licenses/LICENSE-2.0 |
|
// |
|
// Unless required by applicable law or agreed to in writing, software |
|
// distributed under the License is distributed on an "AS IS" BASIS, |
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
// See the License for the specific language governing permissions and |
|
// limitations under the License. |
|
// |
|
|
|
#ifndef TRUNKS_TPM_STATE_H_ |
|
#define TRUNKS_TPM_STATE_H_ |
|
|
|
#include <base/macros.h> |
|
|
|
#include "trunks/tpm_generated.h" |
|
#include "trunks/trunks_export.h" |
|
|
|
namespace trunks { |
|
|
|
// TpmState is an interface which provides access to TPM state information. |
|
class TRUNKS_EXPORT TpmState { |
|
public: |
|
TpmState() {} |
|
virtual ~TpmState() {} |
|
|
|
// Initializes based on the current TPM state. This method must be called once |
|
// before any other method. It may be called multiple times to refresh the |
|
// state information. |
|
virtual TPM_RC Initialize() = 0; |
|
|
|
// Returns true iff TPMA_PERMANENT:ownerAuthSet is set. |
|
virtual bool IsOwnerPasswordSet() = 0; |
|
|
|
// Returns true iff TPMA_PERMANENT:endorsementAuthSet is set. |
|
virtual bool IsEndorsementPasswordSet() = 0; |
|
|
|
// Returns true iff TPMA_PERMANENT:lockoutAuthSet is set. |
|
virtual bool IsLockoutPasswordSet() = 0; |
|
|
|
// Returns true iff owner, endorsement and lockout passwords are set. |
|
virtual bool IsOwned() = 0; |
|
|
|
// Returns true iff TPMA_PERMANENT:inLockout is set. |
|
virtual bool IsInLockout() = 0; |
|
|
|
// Returns true iff TPMA_STARTUP_CLEAR:phEnable is set. |
|
virtual bool IsPlatformHierarchyEnabled() = 0; |
|
|
|
// Returns true iff TPMA_STARTUP_CLEAR:shEnable is set. |
|
virtual bool IsStorageHierarchyEnabled() = 0; |
|
|
|
// Returns true iff TPMA_STARTUP_CLEAR:ehEnable is set. |
|
virtual bool IsEndorsementHierarchyEnabled() = 0; |
|
|
|
// Returns true iff shEnable and ehEnable are set and phEnable is clear. |
|
virtual bool IsEnabled() = 0; |
|
|
|
// Returns true iff TPMA_STARTUP_CLEAR:orderly is set. |
|
virtual bool WasShutdownOrderly() = 0; |
|
|
|
// Returns true iff the TPM supports RSA-2048 keys. |
|
virtual bool IsRSASupported() = 0; |
|
|
|
// Returns true iff the TPM supports the ECC NIST P-256 curve. |
|
virtual bool IsECCSupported() = 0; |
|
|
|
// Returns the current value of the Lockout counter. |
|
virtual uint32_t GetLockoutCounter() = 0; |
|
|
|
// Returns the maximum lockout failures allowed before the TPM goes into |
|
// lockout. |
|
virtual uint32_t GetLockoutThreshold() = 0; |
|
|
|
// Returns the number of seconds before the lockout counter will decrement. |
|
virtual uint32_t GetLockoutInterval() = 0; |
|
|
|
// Returns the number of seconds after a LockoutAuth failure before |
|
// LockoutAuth can be used again. |
|
virtual uint32_t GetLockoutRecovery() = 0; |
|
|
|
// Returns the maximum size, in bytes, of an NV index data area. |
|
virtual uint32_t GetMaxNVSize() = 0; |
|
|
|
// Gets the |value| of any |property|. |value| may be NULL. Returns false if |
|
// a value is not available for the property. |
|
virtual bool GetTpmProperty(TPM_PT property, uint32_t* value) = 0; |
|
|
|
// Gets |algorithm| |properties|. |properties| may be NULL. Returns false if |
|
// properties are not available for the algorithm. |
|
virtual bool GetAlgorithmProperties(TPM_ALG_ID algorithm, |
|
TPMA_ALGORITHM* properties) = 0; |
|
|
|
private: |
|
DISALLOW_COPY_AND_ASSIGN(TpmState); |
|
}; |
|
|
|
} // namespace trunks |
|
|
|
#endif // TRUNKS_TPM_STATE_H_
|
|
|