blob: be1aa2c705bbb3716ddad75582139e7c33df9d82 [file] [log] [blame]
Miquel Raynalff322452018-05-15 11:57:08 +02001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (c) 2018 Bootlin
4 * Author: Miquel Raynal <miquel.raynal@bootlin.com>
5 */
6
7#ifndef __TPM_V2_H
8#define __TPM_V2_H
9
10#include <tpm-common.h>
11
12#define TPM2_DIGEST_LEN 32
13
14/**
15 * TPM2 Structure Tags for command/response buffers.
16 *
17 * @TPM2_ST_NO_SESSIONS: the command does not need an authentication.
18 * @TPM2_ST_SESSIONS: the command needs an authentication.
19 */
20enum tpm2_structures {
21 TPM2_ST_NO_SESSIONS = 0x8001,
22 TPM2_ST_SESSIONS = 0x8002,
23};
24
25/**
26 * TPM2 type of boolean.
27 */
28enum tpm2_yes_no {
29 TPMI_YES = 1,
30 TPMI_NO = 0,
31};
32
33/**
34 * TPM2 startup values.
35 *
36 * @TPM2_SU_CLEAR: reset the internal state.
37 * @TPM2_SU_STATE: restore saved state (if any).
38 */
39enum tpm2_startup_types {
40 TPM2_SU_CLEAR = 0x0000,
41 TPM2_SU_STATE = 0x0001,
42};
43
44/**
45 * TPM2 permanent handles.
46 *
47 * @TPM2_RH_OWNER: refers to the 'owner' hierarchy.
48 * @TPM2_RS_PW: indicates a password.
49 * @TPM2_RH_LOCKOUT: refers to the 'lockout' hierarchy.
50 * @TPM2_RH_ENDORSEMENT: refers to the 'endorsement' hierarchy.
51 * @TPM2_RH_PLATFORM: refers to the 'platform' hierarchy.
52 */
53enum tpm2_handles {
54 TPM2_RH_OWNER = 0x40000001,
55 TPM2_RS_PW = 0x40000009,
56 TPM2_RH_LOCKOUT = 0x4000000A,
57 TPM2_RH_ENDORSEMENT = 0x4000000B,
58 TPM2_RH_PLATFORM = 0x4000000C,
59};
60
61/**
62 * TPM2 command codes used at the beginning of a buffer, gives the command.
63 *
64 * @TPM2_CC_STARTUP: TPM2_Startup().
65 * @TPM2_CC_SELF_TEST: TPM2_SelfTest().
66 * @TPM2_CC_CLEAR: TPM2_Clear().
67 * @TPM2_CC_CLEARCONTROL: TPM2_ClearControl().
68 * @TPM2_CC_HIERCHANGEAUTH: TPM2_HierarchyChangeAuth().
69 * @TPM2_CC_PCR_SETAUTHPOL: TPM2_PCR_SetAuthPolicy().
70 * @TPM2_CC_DAM_RESET: TPM2_DictionaryAttackLockReset().
71 * @TPM2_CC_DAM_PARAMETERS: TPM2_DictionaryAttackParameters().
72 * @TPM2_CC_GET_CAPABILITY: TPM2_GetCapibility().
73 * @TPM2_CC_PCR_READ: TPM2_PCR_Read().
74 * @TPM2_CC_PCR_EXTEND: TPM2_PCR_Extend().
75 * @TPM2_CC_PCR_SETAUTHVAL: TPM2_PCR_SetAuthValue().
76 */
77enum tpm2_command_codes {
78 TPM2_CC_STARTUP = 0x0144,
79 TPM2_CC_SELF_TEST = 0x0143,
80 TPM2_CC_CLEAR = 0x0126,
81 TPM2_CC_CLEARCONTROL = 0x0127,
82 TPM2_CC_HIERCHANGEAUTH = 0x0129,
83 TPM2_CC_DAM_RESET = 0x0139,
84 TPM2_CC_DAM_PARAMETERS = 0x013A,
85 TPM2_CC_GET_CAPABILITY = 0x017A,
86 TPM2_CC_PCR_READ = 0x017E,
87 TPM2_CC_PCR_EXTEND = 0x0182,
88};
89
90/**
91 * TPM2 return codes.
92 */
93enum tpm2_return_codes {
94 TPM2_RC_SUCCESS = 0x0000,
95 TPM2_RC_BAD_TAG = 0x001E,
96 TPM2_RC_FMT1 = 0x0080,
97 TPM2_RC_HASH = TPM2_RC_FMT1 + 0x0003,
98 TPM2_RC_VALUE = TPM2_RC_FMT1 + 0x0004,
99 TPM2_RC_SIZE = TPM2_RC_FMT1 + 0x0015,
100 TPM2_RC_BAD_AUTH = TPM2_RC_FMT1 + 0x0022,
101 TPM2_RC_HANDLE = TPM2_RC_FMT1 + 0x000B,
102 TPM2_RC_VER1 = 0x0100,
103 TPM2_RC_INITIALIZE = TPM2_RC_VER1 + 0x0000,
104 TPM2_RC_FAILURE = TPM2_RC_VER1 + 0x0001,
105 TPM2_RC_DISABLED = TPM2_RC_VER1 + 0x0020,
106 TPM2_RC_AUTH_MISSING = TPM2_RC_VER1 + 0x0025,
107 TPM2_RC_COMMAND_CODE = TPM2_RC_VER1 + 0x0043,
108 TPM2_RC_AUTHSIZE = TPM2_RC_VER1 + 0x0044,
109 TPM2_RC_AUTH_CONTEXT = TPM2_RC_VER1 + 0x0045,
110 TPM2_RC_NEEDS_TEST = TPM2_RC_VER1 + 0x0053,
111 TPM2_RC_WARN = 0x0900,
112 TPM2_RC_TESTING = TPM2_RC_WARN + 0x000A,
113 TPM2_RC_REFERENCE_H0 = TPM2_RC_WARN + 0x0010,
114 TPM2_RC_LOCKOUT = TPM2_RC_WARN + 0x0021,
115};
116
117/**
118 * TPM2 algorithms.
119 */
120enum tpm2_algorithms {
121 TPM2_ALG_XOR = 0x0A,
122 TPM2_ALG_SHA256 = 0x0B,
123 TPM2_ALG_SHA384 = 0x0C,
124 TPM2_ALG_SHA512 = 0x0D,
125 TPM2_ALG_NULL = 0x10,
126};
127
Miquel Raynal1922df22018-05-15 11:57:12 +0200128/**
129 * Issue a TPM2_Startup command.
130 *
131 * @mode TPM startup mode
132 *
133 * @return code of the operation
134 */
135u32 tpm2_startup(enum tpm2_startup_types mode);
136
Miquel Raynal2dc6d972018-05-15 11:57:13 +0200137/**
138 * Issue a TPM2_SelfTest command.
139 *
140 * @full_test Asking to perform all tests or only the untested ones
141 *
142 * @return code of the operation
143 */
144u32 tpm2_self_test(enum tpm2_yes_no full_test);
145
Miquel Raynalbad8ff52018-05-15 11:57:14 +0200146/**
147 * Issue a TPM2_Clear command.
148 *
149 * @handle Handle
150 * @pw Password
151 * @pw_sz Length of the password
152 *
153 * @return code of the operation
154 */
155u32 tpm2_clear(u32 handle, const char *pw, const ssize_t pw_sz);
156
Miquel Raynal6284be52018-05-15 11:57:15 +0200157/**
158 * Issue a TPM2_PCR_Extend command.
159 *
160 * @index Index of the PCR
161 * @digest Value representing the event to be recorded
162 *
163 * @return code of the operation
164 */
165u32 tpm2_pcr_extend(u32 index, const uint8_t *digest);
166
Miquel Raynal1c4ea8f2018-05-15 11:57:16 +0200167/**
168 * Issue a TPM2_PCR_Read command.
169 *
170 * @idx Index of the PCR
171 * @idx_min_sz Minimum size in bytes of the pcrSelect array
172 * @data Output buffer for contents of the named PCR
173 * @updates Optional out parameter: number of updates for this PCR
174 *
175 * @return code of the operation
176 */
177u32 tpm2_pcr_read(u32 idx, unsigned int idx_min_sz, void *data,
178 unsigned int *updates);
179
Miquel Raynal69cd8f02018-05-15 11:57:17 +0200180/**
181 * Issue a TPM2_GetCapability command. This implementation is limited
182 * to query property index that is 4-byte wide.
183 *
184 * @capability Partition of capabilities
185 * @property Further definition of capability, limited to be 4 bytes wide
186 * @buf Output buffer for capability information
187 * @prop_count Size of output buffer
188 *
189 * @return code of the operation
190 */
191u32 tpm2_get_capability(u32 capability, u32 property, void *buf,
192 size_t prop_count);
193
Miquel Raynalda9c3392018-05-15 11:57:18 +0200194/**
195 * Issue a TPM2_DictionaryAttackLockReset command.
196 *
197 * @pw Password
198 * @pw_sz Length of the password
199 *
200 * @return code of the operation
201 */
202u32 tpm2_dam_reset(const char *pw, const ssize_t pw_sz);
203
204/**
205 * Issue a TPM2_DictionaryAttackParameters command.
206 *
207 * @pw Password
208 * @pw_sz Length of the password
209 * @max_tries Count of authorizations before lockout
210 * @recovery_time Time before decrementation of the failure count
211 * @lockout_recovery Time to wait after a lockout
212 *
213 * @return code of the operation
214 */
215u32 tpm2_dam_parameters(const char *pw, const ssize_t pw_sz,
216 unsigned int max_tries, unsigned int recovery_time,
217 unsigned int lockout_recovery);
218
Miquel Raynaldc26e912018-05-15 11:57:19 +0200219/**
220 * Issue a TPM2_HierarchyChangeAuth command.
221 *
222 * @handle Handle
223 * @newpw New password
224 * @newpw_sz Length of the new password
225 * @oldpw Old password
226 * @oldpw_sz Length of the old password
227 *
228 * @return code of the operation
229 */
230int tpm2_change_auth(u32 handle, const char *newpw, const ssize_t newpw_sz,
231 const char *oldpw, const ssize_t oldpw_sz);
232
Miquel Raynalff322452018-05-15 11:57:08 +0200233#endif /* __TPM_V2_H */