blob: 769d8b0d31a368222bd2ecba77894e77fa734c15 [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
Winkler, Tomasf865c192016-11-23 12:04:11 +0200331/**
332 * tmp_transmit - Internal kernel interface to transmit TPM commands.
333 *
334 * @chip: TPM chip to use
335 * @buf: TPM command buffer
336 * @bufsiz: length of the TPM command buffer
337 * @flags: tpm transmit flags - bitmap
338 *
339 * Return:
340 * 0 when the operation is successful.
341 * A negative number for system errors (errno).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 */
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300343ssize_t tpm_transmit(struct tpm_chip *chip, const u8 *buf, size_t bufsiz,
344 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700346 ssize_t rc;
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700347 u32 count, ordinal;
Nishanth Aravamudan700d8bd2005-06-23 22:01:47 -0700348 unsigned long stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Jarkko Sakkinenebfd7532016-09-12 13:43:30 +0300350 if (bufsiz < TPM_HEADER_SIZE)
351 return -EINVAL;
352
Peter Huewe6b07d302011-09-15 14:37:43 -0300353 if (bufsiz > TPM_BUFSIZE)
354 bufsiz = TPM_BUFSIZE;
355
Kylene Hall81179bb2005-06-23 22:01:59 -0700356 count = be32_to_cpu(*((__be32 *) (buf + 2)));
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700357 ordinal = be32_to_cpu(*((__be32 *) (buf + 6)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (count == 0)
359 return -ENODATA;
360 if (count > bufsiz) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500361 dev_err(&chip->dev,
Peter Huewe0a418262013-10-22 00:29:14 +0200362 "invalid count value %x %zx\n", count, bufsiz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return -E2BIG;
364 }
365
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300366 if (!(flags & TPM_TRANSMIT_UNLOCKED))
367 mutex_lock(&chip->tpm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Stefan Berger6804f6b2016-11-07 07:14:33 -0500369 if (chip->dev.parent)
370 pm_runtime_get_sync(chip->dev.parent);
Winkler, Tomase74f2f72016-10-08 14:59:39 +0300371
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700372 rc = chip->ops->send(chip, (u8 *) buf, count);
Peter Huewe0a418262013-10-22 00:29:14 +0200373 if (rc < 0) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500374 dev_err(&chip->dev,
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700375 "tpm_transmit: tpm_send: error %zd\n", rc);
376 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
378
Christophe Ricard570a3602016-03-31 22:56:56 +0200379 if (chip->flags & TPM_CHIP_FLAG_IRQ)
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700380 goto out_recv;
381
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800382 if (chip->flags & TPM_CHIP_FLAG_TPM2)
383 stop = jiffies + tpm2_calc_ordinal_duration(chip, ordinal);
384 else
385 stop = jiffies + tpm_calc_ordinal_duration(chip, ordinal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 do {
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700387 u8 status = chip->ops->status(chip);
388 if ((status & chip->ops->req_complete_mask) ==
389 chip->ops->req_complete_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 goto out_recv;
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700391
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700392 if (chip->ops->req_canceled(chip, status)) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500393 dev_err(&chip->dev, "Operation Canceled\n");
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700394 rc = -ECANCELED;
395 goto out;
396 }
397
398 msleep(TPM_TIMEOUT); /* CHECK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 rmb();
Nishanth Aravamudan700d8bd2005-06-23 22:01:47 -0700400 } while (time_before(jiffies, stop));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700402 chip->ops->cancel(chip);
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500403 dev_err(&chip->dev, "Operation Timed out\n");
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700404 rc = -ETIME;
405 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407out_recv:
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700408 rc = chip->ops->recv(chip, (u8 *) buf, bufsiz);
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700409 if (rc < 0)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500410 dev_err(&chip->dev,
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700411 "tpm_transmit: tpm_recv: error %zd\n", rc);
412out:
Stefan Berger6804f6b2016-11-07 07:14:33 -0500413 if (chip->dev.parent)
414 pm_runtime_put_sync(chip->dev.parent);
Winkler, Tomase74f2f72016-10-08 14:59:39 +0300415
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300416 if (!(flags & TPM_TRANSMIT_UNLOCKED))
417 mutex_unlock(&chip->tpm_mutex);
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700418 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Winkler, Tomasf865c192016-11-23 12:04:11 +0200421/**
422 * tmp_transmit_cmd - send a tpm command to the device
423 * The function extracts tpm out header return code
424 *
425 * @chip: TPM chip to use
426 * @cmd: TPM command buffer
427 * @len: length of the TPM command
428 * @flags: tpm transmit flags - bitmap
429 * @desc: command description used in the error message
430 *
431 * Return:
432 * 0 when the operation is successful.
433 * A negative number for system errors (errno).
434 * A positive number for a TPM error.
435 */
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300436ssize_t tpm_transmit_cmd(struct tpm_chip *chip, const void *cmd,
437 int len, unsigned int flags, const char *desc)
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700438{
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300439 const struct tpm_output_header *header;
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700440 int err;
441
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300442 len = tpm_transmit(chip, (const u8 *)cmd, len, flags);
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700443 if (len < 0)
444 return len;
Rajiv Andradeb9e32382011-11-01 17:00:52 -0200445 else if (len < TPM_HEADER_SIZE)
446 return -EFAULT;
447
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800448 header = cmd;
449
450 err = be32_to_cpu(header->return_code);
Jason Gunthorpec584af12012-11-21 13:54:33 -0700451 if (err != 0 && desc)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500452 dev_err(&chip->dev, "A TPM error (%d) occurred %s\n", err,
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800453 desc);
Rajiv Andradeb9e32382011-11-01 17:00:52 -0200454
455 return err;
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700456}
457
Winkler, Tomasf865c192016-11-23 12:04:11 +0200458#define TPM_DIGEST_SIZE 20
459#define TPM_RET_CODE_IDX 6
Rajiv Andrade08837432009-02-02 15:23:43 -0200460#define TPM_INTERNAL_RESULT_SIZE 200
Rajiv Andrade08837432009-02-02 15:23:43 -0200461#define TPM_ORD_GET_CAP cpu_to_be32(101)
Kent Yoder41ab9992012-06-07 13:47:14 -0500462#define TPM_ORD_GET_RANDOM cpu_to_be32(70)
Rajiv Andrade08837432009-02-02 15:23:43 -0200463
464static const struct tpm_input_header tpm_getcap_header = {
465 .tag = TPM_TAG_RQU_COMMAND,
466 .length = cpu_to_be32(22),
467 .ordinal = TPM_ORD_GET_CAP
468};
469
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300470ssize_t tpm_getcap(struct tpm_chip *chip, u32 subcap_id, cap_t *cap,
Rajiv Andrade08837432009-02-02 15:23:43 -0200471 const char *desc)
472{
473 struct tpm_cmd_t tpm_cmd;
474 int rc;
Rajiv Andrade08837432009-02-02 15:23:43 -0200475
476 tpm_cmd.header.in = tpm_getcap_header;
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300477 if (subcap_id == TPM_CAP_VERSION_1_1 ||
478 subcap_id == TPM_CAP_VERSION_1_2) {
479 tpm_cmd.params.getcap_in.cap = cpu_to_be32(subcap_id);
Rajiv Andrade08837432009-02-02 15:23:43 -0200480 /*subcap field not necessary */
481 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(0);
482 tpm_cmd.header.in.length -= cpu_to_be32(sizeof(__be32));
483 } else {
484 if (subcap_id == TPM_CAP_FLAG_PERM ||
485 subcap_id == TPM_CAP_FLAG_VOL)
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300486 tpm_cmd.params.getcap_in.cap =
487 cpu_to_be32(TPM_CAP_FLAG);
Rajiv Andrade08837432009-02-02 15:23:43 -0200488 else
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300489 tpm_cmd.params.getcap_in.cap =
490 cpu_to_be32(TPM_CAP_PROP);
Rajiv Andrade08837432009-02-02 15:23:43 -0200491 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4);
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300492 tpm_cmd.params.getcap_in.subcap = cpu_to_be32(subcap_id);
Rajiv Andrade08837432009-02-02 15:23:43 -0200493 }
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300494 rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, 0,
495 desc);
Rajiv Andrade08837432009-02-02 15:23:43 -0200496 if (!rc)
497 *cap = tpm_cmd.params.getcap_out.cap;
498 return rc;
499}
Jarkko Sakkineneb5854e2016-06-12 16:42:09 +0300500EXPORT_SYMBOL_GPL(tpm_getcap);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700501
Jason Gunthorpec584af12012-11-21 13:54:33 -0700502#define TPM_ORD_STARTUP cpu_to_be32(153)
503#define TPM_ST_CLEAR cpu_to_be16(1)
504#define TPM_ST_STATE cpu_to_be16(2)
505#define TPM_ST_DEACTIVATED cpu_to_be16(3)
506static const struct tpm_input_header tpm_startup_header = {
507 .tag = TPM_TAG_RQU_COMMAND,
508 .length = cpu_to_be32(12),
509 .ordinal = TPM_ORD_STARTUP
510};
511
512static int tpm_startup(struct tpm_chip *chip, __be16 startup_type)
513{
514 struct tpm_cmd_t start_cmd;
515 start_cmd.header.in = tpm_startup_header;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800516
Jason Gunthorpec584af12012-11-21 13:54:33 -0700517 start_cmd.params.startup_in.startup_type = startup_type;
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300518 return tpm_transmit_cmd(chip, &start_cmd, TPM_INTERNAL_RESULT_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800519 "attempting to start the TPM");
Jason Gunthorpec584af12012-11-21 13:54:33 -0700520}
521
Stefan Berger2b30a902011-11-11 12:57:02 -0500522int tpm_get_timeouts(struct tpm_chip *chip)
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700523{
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300524 cap_t cap;
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600525 unsigned long new_timeout[4];
526 unsigned long old_timeout[4];
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700527 ssize_t rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700528
Jason Gunthorped1d253cf2016-10-26 16:28:44 -0600529 if (chip->flags & TPM_CHIP_FLAG_HAVE_TIMEOUTS)
530 return 0;
531
Jason Gunthorpe25112042015-11-25 14:05:32 -0700532 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
533 /* Fixed timeouts for TPM2 */
Christophe Ricardaf782f32016-03-31 22:56:59 +0200534 chip->timeout_a = msecs_to_jiffies(TPM2_TIMEOUT_A);
535 chip->timeout_b = msecs_to_jiffies(TPM2_TIMEOUT_B);
536 chip->timeout_c = msecs_to_jiffies(TPM2_TIMEOUT_C);
537 chip->timeout_d = msecs_to_jiffies(TPM2_TIMEOUT_D);
538 chip->duration[TPM_SHORT] =
Jason Gunthorpe25112042015-11-25 14:05:32 -0700539 msecs_to_jiffies(TPM2_DURATION_SHORT);
Christophe Ricardaf782f32016-03-31 22:56:59 +0200540 chip->duration[TPM_MEDIUM] =
Jason Gunthorpe25112042015-11-25 14:05:32 -0700541 msecs_to_jiffies(TPM2_DURATION_MEDIUM);
Christophe Ricardaf782f32016-03-31 22:56:59 +0200542 chip->duration[TPM_LONG] =
Jason Gunthorpe25112042015-11-25 14:05:32 -0700543 msecs_to_jiffies(TPM2_DURATION_LONG);
Jason Gunthorped1d253cf2016-10-26 16:28:44 -0600544
545 chip->flags |= TPM_CHIP_FLAG_HAVE_TIMEOUTS;
Jason Gunthorpe25112042015-11-25 14:05:32 -0700546 return 0;
547 }
548
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300549 rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_TIMEOUT, &cap,
550 "attempting to determine the timeouts");
Jason Gunthorpec584af12012-11-21 13:54:33 -0700551 if (rc == TPM_ERR_INVALID_POSTINIT) {
552 /* The TPM is not started, we are the first to talk to it.
553 Execute a startup command. */
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300554 dev_info(&chip->dev, "Issuing TPM_STARTUP\n");
Jason Gunthorpec584af12012-11-21 13:54:33 -0700555 if (tpm_startup(chip, TPM_ST_CLEAR))
556 return rc;
557
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300558 rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_TIMEOUT, &cap,
559 "attempting to determine the timeouts");
Jason Gunthorpec584af12012-11-21 13:54:33 -0700560 }
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300561 if (rc)
562 return rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700563
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300564 old_timeout[0] = be32_to_cpu(cap.timeout.a);
565 old_timeout[1] = be32_to_cpu(cap.timeout.b);
566 old_timeout[2] = be32_to_cpu(cap.timeout.c);
567 old_timeout[3] = be32_to_cpu(cap.timeout.d);
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600568 memcpy(new_timeout, old_timeout, sizeof(new_timeout));
569
570 /*
571 * Provide ability for vendor overrides of timeout values in case
572 * of misreporting.
573 */
574 if (chip->ops->update_timeouts != NULL)
Christophe Ricardaf782f32016-03-31 22:56:59 +0200575 chip->timeout_adjusted =
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600576 chip->ops->update_timeouts(chip, new_timeout);
577
Christophe Ricardaf782f32016-03-31 22:56:59 +0200578 if (!chip->timeout_adjusted) {
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600579 /* Don't overwrite default if value is 0 */
580 if (new_timeout[0] != 0 && new_timeout[0] < 1000) {
581 int i;
582
583 /* timeouts in msec rather usec */
584 for (i = 0; i != ARRAY_SIZE(new_timeout); i++)
585 new_timeout[i] *= 1000;
Christophe Ricardaf782f32016-03-31 22:56:59 +0200586 chip->timeout_adjusted = true;
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600587 }
Stefan Bergere3e1a1e2011-03-30 12:13:27 -0400588 }
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600589
590 /* Report adjusted timeouts */
Christophe Ricardaf782f32016-03-31 22:56:59 +0200591 if (chip->timeout_adjusted) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500592 dev_info(&chip->dev,
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600593 HW_ERR "Adjusting reported timeouts: A %lu->%luus B %lu->%luus C %lu->%luus D %lu->%luus\n",
594 old_timeout[0], new_timeout[0],
595 old_timeout[1], new_timeout[1],
596 old_timeout[2], new_timeout[2],
597 old_timeout[3], new_timeout[3]);
598 }
599
Christophe Ricardaf782f32016-03-31 22:56:59 +0200600 chip->timeout_a = usecs_to_jiffies(new_timeout[0]);
601 chip->timeout_b = usecs_to_jiffies(new_timeout[1]);
602 chip->timeout_c = usecs_to_jiffies(new_timeout[2]);
603 chip->timeout_d = usecs_to_jiffies(new_timeout[3]);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700604
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300605 rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_DURATION, &cap,
606 "attempting to determine the durations");
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700607 if (rc)
Stefan Berger2b30a902011-11-11 12:57:02 -0500608 return rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700609
Christophe Ricardaf782f32016-03-31 22:56:59 +0200610 chip->duration[TPM_SHORT] =
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300611 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_short));
Christophe Ricardaf782f32016-03-31 22:56:59 +0200612 chip->duration[TPM_MEDIUM] =
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300613 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_medium));
Christophe Ricardaf782f32016-03-31 22:56:59 +0200614 chip->duration[TPM_LONG] =
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300615 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_long));
Stefan Bergere934acc2011-03-30 12:13:24 -0400616
617 /* The Broadcom BCM0102 chipset in a Dell Latitude D820 gets the above
618 * value wrong and apparently reports msecs rather than usecs. So we
619 * fix up the resulting too-small TPM_SHORT value to make things work.
620 * We also scale the TPM_MEDIUM and -_LONG values by 1000.
621 */
Christophe Ricardaf782f32016-03-31 22:56:59 +0200622 if (chip->duration[TPM_SHORT] < (HZ / 100)) {
623 chip->duration[TPM_SHORT] = HZ;
624 chip->duration[TPM_MEDIUM] *= 1000;
625 chip->duration[TPM_LONG] *= 1000;
626 chip->duration_adjusted = true;
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500627 dev_info(&chip->dev, "Adjusting TPM timeout parameters.");
Stefan Bergere934acc2011-03-30 12:13:24 -0400628 }
Jason Gunthorped1d253cf2016-10-26 16:28:44 -0600629
630 chip->flags |= TPM_CHIP_FLAG_HAVE_TIMEOUTS;
Stefan Berger2b30a902011-11-11 12:57:02 -0500631 return 0;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700632}
633EXPORT_SYMBOL_GPL(tpm_get_timeouts);
634
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500635#define TPM_ORD_CONTINUE_SELFTEST 83
636#define CONTINUE_SELFTEST_RESULT_SIZE 10
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700637
Julia Lawall00147772016-09-11 15:05:52 +0200638static const struct tpm_input_header continue_selftest_header = {
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500639 .tag = TPM_TAG_RQU_COMMAND,
640 .length = cpu_to_be32(10),
641 .ordinal = cpu_to_be32(TPM_ORD_CONTINUE_SELFTEST),
642};
643
644/**
645 * tpm_continue_selftest -- run TPM's selftest
646 * @chip: TPM chip to use
647 *
648 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
649 * a TPM error code.
650 */
Stefan Berger68d6e672011-11-11 12:57:04 -0500651static int tpm_continue_selftest(struct tpm_chip *chip)
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500652{
653 int rc;
654 struct tpm_cmd_t cmd;
655
656 cmd.header.in = continue_selftest_header;
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300657 rc = tpm_transmit_cmd(chip, &cmd, CONTINUE_SELFTEST_RESULT_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800658 "continue selftest");
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500659 return rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700660}
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700661
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200662#define TPM_ORDINAL_PCRREAD cpu_to_be32(21)
663#define READ_PCR_RESULT_SIZE 30
Julia Lawall00147772016-09-11 15:05:52 +0200664static const struct tpm_input_header pcrread_header = {
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200665 .tag = TPM_TAG_RQU_COMMAND,
666 .length = cpu_to_be32(14),
667 .ordinal = TPM_ORDINAL_PCRREAD
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668};
669
Jason Gunthorpe000a07b2013-11-26 13:30:41 -0700670int tpm_pcr_read_dev(struct tpm_chip *chip, int pcr_idx, u8 *res_buf)
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200671{
672 int rc;
673 struct tpm_cmd_t cmd;
674
675 cmd.header.in = pcrread_header;
676 cmd.params.pcrread_in.pcr_idx = cpu_to_be32(pcr_idx);
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300677 rc = tpm_transmit_cmd(chip, &cmd, READ_PCR_RESULT_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800678 "attempting to read a pcr value");
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200679
680 if (rc == 0)
681 memcpy(res_buf, cmd.params.pcrread_out.pcr_result,
682 TPM_DIGEST_SIZE);
683 return rc;
684}
685
686/**
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300687 * tpm_is_tpm2 - is the chip a TPM2 chip?
688 * @chip_num: tpm idx # or ANY
689 *
690 * Returns < 0 on error, and 1 or 0 on success depending whether the chip
691 * is a TPM2 chip.
692 */
693int tpm_is_tpm2(u32 chip_num)
694{
695 struct tpm_chip *chip;
696 int rc;
697
698 chip = tpm_chip_find_get(chip_num);
699 if (chip == NULL)
700 return -ENODEV;
701
702 rc = (chip->flags & TPM_CHIP_FLAG_TPM2) != 0;
703
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700704 tpm_put_ops(chip);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300705
706 return rc;
707}
708EXPORT_SYMBOL_GPL(tpm_is_tpm2);
709
710/**
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200711 * tpm_pcr_read - read a pcr value
Peter Huewe0a418262013-10-22 00:29:14 +0200712 * @chip_num: tpm idx # or ANY
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200713 * @pcr_idx: pcr idx to retrieve
Peter Huewe0a418262013-10-22 00:29:14 +0200714 * @res_buf: TPM_PCR value
715 * size of res_buf is 20 bytes (or NULL if you don't care)
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200716 *
717 * The TPM driver should be built-in, but for whatever reason it
718 * isn't, protect against the chip disappearing, by incrementing
719 * the module usage count.
720 */
721int tpm_pcr_read(u32 chip_num, int pcr_idx, u8 *res_buf)
722{
723 struct tpm_chip *chip;
724 int rc;
725
726 chip = tpm_chip_find_get(chip_num);
727 if (chip == NULL)
728 return -ENODEV;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800729 if (chip->flags & TPM_CHIP_FLAG_TPM2)
730 rc = tpm2_pcr_read(chip, pcr_idx, res_buf);
731 else
732 rc = tpm_pcr_read_dev(chip, pcr_idx, res_buf);
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700733 tpm_put_ops(chip);
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200734 return rc;
735}
736EXPORT_SYMBOL_GPL(tpm_pcr_read);
737
Winkler, Tomasca6d4582016-11-01 03:05:13 +0200738#define TPM_ORD_PCR_EXTEND cpu_to_be32(20)
739#define EXTEND_PCR_RESULT_SIZE 34
740static const struct tpm_input_header pcrextend_header = {
741 .tag = TPM_TAG_RQU_COMMAND,
742 .length = cpu_to_be32(34),
743 .ordinal = TPM_ORD_PCR_EXTEND
744};
745
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200746/**
747 * tpm_pcr_extend - extend pcr value with hash
Peter Huewe0a418262013-10-22 00:29:14 +0200748 * @chip_num: tpm idx # or AN&
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200749 * @pcr_idx: pcr idx to extend
Peter Huewe0a418262013-10-22 00:29:14 +0200750 * @hash: hash value used to extend pcr value
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200751 *
752 * The TPM driver should be built-in, but for whatever reason it
753 * isn't, protect against the chip disappearing, by incrementing
754 * the module usage count.
755 */
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200756int tpm_pcr_extend(u32 chip_num, int pcr_idx, const u8 *hash)
757{
758 struct tpm_cmd_t cmd;
759 int rc;
760 struct tpm_chip *chip;
761
762 chip = tpm_chip_find_get(chip_num);
763 if (chip == NULL)
764 return -ENODEV;
765
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800766 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
767 rc = tpm2_pcr_extend(chip, pcr_idx, hash);
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700768 tpm_put_ops(chip);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800769 return rc;
770 }
771
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200772 cmd.header.in = pcrextend_header;
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200773 cmd.params.pcrextend_in.pcr_idx = cpu_to_be32(pcr_idx);
774 memcpy(cmd.params.pcrextend_in.hash, hash, TPM_DIGEST_SIZE);
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300775 rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800776 "attempting extend a PCR value");
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200777
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700778 tpm_put_ops(chip);
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200779 return rc;
780}
781EXPORT_SYMBOL_GPL(tpm_pcr_extend);
782
Stefan Berger68d6e672011-11-11 12:57:04 -0500783/**
784 * tpm_do_selftest - have the TPM continue its selftest and wait until it
785 * can receive further commands
786 * @chip: TPM chip to use
787 *
788 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
789 * a TPM error code.
790 */
791int tpm_do_selftest(struct tpm_chip *chip)
792{
793 int rc;
Stefan Berger68d6e672011-11-11 12:57:04 -0500794 unsigned int loops;
Jason Gunthorpe46438262012-11-21 13:15:54 -0800795 unsigned int delay_msec = 100;
Stefan Berger68d6e672011-11-11 12:57:04 -0500796 unsigned long duration;
Jarkko Sakkinen0c541332016-06-17 13:12:20 +0200797 u8 dummy[TPM_DIGEST_SIZE];
Stefan Berger68d6e672011-11-11 12:57:04 -0500798
Peter Huewe0a418262013-10-22 00:29:14 +0200799 duration = tpm_calc_ordinal_duration(chip, TPM_ORD_CONTINUE_SELFTEST);
Stefan Berger68d6e672011-11-11 12:57:04 -0500800
801 loops = jiffies_to_msecs(duration) / delay_msec;
802
803 rc = tpm_continue_selftest(chip);
804 /* This may fail if there was no TPM driver during a suspend/resume
805 * cycle; some may return 10 (BAD_ORDINAL), others 28 (FAILEDSELFTEST)
806 */
807 if (rc)
808 return rc;
809
810 do {
Rajiv Andrade24ebe662012-04-24 17:38:17 -0300811 /* Attempt to read a PCR value */
Jarkko Sakkinen0c541332016-06-17 13:12:20 +0200812 rc = tpm_pcr_read_dev(chip, 0, dummy);
813
Jason Gunthorpe46438262012-11-21 13:15:54 -0800814 /* Some buggy TPMs will not respond to tpm_tis_ready() for
815 * around 300ms while the self test is ongoing, keep trying
816 * until the self test duration expires. */
817 if (rc == -ETIME) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500818 dev_info(
819 &chip->dev, HW_ERR
820 "TPM command timed out during continue self test");
Jason Gunthorpe46438262012-11-21 13:15:54 -0800821 msleep(delay_msec);
822 continue;
823 }
Rajiv Andrade24ebe662012-04-24 17:38:17 -0300824
Stefan Bergerbe405412012-01-17 22:07:30 -0500825 if (rc == TPM_ERR_DISABLED || rc == TPM_ERR_DEACTIVATED) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500826 dev_info(&chip->dev,
Stefan Bergerbe405412012-01-17 22:07:30 -0500827 "TPM is disabled/deactivated (0x%X)\n", rc);
828 /* TPM is disabled and/or deactivated; driver can
829 * proceed and TPM does handle commands for
830 * suspend/resume correctly
831 */
832 return 0;
833 }
Stefan Berger68d6e672011-11-11 12:57:04 -0500834 if (rc != TPM_WARN_DOING_SELFTEST)
835 return rc;
836 msleep(delay_msec);
837 } while (--loops > 0);
838
839 return rc;
840}
841EXPORT_SYMBOL_GPL(tpm_do_selftest);
842
Jason Gunthorpecae8b442016-07-12 11:41:49 -0600843/**
844 * tpm1_auto_startup - Perform the standard automatic TPM initialization
845 * sequence
846 * @chip: TPM chip to use
847 *
848 * Returns 0 on success, < 0 in case of fatal error.
849 */
850int tpm1_auto_startup(struct tpm_chip *chip)
851{
852 int rc;
853
854 rc = tpm_get_timeouts(chip);
855 if (rc)
856 goto out;
857 rc = tpm_do_selftest(chip);
858 if (rc) {
859 dev_err(&chip->dev, "TPM self test failed\n");
860 goto out;
861 }
862
863 return rc;
864out:
865 if (rc > 0)
866 rc = -ENODEV;
867 return rc;
868}
869
Mimi Zoharc749ba92010-11-23 18:54:16 -0500870int tpm_send(u32 chip_num, void *cmd, size_t buflen)
871{
872 struct tpm_chip *chip;
873 int rc;
874
875 chip = tpm_chip_find_get(chip_num);
876 if (chip == NULL)
877 return -ENODEV;
878
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300879 rc = tpm_transmit_cmd(chip, cmd, buflen, 0, "attempting tpm_cmd");
Mimi Zoharc749ba92010-11-23 18:54:16 -0500880
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700881 tpm_put_ops(chip);
Mimi Zoharc749ba92010-11-23 18:54:16 -0500882 return rc;
883}
884EXPORT_SYMBOL_GPL(tpm_send);
885
Peter Huewe0a418262013-10-22 00:29:14 +0200886static bool wait_for_tpm_stat_cond(struct tpm_chip *chip, u8 mask,
887 bool check_cancel, bool *canceled)
Stefan Berger78f09cc2013-01-22 13:57:53 -0600888{
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700889 u8 status = chip->ops->status(chip);
Stefan Berger78f09cc2013-01-22 13:57:53 -0600890
891 *canceled = false;
892 if ((status & mask) == mask)
893 return true;
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700894 if (check_cancel && chip->ops->req_canceled(chip, status)) {
Stefan Berger78f09cc2013-01-22 13:57:53 -0600895 *canceled = true;
896 return true;
897 }
898 return false;
899}
900
Rajiv Andradefd048862011-09-16 14:39:40 -0300901int wait_for_tpm_stat(struct tpm_chip *chip, u8 mask, unsigned long timeout,
Stefan Berger78f09cc2013-01-22 13:57:53 -0600902 wait_queue_head_t *queue, bool check_cancel)
Rajiv Andradefd048862011-09-16 14:39:40 -0300903{
904 unsigned long stop;
905 long rc;
906 u8 status;
Stefan Berger78f09cc2013-01-22 13:57:53 -0600907 bool canceled = false;
Rajiv Andradefd048862011-09-16 14:39:40 -0300908
909 /* check current status */
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700910 status = chip->ops->status(chip);
Rajiv Andradefd048862011-09-16 14:39:40 -0300911 if ((status & mask) == mask)
912 return 0;
913
914 stop = jiffies + timeout;
915
Christophe Ricard570a3602016-03-31 22:56:56 +0200916 if (chip->flags & TPM_CHIP_FLAG_IRQ) {
Rajiv Andradefd048862011-09-16 14:39:40 -0300917again:
918 timeout = stop - jiffies;
919 if ((long)timeout <= 0)
920 return -ETIME;
921 rc = wait_event_interruptible_timeout(*queue,
Stefan Berger78f09cc2013-01-22 13:57:53 -0600922 wait_for_tpm_stat_cond(chip, mask, check_cancel,
923 &canceled),
924 timeout);
925 if (rc > 0) {
926 if (canceled)
927 return -ECANCELED;
Rajiv Andradefd048862011-09-16 14:39:40 -0300928 return 0;
Stefan Berger78f09cc2013-01-22 13:57:53 -0600929 }
Rajiv Andradefd048862011-09-16 14:39:40 -0300930 if (rc == -ERESTARTSYS && freezing(current)) {
931 clear_thread_flag(TIF_SIGPENDING);
932 goto again;
933 }
934 } else {
935 do {
936 msleep(TPM_TIMEOUT);
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700937 status = chip->ops->status(chip);
Rajiv Andradefd048862011-09-16 14:39:40 -0300938 if ((status & mask) == mask)
939 return 0;
940 } while (time_before(jiffies, stop));
941 }
942 return -ETIME;
943}
944EXPORT_SYMBOL_GPL(wait_for_tpm_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300946#define TPM_ORD_SAVESTATE cpu_to_be32(152)
947#define SAVESTATE_RESULT_SIZE 10
948
Julia Lawall00147772016-09-11 15:05:52 +0200949static const struct tpm_input_header savestate_header = {
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300950 .tag = TPM_TAG_RQU_COMMAND,
951 .length = cpu_to_be32(10),
952 .ordinal = TPM_ORD_SAVESTATE
953};
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955/*
956 * We are about to suspend. Save the TPM state
957 * so that it can be restored.
958 */
Rafael J. Wysocki035e2ce2012-07-06 19:09:01 +0200959int tpm_pm_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960{
Stefan Bergerec03c502016-05-11 11:28:27 -0400961 struct tpm_chip *chip = dev_get_drvdata(dev);
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300962 struct tpm_cmd_t cmd;
Duncan Laurie32d33b22013-03-17 14:56:39 -0700963 int rc, try;
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300964
965 u8 dummy_hash[TPM_DIGEST_SIZE] = { 0 };
David Smith2490c682008-01-14 00:55:12 -0800966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 if (chip == NULL)
968 return -ENODEV;
969
Jarkko Sakkinen74d6b3c2015-01-29 07:43:47 +0200970 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
971 tpm2_shutdown(chip, TPM2_SU_STATE);
972 return 0;
973 }
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800974
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300975 /* for buggy tpm, flush pcrs with extend to selected dummy */
976 if (tpm_suspend_pcr) {
977 cmd.header.in = pcrextend_header;
978 cmd.params.pcrextend_in.pcr_idx = cpu_to_be32(tpm_suspend_pcr);
979 memcpy(cmd.params.pcrextend_in.hash, dummy_hash,
980 TPM_DIGEST_SIZE);
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300981 rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800982 "extending dummy pcr before suspend");
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300983 }
984
985 /* now do the actual savestate */
Duncan Laurie32d33b22013-03-17 14:56:39 -0700986 for (try = 0; try < TPM_RETRY; try++) {
987 cmd.header.in = savestate_header;
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300988 rc = tpm_transmit_cmd(chip, &cmd, SAVESTATE_RESULT_SIZE, 0,
989 NULL);
Duncan Laurie32d33b22013-03-17 14:56:39 -0700990
991 /*
992 * If the TPM indicates that it is too busy to respond to
993 * this command then retry before giving up. It can take
994 * several seconds for this TPM to be ready.
995 *
996 * This can happen if the TPM has already been sent the
997 * SaveState command before the driver has loaded. TCG 1.2
998 * specification states that any communication after SaveState
999 * may cause the TPM to invalidate previously saved state.
1000 */
1001 if (rc != TPM_WARN_RETRY)
1002 break;
1003 msleep(TPM_TIMEOUT_RETRY);
1004 }
1005
1006 if (rc)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -05001007 dev_err(&chip->dev,
Duncan Laurie32d33b22013-03-17 14:56:39 -07001008 "Error (%d) sending savestate before suspend\n", rc);
1009 else if (try > 0)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -05001010 dev_warn(&chip->dev, "TPM savestate took %dms\n",
Duncan Laurie32d33b22013-03-17 14:56:39 -07001011 try * TPM_TIMEOUT_RETRY);
1012
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001013 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015EXPORT_SYMBOL_GPL(tpm_pm_suspend);
1016
1017/*
1018 * Resume from a power safe. The BIOS already restored
1019 * the TPM state.
1020 */
Kylene Jo Hallce2c87d2005-10-30 15:03:25 -08001021int tpm_pm_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
Stefan Bergerec03c502016-05-11 11:28:27 -04001023 struct tpm_chip *chip = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 if (chip == NULL)
1026 return -ENODEV;
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 return 0;
1029}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030EXPORT_SYMBOL_GPL(tpm_pm_resume);
1031
Kent Yoder41ab9992012-06-07 13:47:14 -05001032#define TPM_GETRANDOM_RESULT_SIZE 18
Julia Lawall00147772016-09-11 15:05:52 +02001033static const struct tpm_input_header tpm_getrandom_header = {
Kent Yoder41ab9992012-06-07 13:47:14 -05001034 .tag = TPM_TAG_RQU_COMMAND,
1035 .length = cpu_to_be32(14),
1036 .ordinal = TPM_ORD_GET_RANDOM
1037};
1038
1039/**
1040 * tpm_get_random() - Get random bytes from the tpm's RNG
1041 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1042 * @out: destination buffer for the random bytes
1043 * @max: the max number of bytes to write to @out
1044 *
1045 * Returns < 0 on error and the number of bytes read on success
1046 */
1047int tpm_get_random(u32 chip_num, u8 *out, size_t max)
1048{
1049 struct tpm_chip *chip;
1050 struct tpm_cmd_t tpm_cmd;
1051 u32 recd, num_bytes = min_t(u32, max, TPM_MAX_RNG_DATA);
1052 int err, total = 0, retries = 5;
1053 u8 *dest = out;
1054
Jarkko Sakkinen3e14d832014-05-09 14:23:10 +03001055 if (!out || !num_bytes || max > TPM_MAX_RNG_DATA)
1056 return -EINVAL;
1057
Kent Yoder41ab9992012-06-07 13:47:14 -05001058 chip = tpm_chip_find_get(chip_num);
1059 if (chip == NULL)
1060 return -ENODEV;
1061
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -08001062 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
1063 err = tpm2_get_random(chip, out, max);
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001064 tpm_put_ops(chip);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -08001065 return err;
1066 }
1067
Kent Yoder41ab9992012-06-07 13:47:14 -05001068 do {
1069 tpm_cmd.header.in = tpm_getrandom_header;
1070 tpm_cmd.params.getrandom_in.num_bytes = cpu_to_be32(num_bytes);
1071
Jarkko Sakkinen87155b72014-12-12 11:46:33 -08001072 err = tpm_transmit_cmd(chip, &tpm_cmd,
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +03001073 TPM_GETRANDOM_RESULT_SIZE + num_bytes,
1074 0, "attempting get random");
Kent Yoder41ab9992012-06-07 13:47:14 -05001075 if (err)
1076 break;
1077
1078 recd = be32_to_cpu(tpm_cmd.params.getrandom_out.rng_data_len);
1079 memcpy(dest, tpm_cmd.params.getrandom_out.rng_data, recd);
1080
1081 dest += recd;
1082 total += recd;
1083 num_bytes -= recd;
1084 } while (retries-- && total < max);
1085
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001086 tpm_put_ops(chip);
Kent Yoder41ab9992012-06-07 13:47:14 -05001087 return total ? total : -EIO;
1088}
1089EXPORT_SYMBOL_GPL(tpm_get_random);
1090
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001091/**
1092 * tpm_seal_trusted() - seal a trusted key
1093 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1094 * @options: authentication values and other options
1095 * @payload: the key data in clear and encrypted form
1096 *
1097 * Returns < 0 on error and 0 on success. At the moment, only TPM 2.0 chips
1098 * are supported.
1099 */
1100int tpm_seal_trusted(u32 chip_num, struct trusted_key_payload *payload,
1101 struct trusted_key_options *options)
1102{
1103 struct tpm_chip *chip;
1104 int rc;
1105
1106 chip = tpm_chip_find_get(chip_num);
1107 if (chip == NULL || !(chip->flags & TPM_CHIP_FLAG_TPM2))
1108 return -ENODEV;
1109
1110 rc = tpm2_seal_trusted(chip, payload, options);
1111
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001112 tpm_put_ops(chip);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001113 return rc;
1114}
1115EXPORT_SYMBOL_GPL(tpm_seal_trusted);
1116
1117/**
1118 * tpm_unseal_trusted() - unseal a trusted key
1119 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1120 * @options: authentication values and other options
1121 * @payload: the key data in clear and encrypted form
1122 *
1123 * Returns < 0 on error and 0 on success. At the moment, only TPM 2.0 chips
1124 * are supported.
1125 */
1126int tpm_unseal_trusted(u32 chip_num, struct trusted_key_payload *payload,
1127 struct trusted_key_options *options)
1128{
1129 struct tpm_chip *chip;
1130 int rc;
1131
1132 chip = tpm_chip_find_get(chip_num);
1133 if (chip == NULL || !(chip->flags & TPM_CHIP_FLAG_TPM2))
1134 return -ENODEV;
1135
1136 rc = tpm2_unseal_trusted(chip, payload, options);
1137
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001138 tpm_put_ops(chip);
1139
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001140 return rc;
1141}
1142EXPORT_SYMBOL_GPL(tpm_unseal_trusted);
1143
Jarkko Sakkinen313d21e2014-12-12 11:46:37 -08001144static int __init tpm_init(void)
1145{
1146 int rc;
1147
1148 tpm_class = class_create(THIS_MODULE, "tpm");
1149 if (IS_ERR(tpm_class)) {
1150 pr_err("couldn't create tpm class\n");
1151 return PTR_ERR(tpm_class);
1152 }
1153
1154 rc = alloc_chrdev_region(&tpm_devt, 0, TPM_NUM_DEVICES, "tpm");
1155 if (rc < 0) {
1156 pr_err("tpm: failed to allocate char dev region\n");
1157 class_destroy(tpm_class);
1158 return rc;
1159 }
1160
1161 return 0;
1162}
1163
1164static void __exit tpm_exit(void)
1165{
Stefan Berger15516782016-02-29 08:53:02 -05001166 idr_destroy(&dev_nums_idr);
Jarkko Sakkinen313d21e2014-12-12 11:46:37 -08001167 class_destroy(tpm_class);
1168 unregister_chrdev_region(tpm_devt, TPM_NUM_DEVICES);
1169}
1170
1171subsys_initcall(tpm_init);
1172module_exit(tpm_exit);
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
1175MODULE_DESCRIPTION("TPM Driver");
1176MODULE_VERSION("2.0");
1177MODULE_LICENSE("GPL");