blob: 3acf4fd4e5a5397f4b6fa440ce46ee24bf7e6036 [file] [log] [blame]
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -08001/*
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03002 * Copyright (C) 2014, 2015 Intel Corporation
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -08003 *
4 * Authors:
5 * Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
6 *
7 * Maintained by: <tpmdd-devel@lists.sourceforge.net>
8 *
9 * This file contains TPM2 protocol implementations of the commands
10 * used by the kernel internally.
11 *
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
15 * of the License.
16 */
17
18#include "tpm.h"
Jarkko Sakkinen5ca4c202015-11-05 21:43:06 +020019#include <crypto/hash_info.h>
Jarkko Sakkinen954650e2015-05-30 08:09:04 +030020#include <keys/trusted-type.h>
21
22enum tpm2_object_attributes {
Jarkko Sakkinenc0b5eed2016-02-13 11:51:23 +020023 TPM2_OA_USER_WITH_AUTH = BIT(6),
24};
25
26enum tpm2_session_attributes {
27 TPM2_SA_CONTINUE_SESSION = BIT(0),
Jarkko Sakkinen954650e2015-05-30 08:09:04 +030028};
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -080029
Jarkko Sakkinen5ca4c202015-11-05 21:43:06 +020030struct tpm2_hash {
31 unsigned int crypto_id;
32 unsigned int tpm_id;
33};
34
35static 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},
41};
42
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -080043/*
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.
Tomas Winkler076d35642018-03-10 17:15:45 +020048 * LONG_LONG is for commands that generates keys which empirically
49 * takes longer time on some systems.
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -080050 */
51static const u8 tpm2_ordinal_duration[TPM2_CC_LAST - TPM2_CC_FIRST + 1] = {
52 TPM_UNDEFINED, /* 11F */
53 TPM_UNDEFINED, /* 120 */
54 TPM_LONG, /* 121 */
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 */
62 TPM_LONG, /* 129 */
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 */
Tomas Winkler076d35642018-03-10 17:15:45 +020070 TPM_LONG_LONG, /* 131 */
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -080071 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 */
83 TPM_MEDIUM, /* 13e */
84 TPM_UNDEFINED, /* 13f */
85 TPM_UNDEFINED, /* 140 */
86 TPM_UNDEFINED, /* 141 */
87 TPM_UNDEFINED, /* 142 */
88 TPM_LONG, /* 143 */
89 TPM_MEDIUM, /* 144 */
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 */
99 TPM_LONG, /* 14e */
100 TPM_UNDEFINED, /* 14f */
101 TPM_UNDEFINED, /* 150 */
102 TPM_UNDEFINED, /* 151 */
103 TPM_UNDEFINED, /* 152 */
Tomas Winkler076d35642018-03-10 17:15:45 +0200104 TPM_LONG_LONG, /* 153 */
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800105 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 */
140 TPM_LONG, /* 177 */
141 TPM_UNDEFINED, /* 178 */
142 TPM_UNDEFINED, /* 179 */
143 TPM_MEDIUM, /* 17a */
144 TPM_LONG, /* 17b */
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 */
165};
166
Roberto Sassu91f7f3d2017-06-23 15:41:56 +0200167struct tpm2_pcr_read_out {
168 __be32 update_cnt;
169 __be32 pcr_selects_cnt;
170 __be16 hash_alg;
171 u8 pcr_select_size;
172 u8 pcr_select[TPM2_PCR_SELECT_MIN];
173 __be32 digests_cnt;
174 __be16 digest_size;
175 u8 digest[];
176} __packed;
177
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800178/**
179 * tpm2_pcr_read() - read a PCR value
180 * @chip: TPM chip to use.
181 * @pcr_idx: index of the PCR to read.
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200182 * @res_buf: buffer to store the resulting hash.
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800183 *
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200184 * Return: Same as with tpm_transmit_cmd.
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800185 */
186int tpm2_pcr_read(struct tpm_chip *chip, int pcr_idx, u8 *res_buf)
187{
188 int rc;
Roberto Sassu91f7f3d2017-06-23 15:41:56 +0200189 struct tpm_buf buf;
190 struct tpm2_pcr_read_out *out;
191 u8 pcr_select[TPM2_PCR_SELECT_MIN] = {0};
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800192
193 if (pcr_idx >= TPM2_PLATFORM_PCR)
194 return -EINVAL;
195
Roberto Sassu91f7f3d2017-06-23 15:41:56 +0200196 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_PCR_READ);
197 if (rc)
198 return rc;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800199
Roberto Sassu91f7f3d2017-06-23 15:41:56 +0200200 pcr_select[pcr_idx >> 3] = 1 << (pcr_idx & 0x7);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800201
Roberto Sassu91f7f3d2017-06-23 15:41:56 +0200202 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,
206 sizeof(pcr_select));
207
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);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800213 }
214
Roberto Sassu91f7f3d2017-06-23 15:41:56 +0200215 tpm_buf_destroy(&buf);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800216 return rc;
217}
218
Nayna Jainc1f92b42017-01-30 04:59:41 -0500219struct tpm2_null_auth_area {
220 __be32 handle;
221 __be16 nonce_size;
222 u8 attributes;
223 __be16 auth_size;
224} __packed;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800225
226/**
227 * tpm2_pcr_extend() - extend a PCR value
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200228 *
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800229 * @chip: TPM chip to use.
230 * @pcr_idx: index of the PCR.
Nayna Jainc1f92b42017-01-30 04:59:41 -0500231 * @count: number of digests passed.
232 * @digests: list of pcr banks and corresponding digest values to extend.
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800233 *
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200234 * Return: Same as with tpm_transmit_cmd.
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800235 */
Nayna Jainc1f92b42017-01-30 04:59:41 -0500236int tpm2_pcr_extend(struct tpm_chip *chip, int pcr_idx, u32 count,
237 struct tpm2_digest *digests)
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800238{
Nayna Jainc1f92b42017-01-30 04:59:41 -0500239 struct tpm_buf buf;
240 struct tpm2_null_auth_area auth_area;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800241 int rc;
Nayna Jainc1f92b42017-01-30 04:59:41 -0500242 int i;
243 int j;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800244
Nayna Jainc1f92b42017-01-30 04:59:41 -0500245 if (count > ARRAY_SIZE(chip->active_banks))
246 return -EINVAL;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800247
Nayna Jainc1f92b42017-01-30 04:59:41 -0500248 rc = tpm_buf_init(&buf, TPM2_ST_SESSIONS, TPM2_CC_PCR_EXTEND);
249 if (rc)
250 return rc;
251
252 tpm_buf_append_u32(&buf, pcr_idx);
253
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;
258
259 tpm_buf_append_u32(&buf, sizeof(struct tpm2_null_auth_area));
260 tpm_buf_append(&buf, (const unsigned char *)&auth_area,
261 sizeof(auth_area));
262 tpm_buf_append_u32(&buf, count);
263
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)
267 continue;
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]);
272 }
273 }
274
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200275 rc = tpm_transmit_cmd(chip, NULL, buf.data, PAGE_SIZE, 0, 0,
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800276 "attempting extend a PCR value");
277
Nayna Jainc1f92b42017-01-30 04:59:41 -0500278 tpm_buf_destroy(&buf);
279
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800280 return rc;
281}
282
Nayna Jainc1f92b42017-01-30 04:59:41 -0500283
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300284struct tpm2_get_random_out {
285 __be16 size;
286 u8 buffer[TPM_MAX_RNG_DATA];
287} __packed;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800288
289/**
290 * tpm2_get_random() - get random bytes from the TPM RNG
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200291 *
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300292 * @chip: a &tpm_chip instance
293 * @dest: destination buffer
294 * @max: the max number of random bytes to pull
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800295 *
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200296 * Return:
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300297 * size of the buffer on success,
298 * -errno otherwise
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800299 */
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300300int tpm2_get_random(struct tpm_chip *chip, u8 *dest, size_t max)
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800301{
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300302 struct tpm2_get_random_out *out;
303 struct tpm_buf buf;
304 u32 recd;
305 u32 num_bytes = max;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800306 int err;
307 int total = 0;
308 int retries = 5;
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300309 u8 *dest_ptr = dest;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800310
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300311 if (!num_bytes || max > TPM_MAX_RNG_DATA)
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800312 return -EINVAL;
313
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300314 err = tpm_buf_init(&buf, 0, 0);
315 if (err)
316 return err;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800317
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300318 do {
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,
Stefan Bergerc659af72017-01-19 07:19:12 -0500322 offsetof(struct tpm2_get_random_out,
323 buffer),
324 0, "attempting get random");
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800325 if (err)
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300326 goto out;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800327
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300328 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) <
Jarkko Sakkinen84b59f62018-09-03 04:01:26 +0300332 TPM_HEADER_SIZE +
333 offsetof(struct tpm2_get_random_out, buffer) +
334 recd) {
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300335 err = -EFAULT;
336 goto out;
337 }
338 memcpy(dest_ptr, out->buffer, recd);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800339
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300340 dest_ptr += recd;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800341 total += recd;
342 num_bytes -= recd;
343 } while (retries-- && total < max);
344
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300345 tpm_buf_destroy(&buf);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800346 return total ? total : -EIO;
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300347out:
348 tpm_buf_destroy(&buf);
349 return err;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800350}
351
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800352/**
Jarkko Sakkinen9aa36b32016-11-26 13:39:35 +0200353 * 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
357 *
358 * Return: same as with tpm_transmit_cmd
359 */
360void tpm2_flush_context_cmd(struct tpm_chip *chip, u32 handle,
361 unsigned int flags)
362{
363 struct tpm_buf buf;
364 int rc;
365
366 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_FLUSH_CONTEXT);
367 if (rc) {
368 dev_warn(&chip->dev, "0x%08x was not flushed, out of memory\n",
369 handle);
370 return;
371 }
372
373 tpm_buf_append_u32(&buf, handle);
374
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200375 (void) tpm_transmit_cmd(chip, NULL, buf.data, PAGE_SIZE, 0, flags,
Jarkko Sakkinen9aa36b32016-11-26 13:39:35 +0200376 "flushing context");
377
378 tpm_buf_destroy(&buf);
379}
380
381/**
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200382 * tpm_buf_append_auth() - append TPMS_AUTH_COMMAND to the buffer.
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300383 *
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200384 * @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
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300391 */
392static void tpm2_buf_append_auth(struct tpm_buf *buf, u32 session_handle,
393 const u8 *nonce, u16 nonce_len,
394 u8 attributes,
395 const u8 *hmac, u16 hmac_len)
396{
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);
400
401 if (nonce && nonce_len)
402 tpm_buf_append(buf, nonce, nonce_len);
403
404 tpm_buf_append_u8(buf, attributes);
405 tpm_buf_append_u16(buf, hmac_len);
406
407 if (hmac && hmac_len)
408 tpm_buf_append(buf, hmac, hmac_len);
409}
410
411/**
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300412 * tpm2_seal_trusted() - seal the payload of a trusted key
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200413 *
414 * @chip: TPM chip to use
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300415 * @payload: the key data in clear and encrypted form
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300416 * @options: authentication values and other options
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300417 *
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300418 * Return: < 0 on error and 0 on success.
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300419 */
420int tpm2_seal_trusted(struct tpm_chip *chip,
421 struct trusted_key_payload *payload,
422 struct trusted_key_options *options)
423{
424 unsigned int blob_len;
425 struct tpm_buf buf;
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300426 u32 hash;
Jarkko Sakkinen5ca4c202015-11-05 21:43:06 +0200427 int i;
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300428 int rc;
429
Jarkko Sakkinen5ca4c202015-11-05 21:43:06 +0200430 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;
433 break;
434 }
435 }
436
437 if (i == ARRAY_SIZE(tpm2_hash_map))
438 return -EINVAL;
439
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300440 rc = tpm_buf_init(&buf, TPM2_ST_SESSIONS, TPM2_CC_CREATE);
441 if (rc)
442 return rc;
443
444 tpm_buf_append_u32(&buf, options->keyhandle);
445 tpm2_buf_append_auth(&buf, TPM2_RS_PW,
446 NULL /* nonce */, 0,
447 0 /* session_attributes */,
448 options->keyauth /* hmac */,
449 TPM_DIGEST_SIZE);
450
451 /* sensitive */
Jarkko Sakkinen2e311252015-10-30 14:57:02 +0200452 tpm_buf_append_u16(&buf, 4 + TPM_DIGEST_SIZE + payload->key_len + 1);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300453
454 tpm_buf_append_u16(&buf, TPM_DIGEST_SIZE);
455 tpm_buf_append(&buf, options->blobauth, TPM_DIGEST_SIZE);
Jarkko Sakkinen2e311252015-10-30 14:57:02 +0200456 tpm_buf_append_u16(&buf, payload->key_len + 1);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300457 tpm_buf_append(&buf, payload->key, payload->key_len);
Jarkko Sakkinen2e311252015-10-30 14:57:02 +0200458 tpm_buf_append_u8(&buf, payload->migratable);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300459
460 /* public */
Jarkko Sakkinenf3c82ad2016-01-06 16:43:30 +0200461 tpm_buf_append_u16(&buf, 14 + options->policydigest_len);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300462 tpm_buf_append_u16(&buf, TPM2_ALG_KEYEDHASH);
Jarkko Sakkinen5ca4c202015-11-05 21:43:06 +0200463 tpm_buf_append_u16(&buf, hash);
Jarkko Sakkinen5beb0c42015-10-31 17:53:44 +0200464
465 /* policy */
Jarkko Sakkinenf3c82ad2016-01-06 16:43:30 +0200466 if (options->policydigest_len) {
Jarkko Sakkinen5beb0c42015-10-31 17:53:44 +0200467 tpm_buf_append_u32(&buf, 0);
Jarkko Sakkinenf3c82ad2016-01-06 16:43:30 +0200468 tpm_buf_append_u16(&buf, options->policydigest_len);
Jarkko Sakkinen5beb0c42015-10-31 17:53:44 +0200469 tpm_buf_append(&buf, options->policydigest,
Jarkko Sakkinenf3c82ad2016-01-06 16:43:30 +0200470 options->policydigest_len);
Jarkko Sakkinen5beb0c42015-10-31 17:53:44 +0200471 } else {
Jarkko Sakkinenc0b5eed2016-02-13 11:51:23 +0200472 tpm_buf_append_u32(&buf, TPM2_OA_USER_WITH_AUTH);
Jarkko Sakkinen5beb0c42015-10-31 17:53:44 +0200473 tpm_buf_append_u16(&buf, 0);
474 }
475
476 /* public parameters */
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300477 tpm_buf_append_u16(&buf, TPM2_ALG_NULL);
478 tpm_buf_append_u16(&buf, 0);
479
480 /* outside info */
481 tpm_buf_append_u16(&buf, 0);
482
483 /* creation PCR */
484 tpm_buf_append_u32(&buf, 0);
485
486 if (buf.flags & TPM_BUF_OVERFLOW) {
487 rc = -E2BIG;
488 goto out;
489 }
490
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200491 rc = tpm_transmit_cmd(chip, NULL, buf.data, PAGE_SIZE, 4, 0,
Stefan Bergerc659af72017-01-19 07:19:12 -0500492 "sealing data");
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300493 if (rc)
494 goto out;
495
496 blob_len = be32_to_cpup((__be32 *) &buf.data[TPM_HEADER_SIZE]);
497 if (blob_len > MAX_BLOB_SIZE) {
498 rc = -E2BIG;
499 goto out;
500 }
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300501 if (tpm_buf_length(&buf) < TPM_HEADER_SIZE + 4 + blob_len) {
Stefan Bergerc659af72017-01-19 07:19:12 -0500502 rc = -EFAULT;
503 goto out;
504 }
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300505
506 memcpy(payload->blob, &buf.data[TPM_HEADER_SIZE + 4], blob_len);
507 payload->blob_len = blob_len;
508
509out:
510 tpm_buf_destroy(&buf);
511
Jarkko Sakkinen5ca4c202015-11-05 21:43:06 +0200512 if (rc > 0) {
Jarkko Sakkinen7d761112017-01-25 23:00:22 +0200513 if (tpm2_rc_value(rc) == TPM2_RC_HASH)
Jarkko Sakkinen5ca4c202015-11-05 21:43:06 +0200514 rc = -EINVAL;
515 else
516 rc = -EPERM;
517 }
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300518
519 return rc;
520}
521
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300522/**
523 * tpm2_load_cmd() - execute a TPM2_Load command
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200524 *
525 * @chip: TPM chip to use
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300526 * @payload: the key data in clear and encrypted form
527 * @options: authentication values and other options
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200528 * @blob_handle: returned blob handle
529 * @flags: tpm transmit flags
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300530 *
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200531 * Return: 0 on success.
532 * -E2BIG on wrong payload size.
533 * -EPERM on tpm error status.
534 * < 0 error from tpm_transmit_cmd.
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300535 */
536static 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)
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300540{
541 struct tpm_buf buf;
542 unsigned int private_len;
543 unsigned int public_len;
544 unsigned int blob_len;
545 int rc;
546
547 private_len = be16_to_cpup((__be16 *) &payload->blob[0]);
548 if (private_len > (payload->blob_len - 2))
549 return -E2BIG;
550
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)
554 return -E2BIG;
555
556 rc = tpm_buf_init(&buf, TPM2_ST_SESSIONS, TPM2_CC_LOAD);
557 if (rc)
558 return rc;
559
560 tpm_buf_append_u32(&buf, options->keyhandle);
561 tpm2_buf_append_auth(&buf, TPM2_RS_PW,
562 NULL /* nonce */, 0,
563 0 /* session_attributes */,
564 options->keyauth /* hmac */,
565 TPM_DIGEST_SIZE);
566
567 tpm_buf_append(&buf, payload->blob, blob_len);
568
569 if (buf.flags & TPM_BUF_OVERFLOW) {
570 rc = -E2BIG;
571 goto out;
572 }
573
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200574 rc = tpm_transmit_cmd(chip, NULL, buf.data, PAGE_SIZE, 4, flags,
Stefan Bergerc659af72017-01-19 07:19:12 -0500575 "loading blob");
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300576 if (!rc)
577 *blob_handle = be32_to_cpup(
578 (__be32 *) &buf.data[TPM_HEADER_SIZE]);
579
580out:
581 tpm_buf_destroy(&buf);
582
583 if (rc > 0)
584 rc = -EPERM;
585
586 return rc;
587}
588
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300589/**
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300590 * tpm2_unseal_cmd() - execute a TPM2_Unload command
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200591 *
592 * @chip: TPM chip to use
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300593 * @payload: the key data in clear and encrypted form
594 * @options: authentication values and other options
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200595 * @blob_handle: blob handle
596 * @flags: tpm_transmit_cmd flags
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300597 *
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200598 * Return: 0 on success
599 * -EPERM on tpm error status
600 * < 0 error from tpm_transmit_cmd
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300601 */
602static 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)
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300606{
607 struct tpm_buf buf;
Jarkko Sakkinen2e311252015-10-30 14:57:02 +0200608 u16 data_len;
609 u8 *data;
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300610 int rc;
611
612 rc = tpm_buf_init(&buf, TPM2_ST_SESSIONS, TPM2_CC_UNSEAL);
613 if (rc)
614 return rc;
615
616 tpm_buf_append_u32(&buf, blob_handle);
Jarkko Sakkinen5beb0c42015-10-31 17:53:44 +0200617 tpm2_buf_append_auth(&buf,
618 options->policyhandle ?
619 options->policyhandle : TPM2_RS_PW,
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300620 NULL /* nonce */, 0,
Jarkko Sakkinenc0b5eed2016-02-13 11:51:23 +0200621 TPM2_SA_CONTINUE_SESSION,
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300622 options->blobauth /* hmac */,
623 TPM_DIGEST_SIZE);
624
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200625 rc = tpm_transmit_cmd(chip, NULL, buf.data, PAGE_SIZE, 6, flags,
Stefan Bergerc659af72017-01-19 07:19:12 -0500626 "unsealing");
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300627 if (rc > 0)
628 rc = -EPERM;
629
630 if (!rc) {
Jarkko Sakkinen2e311252015-10-30 14:57:02 +0200631 data_len = be16_to_cpup(
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300632 (__be16 *) &buf.data[TPM_HEADER_SIZE + 4]);
Jeremy Boone3be23272018-02-08 12:28:08 -0800633 if (data_len < MIN_KEY_SIZE || data_len > MAX_KEY_SIZE + 1) {
634 rc = -EFAULT;
635 goto out;
636 }
Stefan Bergerc659af72017-01-19 07:19:12 -0500637
Jarkko Sakkinence63c052018-03-26 15:14:06 +0300638 if (tpm_buf_length(&buf) < TPM_HEADER_SIZE + 6 + data_len) {
Stefan Bergerc659af72017-01-19 07:19:12 -0500639 rc = -EFAULT;
640 goto out;
641 }
Jarkko Sakkinen2e311252015-10-30 14:57:02 +0200642 data = &buf.data[TPM_HEADER_SIZE + 6];
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300643
Jarkko Sakkinen2e311252015-10-30 14:57:02 +0200644 memcpy(payload->key, data, data_len - 1);
645 payload->key_len = data_len - 1;
646 payload->migratable = data[data_len - 1];
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300647 }
648
Stefan Bergerc659af72017-01-19 07:19:12 -0500649out:
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300650 tpm_buf_destroy(&buf);
651 return rc;
652}
653
654/**
Baruch Siachcbef69a2016-11-06 11:02:45 +0200655 * tpm2_unseal_trusted() - unseal the payload of a trusted key
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200656 *
657 * @chip: TPM chip to use
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300658 * @payload: the key data in clear and encrypted form
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300659 * @options: authentication values and other options
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300660 *
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200661 * Return: Same as with tpm_transmit_cmd.
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300662 */
663int tpm2_unseal_trusted(struct tpm_chip *chip,
664 struct trusted_key_payload *payload,
665 struct trusted_key_options *options)
666{
667 u32 blob_handle;
668 int rc;
669
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300670 mutex_lock(&chip->tpm_mutex);
671 rc = tpm2_load_cmd(chip, payload, options, &blob_handle,
672 TPM_TRANSMIT_UNLOCKED);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300673 if (rc)
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300674 goto out;
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300675
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300676 rc = tpm2_unseal_cmd(chip, payload, options, blob_handle,
677 TPM_TRANSMIT_UNLOCKED);
678 tpm2_flush_context_cmd(chip, blob_handle, TPM_TRANSMIT_UNLOCKED);
679out:
680 mutex_unlock(&chip->tpm_mutex);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300681 return rc;
682}
683
Jarkko Sakkinen2ab32412018-03-26 15:14:05 +0300684struct tpm2_get_cap_out {
685 u8 more_data;
686 __be32 subcap_id;
687 __be32 property_cnt;
688 __be32 property_id;
689 __be32 value;
690} __packed;
691
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300692/**
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800693 * tpm2_get_tpm_pt() - get value of a TPM_CAP_TPM_PROPERTIES type property
Jarkko Sakkinen2ab32412018-03-26 15:14:05 +0300694 * @chip: a &tpm_chip instance
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800695 * @property_id: property ID.
696 * @value: output variable.
697 * @desc: passed to tpm_transmit_cmd()
698 *
Jarkko Sakkinen2ab32412018-03-26 15:14:05 +0300699 * Return:
700 * 0 on success,
701 * -errno or a TPM return code otherwise
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800702 */
703ssize_t tpm2_get_tpm_pt(struct tpm_chip *chip, u32 property_id, u32 *value,
704 const char *desc)
705{
Jarkko Sakkinen2ab32412018-03-26 15:14:05 +0300706 struct tpm2_get_cap_out *out;
707 struct tpm_buf buf;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800708 int rc;
709
Jarkko Sakkinen2ab32412018-03-26 15:14:05 +0300710 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_GET_CAPABILITY);
711 if (rc)
712 return rc;
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);
717 if (!rc) {
718 out = (struct tpm2_get_cap_out *)
719 &buf.data[TPM_HEADER_SIZE];
720 *value = be32_to_cpu(out->value);
721 }
722 tpm_buf_destroy(&buf);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800723 return rc;
724}
Jarkko Sakkineneb5854e2016-06-12 16:42:09 +0300725EXPORT_SYMBOL_GPL(tpm2_get_tpm_pt);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800726
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800727/**
Jarkko Sakkinencc26c6e2018-06-05 22:22:58 +0300728 * tpm2_shutdown() - send a TPM shutdown command
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200729 *
Jarkko Sakkinencc26c6e2018-06-05 22:22:58 +0300730 * 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.
733 *
734 * @chip: a &tpm_chip instance
735 * @shutdown_type: TPM_SU_CLEAR or TPM_SU_STATE.
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800736 */
Jarkko Sakkinen74d6b3c2015-01-29 07:43:47 +0200737void tpm2_shutdown(struct tpm_chip *chip, u16 shutdown_type)
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800738{
Jarkko Sakkinencc26c6e2018-06-05 22:22:58 +0300739 struct tpm_buf buf;
Jarkko Sakkinen74d6b3c2015-01-29 07:43:47 +0200740 int rc;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800741
Jarkko Sakkinencc26c6e2018-06-05 22:22:58 +0300742 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_SHUTDOWN);
743 if (rc)
744 return;
745 tpm_buf_append_u16(&buf, shutdown_type);
746 tpm_transmit_cmd(chip, NULL, buf.data, PAGE_SIZE, 0, 0,
747 "stopping the TPM");
748 tpm_buf_destroy(&buf);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800749}
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800750
751/*
752 * tpm2_calc_ordinal_duration() - maximum duration for a command
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200753 *
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800754 * @chip: TPM chip to use.
755 * @ordinal: command code number.
756 *
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200757 * Return: maximum duration for a command
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800758 */
759unsigned long tpm2_calc_ordinal_duration(struct tpm_chip *chip, u32 ordinal)
760{
761 int index = TPM_UNDEFINED;
762 int duration = 0;
763
764 if (ordinal >= TPM2_CC_FIRST && ordinal <= TPM2_CC_LAST)
765 index = tpm2_ordinal_duration[ordinal - TPM2_CC_FIRST];
766
767 if (index != TPM_UNDEFINED)
Christophe Ricardaf782f32016-03-31 22:56:59 +0200768 duration = chip->duration[index];
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800769
770 if (duration <= 0)
Tomas Winkler076d35642018-03-10 17:15:45 +0200771 duration = msecs_to_jiffies(TPM2_DURATION_DEFAULT);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800772
773 return duration;
774}
775EXPORT_SYMBOL_GPL(tpm2_calc_ordinal_duration);
776
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800777/**
Alexander Steffen2482b1b2017-08-31 19:18:56 +0200778 * tpm2_do_selftest() - ensure that all self tests have passed
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200779 *
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800780 * @chip: TPM chip to use
781 *
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200782 * Return: Same as with tpm_transmit_cmd.
783 *
Alexander Steffen125a2212017-08-31 19:18:58 +0200784 * 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.
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800789 */
Jason Gunthorpecae8b442016-07-12 11:41:49 -0600790static int tpm2_do_selftest(struct tpm_chip *chip)
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800791{
James Bottomley2be8ffe2018-03-22 17:32:20 +0200792 struct tpm_buf buf;
793 int full;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800794 int rc;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800795
James Bottomley2be8ffe2018-03-22 17:32:20 +0200796 for (full = 0; full < 2; full++) {
797 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_SELF_TEST);
798 if (rc)
799 return rc;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800800
James Bottomley2be8ffe2018-03-22 17:32:20 +0200801 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);
Alexander Steffen125a2212017-08-31 19:18:58 +0200805
James Bottomley2be8ffe2018-03-22 17:32:20 +0200806 if (rc == TPM2_RC_TESTING)
807 rc = TPM2_RC_SUCCESS;
808 if (rc == TPM2_RC_INITIALIZE || rc == TPM2_RC_SUCCESS)
809 return rc;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800810 }
811
812 return rc;
813}
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800814
815/**
Jarkko Sakkinen94e266b2018-03-26 15:14:04 +0300816 * tpm2_probe() - probe for the TPM 2.0 protocol
817 * @chip: a &tpm_chip instance
Jarkko Sakkinen4d5f2052015-02-04 16:21:09 +0200818 *
Jarkko Sakkinen94e266b2018-03-26 15:14:04 +0300819 * 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.
Winkler, Tomas794c6e12016-11-23 12:04:12 +0200822 *
Jarkko Sakkinen94e266b2018-03-26 15:14:04 +0300823 * Return:
824 * 0 on success,
825 * -errno otherwise
Jarkko Sakkinen4d5f2052015-02-04 16:21:09 +0200826 */
827int tpm2_probe(struct tpm_chip *chip)
828{
Jarkko Sakkinen94e266b2018-03-26 15:14:04 +0300829 struct tpm_output_header *out;
830 struct tpm_buf buf;
Jarkko Sakkinen4d5f2052015-02-04 16:21:09 +0200831 int rc;
832
Jarkko Sakkinen94e266b2018-03-26 15:14:04 +0300833 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_GET_CAPABILITY);
834 if (rc)
Jarkko Sakkinen4d5f2052015-02-04 16:21:09 +0200835 return rc;
Jarkko Sakkinen94e266b2018-03-26 15:14:04 +0300836 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. */
841 if (rc >= 0) {
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;
845 }
846 tpm_buf_destroy(&buf);
Jarkko Sakkinen4d5f2052015-02-04 16:21:09 +0200847 return 0;
848}
849EXPORT_SYMBOL_GPL(tpm2_probe);
Jason Gunthorpecae8b442016-07-12 11:41:49 -0600850
Nayna Jain1db15342017-01-30 04:59:40 -0500851struct tpm2_pcr_selection {
852 __be16 hash_alg;
853 u8 size_of_select;
854 u8 pcr_select[3];
855} __packed;
856
Jarkko Sakkinen61841be2017-02-15 20:02:28 +0200857static ssize_t tpm2_get_pcr_allocation(struct tpm_chip *chip)
Nayna Jain1db15342017-01-30 04:59:40 -0500858{
859 struct tpm2_pcr_selection pcr_selection;
860 struct tpm_buf buf;
861 void *marker;
862 void *end;
863 void *pcr_select_offset;
864 unsigned int count;
865 u32 sizeof_pcr_selection;
866 u32 rsp_len;
867 int rc;
868 int i = 0;
869
870 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_GET_CAPABILITY);
871 if (rc)
872 return rc;
873
874 tpm_buf_append_u32(&buf, TPM2_CAP_PCRS);
875 tpm_buf_append_u32(&buf, 0);
876 tpm_buf_append_u32(&buf, 1);
877
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200878 rc = tpm_transmit_cmd(chip, NULL, buf.data, PAGE_SIZE, 9, 0,
Nayna Jain1db15342017-01-30 04:59:40 -0500879 "get tpm pcr allocation");
880 if (rc)
881 goto out;
882
883 count = be32_to_cpup(
884 (__be32 *)&buf.data[TPM_HEADER_SIZE + 5]);
885
886 if (count > ARRAY_SIZE(chip->active_banks)) {
887 rc = -ENODEV;
888 goto out;
889 }
890
891 marker = &buf.data[TPM_HEADER_SIZE + 9];
892
893 rsp_len = be32_to_cpup((__be32 *)&buf.data[2]);
894 end = &buf.data[rsp_len];
895
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) {
900 rc = -EFAULT;
901 break;
902 }
903
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;
910 }
911
912out:
913 if (i < ARRAY_SIZE(chip->active_banks))
914 chip->active_banks[i] = TPM2_ALG_ERROR;
915
916 tpm_buf_destroy(&buf);
917
918 return rc;
919}
Jarkko Sakkinen61841be2017-02-15 20:02:28 +0200920
Jarkko Sakkinen58472f52016-11-10 20:42:07 -0800921static int tpm2_get_cc_attrs_tbl(struct tpm_chip *chip)
922{
923 struct tpm_buf buf;
924 u32 nr_commands;
Jarkko Sakkinen171360d2017-09-13 09:58:49 -0700925 __be32 *attrs;
Jarkko Sakkinen58472f52016-11-10 20:42:07 -0800926 u32 cc;
927 int i;
928 int rc;
929
930 rc = tpm2_get_tpm_pt(chip, TPM_PT_TOTAL_COMMANDS, &nr_commands, NULL);
931 if (rc)
932 goto out;
933
934 if (nr_commands > 0xFFFFF) {
935 rc = -EFAULT;
936 goto out;
937 }
938
Kees Cooka86854d2018-06-12 14:07:58 -0700939 chip->cc_attrs_tbl = devm_kcalloc(&chip->dev, 4, nr_commands,
Jarkko Sakkinen58472f52016-11-10 20:42:07 -0800940 GFP_KERNEL);
941
942 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_GET_CAPABILITY);
943 if (rc)
944 goto out;
945
946 tpm_buf_append_u32(&buf, TPM2_CAP_COMMANDS);
947 tpm_buf_append_u32(&buf, TPM2_CC_FIRST);
948 tpm_buf_append_u32(&buf, nr_commands);
949
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200950 rc = tpm_transmit_cmd(chip, NULL, buf.data, PAGE_SIZE,
951 9 + 4 * nr_commands, 0, 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/**
986 * tpm2_auto_startup - Perform the standard automatic TPM initialization
987 * sequence
988 * @chip: TPM chip to use
989 *
Jarkko Sakkinen58472f52016-11-10 20:42:07 -0800990 * Returns 0 on success, < 0 in case of fatal error.
Jarkko Sakkinen61841be2017-02-15 20:02:28 +0200991 */
992int tpm2_auto_startup(struct tpm_chip *chip)
993{
994 int rc;
995
996 rc = tpm_get_timeouts(chip);
997 if (rc)
998 goto out;
999
1000 rc = tpm2_do_selftest(chip);
James Bottomley2be8ffe2018-03-22 17:32:20 +02001001 if (rc && rc != TPM2_RC_INITIALIZE)
Jarkko Sakkinen61841be2017-02-15 20:02:28 +02001002 goto out;
Jarkko Sakkinen61841be2017-02-15 20:02:28 +02001003
1004 if (rc == TPM2_RC_INITIALIZE) {
Jarkko Sakkinen19cbe4f2017-06-21 09:31:34 +02001005 rc = tpm_startup(chip);
Jarkko Sakkinen61841be2017-02-15 20:02:28 +02001006 if (rc)
1007 goto out;
1008
1009 rc = tpm2_do_selftest(chip);
James Bottomley2be8ffe2018-03-22 17:32:20 +02001010 if (rc)
Jarkko Sakkinen61841be2017-02-15 20:02:28 +02001011 goto out;
Jarkko Sakkinen61841be2017-02-15 20:02:28 +02001012 }
1013
1014 rc = tpm2_get_pcr_allocation(chip);
Jarkko Sakkinen58472f52016-11-10 20:42:07 -08001015 if (rc)
1016 goto out;
1017
1018 rc = tpm2_get_cc_attrs_tbl(chip);
Jarkko Sakkinen61841be2017-02-15 20:02:28 +02001019
1020out:
1021 if (rc > 0)
1022 rc = -ENODEV;
1023 return rc;
1024}
Jarkko Sakkinen58472f52016-11-10 20:42:07 -08001025
1026int tpm2_find_cc(struct tpm_chip *chip, u32 cc)
1027{
1028 int i;
1029
1030 for (i = 0; i < chip->nr_commands; i++)
1031 if (cc == (chip->cc_attrs_tbl[i] & GENMASK(15, 0)))
1032 return i;
1033
1034 return -1;
1035}