2 * Copyright (C) 2014, 2015 Intel Corporation
5 * Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
7 * Maintained by: <tpmdd-devel@lists.sourceforge.net>
9 * This file contains TPM2 protocol implementations of the commands
10 * used by the kernel internally.
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; version 2
19 #include <crypto/hash_info.h>
20 #include <keys/trusted-type.h>
22 enum tpm2_object_attributes
{
23 TPM2_OA_USER_WITH_AUTH
= BIT(6),
26 enum tpm2_session_attributes
{
27 TPM2_SA_CONTINUE_SESSION
= BIT(0),
31 unsigned int crypto_id
;
35 static struct tpm2_hash tpm2_hash_map
[] = {
36 {HASH_ALGO_SHA1
, TPM2_ALG_SHA1
},
37 {HASH_ALGO_SHA256
, TPM2_ALG_SHA256
},
38 {HASH_ALGO_SHA384
, TPM2_ALG_SHA384
},
39 {HASH_ALGO_SHA512
, TPM2_ALG_SHA512
},
40 {HASH_ALGO_SM3_256
, TPM2_ALG_SM3_256
},
44 * Array with one entry per ordinal defining the maximum amount
45 * of time the chip could take to return the result. The values
46 * of the SHORT, MEDIUM, and LONG durations are taken from the
47 * PC Client Profile (PTP) specification.
48 * LONG_LONG is for commands that generates keys which empirically
49 * takes longer time on some systems.
51 static const u8 tpm2_ordinal_duration
[TPM2_CC_LAST
- TPM2_CC_FIRST
+ 1] = {
52 TPM_UNDEFINED
, /* 11F */
53 TPM_UNDEFINED
, /* 120 */
55 TPM_UNDEFINED
, /* 122 */
56 TPM_UNDEFINED
, /* 123 */
57 TPM_UNDEFINED
, /* 124 */
58 TPM_UNDEFINED
, /* 125 */
59 TPM_UNDEFINED
, /* 126 */
60 TPM_UNDEFINED
, /* 127 */
61 TPM_UNDEFINED
, /* 128 */
63 TPM_UNDEFINED
, /* 12a */
64 TPM_UNDEFINED
, /* 12b */
65 TPM_UNDEFINED
, /* 12c */
66 TPM_UNDEFINED
, /* 12d */
67 TPM_UNDEFINED
, /* 12e */
68 TPM_UNDEFINED
, /* 12f */
69 TPM_UNDEFINED
, /* 130 */
70 TPM_LONG_LONG
, /* 131 */
71 TPM_UNDEFINED
, /* 132 */
72 TPM_UNDEFINED
, /* 133 */
73 TPM_UNDEFINED
, /* 134 */
74 TPM_UNDEFINED
, /* 135 */
75 TPM_UNDEFINED
, /* 136 */
76 TPM_UNDEFINED
, /* 137 */
77 TPM_UNDEFINED
, /* 138 */
78 TPM_UNDEFINED
, /* 139 */
79 TPM_UNDEFINED
, /* 13a */
80 TPM_UNDEFINED
, /* 13b */
81 TPM_UNDEFINED
, /* 13c */
82 TPM_UNDEFINED
, /* 13d */
84 TPM_UNDEFINED
, /* 13f */
85 TPM_UNDEFINED
, /* 140 */
86 TPM_UNDEFINED
, /* 141 */
87 TPM_UNDEFINED
, /* 142 */
90 TPM_UNDEFINED
, /* 145 */
91 TPM_UNDEFINED
, /* 146 */
92 TPM_UNDEFINED
, /* 147 */
93 TPM_UNDEFINED
, /* 148 */
94 TPM_UNDEFINED
, /* 149 */
95 TPM_UNDEFINED
, /* 14a */
96 TPM_UNDEFINED
, /* 14b */
97 TPM_UNDEFINED
, /* 14c */
98 TPM_UNDEFINED
, /* 14d */
100 TPM_UNDEFINED
, /* 14f */
101 TPM_UNDEFINED
, /* 150 */
102 TPM_UNDEFINED
, /* 151 */
103 TPM_UNDEFINED
, /* 152 */
104 TPM_LONG_LONG
, /* 153 */
105 TPM_UNDEFINED
, /* 154 */
106 TPM_UNDEFINED
, /* 155 */
107 TPM_UNDEFINED
, /* 156 */
108 TPM_UNDEFINED
, /* 157 */
109 TPM_UNDEFINED
, /* 158 */
110 TPM_UNDEFINED
, /* 159 */
111 TPM_UNDEFINED
, /* 15a */
112 TPM_UNDEFINED
, /* 15b */
113 TPM_MEDIUM
, /* 15c */
114 TPM_UNDEFINED
, /* 15d */
115 TPM_UNDEFINED
, /* 15e */
116 TPM_UNDEFINED
, /* 15f */
117 TPM_UNDEFINED
, /* 160 */
118 TPM_UNDEFINED
, /* 161 */
119 TPM_UNDEFINED
, /* 162 */
120 TPM_UNDEFINED
, /* 163 */
121 TPM_UNDEFINED
, /* 164 */
122 TPM_UNDEFINED
, /* 165 */
123 TPM_UNDEFINED
, /* 166 */
124 TPM_UNDEFINED
, /* 167 */
125 TPM_UNDEFINED
, /* 168 */
126 TPM_UNDEFINED
, /* 169 */
127 TPM_UNDEFINED
, /* 16a */
128 TPM_UNDEFINED
, /* 16b */
129 TPM_UNDEFINED
, /* 16c */
130 TPM_UNDEFINED
, /* 16d */
131 TPM_UNDEFINED
, /* 16e */
132 TPM_UNDEFINED
, /* 16f */
133 TPM_UNDEFINED
, /* 170 */
134 TPM_UNDEFINED
, /* 171 */
135 TPM_UNDEFINED
, /* 172 */
136 TPM_UNDEFINED
, /* 173 */
137 TPM_UNDEFINED
, /* 174 */
138 TPM_UNDEFINED
, /* 175 */
139 TPM_UNDEFINED
, /* 176 */
141 TPM_UNDEFINED
, /* 178 */
142 TPM_UNDEFINED
, /* 179 */
143 TPM_MEDIUM
, /* 17a */
145 TPM_UNDEFINED
, /* 17c */
146 TPM_UNDEFINED
, /* 17d */
147 TPM_UNDEFINED
, /* 17e */
148 TPM_UNDEFINED
, /* 17f */
149 TPM_UNDEFINED
, /* 180 */
150 TPM_UNDEFINED
, /* 181 */
151 TPM_MEDIUM
, /* 182 */
152 TPM_UNDEFINED
, /* 183 */
153 TPM_UNDEFINED
, /* 184 */
154 TPM_MEDIUM
, /* 185 */
155 TPM_MEDIUM
, /* 186 */
156 TPM_UNDEFINED
, /* 187 */
157 TPM_UNDEFINED
, /* 188 */
158 TPM_UNDEFINED
, /* 189 */
159 TPM_UNDEFINED
, /* 18a */
160 TPM_UNDEFINED
, /* 18b */
161 TPM_UNDEFINED
, /* 18c */
162 TPM_UNDEFINED
, /* 18d */
163 TPM_UNDEFINED
, /* 18e */
164 TPM_UNDEFINED
/* 18f */
167 struct tpm2_pcr_read_out
{
169 __be32 pcr_selects_cnt
;
172 u8 pcr_select
[TPM2_PCR_SELECT_MIN
];
179 * tpm2_pcr_read() - read a PCR value
180 * @chip: TPM chip to use.
181 * @pcr_idx: index of the PCR to read.
182 * @res_buf: buffer to store the resulting hash.
184 * Return: Same as with tpm_transmit_cmd.
186 int tpm2_pcr_read(struct tpm_chip
*chip
, int pcr_idx
, u8
*res_buf
)
190 struct tpm2_pcr_read_out
*out
;
191 u8 pcr_select
[TPM2_PCR_SELECT_MIN
] = {0};
193 if (pcr_idx
>= TPM2_PLATFORM_PCR
)
196 rc
= tpm_buf_init(&buf
, TPM2_ST_NO_SESSIONS
, TPM2_CC_PCR_READ
);
200 pcr_select
[pcr_idx
>> 3] = 1 << (pcr_idx
& 0x7);
202 tpm_buf_append_u32(&buf
, 1);
203 tpm_buf_append_u16(&buf
, TPM2_ALG_SHA1
);
204 tpm_buf_append_u8(&buf
, TPM2_PCR_SELECT_MIN
);
205 tpm_buf_append(&buf
, (const unsigned char *)pcr_select
,
208 rc
= tpm_transmit_cmd(chip
, NULL
, buf
.data
, PAGE_SIZE
, 0, 0,
209 res_buf
? "attempting to read a pcr value" : NULL
);
210 if (rc
== 0 && res_buf
) {
211 out
= (struct tpm2_pcr_read_out
*)&buf
.data
[TPM_HEADER_SIZE
];
212 memcpy(res_buf
, out
->digest
, SHA1_DIGEST_SIZE
);
215 tpm_buf_destroy(&buf
);
219 struct tpm2_null_auth_area
{
227 * tpm2_pcr_extend() - extend a PCR value
229 * @chip: TPM chip to use.
230 * @pcr_idx: index of the PCR.
231 * @count: number of digests passed.
232 * @digests: list of pcr banks and corresponding digest values to extend.
234 * Return: Same as with tpm_transmit_cmd.
236 int tpm2_pcr_extend(struct tpm_chip
*chip
, int pcr_idx
, u32 count
,
237 struct tpm2_digest
*digests
)
240 struct tpm2_null_auth_area auth_area
;
245 if (count
> ARRAY_SIZE(chip
->active_banks
))
248 rc
= tpm_buf_init(&buf
, TPM2_ST_SESSIONS
, TPM2_CC_PCR_EXTEND
);
252 tpm_buf_append_u32(&buf
, pcr_idx
);
254 auth_area
.handle
= cpu_to_be32(TPM2_RS_PW
);
255 auth_area
.nonce_size
= 0;
256 auth_area
.attributes
= 0;
257 auth_area
.auth_size
= 0;
259 tpm_buf_append_u32(&buf
, sizeof(struct tpm2_null_auth_area
));
260 tpm_buf_append(&buf
, (const unsigned char *)&auth_area
,
262 tpm_buf_append_u32(&buf
, count
);
264 for (i
= 0; i
< count
; i
++) {
265 for (j
= 0; j
< ARRAY_SIZE(tpm2_hash_map
); j
++) {
266 if (digests
[i
].alg_id
!= tpm2_hash_map
[j
].tpm_id
)
268 tpm_buf_append_u16(&buf
, digests
[i
].alg_id
);
269 tpm_buf_append(&buf
, (const unsigned char
270 *)&digests
[i
].digest
,
271 hash_digest_size
[tpm2_hash_map
[j
].crypto_id
]);
275 rc
= tpm_transmit_cmd(chip
, NULL
, buf
.data
, PAGE_SIZE
, 0, 0,
276 "attempting extend a PCR value");
278 tpm_buf_destroy(&buf
);
284 struct tpm2_get_random_out
{
286 u8 buffer
[TPM_MAX_RNG_DATA
];
290 * tpm2_get_random() - get random bytes from the TPM RNG
292 * @chip: a &tpm_chip instance
293 * @dest: destination buffer
294 * @max: the max number of random bytes to pull
297 * size of the buffer on success,
300 int tpm2_get_random(struct tpm_chip
*chip
, u8
*dest
, size_t max
)
302 struct tpm2_get_random_out
*out
;
311 if (!num_bytes
|| max
> TPM_MAX_RNG_DATA
)
314 err
= tpm_buf_init(&buf
, 0, 0);
319 tpm_buf_reset(&buf
, TPM2_ST_NO_SESSIONS
, TPM2_CC_GET_RANDOM
);
320 tpm_buf_append_u16(&buf
, num_bytes
);
321 err
= tpm_transmit_cmd(chip
, NULL
, buf
.data
, PAGE_SIZE
,
322 offsetof(struct tpm2_get_random_out
,
324 0, "attempting get random");
328 out
= (struct tpm2_get_random_out
*)
329 &buf
.data
[TPM_HEADER_SIZE
];
330 recd
= min_t(u32
, be16_to_cpu(out
->size
), num_bytes
);
331 if (tpm_buf_length(&buf
) <
333 offsetof(struct tpm2_get_random_out
, buffer
) +
338 memcpy(dest_ptr
, out
->buffer
, recd
);
343 } while (retries
-- && total
< max
);
345 tpm_buf_destroy(&buf
);
346 return total
? total
: -EIO
;
348 tpm_buf_destroy(&buf
);
353 * tpm2_flush_context_cmd() - execute a TPM2_FlushContext command
354 * @chip: TPM chip to use
355 * @payload: the key data in clear and encrypted form
356 * @options: authentication values and other options
358 * Return: same as with tpm_transmit_cmd
360 void tpm2_flush_context_cmd(struct tpm_chip
*chip
, u32 handle
,
366 rc
= tpm_buf_init(&buf
, TPM2_ST_NO_SESSIONS
, TPM2_CC_FLUSH_CONTEXT
);
368 dev_warn(&chip
->dev
, "0x%08x was not flushed, out of memory\n",
373 tpm_buf_append_u32(&buf
, handle
);
375 (void) tpm_transmit_cmd(chip
, NULL
, buf
.data
, PAGE_SIZE
, 0, flags
,
378 tpm_buf_destroy(&buf
);
382 * tpm_buf_append_auth() - append TPMS_AUTH_COMMAND to the buffer.
384 * @buf: an allocated tpm_buf instance
385 * @session_handle: session handle
386 * @nonce: the session nonce, may be NULL if not used
387 * @nonce_len: the session nonce length, may be 0 if not used
388 * @attributes: the session attributes
389 * @hmac: the session HMAC or password, may be NULL if not used
390 * @hmac_len: the session HMAC or password length, maybe 0 if not used
392 static void tpm2_buf_append_auth(struct tpm_buf
*buf
, u32 session_handle
,
393 const u8
*nonce
, u16 nonce_len
,
395 const u8
*hmac
, u16 hmac_len
)
397 tpm_buf_append_u32(buf
, 9 + nonce_len
+ hmac_len
);
398 tpm_buf_append_u32(buf
, session_handle
);
399 tpm_buf_append_u16(buf
, nonce_len
);
401 if (nonce
&& nonce_len
)
402 tpm_buf_append(buf
, nonce
, nonce_len
);
404 tpm_buf_append_u8(buf
, attributes
);
405 tpm_buf_append_u16(buf
, hmac_len
);
407 if (hmac
&& hmac_len
)
408 tpm_buf_append(buf
, hmac
, hmac_len
);
412 * tpm2_seal_trusted() - seal the payload of a trusted key
414 * @chip: TPM chip to use
415 * @payload: the key data in clear and encrypted form
416 * @options: authentication values and other options
418 * Return: < 0 on error and 0 on success.
420 int tpm2_seal_trusted(struct tpm_chip
*chip
,
421 struct trusted_key_payload
*payload
,
422 struct trusted_key_options
*options
)
424 unsigned int blob_len
;
430 for (i
= 0; i
< ARRAY_SIZE(tpm2_hash_map
); i
++) {
431 if (options
->hash
== tpm2_hash_map
[i
].crypto_id
) {
432 hash
= tpm2_hash_map
[i
].tpm_id
;
437 if (i
== ARRAY_SIZE(tpm2_hash_map
))
440 rc
= tpm_buf_init(&buf
, TPM2_ST_SESSIONS
, TPM2_CC_CREATE
);
444 tpm_buf_append_u32(&buf
, options
->keyhandle
);
445 tpm2_buf_append_auth(&buf
, TPM2_RS_PW
,
447 0 /* session_attributes */,
448 options
->keyauth
/* hmac */,
452 tpm_buf_append_u16(&buf
, 4 + TPM_DIGEST_SIZE
+ payload
->key_len
+ 1);
454 tpm_buf_append_u16(&buf
, TPM_DIGEST_SIZE
);
455 tpm_buf_append(&buf
, options
->blobauth
, TPM_DIGEST_SIZE
);
456 tpm_buf_append_u16(&buf
, payload
->key_len
+ 1);
457 tpm_buf_append(&buf
, payload
->key
, payload
->key_len
);
458 tpm_buf_append_u8(&buf
, payload
->migratable
);
461 tpm_buf_append_u16(&buf
, 14 + options
->policydigest_len
);
462 tpm_buf_append_u16(&buf
, TPM2_ALG_KEYEDHASH
);
463 tpm_buf_append_u16(&buf
, hash
);
466 if (options
->policydigest_len
) {
467 tpm_buf_append_u32(&buf
, 0);
468 tpm_buf_append_u16(&buf
, options
->policydigest_len
);
469 tpm_buf_append(&buf
, options
->policydigest
,
470 options
->policydigest_len
);
472 tpm_buf_append_u32(&buf
, TPM2_OA_USER_WITH_AUTH
);
473 tpm_buf_append_u16(&buf
, 0);
476 /* public parameters */
477 tpm_buf_append_u16(&buf
, TPM2_ALG_NULL
);
478 tpm_buf_append_u16(&buf
, 0);
481 tpm_buf_append_u16(&buf
, 0);
484 tpm_buf_append_u32(&buf
, 0);
486 if (buf
.flags
& TPM_BUF_OVERFLOW
) {
491 rc
= tpm_transmit_cmd(chip
, NULL
, buf
.data
, PAGE_SIZE
, 4, 0,
496 blob_len
= be32_to_cpup((__be32
*) &buf
.data
[TPM_HEADER_SIZE
]);
497 if (blob_len
> MAX_BLOB_SIZE
) {
501 if (tpm_buf_length(&buf
) < TPM_HEADER_SIZE
+ 4 + blob_len
) {
506 memcpy(payload
->blob
, &buf
.data
[TPM_HEADER_SIZE
+ 4], blob_len
);
507 payload
->blob_len
= blob_len
;
510 tpm_buf_destroy(&buf
);
513 if (tpm2_rc_value(rc
) == TPM2_RC_HASH
)
523 * tpm2_load_cmd() - execute a TPM2_Load command
525 * @chip: TPM chip to use
526 * @payload: the key data in clear and encrypted form
527 * @options: authentication values and other options
528 * @blob_handle: returned blob handle
529 * @flags: tpm transmit flags
531 * Return: 0 on success.
532 * -E2BIG on wrong payload size.
533 * -EPERM on tpm error status.
534 * < 0 error from tpm_transmit_cmd.
536 static int tpm2_load_cmd(struct tpm_chip
*chip
,
537 struct trusted_key_payload
*payload
,
538 struct trusted_key_options
*options
,
539 u32
*blob_handle
, unsigned int flags
)
542 unsigned int private_len
;
543 unsigned int public_len
;
544 unsigned int blob_len
;
547 private_len
= be16_to_cpup((__be16
*) &payload
->blob
[0]);
548 if (private_len
> (payload
->blob_len
- 2))
551 public_len
= be16_to_cpup((__be16
*) &payload
->blob
[2 + private_len
]);
552 blob_len
= private_len
+ public_len
+ 4;
553 if (blob_len
> payload
->blob_len
)
556 rc
= tpm_buf_init(&buf
, TPM2_ST_SESSIONS
, TPM2_CC_LOAD
);
560 tpm_buf_append_u32(&buf
, options
->keyhandle
);
561 tpm2_buf_append_auth(&buf
, TPM2_RS_PW
,
563 0 /* session_attributes */,
564 options
->keyauth
/* hmac */,
567 tpm_buf_append(&buf
, payload
->blob
, blob_len
);
569 if (buf
.flags
& TPM_BUF_OVERFLOW
) {
574 rc
= tpm_transmit_cmd(chip
, NULL
, buf
.data
, PAGE_SIZE
, 4, flags
,
577 *blob_handle
= be32_to_cpup(
578 (__be32
*) &buf
.data
[TPM_HEADER_SIZE
]);
581 tpm_buf_destroy(&buf
);
590 * tpm2_unseal_cmd() - execute a TPM2_Unload command
592 * @chip: TPM chip to use
593 * @payload: the key data in clear and encrypted form
594 * @options: authentication values and other options
595 * @blob_handle: blob handle
596 * @flags: tpm_transmit_cmd flags
598 * Return: 0 on success
599 * -EPERM on tpm error status
600 * < 0 error from tpm_transmit_cmd
602 static int tpm2_unseal_cmd(struct tpm_chip
*chip
,
603 struct trusted_key_payload
*payload
,
604 struct trusted_key_options
*options
,
605 u32 blob_handle
, unsigned int flags
)
612 rc
= tpm_buf_init(&buf
, TPM2_ST_SESSIONS
, TPM2_CC_UNSEAL
);
616 tpm_buf_append_u32(&buf
, blob_handle
);
617 tpm2_buf_append_auth(&buf
,
618 options
->policyhandle
?
619 options
->policyhandle
: TPM2_RS_PW
,
621 TPM2_SA_CONTINUE_SESSION
,
622 options
->blobauth
/* hmac */,
625 rc
= tpm_transmit_cmd(chip
, NULL
, buf
.data
, PAGE_SIZE
, 6, flags
,
631 data_len
= be16_to_cpup(
632 (__be16
*) &buf
.data
[TPM_HEADER_SIZE
+ 4]);
633 if (data_len
< MIN_KEY_SIZE
|| data_len
> MAX_KEY_SIZE
+ 1) {
638 if (tpm_buf_length(&buf
) < TPM_HEADER_SIZE
+ 6 + data_len
) {
642 data
= &buf
.data
[TPM_HEADER_SIZE
+ 6];
644 memcpy(payload
->key
, data
, data_len
- 1);
645 payload
->key_len
= data_len
- 1;
646 payload
->migratable
= data
[data_len
- 1];
650 tpm_buf_destroy(&buf
);
655 * tpm2_unseal_trusted() - unseal the payload of a trusted key
657 * @chip: TPM chip to use
658 * @payload: the key data in clear and encrypted form
659 * @options: authentication values and other options
661 * Return: Same as with tpm_transmit_cmd.
663 int tpm2_unseal_trusted(struct tpm_chip
*chip
,
664 struct trusted_key_payload
*payload
,
665 struct trusted_key_options
*options
)
670 mutex_lock(&chip
->tpm_mutex
);
671 rc
= tpm2_load_cmd(chip
, payload
, options
, &blob_handle
,
672 TPM_TRANSMIT_UNLOCKED
);
676 rc
= tpm2_unseal_cmd(chip
, payload
, options
, blob_handle
,
677 TPM_TRANSMIT_UNLOCKED
);
678 tpm2_flush_context_cmd(chip
, blob_handle
, TPM_TRANSMIT_UNLOCKED
);
680 mutex_unlock(&chip
->tpm_mutex
);
684 struct tpm2_get_cap_out
{
693 * tpm2_get_tpm_pt() - get value of a TPM_CAP_TPM_PROPERTIES type property
694 * @chip: a &tpm_chip instance
695 * @property_id: property ID.
696 * @value: output variable.
697 * @desc: passed to tpm_transmit_cmd()
701 * -errno or a TPM return code otherwise
703 ssize_t
tpm2_get_tpm_pt(struct tpm_chip
*chip
, u32 property_id
, u32
*value
,
706 struct tpm2_get_cap_out
*out
;
710 rc
= tpm_buf_init(&buf
, TPM2_ST_NO_SESSIONS
, TPM2_CC_GET_CAPABILITY
);
713 tpm_buf_append_u32(&buf
, TPM2_CAP_TPM_PROPERTIES
);
714 tpm_buf_append_u32(&buf
, property_id
);
715 tpm_buf_append_u32(&buf
, 1);
716 rc
= tpm_transmit_cmd(chip
, NULL
, buf
.data
, PAGE_SIZE
, 0, 0, NULL
);
718 out
= (struct tpm2_get_cap_out
*)
719 &buf
.data
[TPM_HEADER_SIZE
];
720 *value
= be32_to_cpu(out
->value
);
722 tpm_buf_destroy(&buf
);
725 EXPORT_SYMBOL_GPL(tpm2_get_tpm_pt
);
728 * tpm2_shutdown() - send a TPM shutdown command
730 * Sends a TPM shutdown command. The shutdown command is used in call
731 * sites where the system is going down. If it fails, there is not much
732 * that can be done except print an error message.
734 * @chip: a &tpm_chip instance
735 * @shutdown_type: TPM_SU_CLEAR or TPM_SU_STATE.
737 void tpm2_shutdown(struct tpm_chip
*chip
, u16 shutdown_type
)
742 rc
= tpm_buf_init(&buf
, TPM2_ST_NO_SESSIONS
, TPM2_CC_SHUTDOWN
);
745 tpm_buf_append_u16(&buf
, shutdown_type
);
746 tpm_transmit_cmd(chip
, NULL
, buf
.data
, PAGE_SIZE
, 0, 0,
748 tpm_buf_destroy(&buf
);
752 * tpm2_calc_ordinal_duration() - maximum duration for a command
754 * @chip: TPM chip to use.
755 * @ordinal: command code number.
757 * Return: maximum duration for a command
759 unsigned long tpm2_calc_ordinal_duration(struct tpm_chip
*chip
, u32 ordinal
)
761 int index
= TPM_UNDEFINED
;
764 if (ordinal
>= TPM2_CC_FIRST
&& ordinal
<= TPM2_CC_LAST
)
765 index
= tpm2_ordinal_duration
[ordinal
- TPM2_CC_FIRST
];
767 if (index
!= TPM_UNDEFINED
)
768 duration
= chip
->duration
[index
];
771 duration
= msecs_to_jiffies(TPM2_DURATION_DEFAULT
);
775 EXPORT_SYMBOL_GPL(tpm2_calc_ordinal_duration
);
778 * tpm2_do_selftest() - ensure that all self tests have passed
780 * @chip: TPM chip to use
782 * Return: Same as with tpm_transmit_cmd.
784 * The TPM can either run all self tests synchronously and then return
785 * RC_SUCCESS once all tests were successful. Or it can choose to run the tests
786 * asynchronously and return RC_TESTING immediately while the self tests still
787 * execute in the background. This function handles both cases and waits until
788 * all tests have completed.
790 static int tpm2_do_selftest(struct tpm_chip
*chip
)
796 for (full
= 0; full
< 2; full
++) {
797 rc
= tpm_buf_init(&buf
, TPM2_ST_NO_SESSIONS
, TPM2_CC_SELF_TEST
);
801 tpm_buf_append_u8(&buf
, full
);
802 rc
= tpm_transmit_cmd(chip
, NULL
, buf
.data
, PAGE_SIZE
, 0, 0,
803 "attempting the self test");
804 tpm_buf_destroy(&buf
);
806 if (rc
== TPM2_RC_TESTING
)
807 rc
= TPM2_RC_SUCCESS
;
808 if (rc
== TPM2_RC_INITIALIZE
|| rc
== TPM2_RC_SUCCESS
)
816 * tpm2_probe() - probe for the TPM 2.0 protocol
817 * @chip: a &tpm_chip instance
819 * Send an idempotent TPM 2.0 command and see whether there is TPM2 chip in the
820 * other end based on the response tag. The flag TPM_CHIP_FLAG_TPM2 is set by
821 * this function if this is the case.
827 int tpm2_probe(struct tpm_chip
*chip
)
829 struct tpm_output_header
*out
;
833 rc
= tpm_buf_init(&buf
, TPM2_ST_NO_SESSIONS
, TPM2_CC_GET_CAPABILITY
);
836 tpm_buf_append_u32(&buf
, TPM2_CAP_TPM_PROPERTIES
);
837 tpm_buf_append_u32(&buf
, TPM_PT_TOTAL_COMMANDS
);
838 tpm_buf_append_u32(&buf
, 1);
839 rc
= tpm_transmit_cmd(chip
, NULL
, buf
.data
, PAGE_SIZE
, 0, 0, NULL
);
840 /* We ignore TPM return codes on purpose. */
842 out
= (struct tpm_output_header
*)buf
.data
;
843 if (be16_to_cpu(out
->tag
) == TPM2_ST_NO_SESSIONS
)
844 chip
->flags
|= TPM_CHIP_FLAG_TPM2
;
846 tpm_buf_destroy(&buf
);
849 EXPORT_SYMBOL_GPL(tpm2_probe
);
851 struct tpm2_pcr_selection
{
857 static ssize_t
tpm2_get_pcr_allocation(struct tpm_chip
*chip
)
859 struct tpm2_pcr_selection pcr_selection
;
863 void *pcr_select_offset
;
865 u32 sizeof_pcr_selection
;
870 rc
= tpm_buf_init(&buf
, TPM2_ST_NO_SESSIONS
, TPM2_CC_GET_CAPABILITY
);
874 tpm_buf_append_u32(&buf
, TPM2_CAP_PCRS
);
875 tpm_buf_append_u32(&buf
, 0);
876 tpm_buf_append_u32(&buf
, 1);
878 rc
= tpm_transmit_cmd(chip
, NULL
, buf
.data
, PAGE_SIZE
, 9, 0,
879 "get tpm pcr allocation");
883 count
= be32_to_cpup(
884 (__be32
*)&buf
.data
[TPM_HEADER_SIZE
+ 5]);
886 if (count
> ARRAY_SIZE(chip
->active_banks
)) {
891 marker
= &buf
.data
[TPM_HEADER_SIZE
+ 9];
893 rsp_len
= be32_to_cpup((__be32
*)&buf
.data
[2]);
894 end
= &buf
.data
[rsp_len
];
896 for (i
= 0; i
< count
; i
++) {
897 pcr_select_offset
= marker
+
898 offsetof(struct tpm2_pcr_selection
, size_of_select
);
899 if (pcr_select_offset
>= end
) {
904 memcpy(&pcr_selection
, marker
, sizeof(pcr_selection
));
905 chip
->active_banks
[i
] = be16_to_cpu(pcr_selection
.hash_alg
);
906 sizeof_pcr_selection
= sizeof(pcr_selection
.hash_alg
) +
907 sizeof(pcr_selection
.size_of_select
) +
908 pcr_selection
.size_of_select
;
909 marker
= marker
+ sizeof_pcr_selection
;
913 if (i
< ARRAY_SIZE(chip
->active_banks
))
914 chip
->active_banks
[i
] = TPM2_ALG_ERROR
;
916 tpm_buf_destroy(&buf
);
921 static int tpm2_get_cc_attrs_tbl(struct tpm_chip
*chip
)
930 rc
= tpm2_get_tpm_pt(chip
, TPM_PT_TOTAL_COMMANDS
, &nr_commands
, NULL
);
934 if (nr_commands
> 0xFFFFF) {
939 chip
->cc_attrs_tbl
= devm_kcalloc(&chip
->dev
, 4, nr_commands
,
941 if (!chip
->cc_attrs_tbl
) {
946 rc
= tpm_buf_init(&buf
, TPM2_ST_NO_SESSIONS
, TPM2_CC_GET_CAPABILITY
);
950 tpm_buf_append_u32(&buf
, TPM2_CAP_COMMANDS
);
951 tpm_buf_append_u32(&buf
, TPM2_CC_FIRST
);
952 tpm_buf_append_u32(&buf
, nr_commands
);
954 rc
= tpm_transmit_cmd(chip
, NULL
, buf
.data
, PAGE_SIZE
,
955 9 + 4 * nr_commands
, 0, NULL
);
957 tpm_buf_destroy(&buf
);
962 be32_to_cpup((__be32
*)&buf
.data
[TPM_HEADER_SIZE
+ 5])) {
963 tpm_buf_destroy(&buf
);
967 chip
->nr_commands
= nr_commands
;
969 attrs
= (__be32
*)&buf
.data
[TPM_HEADER_SIZE
+ 9];
970 for (i
= 0; i
< nr_commands
; i
++, attrs
++) {
971 chip
->cc_attrs_tbl
[i
] = be32_to_cpup(attrs
);
972 cc
= chip
->cc_attrs_tbl
[i
] & 0xFFFF;
974 if (cc
== TPM2_CC_CONTEXT_SAVE
|| cc
== TPM2_CC_FLUSH_CONTEXT
) {
975 chip
->cc_attrs_tbl
[i
] &=
976 ~(GENMASK(2, 0) << TPM2_CC_ATTR_CHANDLES
);
977 chip
->cc_attrs_tbl
[i
] |= 1 << TPM2_CC_ATTR_CHANDLES
;
981 tpm_buf_destroy(&buf
);
990 * tpm2_auto_startup - Perform the standard automatic TPM initialization
992 * @chip: TPM chip to use
994 * Returns 0 on success, < 0 in case of fatal error.
996 int tpm2_auto_startup(struct tpm_chip
*chip
)
1000 rc
= tpm_get_timeouts(chip
);
1004 rc
= tpm2_do_selftest(chip
);
1005 if (rc
&& rc
!= TPM2_RC_INITIALIZE
)
1008 if (rc
== TPM2_RC_INITIALIZE
) {
1009 rc
= tpm_startup(chip
);
1013 rc
= tpm2_do_selftest(chip
);
1018 rc
= tpm2_get_pcr_allocation(chip
);
1022 rc
= tpm2_get_cc_attrs_tbl(chip
);
1030 int tpm2_find_cc(struct tpm_chip
*chip
, u32 cc
)
1034 for (i
= 0; i
< chip
->nr_commands
; i
++)
1035 if (cc
== (chip
->cc_attrs_tbl
[i
] & GENMASK(15, 0)))