blob: ef0fcdb40cc3bb217d09238ac8783b69888a1846 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2004 IBM Corporation
Jarkko Sakkinenafb5abc2014-12-12 11:46:34 -08003 * Copyright (C) 2014 Intel Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Authors:
6 * Leendert van Doorn <leendert@watson.ibm.com>
7 * Dave Safford <safford@watson.ibm.com>
8 * Reiner Sailer <sailer@watson.ibm.com>
9 * Kylene Hall <kjhall@us.ibm.com>
10 *
Kent Yoder8e81cc12007-08-22 14:01:04 -070011 * Maintained by: <tpmdd-devel@lists.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
13 * Device driver for TCG/TCPA TPM (trusted platform module).
Peter Huewe0a418262013-10-22 00:29:14 +020014 * Specifications at www.trustedcomputinggroup.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License as
18 * published by the Free Software Foundation, version 2 of the
19 * License.
Peter Huewe0a418262013-10-22 00:29:14 +020020 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * Note, the TPM chip is not interrupt driven (only polling)
22 * and can have very long timeouts (minutes!). Hence the unusual
Nishanth Aravamudan700d8bd2005-06-23 22:01:47 -070023 * calls to msleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 *
25 */
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/poll.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Matthias Kaehlcked081d472007-05-08 00:32:02 -070029#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/spinlock.h>
Rajiv Andradefd048862011-09-16 14:39:40 -030031#include <linux/freezer.h>
Winkler, Tomase74f2f72016-10-08 14:59:39 +030032#include <linux/pm_runtime.h>
Matthias Kaehlcked081d472007-05-08 00:32:02 -070033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "tpm.h"
Kent Yodere5dcd872012-07-11 10:08:12 -050035#include "tpm_eventlog.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -070037#define TPM_MAX_ORDINAL 243
Peter Huewe07b133e2012-11-16 00:31:29 +010038#define TSC_MAX_ORDINAL 12
39#define TPM_PROTECTED_COMMAND 0x00
40#define TPM_CONNECTION_COMMAND 0x40
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -070041
Dmitry Torokhov9b3056c2010-10-01 14:16:39 -070042/*
43 * Bug workaround - some TPM's don't flush the most
44 * recently changed pcr on suspend, so force the flush
45 * with an extend to the selected _unused_ non-volatile pcr.
46 */
47static int tpm_suspend_pcr;
48module_param_named(suspend_pcr, tpm_suspend_pcr, uint, 0644);
49MODULE_PARM_DESC(suspend_pcr,
50 "PCR to use for dummy writes to faciltate flush on suspend.");
51
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -070052/*
53 * Array with one entry per ordinal defining the maximum amount
54 * of time the chip could take to return the result. The ordinal
55 * designation of short, medium or long is defined in a table in
56 * TCG Specification TPM Main Part 2 TPM Structures Section 17. The
57 * values of the SHORT, MEDIUM, and LONG durations are retrieved
58 * from the chip during initialization with a call to tpm_get_timeouts.
59 */
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -070060static const u8 tpm_ordinal_duration[TPM_MAX_ORDINAL] = {
61 TPM_UNDEFINED, /* 0 */
62 TPM_UNDEFINED,
63 TPM_UNDEFINED,
64 TPM_UNDEFINED,
65 TPM_UNDEFINED,
66 TPM_UNDEFINED, /* 5 */
67 TPM_UNDEFINED,
68 TPM_UNDEFINED,
69 TPM_UNDEFINED,
70 TPM_UNDEFINED,
71 TPM_SHORT, /* 10 */
72 TPM_SHORT,
73 TPM_MEDIUM,
74 TPM_LONG,
75 TPM_LONG,
76 TPM_MEDIUM, /* 15 */
77 TPM_SHORT,
78 TPM_SHORT,
79 TPM_MEDIUM,
80 TPM_LONG,
81 TPM_SHORT, /* 20 */
82 TPM_SHORT,
83 TPM_MEDIUM,
84 TPM_MEDIUM,
85 TPM_MEDIUM,
86 TPM_SHORT, /* 25 */
87 TPM_SHORT,
88 TPM_MEDIUM,
89 TPM_SHORT,
90 TPM_SHORT,
91 TPM_MEDIUM, /* 30 */
92 TPM_LONG,
93 TPM_MEDIUM,
94 TPM_SHORT,
95 TPM_SHORT,
96 TPM_SHORT, /* 35 */
97 TPM_MEDIUM,
98 TPM_MEDIUM,
99 TPM_UNDEFINED,
100 TPM_UNDEFINED,
101 TPM_MEDIUM, /* 40 */
102 TPM_LONG,
103 TPM_MEDIUM,
104 TPM_SHORT,
105 TPM_SHORT,
106 TPM_SHORT, /* 45 */
107 TPM_SHORT,
108 TPM_SHORT,
109 TPM_SHORT,
110 TPM_LONG,
111 TPM_MEDIUM, /* 50 */
112 TPM_MEDIUM,
113 TPM_UNDEFINED,
114 TPM_UNDEFINED,
115 TPM_UNDEFINED,
116 TPM_UNDEFINED, /* 55 */
117 TPM_UNDEFINED,
118 TPM_UNDEFINED,
119 TPM_UNDEFINED,
120 TPM_UNDEFINED,
121 TPM_MEDIUM, /* 60 */
122 TPM_MEDIUM,
123 TPM_MEDIUM,
124 TPM_SHORT,
125 TPM_SHORT,
126 TPM_MEDIUM, /* 65 */
127 TPM_UNDEFINED,
128 TPM_UNDEFINED,
129 TPM_UNDEFINED,
130 TPM_UNDEFINED,
131 TPM_SHORT, /* 70 */
132 TPM_SHORT,
133 TPM_UNDEFINED,
134 TPM_UNDEFINED,
135 TPM_UNDEFINED,
136 TPM_UNDEFINED, /* 75 */
137 TPM_UNDEFINED,
138 TPM_UNDEFINED,
139 TPM_UNDEFINED,
140 TPM_UNDEFINED,
141 TPM_LONG, /* 80 */
142 TPM_UNDEFINED,
143 TPM_MEDIUM,
144 TPM_LONG,
145 TPM_SHORT,
146 TPM_UNDEFINED, /* 85 */
147 TPM_UNDEFINED,
148 TPM_UNDEFINED,
149 TPM_UNDEFINED,
150 TPM_UNDEFINED,
151 TPM_SHORT, /* 90 */
152 TPM_SHORT,
153 TPM_SHORT,
154 TPM_SHORT,
155 TPM_SHORT,
156 TPM_UNDEFINED, /* 95 */
157 TPM_UNDEFINED,
158 TPM_UNDEFINED,
159 TPM_UNDEFINED,
160 TPM_UNDEFINED,
161 TPM_MEDIUM, /* 100 */
162 TPM_SHORT,
163 TPM_SHORT,
164 TPM_UNDEFINED,
165 TPM_UNDEFINED,
166 TPM_UNDEFINED, /* 105 */
167 TPM_UNDEFINED,
168 TPM_UNDEFINED,
169 TPM_UNDEFINED,
170 TPM_UNDEFINED,
171 TPM_SHORT, /* 110 */
172 TPM_SHORT,
173 TPM_SHORT,
174 TPM_SHORT,
175 TPM_SHORT,
176 TPM_SHORT, /* 115 */
177 TPM_SHORT,
178 TPM_SHORT,
179 TPM_UNDEFINED,
180 TPM_UNDEFINED,
181 TPM_LONG, /* 120 */
182 TPM_LONG,
183 TPM_MEDIUM,
184 TPM_UNDEFINED,
185 TPM_SHORT,
186 TPM_SHORT, /* 125 */
187 TPM_SHORT,
188 TPM_LONG,
189 TPM_SHORT,
190 TPM_SHORT,
191 TPM_SHORT, /* 130 */
192 TPM_MEDIUM,
193 TPM_UNDEFINED,
194 TPM_SHORT,
195 TPM_MEDIUM,
196 TPM_UNDEFINED, /* 135 */
197 TPM_UNDEFINED,
198 TPM_UNDEFINED,
199 TPM_UNDEFINED,
200 TPM_UNDEFINED,
201 TPM_SHORT, /* 140 */
202 TPM_SHORT,
203 TPM_UNDEFINED,
204 TPM_UNDEFINED,
205 TPM_UNDEFINED,
206 TPM_UNDEFINED, /* 145 */
207 TPM_UNDEFINED,
208 TPM_UNDEFINED,
209 TPM_UNDEFINED,
210 TPM_UNDEFINED,
211 TPM_SHORT, /* 150 */
212 TPM_MEDIUM,
213 TPM_MEDIUM,
214 TPM_SHORT,
215 TPM_SHORT,
216 TPM_UNDEFINED, /* 155 */
217 TPM_UNDEFINED,
218 TPM_UNDEFINED,
219 TPM_UNDEFINED,
220 TPM_UNDEFINED,
221 TPM_SHORT, /* 160 */
222 TPM_SHORT,
223 TPM_SHORT,
224 TPM_SHORT,
225 TPM_UNDEFINED,
226 TPM_UNDEFINED, /* 165 */
227 TPM_UNDEFINED,
228 TPM_UNDEFINED,
229 TPM_UNDEFINED,
230 TPM_UNDEFINED,
231 TPM_LONG, /* 170 */
232 TPM_UNDEFINED,
233 TPM_UNDEFINED,
234 TPM_UNDEFINED,
235 TPM_UNDEFINED,
236 TPM_UNDEFINED, /* 175 */
237 TPM_UNDEFINED,
238 TPM_UNDEFINED,
239 TPM_UNDEFINED,
240 TPM_UNDEFINED,
241 TPM_MEDIUM, /* 180 */
242 TPM_SHORT,
243 TPM_MEDIUM,
244 TPM_MEDIUM,
245 TPM_MEDIUM,
246 TPM_MEDIUM, /* 185 */
247 TPM_SHORT,
248 TPM_UNDEFINED,
249 TPM_UNDEFINED,
250 TPM_UNDEFINED,
251 TPM_UNDEFINED, /* 190 */
252 TPM_UNDEFINED,
253 TPM_UNDEFINED,
254 TPM_UNDEFINED,
255 TPM_UNDEFINED,
256 TPM_UNDEFINED, /* 195 */
257 TPM_UNDEFINED,
258 TPM_UNDEFINED,
259 TPM_UNDEFINED,
260 TPM_UNDEFINED,
261 TPM_SHORT, /* 200 */
262 TPM_UNDEFINED,
263 TPM_UNDEFINED,
264 TPM_UNDEFINED,
265 TPM_SHORT,
266 TPM_SHORT, /* 205 */
267 TPM_SHORT,
268 TPM_SHORT,
269 TPM_SHORT,
270 TPM_SHORT,
271 TPM_MEDIUM, /* 210 */
272 TPM_UNDEFINED,
273 TPM_MEDIUM,
274 TPM_MEDIUM,
275 TPM_MEDIUM,
276 TPM_UNDEFINED, /* 215 */
277 TPM_MEDIUM,
278 TPM_UNDEFINED,
279 TPM_UNDEFINED,
280 TPM_SHORT,
281 TPM_SHORT, /* 220 */
282 TPM_SHORT,
283 TPM_SHORT,
284 TPM_SHORT,
285 TPM_SHORT,
286 TPM_UNDEFINED, /* 225 */
287 TPM_UNDEFINED,
288 TPM_UNDEFINED,
289 TPM_UNDEFINED,
290 TPM_UNDEFINED,
291 TPM_SHORT, /* 230 */
292 TPM_LONG,
293 TPM_MEDIUM,
294 TPM_UNDEFINED,
295 TPM_UNDEFINED,
296 TPM_UNDEFINED, /* 235 */
297 TPM_UNDEFINED,
298 TPM_UNDEFINED,
299 TPM_UNDEFINED,
300 TPM_UNDEFINED,
301 TPM_SHORT, /* 240 */
302 TPM_UNDEFINED,
303 TPM_MEDIUM,
304};
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306/*
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700307 * Returns max number of jiffies to wait
308 */
309unsigned long tpm_calc_ordinal_duration(struct tpm_chip *chip,
310 u32 ordinal)
311{
312 int duration_idx = TPM_UNDEFINED;
313 int duration = 0;
314
Martin Wilckf7286432015-11-20 14:32:33 +0100315 /*
316 * We only have a duration table for protected commands, where the upper
317 * 16 bits are 0. For the few other ordinals the fallback will be used.
318 */
319 if (ordinal < TPM_MAX_ORDINAL)
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700320 duration_idx = tpm_ordinal_duration[ordinal];
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700321
Linus Torvalds8d1dc202011-03-01 13:23:27 -0800322 if (duration_idx != TPM_UNDEFINED)
Christophe Ricardaf782f32016-03-31 22:56:59 +0200323 duration = chip->duration[duration_idx];
Linus Torvalds8d1dc202011-03-01 13:23:27 -0800324 if (duration <= 0)
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700325 return 2 * 60 * HZ;
Linus Torvalds8d1dc202011-03-01 13:23:27 -0800326 else
327 return duration;
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700328}
329EXPORT_SYMBOL_GPL(tpm_calc_ordinal_duration);
330
331/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 * Internal kernel interface to transmit TPM commands
333 */
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300334ssize_t tpm_transmit(struct tpm_chip *chip, const u8 *buf, size_t bufsiz,
335 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700337 ssize_t rc;
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700338 u32 count, ordinal;
Nishanth Aravamudan700d8bd2005-06-23 22:01:47 -0700339 unsigned long stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Jarkko Sakkinenebfd7532016-09-12 13:43:30 +0300341 if (bufsiz < TPM_HEADER_SIZE)
342 return -EINVAL;
343
Peter Huewe6b07d302011-09-15 14:37:43 -0300344 if (bufsiz > TPM_BUFSIZE)
345 bufsiz = TPM_BUFSIZE;
346
Kylene Hall81179bb2005-06-23 22:01:59 -0700347 count = be32_to_cpu(*((__be32 *) (buf + 2)));
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700348 ordinal = be32_to_cpu(*((__be32 *) (buf + 6)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (count == 0)
350 return -ENODATA;
351 if (count > bufsiz) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500352 dev_err(&chip->dev,
Peter Huewe0a418262013-10-22 00:29:14 +0200353 "invalid count value %x %zx\n", count, bufsiz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return -E2BIG;
355 }
356
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300357 if (!(flags & TPM_TRANSMIT_UNLOCKED))
358 mutex_lock(&chip->tpm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Winkler, Tomase74f2f72016-10-08 14:59:39 +0300360 pm_runtime_get_sync(chip->dev.parent);
361
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700362 rc = chip->ops->send(chip, (u8 *) buf, count);
Peter Huewe0a418262013-10-22 00:29:14 +0200363 if (rc < 0) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500364 dev_err(&chip->dev,
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700365 "tpm_transmit: tpm_send: error %zd\n", rc);
366 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
368
Christophe Ricard570a3602016-03-31 22:56:56 +0200369 if (chip->flags & TPM_CHIP_FLAG_IRQ)
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700370 goto out_recv;
371
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800372 if (chip->flags & TPM_CHIP_FLAG_TPM2)
373 stop = jiffies + tpm2_calc_ordinal_duration(chip, ordinal);
374 else
375 stop = jiffies + tpm_calc_ordinal_duration(chip, ordinal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 do {
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700377 u8 status = chip->ops->status(chip);
378 if ((status & chip->ops->req_complete_mask) ==
379 chip->ops->req_complete_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 goto out_recv;
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700381
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700382 if (chip->ops->req_canceled(chip, status)) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500383 dev_err(&chip->dev, "Operation Canceled\n");
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700384 rc = -ECANCELED;
385 goto out;
386 }
387
388 msleep(TPM_TIMEOUT); /* CHECK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 rmb();
Nishanth Aravamudan700d8bd2005-06-23 22:01:47 -0700390 } while (time_before(jiffies, stop));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700392 chip->ops->cancel(chip);
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500393 dev_err(&chip->dev, "Operation Timed out\n");
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700394 rc = -ETIME;
395 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397out_recv:
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700398 rc = chip->ops->recv(chip, (u8 *) buf, bufsiz);
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700399 if (rc < 0)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500400 dev_err(&chip->dev,
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700401 "tpm_transmit: tpm_recv: error %zd\n", rc);
402out:
Winkler, Tomase74f2f72016-10-08 14:59:39 +0300403 pm_runtime_put_sync(chip->dev.parent);
404
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300405 if (!(flags & TPM_TRANSMIT_UNLOCKED))
406 mutex_unlock(&chip->tpm_mutex);
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700407 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
410#define TPM_DIGEST_SIZE 20
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700411#define TPM_RET_CODE_IDX 6
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700412
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300413ssize_t tpm_transmit_cmd(struct tpm_chip *chip, const void *cmd,
414 int len, unsigned int flags, const char *desc)
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700415{
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300416 const struct tpm_output_header *header;
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700417 int err;
418
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300419 len = tpm_transmit(chip, (const u8 *)cmd, len, flags);
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700420 if (len < 0)
421 return len;
Rajiv Andradeb9e32382011-11-01 17:00:52 -0200422 else if (len < TPM_HEADER_SIZE)
423 return -EFAULT;
424
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800425 header = cmd;
426
427 err = be32_to_cpu(header->return_code);
Jason Gunthorpec584af12012-11-21 13:54:33 -0700428 if (err != 0 && desc)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500429 dev_err(&chip->dev, "A TPM error (%d) occurred %s\n", err,
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800430 desc);
Rajiv Andradeb9e32382011-11-01 17:00:52 -0200431
432 return err;
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700433}
434
Rajiv Andrade08837432009-02-02 15:23:43 -0200435#define TPM_INTERNAL_RESULT_SIZE 200
Rajiv Andrade08837432009-02-02 15:23:43 -0200436#define TPM_ORD_GET_CAP cpu_to_be32(101)
Kent Yoder41ab9992012-06-07 13:47:14 -0500437#define TPM_ORD_GET_RANDOM cpu_to_be32(70)
Rajiv Andrade08837432009-02-02 15:23:43 -0200438
439static const struct tpm_input_header tpm_getcap_header = {
440 .tag = TPM_TAG_RQU_COMMAND,
441 .length = cpu_to_be32(22),
442 .ordinal = TPM_ORD_GET_CAP
443};
444
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300445ssize_t tpm_getcap(struct tpm_chip *chip, u32 subcap_id, cap_t *cap,
Rajiv Andrade08837432009-02-02 15:23:43 -0200446 const char *desc)
447{
448 struct tpm_cmd_t tpm_cmd;
449 int rc;
Rajiv Andrade08837432009-02-02 15:23:43 -0200450
451 tpm_cmd.header.in = tpm_getcap_header;
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300452 if (subcap_id == TPM_CAP_VERSION_1_1 ||
453 subcap_id == TPM_CAP_VERSION_1_2) {
454 tpm_cmd.params.getcap_in.cap = cpu_to_be32(subcap_id);
Rajiv Andrade08837432009-02-02 15:23:43 -0200455 /*subcap field not necessary */
456 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(0);
457 tpm_cmd.header.in.length -= cpu_to_be32(sizeof(__be32));
458 } else {
459 if (subcap_id == TPM_CAP_FLAG_PERM ||
460 subcap_id == TPM_CAP_FLAG_VOL)
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300461 tpm_cmd.params.getcap_in.cap =
462 cpu_to_be32(TPM_CAP_FLAG);
Rajiv Andrade08837432009-02-02 15:23:43 -0200463 else
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300464 tpm_cmd.params.getcap_in.cap =
465 cpu_to_be32(TPM_CAP_PROP);
Rajiv Andrade08837432009-02-02 15:23:43 -0200466 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4);
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300467 tpm_cmd.params.getcap_in.subcap = cpu_to_be32(subcap_id);
Rajiv Andrade08837432009-02-02 15:23:43 -0200468 }
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300469 rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, 0,
470 desc);
Rajiv Andrade08837432009-02-02 15:23:43 -0200471 if (!rc)
472 *cap = tpm_cmd.params.getcap_out.cap;
473 return rc;
474}
Jarkko Sakkineneb5854e2016-06-12 16:42:09 +0300475EXPORT_SYMBOL_GPL(tpm_getcap);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700476
Jason Gunthorpec584af12012-11-21 13:54:33 -0700477#define TPM_ORD_STARTUP cpu_to_be32(153)
478#define TPM_ST_CLEAR cpu_to_be16(1)
479#define TPM_ST_STATE cpu_to_be16(2)
480#define TPM_ST_DEACTIVATED cpu_to_be16(3)
481static const struct tpm_input_header tpm_startup_header = {
482 .tag = TPM_TAG_RQU_COMMAND,
483 .length = cpu_to_be32(12),
484 .ordinal = TPM_ORD_STARTUP
485};
486
487static int tpm_startup(struct tpm_chip *chip, __be16 startup_type)
488{
489 struct tpm_cmd_t start_cmd;
490 start_cmd.header.in = tpm_startup_header;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800491
Jason Gunthorpec584af12012-11-21 13:54:33 -0700492 start_cmd.params.startup_in.startup_type = startup_type;
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300493 return tpm_transmit_cmd(chip, &start_cmd, TPM_INTERNAL_RESULT_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800494 "attempting to start the TPM");
Jason Gunthorpec584af12012-11-21 13:54:33 -0700495}
496
Stefan Berger2b30a902011-11-11 12:57:02 -0500497int tpm_get_timeouts(struct tpm_chip *chip)
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700498{
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300499 cap_t cap;
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600500 unsigned long new_timeout[4];
501 unsigned long old_timeout[4];
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700502 ssize_t rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700503
Jason Gunthorped1d253cf2016-10-26 16:28:44 -0600504 if (chip->flags & TPM_CHIP_FLAG_HAVE_TIMEOUTS)
505 return 0;
506
Jason Gunthorpe25112042015-11-25 14:05:32 -0700507 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
508 /* Fixed timeouts for TPM2 */
Christophe Ricardaf782f32016-03-31 22:56:59 +0200509 chip->timeout_a = msecs_to_jiffies(TPM2_TIMEOUT_A);
510 chip->timeout_b = msecs_to_jiffies(TPM2_TIMEOUT_B);
511 chip->timeout_c = msecs_to_jiffies(TPM2_TIMEOUT_C);
512 chip->timeout_d = msecs_to_jiffies(TPM2_TIMEOUT_D);
513 chip->duration[TPM_SHORT] =
Jason Gunthorpe25112042015-11-25 14:05:32 -0700514 msecs_to_jiffies(TPM2_DURATION_SHORT);
Christophe Ricardaf782f32016-03-31 22:56:59 +0200515 chip->duration[TPM_MEDIUM] =
Jason Gunthorpe25112042015-11-25 14:05:32 -0700516 msecs_to_jiffies(TPM2_DURATION_MEDIUM);
Christophe Ricardaf782f32016-03-31 22:56:59 +0200517 chip->duration[TPM_LONG] =
Jason Gunthorpe25112042015-11-25 14:05:32 -0700518 msecs_to_jiffies(TPM2_DURATION_LONG);
Jason Gunthorped1d253cf2016-10-26 16:28:44 -0600519
520 chip->flags |= TPM_CHIP_FLAG_HAVE_TIMEOUTS;
Jason Gunthorpe25112042015-11-25 14:05:32 -0700521 return 0;
522 }
523
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300524 rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_TIMEOUT, &cap,
525 "attempting to determine the timeouts");
Jason Gunthorpec584af12012-11-21 13:54:33 -0700526 if (rc == TPM_ERR_INVALID_POSTINIT) {
527 /* The TPM is not started, we are the first to talk to it.
528 Execute a startup command. */
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300529 dev_info(&chip->dev, "Issuing TPM_STARTUP\n");
Jason Gunthorpec584af12012-11-21 13:54:33 -0700530 if (tpm_startup(chip, TPM_ST_CLEAR))
531 return rc;
532
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300533 rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_TIMEOUT, &cap,
534 "attempting to determine the timeouts");
Jason Gunthorpec584af12012-11-21 13:54:33 -0700535 }
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300536 if (rc)
537 return rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700538
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300539 old_timeout[0] = be32_to_cpu(cap.timeout.a);
540 old_timeout[1] = be32_to_cpu(cap.timeout.b);
541 old_timeout[2] = be32_to_cpu(cap.timeout.c);
542 old_timeout[3] = be32_to_cpu(cap.timeout.d);
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600543 memcpy(new_timeout, old_timeout, sizeof(new_timeout));
544
545 /*
546 * Provide ability for vendor overrides of timeout values in case
547 * of misreporting.
548 */
549 if (chip->ops->update_timeouts != NULL)
Christophe Ricardaf782f32016-03-31 22:56:59 +0200550 chip->timeout_adjusted =
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600551 chip->ops->update_timeouts(chip, new_timeout);
552
Christophe Ricardaf782f32016-03-31 22:56:59 +0200553 if (!chip->timeout_adjusted) {
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600554 /* Don't overwrite default if value is 0 */
555 if (new_timeout[0] != 0 && new_timeout[0] < 1000) {
556 int i;
557
558 /* timeouts in msec rather usec */
559 for (i = 0; i != ARRAY_SIZE(new_timeout); i++)
560 new_timeout[i] *= 1000;
Christophe Ricardaf782f32016-03-31 22:56:59 +0200561 chip->timeout_adjusted = true;
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600562 }
Stefan Bergere3e1a1e2011-03-30 12:13:27 -0400563 }
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600564
565 /* Report adjusted timeouts */
Christophe Ricardaf782f32016-03-31 22:56:59 +0200566 if (chip->timeout_adjusted) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500567 dev_info(&chip->dev,
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600568 HW_ERR "Adjusting reported timeouts: A %lu->%luus B %lu->%luus C %lu->%luus D %lu->%luus\n",
569 old_timeout[0], new_timeout[0],
570 old_timeout[1], new_timeout[1],
571 old_timeout[2], new_timeout[2],
572 old_timeout[3], new_timeout[3]);
573 }
574
Christophe Ricardaf782f32016-03-31 22:56:59 +0200575 chip->timeout_a = usecs_to_jiffies(new_timeout[0]);
576 chip->timeout_b = usecs_to_jiffies(new_timeout[1]);
577 chip->timeout_c = usecs_to_jiffies(new_timeout[2]);
578 chip->timeout_d = usecs_to_jiffies(new_timeout[3]);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700579
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300580 rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_DURATION, &cap,
581 "attempting to determine the durations");
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700582 if (rc)
Stefan Berger2b30a902011-11-11 12:57:02 -0500583 return rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700584
Christophe Ricardaf782f32016-03-31 22:56:59 +0200585 chip->duration[TPM_SHORT] =
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300586 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_short));
Christophe Ricardaf782f32016-03-31 22:56:59 +0200587 chip->duration[TPM_MEDIUM] =
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300588 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_medium));
Christophe Ricardaf782f32016-03-31 22:56:59 +0200589 chip->duration[TPM_LONG] =
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300590 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_long));
Stefan Bergere934acc2011-03-30 12:13:24 -0400591
592 /* The Broadcom BCM0102 chipset in a Dell Latitude D820 gets the above
593 * value wrong and apparently reports msecs rather than usecs. So we
594 * fix up the resulting too-small TPM_SHORT value to make things work.
595 * We also scale the TPM_MEDIUM and -_LONG values by 1000.
596 */
Christophe Ricardaf782f32016-03-31 22:56:59 +0200597 if (chip->duration[TPM_SHORT] < (HZ / 100)) {
598 chip->duration[TPM_SHORT] = HZ;
599 chip->duration[TPM_MEDIUM] *= 1000;
600 chip->duration[TPM_LONG] *= 1000;
601 chip->duration_adjusted = true;
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500602 dev_info(&chip->dev, "Adjusting TPM timeout parameters.");
Stefan Bergere934acc2011-03-30 12:13:24 -0400603 }
Jason Gunthorped1d253cf2016-10-26 16:28:44 -0600604
605 chip->flags |= TPM_CHIP_FLAG_HAVE_TIMEOUTS;
Stefan Berger2b30a902011-11-11 12:57:02 -0500606 return 0;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700607}
608EXPORT_SYMBOL_GPL(tpm_get_timeouts);
609
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500610#define TPM_ORD_CONTINUE_SELFTEST 83
611#define CONTINUE_SELFTEST_RESULT_SIZE 10
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700612
Julia Lawall00147772016-09-11 15:05:52 +0200613static const struct tpm_input_header continue_selftest_header = {
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500614 .tag = TPM_TAG_RQU_COMMAND,
615 .length = cpu_to_be32(10),
616 .ordinal = cpu_to_be32(TPM_ORD_CONTINUE_SELFTEST),
617};
618
619/**
620 * tpm_continue_selftest -- run TPM's selftest
621 * @chip: TPM chip to use
622 *
623 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
624 * a TPM error code.
625 */
Stefan Berger68d6e672011-11-11 12:57:04 -0500626static int tpm_continue_selftest(struct tpm_chip *chip)
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500627{
628 int rc;
629 struct tpm_cmd_t cmd;
630
631 cmd.header.in = continue_selftest_header;
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300632 rc = tpm_transmit_cmd(chip, &cmd, CONTINUE_SELFTEST_RESULT_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800633 "continue selftest");
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500634 return rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700635}
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700636
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200637#define TPM_ORDINAL_PCRREAD cpu_to_be32(21)
638#define READ_PCR_RESULT_SIZE 30
Julia Lawall00147772016-09-11 15:05:52 +0200639static const struct tpm_input_header pcrread_header = {
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200640 .tag = TPM_TAG_RQU_COMMAND,
641 .length = cpu_to_be32(14),
642 .ordinal = TPM_ORDINAL_PCRREAD
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643};
644
Jason Gunthorpe000a07b2013-11-26 13:30:41 -0700645int tpm_pcr_read_dev(struct tpm_chip *chip, int pcr_idx, u8 *res_buf)
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200646{
647 int rc;
648 struct tpm_cmd_t cmd;
649
650 cmd.header.in = pcrread_header;
651 cmd.params.pcrread_in.pcr_idx = cpu_to_be32(pcr_idx);
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300652 rc = tpm_transmit_cmd(chip, &cmd, READ_PCR_RESULT_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800653 "attempting to read a pcr value");
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200654
655 if (rc == 0)
656 memcpy(res_buf, cmd.params.pcrread_out.pcr_result,
657 TPM_DIGEST_SIZE);
658 return rc;
659}
660
661/**
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300662 * tpm_is_tpm2 - is the chip a TPM2 chip?
663 * @chip_num: tpm idx # or ANY
664 *
665 * Returns < 0 on error, and 1 or 0 on success depending whether the chip
666 * is a TPM2 chip.
667 */
668int tpm_is_tpm2(u32 chip_num)
669{
670 struct tpm_chip *chip;
671 int rc;
672
673 chip = tpm_chip_find_get(chip_num);
674 if (chip == NULL)
675 return -ENODEV;
676
677 rc = (chip->flags & TPM_CHIP_FLAG_TPM2) != 0;
678
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700679 tpm_put_ops(chip);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300680
681 return rc;
682}
683EXPORT_SYMBOL_GPL(tpm_is_tpm2);
684
685/**
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200686 * tpm_pcr_read - read a pcr value
Peter Huewe0a418262013-10-22 00:29:14 +0200687 * @chip_num: tpm idx # or ANY
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200688 * @pcr_idx: pcr idx to retrieve
Peter Huewe0a418262013-10-22 00:29:14 +0200689 * @res_buf: TPM_PCR value
690 * size of res_buf is 20 bytes (or NULL if you don't care)
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200691 *
692 * The TPM driver should be built-in, but for whatever reason it
693 * isn't, protect against the chip disappearing, by incrementing
694 * the module usage count.
695 */
696int tpm_pcr_read(u32 chip_num, int pcr_idx, u8 *res_buf)
697{
698 struct tpm_chip *chip;
699 int rc;
700
701 chip = tpm_chip_find_get(chip_num);
702 if (chip == NULL)
703 return -ENODEV;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800704 if (chip->flags & TPM_CHIP_FLAG_TPM2)
705 rc = tpm2_pcr_read(chip, pcr_idx, res_buf);
706 else
707 rc = tpm_pcr_read_dev(chip, pcr_idx, res_buf);
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700708 tpm_put_ops(chip);
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200709 return rc;
710}
711EXPORT_SYMBOL_GPL(tpm_pcr_read);
712
Winkler, Tomasca6d4582016-11-01 03:05:13 +0200713#define TPM_ORD_PCR_EXTEND cpu_to_be32(20)
714#define EXTEND_PCR_RESULT_SIZE 34
715static const struct tpm_input_header pcrextend_header = {
716 .tag = TPM_TAG_RQU_COMMAND,
717 .length = cpu_to_be32(34),
718 .ordinal = TPM_ORD_PCR_EXTEND
719};
720
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200721/**
722 * tpm_pcr_extend - extend pcr value with hash
Peter Huewe0a418262013-10-22 00:29:14 +0200723 * @chip_num: tpm idx # or AN&
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200724 * @pcr_idx: pcr idx to extend
Peter Huewe0a418262013-10-22 00:29:14 +0200725 * @hash: hash value used to extend pcr value
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200726 *
727 * The TPM driver should be built-in, but for whatever reason it
728 * isn't, protect against the chip disappearing, by incrementing
729 * the module usage count.
730 */
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200731int tpm_pcr_extend(u32 chip_num, int pcr_idx, const u8 *hash)
732{
733 struct tpm_cmd_t cmd;
734 int rc;
735 struct tpm_chip *chip;
736
737 chip = tpm_chip_find_get(chip_num);
738 if (chip == NULL)
739 return -ENODEV;
740
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800741 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
742 rc = tpm2_pcr_extend(chip, pcr_idx, hash);
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700743 tpm_put_ops(chip);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800744 return rc;
745 }
746
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200747 cmd.header.in = pcrextend_header;
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200748 cmd.params.pcrextend_in.pcr_idx = cpu_to_be32(pcr_idx);
749 memcpy(cmd.params.pcrextend_in.hash, hash, TPM_DIGEST_SIZE);
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300750 rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800751 "attempting extend a PCR value");
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200752
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700753 tpm_put_ops(chip);
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200754 return rc;
755}
756EXPORT_SYMBOL_GPL(tpm_pcr_extend);
757
Stefan Berger68d6e672011-11-11 12:57:04 -0500758/**
759 * tpm_do_selftest - have the TPM continue its selftest and wait until it
760 * can receive further commands
761 * @chip: TPM chip to use
762 *
763 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
764 * a TPM error code.
765 */
766int tpm_do_selftest(struct tpm_chip *chip)
767{
768 int rc;
Stefan Berger68d6e672011-11-11 12:57:04 -0500769 unsigned int loops;
Jason Gunthorpe46438262012-11-21 13:15:54 -0800770 unsigned int delay_msec = 100;
Stefan Berger68d6e672011-11-11 12:57:04 -0500771 unsigned long duration;
Jarkko Sakkinen0c541332016-06-17 13:12:20 +0200772 u8 dummy[TPM_DIGEST_SIZE];
Stefan Berger68d6e672011-11-11 12:57:04 -0500773
Peter Huewe0a418262013-10-22 00:29:14 +0200774 duration = tpm_calc_ordinal_duration(chip, TPM_ORD_CONTINUE_SELFTEST);
Stefan Berger68d6e672011-11-11 12:57:04 -0500775
776 loops = jiffies_to_msecs(duration) / delay_msec;
777
778 rc = tpm_continue_selftest(chip);
779 /* This may fail if there was no TPM driver during a suspend/resume
780 * cycle; some may return 10 (BAD_ORDINAL), others 28 (FAILEDSELFTEST)
781 */
782 if (rc)
783 return rc;
784
785 do {
Rajiv Andrade24ebe662012-04-24 17:38:17 -0300786 /* Attempt to read a PCR value */
Jarkko Sakkinen0c541332016-06-17 13:12:20 +0200787 rc = tpm_pcr_read_dev(chip, 0, dummy);
788
Jason Gunthorpe46438262012-11-21 13:15:54 -0800789 /* Some buggy TPMs will not respond to tpm_tis_ready() for
790 * around 300ms while the self test is ongoing, keep trying
791 * until the self test duration expires. */
792 if (rc == -ETIME) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500793 dev_info(
794 &chip->dev, HW_ERR
795 "TPM command timed out during continue self test");
Jason Gunthorpe46438262012-11-21 13:15:54 -0800796 msleep(delay_msec);
797 continue;
798 }
Rajiv Andrade24ebe662012-04-24 17:38:17 -0300799
Stefan Bergerbe405412012-01-17 22:07:30 -0500800 if (rc == TPM_ERR_DISABLED || rc == TPM_ERR_DEACTIVATED) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500801 dev_info(&chip->dev,
Stefan Bergerbe405412012-01-17 22:07:30 -0500802 "TPM is disabled/deactivated (0x%X)\n", rc);
803 /* TPM is disabled and/or deactivated; driver can
804 * proceed and TPM does handle commands for
805 * suspend/resume correctly
806 */
807 return 0;
808 }
Stefan Berger68d6e672011-11-11 12:57:04 -0500809 if (rc != TPM_WARN_DOING_SELFTEST)
810 return rc;
811 msleep(delay_msec);
812 } while (--loops > 0);
813
814 return rc;
815}
816EXPORT_SYMBOL_GPL(tpm_do_selftest);
817
Jason Gunthorpecae8b442016-07-12 11:41:49 -0600818/**
819 * tpm1_auto_startup - Perform the standard automatic TPM initialization
820 * sequence
821 * @chip: TPM chip to use
822 *
823 * Returns 0 on success, < 0 in case of fatal error.
824 */
825int tpm1_auto_startup(struct tpm_chip *chip)
826{
827 int rc;
828
829 rc = tpm_get_timeouts(chip);
830 if (rc)
831 goto out;
832 rc = tpm_do_selftest(chip);
833 if (rc) {
834 dev_err(&chip->dev, "TPM self test failed\n");
835 goto out;
836 }
837
838 return rc;
839out:
840 if (rc > 0)
841 rc = -ENODEV;
842 return rc;
843}
844
Mimi Zoharc749ba92010-11-23 18:54:16 -0500845int tpm_send(u32 chip_num, void *cmd, size_t buflen)
846{
847 struct tpm_chip *chip;
848 int rc;
849
850 chip = tpm_chip_find_get(chip_num);
851 if (chip == NULL)
852 return -ENODEV;
853
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300854 rc = tpm_transmit_cmd(chip, cmd, buflen, 0, "attempting tpm_cmd");
Mimi Zoharc749ba92010-11-23 18:54:16 -0500855
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700856 tpm_put_ops(chip);
Mimi Zoharc749ba92010-11-23 18:54:16 -0500857 return rc;
858}
859EXPORT_SYMBOL_GPL(tpm_send);
860
Peter Huewe0a418262013-10-22 00:29:14 +0200861static bool wait_for_tpm_stat_cond(struct tpm_chip *chip, u8 mask,
862 bool check_cancel, bool *canceled)
Stefan Berger78f09cc2013-01-22 13:57:53 -0600863{
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700864 u8 status = chip->ops->status(chip);
Stefan Berger78f09cc2013-01-22 13:57:53 -0600865
866 *canceled = false;
867 if ((status & mask) == mask)
868 return true;
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700869 if (check_cancel && chip->ops->req_canceled(chip, status)) {
Stefan Berger78f09cc2013-01-22 13:57:53 -0600870 *canceled = true;
871 return true;
872 }
873 return false;
874}
875
Rajiv Andradefd048862011-09-16 14:39:40 -0300876int wait_for_tpm_stat(struct tpm_chip *chip, u8 mask, unsigned long timeout,
Stefan Berger78f09cc2013-01-22 13:57:53 -0600877 wait_queue_head_t *queue, bool check_cancel)
Rajiv Andradefd048862011-09-16 14:39:40 -0300878{
879 unsigned long stop;
880 long rc;
881 u8 status;
Stefan Berger78f09cc2013-01-22 13:57:53 -0600882 bool canceled = false;
Rajiv Andradefd048862011-09-16 14:39:40 -0300883
884 /* check current status */
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700885 status = chip->ops->status(chip);
Rajiv Andradefd048862011-09-16 14:39:40 -0300886 if ((status & mask) == mask)
887 return 0;
888
889 stop = jiffies + timeout;
890
Christophe Ricard570a3602016-03-31 22:56:56 +0200891 if (chip->flags & TPM_CHIP_FLAG_IRQ) {
Rajiv Andradefd048862011-09-16 14:39:40 -0300892again:
893 timeout = stop - jiffies;
894 if ((long)timeout <= 0)
895 return -ETIME;
896 rc = wait_event_interruptible_timeout(*queue,
Stefan Berger78f09cc2013-01-22 13:57:53 -0600897 wait_for_tpm_stat_cond(chip, mask, check_cancel,
898 &canceled),
899 timeout);
900 if (rc > 0) {
901 if (canceled)
902 return -ECANCELED;
Rajiv Andradefd048862011-09-16 14:39:40 -0300903 return 0;
Stefan Berger78f09cc2013-01-22 13:57:53 -0600904 }
Rajiv Andradefd048862011-09-16 14:39:40 -0300905 if (rc == -ERESTARTSYS && freezing(current)) {
906 clear_thread_flag(TIF_SIGPENDING);
907 goto again;
908 }
909 } else {
910 do {
911 msleep(TPM_TIMEOUT);
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700912 status = chip->ops->status(chip);
Rajiv Andradefd048862011-09-16 14:39:40 -0300913 if ((status & mask) == mask)
914 return 0;
915 } while (time_before(jiffies, stop));
916 }
917 return -ETIME;
918}
919EXPORT_SYMBOL_GPL(wait_for_tpm_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300921#define TPM_ORD_SAVESTATE cpu_to_be32(152)
922#define SAVESTATE_RESULT_SIZE 10
923
Julia Lawall00147772016-09-11 15:05:52 +0200924static const struct tpm_input_header savestate_header = {
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300925 .tag = TPM_TAG_RQU_COMMAND,
926 .length = cpu_to_be32(10),
927 .ordinal = TPM_ORD_SAVESTATE
928};
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930/*
931 * We are about to suspend. Save the TPM state
932 * so that it can be restored.
933 */
Rafael J. Wysocki035e2ce2012-07-06 19:09:01 +0200934int tpm_pm_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
Stefan Bergerec03c502016-05-11 11:28:27 -0400936 struct tpm_chip *chip = dev_get_drvdata(dev);
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300937 struct tpm_cmd_t cmd;
Duncan Laurie32d33b22013-03-17 14:56:39 -0700938 int rc, try;
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300939
940 u8 dummy_hash[TPM_DIGEST_SIZE] = { 0 };
David Smith2490c682008-01-14 00:55:12 -0800941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 if (chip == NULL)
943 return -ENODEV;
944
Jarkko Sakkinen74d6b3c2015-01-29 07:43:47 +0200945 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
946 tpm2_shutdown(chip, TPM2_SU_STATE);
947 return 0;
948 }
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800949
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300950 /* for buggy tpm, flush pcrs with extend to selected dummy */
951 if (tpm_suspend_pcr) {
952 cmd.header.in = pcrextend_header;
953 cmd.params.pcrextend_in.pcr_idx = cpu_to_be32(tpm_suspend_pcr);
954 memcpy(cmd.params.pcrextend_in.hash, dummy_hash,
955 TPM_DIGEST_SIZE);
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300956 rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800957 "extending dummy pcr before suspend");
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300958 }
959
960 /* now do the actual savestate */
Duncan Laurie32d33b22013-03-17 14:56:39 -0700961 for (try = 0; try < TPM_RETRY; try++) {
962 cmd.header.in = savestate_header;
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300963 rc = tpm_transmit_cmd(chip, &cmd, SAVESTATE_RESULT_SIZE, 0,
964 NULL);
Duncan Laurie32d33b22013-03-17 14:56:39 -0700965
966 /*
967 * If the TPM indicates that it is too busy to respond to
968 * this command then retry before giving up. It can take
969 * several seconds for this TPM to be ready.
970 *
971 * This can happen if the TPM has already been sent the
972 * SaveState command before the driver has loaded. TCG 1.2
973 * specification states that any communication after SaveState
974 * may cause the TPM to invalidate previously saved state.
975 */
976 if (rc != TPM_WARN_RETRY)
977 break;
978 msleep(TPM_TIMEOUT_RETRY);
979 }
980
981 if (rc)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500982 dev_err(&chip->dev,
Duncan Laurie32d33b22013-03-17 14:56:39 -0700983 "Error (%d) sending savestate before suspend\n", rc);
984 else if (try > 0)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500985 dev_warn(&chip->dev, "TPM savestate took %dms\n",
Duncan Laurie32d33b22013-03-17 14:56:39 -0700986 try * TPM_TIMEOUT_RETRY);
987
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300988 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990EXPORT_SYMBOL_GPL(tpm_pm_suspend);
991
992/*
993 * Resume from a power safe. The BIOS already restored
994 * the TPM state.
995 */
Kylene Jo Hallce2c87d2005-10-30 15:03:25 -0800996int tpm_pm_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
Stefan Bergerec03c502016-05-11 11:28:27 -0400998 struct tpm_chip *chip = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 if (chip == NULL)
1001 return -ENODEV;
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 return 0;
1004}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005EXPORT_SYMBOL_GPL(tpm_pm_resume);
1006
Kent Yoder41ab9992012-06-07 13:47:14 -05001007#define TPM_GETRANDOM_RESULT_SIZE 18
Julia Lawall00147772016-09-11 15:05:52 +02001008static const struct tpm_input_header tpm_getrandom_header = {
Kent Yoder41ab9992012-06-07 13:47:14 -05001009 .tag = TPM_TAG_RQU_COMMAND,
1010 .length = cpu_to_be32(14),
1011 .ordinal = TPM_ORD_GET_RANDOM
1012};
1013
1014/**
1015 * tpm_get_random() - Get random bytes from the tpm's RNG
1016 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1017 * @out: destination buffer for the random bytes
1018 * @max: the max number of bytes to write to @out
1019 *
1020 * Returns < 0 on error and the number of bytes read on success
1021 */
1022int tpm_get_random(u32 chip_num, u8 *out, size_t max)
1023{
1024 struct tpm_chip *chip;
1025 struct tpm_cmd_t tpm_cmd;
1026 u32 recd, num_bytes = min_t(u32, max, TPM_MAX_RNG_DATA);
1027 int err, total = 0, retries = 5;
1028 u8 *dest = out;
1029
Jarkko Sakkinen3e14d832014-05-09 14:23:10 +03001030 if (!out || !num_bytes || max > TPM_MAX_RNG_DATA)
1031 return -EINVAL;
1032
Kent Yoder41ab9992012-06-07 13:47:14 -05001033 chip = tpm_chip_find_get(chip_num);
1034 if (chip == NULL)
1035 return -ENODEV;
1036
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -08001037 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
1038 err = tpm2_get_random(chip, out, max);
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001039 tpm_put_ops(chip);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -08001040 return err;
1041 }
1042
Kent Yoder41ab9992012-06-07 13:47:14 -05001043 do {
1044 tpm_cmd.header.in = tpm_getrandom_header;
1045 tpm_cmd.params.getrandom_in.num_bytes = cpu_to_be32(num_bytes);
1046
Jarkko Sakkinen87155b72014-12-12 11:46:33 -08001047 err = tpm_transmit_cmd(chip, &tpm_cmd,
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +03001048 TPM_GETRANDOM_RESULT_SIZE + num_bytes,
1049 0, "attempting get random");
Kent Yoder41ab9992012-06-07 13:47:14 -05001050 if (err)
1051 break;
1052
1053 recd = be32_to_cpu(tpm_cmd.params.getrandom_out.rng_data_len);
1054 memcpy(dest, tpm_cmd.params.getrandom_out.rng_data, recd);
1055
1056 dest += recd;
1057 total += recd;
1058 num_bytes -= recd;
1059 } while (retries-- && total < max);
1060
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001061 tpm_put_ops(chip);
Kent Yoder41ab9992012-06-07 13:47:14 -05001062 return total ? total : -EIO;
1063}
1064EXPORT_SYMBOL_GPL(tpm_get_random);
1065
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001066/**
1067 * tpm_seal_trusted() - seal a trusted key
1068 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1069 * @options: authentication values and other options
1070 * @payload: the key data in clear and encrypted form
1071 *
1072 * Returns < 0 on error and 0 on success. At the moment, only TPM 2.0 chips
1073 * are supported.
1074 */
1075int tpm_seal_trusted(u32 chip_num, struct trusted_key_payload *payload,
1076 struct trusted_key_options *options)
1077{
1078 struct tpm_chip *chip;
1079 int rc;
1080
1081 chip = tpm_chip_find_get(chip_num);
1082 if (chip == NULL || !(chip->flags & TPM_CHIP_FLAG_TPM2))
1083 return -ENODEV;
1084
1085 rc = tpm2_seal_trusted(chip, payload, options);
1086
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001087 tpm_put_ops(chip);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001088 return rc;
1089}
1090EXPORT_SYMBOL_GPL(tpm_seal_trusted);
1091
1092/**
1093 * tpm_unseal_trusted() - unseal a trusted key
1094 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1095 * @options: authentication values and other options
1096 * @payload: the key data in clear and encrypted form
1097 *
1098 * Returns < 0 on error and 0 on success. At the moment, only TPM 2.0 chips
1099 * are supported.
1100 */
1101int tpm_unseal_trusted(u32 chip_num, struct trusted_key_payload *payload,
1102 struct trusted_key_options *options)
1103{
1104 struct tpm_chip *chip;
1105 int rc;
1106
1107 chip = tpm_chip_find_get(chip_num);
1108 if (chip == NULL || !(chip->flags & TPM_CHIP_FLAG_TPM2))
1109 return -ENODEV;
1110
1111 rc = tpm2_unseal_trusted(chip, payload, options);
1112
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001113 tpm_put_ops(chip);
1114
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001115 return rc;
1116}
1117EXPORT_SYMBOL_GPL(tpm_unseal_trusted);
1118
Jarkko Sakkinen313d21e2014-12-12 11:46:37 -08001119static int __init tpm_init(void)
1120{
1121 int rc;
1122
1123 tpm_class = class_create(THIS_MODULE, "tpm");
1124 if (IS_ERR(tpm_class)) {
1125 pr_err("couldn't create tpm class\n");
1126 return PTR_ERR(tpm_class);
1127 }
1128
1129 rc = alloc_chrdev_region(&tpm_devt, 0, TPM_NUM_DEVICES, "tpm");
1130 if (rc < 0) {
1131 pr_err("tpm: failed to allocate char dev region\n");
1132 class_destroy(tpm_class);
1133 return rc;
1134 }
1135
1136 return 0;
1137}
1138
1139static void __exit tpm_exit(void)
1140{
Stefan Berger15516782016-02-29 08:53:02 -05001141 idr_destroy(&dev_nums_idr);
Jarkko Sakkinen313d21e2014-12-12 11:46:37 -08001142 class_destroy(tpm_class);
1143 unregister_chrdev_region(tpm_devt, TPM_NUM_DEVICES);
1144}
1145
1146subsys_initcall(tpm_init);
1147module_exit(tpm_exit);
1148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
1150MODULE_DESCRIPTION("TPM Driver");
1151MODULE_VERSION("2.0");
1152MODULE_LICENSE("GPL");