blob: 20b1fe3b36b16670407971d2222333737e070196 [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,
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
Jarkko Sakkinen58472f52016-11-10 20:42:07 -0800331static bool tpm_validate_command(struct tpm_chip *chip, const u8 *cmd,
332 size_t len)
333{
334 const struct tpm_input_header *header = (const void *)cmd;
335 int i;
336 u32 cc;
337 u32 attrs;
338 unsigned int nr_handles;
339
340 if (len < TPM_HEADER_SIZE)
341 return false;
342
343 if (chip->flags & TPM_CHIP_FLAG_TPM2 && chip->nr_commands) {
344 cc = be32_to_cpu(header->ordinal);
345
346 i = tpm2_find_cc(chip, cc);
347 if (i < 0) {
348 dev_dbg(&chip->dev, "0x%04X is an invalid command\n",
349 cc);
350 return false;
351 }
352
353 attrs = chip->cc_attrs_tbl[i];
354 nr_handles =
355 4 * ((attrs >> TPM2_CC_ATTR_CHANDLES) & GENMASK(2, 0));
356 if (len < TPM_HEADER_SIZE + 4 * nr_handles)
357 goto err_len;
358 }
359
360 return true;
361err_len:
362 dev_dbg(&chip->dev,
363 "%s: insufficient command length %zu", __func__, len);
364 return false;
365}
366
Winkler, Tomasf865c192016-11-23 12:04:11 +0200367/**
368 * tmp_transmit - Internal kernel interface to transmit TPM commands.
369 *
370 * @chip: TPM chip to use
371 * @buf: TPM command buffer
372 * @bufsiz: length of the TPM command buffer
373 * @flags: tpm transmit flags - bitmap
374 *
375 * Return:
376 * 0 when the operation is successful.
377 * A negative number for system errors (errno).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 */
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300379ssize_t tpm_transmit(struct tpm_chip *chip, const u8 *buf, size_t bufsiz,
380 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Jarkko Sakkinena1479182017-02-14 21:57:42 +0200382 const struct tpm_output_header *header = (void *)buf;
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700383 ssize_t rc;
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700384 u32 count, ordinal;
Nishanth Aravamudan700d8bd2005-06-23 22:01:47 -0700385 unsigned long stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Jarkko Sakkinen58472f52016-11-10 20:42:07 -0800387 if (!tpm_validate_command(chip, buf, bufsiz))
Jarkko Sakkinenebfd7532016-09-12 13:43:30 +0300388 return -EINVAL;
389
Peter Huewe6b07d302011-09-15 14:37:43 -0300390 if (bufsiz > TPM_BUFSIZE)
391 bufsiz = TPM_BUFSIZE;
392
Kylene Hall81179bb2005-06-23 22:01:59 -0700393 count = be32_to_cpu(*((__be32 *) (buf + 2)));
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700394 ordinal = be32_to_cpu(*((__be32 *) (buf + 6)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (count == 0)
396 return -ENODATA;
397 if (count > bufsiz) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500398 dev_err(&chip->dev,
Peter Huewe0a418262013-10-22 00:29:14 +0200399 "invalid count value %x %zx\n", count, bufsiz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return -E2BIG;
401 }
402
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300403 if (!(flags & TPM_TRANSMIT_UNLOCKED))
404 mutex_lock(&chip->tpm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Stefan Berger6804f6b2016-11-07 07:14:33 -0500406 if (chip->dev.parent)
407 pm_runtime_get_sync(chip->dev.parent);
Winkler, Tomase74f2f72016-10-08 14:59:39 +0300408
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700409 rc = chip->ops->send(chip, (u8 *) buf, count);
Peter Huewe0a418262013-10-22 00:29:14 +0200410 if (rc < 0) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500411 dev_err(&chip->dev,
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700412 "tpm_transmit: tpm_send: error %zd\n", rc);
413 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
415
Christophe Ricard570a3602016-03-31 22:56:56 +0200416 if (chip->flags & TPM_CHIP_FLAG_IRQ)
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700417 goto out_recv;
418
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800419 if (chip->flags & TPM_CHIP_FLAG_TPM2)
420 stop = jiffies + tpm2_calc_ordinal_duration(chip, ordinal);
421 else
422 stop = jiffies + tpm_calc_ordinal_duration(chip, ordinal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 do {
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700424 u8 status = chip->ops->status(chip);
425 if ((status & chip->ops->req_complete_mask) ==
426 chip->ops->req_complete_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 goto out_recv;
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700428
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700429 if (chip->ops->req_canceled(chip, status)) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500430 dev_err(&chip->dev, "Operation Canceled\n");
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700431 rc = -ECANCELED;
432 goto out;
433 }
434
435 msleep(TPM_TIMEOUT); /* CHECK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 rmb();
Nishanth Aravamudan700d8bd2005-06-23 22:01:47 -0700437 } while (time_before(jiffies, stop));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700439 chip->ops->cancel(chip);
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500440 dev_err(&chip->dev, "Operation Timed out\n");
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700441 rc = -ETIME;
442 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444out_recv:
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700445 rc = chip->ops->recv(chip, (u8 *) buf, bufsiz);
Jarkko Sakkinena1479182017-02-14 21:57:42 +0200446 if (rc < 0) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500447 dev_err(&chip->dev,
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700448 "tpm_transmit: tpm_recv: error %zd\n", rc);
Jarkko Sakkinena1479182017-02-14 21:57:42 +0200449 goto out;
450 } else if (rc < TPM_HEADER_SIZE) {
451 rc = -EFAULT;
452 goto out;
453 }
454
455 if (rc != be32_to_cpu(header->length))
456 goto out;
457
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700458out:
Stefan Berger6804f6b2016-11-07 07:14:33 -0500459 if (chip->dev.parent)
460 pm_runtime_put_sync(chip->dev.parent);
Winkler, Tomase74f2f72016-10-08 14:59:39 +0300461
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300462 if (!(flags & TPM_TRANSMIT_UNLOCKED))
463 mutex_unlock(&chip->tpm_mutex);
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700464 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
Winkler, Tomasf865c192016-11-23 12:04:11 +0200467/**
468 * tmp_transmit_cmd - send a tpm command to the device
469 * The function extracts tpm out header return code
470 *
471 * @chip: TPM chip to use
Stefan Bergerc659af72017-01-19 07:19:12 -0500472 * @buf: TPM command buffer
473 * @bufsiz: length of the buffer
474 * @min_rsp_body_length: minimum expected length of response body
Winkler, Tomasf865c192016-11-23 12:04:11 +0200475 * @flags: tpm transmit flags - bitmap
476 * @desc: command description used in the error message
477 *
478 * Return:
479 * 0 when the operation is successful.
480 * A negative number for system errors (errno).
481 * A positive number for a TPM error.
482 */
Stefan Bergerc659af72017-01-19 07:19:12 -0500483ssize_t tpm_transmit_cmd(struct tpm_chip *chip, const void *buf,
484 size_t bufsiz, size_t min_rsp_body_length,
485 unsigned int flags, const char *desc)
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700486{
Jarkko Sakkinena1479182017-02-14 21:57:42 +0200487 const struct tpm_output_header *header = buf;
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700488 int err;
Stefan Bergerc659af72017-01-19 07:19:12 -0500489 ssize_t len;
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700490
Stefan Bergerc659af72017-01-19 07:19:12 -0500491 len = tpm_transmit(chip, (const u8 *)buf, bufsiz, flags);
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700492 if (len < 0)
493 return len;
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800494
495 err = be32_to_cpu(header->return_code);
Jason Gunthorpec584af12012-11-21 13:54:33 -0700496 if (err != 0 && desc)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500497 dev_err(&chip->dev, "A TPM error (%d) occurred %s\n", err,
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800498 desc);
Stefan Bergerc659af72017-01-19 07:19:12 -0500499 if (err)
500 return err;
Rajiv Andradeb9e32382011-11-01 17:00:52 -0200501
Stefan Bergerc659af72017-01-19 07:19:12 -0500502 if (len < min_rsp_body_length + TPM_HEADER_SIZE)
503 return -EFAULT;
504
505 return 0;
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700506}
507
Winkler, Tomasf865c192016-11-23 12:04:11 +0200508#define TPM_DIGEST_SIZE 20
509#define TPM_RET_CODE_IDX 6
Rajiv Andrade08837432009-02-02 15:23:43 -0200510#define TPM_INTERNAL_RESULT_SIZE 200
Rajiv Andrade08837432009-02-02 15:23:43 -0200511#define TPM_ORD_GET_CAP cpu_to_be32(101)
Kent Yoder41ab9992012-06-07 13:47:14 -0500512#define TPM_ORD_GET_RANDOM cpu_to_be32(70)
Rajiv Andrade08837432009-02-02 15:23:43 -0200513
514static const struct tpm_input_header tpm_getcap_header = {
515 .tag = TPM_TAG_RQU_COMMAND,
516 .length = cpu_to_be32(22),
517 .ordinal = TPM_ORD_GET_CAP
518};
519
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300520ssize_t tpm_getcap(struct tpm_chip *chip, u32 subcap_id, cap_t *cap,
Stefan Bergerc659af72017-01-19 07:19:12 -0500521 const char *desc, size_t min_cap_length)
Rajiv Andrade08837432009-02-02 15:23:43 -0200522{
523 struct tpm_cmd_t tpm_cmd;
524 int rc;
Rajiv Andrade08837432009-02-02 15:23:43 -0200525
526 tpm_cmd.header.in = tpm_getcap_header;
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300527 if (subcap_id == TPM_CAP_VERSION_1_1 ||
528 subcap_id == TPM_CAP_VERSION_1_2) {
529 tpm_cmd.params.getcap_in.cap = cpu_to_be32(subcap_id);
Rajiv Andrade08837432009-02-02 15:23:43 -0200530 /*subcap field not necessary */
531 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(0);
532 tpm_cmd.header.in.length -= cpu_to_be32(sizeof(__be32));
533 } else {
534 if (subcap_id == TPM_CAP_FLAG_PERM ||
535 subcap_id == TPM_CAP_FLAG_VOL)
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300536 tpm_cmd.params.getcap_in.cap =
537 cpu_to_be32(TPM_CAP_FLAG);
Rajiv Andrade08837432009-02-02 15:23:43 -0200538 else
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300539 tpm_cmd.params.getcap_in.cap =
540 cpu_to_be32(TPM_CAP_PROP);
Rajiv Andrade08837432009-02-02 15:23:43 -0200541 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4);
Jarkko Sakkinen84fda152016-09-19 23:22:09 +0300542 tpm_cmd.params.getcap_in.subcap = cpu_to_be32(subcap_id);
Rajiv Andrade08837432009-02-02 15:23:43 -0200543 }
Stefan Bergerc659af72017-01-19 07:19:12 -0500544 rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE,
545 min_cap_length, 0, desc);
Rajiv Andrade08837432009-02-02 15:23:43 -0200546 if (!rc)
547 *cap = tpm_cmd.params.getcap_out.cap;
548 return rc;
549}
Jarkko Sakkineneb5854e2016-06-12 16:42:09 +0300550EXPORT_SYMBOL_GPL(tpm_getcap);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700551
Jason Gunthorpec584af12012-11-21 13:54:33 -0700552#define TPM_ORD_STARTUP cpu_to_be32(153)
553#define TPM_ST_CLEAR cpu_to_be16(1)
554#define TPM_ST_STATE cpu_to_be16(2)
555#define TPM_ST_DEACTIVATED cpu_to_be16(3)
556static const struct tpm_input_header tpm_startup_header = {
557 .tag = TPM_TAG_RQU_COMMAND,
558 .length = cpu_to_be32(12),
559 .ordinal = TPM_ORD_STARTUP
560};
561
562static int tpm_startup(struct tpm_chip *chip, __be16 startup_type)
563{
564 struct tpm_cmd_t start_cmd;
565 start_cmd.header.in = tpm_startup_header;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800566
Jason Gunthorpec584af12012-11-21 13:54:33 -0700567 start_cmd.params.startup_in.startup_type = startup_type;
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +0300568 return tpm_transmit_cmd(chip, &start_cmd, TPM_INTERNAL_RESULT_SIZE, 0,
Stefan Bergerc659af72017-01-19 07:19:12 -0500569 0, "attempting to start the TPM");
Jason Gunthorpec584af12012-11-21 13:54:33 -0700570}
571
Stefan Berger2b30a902011-11-11 12:57:02 -0500572int tpm_get_timeouts(struct tpm_chip *chip)
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700573{
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300574 cap_t cap;
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100575 unsigned long timeout_old[4], timeout_chip[4], timeout_eff[4];
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700576 ssize_t rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700577
Jason Gunthorped1d253cf2016-10-26 16:28:44 -0600578 if (chip->flags & TPM_CHIP_FLAG_HAVE_TIMEOUTS)
579 return 0;
580
Jason Gunthorpe25112042015-11-25 14:05:32 -0700581 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
582 /* Fixed timeouts for TPM2 */
Christophe Ricardaf782f32016-03-31 22:56:59 +0200583 chip->timeout_a = msecs_to_jiffies(TPM2_TIMEOUT_A);
584 chip->timeout_b = msecs_to_jiffies(TPM2_TIMEOUT_B);
585 chip->timeout_c = msecs_to_jiffies(TPM2_TIMEOUT_C);
586 chip->timeout_d = msecs_to_jiffies(TPM2_TIMEOUT_D);
587 chip->duration[TPM_SHORT] =
Jason Gunthorpe25112042015-11-25 14:05:32 -0700588 msecs_to_jiffies(TPM2_DURATION_SHORT);
Christophe Ricardaf782f32016-03-31 22:56:59 +0200589 chip->duration[TPM_MEDIUM] =
Jason Gunthorpe25112042015-11-25 14:05:32 -0700590 msecs_to_jiffies(TPM2_DURATION_MEDIUM);
Christophe Ricardaf782f32016-03-31 22:56:59 +0200591 chip->duration[TPM_LONG] =
Jason Gunthorpe25112042015-11-25 14:05:32 -0700592 msecs_to_jiffies(TPM2_DURATION_LONG);
Jason Gunthorped1d253cf2016-10-26 16:28:44 -0600593
594 chip->flags |= TPM_CHIP_FLAG_HAVE_TIMEOUTS;
Jason Gunthorpe25112042015-11-25 14:05:32 -0700595 return 0;
596 }
597
Stefan Bergerc659af72017-01-19 07:19:12 -0500598 rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_TIMEOUT, &cap, NULL,
599 sizeof(cap.timeout));
Jason Gunthorpec584af12012-11-21 13:54:33 -0700600 if (rc == TPM_ERR_INVALID_POSTINIT) {
601 /* The TPM is not started, we are the first to talk to it.
602 Execute a startup command. */
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300603 dev_info(&chip->dev, "Issuing TPM_STARTUP\n");
Jason Gunthorpec584af12012-11-21 13:54:33 -0700604 if (tpm_startup(chip, TPM_ST_CLEAR))
605 return rc;
606
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300607 rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_TIMEOUT, &cap,
Stefan Bergerc659af72017-01-19 07:19:12 -0500608 "attempting to determine the timeouts",
609 sizeof(cap.timeout));
Jason Gunthorpec584af12012-11-21 13:54:33 -0700610 }
Stefan Bergerc659af72017-01-19 07:19:12 -0500611
Jason Gunthorpe62bfdac2016-11-21 11:31:09 -0700612 if (rc) {
613 dev_err(&chip->dev,
614 "A TPM error (%zd) occurred attempting to determine the timeouts\n",
615 rc);
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300616 return rc;
Jason Gunthorpe62bfdac2016-11-21 11:31:09 -0700617 }
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700618
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100619 timeout_old[0] = jiffies_to_usecs(chip->timeout_a);
620 timeout_old[1] = jiffies_to_usecs(chip->timeout_b);
621 timeout_old[2] = jiffies_to_usecs(chip->timeout_c);
622 timeout_old[3] = jiffies_to_usecs(chip->timeout_d);
623 timeout_chip[0] = be32_to_cpu(cap.timeout.a);
624 timeout_chip[1] = be32_to_cpu(cap.timeout.b);
625 timeout_chip[2] = be32_to_cpu(cap.timeout.c);
626 timeout_chip[3] = be32_to_cpu(cap.timeout.d);
627 memcpy(timeout_eff, timeout_chip, sizeof(timeout_eff));
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600628
629 /*
630 * Provide ability for vendor overrides of timeout values in case
631 * of misreporting.
632 */
633 if (chip->ops->update_timeouts != NULL)
Christophe Ricardaf782f32016-03-31 22:56:59 +0200634 chip->timeout_adjusted =
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100635 chip->ops->update_timeouts(chip, timeout_eff);
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600636
Christophe Ricardaf782f32016-03-31 22:56:59 +0200637 if (!chip->timeout_adjusted) {
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100638 /* Restore default if chip reported 0 */
639 int i;
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600640
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100641 for (i = 0; i < ARRAY_SIZE(timeout_eff); i++) {
642 if (timeout_eff[i])
643 continue;
644
645 timeout_eff[i] = timeout_old[i];
646 chip->timeout_adjusted = true;
647 }
648
649 if (timeout_eff[0] != 0 && timeout_eff[0] < 1000) {
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600650 /* timeouts in msec rather usec */
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100651 for (i = 0; i != ARRAY_SIZE(timeout_eff); i++)
652 timeout_eff[i] *= 1000;
Christophe Ricardaf782f32016-03-31 22:56:59 +0200653 chip->timeout_adjusted = true;
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600654 }
Stefan Bergere3e1a1e2011-03-30 12:13:27 -0400655 }
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600656
657 /* Report adjusted timeouts */
Christophe Ricardaf782f32016-03-31 22:56:59 +0200658 if (chip->timeout_adjusted) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500659 dev_info(&chip->dev,
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600660 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 +0100661 timeout_chip[0], timeout_eff[0],
662 timeout_chip[1], timeout_eff[1],
663 timeout_chip[2], timeout_eff[2],
664 timeout_chip[3], timeout_eff[3]);
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600665 }
666
Maciej S. Szmigiero1d70fe92017-01-13 22:37:00 +0100667 chip->timeout_a = usecs_to_jiffies(timeout_eff[0]);
668 chip->timeout_b = usecs_to_jiffies(timeout_eff[1]);
669 chip->timeout_c = usecs_to_jiffies(timeout_eff[2]);
670 chip->timeout_d = usecs_to_jiffies(timeout_eff[3]);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700671
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300672 rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_DURATION, &cap,
Stefan Bergerc659af72017-01-19 07:19:12 -0500673 "attempting to determine the durations",
674 sizeof(cap.duration));
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700675 if (rc)
Stefan Berger2b30a902011-11-11 12:57:02 -0500676 return rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700677
Christophe Ricardaf782f32016-03-31 22:56:59 +0200678 chip->duration[TPM_SHORT] =
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300679 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_short));
Christophe Ricardaf782f32016-03-31 22:56:59 +0200680 chip->duration[TPM_MEDIUM] =
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300681 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_medium));
Christophe Ricardaf782f32016-03-31 22:56:59 +0200682 chip->duration[TPM_LONG] =
Ed Swierkaaa6f7f2016-09-19 23:22:08 +0300683 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_long));
Stefan Bergere934acc2011-03-30 12:13:24 -0400684
685 /* The Broadcom BCM0102 chipset in a Dell Latitude D820 gets the above
686 * value wrong and apparently reports msecs rather than usecs. So we
687 * fix up the resulting too-small TPM_SHORT value to make things work.
688 * We also scale the TPM_MEDIUM and -_LONG values by 1000.
689 */
Christophe Ricardaf782f32016-03-31 22:56:59 +0200690 if (chip->duration[TPM_SHORT] < (HZ / 100)) {
691 chip->duration[TPM_SHORT] = HZ;
692 chip->duration[TPM_MEDIUM] *= 1000;
693 chip->duration[TPM_LONG] *= 1000;
694 chip->duration_adjusted = true;
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500695 dev_info(&chip->dev, "Adjusting TPM timeout parameters.");
Stefan Bergere934acc2011-03-30 12:13:24 -0400696 }
Jason Gunthorped1d253cf2016-10-26 16:28:44 -0600697
698 chip->flags |= TPM_CHIP_FLAG_HAVE_TIMEOUTS;
Stefan Berger2b30a902011-11-11 12:57:02 -0500699 return 0;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700700}
701EXPORT_SYMBOL_GPL(tpm_get_timeouts);
702
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500703#define TPM_ORD_CONTINUE_SELFTEST 83
704#define CONTINUE_SELFTEST_RESULT_SIZE 10
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700705
Julia Lawall00147772016-09-11 15:05:52 +0200706static const struct tpm_input_header continue_selftest_header = {
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500707 .tag = TPM_TAG_RQU_COMMAND,
708 .length = cpu_to_be32(10),
709 .ordinal = cpu_to_be32(TPM_ORD_CONTINUE_SELFTEST),
710};
711
712/**
713 * tpm_continue_selftest -- run TPM's selftest
714 * @chip: TPM chip to use
715 *
716 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
717 * a TPM error code.
718 */
Stefan Berger68d6e672011-11-11 12:57:04 -0500719static int tpm_continue_selftest(struct tpm_chip *chip)
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500720{
721 int rc;
722 struct tpm_cmd_t cmd;
723
724 cmd.header.in = continue_selftest_header;
Stefan Bergerc659af72017-01-19 07:19:12 -0500725 rc = tpm_transmit_cmd(chip, &cmd, CONTINUE_SELFTEST_RESULT_SIZE, 0, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800726 "continue selftest");
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500727 return rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700728}
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700729
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200730#define TPM_ORDINAL_PCRREAD cpu_to_be32(21)
731#define READ_PCR_RESULT_SIZE 30
Stefan Bergerc659af72017-01-19 07:19:12 -0500732#define READ_PCR_RESULT_BODY_SIZE 20
Julia Lawall00147772016-09-11 15:05:52 +0200733static const struct tpm_input_header pcrread_header = {
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200734 .tag = TPM_TAG_RQU_COMMAND,
735 .length = cpu_to_be32(14),
736 .ordinal = TPM_ORDINAL_PCRREAD
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737};
738
Jason Gunthorpe000a07b2013-11-26 13:30:41 -0700739int tpm_pcr_read_dev(struct tpm_chip *chip, int pcr_idx, u8 *res_buf)
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200740{
741 int rc;
742 struct tpm_cmd_t cmd;
743
744 cmd.header.in = pcrread_header;
745 cmd.params.pcrread_in.pcr_idx = cpu_to_be32(pcr_idx);
Stefan Bergerc659af72017-01-19 07:19:12 -0500746 rc = tpm_transmit_cmd(chip, &cmd, READ_PCR_RESULT_SIZE,
747 READ_PCR_RESULT_BODY_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800748 "attempting to read a pcr value");
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200749
750 if (rc == 0)
751 memcpy(res_buf, cmd.params.pcrread_out.pcr_result,
752 TPM_DIGEST_SIZE);
753 return rc;
754}
755
756/**
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300757 * tpm_is_tpm2 - is the chip a TPM2 chip?
758 * @chip_num: tpm idx # or ANY
759 *
760 * Returns < 0 on error, and 1 or 0 on success depending whether the chip
761 * is a TPM2 chip.
762 */
763int tpm_is_tpm2(u32 chip_num)
764{
765 struct tpm_chip *chip;
766 int rc;
767
768 chip = tpm_chip_find_get(chip_num);
769 if (chip == NULL)
770 return -ENODEV;
771
772 rc = (chip->flags & TPM_CHIP_FLAG_TPM2) != 0;
773
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700774 tpm_put_ops(chip);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300775
776 return rc;
777}
778EXPORT_SYMBOL_GPL(tpm_is_tpm2);
779
780/**
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200781 * tpm_pcr_read - read a pcr value
Peter Huewe0a418262013-10-22 00:29:14 +0200782 * @chip_num: tpm idx # or ANY
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200783 * @pcr_idx: pcr idx to retrieve
Peter Huewe0a418262013-10-22 00:29:14 +0200784 * @res_buf: TPM_PCR value
785 * size of res_buf is 20 bytes (or NULL if you don't care)
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200786 *
787 * The TPM driver should be built-in, but for whatever reason it
788 * isn't, protect against the chip disappearing, by incrementing
789 * the module usage count.
790 */
791int tpm_pcr_read(u32 chip_num, int pcr_idx, u8 *res_buf)
792{
793 struct tpm_chip *chip;
794 int rc;
795
796 chip = tpm_chip_find_get(chip_num);
797 if (chip == NULL)
798 return -ENODEV;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800799 if (chip->flags & TPM_CHIP_FLAG_TPM2)
800 rc = tpm2_pcr_read(chip, pcr_idx, res_buf);
801 else
802 rc = tpm_pcr_read_dev(chip, pcr_idx, res_buf);
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700803 tpm_put_ops(chip);
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200804 return rc;
805}
806EXPORT_SYMBOL_GPL(tpm_pcr_read);
807
Winkler, Tomasca6d4582016-11-01 03:05:13 +0200808#define TPM_ORD_PCR_EXTEND cpu_to_be32(20)
809#define EXTEND_PCR_RESULT_SIZE 34
Stefan Berger51b0be62017-02-15 11:56:23 -0500810#define EXTEND_PCR_RESULT_BODY_SIZE 20
Winkler, Tomasca6d4582016-11-01 03:05:13 +0200811static const struct tpm_input_header pcrextend_header = {
812 .tag = TPM_TAG_RQU_COMMAND,
813 .length = cpu_to_be32(34),
814 .ordinal = TPM_ORD_PCR_EXTEND
815};
816
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200817/**
818 * tpm_pcr_extend - extend pcr value with hash
Peter Huewe0a418262013-10-22 00:29:14 +0200819 * @chip_num: tpm idx # or AN&
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200820 * @pcr_idx: pcr idx to extend
Peter Huewe0a418262013-10-22 00:29:14 +0200821 * @hash: hash value used to extend pcr value
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200822 *
823 * The TPM driver should be built-in, but for whatever reason it
824 * isn't, protect against the chip disappearing, by incrementing
825 * the module usage count.
826 */
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200827int tpm_pcr_extend(u32 chip_num, int pcr_idx, const u8 *hash)
828{
829 struct tpm_cmd_t cmd;
830 int rc;
831 struct tpm_chip *chip;
Nayna Jainc1f92b42017-01-30 04:59:41 -0500832 struct tpm2_digest digest_list[ARRAY_SIZE(chip->active_banks)];
833 u32 count = 0;
834 int i;
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200835
836 chip = tpm_chip_find_get(chip_num);
837 if (chip == NULL)
838 return -ENODEV;
839
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800840 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
Nayna Jainc1f92b42017-01-30 04:59:41 -0500841 memset(digest_list, 0, sizeof(digest_list));
842
Dan Carpenter70ea1632017-02-03 13:30:40 +0300843 for (i = 0; i < ARRAY_SIZE(chip->active_banks) &&
844 chip->active_banks[i] != TPM2_ALG_ERROR; i++) {
Nayna Jainc1f92b42017-01-30 04:59:41 -0500845 digest_list[i].alg_id = chip->active_banks[i];
846 memcpy(digest_list[i].digest, hash, TPM_DIGEST_SIZE);
847 count++;
848 }
849
850 rc = tpm2_pcr_extend(chip, pcr_idx, count, digest_list);
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700851 tpm_put_ops(chip);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800852 return rc;
853 }
854
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200855 cmd.header.in = pcrextend_header;
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200856 cmd.params.pcrextend_in.pcr_idx = cpu_to_be32(pcr_idx);
857 memcpy(cmd.params.pcrextend_in.hash, hash, TPM_DIGEST_SIZE);
Stefan Bergerc659af72017-01-19 07:19:12 -0500858 rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE,
859 EXTEND_PCR_RESULT_BODY_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800860 "attempting extend a PCR value");
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200861
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700862 tpm_put_ops(chip);
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200863 return rc;
864}
865EXPORT_SYMBOL_GPL(tpm_pcr_extend);
866
Stefan Berger68d6e672011-11-11 12:57:04 -0500867/**
868 * tpm_do_selftest - have the TPM continue its selftest and wait until it
869 * can receive further commands
870 * @chip: TPM chip to use
871 *
872 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
873 * a TPM error code.
874 */
875int tpm_do_selftest(struct tpm_chip *chip)
876{
877 int rc;
Stefan Berger68d6e672011-11-11 12:57:04 -0500878 unsigned int loops;
Jason Gunthorpe46438262012-11-21 13:15:54 -0800879 unsigned int delay_msec = 100;
Stefan Berger68d6e672011-11-11 12:57:04 -0500880 unsigned long duration;
Jarkko Sakkinen0c541332016-06-17 13:12:20 +0200881 u8 dummy[TPM_DIGEST_SIZE];
Stefan Berger68d6e672011-11-11 12:57:04 -0500882
Peter Huewe0a418262013-10-22 00:29:14 +0200883 duration = tpm_calc_ordinal_duration(chip, TPM_ORD_CONTINUE_SELFTEST);
Stefan Berger68d6e672011-11-11 12:57:04 -0500884
885 loops = jiffies_to_msecs(duration) / delay_msec;
886
887 rc = tpm_continue_selftest(chip);
888 /* This may fail if there was no TPM driver during a suspend/resume
889 * cycle; some may return 10 (BAD_ORDINAL), others 28 (FAILEDSELFTEST)
890 */
891 if (rc)
892 return rc;
893
894 do {
Rajiv Andrade24ebe662012-04-24 17:38:17 -0300895 /* Attempt to read a PCR value */
Jarkko Sakkinen0c541332016-06-17 13:12:20 +0200896 rc = tpm_pcr_read_dev(chip, 0, dummy);
897
Jason Gunthorpe46438262012-11-21 13:15:54 -0800898 /* Some buggy TPMs will not respond to tpm_tis_ready() for
899 * around 300ms while the self test is ongoing, keep trying
900 * until the self test duration expires. */
901 if (rc == -ETIME) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500902 dev_info(
903 &chip->dev, HW_ERR
904 "TPM command timed out during continue self test");
Jason Gunthorpe46438262012-11-21 13:15:54 -0800905 msleep(delay_msec);
906 continue;
907 }
Rajiv Andrade24ebe662012-04-24 17:38:17 -0300908
Stefan Bergerbe405412012-01-17 22:07:30 -0500909 if (rc == TPM_ERR_DISABLED || rc == TPM_ERR_DEACTIVATED) {
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -0500910 dev_info(&chip->dev,
Stefan Bergerbe405412012-01-17 22:07:30 -0500911 "TPM is disabled/deactivated (0x%X)\n", rc);
912 /* TPM is disabled and/or deactivated; driver can
913 * proceed and TPM does handle commands for
914 * suspend/resume correctly
915 */
916 return 0;
917 }
Stefan Berger68d6e672011-11-11 12:57:04 -0500918 if (rc != TPM_WARN_DOING_SELFTEST)
919 return rc;
920 msleep(delay_msec);
921 } while (--loops > 0);
922
923 return rc;
924}
925EXPORT_SYMBOL_GPL(tpm_do_selftest);
926
Jason Gunthorpecae8b442016-07-12 11:41:49 -0600927/**
928 * tpm1_auto_startup - Perform the standard automatic TPM initialization
929 * sequence
930 * @chip: TPM chip to use
931 *
932 * Returns 0 on success, < 0 in case of fatal error.
933 */
934int tpm1_auto_startup(struct tpm_chip *chip)
935{
936 int rc;
937
938 rc = tpm_get_timeouts(chip);
939 if (rc)
940 goto out;
941 rc = tpm_do_selftest(chip);
942 if (rc) {
943 dev_err(&chip->dev, "TPM self test failed\n");
944 goto out;
945 }
946
947 return rc;
948out:
949 if (rc > 0)
950 rc = -ENODEV;
951 return rc;
952}
953
Mimi Zoharc749ba92010-11-23 18:54:16 -0500954int tpm_send(u32 chip_num, void *cmd, size_t buflen)
955{
956 struct tpm_chip *chip;
957 int rc;
958
959 chip = tpm_chip_find_get(chip_num);
960 if (chip == NULL)
961 return -ENODEV;
962
Stefan Bergerc659af72017-01-19 07:19:12 -0500963 rc = tpm_transmit_cmd(chip, cmd, buflen, 0, 0, "attempting tpm_cmd");
Mimi Zoharc749ba92010-11-23 18:54:16 -0500964
Jason Gunthorpe4e261952016-02-12 20:29:53 -0700965 tpm_put_ops(chip);
Mimi Zoharc749ba92010-11-23 18:54:16 -0500966 return rc;
967}
968EXPORT_SYMBOL_GPL(tpm_send);
969
Peter Huewe0a418262013-10-22 00:29:14 +0200970static bool wait_for_tpm_stat_cond(struct tpm_chip *chip, u8 mask,
971 bool check_cancel, bool *canceled)
Stefan Berger78f09cc2013-01-22 13:57:53 -0600972{
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700973 u8 status = chip->ops->status(chip);
Stefan Berger78f09cc2013-01-22 13:57:53 -0600974
975 *canceled = false;
976 if ((status & mask) == mask)
977 return true;
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700978 if (check_cancel && chip->ops->req_canceled(chip, status)) {
Stefan Berger78f09cc2013-01-22 13:57:53 -0600979 *canceled = true;
980 return true;
981 }
982 return false;
983}
984
Rajiv Andradefd048862011-09-16 14:39:40 -0300985int wait_for_tpm_stat(struct tpm_chip *chip, u8 mask, unsigned long timeout,
Stefan Berger78f09cc2013-01-22 13:57:53 -0600986 wait_queue_head_t *queue, bool check_cancel)
Rajiv Andradefd048862011-09-16 14:39:40 -0300987{
988 unsigned long stop;
989 long rc;
990 u8 status;
Stefan Berger78f09cc2013-01-22 13:57:53 -0600991 bool canceled = false;
Rajiv Andradefd048862011-09-16 14:39:40 -0300992
993 /* check current status */
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700994 status = chip->ops->status(chip);
Rajiv Andradefd048862011-09-16 14:39:40 -0300995 if ((status & mask) == mask)
996 return 0;
997
998 stop = jiffies + timeout;
999
Christophe Ricard570a3602016-03-31 22:56:56 +02001000 if (chip->flags & TPM_CHIP_FLAG_IRQ) {
Rajiv Andradefd048862011-09-16 14:39:40 -03001001again:
1002 timeout = stop - jiffies;
1003 if ((long)timeout <= 0)
1004 return -ETIME;
1005 rc = wait_event_interruptible_timeout(*queue,
Stefan Berger78f09cc2013-01-22 13:57:53 -06001006 wait_for_tpm_stat_cond(chip, mask, check_cancel,
1007 &canceled),
1008 timeout);
1009 if (rc > 0) {
1010 if (canceled)
1011 return -ECANCELED;
Rajiv Andradefd048862011-09-16 14:39:40 -03001012 return 0;
Stefan Berger78f09cc2013-01-22 13:57:53 -06001013 }
Rajiv Andradefd048862011-09-16 14:39:40 -03001014 if (rc == -ERESTARTSYS && freezing(current)) {
1015 clear_thread_flag(TIF_SIGPENDING);
1016 goto again;
1017 }
1018 } else {
1019 do {
1020 msleep(TPM_TIMEOUT);
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -07001021 status = chip->ops->status(chip);
Rajiv Andradefd048862011-09-16 14:39:40 -03001022 if ((status & mask) == mask)
1023 return 0;
1024 } while (time_before(jiffies, stop));
1025 }
1026 return -ETIME;
1027}
1028EXPORT_SYMBOL_GPL(wait_for_tpm_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001030#define TPM_ORD_SAVESTATE cpu_to_be32(152)
1031#define SAVESTATE_RESULT_SIZE 10
1032
Julia Lawall00147772016-09-11 15:05:52 +02001033static const struct tpm_input_header savestate_header = {
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001034 .tag = TPM_TAG_RQU_COMMAND,
1035 .length = cpu_to_be32(10),
1036 .ordinal = TPM_ORD_SAVESTATE
1037};
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039/*
1040 * We are about to suspend. Save the TPM state
1041 * so that it can be restored.
1042 */
Rafael J. Wysocki035e2ce2012-07-06 19:09:01 +02001043int tpm_pm_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
Stefan Bergerec03c502016-05-11 11:28:27 -04001045 struct tpm_chip *chip = dev_get_drvdata(dev);
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001046 struct tpm_cmd_t cmd;
Duncan Laurie32d33b22013-03-17 14:56:39 -07001047 int rc, try;
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001048
1049 u8 dummy_hash[TPM_DIGEST_SIZE] = { 0 };
David Smith2490c682008-01-14 00:55:12 -08001050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 if (chip == NULL)
1052 return -ENODEV;
1053
Jarkko Sakkinen74d6b3c2015-01-29 07:43:47 +02001054 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
1055 tpm2_shutdown(chip, TPM2_SU_STATE);
1056 return 0;
1057 }
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -08001058
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001059 /* for buggy tpm, flush pcrs with extend to selected dummy */
1060 if (tpm_suspend_pcr) {
1061 cmd.header.in = pcrextend_header;
1062 cmd.params.pcrextend_in.pcr_idx = cpu_to_be32(tpm_suspend_pcr);
1063 memcpy(cmd.params.pcrextend_in.hash, dummy_hash,
1064 TPM_DIGEST_SIZE);
Stefan Bergerc659af72017-01-19 07:19:12 -05001065 rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE,
1066 EXTEND_PCR_RESULT_BODY_SIZE, 0,
Jarkko Sakkinen87155b72014-12-12 11:46:33 -08001067 "extending dummy pcr before suspend");
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001068 }
1069
1070 /* now do the actual savestate */
Duncan Laurie32d33b22013-03-17 14:56:39 -07001071 for (try = 0; try < TPM_RETRY; try++) {
1072 cmd.header.in = savestate_header;
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +03001073 rc = tpm_transmit_cmd(chip, &cmd, SAVESTATE_RESULT_SIZE, 0,
Stefan Bergerc659af72017-01-19 07:19:12 -05001074 0, NULL);
Duncan Laurie32d33b22013-03-17 14:56:39 -07001075
1076 /*
1077 * If the TPM indicates that it is too busy to respond to
1078 * this command then retry before giving up. It can take
1079 * several seconds for this TPM to be ready.
1080 *
1081 * This can happen if the TPM has already been sent the
1082 * SaveState command before the driver has loaded. TCG 1.2
1083 * specification states that any communication after SaveState
1084 * may cause the TPM to invalidate previously saved state.
1085 */
1086 if (rc != TPM_WARN_RETRY)
1087 break;
1088 msleep(TPM_TIMEOUT_RETRY);
1089 }
1090
1091 if (rc)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -05001092 dev_err(&chip->dev,
Duncan Laurie32d33b22013-03-17 14:56:39 -07001093 "Error (%d) sending savestate before suspend\n", rc);
1094 else if (try > 0)
Jason Gunthorpe8cfffc92016-02-29 12:29:47 -05001095 dev_warn(&chip->dev, "TPM savestate took %dms\n",
Duncan Laurie32d33b22013-03-17 14:56:39 -07001096 try * TPM_TIMEOUT_RETRY);
1097
Rajiv Andrade225a9be2010-03-25 00:55:32 -03001098 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100EXPORT_SYMBOL_GPL(tpm_pm_suspend);
1101
1102/*
1103 * Resume from a power safe. The BIOS already restored
1104 * the TPM state.
1105 */
Kylene Jo Hallce2c87d2005-10-30 15:03:25 -08001106int tpm_pm_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107{
Stefan Bergerec03c502016-05-11 11:28:27 -04001108 struct tpm_chip *chip = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 if (chip == NULL)
1111 return -ENODEV;
1112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 return 0;
1114}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115EXPORT_SYMBOL_GPL(tpm_pm_resume);
1116
Kent Yoder41ab9992012-06-07 13:47:14 -05001117#define TPM_GETRANDOM_RESULT_SIZE 18
Julia Lawall00147772016-09-11 15:05:52 +02001118static const struct tpm_input_header tpm_getrandom_header = {
Kent Yoder41ab9992012-06-07 13:47:14 -05001119 .tag = TPM_TAG_RQU_COMMAND,
1120 .length = cpu_to_be32(14),
1121 .ordinal = TPM_ORD_GET_RANDOM
1122};
1123
1124/**
1125 * tpm_get_random() - Get random bytes from the tpm's RNG
1126 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1127 * @out: destination buffer for the random bytes
1128 * @max: the max number of bytes to write to @out
1129 *
1130 * Returns < 0 on error and the number of bytes read on success
1131 */
1132int tpm_get_random(u32 chip_num, u8 *out, size_t max)
1133{
1134 struct tpm_chip *chip;
1135 struct tpm_cmd_t tpm_cmd;
Stefan Bergerc659af72017-01-19 07:19:12 -05001136 u32 recd, num_bytes = min_t(u32, max, TPM_MAX_RNG_DATA), rlength;
Kent Yoder41ab9992012-06-07 13:47:14 -05001137 int err, total = 0, retries = 5;
1138 u8 *dest = out;
1139
Jarkko Sakkinen3e14d832014-05-09 14:23:10 +03001140 if (!out || !num_bytes || max > TPM_MAX_RNG_DATA)
1141 return -EINVAL;
1142
Kent Yoder41ab9992012-06-07 13:47:14 -05001143 chip = tpm_chip_find_get(chip_num);
1144 if (chip == NULL)
1145 return -ENODEV;
1146
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -08001147 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
1148 err = tpm2_get_random(chip, out, max);
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001149 tpm_put_ops(chip);
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -08001150 return err;
1151 }
1152
Kent Yoder41ab9992012-06-07 13:47:14 -05001153 do {
1154 tpm_cmd.header.in = tpm_getrandom_header;
1155 tpm_cmd.params.getrandom_in.num_bytes = cpu_to_be32(num_bytes);
1156
Jarkko Sakkinen87155b72014-12-12 11:46:33 -08001157 err = tpm_transmit_cmd(chip, &tpm_cmd,
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +03001158 TPM_GETRANDOM_RESULT_SIZE + num_bytes,
Stefan Bergerc659af72017-01-19 07:19:12 -05001159 offsetof(struct tpm_getrandom_out,
1160 rng_data),
Jarkko Sakkinend4816ed2016-08-16 22:00:38 +03001161 0, "attempting get random");
Kent Yoder41ab9992012-06-07 13:47:14 -05001162 if (err)
1163 break;
1164
1165 recd = be32_to_cpu(tpm_cmd.params.getrandom_out.rng_data_len);
Stefan Bergerc659af72017-01-19 07:19:12 -05001166
1167 rlength = be32_to_cpu(tpm_cmd.header.out.length);
1168 if (rlength < offsetof(struct tpm_getrandom_out, rng_data) +
1169 recd) {
1170 total = -EFAULT;
1171 break;
1172 }
Kent Yoder41ab9992012-06-07 13:47:14 -05001173 memcpy(dest, tpm_cmd.params.getrandom_out.rng_data, recd);
1174
1175 dest += recd;
1176 total += recd;
1177 num_bytes -= recd;
1178 } while (retries-- && total < max);
1179
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001180 tpm_put_ops(chip);
Kent Yoder41ab9992012-06-07 13:47:14 -05001181 return total ? total : -EIO;
1182}
1183EXPORT_SYMBOL_GPL(tpm_get_random);
1184
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001185/**
1186 * tpm_seal_trusted() - seal a trusted key
1187 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1188 * @options: authentication values and other options
1189 * @payload: the key data in clear and encrypted form
1190 *
1191 * Returns < 0 on error and 0 on success. At the moment, only TPM 2.0 chips
1192 * are supported.
1193 */
1194int tpm_seal_trusted(u32 chip_num, struct trusted_key_payload *payload,
1195 struct trusted_key_options *options)
1196{
1197 struct tpm_chip *chip;
1198 int rc;
1199
1200 chip = tpm_chip_find_get(chip_num);
1201 if (chip == NULL || !(chip->flags & TPM_CHIP_FLAG_TPM2))
1202 return -ENODEV;
1203
1204 rc = tpm2_seal_trusted(chip, payload, options);
1205
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001206 tpm_put_ops(chip);
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001207 return rc;
1208}
1209EXPORT_SYMBOL_GPL(tpm_seal_trusted);
1210
1211/**
1212 * tpm_unseal_trusted() - unseal a trusted key
1213 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1214 * @options: authentication values and other options
1215 * @payload: the key data in clear and encrypted form
1216 *
1217 * Returns < 0 on error and 0 on success. At the moment, only TPM 2.0 chips
1218 * are supported.
1219 */
1220int tpm_unseal_trusted(u32 chip_num, struct trusted_key_payload *payload,
1221 struct trusted_key_options *options)
1222{
1223 struct tpm_chip *chip;
1224 int rc;
1225
1226 chip = tpm_chip_find_get(chip_num);
1227 if (chip == NULL || !(chip->flags & TPM_CHIP_FLAG_TPM2))
1228 return -ENODEV;
1229
1230 rc = tpm2_unseal_trusted(chip, payload, options);
1231
Jason Gunthorpe4e261952016-02-12 20:29:53 -07001232 tpm_put_ops(chip);
1233
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001234 return rc;
1235}
1236EXPORT_SYMBOL_GPL(tpm_unseal_trusted);
1237
Jarkko Sakkinen313d21e2014-12-12 11:46:37 -08001238static int __init tpm_init(void)
1239{
1240 int rc;
1241
1242 tpm_class = class_create(THIS_MODULE, "tpm");
1243 if (IS_ERR(tpm_class)) {
1244 pr_err("couldn't create tpm class\n");
1245 return PTR_ERR(tpm_class);
1246 }
1247
1248 rc = alloc_chrdev_region(&tpm_devt, 0, TPM_NUM_DEVICES, "tpm");
1249 if (rc < 0) {
1250 pr_err("tpm: failed to allocate char dev region\n");
1251 class_destroy(tpm_class);
1252 return rc;
1253 }
1254
1255 return 0;
1256}
1257
1258static void __exit tpm_exit(void)
1259{
Stefan Berger15516782016-02-29 08:53:02 -05001260 idr_destroy(&dev_nums_idr);
Jarkko Sakkinen313d21e2014-12-12 11:46:37 -08001261 class_destroy(tpm_class);
1262 unregister_chrdev_region(tpm_devt, TPM_NUM_DEVICES);
1263}
1264
1265subsys_initcall(tpm_init);
1266module_exit(tpm_exit);
1267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
1269MODULE_DESCRIPTION("TPM Driver");
1270MODULE_VERSION("2.0");
1271MODULE_LICENSE("GPL");