blob: af355bd97bea0fa8a1884586ab787e0610e0d3ba [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>
Thiebaud Weksteenfd3ec362017-09-20 10:13:36 +020033#include <linux/tpm_eventlog.h>
Matthias Kaehlcked081d472007-05-08 00:32:02 -070034
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "tpm.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,
Dmitry Torokhov39f57122017-02-05 20:47:18 -080050 "PCR to use for dummy writes to facilitate flush on suspend.");
Dmitry Torokhov9b3056c2010-10-01 14:16:39 -070051
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
Javier Martinez Canillas095531f2017-11-30 08:39:07 +0100331static int tpm_validate_command(struct tpm_chip *chip,
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200332 struct tpm_space *space,
333 const u8 *cmd,
Jarkko Sakkinen58472f52016-11-10 20:42:07 -0800334 size_t len)
335{
336 const struct tpm_input_header *header = (const void *)cmd;
337 int i;
338 u32 cc;
339 u32 attrs;
340 unsigned int nr_handles;
341
342 if (len < TPM_HEADER_SIZE)
Javier Martinez Canillas095531f2017-11-30 08:39:07 +0100343 return -EINVAL;
Jarkko Sakkinen58472f52016-11-10 20:42:07 -0800344
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200345 if (!space)
Javier Martinez Canillas095531f2017-11-30 08:39:07 +0100346 return 0;
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200347
Jarkko Sakkinen58472f52016-11-10 20:42:07 -0800348 if (chip->flags & TPM_CHIP_FLAG_TPM2 && chip->nr_commands) {
349 cc = be32_to_cpu(header->ordinal);
350
351 i = tpm2_find_cc(chip, cc);
352 if (i < 0) {
353 dev_dbg(&chip->dev, "0x%04X is an invalid command\n",
354 cc);
Javier Martinez Canillas095531f2017-11-30 08:39:07 +0100355 return -EOPNOTSUPP;
Jarkko Sakkinen58472f52016-11-10 20:42:07 -0800356 }
357
358 attrs = chip->cc_attrs_tbl[i];
359 nr_handles =
360 4 * ((attrs >> TPM2_CC_ATTR_CHANDLES) & GENMASK(2, 0));
361 if (len < TPM_HEADER_SIZE + 4 * nr_handles)
362 goto err_len;
363 }
364
Javier Martinez Canillas095531f2017-11-30 08:39:07 +0100365 return 0;
Jarkko Sakkinen58472f52016-11-10 20:42:07 -0800366err_len:
367 dev_dbg(&chip->dev,
368 "%s: insufficient command length %zu", __func__, len);
Javier Martinez Canillas095531f2017-11-30 08:39:07 +0100369 return -EINVAL;
Jarkko Sakkinen58472f52016-11-10 20:42:07 -0800370}
371
Winkler, Tomasf865c192016-11-23 12:04:11 +0200372/**
373 * tmp_transmit - Internal kernel interface to transmit TPM commands.
374 *
375 * @chip: TPM chip to use
376 * @buf: TPM command buffer
377 * @bufsiz: length of the TPM command buffer
378 * @flags: tpm transmit flags - bitmap
379 *
380 * Return:
381 * 0 when the operation is successful.
382 * A negative number for system errors (errno).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 */
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200384ssize_t tpm_transmit(struct tpm_chip *chip, struct tpm_space *space,
385 u8 *buf, size_t bufsiz, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200387 struct tpm_output_header *header = (void *)buf;
388 int rc;
389 ssize_t len = 0;
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700390 u32 count, ordinal;
Nishanth Aravamudan700d8bd2005-06-23 22:01:47 -0700391 unsigned long stop;
Jarkko Sakkinen877c57d2017-03-24 11:45:49 +0200392 bool need_locality;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Javier Martinez Canillas095531f2017-11-30 08:39:07 +0100394 rc = tpm_validate_command(chip, space, buf, bufsiz);
395 if (rc == -EINVAL)
396 return rc;
397 /*
398 * If the command is not implemented by the TPM, synthesize a
399 * response with a TPM2_RC_COMMAND_CODE return for user-space.
400 */
401 if (rc == -EOPNOTSUPP) {
402 header->length = cpu_to_be32(sizeof(*header));
403 header->tag = cpu_to_be16(TPM2_ST_NO_SESSIONS);
404 header->return_code = cpu_to_be32(TPM2_RC_COMMAND_CODE |
405 TSS2_RESMGR_TPM_RC_LAYER);
406 return bufsiz;
407 }
Jarkko Sakkinenebfd7532016-09-12 13:43:30 +0300408
Peter Huewe6b07d302011-09-15 14:37:43 -0300409 if (bufsiz > TPM_BUFSIZE)
410 bufsiz = TPM_BUFSIZE;
411
Kylene Hall81179bb2005-06-23 22:01:59 -0700412 count = be32_to_cpu(*((__be32 *) (buf + 2)));
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700413 ordinal = be32_to_cpu(*((__be32 *) (buf + 6)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (count == 0)
415 return -ENODATA;
416 if (count > bufsiz) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500417 dev_err(&chip->dev,
Peter Huewe0a418262013-10-22 00:29:14 +0200418 "invalid count value %x %zx\n", count, bufsiz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 return -E2BIG;
420 }
421
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300422 if (!(flags & TPM_TRANSMIT_UNLOCKED))
423 mutex_lock(&chip->tpm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Stefan Berger6804f6b2016-11-07 07:14:33 -0500425 if (chip->dev.parent)
426 pm_runtime_get_sync(chip->dev.parent);
Winkler, Tomase74f2f72016-10-08 14:59:39 +0300427
Jarkko Sakkinen877c57d2017-03-24 11:45:49 +0200428 /* Store the decision as chip->locality will be changed. */
429 need_locality = chip->locality == -1;
430
Stefan Berger85ab3bf2017-05-24 17:39:39 -0400431 if (!(flags & TPM_TRANSMIT_RAW) &&
432 need_locality && chip->ops->request_locality) {
Jarkko Sakkinen877c57d2017-03-24 11:45:49 +0200433 rc = chip->ops->request_locality(chip, 0);
434 if (rc < 0)
435 goto out_no_locality;
436 chip->locality = rc;
437 }
438
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200439 rc = tpm2_prepare_space(chip, space, ordinal, buf);
440 if (rc)
441 goto out;
442
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700443 rc = chip->ops->send(chip, (u8 *) buf, count);
Peter Huewe0a418262013-10-22 00:29:14 +0200444 if (rc < 0) {
Stefan Berger402149c2017-05-25 18:29:13 -0400445 if (rc != -EPIPE)
446 dev_err(&chip->dev,
447 "%s: tpm_send: error %d\n", __func__, rc);
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700448 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450
Christophe Ricard570a3602016-03-31 22:56:56 +0200451 if (chip->flags & TPM_CHIP_FLAG_IRQ)
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700452 goto out_recv;
453
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800454 if (chip->flags & TPM_CHIP_FLAG_TPM2)
455 stop = jiffies + tpm2_calc_ordinal_duration(chip, ordinal);
456 else
457 stop = jiffies + tpm_calc_ordinal_duration(chip, ordinal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 do {
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700459 u8 status = chip->ops->status(chip);
460 if ((status & chip->ops->req_complete_mask) ==
461 chip->ops->req_complete_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 goto out_recv;
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700463
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700464 if (chip->ops->req_canceled(chip, status)) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500465 dev_err(&chip->dev, "Operation Canceled\n");
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700466 rc = -ECANCELED;
467 goto out;
468 }
469
Hamza Attak9f3fc7b2017-08-14 19:09:16 +0100470 tpm_msleep(TPM_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 rmb();
Nishanth Aravamudan700d8bd2005-06-23 22:01:47 -0700472 } while (time_before(jiffies, stop));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700474 chip->ops->cancel(chip);
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500475 dev_err(&chip->dev, "Operation Timed out\n");
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700476 rc = -ETIME;
477 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479out_recv:
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200480 len = chip->ops->recv(chip, (u8 *) buf, bufsiz);
481 if (len < 0) {
482 rc = len;
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500483 dev_err(&chip->dev,
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200484 "tpm_transmit: tpm_recv: error %d\n", rc);
Jarkko Sakkinena1479182017-02-14 21:57:42 +0200485 goto out;
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200486 } else if (len < TPM_HEADER_SIZE) {
Jarkko Sakkinena1479182017-02-14 21:57:42 +0200487 rc = -EFAULT;
488 goto out;
489 }
490
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200491 if (len != be32_to_cpu(header->length)) {
492 rc = -EFAULT;
Jarkko Sakkinena1479182017-02-14 21:57:42 +0200493 goto out;
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200494 }
495
496 rc = tpm2_commit_space(chip, space, ordinal, buf, &len);
Jarkko Sakkinena1479182017-02-14 21:57:42 +0200497
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700498out:
Jarkko Sakkinen877c57d2017-03-24 11:45:49 +0200499 if (need_locality && chip->ops->relinquish_locality) {
500 chip->ops->relinquish_locality(chip, chip->locality);
501 chip->locality = -1;
502 }
503out_no_locality:
Stefan Berger6804f6b2016-11-07 07:14:33 -0500504 if (chip->dev.parent)
505 pm_runtime_put_sync(chip->dev.parent);
Winkler, Tomase74f2f72016-10-08 14:59:39 +0300506
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300507 if (!(flags & TPM_TRANSMIT_UNLOCKED))
508 mutex_unlock(&chip->tpm_mutex);
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200509 return rc ? rc : len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
Winkler, Tomasf865c192016-11-23 12:04:11 +0200512/**
513 * tmp_transmit_cmd - send a tpm command to the device
514 * The function extracts tpm out header return code
515 *
516 * @chip: TPM chip to use
Stefan Bergerc659af72017-01-19 07:19:12 -0500517 * @buf: TPM command buffer
518 * @bufsiz: length of the buffer
519 * @min_rsp_body_length: minimum expected length of response body
Winkler, Tomasf865c192016-11-23 12:04:11 +0200520 * @flags: tpm transmit flags - bitmap
521 * @desc: command description used in the error message
522 *
523 * Return:
524 * 0 when the operation is successful.
525 * A negative number for system errors (errno).
526 * A positive number for a TPM error.
527 */
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200528ssize_t tpm_transmit_cmd(struct tpm_chip *chip, struct tpm_space *space,
529 const void *buf, size_t bufsiz,
530 size_t min_rsp_body_length, unsigned int flags,
531 const char *desc)
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700532{
Jarkko Sakkinena1479182017-02-14 21:57:42 +0200533 const struct tpm_output_header *header = buf;
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700534 int err;
Stefan Bergerc659af72017-01-19 07:19:12 -0500535 ssize_t len;
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700536
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200537 len = tpm_transmit(chip, space, (u8 *)buf, bufsiz, flags);
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700538 if (len < 0)
539 return len;
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800540
541 err = be32_to_cpu(header->return_code);
Jason Gunthorpec584af12012-11-21 13:54:33 -0700542 if (err != 0 && desc)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500543 dev_err(&chip->dev, "A TPM error (%d) occurred %s\n", err,
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800544 desc);
Stefan Bergerc659af72017-01-19 07:19:12 -0500545 if (err)
546 return err;
Rajiv Andradeb9e32382011-11-01 17:00:52 -0200547
Stefan Bergerc659af72017-01-19 07:19:12 -0500548 if (len < min_rsp_body_length + TPM_HEADER_SIZE)
549 return -EFAULT;
550
551 return 0;
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700552}
Stefan Bergerbe4c9ac2017-05-24 17:39:40 -0400553EXPORT_SYMBOL_GPL(tpm_transmit_cmd);
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700554
Jarkko Sakkinen19cbe4f2017-06-21 09:31:34 +0200555#define TPM_ORD_STARTUP 153
556#define TPM_ST_CLEAR 1
557
558/**
559 * tpm_startup - turn on the TPM
560 * @chip: TPM chip to use
561 *
562 * Normally the firmware should start the TPM. This function is provided as a
563 * workaround if this does not happen. A legal case for this could be for
564 * example when a TPM emulator is used.
565 *
566 * Return: same as tpm_transmit_cmd()
567 */
568int tpm_startup(struct tpm_chip *chip)
569{
570 struct tpm_buf buf;
571 int rc;
572
573 dev_info(&chip->dev, "starting up the TPM manually\n");
574
575 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
576 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_STARTUP);
577 if (rc < 0)
578 return rc;
579
580 tpm_buf_append_u16(&buf, TPM2_SU_CLEAR);
581 } else {
582 rc = tpm_buf_init(&buf, TPM_TAG_RQU_COMMAND, TPM_ORD_STARTUP);
583 if (rc < 0)
584 return rc;
585
586 tpm_buf_append_u16(&buf, TPM_ST_CLEAR);
587 }
588
589 rc = tpm_transmit_cmd(chip, NULL, buf.data, PAGE_SIZE, 0, 0,
590 "attempting to start the TPM");
591
592 tpm_buf_destroy(&buf);
593 return rc;
594}
595
Winkler, Tomasf865c192016-11-23 12:04:11 +0200596#define TPM_DIGEST_SIZE 20
597#define TPM_RET_CODE_IDX 6
Rajiv Andrade08837432009-02-02 15:23:43 -0200598#define TPM_INTERNAL_RESULT_SIZE 200
Roberto Sassua69faeb2017-05-03 18:19:10 +0200599#define TPM_ORD_GET_CAP 101
600#define TPM_ORD_GET_RANDOM 70
Rajiv Andrade08837432009-02-02 15:23:43 -0200601
602static const struct tpm_input_header tpm_getcap_header = {
Roberto Sassu06e93272017-05-03 18:19:09 +0200603 .tag = cpu_to_be16(TPM_TAG_RQU_COMMAND),
Rajiv Andrade08837432009-02-02 15:23:43 -0200604 .length = cpu_to_be32(22),
Roberto Sassua69faeb2017-05-03 18:19:10 +0200605 .ordinal = cpu_to_be32(TPM_ORD_GET_CAP)
Rajiv Andrade08837432009-02-02 15:23:43 -0200606};
607
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300608ssize_t tpm_getcap(struct tpm_chip *chip, u32 subcap_id, cap_t *cap,
Stefan Bergerc659af72017-01-19 07:19:12 -0500609 const char *desc, size_t min_cap_length)
Rajiv Andrade08837432009-02-02 15:23:43 -0200610{
Jarkko Sakkinen124bdcf2017-05-07 20:50:02 +0300611 struct tpm_buf buf;
Rajiv Andrade08837432009-02-02 15:23:43 -0200612 int rc;
Rajiv Andrade08837432009-02-02 15:23:43 -0200613
Jarkko Sakkinen124bdcf2017-05-07 20:50:02 +0300614 rc = tpm_buf_init(&buf, TPM_TAG_RQU_COMMAND, TPM_ORD_GET_CAP);
615 if (rc)
616 return rc;
617
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300618 if (subcap_id == TPM_CAP_VERSION_1_1 ||
619 subcap_id == TPM_CAP_VERSION_1_2) {
Jarkko Sakkinen124bdcf2017-05-07 20:50:02 +0300620 tpm_buf_append_u32(&buf, subcap_id);
621 tpm_buf_append_u32(&buf, 0);
Rajiv Andrade08837432009-02-02 15:23:43 -0200622 } else {
623 if (subcap_id == TPM_CAP_FLAG_PERM ||
624 subcap_id == TPM_CAP_FLAG_VOL)
Jarkko Sakkinen124bdcf2017-05-07 20:50:02 +0300625 tpm_buf_append_u32(&buf, TPM_CAP_FLAG);
Rajiv Andrade08837432009-02-02 15:23:43 -0200626 else
Jarkko Sakkinen124bdcf2017-05-07 20:50:02 +0300627 tpm_buf_append_u32(&buf, TPM_CAP_PROP);
628
629 tpm_buf_append_u32(&buf, 4);
630 tpm_buf_append_u32(&buf, subcap_id);
Rajiv Andrade08837432009-02-02 15:23:43 -0200631 }
Jarkko Sakkinen124bdcf2017-05-07 20:50:02 +0300632 rc = tpm_transmit_cmd(chip, NULL, buf.data, PAGE_SIZE,
Stefan Bergerc659af72017-01-19 07:19:12 -0500633 min_cap_length, 0, desc);
Rajiv Andrade08837432009-02-02 15:23:43 -0200634 if (!rc)
Jarkko Sakkinen124bdcf2017-05-07 20:50:02 +0300635 *cap = *(cap_t *)&buf.data[TPM_HEADER_SIZE + 4];
636
637 tpm_buf_destroy(&buf);
Rajiv Andrade08837432009-02-02 15:23:43 -0200638 return rc;
639}
Jarkko Sakkineneb5854e2016-06-12 16:42:09 +0300640EXPORT_SYMBOL_GPL(tpm_getcap);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700641
Stefan Berger2b30a902011-11-11 12:57:02 -0500642int tpm_get_timeouts(struct tpm_chip *chip)
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700643{
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300644 cap_t cap;
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100645 unsigned long timeout_old[4], timeout_chip[4], timeout_eff[4];
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700646 ssize_t rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700647
Jason Gunthorped1d253c2016-10-26 16:28:44 -0600648 if (chip->flags & TPM_CHIP_FLAG_HAVE_TIMEOUTS)
649 return 0;
650
Jason Gunthorpe25112042015-11-25 14:05:32 -0700651 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
652 /* Fixed timeouts for TPM2 */
Christophe Ricardaf782f32016-03-31 22:56:59 +0200653 chip->timeout_a = msecs_to_jiffies(TPM2_TIMEOUT_A);
654 chip->timeout_b = msecs_to_jiffies(TPM2_TIMEOUT_B);
655 chip->timeout_c = msecs_to_jiffies(TPM2_TIMEOUT_C);
656 chip->timeout_d = msecs_to_jiffies(TPM2_TIMEOUT_D);
657 chip->duration[TPM_SHORT] =
Jason Gunthorpe25112042015-11-25 14:05:32 -0700658 msecs_to_jiffies(TPM2_DURATION_SHORT);
Christophe Ricardaf782f32016-03-31 22:56:59 +0200659 chip->duration[TPM_MEDIUM] =
Jason Gunthorpe25112042015-11-25 14:05:32 -0700660 msecs_to_jiffies(TPM2_DURATION_MEDIUM);
Christophe Ricardaf782f32016-03-31 22:56:59 +0200661 chip->duration[TPM_LONG] =
Jason Gunthorpe25112042015-11-25 14:05:32 -0700662 msecs_to_jiffies(TPM2_DURATION_LONG);
Jason Gunthorped1d253c2016-10-26 16:28:44 -0600663
664 chip->flags |= TPM_CHIP_FLAG_HAVE_TIMEOUTS;
Jason Gunthorpe25112042015-11-25 14:05:32 -0700665 return 0;
666 }
667
Stefan Bergerc659af72017-01-19 07:19:12 -0500668 rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_TIMEOUT, &cap, NULL,
669 sizeof(cap.timeout));
Jason Gunthorpec584af12012-11-21 13:54:33 -0700670 if (rc == TPM_ERR_INVALID_POSTINIT) {
Jarkko Sakkinen19cbe4f2017-06-21 09:31:34 +0200671 if (tpm_startup(chip))
Jason Gunthorpec584af12012-11-21 13:54:33 -0700672 return rc;
673
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300674 rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_TIMEOUT, &cap,
Stefan Bergerc659af72017-01-19 07:19:12 -0500675 "attempting to determine the timeouts",
676 sizeof(cap.timeout));
Jason Gunthorpec584af12012-11-21 13:54:33 -0700677 }
Stefan Bergerc659af72017-01-19 07:19:12 -0500678
Jason Gunthorpe62bfdac2016-11-21 11:31:09 -0700679 if (rc) {
680 dev_err(&chip->dev,
681 "A TPM error (%zd) occurred attempting to determine the timeouts\n",
682 rc);
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300683 return rc;
Jason Gunthorpe62bfdac2016-11-21 11:31:09 -0700684 }
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700685
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100686 timeout_old[0] = jiffies_to_usecs(chip->timeout_a);
687 timeout_old[1] = jiffies_to_usecs(chip->timeout_b);
688 timeout_old[2] = jiffies_to_usecs(chip->timeout_c);
689 timeout_old[3] = jiffies_to_usecs(chip->timeout_d);
690 timeout_chip[0] = be32_to_cpu(cap.timeout.a);
691 timeout_chip[1] = be32_to_cpu(cap.timeout.b);
692 timeout_chip[2] = be32_to_cpu(cap.timeout.c);
693 timeout_chip[3] = be32_to_cpu(cap.timeout.d);
694 memcpy(timeout_eff, timeout_chip, sizeof(timeout_eff));
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600695
696 /*
697 * Provide ability for vendor overrides of timeout values in case
698 * of misreporting.
699 */
700 if (chip->ops->update_timeouts != NULL)
Christophe Ricardaf782f32016-03-31 22:56:59 +0200701 chip->timeout_adjusted =
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100702 chip->ops->update_timeouts(chip, timeout_eff);
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600703
Christophe Ricardaf782f32016-03-31 22:56:59 +0200704 if (!chip->timeout_adjusted) {
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100705 /* Restore default if chip reported 0 */
706 int i;
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600707
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100708 for (i = 0; i < ARRAY_SIZE(timeout_eff); i++) {
709 if (timeout_eff[i])
710 continue;
711
712 timeout_eff[i] = timeout_old[i];
713 chip->timeout_adjusted = true;
714 }
715
716 if (timeout_eff[0] != 0 && timeout_eff[0] < 1000) {
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600717 /* timeouts in msec rather usec */
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100718 for (i = 0; i != ARRAY_SIZE(timeout_eff); i++)
719 timeout_eff[i] *= 1000;
Christophe Ricardaf782f32016-03-31 22:56:59 +0200720 chip->timeout_adjusted = true;
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600721 }
Stefan Bergere3e1a1e2011-03-30 12:13:27 -0400722 }
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600723
724 /* Report adjusted timeouts */
Christophe Ricardaf782f32016-03-31 22:56:59 +0200725 if (chip->timeout_adjusted) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500726 dev_info(&chip->dev,
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600727 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 +0100728 timeout_chip[0], timeout_eff[0],
729 timeout_chip[1], timeout_eff[1],
730 timeout_chip[2], timeout_eff[2],
731 timeout_chip[3], timeout_eff[3]);
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600732 }
733
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100734 chip->timeout_a = usecs_to_jiffies(timeout_eff[0]);
735 chip->timeout_b = usecs_to_jiffies(timeout_eff[1]);
736 chip->timeout_c = usecs_to_jiffies(timeout_eff[2]);
737 chip->timeout_d = usecs_to_jiffies(timeout_eff[3]);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700738
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300739 rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_DURATION, &cap,
Stefan Bergerc659af72017-01-19 07:19:12 -0500740 "attempting to determine the durations",
741 sizeof(cap.duration));
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700742 if (rc)
Stefan Berger2b30a902011-11-11 12:57:02 -0500743 return rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700744
Christophe Ricardaf782f32016-03-31 22:56:59 +0200745 chip->duration[TPM_SHORT] =
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300746 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_short));
Christophe Ricardaf782f32016-03-31 22:56:59 +0200747 chip->duration[TPM_MEDIUM] =
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300748 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_medium));
Christophe Ricardaf782f32016-03-31 22:56:59 +0200749 chip->duration[TPM_LONG] =
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300750 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_long));
Stefan Bergere934acc2011-03-30 12:13:24 -0400751
752 /* The Broadcom BCM0102 chipset in a Dell Latitude D820 gets the above
753 * value wrong and apparently reports msecs rather than usecs. So we
754 * fix up the resulting too-small TPM_SHORT value to make things work.
755 * We also scale the TPM_MEDIUM and -_LONG values by 1000.
756 */
Christophe Ricardaf782f32016-03-31 22:56:59 +0200757 if (chip->duration[TPM_SHORT] < (HZ / 100)) {
758 chip->duration[TPM_SHORT] = HZ;
759 chip->duration[TPM_MEDIUM] *= 1000;
760 chip->duration[TPM_LONG] *= 1000;
761 chip->duration_adjusted = true;
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500762 dev_info(&chip->dev, "Adjusting TPM timeout parameters.");
Stefan Bergere934acc2011-03-30 12:13:24 -0400763 }
Jason Gunthorped1d253c2016-10-26 16:28:44 -0600764
765 chip->flags |= TPM_CHIP_FLAG_HAVE_TIMEOUTS;
Stefan Berger2b30a902011-11-11 12:57:02 -0500766 return 0;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700767}
768EXPORT_SYMBOL_GPL(tpm_get_timeouts);
769
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500770#define TPM_ORD_CONTINUE_SELFTEST 83
771#define CONTINUE_SELFTEST_RESULT_SIZE 10
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700772
Julia Lawall00147772016-09-11 15:05:52 +0200773static const struct tpm_input_header continue_selftest_header = {
Roberto Sassu06e93272017-05-03 18:19:09 +0200774 .tag = cpu_to_be16(TPM_TAG_RQU_COMMAND),
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500775 .length = cpu_to_be32(10),
776 .ordinal = cpu_to_be32(TPM_ORD_CONTINUE_SELFTEST),
777};
778
779/**
780 * tpm_continue_selftest -- run TPM's selftest
781 * @chip: TPM chip to use
782 *
783 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
784 * a TPM error code.
785 */
Stefan Berger68d6e672011-11-11 12:57:04 -0500786static int tpm_continue_selftest(struct tpm_chip *chip)
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500787{
788 int rc;
789 struct tpm_cmd_t cmd;
790
791 cmd.header.in = continue_selftest_header;
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200792 rc = tpm_transmit_cmd(chip, NULL, &cmd, CONTINUE_SELFTEST_RESULT_SIZE,
793 0, 0, "continue selftest");
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500794 return rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700795}
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700796
Roberto Sassua69faeb2017-05-03 18:19:10 +0200797#define TPM_ORDINAL_PCRREAD 21
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200798#define READ_PCR_RESULT_SIZE 30
Stefan Bergerc659af72017-01-19 07:19:12 -0500799#define READ_PCR_RESULT_BODY_SIZE 20
Julia Lawall00147772016-09-11 15:05:52 +0200800static const struct tpm_input_header pcrread_header = {
Roberto Sassu06e93272017-05-03 18:19:09 +0200801 .tag = cpu_to_be16(TPM_TAG_RQU_COMMAND),
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200802 .length = cpu_to_be32(14),
Roberto Sassua69faeb2017-05-03 18:19:10 +0200803 .ordinal = cpu_to_be32(TPM_ORDINAL_PCRREAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804};
805
Jason Gunthorpe000a07b2013-11-26 13:30:41 -0700806int tpm_pcr_read_dev(struct tpm_chip *chip, int pcr_idx, u8 *res_buf)
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200807{
808 int rc;
809 struct tpm_cmd_t cmd;
810
811 cmd.header.in = pcrread_header;
812 cmd.params.pcrread_in.pcr_idx = cpu_to_be32(pcr_idx);
Jarkko Sakkinen745b3612017-01-06 14:03:45 +0200813 rc = tpm_transmit_cmd(chip, NULL, &cmd, READ_PCR_RESULT_SIZE,
Stefan Bergerc659af72017-01-19 07:19:12 -0500814 READ_PCR_RESULT_BODY_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800815 "attempting to read a pcr value");
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200816
817 if (rc == 0)
818 memcpy(res_buf, cmd.params.pcrread_out.pcr_result,
819 TPM_DIGEST_SIZE);
820 return rc;
821}
822
823/**
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +0200824 * tpm_is_tpm2 - do we a have a TPM2 chip?
825 * @chip: a &struct tpm_chip instance, %NULL for the default chip
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300826 *
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +0200827 * Return:
828 * 1 if we have a TPM2 chip.
829 * 0 if we don't have a TPM2 chip.
830 * A negative number for system errors (errno).
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300831 */
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +0200832int tpm_is_tpm2(struct tpm_chip *chip)
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300833{
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300834 int rc;
835
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +0200836 chip = tpm_chip_find_get(chip);
837 if (!chip)
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300838 return -ENODEV;
839
840 rc = (chip->flags & TPM_CHIP_FLAG_TPM2) != 0;
841
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700842 tpm_put_ops(chip);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300843
844 return rc;
845}
846EXPORT_SYMBOL_GPL(tpm_is_tpm2);
847
848/**
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +0200849 * tpm_pcr_read - read a PCR value from SHA1 bank
850 * @chip: a &struct tpm_chip instance, %NULL for the default chip
851 * @pcr_idx: the PCR to be retrieved
852 * @res_buf: the value of the PCR
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200853 *
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +0200854 * Return: same as with tpm_transmit_cmd()
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200855 */
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +0200856int tpm_pcr_read(struct tpm_chip *chip, int pcr_idx, u8 *res_buf)
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200857{
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200858 int rc;
859
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +0200860 chip = tpm_chip_find_get(chip);
861 if (!chip)
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200862 return -ENODEV;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800863 if (chip->flags & TPM_CHIP_FLAG_TPM2)
864 rc = tpm2_pcr_read(chip, pcr_idx, res_buf);
865 else
866 rc = tpm_pcr_read_dev(chip, pcr_idx, res_buf);
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700867 tpm_put_ops(chip);
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200868 return rc;
869}
870EXPORT_SYMBOL_GPL(tpm_pcr_read);
871
Roberto Sassua69faeb2017-05-03 18:19:10 +0200872#define TPM_ORD_PCR_EXTEND 20
Winkler, Tomasca6d4582016-11-01 03:05:13 +0200873#define EXTEND_PCR_RESULT_SIZE 34
Stefan Berger51b0be62017-02-15 11:56:23 -0500874#define EXTEND_PCR_RESULT_BODY_SIZE 20
Winkler, Tomasca6d4582016-11-01 03:05:13 +0200875static const struct tpm_input_header pcrextend_header = {
Roberto Sassu06e93272017-05-03 18:19:09 +0200876 .tag = cpu_to_be16(TPM_TAG_RQU_COMMAND),
Winkler, Tomasca6d4582016-11-01 03:05:13 +0200877 .length = cpu_to_be32(34),
Roberto Sassua69faeb2017-05-03 18:19:10 +0200878 .ordinal = cpu_to_be32(TPM_ORD_PCR_EXTEND)
Winkler, Tomasca6d4582016-11-01 03:05:13 +0200879};
880
Roberto Sassu175d5b22017-05-04 13:16:47 +0200881static int tpm1_pcr_extend(struct tpm_chip *chip, int pcr_idx, const u8 *hash,
882 char *log_msg)
883{
884 struct tpm_buf buf;
885 int rc;
886
887 rc = tpm_buf_init(&buf, TPM_TAG_RQU_COMMAND, TPM_ORD_PCR_EXTEND);
888 if (rc)
889 return rc;
890
891 tpm_buf_append_u32(&buf, pcr_idx);
892 tpm_buf_append(&buf, hash, TPM_DIGEST_SIZE);
893
894 rc = tpm_transmit_cmd(chip, NULL, buf.data, EXTEND_PCR_RESULT_SIZE,
895 EXTEND_PCR_RESULT_BODY_SIZE, 0, log_msg);
896 tpm_buf_destroy(&buf);
897 return rc;
898}
899
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200900/**
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +0200901 * tpm_pcr_extend - extend a PCR value in SHA1 bank.
902 * @chip: a &struct tpm_chip instance, %NULL for the default chip
903 * @pcr_idx: the PCR to be retrieved
904 * @hash: the hash value used to extend the PCR value
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200905 *
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +0200906 * Note: with TPM 2.0 extends also those banks with a known digest size to the
907 * cryto subsystem in order to prevent malicious use of those PCR banks. In the
908 * future we should dynamically determine digest sizes.
909 *
910 * Return: same as with tpm_transmit_cmd()
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200911 */
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +0200912int tpm_pcr_extend(struct tpm_chip *chip, int pcr_idx, const u8 *hash)
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200913{
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200914 int rc;
Nayna Jainc1f92b42017-01-30 04:59:41 -0500915 struct tpm2_digest digest_list[ARRAY_SIZE(chip->active_banks)];
916 u32 count = 0;
917 int i;
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200918
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +0200919 chip = tpm_chip_find_get(chip);
920 if (!chip)
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200921 return -ENODEV;
922
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800923 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
Nayna Jainc1f92b42017-01-30 04:59:41 -0500924 memset(digest_list, 0, sizeof(digest_list));
925
Dan Carpenter70ea1632017-02-03 13:30:40 +0300926 for (i = 0; i < ARRAY_SIZE(chip->active_banks) &&
927 chip->active_banks[i] != TPM2_ALG_ERROR; i++) {
Nayna Jainc1f92b42017-01-30 04:59:41 -0500928 digest_list[i].alg_id = chip->active_banks[i];
929 memcpy(digest_list[i].digest, hash, TPM_DIGEST_SIZE);
930 count++;
931 }
932
933 rc = tpm2_pcr_extend(chip, pcr_idx, count, digest_list);
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700934 tpm_put_ops(chip);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800935 return rc;
936 }
937
Roberto Sassu175d5b22017-05-04 13:16:47 +0200938 rc = tpm1_pcr_extend(chip, pcr_idx, hash,
939 "attempting extend a PCR value");
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700940 tpm_put_ops(chip);
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200941 return rc;
942}
943EXPORT_SYMBOL_GPL(tpm_pcr_extend);
944
Stefan Berger68d6e672011-11-11 12:57:04 -0500945/**
946 * tpm_do_selftest - have the TPM continue its selftest and wait until it
947 * can receive further commands
948 * @chip: TPM chip to use
949 *
950 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
951 * a TPM error code.
952 */
953int tpm_do_selftest(struct tpm_chip *chip)
954{
955 int rc;
Stefan Berger68d6e672011-11-11 12:57:04 -0500956 unsigned int loops;
Jason Gunthorpe46438262012-11-21 13:15:54 -0800957 unsigned int delay_msec = 100;
Stefan Berger68d6e672011-11-11 12:57:04 -0500958 unsigned long duration;
Jarkko Sakkinen0c541332016-06-17 13:12:20 +0200959 u8 dummy[TPM_DIGEST_SIZE];
Stefan Berger68d6e672011-11-11 12:57:04 -0500960
Peter Huewe0a418262013-10-22 00:29:14 +0200961 duration = tpm_calc_ordinal_duration(chip, TPM_ORD_CONTINUE_SELFTEST);
Stefan Berger68d6e672011-11-11 12:57:04 -0500962
963 loops = jiffies_to_msecs(duration) / delay_msec;
964
965 rc = tpm_continue_selftest(chip);
966 /* This may fail if there was no TPM driver during a suspend/resume
967 * cycle; some may return 10 (BAD_ORDINAL), others 28 (FAILEDSELFTEST)
968 */
969 if (rc)
970 return rc;
971
972 do {
Rajiv Andrade24ebe662012-04-24 17:38:17 -0300973 /* Attempt to read a PCR value */
Jarkko Sakkinen0c541332016-06-17 13:12:20 +0200974 rc = tpm_pcr_read_dev(chip, 0, dummy);
975
Jason Gunthorpe46438262012-11-21 13:15:54 -0800976 /* Some buggy TPMs will not respond to tpm_tis_ready() for
977 * around 300ms while the self test is ongoing, keep trying
978 * until the self test duration expires. */
979 if (rc == -ETIME) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500980 dev_info(
981 &chip->dev, HW_ERR
982 "TPM command timed out during continue self test");
Hamza Attak9f3fc7b2017-08-14 19:09:16 +0100983 tpm_msleep(delay_msec);
Jason Gunthorpe46438262012-11-21 13:15:54 -0800984 continue;
985 }
Rajiv Andrade24ebe662012-04-24 17:38:17 -0300986
Stefan Bergerbe405412012-01-17 22:07:30 -0500987 if (rc == TPM_ERR_DISABLED || rc == TPM_ERR_DEACTIVATED) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500988 dev_info(&chip->dev,
Stefan Bergerbe405412012-01-17 22:07:30 -0500989 "TPM is disabled/deactivated (0x%X)\n", rc);
990 /* TPM is disabled and/or deactivated; driver can
991 * proceed and TPM does handle commands for
992 * suspend/resume correctly
993 */
994 return 0;
995 }
Stefan Berger68d6e672011-11-11 12:57:04 -0500996 if (rc != TPM_WARN_DOING_SELFTEST)
997 return rc;
Hamza Attak9f3fc7b2017-08-14 19:09:16 +0100998 tpm_msleep(delay_msec);
Stefan Berger68d6e672011-11-11 12:57:04 -0500999 } while (--loops > 0);
1000
1001 return rc;
1002}
1003EXPORT_SYMBOL_GPL(tpm_do_selftest);
1004
Jason Gunthorpecae8b442016-07-12 11:41:49 -06001005/**
1006 * tpm1_auto_startup - Perform the standard automatic TPM initialization
1007 * sequence
1008 * @chip: TPM chip to use
1009 *
1010 * Returns 0 on success, < 0 in case of fatal error.
1011 */
1012int tpm1_auto_startup(struct tpm_chip *chip)
1013{
1014 int rc;
1015
1016 rc = tpm_get_timeouts(chip);
1017 if (rc)
1018 goto out;
1019 rc = tpm_do_selftest(chip);
1020 if (rc) {
1021 dev_err(&chip->dev, "TPM self test failed\n");
1022 goto out;
1023 }
1024
1025 return rc;
1026out:
1027 if (rc > 0)
1028 rc = -ENODEV;
1029 return rc;
1030}
1031
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +02001032/**
1033 * tpm_send - send a TPM command
1034 * @chip: a &struct tpm_chip instance, %NULL for the default chip
1035 * @cmd: a TPM command buffer
1036 * @buflen: the length of the TPM command buffer
1037 *
1038 * Return: same as with tpm_transmit_cmd()
1039 */
1040int tpm_send(struct tpm_chip *chip, void *cmd, size_t buflen)
Mimi Zoharc749ba92010-11-23 18:54:16 -05001041{
Mimi Zoharc749ba92010-11-23 18:54:16 -05001042 int rc;
1043
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +02001044 chip = tpm_chip_find_get(chip);
1045 if (!chip)
Mimi Zoharc749ba92010-11-23 18:54:16 -05001046 return -ENODEV;
1047
Jarkko Sakkinen745b3612017-01-06 14:03:45 +02001048 rc = tpm_transmit_cmd(chip, NULL, cmd, buflen, 0, 0,
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +02001049 "attempting to a send a command");
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001050 tpm_put_ops(chip);
Mimi Zoharc749ba92010-11-23 18:54:16 -05001051 return rc;
1052}
1053EXPORT_SYMBOL_GPL(tpm_send);
1054
Roberto Sassua69faeb2017-05-03 18:19:10 +02001055#define TPM_ORD_SAVESTATE 152
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001056#define SAVESTATE_RESULT_SIZE 10
1057
Julia Lawall00147772016-09-11 15:05:52 +02001058static const struct tpm_input_header savestate_header = {
Roberto Sassu06e93272017-05-03 18:19:09 +02001059 .tag = cpu_to_be16(TPM_TAG_RQU_COMMAND),
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001060 .length = cpu_to_be32(10),
Roberto Sassua69faeb2017-05-03 18:19:10 +02001061 .ordinal = cpu_to_be32(TPM_ORD_SAVESTATE)
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001062};
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064/*
1065 * We are about to suspend. Save the TPM state
1066 * so that it can be restored.
1067 */
Rafael J. Wysocki035e2ce2012-07-06 19:09:01 +02001068int tpm_pm_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
Stefan Bergerec03c502016-05-11 11:28:27 -04001070 struct tpm_chip *chip = dev_get_drvdata(dev);
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001071 struct tpm_cmd_t cmd;
Duncan Laurie32d33b22013-03-17 14:56:39 -07001072 int rc, try;
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001073
1074 u8 dummy_hash[TPM_DIGEST_SIZE] = { 0 };
David Smith2490c682008-01-14 00:55:12 -08001075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 if (chip == NULL)
1077 return -ENODEV;
1078
Enric Balletbo i Serrab5d0ebc2017-06-27 12:27:24 +02001079 if (chip->flags & TPM_CHIP_FLAG_ALWAYS_POWERED)
1080 return 0;
1081
Jarkko Sakkinen74d6b3c2015-01-29 07:43:47 +02001082 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
1083 tpm2_shutdown(chip, TPM2_SU_STATE);
1084 return 0;
1085 }
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -08001086
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001087 /* for buggy tpm, flush pcrs with extend to selected dummy */
Roberto Sassu175d5b22017-05-04 13:16:47 +02001088 if (tpm_suspend_pcr)
1089 rc = tpm1_pcr_extend(chip, tpm_suspend_pcr, dummy_hash,
1090 "extending dummy pcr before suspend");
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001091
1092 /* now do the actual savestate */
Duncan Laurie32d33b22013-03-17 14:56:39 -07001093 for (try = 0; try < TPM_RETRY; try++) {
1094 cmd.header.in = savestate_header;
Jarkko Sakkinen745b3612017-01-06 14:03:45 +02001095 rc = tpm_transmit_cmd(chip, NULL, &cmd, SAVESTATE_RESULT_SIZE,
1096 0, 0, NULL);
Duncan Laurie32d33b22013-03-17 14:56:39 -07001097
1098 /*
1099 * If the TPM indicates that it is too busy to respond to
1100 * this command then retry before giving up. It can take
1101 * several seconds for this TPM to be ready.
1102 *
1103 * This can happen if the TPM has already been sent the
1104 * SaveState command before the driver has loaded. TCG 1.2
1105 * specification states that any communication after SaveState
1106 * may cause the TPM to invalidate previously saved state.
1107 */
1108 if (rc != TPM_WARN_RETRY)
1109 break;
Hamza Attak9f3fc7b2017-08-14 19:09:16 +01001110 tpm_msleep(TPM_TIMEOUT_RETRY);
Duncan Laurie32d33b22013-03-17 14:56:39 -07001111 }
1112
1113 if (rc)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -05001114 dev_err(&chip->dev,
Duncan Laurie32d33b22013-03-17 14:56:39 -07001115 "Error (%d) sending savestate before suspend\n", rc);
1116 else if (try > 0)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -05001117 dev_warn(&chip->dev, "TPM savestate took %dms\n",
Duncan Laurie32d33b22013-03-17 14:56:39 -07001118 try * TPM_TIMEOUT_RETRY);
1119
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001120 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122EXPORT_SYMBOL_GPL(tpm_pm_suspend);
1123
1124/*
1125 * Resume from a power safe. The BIOS already restored
1126 * the TPM state.
1127 */
Kylene Jo Hallce2c87d2005-10-30 15:03:25 -08001128int tpm_pm_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129{
Stefan Bergerec03c502016-05-11 11:28:27 -04001130 struct tpm_chip *chip = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 if (chip == NULL)
1133 return -ENODEV;
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 return 0;
1136}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137EXPORT_SYMBOL_GPL(tpm_pm_resume);
1138
Kent Yoder41ab9992012-06-07 13:47:14 -05001139#define TPM_GETRANDOM_RESULT_SIZE 18
Julia Lawall00147772016-09-11 15:05:52 +02001140static const struct tpm_input_header tpm_getrandom_header = {
Roberto Sassu06e93272017-05-03 18:19:09 +02001141 .tag = cpu_to_be16(TPM_TAG_RQU_COMMAND),
Kent Yoder41ab9992012-06-07 13:47:14 -05001142 .length = cpu_to_be32(14),
Roberto Sassua69faeb2017-05-03 18:19:10 +02001143 .ordinal = cpu_to_be32(TPM_ORD_GET_RANDOM)
Kent Yoder41ab9992012-06-07 13:47:14 -05001144};
1145
1146/**
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +02001147 * tpm_get_random() - get random bytes from the TPM's RNG
1148 * @chip: a &struct tpm_chip instance, %NULL for the default chip
1149 * @out: destination buffer for the random bytes
1150 * @max: the max number of bytes to write to @out
Kent Yoder41ab9992012-06-07 13:47:14 -05001151 *
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +02001152 * Return: same as with tpm_transmit_cmd()
Kent Yoder41ab9992012-06-07 13:47:14 -05001153 */
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +02001154int tpm_get_random(struct tpm_chip *chip, u8 *out, size_t max)
Kent Yoder41ab9992012-06-07 13:47:14 -05001155{
Kent Yoder41ab9992012-06-07 13:47:14 -05001156 struct tpm_cmd_t tpm_cmd;
Stefan Bergerc659af72017-01-19 07:19:12 -05001157 u32 recd, num_bytes = min_t(u32, max, TPM_MAX_RNG_DATA), rlength;
Kent Yoder41ab9992012-06-07 13:47:14 -05001158 int err, total = 0, retries = 5;
1159 u8 *dest = out;
1160
Jarkko Sakkinen3e14d832014-05-09 14:23:10 +03001161 if (!out || !num_bytes || max > TPM_MAX_RNG_DATA)
1162 return -EINVAL;
1163
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +02001164 chip = tpm_chip_find_get(chip);
1165 if (!chip)
Kent Yoder41ab9992012-06-07 13:47:14 -05001166 return -ENODEV;
1167
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -08001168 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
1169 err = tpm2_get_random(chip, out, max);
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001170 tpm_put_ops(chip);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -08001171 return err;
1172 }
1173
Kent Yoder41ab9992012-06-07 13:47:14 -05001174 do {
1175 tpm_cmd.header.in = tpm_getrandom_header;
1176 tpm_cmd.params.getrandom_in.num_bytes = cpu_to_be32(num_bytes);
1177
Jarkko Sakkinen745b3612017-01-06 14:03:45 +02001178 err = tpm_transmit_cmd(chip, NULL, &tpm_cmd,
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +03001179 TPM_GETRANDOM_RESULT_SIZE + num_bytes,
Stefan Bergerc659af72017-01-19 07:19:12 -05001180 offsetof(struct tpm_getrandom_out,
1181 rng_data),
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +03001182 0, "attempting get random");
Kent Yoder41ab9992012-06-07 13:47:14 -05001183 if (err)
1184 break;
1185
1186 recd = be32_to_cpu(tpm_cmd.params.getrandom_out.rng_data_len);
Stefan Bergerc659af72017-01-19 07:19:12 -05001187
1188 rlength = be32_to_cpu(tpm_cmd.header.out.length);
1189 if (rlength < offsetof(struct tpm_getrandom_out, rng_data) +
1190 recd) {
1191 total = -EFAULT;
1192 break;
1193 }
Kent Yoder41ab9992012-06-07 13:47:14 -05001194 memcpy(dest, tpm_cmd.params.getrandom_out.rng_data, recd);
1195
1196 dest += recd;
1197 total += recd;
1198 num_bytes -= recd;
1199 } while (retries-- && total < max);
1200
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001201 tpm_put_ops(chip);
Kent Yoder41ab9992012-06-07 13:47:14 -05001202 return total ? total : -EIO;
1203}
1204EXPORT_SYMBOL_GPL(tpm_get_random);
1205
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001206/**
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +02001207 * tpm_seal_trusted() - seal a trusted key payload
1208 * @chip: a &struct tpm_chip instance, %NULL for the default chip
1209 * @options: authentication values and other options
1210 * @payload: the key data in clear and encrypted form
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001211 *
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +02001212 * Note: only TPM 2.0 chip are supported. TPM 1.x implementation is located in
1213 * the keyring subsystem.
1214 *
1215 * Return: same as with tpm_transmit_cmd()
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001216 */
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +02001217int tpm_seal_trusted(struct tpm_chip *chip, struct trusted_key_payload *payload,
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001218 struct trusted_key_options *options)
1219{
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001220 int rc;
1221
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +02001222 chip = tpm_chip_find_get(chip);
1223 if (!chip || !(chip->flags & TPM_CHIP_FLAG_TPM2))
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001224 return -ENODEV;
1225
1226 rc = tpm2_seal_trusted(chip, payload, options);
1227
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001228 tpm_put_ops(chip);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001229 return rc;
1230}
1231EXPORT_SYMBOL_GPL(tpm_seal_trusted);
1232
1233/**
1234 * tpm_unseal_trusted() - unseal a trusted key
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +02001235 * @chip: a &struct tpm_chip instance, %NULL for the default chip
1236 * @options: authentication values and other options
1237 * @payload: the key data in clear and encrypted form
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001238 *
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +02001239 * Note: only TPM 2.0 chip are supported. TPM 1.x implementation is located in
1240 * the keyring subsystem.
1241 *
1242 * Return: same as with tpm_transmit_cmd()
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001243 */
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +02001244int tpm_unseal_trusted(struct tpm_chip *chip,
1245 struct trusted_key_payload *payload,
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001246 struct trusted_key_options *options)
1247{
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001248 int rc;
1249
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +02001250 chip = tpm_chip_find_get(chip);
1251 if (!chip || !(chip->flags & TPM_CHIP_FLAG_TPM2))
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001252 return -ENODEV;
1253
1254 rc = tpm2_unseal_trusted(chip, payload, options);
1255
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001256 tpm_put_ops(chip);
1257
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001258 return rc;
1259}
1260EXPORT_SYMBOL_GPL(tpm_unseal_trusted);
1261
Jarkko Sakkinen313d21e2014-12-12 11:46:37 -08001262static int __init tpm_init(void)
1263{
1264 int rc;
1265
1266 tpm_class = class_create(THIS_MODULE, "tpm");
1267 if (IS_ERR(tpm_class)) {
1268 pr_err("couldn't create tpm class\n");
1269 return PTR_ERR(tpm_class);
1270 }
1271
James Bottomleyfdc915f2017-01-03 09:07:32 -08001272 tpmrm_class = class_create(THIS_MODULE, "tpmrm");
1273 if (IS_ERR(tpmrm_class)) {
1274 pr_err("couldn't create tpmrm class\n");
1275 class_destroy(tpm_class);
1276 return PTR_ERR(tpmrm_class);
1277 }
1278
1279 rc = alloc_chrdev_region(&tpm_devt, 0, 2*TPM_NUM_DEVICES, "tpm");
Jarkko Sakkinen313d21e2014-12-12 11:46:37 -08001280 if (rc < 0) {
1281 pr_err("tpm: failed to allocate char dev region\n");
James Bottomleyfdc915f2017-01-03 09:07:32 -08001282 class_destroy(tpmrm_class);
Jarkko Sakkinen313d21e2014-12-12 11:46:37 -08001283 class_destroy(tpm_class);
1284 return rc;
1285 }
1286
1287 return 0;
1288}
1289
1290static void __exit tpm_exit(void)
1291{
Stefan Berger15516782016-02-29 08:53:02 -05001292 idr_destroy(&dev_nums_idr);
Jarkko Sakkinen313d21e2014-12-12 11:46:37 -08001293 class_destroy(tpm_class);
James Bottomleyfdc915f2017-01-03 09:07:32 -08001294 class_destroy(tpmrm_class);
1295 unregister_chrdev_region(tpm_devt, 2*TPM_NUM_DEVICES);
Jarkko Sakkinen313d21e2014-12-12 11:46:37 -08001296}
1297
1298subsys_initcall(tpm_init);
1299module_exit(tpm_exit);
1300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
1302MODULE_DESCRIPTION("TPM Driver");
1303MODULE_VERSION("2.0");
1304MODULE_LICENSE("GPL");