blob: d103545e40550bd6b1f71048400db8b217b2cd29 [file] [log] [blame]
Thomas Gleixnerb886d83c2019-06-01 10:08:55 +02001// SPDX-License-Identifier: GPL-2.0-only
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -08002/*
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03003 * Copyright (C) 2014, 2015 Intel Corporation
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -08004 *
5 * Authors:
6 * Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
7 *
8 * Maintained by: <tpmdd-devel@lists.sourceforge.net>
9 *
10 * This file contains TPM2 protocol implementations of the commands
11 * used by the kernel internally.
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -080012 */
13
14#include "tpm.h"
Jarkko Sakkinen5ca4c202015-11-05 21:43:06 +020015#include <crypto/hash_info.h>
Jarkko Sakkinen954650e2015-05-30 08:09:04 +030016#include <keys/trusted-type.h>
17
18enum tpm2_object_attributes {
Jarkko Sakkinenc0b5eed2016-02-13 11:51:23 +020019 TPM2_OA_USER_WITH_AUTH = BIT(6),
20};
21
22enum tpm2_session_attributes {
23 TPM2_SA_CONTINUE_SESSION = BIT(0),
Jarkko Sakkinen954650e2015-05-30 08:09:04 +030024};
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -080025
Jarkko Sakkinen5ca4c202015-11-05 21:43:06 +020026struct tpm2_hash {
27 unsigned int crypto_id;
28 unsigned int tpm_id;
29};
30
31static struct tpm2_hash tpm2_hash_map[] = {
Roberto Sassuaa042472019-02-06 17:24:48 +010032 {HASH_ALGO_SHA1, TPM_ALG_SHA1},
33 {HASH_ALGO_SHA256, TPM_ALG_SHA256},
34 {HASH_ALGO_SHA384, TPM_ALG_SHA384},
35 {HASH_ALGO_SHA512, TPM_ALG_SHA512},
36 {HASH_ALGO_SM3_256, TPM_ALG_SM3_256},
Jarkko Sakkinen5ca4c202015-11-05 21:43:06 +020037};
38
Tomas Winkler70a31992018-10-19 21:22:52 +030039int tpm2_get_timeouts(struct tpm_chip *chip)
40{
41 /* Fixed timeouts for TPM2 */
42 chip->timeout_a = msecs_to_jiffies(TPM2_TIMEOUT_A);
43 chip->timeout_b = msecs_to_jiffies(TPM2_TIMEOUT_B);
44 chip->timeout_c = msecs_to_jiffies(TPM2_TIMEOUT_C);
45 chip->timeout_d = msecs_to_jiffies(TPM2_TIMEOUT_D);
46
47 /* PTP spec timeouts */
48 chip->duration[TPM_SHORT] = msecs_to_jiffies(TPM2_DURATION_SHORT);
49 chip->duration[TPM_MEDIUM] = msecs_to_jiffies(TPM2_DURATION_MEDIUM);
50 chip->duration[TPM_LONG] = msecs_to_jiffies(TPM2_DURATION_LONG);
51
52 /* Key creation commands long timeouts */
53 chip->duration[TPM_LONG_LONG] =
54 msecs_to_jiffies(TPM2_DURATION_LONG_LONG);
55
56 chip->flags |= TPM_CHIP_FLAG_HAVE_TIMEOUTS;
57
58 return 0;
59}
60
Tomas Winkler899102b2018-10-19 21:22:48 +030061/**
62 * tpm2_ordinal_duration_index() - returns an index to the chip duration table
63 * @ordinal: TPM command ordinal.
64 *
65 * The function returns an index to the chip duration table
66 * (enum tpm_duration), that describes the maximum amount of
67 * time the chip could take to return the result for a particular ordinal.
68 *
69 * The values of the MEDIUM, and LONG durations are taken
70 * from the PC Client Profile (PTP) specification (750, 2000 msec)
71 *
72 * LONG_LONG is for commands that generates keys which empirically takes
73 * a longer time on some systems.
74 *
75 * Return:
76 * * TPM_MEDIUM
77 * * TPM_LONG
78 * * TPM_LONG_LONG
79 * * TPM_UNDEFINED
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -080080 */
Tomas Winkler899102b2018-10-19 21:22:48 +030081static u8 tpm2_ordinal_duration_index(u32 ordinal)
82{
83 switch (ordinal) {
84 /* Startup */
85 case TPM2_CC_STARTUP: /* 144 */
86 return TPM_MEDIUM;
87
88 case TPM2_CC_SELF_TEST: /* 143 */
89 return TPM_LONG;
90
91 case TPM2_CC_GET_RANDOM: /* 17B */
92 return TPM_LONG;
93
94 case TPM2_CC_SEQUENCE_UPDATE: /* 15C */
95 return TPM_MEDIUM;
96 case TPM2_CC_SEQUENCE_COMPLETE: /* 13E */
97 return TPM_MEDIUM;
98 case TPM2_CC_EVENT_SEQUENCE_COMPLETE: /* 185 */
99 return TPM_MEDIUM;
100 case TPM2_CC_HASH_SEQUENCE_START: /* 186 */
101 return TPM_MEDIUM;
102
103 case TPM2_CC_VERIFY_SIGNATURE: /* 177 */
104 return TPM_LONG;
105
106 case TPM2_CC_PCR_EXTEND: /* 182 */
107 return TPM_MEDIUM;
108
109 case TPM2_CC_HIERARCHY_CONTROL: /* 121 */
110 return TPM_LONG;
111 case TPM2_CC_HIERARCHY_CHANGE_AUTH: /* 129 */
112 return TPM_LONG;
113
114 case TPM2_CC_GET_CAPABILITY: /* 17A */
115 return TPM_MEDIUM;
116
117 case TPM2_CC_NV_READ: /* 14E */
118 return TPM_LONG;
119
120 case TPM2_CC_CREATE_PRIMARY: /* 131 */
121 return TPM_LONG_LONG;
122 case TPM2_CC_CREATE: /* 153 */
123 return TPM_LONG_LONG;
124 case TPM2_CC_CREATE_LOADED: /* 191 */
125 return TPM_LONG_LONG;
126
127 default:
128 return TPM_UNDEFINED;
129 }
130}
131
132/**
133 * tpm2_calc_ordinal_duration() - calculate the maximum command duration
134 * @chip: TPM chip to use.
135 * @ordinal: TPM command ordinal.
136 *
137 * The function returns the maximum amount of time the chip could take
138 * to return the result for a particular ordinal in jiffies.
139 *
140 * Return: A maximal duration time for an ordinal in jiffies.
141 */
142unsigned long tpm2_calc_ordinal_duration(struct tpm_chip *chip, u32 ordinal)
143{
144 unsigned int index;
145
146 index = tpm2_ordinal_duration_index(ordinal);
147
148 if (index != TPM_UNDEFINED)
149 return chip->duration[index];
150 else
151 return msecs_to_jiffies(TPM2_DURATION_DEFAULT);
152}
Tomas Winkler899102b2018-10-19 21:22:48 +0300153
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800154
Roberto Sassu91f7f3d2017-06-23 15:41:56 +0200155struct tpm2_pcr_read_out {
156 __be32 update_cnt;
157 __be32 pcr_selects_cnt;
158 __be16 hash_alg;
159 u8 pcr_select_size;
160 u8 pcr_select[TPM2_PCR_SELECT_MIN];
161 __be32 digests_cnt;
162 __be16 digest_size;
163 u8 digest[];
164} __packed;
165
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800166/**
167 * tpm2_pcr_read() - read a PCR value
168 * @chip: TPM chip to use.
169 * @pcr_idx: index of the PCR to read.
Roberto Sassu879b5892019-02-06 17:24:49 +0100170 * @digest: PCR bank and buffer current PCR value is written to.
171 * @digest_size_ptr: pointer to variable that stores the digest size.
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800172 *
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200173 * Return: Same as with tpm_transmit_cmd.
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800174 */
Roberto Sassu879b5892019-02-06 17:24:49 +0100175int tpm2_pcr_read(struct tpm_chip *chip, u32 pcr_idx,
176 struct tpm_digest *digest, u16 *digest_size_ptr)
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800177{
Roberto Sassu879b5892019-02-06 17:24:49 +0100178 int i;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800179 int rc;
Roberto Sassu91f7f3d2017-06-23 15:41:56 +0200180 struct tpm_buf buf;
181 struct tpm2_pcr_read_out *out;
182 u8 pcr_select[TPM2_PCR_SELECT_MIN] = {0};
Roberto Sassu879b5892019-02-06 17:24:49 +0100183 u16 digest_size;
184 u16 expected_digest_size = 0;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800185
186 if (pcr_idx >= TPM2_PLATFORM_PCR)
187 return -EINVAL;
188
Roberto Sassu879b5892019-02-06 17:24:49 +0100189 if (!digest_size_ptr) {
190 for (i = 0; i < chip->nr_allocated_banks &&
191 chip->allocated_banks[i].alg_id != digest->alg_id; i++)
192 ;
193
194 if (i == chip->nr_allocated_banks)
195 return -EINVAL;
196
197 expected_digest_size = chip->allocated_banks[i].digest_size;
198 }
199
Roberto Sassu91f7f3d2017-06-23 15:41:56 +0200200 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_PCR_READ);
201 if (rc)
202 return rc;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800203
Roberto Sassu91f7f3d2017-06-23 15:41:56 +0200204 pcr_select[pcr_idx >> 3] = 1 << (pcr_idx & 0x7);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800205
Roberto Sassu91f7f3d2017-06-23 15:41:56 +0200206 tpm_buf_append_u32(&buf, 1);
Roberto Sassu879b5892019-02-06 17:24:49 +0100207 tpm_buf_append_u16(&buf, digest->alg_id);
Roberto Sassu91f7f3d2017-06-23 15:41:56 +0200208 tpm_buf_append_u8(&buf, TPM2_PCR_SELECT_MIN);
209 tpm_buf_append(&buf, (const unsigned char *)pcr_select,
210 sizeof(pcr_select));
211
Roberto Sassu879b5892019-02-06 17:24:49 +0100212 rc = tpm_transmit_cmd(chip, &buf, 0, "attempting to read a pcr value");
213 if (rc)
214 goto out;
215
216 out = (struct tpm2_pcr_read_out *)&buf.data[TPM_HEADER_SIZE];
217 digest_size = be16_to_cpu(out->digest_size);
218 if (digest_size > sizeof(digest->digest) ||
219 (!digest_size_ptr && digest_size != expected_digest_size)) {
220 rc = -EINVAL;
221 goto out;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800222 }
223
Roberto Sassu879b5892019-02-06 17:24:49 +0100224 if (digest_size_ptr)
225 *digest_size_ptr = digest_size;
226
227 memcpy(digest->digest, out->digest, digest_size);
228out:
Roberto Sassu91f7f3d2017-06-23 15:41:56 +0200229 tpm_buf_destroy(&buf);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800230 return rc;
231}
232
Nayna Jainc1f92b42017-01-30 04:59:41 -0500233struct tpm2_null_auth_area {
234 __be32 handle;
235 __be16 nonce_size;
236 u8 attributes;
237 __be16 auth_size;
238} __packed;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800239
240/**
241 * tpm2_pcr_extend() - extend a PCR value
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200242 *
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800243 * @chip: TPM chip to use.
244 * @pcr_idx: index of the PCR.
Nayna Jainc1f92b42017-01-30 04:59:41 -0500245 * @digests: list of pcr banks and corresponding digest values to extend.
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800246 *
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200247 * Return: Same as with tpm_transmit_cmd.
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800248 */
Roberto Sassu0b6cf6b2019-02-06 17:24:52 +0100249int tpm2_pcr_extend(struct tpm_chip *chip, u32 pcr_idx,
Roberto Sassuaa042472019-02-06 17:24:48 +0100250 struct tpm_digest *digests)
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800251{
Nayna Jainc1f92b42017-01-30 04:59:41 -0500252 struct tpm_buf buf;
253 struct tpm2_null_auth_area auth_area;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800254 int rc;
Nayna Jainc1f92b42017-01-30 04:59:41 -0500255 int i;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800256
Nayna Jainc1f92b42017-01-30 04:59:41 -0500257 rc = tpm_buf_init(&buf, TPM2_ST_SESSIONS, TPM2_CC_PCR_EXTEND);
258 if (rc)
259 return rc;
260
261 tpm_buf_append_u32(&buf, pcr_idx);
262
263 auth_area.handle = cpu_to_be32(TPM2_RS_PW);
264 auth_area.nonce_size = 0;
265 auth_area.attributes = 0;
266 auth_area.auth_size = 0;
267
268 tpm_buf_append_u32(&buf, sizeof(struct tpm2_null_auth_area));
269 tpm_buf_append(&buf, (const unsigned char *)&auth_area,
270 sizeof(auth_area));
Roberto Sassu0b6cf6b2019-02-06 17:24:52 +0100271 tpm_buf_append_u32(&buf, chip->nr_allocated_banks);
Nayna Jainc1f92b42017-01-30 04:59:41 -0500272
Roberto Sassu0b6cf6b2019-02-06 17:24:52 +0100273 for (i = 0; i < chip->nr_allocated_banks; i++) {
Roberto Sassu879b5892019-02-06 17:24:49 +0100274 tpm_buf_append_u16(&buf, digests[i].alg_id);
275 tpm_buf_append(&buf, (const unsigned char *)&digests[i].digest,
276 chip->allocated_banks[i].digest_size);
Nayna Jainc1f92b42017-01-30 04:59:41 -0500277 }
278
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +0200279 rc = tpm_transmit_cmd(chip, &buf, 0, "attempting extend a PCR value");
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800280
Nayna Jainc1f92b42017-01-30 04:59:41 -0500281 tpm_buf_destroy(&buf);
282
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800283 return rc;
284}
285
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300286struct tpm2_get_random_out {
287 __be16 size;
288 u8 buffer[TPM_MAX_RNG_DATA];
289} __packed;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800290
291/**
292 * tpm2_get_random() - get random bytes from the TPM RNG
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200293 *
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300294 * @chip: a &tpm_chip instance
295 * @dest: destination buffer
296 * @max: the max number of random bytes to pull
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800297 *
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200298 * Return:
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300299 * size of the buffer on success,
Kees Cook782779b2019-04-01 12:06:07 -0700300 * -errno otherwise (positive TPM return codes are masked to -EIO)
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800301 */
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300302int tpm2_get_random(struct tpm_chip *chip, u8 *dest, size_t max)
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800303{
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300304 struct tpm2_get_random_out *out;
305 struct tpm_buf buf;
306 u32 recd;
307 u32 num_bytes = max;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800308 int err;
309 int total = 0;
310 int retries = 5;
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300311 u8 *dest_ptr = dest;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800312
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300313 if (!num_bytes || max > TPM_MAX_RNG_DATA)
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800314 return -EINVAL;
315
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300316 err = tpm_buf_init(&buf, 0, 0);
317 if (err)
318 return err;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800319
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300320 do {
321 tpm_buf_reset(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_GET_RANDOM);
322 tpm_buf_append_u16(&buf, num_bytes);
Jarkko Sakkinen5faafba2018-11-03 15:15:07 +0200323 err = tpm_transmit_cmd(chip, &buf,
Stefan Bergerc659af72017-01-19 07:19:12 -0500324 offsetof(struct tpm2_get_random_out,
325 buffer),
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +0200326 "attempting get random");
Kees Cook782779b2019-04-01 12:06:07 -0700327 if (err) {
328 if (err > 0)
329 err = -EIO;
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300330 goto out;
Kees Cook782779b2019-04-01 12:06:07 -0700331 }
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800332
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300333 out = (struct tpm2_get_random_out *)
334 &buf.data[TPM_HEADER_SIZE];
335 recd = min_t(u32, be16_to_cpu(out->size), num_bytes);
336 if (tpm_buf_length(&buf) <
Jarkko Sakkinen84b59f62018-09-03 04:01:26 +0300337 TPM_HEADER_SIZE +
338 offsetof(struct tpm2_get_random_out, buffer) +
339 recd) {
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300340 err = -EFAULT;
341 goto out;
342 }
343 memcpy(dest_ptr, out->buffer, recd);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800344
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300345 dest_ptr += recd;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800346 total += recd;
347 num_bytes -= recd;
348 } while (retries-- && total < max);
349
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300350 tpm_buf_destroy(&buf);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800351 return total ? total : -EIO;
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300352out:
353 tpm_buf_destroy(&buf);
354 return err;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800355}
356
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800357/**
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +0200358 * tpm2_flush_context() - execute a TPM2_FlushContext command
Tomas Winkler5122b5f2018-10-26 21:40:42 +0300359 * @chip: TPM chip to use
360 * @handle: context handle
Jarkko Sakkinen9aa36b32016-11-26 13:39:35 +0200361 */
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +0200362void tpm2_flush_context(struct tpm_chip *chip, u32 handle)
Jarkko Sakkinen9aa36b32016-11-26 13:39:35 +0200363{
364 struct tpm_buf buf;
365 int rc;
366
367 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_FLUSH_CONTEXT);
368 if (rc) {
369 dev_warn(&chip->dev, "0x%08x was not flushed, out of memory\n",
370 handle);
371 return;
372 }
373
374 tpm_buf_append_u32(&buf, handle);
375
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +0200376 tpm_transmit_cmd(chip, &buf, 0, "flushing context");
Jarkko Sakkinen9aa36b32016-11-26 13:39:35 +0200377 tpm_buf_destroy(&buf);
378}
379
380/**
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200381 * tpm_buf_append_auth() - append TPMS_AUTH_COMMAND to the buffer.
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300382 *
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200383 * @buf: an allocated tpm_buf instance
384 * @session_handle: session handle
385 * @nonce: the session nonce, may be NULL if not used
386 * @nonce_len: the session nonce length, may be 0 if not used
387 * @attributes: the session attributes
388 * @hmac: the session HMAC or password, may be NULL if not used
389 * @hmac_len: the session HMAC or password length, maybe 0 if not used
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300390 */
391static void tpm2_buf_append_auth(struct tpm_buf *buf, u32 session_handle,
392 const u8 *nonce, u16 nonce_len,
393 u8 attributes,
394 const u8 *hmac, u16 hmac_len)
395{
396 tpm_buf_append_u32(buf, 9 + nonce_len + hmac_len);
397 tpm_buf_append_u32(buf, session_handle);
398 tpm_buf_append_u16(buf, nonce_len);
399
400 if (nonce && nonce_len)
401 tpm_buf_append(buf, nonce, nonce_len);
402
403 tpm_buf_append_u8(buf, attributes);
404 tpm_buf_append_u16(buf, hmac_len);
405
406 if (hmac && hmac_len)
407 tpm_buf_append(buf, hmac, hmac_len);
408}
409
410/**
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300411 * tpm2_seal_trusted() - seal the payload of a trusted key
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200412 *
413 * @chip: TPM chip to use
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300414 * @payload: the key data in clear and encrypted form
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300415 * @options: authentication values and other options
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300416 *
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300417 * Return: < 0 on error and 0 on success.
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300418 */
419int tpm2_seal_trusted(struct tpm_chip *chip,
420 struct trusted_key_payload *payload,
421 struct trusted_key_options *options)
422{
423 unsigned int blob_len;
424 struct tpm_buf buf;
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300425 u32 hash;
Jarkko Sakkinen5ca4c202015-11-05 21:43:06 +0200426 int i;
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300427 int rc;
428
Jarkko Sakkinen5ca4c202015-11-05 21:43:06 +0200429 for (i = 0; i < ARRAY_SIZE(tpm2_hash_map); i++) {
430 if (options->hash == tpm2_hash_map[i].crypto_id) {
431 hash = tpm2_hash_map[i].tpm_id;
432 break;
433 }
434 }
435
436 if (i == ARRAY_SIZE(tpm2_hash_map))
437 return -EINVAL;
438
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300439 rc = tpm_buf_init(&buf, TPM2_ST_SESSIONS, TPM2_CC_CREATE);
440 if (rc)
441 return rc;
442
443 tpm_buf_append_u32(&buf, options->keyhandle);
444 tpm2_buf_append_auth(&buf, TPM2_RS_PW,
445 NULL /* nonce */, 0,
446 0 /* session_attributes */,
447 options->keyauth /* hmac */,
448 TPM_DIGEST_SIZE);
449
450 /* sensitive */
Jarkko Sakkinen2e311252015-10-30 14:57:02 +0200451 tpm_buf_append_u16(&buf, 4 + TPM_DIGEST_SIZE + payload->key_len + 1);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300452
453 tpm_buf_append_u16(&buf, TPM_DIGEST_SIZE);
454 tpm_buf_append(&buf, options->blobauth, TPM_DIGEST_SIZE);
Jarkko Sakkinen2e311252015-10-30 14:57:02 +0200455 tpm_buf_append_u16(&buf, payload->key_len + 1);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300456 tpm_buf_append(&buf, payload->key, payload->key_len);
Jarkko Sakkinen2e311252015-10-30 14:57:02 +0200457 tpm_buf_append_u8(&buf, payload->migratable);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300458
459 /* public */
Jarkko Sakkinenf3c82ad2016-01-06 16:43:30 +0200460 tpm_buf_append_u16(&buf, 14 + options->policydigest_len);
Roberto Sassuaa042472019-02-06 17:24:48 +0100461 tpm_buf_append_u16(&buf, TPM_ALG_KEYEDHASH);
Jarkko Sakkinen5ca4c202015-11-05 21:43:06 +0200462 tpm_buf_append_u16(&buf, hash);
Jarkko Sakkinen5beb0c42015-10-31 17:53:44 +0200463
464 /* policy */
Jarkko Sakkinenf3c82ad2016-01-06 16:43:30 +0200465 if (options->policydigest_len) {
Jarkko Sakkinen5beb0c42015-10-31 17:53:44 +0200466 tpm_buf_append_u32(&buf, 0);
Jarkko Sakkinenf3c82ad2016-01-06 16:43:30 +0200467 tpm_buf_append_u16(&buf, options->policydigest_len);
Jarkko Sakkinen5beb0c42015-10-31 17:53:44 +0200468 tpm_buf_append(&buf, options->policydigest,
Jarkko Sakkinenf3c82ad2016-01-06 16:43:30 +0200469 options->policydigest_len);
Jarkko Sakkinen5beb0c42015-10-31 17:53:44 +0200470 } else {
Jarkko Sakkinenc0b5eed2016-02-13 11:51:23 +0200471 tpm_buf_append_u32(&buf, TPM2_OA_USER_WITH_AUTH);
Jarkko Sakkinen5beb0c42015-10-31 17:53:44 +0200472 tpm_buf_append_u16(&buf, 0);
473 }
474
475 /* public parameters */
Roberto Sassuaa042472019-02-06 17:24:48 +0100476 tpm_buf_append_u16(&buf, TPM_ALG_NULL);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300477 tpm_buf_append_u16(&buf, 0);
478
479 /* outside info */
480 tpm_buf_append_u16(&buf, 0);
481
482 /* creation PCR */
483 tpm_buf_append_u32(&buf, 0);
484
485 if (buf.flags & TPM_BUF_OVERFLOW) {
486 rc = -E2BIG;
487 goto out;
488 }
489
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +0200490 rc = tpm_transmit_cmd(chip, &buf, 4, "sealing data");
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300491 if (rc)
492 goto out;
493
494 blob_len = be32_to_cpup((__be32 *) &buf.data[TPM_HEADER_SIZE]);
495 if (blob_len > MAX_BLOB_SIZE) {
496 rc = -E2BIG;
497 goto out;
498 }
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300499 if (tpm_buf_length(&buf) < TPM_HEADER_SIZE + 4 + blob_len) {
Stefan Bergerc659af72017-01-19 07:19:12 -0500500 rc = -EFAULT;
501 goto out;
502 }
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300503
504 memcpy(payload->blob, &buf.data[TPM_HEADER_SIZE + 4], blob_len);
505 payload->blob_len = blob_len;
506
507out:
508 tpm_buf_destroy(&buf);
509
Jarkko Sakkinen5ca4c202015-11-05 21:43:06 +0200510 if (rc > 0) {
Jarkko Sakkinen7d761112017-01-25 23:00:22 +0200511 if (tpm2_rc_value(rc) == TPM2_RC_HASH)
Jarkko Sakkinen5ca4c202015-11-05 21:43:06 +0200512 rc = -EINVAL;
513 else
514 rc = -EPERM;
515 }
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300516
517 return rc;
518}
519
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300520/**
521 * tpm2_load_cmd() - execute a TPM2_Load command
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200522 *
523 * @chip: TPM chip to use
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300524 * @payload: the key data in clear and encrypted form
525 * @options: authentication values and other options
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200526 * @blob_handle: returned blob handle
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300527 *
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200528 * Return: 0 on success.
529 * -E2BIG on wrong payload size.
530 * -EPERM on tpm error status.
531 * < 0 error from tpm_transmit_cmd.
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300532 */
533static int tpm2_load_cmd(struct tpm_chip *chip,
534 struct trusted_key_payload *payload,
535 struct trusted_key_options *options,
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +0200536 u32 *blob_handle)
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300537{
538 struct tpm_buf buf;
539 unsigned int private_len;
540 unsigned int public_len;
541 unsigned int blob_len;
542 int rc;
543
544 private_len = be16_to_cpup((__be16 *) &payload->blob[0]);
545 if (private_len > (payload->blob_len - 2))
546 return -E2BIG;
547
548 public_len = be16_to_cpup((__be16 *) &payload->blob[2 + private_len]);
549 blob_len = private_len + public_len + 4;
550 if (blob_len > payload->blob_len)
551 return -E2BIG;
552
553 rc = tpm_buf_init(&buf, TPM2_ST_SESSIONS, TPM2_CC_LOAD);
554 if (rc)
555 return rc;
556
557 tpm_buf_append_u32(&buf, options->keyhandle);
558 tpm2_buf_append_auth(&buf, TPM2_RS_PW,
559 NULL /* nonce */, 0,
560 0 /* session_attributes */,
561 options->keyauth /* hmac */,
562 TPM_DIGEST_SIZE);
563
564 tpm_buf_append(&buf, payload->blob, blob_len);
565
566 if (buf.flags & TPM_BUF_OVERFLOW) {
567 rc = -E2BIG;
568 goto out;
569 }
570
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +0200571 rc = tpm_transmit_cmd(chip, &buf, 4, "loading blob");
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300572 if (!rc)
573 *blob_handle = be32_to_cpup(
574 (__be32 *) &buf.data[TPM_HEADER_SIZE]);
575
576out:
577 tpm_buf_destroy(&buf);
578
579 if (rc > 0)
580 rc = -EPERM;
581
582 return rc;
583}
584
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300585/**
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300586 * tpm2_unseal_cmd() - execute a TPM2_Unload command
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200587 *
588 * @chip: TPM chip to use
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300589 * @payload: the key data in clear and encrypted form
590 * @options: authentication values and other options
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200591 * @blob_handle: blob handle
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300592 *
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200593 * Return: 0 on success
594 * -EPERM on tpm error status
595 * < 0 error from tpm_transmit_cmd
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300596 */
597static int tpm2_unseal_cmd(struct tpm_chip *chip,
598 struct trusted_key_payload *payload,
599 struct trusted_key_options *options,
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +0200600 u32 blob_handle)
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300601{
602 struct tpm_buf buf;
Jarkko Sakkinen2e311252015-10-30 14:57:02 +0200603 u16 data_len;
604 u8 *data;
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300605 int rc;
606
607 rc = tpm_buf_init(&buf, TPM2_ST_SESSIONS, TPM2_CC_UNSEAL);
608 if (rc)
609 return rc;
610
611 tpm_buf_append_u32(&buf, blob_handle);
Jarkko Sakkinen5beb0c42015-10-31 17:53:44 +0200612 tpm2_buf_append_auth(&buf,
613 options->policyhandle ?
614 options->policyhandle : TPM2_RS_PW,
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300615 NULL /* nonce */, 0,
Jarkko Sakkinenc0b5eed2016-02-13 11:51:23 +0200616 TPM2_SA_CONTINUE_SESSION,
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300617 options->blobauth /* hmac */,
618 TPM_DIGEST_SIZE);
619
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +0200620 rc = tpm_transmit_cmd(chip, &buf, 6, "unsealing");
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300621 if (rc > 0)
622 rc = -EPERM;
623
624 if (!rc) {
Jarkko Sakkinen2e311252015-10-30 14:57:02 +0200625 data_len = be16_to_cpup(
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300626 (__be16 *) &buf.data[TPM_HEADER_SIZE + 4]);
Jeremy Boone3be23272018-02-08 12:28:08 -0800627 if (data_len < MIN_KEY_SIZE || data_len > MAX_KEY_SIZE + 1) {
628 rc = -EFAULT;
629 goto out;
630 }
Stefan Bergerc659af72017-01-19 07:19:12 -0500631
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300632 if (tpm_buf_length(&buf) < TPM_HEADER_SIZE + 6 + data_len) {
Stefan Bergerc659af72017-01-19 07:19:12 -0500633 rc = -EFAULT;
634 goto out;
635 }
Jarkko Sakkinen2e311252015-10-30 14:57:02 +0200636 data = &buf.data[TPM_HEADER_SIZE + 6];
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300637
Jarkko Sakkinen2e311252015-10-30 14:57:02 +0200638 memcpy(payload->key, data, data_len - 1);
639 payload->key_len = data_len - 1;
640 payload->migratable = data[data_len - 1];
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300641 }
642
Stefan Bergerc659af72017-01-19 07:19:12 -0500643out:
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300644 tpm_buf_destroy(&buf);
645 return rc;
646}
647
648/**
Baruch Siachcbef69a2016-11-06 11:02:45 +0200649 * tpm2_unseal_trusted() - unseal the payload of a trusted key
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200650 *
651 * @chip: TPM chip to use
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300652 * @payload: the key data in clear and encrypted form
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300653 * @options: authentication values and other options
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300654 *
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200655 * Return: Same as with tpm_transmit_cmd.
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300656 */
657int tpm2_unseal_trusted(struct tpm_chip *chip,
658 struct trusted_key_payload *payload,
659 struct trusted_key_options *options)
660{
661 u32 blob_handle;
662 int rc;
663
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +0200664 rc = tpm2_load_cmd(chip, payload, options, &blob_handle);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300665 if (rc)
Jarkko Sakkinen2f257402018-11-04 20:01:42 +0200666 return rc;
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300667
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +0200668 rc = tpm2_unseal_cmd(chip, payload, options, blob_handle);
669 tpm2_flush_context(chip, blob_handle);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300670 return rc;
671}
672
Jarkko Sakkinen2ab32412018-03-26 15:14:05 +0300673struct tpm2_get_cap_out {
674 u8 more_data;
675 __be32 subcap_id;
676 __be32 property_cnt;
677 __be32 property_id;
678 __be32 value;
679} __packed;
680
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300681/**
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800682 * tpm2_get_tpm_pt() - get value of a TPM_CAP_TPM_PROPERTIES type property
Jarkko Sakkinen2ab32412018-03-26 15:14:05 +0300683 * @chip: a &tpm_chip instance
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800684 * @property_id: property ID.
685 * @value: output variable.
686 * @desc: passed to tpm_transmit_cmd()
687 *
Jarkko Sakkinen2ab32412018-03-26 15:14:05 +0300688 * Return:
689 * 0 on success,
690 * -errno or a TPM return code otherwise
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800691 */
692ssize_t tpm2_get_tpm_pt(struct tpm_chip *chip, u32 property_id, u32 *value,
693 const char *desc)
694{
Jarkko Sakkinen2ab32412018-03-26 15:14:05 +0300695 struct tpm2_get_cap_out *out;
696 struct tpm_buf buf;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800697 int rc;
698
Jarkko Sakkinen2ab32412018-03-26 15:14:05 +0300699 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_GET_CAPABILITY);
700 if (rc)
701 return rc;
702 tpm_buf_append_u32(&buf, TPM2_CAP_TPM_PROPERTIES);
703 tpm_buf_append_u32(&buf, property_id);
704 tpm_buf_append_u32(&buf, 1);
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +0200705 rc = tpm_transmit_cmd(chip, &buf, 0, NULL);
Jarkko Sakkinen2ab32412018-03-26 15:14:05 +0300706 if (!rc) {
707 out = (struct tpm2_get_cap_out *)
708 &buf.data[TPM_HEADER_SIZE];
709 *value = be32_to_cpu(out->value);
710 }
711 tpm_buf_destroy(&buf);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800712 return rc;
713}
Jarkko Sakkineneb5854e2016-06-12 16:42:09 +0300714EXPORT_SYMBOL_GPL(tpm2_get_tpm_pt);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800715
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800716/**
Jarkko Sakkinencc26c6e2018-06-05 22:22:58 +0300717 * tpm2_shutdown() - send a TPM shutdown command
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200718 *
Jarkko Sakkinencc26c6e2018-06-05 22:22:58 +0300719 * Sends a TPM shutdown command. The shutdown command is used in call
720 * sites where the system is going down. If it fails, there is not much
721 * that can be done except print an error message.
722 *
723 * @chip: a &tpm_chip instance
724 * @shutdown_type: TPM_SU_CLEAR or TPM_SU_STATE.
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800725 */
Jarkko Sakkinen74d6b3c2015-01-29 07:43:47 +0200726void tpm2_shutdown(struct tpm_chip *chip, u16 shutdown_type)
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800727{
Jarkko Sakkinencc26c6e2018-06-05 22:22:58 +0300728 struct tpm_buf buf;
Jarkko Sakkinen74d6b3c2015-01-29 07:43:47 +0200729 int rc;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800730
Jarkko Sakkinencc26c6e2018-06-05 22:22:58 +0300731 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_SHUTDOWN);
732 if (rc)
733 return;
734 tpm_buf_append_u16(&buf, shutdown_type);
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +0200735 tpm_transmit_cmd(chip, &buf, 0, "stopping the TPM");
Jarkko Sakkinencc26c6e2018-06-05 22:22:58 +0300736 tpm_buf_destroy(&buf);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800737}
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800738
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800739/**
Alexander Steffen2482b1b2017-08-31 19:18:56 +0200740 * tpm2_do_selftest() - ensure that all self tests have passed
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200741 *
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800742 * @chip: TPM chip to use
743 *
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200744 * Return: Same as with tpm_transmit_cmd.
745 *
Alexander Steffen125a2212017-08-31 19:18:58 +0200746 * The TPM can either run all self tests synchronously and then return
747 * RC_SUCCESS once all tests were successful. Or it can choose to run the tests
748 * asynchronously and return RC_TESTING immediately while the self tests still
749 * execute in the background. This function handles both cases and waits until
750 * all tests have completed.
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800751 */
Jason Gunthorpecae8b442016-07-12 11:41:49 -0600752static int tpm2_do_selftest(struct tpm_chip *chip)
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800753{
James Bottomley2be8ffe2018-03-22 17:32:20 +0200754 struct tpm_buf buf;
755 int full;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800756 int rc;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800757
James Bottomley2be8ffe2018-03-22 17:32:20 +0200758 for (full = 0; full < 2; full++) {
759 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_SELF_TEST);
760 if (rc)
761 return rc;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800762
James Bottomley2be8ffe2018-03-22 17:32:20 +0200763 tpm_buf_append_u8(&buf, full);
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +0200764 rc = tpm_transmit_cmd(chip, &buf, 0,
James Bottomley2be8ffe2018-03-22 17:32:20 +0200765 "attempting the self test");
766 tpm_buf_destroy(&buf);
Alexander Steffen125a2212017-08-31 19:18:58 +0200767
James Bottomley2be8ffe2018-03-22 17:32:20 +0200768 if (rc == TPM2_RC_TESTING)
769 rc = TPM2_RC_SUCCESS;
770 if (rc == TPM2_RC_INITIALIZE || rc == TPM2_RC_SUCCESS)
771 return rc;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800772 }
773
774 return rc;
775}
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800776
777/**
Jarkko Sakkinen94e266b2018-03-26 15:14:04 +0300778 * tpm2_probe() - probe for the TPM 2.0 protocol
779 * @chip: a &tpm_chip instance
Jarkko Sakkinen4d5f2052015-02-04 16:21:09 +0200780 *
Jarkko Sakkinen94e266b2018-03-26 15:14:04 +0300781 * Send an idempotent TPM 2.0 command and see whether there is TPM2 chip in the
782 * other end based on the response tag. The flag TPM_CHIP_FLAG_TPM2 is set by
783 * this function if this is the case.
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200784 *
Jarkko Sakkinen94e266b2018-03-26 15:14:04 +0300785 * Return:
786 * 0 on success,
787 * -errno otherwise
Jarkko Sakkinen4d5f2052015-02-04 16:21:09 +0200788 */
789int tpm2_probe(struct tpm_chip *chip)
790{
Jarkko Sakkinenb34b77a2018-11-06 19:04:30 +0200791 struct tpm_header *out;
Jarkko Sakkinen94e266b2018-03-26 15:14:04 +0300792 struct tpm_buf buf;
Jarkko Sakkinen4d5f2052015-02-04 16:21:09 +0200793 int rc;
794
Jarkko Sakkinen94e266b2018-03-26 15:14:04 +0300795 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_GET_CAPABILITY);
796 if (rc)
Jarkko Sakkinen4d5f2052015-02-04 16:21:09 +0200797 return rc;
Jarkko Sakkinen94e266b2018-03-26 15:14:04 +0300798 tpm_buf_append_u32(&buf, TPM2_CAP_TPM_PROPERTIES);
799 tpm_buf_append_u32(&buf, TPM_PT_TOTAL_COMMANDS);
800 tpm_buf_append_u32(&buf, 1);
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +0200801 rc = tpm_transmit_cmd(chip, &buf, 0, NULL);
Jarkko Sakkinen94e266b2018-03-26 15:14:04 +0300802 /* We ignore TPM return codes on purpose. */
803 if (rc >= 0) {
Jarkko Sakkinenb34b77a2018-11-06 19:04:30 +0200804 out = (struct tpm_header *)buf.data;
Jarkko Sakkinen94e266b2018-03-26 15:14:04 +0300805 if (be16_to_cpu(out->tag) == TPM2_ST_NO_SESSIONS)
806 chip->flags |= TPM_CHIP_FLAG_TPM2;
807 }
808 tpm_buf_destroy(&buf);
Jarkko Sakkinen4d5f2052015-02-04 16:21:09 +0200809 return 0;
810}
811EXPORT_SYMBOL_GPL(tpm2_probe);
Jason Gunthorpecae8b442016-07-12 11:41:49 -0600812
Roberto Sassu879b5892019-02-06 17:24:49 +0100813static int tpm2_init_bank_info(struct tpm_chip *chip, u32 bank_index)
814{
815 struct tpm_bank_info *bank = chip->allocated_banks + bank_index;
816 struct tpm_digest digest = { .alg_id = bank->alg_id };
817 int i;
818
819 /*
820 * Avoid unnecessary PCR read operations to reduce overhead
821 * and obtain identifiers of the crypto subsystem.
822 */
823 for (i = 0; i < ARRAY_SIZE(tpm2_hash_map); i++) {
824 enum hash_algo crypto_algo = tpm2_hash_map[i].crypto_id;
825
826 if (bank->alg_id != tpm2_hash_map[i].tpm_id)
827 continue;
828
829 bank->digest_size = hash_digest_size[crypto_algo];
830 bank->crypto_id = crypto_algo;
831 return 0;
832 }
833
834 return tpm2_pcr_read(chip, 0, &digest, &bank->digest_size);
835}
836
Nayna Jain1db15342017-01-30 04:59:40 -0500837struct tpm2_pcr_selection {
838 __be16 hash_alg;
839 u8 size_of_select;
840 u8 pcr_select[3];
841} __packed;
842
Jarkko Sakkinen61841be2017-02-15 20:02:28 +0200843static ssize_t tpm2_get_pcr_allocation(struct tpm_chip *chip)
Nayna Jain1db15342017-01-30 04:59:40 -0500844{
845 struct tpm2_pcr_selection pcr_selection;
846 struct tpm_buf buf;
847 void *marker;
848 void *end;
849 void *pcr_select_offset;
Nayna Jain1db15342017-01-30 04:59:40 -0500850 u32 sizeof_pcr_selection;
Roberto Sassubcfff832019-02-06 17:24:47 +0100851 u32 nr_possible_banks;
852 u32 nr_alloc_banks = 0;
853 u16 hash_alg;
Nayna Jain1db15342017-01-30 04:59:40 -0500854 u32 rsp_len;
855 int rc;
856 int i = 0;
857
858 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_GET_CAPABILITY);
859 if (rc)
860 return rc;
861
862 tpm_buf_append_u32(&buf, TPM2_CAP_PCRS);
863 tpm_buf_append_u32(&buf, 0);
864 tpm_buf_append_u32(&buf, 1);
865
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +0200866 rc = tpm_transmit_cmd(chip, &buf, 9, "get tpm pcr allocation");
Nayna Jain1db15342017-01-30 04:59:40 -0500867 if (rc)
868 goto out;
869
Roberto Sassubcfff832019-02-06 17:24:47 +0100870 nr_possible_banks = be32_to_cpup(
Nayna Jain1db15342017-01-30 04:59:40 -0500871 (__be32 *)&buf.data[TPM_HEADER_SIZE + 5]);
872
Roberto Sassubcfff832019-02-06 17:24:47 +0100873 chip->allocated_banks = kcalloc(nr_possible_banks,
874 sizeof(*chip->allocated_banks),
875 GFP_KERNEL);
876 if (!chip->allocated_banks) {
877 rc = -ENOMEM;
Nayna Jain1db15342017-01-30 04:59:40 -0500878 goto out;
879 }
880
881 marker = &buf.data[TPM_HEADER_SIZE + 9];
882
883 rsp_len = be32_to_cpup((__be32 *)&buf.data[2]);
884 end = &buf.data[rsp_len];
885
Roberto Sassubcfff832019-02-06 17:24:47 +0100886 for (i = 0; i < nr_possible_banks; i++) {
Nayna Jain1db15342017-01-30 04:59:40 -0500887 pcr_select_offset = marker +
888 offsetof(struct tpm2_pcr_selection, size_of_select);
889 if (pcr_select_offset >= end) {
890 rc = -EFAULT;
891 break;
892 }
893
894 memcpy(&pcr_selection, marker, sizeof(pcr_selection));
Roberto Sassubcfff832019-02-06 17:24:47 +0100895 hash_alg = be16_to_cpu(pcr_selection.hash_alg);
896
897 pcr_select_offset = memchr_inv(pcr_selection.pcr_select, 0,
898 pcr_selection.size_of_select);
899 if (pcr_select_offset) {
Roberto Sassu879b5892019-02-06 17:24:49 +0100900 chip->allocated_banks[nr_alloc_banks].alg_id = hash_alg;
901
902 rc = tpm2_init_bank_info(chip, nr_alloc_banks);
903 if (rc < 0)
904 break;
905
Roberto Sassubcfff832019-02-06 17:24:47 +0100906 nr_alloc_banks++;
907 }
908
Nayna Jain1db15342017-01-30 04:59:40 -0500909 sizeof_pcr_selection = sizeof(pcr_selection.hash_alg) +
910 sizeof(pcr_selection.size_of_select) +
911 pcr_selection.size_of_select;
912 marker = marker + sizeof_pcr_selection;
913 }
914
Roberto Sassubcfff832019-02-06 17:24:47 +0100915 chip->nr_allocated_banks = nr_alloc_banks;
Nayna Jain1db15342017-01-30 04:59:40 -0500916out:
Nayna Jain1db15342017-01-30 04:59:40 -0500917 tpm_buf_destroy(&buf);
918
919 return rc;
920}
Jarkko Sakkinen61841be2017-02-15 20:02:28 +0200921
Jarkko Sakkinen58472f52016-11-10 20:42:07 -0800922static int tpm2_get_cc_attrs_tbl(struct tpm_chip *chip)
923{
924 struct tpm_buf buf;
925 u32 nr_commands;
Jarkko Sakkinen171360d2017-09-13 09:58:49 -0700926 __be32 *attrs;
Jarkko Sakkinen58472f52016-11-10 20:42:07 -0800927 u32 cc;
928 int i;
929 int rc;
930
931 rc = tpm2_get_tpm_pt(chip, TPM_PT_TOTAL_COMMANDS, &nr_commands, NULL);
932 if (rc)
933 goto out;
934
935 if (nr_commands > 0xFFFFF) {
936 rc = -EFAULT;
937 goto out;
938 }
939
Kees Cooka86854d2018-06-12 14:07:58 -0700940 chip->cc_attrs_tbl = devm_kcalloc(&chip->dev, 4, nr_commands,
Jarkko Sakkinen58472f52016-11-10 20:42:07 -0800941 GFP_KERNEL);
942
943 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_GET_CAPABILITY);
944 if (rc)
945 goto out;
946
947 tpm_buf_append_u32(&buf, TPM2_CAP_COMMANDS);
948 tpm_buf_append_u32(&buf, TPM2_CC_FIRST);
949 tpm_buf_append_u32(&buf, nr_commands);
950
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +0200951 rc = tpm_transmit_cmd(chip, &buf, 9 + 4 * nr_commands, NULL);
Jarkko Sakkinen58472f52016-11-10 20:42:07 -0800952 if (rc) {
953 tpm_buf_destroy(&buf);
954 goto out;
955 }
956
957 if (nr_commands !=
958 be32_to_cpup((__be32 *)&buf.data[TPM_HEADER_SIZE + 5])) {
959 tpm_buf_destroy(&buf);
960 goto out;
961 }
962
963 chip->nr_commands = nr_commands;
964
Jarkko Sakkinen171360d2017-09-13 09:58:49 -0700965 attrs = (__be32 *)&buf.data[TPM_HEADER_SIZE + 9];
Jarkko Sakkinen58472f52016-11-10 20:42:07 -0800966 for (i = 0; i < nr_commands; i++, attrs++) {
967 chip->cc_attrs_tbl[i] = be32_to_cpup(attrs);
968 cc = chip->cc_attrs_tbl[i] & 0xFFFF;
969
970 if (cc == TPM2_CC_CONTEXT_SAVE || cc == TPM2_CC_FLUSH_CONTEXT) {
971 chip->cc_attrs_tbl[i] &=
972 ~(GENMASK(2, 0) << TPM2_CC_ATTR_CHANDLES);
973 chip->cc_attrs_tbl[i] |= 1 << TPM2_CC_ATTR_CHANDLES;
974 }
975 }
976
977 tpm_buf_destroy(&buf);
978
979out:
980 if (rc > 0)
981 rc = -ENODEV;
982 return rc;
983}
984
Jarkko Sakkinen61841be2017-02-15 20:02:28 +0200985/**
Tomas Winkler9db7fe12018-10-19 21:22:58 +0300986 * tpm2_startup - turn on the TPM
987 * @chip: TPM chip to use
988 *
989 * Normally the firmware should start the TPM. This function is provided as a
990 * workaround if this does not happen. A legal case for this could be for
991 * example when a TPM emulator is used.
992 *
993 * Return: same as tpm_transmit_cmd()
994 */
995
996static int tpm2_startup(struct tpm_chip *chip)
997{
998 struct tpm_buf buf;
999 int rc;
1000
1001 dev_info(&chip->dev, "starting up the TPM manually\n");
1002
1003 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_STARTUP);
1004 if (rc < 0)
1005 return rc;
1006
1007 tpm_buf_append_u16(&buf, TPM2_SU_CLEAR);
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +02001008 rc = tpm_transmit_cmd(chip, &buf, 0, "attempting to start the TPM");
Tomas Winkler9db7fe12018-10-19 21:22:58 +03001009 tpm_buf_destroy(&buf);
1010
1011 return rc;
1012}
1013
1014/**
Jarkko Sakkinen61841be2017-02-15 20:02:28 +02001015 * tpm2_auto_startup - Perform the standard automatic TPM initialization
1016 * sequence
1017 * @chip: TPM chip to use
1018 *
Jarkko Sakkinen58472f52016-11-10 20:42:07 -08001019 * Returns 0 on success, < 0 in case of fatal error.
Jarkko Sakkinen61841be2017-02-15 20:02:28 +02001020 */
1021int tpm2_auto_startup(struct tpm_chip *chip)
1022{
1023 int rc;
1024
Tomas Winkler9db7fe12018-10-19 21:22:58 +03001025 rc = tpm2_get_timeouts(chip);
Jarkko Sakkinen61841be2017-02-15 20:02:28 +02001026 if (rc)
1027 goto out;
1028
1029 rc = tpm2_do_selftest(chip);
James Bottomley2be8ffe2018-03-22 17:32:20 +02001030 if (rc && rc != TPM2_RC_INITIALIZE)
Jarkko Sakkinen61841be2017-02-15 20:02:28 +02001031 goto out;
Jarkko Sakkinen61841be2017-02-15 20:02:28 +02001032
1033 if (rc == TPM2_RC_INITIALIZE) {
Tomas Winkler9db7fe12018-10-19 21:22:58 +03001034 rc = tpm2_startup(chip);
Jarkko Sakkinen61841be2017-02-15 20:02:28 +02001035 if (rc)
1036 goto out;
1037
1038 rc = tpm2_do_selftest(chip);
James Bottomley2be8ffe2018-03-22 17:32:20 +02001039 if (rc)
Jarkko Sakkinen61841be2017-02-15 20:02:28 +02001040 goto out;
Jarkko Sakkinen61841be2017-02-15 20:02:28 +02001041 }
1042
1043 rc = tpm2_get_pcr_allocation(chip);
Jarkko Sakkinen58472f52016-11-10 20:42:07 -08001044 if (rc)
1045 goto out;
1046
1047 rc = tpm2_get_cc_attrs_tbl(chip);
Jarkko Sakkinen61841be2017-02-15 20:02:28 +02001048
1049out:
1050 if (rc > 0)
1051 rc = -ENODEV;
1052 return rc;
1053}
Jarkko Sakkinen58472f52016-11-10 20:42:07 -08001054
1055int tpm2_find_cc(struct tpm_chip *chip, u32 cc)
1056{
1057 int i;
1058
1059 for (i = 0; i < chip->nr_commands; i++)
1060 if (cc == (chip->cc_attrs_tbl[i] & GENMASK(15, 0)))
1061 return i;
1062
1063 return -1;
1064}