blob: 2ea16abb5dc91ade1a1cdad6de87e1c2bd4291bc [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
Stefan Bergerc659af72017-01-19 07:19:12 -0500426 * @buf: TPM command buffer
427 * @bufsiz: length of the buffer
428 * @min_rsp_body_length: minimum expected length of response body
Winkler, Tomasf865c192016-11-23 12:04:11 +0200429 * @flags: tpm transmit flags - bitmap
430 * @desc: command description used in the error message
431 *
432 * Return:
433 * 0 when the operation is successful.
434 * A negative number for system errors (errno).
435 * A positive number for a TPM error.
436 */
Stefan Bergerc659af72017-01-19 07:19:12 -0500437ssize_t tpm_transmit_cmd(struct tpm_chip *chip, const void *buf,
438 size_t bufsiz, size_t min_rsp_body_length,
439 unsigned int flags, const char *desc)
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700440{
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300441 const struct tpm_output_header *header;
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700442 int err;
Stefan Bergerc659af72017-01-19 07:19:12 -0500443 ssize_t len;
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700444
Stefan Bergerc659af72017-01-19 07:19:12 -0500445 len = tpm_transmit(chip, (const u8 *)buf, bufsiz, flags);
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700446 if (len < 0)
447 return len;
Rajiv Andradeb9e32382011-11-01 17:00:52 -0200448 else if (len < TPM_HEADER_SIZE)
449 return -EFAULT;
450
Stefan Bergerc659af72017-01-19 07:19:12 -0500451 header = buf;
452 if (len != be32_to_cpu(header->length))
453 return -EFAULT;
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800454
455 err = be32_to_cpu(header->return_code);
Jason Gunthorpec584af12012-11-21 13:54:33 -0700456 if (err != 0 && desc)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500457 dev_err(&chip->dev, "A TPM error (%d) occurred %s\n", err,
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800458 desc);
Stefan Bergerc659af72017-01-19 07:19:12 -0500459 if (err)
460 return err;
Rajiv Andradeb9e32382011-11-01 17:00:52 -0200461
Stefan Bergerc659af72017-01-19 07:19:12 -0500462 if (len < min_rsp_body_length + TPM_HEADER_SIZE)
463 return -EFAULT;
464
465 return 0;
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700466}
467
Winkler, Tomasf865c192016-11-23 12:04:11 +0200468#define TPM_DIGEST_SIZE 20
469#define TPM_RET_CODE_IDX 6
Rajiv Andrade08837432009-02-02 15:23:43 -0200470#define TPM_INTERNAL_RESULT_SIZE 200
Rajiv Andrade08837432009-02-02 15:23:43 -0200471#define TPM_ORD_GET_CAP cpu_to_be32(101)
Kent Yoder41ab9992012-06-07 13:47:14 -0500472#define TPM_ORD_GET_RANDOM cpu_to_be32(70)
Rajiv Andrade08837432009-02-02 15:23:43 -0200473
474static const struct tpm_input_header tpm_getcap_header = {
475 .tag = TPM_TAG_RQU_COMMAND,
476 .length = cpu_to_be32(22),
477 .ordinal = TPM_ORD_GET_CAP
478};
479
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300480ssize_t tpm_getcap(struct tpm_chip *chip, u32 subcap_id, cap_t *cap,
Stefan Bergerc659af72017-01-19 07:19:12 -0500481 const char *desc, size_t min_cap_length)
Rajiv Andrade08837432009-02-02 15:23:43 -0200482{
483 struct tpm_cmd_t tpm_cmd;
484 int rc;
Rajiv Andrade08837432009-02-02 15:23:43 -0200485
486 tpm_cmd.header.in = tpm_getcap_header;
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300487 if (subcap_id == TPM_CAP_VERSION_1_1 ||
488 subcap_id == TPM_CAP_VERSION_1_2) {
489 tpm_cmd.params.getcap_in.cap = cpu_to_be32(subcap_id);
Rajiv Andrade08837432009-02-02 15:23:43 -0200490 /*subcap field not necessary */
491 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(0);
492 tpm_cmd.header.in.length -= cpu_to_be32(sizeof(__be32));
493 } else {
494 if (subcap_id == TPM_CAP_FLAG_PERM ||
495 subcap_id == TPM_CAP_FLAG_VOL)
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300496 tpm_cmd.params.getcap_in.cap =
497 cpu_to_be32(TPM_CAP_FLAG);
Rajiv Andrade08837432009-02-02 15:23:43 -0200498 else
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300499 tpm_cmd.params.getcap_in.cap =
500 cpu_to_be32(TPM_CAP_PROP);
Rajiv Andrade08837432009-02-02 15:23:43 -0200501 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4);
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300502 tpm_cmd.params.getcap_in.subcap = cpu_to_be32(subcap_id);
Rajiv Andrade08837432009-02-02 15:23:43 -0200503 }
Stefan Bergerc659af72017-01-19 07:19:12 -0500504 rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE,
505 min_cap_length, 0, desc);
Rajiv Andrade08837432009-02-02 15:23:43 -0200506 if (!rc)
507 *cap = tpm_cmd.params.getcap_out.cap;
508 return rc;
509}
Jarkko Sakkineneb5854e2016-06-12 16:42:09 +0300510EXPORT_SYMBOL_GPL(tpm_getcap);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700511
Jason Gunthorpec584af12012-11-21 13:54:33 -0700512#define TPM_ORD_STARTUP cpu_to_be32(153)
513#define TPM_ST_CLEAR cpu_to_be16(1)
514#define TPM_ST_STATE cpu_to_be16(2)
515#define TPM_ST_DEACTIVATED cpu_to_be16(3)
516static const struct tpm_input_header tpm_startup_header = {
517 .tag = TPM_TAG_RQU_COMMAND,
518 .length = cpu_to_be32(12),
519 .ordinal = TPM_ORD_STARTUP
520};
521
522static int tpm_startup(struct tpm_chip *chip, __be16 startup_type)
523{
524 struct tpm_cmd_t start_cmd;
525 start_cmd.header.in = tpm_startup_header;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800526
Jason Gunthorpec584af12012-11-21 13:54:33 -0700527 start_cmd.params.startup_in.startup_type = startup_type;
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300528 return tpm_transmit_cmd(chip, &start_cmd, TPM_INTERNAL_RESULT_SIZE, 0,
Stefan Bergerc659af72017-01-19 07:19:12 -0500529 0, "attempting to start the TPM");
Jason Gunthorpec584af12012-11-21 13:54:33 -0700530}
531
Stefan Berger2b30a902011-11-11 12:57:02 -0500532int tpm_get_timeouts(struct tpm_chip *chip)
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700533{
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300534 cap_t cap;
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100535 unsigned long timeout_old[4], timeout_chip[4], timeout_eff[4];
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700536 ssize_t rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700537
Jason Gunthorped1d253cf2016-10-26 16:28:44 -0600538 if (chip->flags & TPM_CHIP_FLAG_HAVE_TIMEOUTS)
539 return 0;
540
Jason Gunthorpe25112042015-11-25 14:05:32 -0700541 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
542 /* Fixed timeouts for TPM2 */
Christophe Ricardaf782f32016-03-31 22:56:59 +0200543 chip->timeout_a = msecs_to_jiffies(TPM2_TIMEOUT_A);
544 chip->timeout_b = msecs_to_jiffies(TPM2_TIMEOUT_B);
545 chip->timeout_c = msecs_to_jiffies(TPM2_TIMEOUT_C);
546 chip->timeout_d = msecs_to_jiffies(TPM2_TIMEOUT_D);
547 chip->duration[TPM_SHORT] =
Jason Gunthorpe25112042015-11-25 14:05:32 -0700548 msecs_to_jiffies(TPM2_DURATION_SHORT);
Christophe Ricardaf782f32016-03-31 22:56:59 +0200549 chip->duration[TPM_MEDIUM] =
Jason Gunthorpe25112042015-11-25 14:05:32 -0700550 msecs_to_jiffies(TPM2_DURATION_MEDIUM);
Christophe Ricardaf782f32016-03-31 22:56:59 +0200551 chip->duration[TPM_LONG] =
Jason Gunthorpe25112042015-11-25 14:05:32 -0700552 msecs_to_jiffies(TPM2_DURATION_LONG);
Jason Gunthorped1d253cf2016-10-26 16:28:44 -0600553
554 chip->flags |= TPM_CHIP_FLAG_HAVE_TIMEOUTS;
Jason Gunthorpe25112042015-11-25 14:05:32 -0700555 return 0;
556 }
557
Stefan Bergerc659af72017-01-19 07:19:12 -0500558 rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_TIMEOUT, &cap, NULL,
559 sizeof(cap.timeout));
Jason Gunthorpec584af12012-11-21 13:54:33 -0700560 if (rc == TPM_ERR_INVALID_POSTINIT) {
561 /* The TPM is not started, we are the first to talk to it.
562 Execute a startup command. */
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300563 dev_info(&chip->dev, "Issuing TPM_STARTUP\n");
Jason Gunthorpec584af12012-11-21 13:54:33 -0700564 if (tpm_startup(chip, TPM_ST_CLEAR))
565 return rc;
566
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300567 rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_TIMEOUT, &cap,
Stefan Bergerc659af72017-01-19 07:19:12 -0500568 "attempting to determine the timeouts",
569 sizeof(cap.timeout));
Jason Gunthorpec584af12012-11-21 13:54:33 -0700570 }
Stefan Bergerc659af72017-01-19 07:19:12 -0500571
Jason Gunthorpe62bfdac2016-11-21 11:31:09 -0700572 if (rc) {
573 dev_err(&chip->dev,
574 "A TPM error (%zd) occurred attempting to determine the timeouts\n",
575 rc);
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300576 return rc;
Jason Gunthorpe62bfdac2016-11-21 11:31:09 -0700577 }
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700578
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100579 timeout_old[0] = jiffies_to_usecs(chip->timeout_a);
580 timeout_old[1] = jiffies_to_usecs(chip->timeout_b);
581 timeout_old[2] = jiffies_to_usecs(chip->timeout_c);
582 timeout_old[3] = jiffies_to_usecs(chip->timeout_d);
583 timeout_chip[0] = be32_to_cpu(cap.timeout.a);
584 timeout_chip[1] = be32_to_cpu(cap.timeout.b);
585 timeout_chip[2] = be32_to_cpu(cap.timeout.c);
586 timeout_chip[3] = be32_to_cpu(cap.timeout.d);
587 memcpy(timeout_eff, timeout_chip, sizeof(timeout_eff));
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600588
589 /*
590 * Provide ability for vendor overrides of timeout values in case
591 * of misreporting.
592 */
593 if (chip->ops->update_timeouts != NULL)
Christophe Ricardaf782f32016-03-31 22:56:59 +0200594 chip->timeout_adjusted =
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100595 chip->ops->update_timeouts(chip, timeout_eff);
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600596
Christophe Ricardaf782f32016-03-31 22:56:59 +0200597 if (!chip->timeout_adjusted) {
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100598 /* Restore default if chip reported 0 */
599 int i;
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600600
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100601 for (i = 0; i < ARRAY_SIZE(timeout_eff); i++) {
602 if (timeout_eff[i])
603 continue;
604
605 timeout_eff[i] = timeout_old[i];
606 chip->timeout_adjusted = true;
607 }
608
609 if (timeout_eff[0] != 0 && timeout_eff[0] < 1000) {
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600610 /* timeouts in msec rather usec */
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100611 for (i = 0; i != ARRAY_SIZE(timeout_eff); i++)
612 timeout_eff[i] *= 1000;
Christophe Ricardaf782f32016-03-31 22:56:59 +0200613 chip->timeout_adjusted = true;
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600614 }
Stefan Bergere3e1a1e2011-03-30 12:13:27 -0400615 }
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600616
617 /* Report adjusted timeouts */
Christophe Ricardaf782f32016-03-31 22:56:59 +0200618 if (chip->timeout_adjusted) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500619 dev_info(&chip->dev,
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600620 HW_ERR "Adjusting reported timeouts: A %lu->%luus B %lu->%luus C %lu->%luus D %lu->%luus\n",
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100621 timeout_chip[0], timeout_eff[0],
622 timeout_chip[1], timeout_eff[1],
623 timeout_chip[2], timeout_eff[2],
624 timeout_chip[3], timeout_eff[3]);
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600625 }
626
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100627 chip->timeout_a = usecs_to_jiffies(timeout_eff[0]);
628 chip->timeout_b = usecs_to_jiffies(timeout_eff[1]);
629 chip->timeout_c = usecs_to_jiffies(timeout_eff[2]);
630 chip->timeout_d = usecs_to_jiffies(timeout_eff[3]);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700631
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300632 rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_DURATION, &cap,
Stefan Bergerc659af72017-01-19 07:19:12 -0500633 "attempting to determine the durations",
634 sizeof(cap.duration));
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700635 if (rc)
Stefan Berger2b30a902011-11-11 12:57:02 -0500636 return rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700637
Christophe Ricardaf782f32016-03-31 22:56:59 +0200638 chip->duration[TPM_SHORT] =
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300639 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_short));
Christophe Ricardaf782f32016-03-31 22:56:59 +0200640 chip->duration[TPM_MEDIUM] =
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300641 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_medium));
Christophe Ricardaf782f32016-03-31 22:56:59 +0200642 chip->duration[TPM_LONG] =
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300643 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_long));
Stefan Bergere934acc2011-03-30 12:13:24 -0400644
645 /* The Broadcom BCM0102 chipset in a Dell Latitude D820 gets the above
646 * value wrong and apparently reports msecs rather than usecs. So we
647 * fix up the resulting too-small TPM_SHORT value to make things work.
648 * We also scale the TPM_MEDIUM and -_LONG values by 1000.
649 */
Christophe Ricardaf782f32016-03-31 22:56:59 +0200650 if (chip->duration[TPM_SHORT] < (HZ / 100)) {
651 chip->duration[TPM_SHORT] = HZ;
652 chip->duration[TPM_MEDIUM] *= 1000;
653 chip->duration[TPM_LONG] *= 1000;
654 chip->duration_adjusted = true;
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500655 dev_info(&chip->dev, "Adjusting TPM timeout parameters.");
Stefan Bergere934acc2011-03-30 12:13:24 -0400656 }
Jason Gunthorped1d253cf2016-10-26 16:28:44 -0600657
658 chip->flags |= TPM_CHIP_FLAG_HAVE_TIMEOUTS;
Stefan Berger2b30a902011-11-11 12:57:02 -0500659 return 0;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700660}
661EXPORT_SYMBOL_GPL(tpm_get_timeouts);
662
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500663#define TPM_ORD_CONTINUE_SELFTEST 83
664#define CONTINUE_SELFTEST_RESULT_SIZE 10
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700665
Julia Lawall00147772016-09-11 15:05:52 +0200666static const struct tpm_input_header continue_selftest_header = {
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500667 .tag = TPM_TAG_RQU_COMMAND,
668 .length = cpu_to_be32(10),
669 .ordinal = cpu_to_be32(TPM_ORD_CONTINUE_SELFTEST),
670};
671
672/**
673 * tpm_continue_selftest -- run TPM's selftest
674 * @chip: TPM chip to use
675 *
676 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
677 * a TPM error code.
678 */
Stefan Berger68d6e672011-11-11 12:57:04 -0500679static int tpm_continue_selftest(struct tpm_chip *chip)
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500680{
681 int rc;
682 struct tpm_cmd_t cmd;
683
684 cmd.header.in = continue_selftest_header;
Stefan Bergerc659af72017-01-19 07:19:12 -0500685 rc = tpm_transmit_cmd(chip, &cmd, CONTINUE_SELFTEST_RESULT_SIZE, 0, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800686 "continue selftest");
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500687 return rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700688}
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700689
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200690#define TPM_ORDINAL_PCRREAD cpu_to_be32(21)
691#define READ_PCR_RESULT_SIZE 30
Stefan Bergerc659af72017-01-19 07:19:12 -0500692#define READ_PCR_RESULT_BODY_SIZE 20
Julia Lawall00147772016-09-11 15:05:52 +0200693static const struct tpm_input_header pcrread_header = {
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200694 .tag = TPM_TAG_RQU_COMMAND,
695 .length = cpu_to_be32(14),
696 .ordinal = TPM_ORDINAL_PCRREAD
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697};
698
Jason Gunthorpe000a07b2013-11-26 13:30:41 -0700699int tpm_pcr_read_dev(struct tpm_chip *chip, int pcr_idx, u8 *res_buf)
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200700{
701 int rc;
702 struct tpm_cmd_t cmd;
703
704 cmd.header.in = pcrread_header;
705 cmd.params.pcrread_in.pcr_idx = cpu_to_be32(pcr_idx);
Stefan Bergerc659af72017-01-19 07:19:12 -0500706 rc = tpm_transmit_cmd(chip, &cmd, READ_PCR_RESULT_SIZE,
707 READ_PCR_RESULT_BODY_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800708 "attempting to read a pcr value");
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200709
710 if (rc == 0)
711 memcpy(res_buf, cmd.params.pcrread_out.pcr_result,
712 TPM_DIGEST_SIZE);
713 return rc;
714}
715
716/**
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300717 * tpm_is_tpm2 - is the chip a TPM2 chip?
718 * @chip_num: tpm idx # or ANY
719 *
720 * Returns < 0 on error, and 1 or 0 on success depending whether the chip
721 * is a TPM2 chip.
722 */
723int tpm_is_tpm2(u32 chip_num)
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;
731
732 rc = (chip->flags & TPM_CHIP_FLAG_TPM2) != 0;
733
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700734 tpm_put_ops(chip);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300735
736 return rc;
737}
738EXPORT_SYMBOL_GPL(tpm_is_tpm2);
739
740/**
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200741 * tpm_pcr_read - read a pcr value
Peter Huewe0a418262013-10-22 00:29:14 +0200742 * @chip_num: tpm idx # or ANY
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200743 * @pcr_idx: pcr idx to retrieve
Peter Huewe0a418262013-10-22 00:29:14 +0200744 * @res_buf: TPM_PCR value
745 * size of res_buf is 20 bytes (or NULL if you don't care)
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200746 *
747 * The TPM driver should be built-in, but for whatever reason it
748 * isn't, protect against the chip disappearing, by incrementing
749 * the module usage count.
750 */
751int tpm_pcr_read(u32 chip_num, int pcr_idx, u8 *res_buf)
752{
753 struct tpm_chip *chip;
754 int rc;
755
756 chip = tpm_chip_find_get(chip_num);
757 if (chip == NULL)
758 return -ENODEV;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800759 if (chip->flags & TPM_CHIP_FLAG_TPM2)
760 rc = tpm2_pcr_read(chip, pcr_idx, res_buf);
761 else
762 rc = tpm_pcr_read_dev(chip, pcr_idx, res_buf);
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700763 tpm_put_ops(chip);
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200764 return rc;
765}
766EXPORT_SYMBOL_GPL(tpm_pcr_read);
767
Winkler, Tomasca6d4582016-11-01 03:05:13 +0200768#define TPM_ORD_PCR_EXTEND cpu_to_be32(20)
769#define EXTEND_PCR_RESULT_SIZE 34
Stefan Bergerc659af72017-01-19 07:19:12 -0500770#define EXTEND_PCR_RESULT_BODY_SIZE 24
Winkler, Tomasca6d4582016-11-01 03:05:13 +0200771static const struct tpm_input_header pcrextend_header = {
772 .tag = TPM_TAG_RQU_COMMAND,
773 .length = cpu_to_be32(34),
774 .ordinal = TPM_ORD_PCR_EXTEND
775};
776
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200777/**
778 * tpm_pcr_extend - extend pcr value with hash
Peter Huewe0a418262013-10-22 00:29:14 +0200779 * @chip_num: tpm idx # or AN&
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200780 * @pcr_idx: pcr idx to extend
Peter Huewe0a418262013-10-22 00:29:14 +0200781 * @hash: hash value used to extend pcr value
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200782 *
783 * The TPM driver should be built-in, but for whatever reason it
784 * isn't, protect against the chip disappearing, by incrementing
785 * the module usage count.
786 */
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200787int tpm_pcr_extend(u32 chip_num, int pcr_idx, const u8 *hash)
788{
789 struct tpm_cmd_t cmd;
790 int rc;
791 struct tpm_chip *chip;
792
793 chip = tpm_chip_find_get(chip_num);
794 if (chip == NULL)
795 return -ENODEV;
796
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800797 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
798 rc = tpm2_pcr_extend(chip, pcr_idx, hash);
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700799 tpm_put_ops(chip);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800800 return rc;
801 }
802
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200803 cmd.header.in = pcrextend_header;
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200804 cmd.params.pcrextend_in.pcr_idx = cpu_to_be32(pcr_idx);
805 memcpy(cmd.params.pcrextend_in.hash, hash, TPM_DIGEST_SIZE);
Stefan Bergerc659af72017-01-19 07:19:12 -0500806 rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE,
807 EXTEND_PCR_RESULT_BODY_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800808 "attempting extend a PCR value");
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200809
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700810 tpm_put_ops(chip);
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200811 return rc;
812}
813EXPORT_SYMBOL_GPL(tpm_pcr_extend);
814
Stefan Berger68d6e672011-11-11 12:57:04 -0500815/**
816 * tpm_do_selftest - have the TPM continue its selftest and wait until it
817 * can receive further commands
818 * @chip: TPM chip to use
819 *
820 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
821 * a TPM error code.
822 */
823int tpm_do_selftest(struct tpm_chip *chip)
824{
825 int rc;
Stefan Berger68d6e672011-11-11 12:57:04 -0500826 unsigned int loops;
Jason Gunthorpe46438262012-11-21 13:15:54 -0800827 unsigned int delay_msec = 100;
Stefan Berger68d6e672011-11-11 12:57:04 -0500828 unsigned long duration;
Jarkko Sakkinen0c541332016-06-17 13:12:20 +0200829 u8 dummy[TPM_DIGEST_SIZE];
Stefan Berger68d6e672011-11-11 12:57:04 -0500830
Peter Huewe0a418262013-10-22 00:29:14 +0200831 duration = tpm_calc_ordinal_duration(chip, TPM_ORD_CONTINUE_SELFTEST);
Stefan Berger68d6e672011-11-11 12:57:04 -0500832
833 loops = jiffies_to_msecs(duration) / delay_msec;
834
835 rc = tpm_continue_selftest(chip);
836 /* This may fail if there was no TPM driver during a suspend/resume
837 * cycle; some may return 10 (BAD_ORDINAL), others 28 (FAILEDSELFTEST)
838 */
839 if (rc)
840 return rc;
841
842 do {
Rajiv Andrade24ebe662012-04-24 17:38:17 -0300843 /* Attempt to read a PCR value */
Jarkko Sakkinen0c541332016-06-17 13:12:20 +0200844 rc = tpm_pcr_read_dev(chip, 0, dummy);
845
Jason Gunthorpe46438262012-11-21 13:15:54 -0800846 /* Some buggy TPMs will not respond to tpm_tis_ready() for
847 * around 300ms while the self test is ongoing, keep trying
848 * until the self test duration expires. */
849 if (rc == -ETIME) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500850 dev_info(
851 &chip->dev, HW_ERR
852 "TPM command timed out during continue self test");
Jason Gunthorpe46438262012-11-21 13:15:54 -0800853 msleep(delay_msec);
854 continue;
855 }
Rajiv Andrade24ebe662012-04-24 17:38:17 -0300856
Stefan Bergerbe405412012-01-17 22:07:30 -0500857 if (rc == TPM_ERR_DISABLED || rc == TPM_ERR_DEACTIVATED) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500858 dev_info(&chip->dev,
Stefan Bergerbe405412012-01-17 22:07:30 -0500859 "TPM is disabled/deactivated (0x%X)\n", rc);
860 /* TPM is disabled and/or deactivated; driver can
861 * proceed and TPM does handle commands for
862 * suspend/resume correctly
863 */
864 return 0;
865 }
Stefan Berger68d6e672011-11-11 12:57:04 -0500866 if (rc != TPM_WARN_DOING_SELFTEST)
867 return rc;
868 msleep(delay_msec);
869 } while (--loops > 0);
870
871 return rc;
872}
873EXPORT_SYMBOL_GPL(tpm_do_selftest);
874
Jason Gunthorpecae8b442016-07-12 11:41:49 -0600875/**
876 * tpm1_auto_startup - Perform the standard automatic TPM initialization
877 * sequence
878 * @chip: TPM chip to use
879 *
880 * Returns 0 on success, < 0 in case of fatal error.
881 */
882int tpm1_auto_startup(struct tpm_chip *chip)
883{
884 int rc;
885
886 rc = tpm_get_timeouts(chip);
887 if (rc)
888 goto out;
889 rc = tpm_do_selftest(chip);
890 if (rc) {
891 dev_err(&chip->dev, "TPM self test failed\n");
892 goto out;
893 }
894
895 return rc;
896out:
897 if (rc > 0)
898 rc = -ENODEV;
899 return rc;
900}
901
Mimi Zoharc749ba92010-11-23 18:54:16 -0500902int tpm_send(u32 chip_num, void *cmd, size_t buflen)
903{
904 struct tpm_chip *chip;
905 int rc;
906
907 chip = tpm_chip_find_get(chip_num);
908 if (chip == NULL)
909 return -ENODEV;
910
Stefan Bergerc659af72017-01-19 07:19:12 -0500911 rc = tpm_transmit_cmd(chip, cmd, buflen, 0, 0, "attempting tpm_cmd");
Mimi Zoharc749ba92010-11-23 18:54:16 -0500912
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700913 tpm_put_ops(chip);
Mimi Zoharc749ba92010-11-23 18:54:16 -0500914 return rc;
915}
916EXPORT_SYMBOL_GPL(tpm_send);
917
Peter Huewe0a418262013-10-22 00:29:14 +0200918static bool wait_for_tpm_stat_cond(struct tpm_chip *chip, u8 mask,
919 bool check_cancel, bool *canceled)
Stefan Berger78f09cc2013-01-22 13:57:53 -0600920{
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700921 u8 status = chip->ops->status(chip);
Stefan Berger78f09cc2013-01-22 13:57:53 -0600922
923 *canceled = false;
924 if ((status & mask) == mask)
925 return true;
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700926 if (check_cancel && chip->ops->req_canceled(chip, status)) {
Stefan Berger78f09cc2013-01-22 13:57:53 -0600927 *canceled = true;
928 return true;
929 }
930 return false;
931}
932
Rajiv Andradefd048862011-09-16 14:39:40 -0300933int wait_for_tpm_stat(struct tpm_chip *chip, u8 mask, unsigned long timeout,
Stefan Berger78f09cc2013-01-22 13:57:53 -0600934 wait_queue_head_t *queue, bool check_cancel)
Rajiv Andradefd048862011-09-16 14:39:40 -0300935{
936 unsigned long stop;
937 long rc;
938 u8 status;
Stefan Berger78f09cc2013-01-22 13:57:53 -0600939 bool canceled = false;
Rajiv Andradefd048862011-09-16 14:39:40 -0300940
941 /* check current status */
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700942 status = chip->ops->status(chip);
Rajiv Andradefd048862011-09-16 14:39:40 -0300943 if ((status & mask) == mask)
944 return 0;
945
946 stop = jiffies + timeout;
947
Christophe Ricard570a3602016-03-31 22:56:56 +0200948 if (chip->flags & TPM_CHIP_FLAG_IRQ) {
Rajiv Andradefd048862011-09-16 14:39:40 -0300949again:
950 timeout = stop - jiffies;
951 if ((long)timeout <= 0)
952 return -ETIME;
953 rc = wait_event_interruptible_timeout(*queue,
Stefan Berger78f09cc2013-01-22 13:57:53 -0600954 wait_for_tpm_stat_cond(chip, mask, check_cancel,
955 &canceled),
956 timeout);
957 if (rc > 0) {
958 if (canceled)
959 return -ECANCELED;
Rajiv Andradefd048862011-09-16 14:39:40 -0300960 return 0;
Stefan Berger78f09cc2013-01-22 13:57:53 -0600961 }
Rajiv Andradefd048862011-09-16 14:39:40 -0300962 if (rc == -ERESTARTSYS && freezing(current)) {
963 clear_thread_flag(TIF_SIGPENDING);
964 goto again;
965 }
966 } else {
967 do {
968 msleep(TPM_TIMEOUT);
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700969 status = chip->ops->status(chip);
Rajiv Andradefd048862011-09-16 14:39:40 -0300970 if ((status & mask) == mask)
971 return 0;
972 } while (time_before(jiffies, stop));
973 }
974 return -ETIME;
975}
976EXPORT_SYMBOL_GPL(wait_for_tpm_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300978#define TPM_ORD_SAVESTATE cpu_to_be32(152)
979#define SAVESTATE_RESULT_SIZE 10
980
Julia Lawall00147772016-09-11 15:05:52 +0200981static const struct tpm_input_header savestate_header = {
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300982 .tag = TPM_TAG_RQU_COMMAND,
983 .length = cpu_to_be32(10),
984 .ordinal = TPM_ORD_SAVESTATE
985};
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987/*
988 * We are about to suspend. Save the TPM state
989 * so that it can be restored.
990 */
Rafael J. Wysocki035e2ce2012-07-06 19:09:01 +0200991int tpm_pm_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
Stefan Bergerec03c502016-05-11 11:28:27 -0400993 struct tpm_chip *chip = dev_get_drvdata(dev);
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300994 struct tpm_cmd_t cmd;
Duncan Laurie32d33b22013-03-17 14:56:39 -0700995 int rc, try;
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300996
997 u8 dummy_hash[TPM_DIGEST_SIZE] = { 0 };
David Smith2490c682008-01-14 00:55:12 -0800998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 if (chip == NULL)
1000 return -ENODEV;
1001
Jarkko Sakkinen74d6b3c2015-01-29 07:43:47 +02001002 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
1003 tpm2_shutdown(chip, TPM2_SU_STATE);
1004 return 0;
1005 }
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -08001006
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001007 /* for buggy tpm, flush pcrs with extend to selected dummy */
1008 if (tpm_suspend_pcr) {
1009 cmd.header.in = pcrextend_header;
1010 cmd.params.pcrextend_in.pcr_idx = cpu_to_be32(tpm_suspend_pcr);
1011 memcpy(cmd.params.pcrextend_in.hash, dummy_hash,
1012 TPM_DIGEST_SIZE);
Stefan Bergerc659af72017-01-19 07:19:12 -05001013 rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE,
1014 EXTEND_PCR_RESULT_BODY_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -08001015 "extending dummy pcr before suspend");
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001016 }
1017
1018 /* now do the actual savestate */
Duncan Laurie32d33b22013-03-17 14:56:39 -07001019 for (try = 0; try < TPM_RETRY; try++) {
1020 cmd.header.in = savestate_header;
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +03001021 rc = tpm_transmit_cmd(chip, &cmd, SAVESTATE_RESULT_SIZE, 0,
Stefan Bergerc659af72017-01-19 07:19:12 -05001022 0, NULL);
Duncan Laurie32d33b22013-03-17 14:56:39 -07001023
1024 /*
1025 * If the TPM indicates that it is too busy to respond to
1026 * this command then retry before giving up. It can take
1027 * several seconds for this TPM to be ready.
1028 *
1029 * This can happen if the TPM has already been sent the
1030 * SaveState command before the driver has loaded. TCG 1.2
1031 * specification states that any communication after SaveState
1032 * may cause the TPM to invalidate previously saved state.
1033 */
1034 if (rc != TPM_WARN_RETRY)
1035 break;
1036 msleep(TPM_TIMEOUT_RETRY);
1037 }
1038
1039 if (rc)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -05001040 dev_err(&chip->dev,
Duncan Laurie32d33b22013-03-17 14:56:39 -07001041 "Error (%d) sending savestate before suspend\n", rc);
1042 else if (try > 0)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -05001043 dev_warn(&chip->dev, "TPM savestate took %dms\n",
Duncan Laurie32d33b22013-03-17 14:56:39 -07001044 try * TPM_TIMEOUT_RETRY);
1045
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001046 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048EXPORT_SYMBOL_GPL(tpm_pm_suspend);
1049
1050/*
1051 * Resume from a power safe. The BIOS already restored
1052 * the TPM state.
1053 */
Kylene Jo Hallce2c87d2005-10-30 15:03:25 -08001054int tpm_pm_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
Stefan Bergerec03c502016-05-11 11:28:27 -04001056 struct tpm_chip *chip = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 if (chip == NULL)
1059 return -ENODEV;
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 return 0;
1062}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063EXPORT_SYMBOL_GPL(tpm_pm_resume);
1064
Kent Yoder41ab9992012-06-07 13:47:14 -05001065#define TPM_GETRANDOM_RESULT_SIZE 18
Julia Lawall00147772016-09-11 15:05:52 +02001066static const struct tpm_input_header tpm_getrandom_header = {
Kent Yoder41ab9992012-06-07 13:47:14 -05001067 .tag = TPM_TAG_RQU_COMMAND,
1068 .length = cpu_to_be32(14),
1069 .ordinal = TPM_ORD_GET_RANDOM
1070};
1071
1072/**
1073 * tpm_get_random() - Get random bytes from the tpm's RNG
1074 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1075 * @out: destination buffer for the random bytes
1076 * @max: the max number of bytes to write to @out
1077 *
1078 * Returns < 0 on error and the number of bytes read on success
1079 */
1080int tpm_get_random(u32 chip_num, u8 *out, size_t max)
1081{
1082 struct tpm_chip *chip;
1083 struct tpm_cmd_t tpm_cmd;
Stefan Bergerc659af72017-01-19 07:19:12 -05001084 u32 recd, num_bytes = min_t(u32, max, TPM_MAX_RNG_DATA), rlength;
Kent Yoder41ab9992012-06-07 13:47:14 -05001085 int err, total = 0, retries = 5;
1086 u8 *dest = out;
1087
Jarkko Sakkinen3e14d832014-05-09 14:23:10 +03001088 if (!out || !num_bytes || max > TPM_MAX_RNG_DATA)
1089 return -EINVAL;
1090
Kent Yoder41ab9992012-06-07 13:47:14 -05001091 chip = tpm_chip_find_get(chip_num);
1092 if (chip == NULL)
1093 return -ENODEV;
1094
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -08001095 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
1096 err = tpm2_get_random(chip, out, max);
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001097 tpm_put_ops(chip);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -08001098 return err;
1099 }
1100
Kent Yoder41ab9992012-06-07 13:47:14 -05001101 do {
1102 tpm_cmd.header.in = tpm_getrandom_header;
1103 tpm_cmd.params.getrandom_in.num_bytes = cpu_to_be32(num_bytes);
1104
Jarkko Sakkinen87155b72014-12-12 11:46:33 -08001105 err = tpm_transmit_cmd(chip, &tpm_cmd,
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +03001106 TPM_GETRANDOM_RESULT_SIZE + num_bytes,
Stefan Bergerc659af72017-01-19 07:19:12 -05001107 offsetof(struct tpm_getrandom_out,
1108 rng_data),
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +03001109 0, "attempting get random");
Kent Yoder41ab9992012-06-07 13:47:14 -05001110 if (err)
1111 break;
1112
1113 recd = be32_to_cpu(tpm_cmd.params.getrandom_out.rng_data_len);
Stefan Bergerc659af72017-01-19 07:19:12 -05001114
1115 rlength = be32_to_cpu(tpm_cmd.header.out.length);
1116 if (rlength < offsetof(struct tpm_getrandom_out, rng_data) +
1117 recd) {
1118 total = -EFAULT;
1119 break;
1120 }
Kent Yoder41ab9992012-06-07 13:47:14 -05001121 memcpy(dest, tpm_cmd.params.getrandom_out.rng_data, recd);
1122
1123 dest += recd;
1124 total += recd;
1125 num_bytes -= recd;
1126 } while (retries-- && total < max);
1127
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001128 tpm_put_ops(chip);
Kent Yoder41ab9992012-06-07 13:47:14 -05001129 return total ? total : -EIO;
1130}
1131EXPORT_SYMBOL_GPL(tpm_get_random);
1132
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001133/**
1134 * tpm_seal_trusted() - seal a trusted key
1135 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1136 * @options: authentication values and other options
1137 * @payload: the key data in clear and encrypted form
1138 *
1139 * Returns < 0 on error and 0 on success. At the moment, only TPM 2.0 chips
1140 * are supported.
1141 */
1142int tpm_seal_trusted(u32 chip_num, struct trusted_key_payload *payload,
1143 struct trusted_key_options *options)
1144{
1145 struct tpm_chip *chip;
1146 int rc;
1147
1148 chip = tpm_chip_find_get(chip_num);
1149 if (chip == NULL || !(chip->flags & TPM_CHIP_FLAG_TPM2))
1150 return -ENODEV;
1151
1152 rc = tpm2_seal_trusted(chip, payload, options);
1153
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001154 tpm_put_ops(chip);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001155 return rc;
1156}
1157EXPORT_SYMBOL_GPL(tpm_seal_trusted);
1158
1159/**
1160 * tpm_unseal_trusted() - unseal a trusted key
1161 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1162 * @options: authentication values and other options
1163 * @payload: the key data in clear and encrypted form
1164 *
1165 * Returns < 0 on error and 0 on success. At the moment, only TPM 2.0 chips
1166 * are supported.
1167 */
1168int tpm_unseal_trusted(u32 chip_num, struct trusted_key_payload *payload,
1169 struct trusted_key_options *options)
1170{
1171 struct tpm_chip *chip;
1172 int rc;
1173
1174 chip = tpm_chip_find_get(chip_num);
1175 if (chip == NULL || !(chip->flags & TPM_CHIP_FLAG_TPM2))
1176 return -ENODEV;
1177
1178 rc = tpm2_unseal_trusted(chip, payload, options);
1179
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001180 tpm_put_ops(chip);
1181
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001182 return rc;
1183}
1184EXPORT_SYMBOL_GPL(tpm_unseal_trusted);
1185
Jarkko Sakkinen313d21e2014-12-12 11:46:37 -08001186static int __init tpm_init(void)
1187{
1188 int rc;
1189
1190 tpm_class = class_create(THIS_MODULE, "tpm");
1191 if (IS_ERR(tpm_class)) {
1192 pr_err("couldn't create tpm class\n");
1193 return PTR_ERR(tpm_class);
1194 }
1195
1196 rc = alloc_chrdev_region(&tpm_devt, 0, TPM_NUM_DEVICES, "tpm");
1197 if (rc < 0) {
1198 pr_err("tpm: failed to allocate char dev region\n");
1199 class_destroy(tpm_class);
1200 return rc;
1201 }
1202
1203 return 0;
1204}
1205
1206static void __exit tpm_exit(void)
1207{
Stefan Berger15516782016-02-29 08:53:02 -05001208 idr_destroy(&dev_nums_idr);
Jarkko Sakkinen313d21e2014-12-12 11:46:37 -08001209 class_destroy(tpm_class);
1210 unregister_chrdev_region(tpm_devt, TPM_NUM_DEVICES);
1211}
1212
1213subsys_initcall(tpm_init);
1214module_exit(tpm_exit);
1215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
1217MODULE_DESCRIPTION("TPM Driver");
1218MODULE_VERSION("2.0");
1219MODULE_LICENSE("GPL");