Commit 699e3efd authored by James Bottomley's avatar James Bottomley Committed by Jarkko Sakkinen

tpm: Add HMAC session start and end functions

Add session  based HMAC  authentication plus parameter  decryption and
response encryption  using AES. The  basic design is to  segregate all
the nasty crypto, hash and hmac code into tpm2-sessions.c and export a
usable API.  The API first of all starts off by gaining a session with
tpm2_start_auth_session() which  initiates a session with  the TPM and
allocates  an  opaque  tpm2_auth   structure  to  handle  the  session
parameters.  The  design is that  session use will be  single threaded
from start to finish under the ops lock, so the tpm2_auth structure is
stored in struct tpm2_chip to simpify the externally visible API.

The session can be ended with tpm2_end_auth_session() which is
designed only to be used in error legs.  Ordinarily the further
session API (future patches) will end or continue the session
appropriately without having to call this.
Signed-off-by: default avatarJames Bottomley <James.Bottomley@HansenPartnership.com>
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> # crypto API parts
Reviewed-by: default avatarJarkko Sakkinen <jarkko@kernel.org>
Tested-by: default avatarJarkko Sakkinen <jarkko@kernel.org>
Signed-off-by: default avatarJarkko Sakkinen <jarkko@kernel.org>
parent 033ee84e
...@@ -30,6 +30,8 @@ if TCG_TPM ...@@ -30,6 +30,8 @@ if TCG_TPM
config TCG_TPM2_HMAC config TCG_TPM2_HMAC
bool "Use HMAC and encrypted transactions on the TPM bus" bool "Use HMAC and encrypted transactions on the TPM bus"
default y default y
select CRYPTO_ECDH
select CRYPTO_LIB_AESCFB
select CRYPTO_LIB_SHA256 select CRYPTO_LIB_SHA256
help help
Setting this causes us to deploy a scheme which uses request Setting this causes us to deploy a scheme which uses request
......
...@@ -44,6 +44,7 @@ void tpm_buf_reset(struct tpm_buf *buf, u16 tag, u32 ordinal) ...@@ -44,6 +44,7 @@ void tpm_buf_reset(struct tpm_buf *buf, u16 tag, u32 ordinal)
head->tag = cpu_to_be16(tag); head->tag = cpu_to_be16(tag);
head->length = cpu_to_be32(sizeof(*head)); head->length = cpu_to_be32(sizeof(*head));
head->ordinal = cpu_to_be32(ordinal); head->ordinal = cpu_to_be32(ordinal);
buf->handles = 0;
} }
EXPORT_SYMBOL_GPL(tpm_buf_reset); EXPORT_SYMBOL_GPL(tpm_buf_reset);
......
...@@ -275,6 +275,9 @@ static void tpm_dev_release(struct device *dev) ...@@ -275,6 +275,9 @@ static void tpm_dev_release(struct device *dev)
kfree(chip->work_space.context_buf); kfree(chip->work_space.context_buf);
kfree(chip->work_space.session_buf); kfree(chip->work_space.session_buf);
kfree(chip->allocated_banks); kfree(chip->allocated_banks);
#ifdef CONFIG_TCG_TPM2_HMAC
kfree(chip->auth);
#endif
kfree(chip); kfree(chip);
} }
......
This diff is collapsed.
...@@ -31,6 +31,14 @@ ...@@ -31,6 +31,14 @@
struct tpm_chip; struct tpm_chip;
struct trusted_key_payload; struct trusted_key_payload;
struct trusted_key_options; struct trusted_key_options;
/* opaque structure, holds auth session parameters like the session key */
struct tpm2_auth;
enum tpm2_session_types {
TPM2_SE_HMAC = 0x00,
TPM2_SE_POLICY = 0x01,
TPM2_SE_TRIAL = 0x02,
};
/* if you add a new hash to this, increment TPM_MAX_HASHES below */ /* if you add a new hash to this, increment TPM_MAX_HASHES below */
enum tpm_algorithms { enum tpm_algorithms {
...@@ -203,6 +211,7 @@ struct tpm_chip { ...@@ -203,6 +211,7 @@ struct tpm_chip {
u8 null_key_name[TPM2_NAME_SIZE]; u8 null_key_name[TPM2_NAME_SIZE];
u8 null_ec_key_x[EC_PT_SZ]; u8 null_ec_key_x[EC_PT_SZ];
u8 null_ec_key_y[EC_PT_SZ]; u8 null_ec_key_y[EC_PT_SZ];
struct tpm2_auth *auth;
#endif #endif
}; };
...@@ -266,6 +275,7 @@ enum tpm2_command_codes { ...@@ -266,6 +275,7 @@ enum tpm2_command_codes {
TPM2_CC_CONTEXT_LOAD = 0x0161, TPM2_CC_CONTEXT_LOAD = 0x0161,
TPM2_CC_CONTEXT_SAVE = 0x0162, TPM2_CC_CONTEXT_SAVE = 0x0162,
TPM2_CC_FLUSH_CONTEXT = 0x0165, TPM2_CC_FLUSH_CONTEXT = 0x0165,
TPM2_CC_START_AUTH_SESS = 0x0176,
TPM2_CC_VERIFY_SIGNATURE = 0x0177, TPM2_CC_VERIFY_SIGNATURE = 0x0177,
TPM2_CC_GET_CAPABILITY = 0x017A, TPM2_CC_GET_CAPABILITY = 0x017A,
TPM2_CC_GET_RANDOM = 0x017B, TPM2_CC_GET_RANDOM = 0x017B,
...@@ -349,16 +359,21 @@ struct tpm_buf { ...@@ -349,16 +359,21 @@ struct tpm_buf {
u32 flags; u32 flags;
u32 length; u32 length;
u8 *data; u8 *data;
u8 handles;
}; };
enum tpm2_object_attributes { enum tpm2_object_attributes {
TPM2_OA_FIXED_TPM = BIT(1), TPM2_OA_FIXED_TPM = BIT(1),
TPM2_OA_ST_CLEAR = BIT(2),
TPM2_OA_FIXED_PARENT = BIT(4), TPM2_OA_FIXED_PARENT = BIT(4),
TPM2_OA_SENSITIVE_DATA_ORIGIN = BIT(5), TPM2_OA_SENSITIVE_DATA_ORIGIN = BIT(5),
TPM2_OA_USER_WITH_AUTH = BIT(6), TPM2_OA_USER_WITH_AUTH = BIT(6),
TPM2_OA_ADMIN_WITH_POLICY = BIT(7),
TPM2_OA_NO_DA = BIT(10), TPM2_OA_NO_DA = BIT(10),
TPM2_OA_ENCRYPTED_DUPLICATION = BIT(11),
TPM2_OA_RESTRICTED = BIT(16), TPM2_OA_RESTRICTED = BIT(16),
TPM2_OA_DECRYPT = BIT(17), TPM2_OA_DECRYPT = BIT(17),
TPM2_OA_SIGN = BIT(18),
}; };
/* /*
...@@ -378,6 +393,11 @@ enum tpm2_object_attributes { ...@@ -378,6 +393,11 @@ enum tpm2_object_attributes {
enum tpm2_session_attributes { enum tpm2_session_attributes {
TPM2_SA_CONTINUE_SESSION = BIT(0), TPM2_SA_CONTINUE_SESSION = BIT(0),
TPM2_SA_AUDIT_EXCLUSIVE = BIT(1),
TPM2_SA_AUDIT_RESET = BIT(3),
TPM2_SA_DECRYPT = BIT(5),
TPM2_SA_ENCRYPT = BIT(6),
TPM2_SA_AUDIT = BIT(7),
}; };
struct tpm2_hash { struct tpm2_hash {
...@@ -469,4 +489,18 @@ static inline void tpm_buf_append_empty_auth(struct tpm_buf *buf, u32 handle) ...@@ -469,4 +489,18 @@ static inline void tpm_buf_append_empty_auth(struct tpm_buf *buf, u32 handle)
{ {
} }
#endif #endif
#ifdef CONFIG_TCG_TPM2_HMAC
int tpm2_start_auth_session(struct tpm_chip *chip);
void tpm2_end_auth_session(struct tpm_chip *chip);
#else
static inline int tpm2_start_auth_session(struct tpm_chip *chip)
{
return 0;
}
static inline void tpm2_end_auth_session(struct tpm_chip *chip)
{
}
#endif /* CONFIG_TCG_TPM2_HMAC */
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment