#ifndef __LINUX_TPM_H__
#define __LINUX_TPM_H__
#include <linux/hw_random.h>
#include <linux/acpi.h>
#include <linux/cdev.h>
#include <linux/fs.h>
#include <linux/highmem.h>
#include <crypto/hash_info.h>
#include <crypto/aes.h>
#define TPM_DIGEST_SIZE …
#define TPM_MAX_DIGEST_SIZE …
struct tpm_chip;
struct trusted_key_payload;
struct trusted_key_options;
struct tpm2_auth;
enum tpm2_session_types { … };
enum tpm_algorithms { … };
#define TPM_MAX_HASHES …
enum tpm2_curves { … };
struct tpm_digest { … } __packed;
struct tpm_bank_info { … };
enum TPM_OPS_FLAGS { … };
struct tpm_class_ops { … };
#define TPM_NUM_EVENT_LOG_FILES …
enum tpm_duration { … };
#define TPM_PPI_VERSION_LEN …
struct tpm_space { … };
struct tpm_bios_log { … };
struct tpm_chip_seqops { … };
#define EC_PT_SZ …
#define TPM2_NAME_SIZE …
#define TPM2_MAX_CONTEXT_SIZE …
struct tpm_chip { … };
#define TPM_HEADER_SIZE …
enum tpm2_const { … };
enum tpm2_timeouts { … };
enum tpm2_structures { … };
#define TSS2_RC_LAYER_SHIFT …
#define TSS2_RESMGR_TPM_RC_LAYER …
enum tpm2_return_codes { … };
enum tpm2_command_codes { … };
enum tpm2_permanent_handles { … };
enum tpm2_mso_type { … };
static inline enum tpm2_mso_type tpm2_handle_mso(u32 handle)
{ … }
enum tpm2_capabilities { … };
enum tpm2_properties { … };
enum tpm2_startup_types { … };
enum tpm2_cc_attrs { … };
#define TPM_VID_INTEL …
#define TPM_VID_WINBOND …
#define TPM_VID_STM …
#define TPM_VID_ATML …
enum tpm_chip_flags { … };
#define to_tpm_chip(d) …
struct tpm_header { … } __packed;
enum tpm_buf_flags { … };
struct tpm_buf { … };
enum tpm2_object_attributes { … };
enum tpm2_session_attributes { … };
struct tpm2_hash { … };
int tpm_buf_init(struct tpm_buf *buf, u16 tag, u32 ordinal);
void tpm_buf_reset(struct tpm_buf *buf, u16 tag, u32 ordinal);
int tpm_buf_init_sized(struct tpm_buf *buf);
void tpm_buf_reset_sized(struct tpm_buf *buf);
void tpm_buf_destroy(struct tpm_buf *buf);
u32 tpm_buf_length(struct tpm_buf *buf);
void tpm_buf_append(struct tpm_buf *buf, const u8 *new_data, u16 new_length);
void tpm_buf_append_u8(struct tpm_buf *buf, const u8 value);
void tpm_buf_append_u16(struct tpm_buf *buf, const u16 value);
void tpm_buf_append_u32(struct tpm_buf *buf, const u32 value);
u8 tpm_buf_read_u8(struct tpm_buf *buf, off_t *offset);
u16 tpm_buf_read_u16(struct tpm_buf *buf, off_t *offset);
u32 tpm_buf_read_u32(struct tpm_buf *buf, off_t *offset);
static inline bool tpm_is_firmware_upgrade(struct tpm_chip *chip)
{ … }
static inline u32 tpm2_rc_value(u32 rc)
{ … }
#if defined(CONFIG_TCG_TPM) || defined(CONFIG_TCG_TPM_MODULE)
extern int tpm_is_tpm2(struct tpm_chip *chip);
extern __must_check int tpm_try_get_ops(struct tpm_chip *chip);
extern void tpm_put_ops(struct tpm_chip *chip);
extern ssize_t tpm_transmit_cmd(struct tpm_chip *chip, struct tpm_buf *buf,
size_t min_rsp_body_length, const char *desc);
extern int tpm_pcr_read(struct tpm_chip *chip, u32 pcr_idx,
struct tpm_digest *digest);
extern int tpm_pcr_extend(struct tpm_chip *chip, u32 pcr_idx,
struct tpm_digest *digests);
extern int tpm_get_random(struct tpm_chip *chip, u8 *data, size_t max);
extern struct tpm_chip *tpm_default_chip(void);
void tpm2_flush_context(struct tpm_chip *chip, u32 handle);
static inline void tpm_buf_append_empty_auth(struct tpm_buf *buf, u32 handle)
{ … }
#else
static inline int tpm_is_tpm2(struct tpm_chip *chip)
{
return -ENODEV;
}
static inline int tpm_pcr_read(struct tpm_chip *chip, int pcr_idx,
struct tpm_digest *digest)
{
return -ENODEV;
}
static inline int tpm_pcr_extend(struct tpm_chip *chip, u32 pcr_idx,
struct tpm_digest *digests)
{
return -ENODEV;
}
static inline int tpm_get_random(struct tpm_chip *chip, u8 *data, size_t max)
{
return -ENODEV;
}
static inline struct tpm_chip *tpm_default_chip(void)
{
return NULL;
}
static inline void tpm_buf_append_empty_auth(struct tpm_buf *buf, u32 handle)
{
}
#endif
static inline struct tpm2_auth *tpm2_chip_auth(struct tpm_chip *chip)
{ … }
void tpm_buf_append_name(struct tpm_chip *chip, struct tpm_buf *buf,
u32 handle, u8 *name);
void tpm_buf_append_hmac_session(struct tpm_chip *chip, struct tpm_buf *buf,
u8 attributes, u8 *passphrase,
int passphraselen);
static inline void tpm_buf_append_hmac_session_opt(struct tpm_chip *chip,
struct tpm_buf *buf,
u8 attributes,
u8 *passphrase,
int passphraselen)
{ … }
#ifdef CONFIG_TCG_TPM2_HMAC
int tpm2_start_auth_session(struct tpm_chip *chip);
void tpm_buf_fill_hmac_session(struct tpm_chip *chip, struct tpm_buf *buf);
int tpm_buf_check_hmac_response(struct tpm_chip *chip, struct tpm_buf *buf,
int rc);
void tpm2_end_auth_session(struct tpm_chip *chip);
#else
#include <asm/unaligned.h>
static inline int tpm2_start_auth_session(struct tpm_chip *chip)
{
return 0;
}
static inline void tpm2_end_auth_session(struct tpm_chip *chip)
{
}
static inline void tpm_buf_fill_hmac_session(struct tpm_chip *chip,
struct tpm_buf *buf)
{
}
static inline int tpm_buf_check_hmac_response(struct tpm_chip *chip,
struct tpm_buf *buf,
int rc)
{
return rc;
}
#endif
#endif