blob: d0ac2d56520f3c6050bcca97285d3b2a78285ac3 [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>
Matthias Kaehlcked081d472007-05-08 00:32:02 -070032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "tpm.h"
Kent Yodere5dcd872012-07-11 10:08:12 -050034#include "tpm_eventlog.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -070036#define TPM_MAX_ORDINAL 243
Peter Huewe07b133e2012-11-16 00:31:29 +010037#define TSC_MAX_ORDINAL 12
38#define TPM_PROTECTED_COMMAND 0x00
39#define TPM_CONNECTION_COMMAND 0x40
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -070040
Dmitry Torokhov9b3056c2010-10-01 14:16:39 -070041/*
42 * Bug workaround - some TPM's don't flush the most
43 * recently changed pcr on suspend, so force the flush
44 * with an extend to the selected _unused_ non-volatile pcr.
45 */
46static int tpm_suspend_pcr;
47module_param_named(suspend_pcr, tpm_suspend_pcr, uint, 0644);
48MODULE_PARM_DESC(suspend_pcr,
49 "PCR to use for dummy writes to faciltate flush on suspend.");
50
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -070051/*
52 * Array with one entry per ordinal defining the maximum amount
53 * of time the chip could take to return the result. The ordinal
54 * designation of short, medium or long is defined in a table in
55 * TCG Specification TPM Main Part 2 TPM Structures Section 17. The
56 * values of the SHORT, MEDIUM, and LONG durations are retrieved
57 * from the chip during initialization with a call to tpm_get_timeouts.
58 */
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -070059static const u8 tpm_ordinal_duration[TPM_MAX_ORDINAL] = {
60 TPM_UNDEFINED, /* 0 */
61 TPM_UNDEFINED,
62 TPM_UNDEFINED,
63 TPM_UNDEFINED,
64 TPM_UNDEFINED,
65 TPM_UNDEFINED, /* 5 */
66 TPM_UNDEFINED,
67 TPM_UNDEFINED,
68 TPM_UNDEFINED,
69 TPM_UNDEFINED,
70 TPM_SHORT, /* 10 */
71 TPM_SHORT,
72 TPM_MEDIUM,
73 TPM_LONG,
74 TPM_LONG,
75 TPM_MEDIUM, /* 15 */
76 TPM_SHORT,
77 TPM_SHORT,
78 TPM_MEDIUM,
79 TPM_LONG,
80 TPM_SHORT, /* 20 */
81 TPM_SHORT,
82 TPM_MEDIUM,
83 TPM_MEDIUM,
84 TPM_MEDIUM,
85 TPM_SHORT, /* 25 */
86 TPM_SHORT,
87 TPM_MEDIUM,
88 TPM_SHORT,
89 TPM_SHORT,
90 TPM_MEDIUM, /* 30 */
91 TPM_LONG,
92 TPM_MEDIUM,
93 TPM_SHORT,
94 TPM_SHORT,
95 TPM_SHORT, /* 35 */
96 TPM_MEDIUM,
97 TPM_MEDIUM,
98 TPM_UNDEFINED,
99 TPM_UNDEFINED,
100 TPM_MEDIUM, /* 40 */
101 TPM_LONG,
102 TPM_MEDIUM,
103 TPM_SHORT,
104 TPM_SHORT,
105 TPM_SHORT, /* 45 */
106 TPM_SHORT,
107 TPM_SHORT,
108 TPM_SHORT,
109 TPM_LONG,
110 TPM_MEDIUM, /* 50 */
111 TPM_MEDIUM,
112 TPM_UNDEFINED,
113 TPM_UNDEFINED,
114 TPM_UNDEFINED,
115 TPM_UNDEFINED, /* 55 */
116 TPM_UNDEFINED,
117 TPM_UNDEFINED,
118 TPM_UNDEFINED,
119 TPM_UNDEFINED,
120 TPM_MEDIUM, /* 60 */
121 TPM_MEDIUM,
122 TPM_MEDIUM,
123 TPM_SHORT,
124 TPM_SHORT,
125 TPM_MEDIUM, /* 65 */
126 TPM_UNDEFINED,
127 TPM_UNDEFINED,
128 TPM_UNDEFINED,
129 TPM_UNDEFINED,
130 TPM_SHORT, /* 70 */
131 TPM_SHORT,
132 TPM_UNDEFINED,
133 TPM_UNDEFINED,
134 TPM_UNDEFINED,
135 TPM_UNDEFINED, /* 75 */
136 TPM_UNDEFINED,
137 TPM_UNDEFINED,
138 TPM_UNDEFINED,
139 TPM_UNDEFINED,
140 TPM_LONG, /* 80 */
141 TPM_UNDEFINED,
142 TPM_MEDIUM,
143 TPM_LONG,
144 TPM_SHORT,
145 TPM_UNDEFINED, /* 85 */
146 TPM_UNDEFINED,
147 TPM_UNDEFINED,
148 TPM_UNDEFINED,
149 TPM_UNDEFINED,
150 TPM_SHORT, /* 90 */
151 TPM_SHORT,
152 TPM_SHORT,
153 TPM_SHORT,
154 TPM_SHORT,
155 TPM_UNDEFINED, /* 95 */
156 TPM_UNDEFINED,
157 TPM_UNDEFINED,
158 TPM_UNDEFINED,
159 TPM_UNDEFINED,
160 TPM_MEDIUM, /* 100 */
161 TPM_SHORT,
162 TPM_SHORT,
163 TPM_UNDEFINED,
164 TPM_UNDEFINED,
165 TPM_UNDEFINED, /* 105 */
166 TPM_UNDEFINED,
167 TPM_UNDEFINED,
168 TPM_UNDEFINED,
169 TPM_UNDEFINED,
170 TPM_SHORT, /* 110 */
171 TPM_SHORT,
172 TPM_SHORT,
173 TPM_SHORT,
174 TPM_SHORT,
175 TPM_SHORT, /* 115 */
176 TPM_SHORT,
177 TPM_SHORT,
178 TPM_UNDEFINED,
179 TPM_UNDEFINED,
180 TPM_LONG, /* 120 */
181 TPM_LONG,
182 TPM_MEDIUM,
183 TPM_UNDEFINED,
184 TPM_SHORT,
185 TPM_SHORT, /* 125 */
186 TPM_SHORT,
187 TPM_LONG,
188 TPM_SHORT,
189 TPM_SHORT,
190 TPM_SHORT, /* 130 */
191 TPM_MEDIUM,
192 TPM_UNDEFINED,
193 TPM_SHORT,
194 TPM_MEDIUM,
195 TPM_UNDEFINED, /* 135 */
196 TPM_UNDEFINED,
197 TPM_UNDEFINED,
198 TPM_UNDEFINED,
199 TPM_UNDEFINED,
200 TPM_SHORT, /* 140 */
201 TPM_SHORT,
202 TPM_UNDEFINED,
203 TPM_UNDEFINED,
204 TPM_UNDEFINED,
205 TPM_UNDEFINED, /* 145 */
206 TPM_UNDEFINED,
207 TPM_UNDEFINED,
208 TPM_UNDEFINED,
209 TPM_UNDEFINED,
210 TPM_SHORT, /* 150 */
211 TPM_MEDIUM,
212 TPM_MEDIUM,
213 TPM_SHORT,
214 TPM_SHORT,
215 TPM_UNDEFINED, /* 155 */
216 TPM_UNDEFINED,
217 TPM_UNDEFINED,
218 TPM_UNDEFINED,
219 TPM_UNDEFINED,
220 TPM_SHORT, /* 160 */
221 TPM_SHORT,
222 TPM_SHORT,
223 TPM_SHORT,
224 TPM_UNDEFINED,
225 TPM_UNDEFINED, /* 165 */
226 TPM_UNDEFINED,
227 TPM_UNDEFINED,
228 TPM_UNDEFINED,
229 TPM_UNDEFINED,
230 TPM_LONG, /* 170 */
231 TPM_UNDEFINED,
232 TPM_UNDEFINED,
233 TPM_UNDEFINED,
234 TPM_UNDEFINED,
235 TPM_UNDEFINED, /* 175 */
236 TPM_UNDEFINED,
237 TPM_UNDEFINED,
238 TPM_UNDEFINED,
239 TPM_UNDEFINED,
240 TPM_MEDIUM, /* 180 */
241 TPM_SHORT,
242 TPM_MEDIUM,
243 TPM_MEDIUM,
244 TPM_MEDIUM,
245 TPM_MEDIUM, /* 185 */
246 TPM_SHORT,
247 TPM_UNDEFINED,
248 TPM_UNDEFINED,
249 TPM_UNDEFINED,
250 TPM_UNDEFINED, /* 190 */
251 TPM_UNDEFINED,
252 TPM_UNDEFINED,
253 TPM_UNDEFINED,
254 TPM_UNDEFINED,
255 TPM_UNDEFINED, /* 195 */
256 TPM_UNDEFINED,
257 TPM_UNDEFINED,
258 TPM_UNDEFINED,
259 TPM_UNDEFINED,
260 TPM_SHORT, /* 200 */
261 TPM_UNDEFINED,
262 TPM_UNDEFINED,
263 TPM_UNDEFINED,
264 TPM_SHORT,
265 TPM_SHORT, /* 205 */
266 TPM_SHORT,
267 TPM_SHORT,
268 TPM_SHORT,
269 TPM_SHORT,
270 TPM_MEDIUM, /* 210 */
271 TPM_UNDEFINED,
272 TPM_MEDIUM,
273 TPM_MEDIUM,
274 TPM_MEDIUM,
275 TPM_UNDEFINED, /* 215 */
276 TPM_MEDIUM,
277 TPM_UNDEFINED,
278 TPM_UNDEFINED,
279 TPM_SHORT,
280 TPM_SHORT, /* 220 */
281 TPM_SHORT,
282 TPM_SHORT,
283 TPM_SHORT,
284 TPM_SHORT,
285 TPM_UNDEFINED, /* 225 */
286 TPM_UNDEFINED,
287 TPM_UNDEFINED,
288 TPM_UNDEFINED,
289 TPM_UNDEFINED,
290 TPM_SHORT, /* 230 */
291 TPM_LONG,
292 TPM_MEDIUM,
293 TPM_UNDEFINED,
294 TPM_UNDEFINED,
295 TPM_UNDEFINED, /* 235 */
296 TPM_UNDEFINED,
297 TPM_UNDEFINED,
298 TPM_UNDEFINED,
299 TPM_UNDEFINED,
300 TPM_SHORT, /* 240 */
301 TPM_UNDEFINED,
302 TPM_MEDIUM,
303};
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305/*
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700306 * Returns max number of jiffies to wait
307 */
308unsigned long tpm_calc_ordinal_duration(struct tpm_chip *chip,
309 u32 ordinal)
310{
311 int duration_idx = TPM_UNDEFINED;
312 int duration = 0;
313
Martin Wilckf7286432015-11-20 14:32:33 +0100314 /*
315 * We only have a duration table for protected commands, where the upper
316 * 16 bits are 0. For the few other ordinals the fallback will be used.
317 */
318 if (ordinal < TPM_MAX_ORDINAL)
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700319 duration_idx = tpm_ordinal_duration[ordinal];
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700320
Linus Torvalds8d1dc202011-03-01 13:23:27 -0800321 if (duration_idx != TPM_UNDEFINED)
Christophe Ricardaf782f32016-03-31 22:56:59 +0200322 duration = chip->duration[duration_idx];
Linus Torvalds8d1dc202011-03-01 13:23:27 -0800323 if (duration <= 0)
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700324 return 2 * 60 * HZ;
Linus Torvalds8d1dc202011-03-01 13:23:27 -0800325 else
326 return duration;
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700327}
328EXPORT_SYMBOL_GPL(tpm_calc_ordinal_duration);
329
330/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 * Internal kernel interface to transmit TPM commands
332 */
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300333ssize_t tpm_transmit(struct tpm_chip *chip, const u8 *buf, size_t bufsiz,
334 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700336 ssize_t rc;
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700337 u32 count, ordinal;
Nishanth Aravamudan700d8bd2005-06-23 22:01:47 -0700338 unsigned long stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Jarkko Sakkinenebfd7532016-09-12 13:43:30 +0300340 if (bufsiz < TPM_HEADER_SIZE)
341 return -EINVAL;
342
Peter Huewe6b07d302011-09-15 14:37:43 -0300343 if (bufsiz > TPM_BUFSIZE)
344 bufsiz = TPM_BUFSIZE;
345
Kylene Hall81179bb2005-06-23 22:01:59 -0700346 count = be32_to_cpu(*((__be32 *) (buf + 2)));
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700347 ordinal = be32_to_cpu(*((__be32 *) (buf + 6)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (count == 0)
349 return -ENODATA;
350 if (count > bufsiz) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500351 dev_err(&chip->dev,
Peter Huewe0a418262013-10-22 00:29:14 +0200352 "invalid count value %x %zx\n", count, bufsiz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return -E2BIG;
354 }
355
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300356 if (!(flags & TPM_TRANSMIT_UNLOCKED))
357 mutex_lock(&chip->tpm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700359 rc = chip->ops->send(chip, (u8 *) buf, count);
Peter Huewe0a418262013-10-22 00:29:14 +0200360 if (rc < 0) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500361 dev_err(&chip->dev,
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700362 "tpm_transmit: tpm_send: error %zd\n", rc);
363 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
365
Christophe Ricard570a3602016-03-31 22:56:56 +0200366 if (chip->flags & TPM_CHIP_FLAG_IRQ)
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700367 goto out_recv;
368
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800369 if (chip->flags & TPM_CHIP_FLAG_TPM2)
370 stop = jiffies + tpm2_calc_ordinal_duration(chip, ordinal);
371 else
372 stop = jiffies + tpm_calc_ordinal_duration(chip, ordinal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 do {
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700374 u8 status = chip->ops->status(chip);
375 if ((status & chip->ops->req_complete_mask) ==
376 chip->ops->req_complete_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 goto out_recv;
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700378
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700379 if (chip->ops->req_canceled(chip, status)) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500380 dev_err(&chip->dev, "Operation Canceled\n");
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700381 rc = -ECANCELED;
382 goto out;
383 }
384
385 msleep(TPM_TIMEOUT); /* CHECK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 rmb();
Nishanth Aravamudan700d8bd2005-06-23 22:01:47 -0700387 } while (time_before(jiffies, stop));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700389 chip->ops->cancel(chip);
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500390 dev_err(&chip->dev, "Operation Timed out\n");
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700391 rc = -ETIME;
392 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394out_recv:
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700395 rc = chip->ops->recv(chip, (u8 *) buf, bufsiz);
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700396 if (rc < 0)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500397 dev_err(&chip->dev,
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700398 "tpm_transmit: tpm_recv: error %zd\n", rc);
399out:
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300400 if (!(flags & TPM_TRANSMIT_UNLOCKED))
401 mutex_unlock(&chip->tpm_mutex);
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700402 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
405#define TPM_DIGEST_SIZE 20
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700406#define TPM_RET_CODE_IDX 6
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700407
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300408ssize_t tpm_transmit_cmd(struct tpm_chip *chip, const void *cmd,
409 int len, unsigned int flags, const char *desc)
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700410{
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300411 const struct tpm_output_header *header;
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700412 int err;
413
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300414 len = tpm_transmit(chip, (const u8 *)cmd, len, flags);
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700415 if (len < 0)
416 return len;
Rajiv Andradeb9e32382011-11-01 17:00:52 -0200417 else if (len < TPM_HEADER_SIZE)
418 return -EFAULT;
419
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800420 header = cmd;
421
422 err = be32_to_cpu(header->return_code);
Jason Gunthorpec584af12012-11-21 13:54:33 -0700423 if (err != 0 && desc)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500424 dev_err(&chip->dev, "A TPM error (%d) occurred %s\n", err,
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800425 desc);
Rajiv Andradeb9e32382011-11-01 17:00:52 -0200426
427 return err;
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700428}
429
Rajiv Andrade08837432009-02-02 15:23:43 -0200430#define TPM_INTERNAL_RESULT_SIZE 200
Rajiv Andrade08837432009-02-02 15:23:43 -0200431#define TPM_ORD_GET_CAP cpu_to_be32(101)
Kent Yoder41ab9992012-06-07 13:47:14 -0500432#define TPM_ORD_GET_RANDOM cpu_to_be32(70)
Rajiv Andrade08837432009-02-02 15:23:43 -0200433
434static const struct tpm_input_header tpm_getcap_header = {
435 .tag = TPM_TAG_RQU_COMMAND,
436 .length = cpu_to_be32(22),
437 .ordinal = TPM_ORD_GET_CAP
438};
439
Jason Gunthorpe062807f2016-04-18 13:26:13 -0400440ssize_t tpm_getcap(struct tpm_chip *chip, __be32 subcap_id, cap_t *cap,
Rajiv Andrade08837432009-02-02 15:23:43 -0200441 const char *desc)
442{
443 struct tpm_cmd_t tpm_cmd;
444 int rc;
Rajiv Andrade08837432009-02-02 15:23:43 -0200445
446 tpm_cmd.header.in = tpm_getcap_header;
447 if (subcap_id == CAP_VERSION_1_1 || subcap_id == CAP_VERSION_1_2) {
448 tpm_cmd.params.getcap_in.cap = subcap_id;
449 /*subcap field not necessary */
450 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(0);
451 tpm_cmd.header.in.length -= cpu_to_be32(sizeof(__be32));
452 } else {
453 if (subcap_id == TPM_CAP_FLAG_PERM ||
454 subcap_id == TPM_CAP_FLAG_VOL)
455 tpm_cmd.params.getcap_in.cap = TPM_CAP_FLAG;
456 else
457 tpm_cmd.params.getcap_in.cap = TPM_CAP_PROP;
458 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4);
459 tpm_cmd.params.getcap_in.subcap = subcap_id;
460 }
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300461 rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, 0,
462 desc);
Rajiv Andrade08837432009-02-02 15:23:43 -0200463 if (!rc)
464 *cap = tpm_cmd.params.getcap_out.cap;
465 return rc;
466}
Jarkko Sakkineneb5854e2016-06-12 16:42:09 +0300467EXPORT_SYMBOL_GPL(tpm_getcap);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700468
Jason Gunthorpec584af12012-11-21 13:54:33 -0700469#define TPM_ORD_STARTUP cpu_to_be32(153)
470#define TPM_ST_CLEAR cpu_to_be16(1)
471#define TPM_ST_STATE cpu_to_be16(2)
472#define TPM_ST_DEACTIVATED cpu_to_be16(3)
473static const struct tpm_input_header tpm_startup_header = {
474 .tag = TPM_TAG_RQU_COMMAND,
475 .length = cpu_to_be32(12),
476 .ordinal = TPM_ORD_STARTUP
477};
478
479static int tpm_startup(struct tpm_chip *chip, __be16 startup_type)
480{
481 struct tpm_cmd_t start_cmd;
482 start_cmd.header.in = tpm_startup_header;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800483
Jason Gunthorpec584af12012-11-21 13:54:33 -0700484 start_cmd.params.startup_in.startup_type = startup_type;
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300485 return tpm_transmit_cmd(chip, &start_cmd, TPM_INTERNAL_RESULT_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800486 "attempting to start the TPM");
Jason Gunthorpec584af12012-11-21 13:54:33 -0700487}
488
Stefan Berger2b30a902011-11-11 12:57:02 -0500489int tpm_get_timeouts(struct tpm_chip *chip)
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700490{
Rajiv Andrade08837432009-02-02 15:23:43 -0200491 struct tpm_cmd_t tpm_cmd;
Maciej S. Szmigiero1b7f3852017-01-13 22:37:00 +0100492 unsigned long timeout_old[4], timeout_chip[4], timeout_eff[4];
Rajiv Andrade08837432009-02-02 15:23:43 -0200493 struct duration_t *duration_cap;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700494 ssize_t rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700495
Jason Gunthorpe25112042015-11-25 14:05:32 -0700496 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
497 /* Fixed timeouts for TPM2 */
Christophe Ricardaf782f32016-03-31 22:56:59 +0200498 chip->timeout_a = msecs_to_jiffies(TPM2_TIMEOUT_A);
499 chip->timeout_b = msecs_to_jiffies(TPM2_TIMEOUT_B);
500 chip->timeout_c = msecs_to_jiffies(TPM2_TIMEOUT_C);
501 chip->timeout_d = msecs_to_jiffies(TPM2_TIMEOUT_D);
502 chip->duration[TPM_SHORT] =
Jason Gunthorpe25112042015-11-25 14:05:32 -0700503 msecs_to_jiffies(TPM2_DURATION_SHORT);
Christophe Ricardaf782f32016-03-31 22:56:59 +0200504 chip->duration[TPM_MEDIUM] =
Jason Gunthorpe25112042015-11-25 14:05:32 -0700505 msecs_to_jiffies(TPM2_DURATION_MEDIUM);
Christophe Ricardaf782f32016-03-31 22:56:59 +0200506 chip->duration[TPM_LONG] =
Jason Gunthorpe25112042015-11-25 14:05:32 -0700507 msecs_to_jiffies(TPM2_DURATION_LONG);
508 return 0;
509 }
510
Rajiv Andrade08837432009-02-02 15:23:43 -0200511 tpm_cmd.header.in = tpm_getcap_header;
512 tpm_cmd.params.getcap_in.cap = TPM_CAP_PROP;
513 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4);
514 tpm_cmd.params.getcap_in.subcap = TPM_CAP_PROP_TIS_TIMEOUT;
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300515 rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, 0,
516 NULL);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700517
Jason Gunthorpec584af12012-11-21 13:54:33 -0700518 if (rc == TPM_ERR_INVALID_POSTINIT) {
519 /* The TPM is not started, we are the first to talk to it.
520 Execute a startup command. */
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500521 dev_info(&chip->dev, "Issuing TPM_STARTUP");
Jason Gunthorpec584af12012-11-21 13:54:33 -0700522 if (tpm_startup(chip, TPM_ST_CLEAR))
523 return rc;
524
525 tpm_cmd.header.in = tpm_getcap_header;
526 tpm_cmd.params.getcap_in.cap = TPM_CAP_PROP;
527 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4);
528 tpm_cmd.params.getcap_in.subcap = TPM_CAP_PROP_TIS_TIMEOUT;
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800529 rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE,
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300530 0, NULL);
Jason Gunthorpec584af12012-11-21 13:54:33 -0700531 }
532 if (rc) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500533 dev_err(&chip->dev,
Jason Gunthorpec584af12012-11-21 13:54:33 -0700534 "A TPM error (%zd) occurred attempting to determine the timeouts\n",
535 rc);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700536 goto duration;
Jason Gunthorpec584af12012-11-21 13:54:33 -0700537 }
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700538
Stefan Berger829bf062011-03-30 12:13:26 -0400539 if (be32_to_cpu(tpm_cmd.header.out.return_code) != 0 ||
540 be32_to_cpu(tpm_cmd.header.out.length)
541 != sizeof(tpm_cmd.header.out) + sizeof(u32) + 4 * sizeof(u32))
Stefan Berger2b30a902011-11-11 12:57:02 -0500542 return -EINVAL;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700543
Maciej S. Szmigiero1b7f3852017-01-13 22:37:00 +0100544 timeout_old[0] = jiffies_to_usecs(chip->timeout_a);
545 timeout_old[1] = jiffies_to_usecs(chip->timeout_b);
546 timeout_old[2] = jiffies_to_usecs(chip->timeout_c);
547 timeout_old[3] = jiffies_to_usecs(chip->timeout_d);
548 timeout_chip[0] = be32_to_cpu(tpm_cmd.params.getcap_out.cap.timeout.a);
549 timeout_chip[1] = be32_to_cpu(tpm_cmd.params.getcap_out.cap.timeout.b);
550 timeout_chip[2] = be32_to_cpu(tpm_cmd.params.getcap_out.cap.timeout.c);
551 timeout_chip[3] = be32_to_cpu(tpm_cmd.params.getcap_out.cap.timeout.d);
552 memcpy(timeout_eff, timeout_chip, sizeof(timeout_eff));
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600553
554 /*
555 * Provide ability for vendor overrides of timeout values in case
556 * of misreporting.
557 */
558 if (chip->ops->update_timeouts != NULL)
Christophe Ricardaf782f32016-03-31 22:56:59 +0200559 chip->timeout_adjusted =
Maciej S. Szmigiero1b7f3852017-01-13 22:37:00 +0100560 chip->ops->update_timeouts(chip, timeout_eff);
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600561
Christophe Ricardaf782f32016-03-31 22:56:59 +0200562 if (!chip->timeout_adjusted) {
Maciej S. Szmigiero1b7f3852017-01-13 22:37:00 +0100563 /* Restore default if chip reported 0 */
564 int i;
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600565
Maciej S. Szmigiero1b7f3852017-01-13 22:37:00 +0100566 for (i = 0; i < ARRAY_SIZE(timeout_eff); i++) {
567 if (timeout_eff[i])
568 continue;
569
570 timeout_eff[i] = timeout_old[i];
571 chip->timeout_adjusted = true;
572 }
573
574 if (timeout_eff[0] != 0 && timeout_eff[0] < 1000) {
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600575 /* timeouts in msec rather usec */
Maciej S. Szmigiero1b7f3852017-01-13 22:37:00 +0100576 for (i = 0; i != ARRAY_SIZE(timeout_eff); i++)
577 timeout_eff[i] *= 1000;
Christophe Ricardaf782f32016-03-31 22:56:59 +0200578 chip->timeout_adjusted = true;
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600579 }
Stefan Bergere3e1a1e2011-03-30 12:13:27 -0400580 }
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600581
582 /* Report adjusted timeouts */
Christophe Ricardaf782f32016-03-31 22:56:59 +0200583 if (chip->timeout_adjusted) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500584 dev_info(&chip->dev,
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600585 HW_ERR "Adjusting reported timeouts: A %lu->%luus B %lu->%luus C %lu->%luus D %lu->%luus\n",
Maciej S. Szmigiero1b7f3852017-01-13 22:37:00 +0100586 timeout_chip[0], timeout_eff[0],
587 timeout_chip[1], timeout_eff[1],
588 timeout_chip[2], timeout_eff[2],
589 timeout_chip[3], timeout_eff[3]);
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600590 }
591
Maciej S. Szmigiero1b7f3852017-01-13 22:37:00 +0100592 chip->timeout_a = usecs_to_jiffies(timeout_eff[0]);
593 chip->timeout_b = usecs_to_jiffies(timeout_eff[1]);
594 chip->timeout_c = usecs_to_jiffies(timeout_eff[2]);
595 chip->timeout_d = usecs_to_jiffies(timeout_eff[3]);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700596
597duration:
Rajiv Andrade08837432009-02-02 15:23:43 -0200598 tpm_cmd.header.in = tpm_getcap_header;
599 tpm_cmd.params.getcap_in.cap = TPM_CAP_PROP;
600 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4);
601 tpm_cmd.params.getcap_in.subcap = TPM_CAP_PROP_TIS_DURATION;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700602
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300603 rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800604 "attempting to determine the durations");
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700605 if (rc)
Stefan Berger2b30a902011-11-11 12:57:02 -0500606 return rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700607
Stefan Berger979b1402011-03-30 12:13:23 -0400608 if (be32_to_cpu(tpm_cmd.header.out.return_code) != 0 ||
609 be32_to_cpu(tpm_cmd.header.out.length)
610 != sizeof(tpm_cmd.header.out) + sizeof(u32) + 3 * sizeof(u32))
Stefan Berger2b30a902011-11-11 12:57:02 -0500611 return -EINVAL;
Stefan Berger979b1402011-03-30 12:13:23 -0400612
Rajiv Andrade08837432009-02-02 15:23:43 -0200613 duration_cap = &tpm_cmd.params.getcap_out.cap.duration;
Christophe Ricardaf782f32016-03-31 22:56:59 +0200614 chip->duration[TPM_SHORT] =
Rajiv Andrade08837432009-02-02 15:23:43 -0200615 usecs_to_jiffies(be32_to_cpu(duration_cap->tpm_short));
Christophe Ricardaf782f32016-03-31 22:56:59 +0200616 chip->duration[TPM_MEDIUM] =
Rajiv Andrade08837432009-02-02 15:23:43 -0200617 usecs_to_jiffies(be32_to_cpu(duration_cap->tpm_medium));
Christophe Ricardaf782f32016-03-31 22:56:59 +0200618 chip->duration[TPM_LONG] =
Rajiv Andrade08837432009-02-02 15:23:43 -0200619 usecs_to_jiffies(be32_to_cpu(duration_cap->tpm_long));
Stefan Bergere934acc2011-03-30 12:13:24 -0400620
621 /* The Broadcom BCM0102 chipset in a Dell Latitude D820 gets the above
622 * value wrong and apparently reports msecs rather than usecs. So we
623 * fix up the resulting too-small TPM_SHORT value to make things work.
624 * We also scale the TPM_MEDIUM and -_LONG values by 1000.
625 */
Christophe Ricardaf782f32016-03-31 22:56:59 +0200626 if (chip->duration[TPM_SHORT] < (HZ / 100)) {
627 chip->duration[TPM_SHORT] = HZ;
628 chip->duration[TPM_MEDIUM] *= 1000;
629 chip->duration[TPM_LONG] *= 1000;
630 chip->duration_adjusted = true;
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500631 dev_info(&chip->dev, "Adjusting TPM timeout parameters.");
Stefan Bergere934acc2011-03-30 12:13:24 -0400632 }
Stefan Berger2b30a902011-11-11 12:57:02 -0500633 return 0;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700634}
635EXPORT_SYMBOL_GPL(tpm_get_timeouts);
636
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500637#define TPM_ORD_CONTINUE_SELFTEST 83
638#define CONTINUE_SELFTEST_RESULT_SIZE 10
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700639
Julia Lawall00147772016-09-11 15:05:52 +0200640static const struct tpm_input_header continue_selftest_header = {
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500641 .tag = TPM_TAG_RQU_COMMAND,
642 .length = cpu_to_be32(10),
643 .ordinal = cpu_to_be32(TPM_ORD_CONTINUE_SELFTEST),
644};
645
646/**
647 * tpm_continue_selftest -- run TPM's selftest
648 * @chip: TPM chip to use
649 *
650 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
651 * a TPM error code.
652 */
Stefan Berger68d6e672011-11-11 12:57:04 -0500653static int tpm_continue_selftest(struct tpm_chip *chip)
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500654{
655 int rc;
656 struct tpm_cmd_t cmd;
657
658 cmd.header.in = continue_selftest_header;
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300659 rc = tpm_transmit_cmd(chip, &cmd, CONTINUE_SELFTEST_RESULT_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800660 "continue selftest");
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500661 return rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700662}
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700663
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200664#define TPM_ORDINAL_PCRREAD cpu_to_be32(21)
665#define READ_PCR_RESULT_SIZE 30
Julia Lawall00147772016-09-11 15:05:52 +0200666static const struct tpm_input_header pcrread_header = {
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200667 .tag = TPM_TAG_RQU_COMMAND,
668 .length = cpu_to_be32(14),
669 .ordinal = TPM_ORDINAL_PCRREAD
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670};
671
Jason Gunthorpe000a07b2013-11-26 13:30:41 -0700672int tpm_pcr_read_dev(struct tpm_chip *chip, int pcr_idx, u8 *res_buf)
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200673{
674 int rc;
675 struct tpm_cmd_t cmd;
676
677 cmd.header.in = pcrread_header;
678 cmd.params.pcrread_in.pcr_idx = cpu_to_be32(pcr_idx);
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300679 rc = tpm_transmit_cmd(chip, &cmd, READ_PCR_RESULT_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800680 "attempting to read a pcr value");
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200681
682 if (rc == 0)
683 memcpy(res_buf, cmd.params.pcrread_out.pcr_result,
684 TPM_DIGEST_SIZE);
685 return rc;
686}
687
688/**
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300689 * tpm_is_tpm2 - is the chip a TPM2 chip?
690 * @chip_num: tpm idx # or ANY
691 *
692 * Returns < 0 on error, and 1 or 0 on success depending whether the chip
693 * is a TPM2 chip.
694 */
695int tpm_is_tpm2(u32 chip_num)
696{
697 struct tpm_chip *chip;
698 int rc;
699
700 chip = tpm_chip_find_get(chip_num);
701 if (chip == NULL)
702 return -ENODEV;
703
704 rc = (chip->flags & TPM_CHIP_FLAG_TPM2) != 0;
705
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700706 tpm_put_ops(chip);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300707
708 return rc;
709}
710EXPORT_SYMBOL_GPL(tpm_is_tpm2);
711
712/**
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200713 * tpm_pcr_read - read a pcr value
Peter Huewe0a418262013-10-22 00:29:14 +0200714 * @chip_num: tpm idx # or ANY
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200715 * @pcr_idx: pcr idx to retrieve
Peter Huewe0a418262013-10-22 00:29:14 +0200716 * @res_buf: TPM_PCR value
717 * size of res_buf is 20 bytes (or NULL if you don't care)
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200718 *
719 * The TPM driver should be built-in, but for whatever reason it
720 * isn't, protect against the chip disappearing, by incrementing
721 * the module usage count.
722 */
723int tpm_pcr_read(u32 chip_num, int pcr_idx, u8 *res_buf)
724{
725 struct tpm_chip *chip;
726 int rc;
727
728 chip = tpm_chip_find_get(chip_num);
729 if (chip == NULL)
730 return -ENODEV;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800731 if (chip->flags & TPM_CHIP_FLAG_TPM2)
732 rc = tpm2_pcr_read(chip, pcr_idx, res_buf);
733 else
734 rc = tpm_pcr_read_dev(chip, pcr_idx, res_buf);
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700735 tpm_put_ops(chip);
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200736 return rc;
737}
738EXPORT_SYMBOL_GPL(tpm_pcr_read);
739
740/**
741 * tpm_pcr_extend - extend pcr value with hash
Peter Huewe0a418262013-10-22 00:29:14 +0200742 * @chip_num: tpm idx # or AN&
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200743 * @pcr_idx: pcr idx to extend
Peter Huewe0a418262013-10-22 00:29:14 +0200744 * @hash: hash value used to extend pcr value
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200745 *
746 * The TPM driver should be built-in, but for whatever reason it
747 * isn't, protect against the chip disappearing, by incrementing
748 * the module usage count.
749 */
750#define TPM_ORD_PCR_EXTEND cpu_to_be32(20)
Jason Gunthorpe0afd9052009-09-18 12:54:24 -0700751#define EXTEND_PCR_RESULT_SIZE 34
Julia Lawall00147772016-09-11 15:05:52 +0200752static const struct tpm_input_header pcrextend_header = {
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200753 .tag = TPM_TAG_RQU_COMMAND,
754 .length = cpu_to_be32(34),
755 .ordinal = TPM_ORD_PCR_EXTEND
756};
757
758int tpm_pcr_extend(u32 chip_num, int pcr_idx, const u8 *hash)
759{
760 struct tpm_cmd_t cmd;
761 int rc;
762 struct tpm_chip *chip;
763
764 chip = tpm_chip_find_get(chip_num);
765 if (chip == NULL)
766 return -ENODEV;
767
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800768 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
769 rc = tpm2_pcr_extend(chip, pcr_idx, hash);
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700770 tpm_put_ops(chip);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800771 return rc;
772 }
773
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200774 cmd.header.in = pcrextend_header;
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200775 cmd.params.pcrextend_in.pcr_idx = cpu_to_be32(pcr_idx);
776 memcpy(cmd.params.pcrextend_in.hash, hash, TPM_DIGEST_SIZE);
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300777 rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800778 "attempting extend a PCR value");
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200779
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700780 tpm_put_ops(chip);
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200781 return rc;
782}
783EXPORT_SYMBOL_GPL(tpm_pcr_extend);
784
Stefan Berger68d6e672011-11-11 12:57:04 -0500785/**
786 * tpm_do_selftest - have the TPM continue its selftest and wait until it
787 * can receive further commands
788 * @chip: TPM chip to use
789 *
790 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
791 * a TPM error code.
792 */
793int tpm_do_selftest(struct tpm_chip *chip)
794{
795 int rc;
Stefan Berger68d6e672011-11-11 12:57:04 -0500796 unsigned int loops;
Jason Gunthorpe46438262012-11-21 13:15:54 -0800797 unsigned int delay_msec = 100;
Stefan Berger68d6e672011-11-11 12:57:04 -0500798 unsigned long duration;
Jarkko Sakkinen0c541332016-06-17 13:12:20 +0200799 u8 dummy[TPM_DIGEST_SIZE];
Stefan Berger68d6e672011-11-11 12:57:04 -0500800
Peter Huewe0a418262013-10-22 00:29:14 +0200801 duration = tpm_calc_ordinal_duration(chip, TPM_ORD_CONTINUE_SELFTEST);
Stefan Berger68d6e672011-11-11 12:57:04 -0500802
803 loops = jiffies_to_msecs(duration) / delay_msec;
804
805 rc = tpm_continue_selftest(chip);
806 /* This may fail if there was no TPM driver during a suspend/resume
807 * cycle; some may return 10 (BAD_ORDINAL), others 28 (FAILEDSELFTEST)
808 */
809 if (rc)
810 return rc;
811
812 do {
Rajiv Andrade24ebe662012-04-24 17:38:17 -0300813 /* Attempt to read a PCR value */
Jarkko Sakkinen0c541332016-06-17 13:12:20 +0200814 rc = tpm_pcr_read_dev(chip, 0, dummy);
815
Jason Gunthorpe46438262012-11-21 13:15:54 -0800816 /* Some buggy TPMs will not respond to tpm_tis_ready() for
817 * around 300ms while the self test is ongoing, keep trying
818 * until the self test duration expires. */
819 if (rc == -ETIME) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500820 dev_info(
821 &chip->dev, HW_ERR
822 "TPM command timed out during continue self test");
Jason Gunthorpe46438262012-11-21 13:15:54 -0800823 msleep(delay_msec);
824 continue;
825 }
Rajiv Andrade24ebe662012-04-24 17:38:17 -0300826
Stefan Bergerbe405412012-01-17 22:07:30 -0500827 if (rc == TPM_ERR_DISABLED || rc == TPM_ERR_DEACTIVATED) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500828 dev_info(&chip->dev,
Stefan Bergerbe405412012-01-17 22:07:30 -0500829 "TPM is disabled/deactivated (0x%X)\n", rc);
830 /* TPM is disabled and/or deactivated; driver can
831 * proceed and TPM does handle commands for
832 * suspend/resume correctly
833 */
834 return 0;
835 }
Stefan Berger68d6e672011-11-11 12:57:04 -0500836 if (rc != TPM_WARN_DOING_SELFTEST)
837 return rc;
838 msleep(delay_msec);
839 } while (--loops > 0);
840
841 return rc;
842}
843EXPORT_SYMBOL_GPL(tpm_do_selftest);
844
Jason Gunthorpecae8b442016-07-12 11:41:49 -0600845/**
846 * tpm1_auto_startup - Perform the standard automatic TPM initialization
847 * sequence
848 * @chip: TPM chip to use
849 *
850 * Returns 0 on success, < 0 in case of fatal error.
851 */
852int tpm1_auto_startup(struct tpm_chip *chip)
853{
854 int rc;
855
856 rc = tpm_get_timeouts(chip);
857 if (rc)
858 goto out;
859 rc = tpm_do_selftest(chip);
860 if (rc) {
861 dev_err(&chip->dev, "TPM self test failed\n");
862 goto out;
863 }
864
865 return rc;
866out:
867 if (rc > 0)
868 rc = -ENODEV;
869 return rc;
870}
871
Mimi Zoharc749ba92010-11-23 18:54:16 -0500872int tpm_send(u32 chip_num, void *cmd, size_t buflen)
873{
874 struct tpm_chip *chip;
875 int rc;
876
877 chip = tpm_chip_find_get(chip_num);
878 if (chip == NULL)
879 return -ENODEV;
880
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300881 rc = tpm_transmit_cmd(chip, cmd, buflen, 0, "attempting tpm_cmd");
Mimi Zoharc749ba92010-11-23 18:54:16 -0500882
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700883 tpm_put_ops(chip);
Mimi Zoharc749ba92010-11-23 18:54:16 -0500884 return rc;
885}
886EXPORT_SYMBOL_GPL(tpm_send);
887
Peter Huewe0a418262013-10-22 00:29:14 +0200888static bool wait_for_tpm_stat_cond(struct tpm_chip *chip, u8 mask,
889 bool check_cancel, bool *canceled)
Stefan Berger78f09cc2013-01-22 13:57:53 -0600890{
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700891 u8 status = chip->ops->status(chip);
Stefan Berger78f09cc2013-01-22 13:57:53 -0600892
893 *canceled = false;
894 if ((status & mask) == mask)
895 return true;
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700896 if (check_cancel && chip->ops->req_canceled(chip, status)) {
Stefan Berger78f09cc2013-01-22 13:57:53 -0600897 *canceled = true;
898 return true;
899 }
900 return false;
901}
902
Rajiv Andradefd048862011-09-16 14:39:40 -0300903int wait_for_tpm_stat(struct tpm_chip *chip, u8 mask, unsigned long timeout,
Stefan Berger78f09cc2013-01-22 13:57:53 -0600904 wait_queue_head_t *queue, bool check_cancel)
Rajiv Andradefd048862011-09-16 14:39:40 -0300905{
906 unsigned long stop;
907 long rc;
908 u8 status;
Stefan Berger78f09cc2013-01-22 13:57:53 -0600909 bool canceled = false;
Rajiv Andradefd048862011-09-16 14:39:40 -0300910
911 /* check current status */
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
916 stop = jiffies + timeout;
917
Christophe Ricard570a3602016-03-31 22:56:56 +0200918 if (chip->flags & TPM_CHIP_FLAG_IRQ) {
Rajiv Andradefd048862011-09-16 14:39:40 -0300919again:
920 timeout = stop - jiffies;
921 if ((long)timeout <= 0)
922 return -ETIME;
923 rc = wait_event_interruptible_timeout(*queue,
Stefan Berger78f09cc2013-01-22 13:57:53 -0600924 wait_for_tpm_stat_cond(chip, mask, check_cancel,
925 &canceled),
926 timeout);
927 if (rc > 0) {
928 if (canceled)
929 return -ECANCELED;
Rajiv Andradefd048862011-09-16 14:39:40 -0300930 return 0;
Stefan Berger78f09cc2013-01-22 13:57:53 -0600931 }
Rajiv Andradefd048862011-09-16 14:39:40 -0300932 if (rc == -ERESTARTSYS && freezing(current)) {
933 clear_thread_flag(TIF_SIGPENDING);
934 goto again;
935 }
936 } else {
937 do {
938 msleep(TPM_TIMEOUT);
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700939 status = chip->ops->status(chip);
Rajiv Andradefd048862011-09-16 14:39:40 -0300940 if ((status & mask) == mask)
941 return 0;
942 } while (time_before(jiffies, stop));
943 }
944 return -ETIME;
945}
946EXPORT_SYMBOL_GPL(wait_for_tpm_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300948#define TPM_ORD_SAVESTATE cpu_to_be32(152)
949#define SAVESTATE_RESULT_SIZE 10
950
Julia Lawall00147772016-09-11 15:05:52 +0200951static const struct tpm_input_header savestate_header = {
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300952 .tag = TPM_TAG_RQU_COMMAND,
953 .length = cpu_to_be32(10),
954 .ordinal = TPM_ORD_SAVESTATE
955};
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957/*
958 * We are about to suspend. Save the TPM state
959 * so that it can be restored.
960 */
Rafael J. Wysocki035e2ce2012-07-06 19:09:01 +0200961int tpm_pm_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Stefan Bergerec03c502016-05-11 11:28:27 -0400963 struct tpm_chip *chip = dev_get_drvdata(dev);
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300964 struct tpm_cmd_t cmd;
Duncan Laurie32d33b22013-03-17 14:56:39 -0700965 int rc, try;
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300966
967 u8 dummy_hash[TPM_DIGEST_SIZE] = { 0 };
David Smith2490c682008-01-14 00:55:12 -0800968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (chip == NULL)
970 return -ENODEV;
971
Jarkko Sakkinen74d6b3c2015-01-29 07:43:47 +0200972 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
973 tpm2_shutdown(chip, TPM2_SU_STATE);
974 return 0;
975 }
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800976
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300977 /* for buggy tpm, flush pcrs with extend to selected dummy */
978 if (tpm_suspend_pcr) {
979 cmd.header.in = pcrextend_header;
980 cmd.params.pcrextend_in.pcr_idx = cpu_to_be32(tpm_suspend_pcr);
981 memcpy(cmd.params.pcrextend_in.hash, dummy_hash,
982 TPM_DIGEST_SIZE);
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300983 rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800984 "extending dummy pcr before suspend");
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300985 }
986
987 /* now do the actual savestate */
Duncan Laurie32d33b22013-03-17 14:56:39 -0700988 for (try = 0; try < TPM_RETRY; try++) {
989 cmd.header.in = savestate_header;
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300990 rc = tpm_transmit_cmd(chip, &cmd, SAVESTATE_RESULT_SIZE, 0,
991 NULL);
Duncan Laurie32d33b22013-03-17 14:56:39 -0700992
993 /*
994 * If the TPM indicates that it is too busy to respond to
995 * this command then retry before giving up. It can take
996 * several seconds for this TPM to be ready.
997 *
998 * This can happen if the TPM has already been sent the
999 * SaveState command before the driver has loaded. TCG 1.2
1000 * specification states that any communication after SaveState
1001 * may cause the TPM to invalidate previously saved state.
1002 */
1003 if (rc != TPM_WARN_RETRY)
1004 break;
1005 msleep(TPM_TIMEOUT_RETRY);
1006 }
1007
1008 if (rc)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -05001009 dev_err(&chip->dev,
Duncan Laurie32d33b22013-03-17 14:56:39 -07001010 "Error (%d) sending savestate before suspend\n", rc);
1011 else if (try > 0)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -05001012 dev_warn(&chip->dev, "TPM savestate took %dms\n",
Duncan Laurie32d33b22013-03-17 14:56:39 -07001013 try * TPM_TIMEOUT_RETRY);
1014
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001015 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017EXPORT_SYMBOL_GPL(tpm_pm_suspend);
1018
1019/*
1020 * Resume from a power safe. The BIOS already restored
1021 * the TPM state.
1022 */
Kylene Jo Hallce2c87d2005-10-30 15:03:25 -08001023int tpm_pm_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
Stefan Bergerec03c502016-05-11 11:28:27 -04001025 struct tpm_chip *chip = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027 if (chip == NULL)
1028 return -ENODEV;
1029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 return 0;
1031}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032EXPORT_SYMBOL_GPL(tpm_pm_resume);
1033
Kent Yoder41ab9992012-06-07 13:47:14 -05001034#define TPM_GETRANDOM_RESULT_SIZE 18
Julia Lawall00147772016-09-11 15:05:52 +02001035static const struct tpm_input_header tpm_getrandom_header = {
Kent Yoder41ab9992012-06-07 13:47:14 -05001036 .tag = TPM_TAG_RQU_COMMAND,
1037 .length = cpu_to_be32(14),
1038 .ordinal = TPM_ORD_GET_RANDOM
1039};
1040
1041/**
1042 * tpm_get_random() - Get random bytes from the tpm's RNG
1043 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1044 * @out: destination buffer for the random bytes
1045 * @max: the max number of bytes to write to @out
1046 *
1047 * Returns < 0 on error and the number of bytes read on success
1048 */
1049int tpm_get_random(u32 chip_num, u8 *out, size_t max)
1050{
1051 struct tpm_chip *chip;
1052 struct tpm_cmd_t tpm_cmd;
1053 u32 recd, num_bytes = min_t(u32, max, TPM_MAX_RNG_DATA);
1054 int err, total = 0, retries = 5;
1055 u8 *dest = out;
1056
Jarkko Sakkinen3e14d832014-05-09 14:23:10 +03001057 if (!out || !num_bytes || max > TPM_MAX_RNG_DATA)
1058 return -EINVAL;
1059
Kent Yoder41ab9992012-06-07 13:47:14 -05001060 chip = tpm_chip_find_get(chip_num);
1061 if (chip == NULL)
1062 return -ENODEV;
1063
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -08001064 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
1065 err = tpm2_get_random(chip, out, max);
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001066 tpm_put_ops(chip);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -08001067 return err;
1068 }
1069
Kent Yoder41ab9992012-06-07 13:47:14 -05001070 do {
1071 tpm_cmd.header.in = tpm_getrandom_header;
1072 tpm_cmd.params.getrandom_in.num_bytes = cpu_to_be32(num_bytes);
1073
Jarkko Sakkinen87155b72014-12-12 11:46:33 -08001074 err = tpm_transmit_cmd(chip, &tpm_cmd,
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +03001075 TPM_GETRANDOM_RESULT_SIZE + num_bytes,
1076 0, "attempting get random");
Kent Yoder41ab9992012-06-07 13:47:14 -05001077 if (err)
1078 break;
1079
1080 recd = be32_to_cpu(tpm_cmd.params.getrandom_out.rng_data_len);
1081 memcpy(dest, tpm_cmd.params.getrandom_out.rng_data, recd);
1082
1083 dest += recd;
1084 total += recd;
1085 num_bytes -= recd;
1086 } while (retries-- && total < max);
1087
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001088 tpm_put_ops(chip);
Kent Yoder41ab9992012-06-07 13:47:14 -05001089 return total ? total : -EIO;
1090}
1091EXPORT_SYMBOL_GPL(tpm_get_random);
1092
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001093/**
1094 * tpm_seal_trusted() - seal a trusted key
1095 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1096 * @options: authentication values and other options
1097 * @payload: the key data in clear and encrypted form
1098 *
1099 * Returns < 0 on error and 0 on success. At the moment, only TPM 2.0 chips
1100 * are supported.
1101 */
1102int tpm_seal_trusted(u32 chip_num, struct trusted_key_payload *payload,
1103 struct trusted_key_options *options)
1104{
1105 struct tpm_chip *chip;
1106 int rc;
1107
1108 chip = tpm_chip_find_get(chip_num);
1109 if (chip == NULL || !(chip->flags & TPM_CHIP_FLAG_TPM2))
1110 return -ENODEV;
1111
1112 rc = tpm2_seal_trusted(chip, payload, options);
1113
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001114 tpm_put_ops(chip);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001115 return rc;
1116}
1117EXPORT_SYMBOL_GPL(tpm_seal_trusted);
1118
1119/**
1120 * tpm_unseal_trusted() - unseal a trusted key
1121 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1122 * @options: authentication values and other options
1123 * @payload: the key data in clear and encrypted form
1124 *
1125 * Returns < 0 on error and 0 on success. At the moment, only TPM 2.0 chips
1126 * are supported.
1127 */
1128int tpm_unseal_trusted(u32 chip_num, struct trusted_key_payload *payload,
1129 struct trusted_key_options *options)
1130{
1131 struct tpm_chip *chip;
1132 int rc;
1133
1134 chip = tpm_chip_find_get(chip_num);
1135 if (chip == NULL || !(chip->flags & TPM_CHIP_FLAG_TPM2))
1136 return -ENODEV;
1137
1138 rc = tpm2_unseal_trusted(chip, payload, options);
1139
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001140 tpm_put_ops(chip);
1141
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001142 return rc;
1143}
1144EXPORT_SYMBOL_GPL(tpm_unseal_trusted);
1145
Jarkko Sakkinen313d21e2014-12-12 11:46:37 -08001146static int __init tpm_init(void)
1147{
1148 int rc;
1149
1150 tpm_class = class_create(THIS_MODULE, "tpm");
1151 if (IS_ERR(tpm_class)) {
1152 pr_err("couldn't create tpm class\n");
1153 return PTR_ERR(tpm_class);
1154 }
1155
1156 rc = alloc_chrdev_region(&tpm_devt, 0, TPM_NUM_DEVICES, "tpm");
1157 if (rc < 0) {
1158 pr_err("tpm: failed to allocate char dev region\n");
1159 class_destroy(tpm_class);
1160 return rc;
1161 }
1162
1163 return 0;
1164}
1165
1166static void __exit tpm_exit(void)
1167{
Stefan Berger15516782016-02-29 08:53:02 -05001168 idr_destroy(&dev_nums_idr);
Jarkko Sakkinen313d21e2014-12-12 11:46:37 -08001169 class_destroy(tpm_class);
1170 unregister_chrdev_region(tpm_devt, TPM_NUM_DEVICES);
1171}
1172
1173subsys_initcall(tpm_init);
1174module_exit(tpm_exit);
1175
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
1177MODULE_DESCRIPTION("TPM Driver");
1178MODULE_VERSION("2.0");
1179MODULE_LICENSE("GPL");