Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2004 IBM Corporation |
Jarkko Sakkinen | afb5abc | 2014-12-12 11:46:34 -0800 | [diff] [blame] | 3 | * Copyright (C) 2014 Intel Corporation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 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 Yoder | 8e81cc1 | 2007-08-22 14:01:04 -0700 | [diff] [blame] | 11 | * Maintained by: <tpmdd-devel@lists.sourceforge.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | * |
| 13 | * Device driver for TCG/TCPA TPM (trusted platform module). |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 14 | * Specifications at www.trustedcomputinggroup.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | * |
| 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 Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 20 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | * Note, the TPM chip is not interrupt driven (only polling) |
| 22 | * and can have very long timeouts (minutes!). Hence the unusual |
Nishanth Aravamudan | 700d8bd | 2005-06-23 22:01:47 -0700 | [diff] [blame] | 23 | * calls to msleep. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | * |
| 25 | */ |
| 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/poll.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 28 | #include <linux/slab.h> |
Matthias Kaehlcke | d081d47 | 2007-05-08 00:32:02 -0700 | [diff] [blame] | 29 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/spinlock.h> |
Rajiv Andrade | fd04886 | 2011-09-16 14:39:40 -0300 | [diff] [blame] | 31 | #include <linux/freezer.h> |
Winkler, Tomas | e74f2f7 | 2016-10-08 14:59:39 +0300 | [diff] [blame] | 32 | #include <linux/pm_runtime.h> |
Matthias Kaehlcke | d081d47 | 2007-05-08 00:32:02 -0700 | [diff] [blame] | 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include "tpm.h" |
Kent Yoder | e5dcd87 | 2012-07-11 10:08:12 -0500 | [diff] [blame] | 35 | #include "tpm_eventlog.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 37 | #define TPM_MAX_ORDINAL 243 |
Peter Huewe | 07b133e | 2012-11-16 00:31:29 +0100 | [diff] [blame] | 38 | #define TSC_MAX_ORDINAL 12 |
| 39 | #define TPM_PROTECTED_COMMAND 0x00 |
| 40 | #define TPM_CONNECTION_COMMAND 0x40 |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 41 | |
Dmitry Torokhov | 9b3056c | 2010-10-01 14:16:39 -0700 | [diff] [blame] | 42 | /* |
| 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 | */ |
| 47 | static int tpm_suspend_pcr; |
| 48 | module_param_named(suspend_pcr, tpm_suspend_pcr, uint, 0644); |
| 49 | MODULE_PARM_DESC(suspend_pcr, |
| 50 | "PCR to use for dummy writes to faciltate flush on suspend."); |
| 51 | |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 52 | /* |
| 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 Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 60 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | /* |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 307 | * Returns max number of jiffies to wait |
| 308 | */ |
| 309 | unsigned 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 Wilck | f728643 | 2015-11-20 14:32:33 +0100 | [diff] [blame] | 315 | /* |
| 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 Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 320 | duration_idx = tpm_ordinal_duration[ordinal]; |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 321 | |
Linus Torvalds | 8d1dc20 | 2011-03-01 13:23:27 -0800 | [diff] [blame] | 322 | if (duration_idx != TPM_UNDEFINED) |
Christophe Ricard | af782f3 | 2016-03-31 22:56:59 +0200 | [diff] [blame] | 323 | duration = chip->duration[duration_idx]; |
Linus Torvalds | 8d1dc20 | 2011-03-01 13:23:27 -0800 | [diff] [blame] | 324 | if (duration <= 0) |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 325 | return 2 * 60 * HZ; |
Linus Torvalds | 8d1dc20 | 2011-03-01 13:23:27 -0800 | [diff] [blame] | 326 | else |
| 327 | return duration; |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 328 | } |
| 329 | EXPORT_SYMBOL_GPL(tpm_calc_ordinal_duration); |
| 330 | |
Winkler, Tomas | f865c19 | 2016-11-23 12:04:11 +0200 | [diff] [blame^] | 331 | /** |
| 332 | * tmp_transmit - Internal kernel interface to transmit TPM commands. |
| 333 | * |
| 334 | * @chip: TPM chip to use |
| 335 | * @buf: TPM command buffer |
| 336 | * @bufsiz: length of the TPM command buffer |
| 337 | * @flags: tpm transmit flags - bitmap |
| 338 | * |
| 339 | * Return: |
| 340 | * 0 when the operation is successful. |
| 341 | * A negative number for system errors (errno). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | */ |
Jarkko Sakkinen | d4816ed | 2016-08-16 22:00:38 +0300 | [diff] [blame] | 343 | ssize_t tpm_transmit(struct tpm_chip *chip, const u8 *buf, size_t bufsiz, |
| 344 | unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | { |
Kylene Hall | d9e5b6b | 2005-06-23 22:02:02 -0700 | [diff] [blame] | 346 | ssize_t rc; |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 347 | u32 count, ordinal; |
Nishanth Aravamudan | 700d8bd | 2005-06-23 22:01:47 -0700 | [diff] [blame] | 348 | unsigned long stop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | |
Jarkko Sakkinen | ebfd753 | 2016-09-12 13:43:30 +0300 | [diff] [blame] | 350 | if (bufsiz < TPM_HEADER_SIZE) |
| 351 | return -EINVAL; |
| 352 | |
Peter Huewe | 6b07d30 | 2011-09-15 14:37:43 -0300 | [diff] [blame] | 353 | if (bufsiz > TPM_BUFSIZE) |
| 354 | bufsiz = TPM_BUFSIZE; |
| 355 | |
Kylene Hall | 81179bb | 2005-06-23 22:01:59 -0700 | [diff] [blame] | 356 | count = be32_to_cpu(*((__be32 *) (buf + 2))); |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 357 | ordinal = be32_to_cpu(*((__be32 *) (buf + 6))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | if (count == 0) |
| 359 | return -ENODATA; |
| 360 | if (count > bufsiz) { |
Jason Gunthorpe | 8cfffc9 | 2016-02-29 12:29:47 -0500 | [diff] [blame] | 361 | dev_err(&chip->dev, |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 362 | "invalid count value %x %zx\n", count, bufsiz); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | return -E2BIG; |
| 364 | } |
| 365 | |
Jarkko Sakkinen | d4816ed | 2016-08-16 22:00:38 +0300 | [diff] [blame] | 366 | if (!(flags & TPM_TRANSMIT_UNLOCKED)) |
| 367 | mutex_lock(&chip->tpm_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
Stefan Berger | 6804f6b | 2016-11-07 07:14:33 -0500 | [diff] [blame] | 369 | if (chip->dev.parent) |
| 370 | pm_runtime_get_sync(chip->dev.parent); |
Winkler, Tomas | e74f2f7 | 2016-10-08 14:59:39 +0300 | [diff] [blame] | 371 | |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame] | 372 | rc = chip->ops->send(chip, (u8 *) buf, count); |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 373 | if (rc < 0) { |
Jason Gunthorpe | 8cfffc9 | 2016-02-29 12:29:47 -0500 | [diff] [blame] | 374 | dev_err(&chip->dev, |
Kylene Hall | d9e5b6b | 2005-06-23 22:02:02 -0700 | [diff] [blame] | 375 | "tpm_transmit: tpm_send: error %zd\n", rc); |
| 376 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | } |
| 378 | |
Christophe Ricard | 570a360 | 2016-03-31 22:56:56 +0200 | [diff] [blame] | 379 | if (chip->flags & TPM_CHIP_FLAG_IRQ) |
Leendert van Doorn | 27084ef | 2006-04-22 02:38:03 -0700 | [diff] [blame] | 380 | goto out_recv; |
| 381 | |
Jarkko Sakkinen | 7a1d7e6 | 2014-12-12 11:46:38 -0800 | [diff] [blame] | 382 | if (chip->flags & TPM_CHIP_FLAG_TPM2) |
| 383 | stop = jiffies + tpm2_calc_ordinal_duration(chip, ordinal); |
| 384 | else |
| 385 | stop = jiffies + tpm_calc_ordinal_duration(chip, ordinal); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | do { |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame] | 387 | u8 status = chip->ops->status(chip); |
| 388 | if ((status & chip->ops->req_complete_mask) == |
| 389 | chip->ops->req_complete_val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | goto out_recv; |
Kylene Hall | d9e5b6b | 2005-06-23 22:02:02 -0700 | [diff] [blame] | 391 | |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame] | 392 | if (chip->ops->req_canceled(chip, status)) { |
Jason Gunthorpe | 8cfffc9 | 2016-02-29 12:29:47 -0500 | [diff] [blame] | 393 | dev_err(&chip->dev, "Operation Canceled\n"); |
Kylene Hall | d9e5b6b | 2005-06-23 22:02:02 -0700 | [diff] [blame] | 394 | rc = -ECANCELED; |
| 395 | goto out; |
| 396 | } |
| 397 | |
| 398 | msleep(TPM_TIMEOUT); /* CHECK */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | rmb(); |
Nishanth Aravamudan | 700d8bd | 2005-06-23 22:01:47 -0700 | [diff] [blame] | 400 | } while (time_before(jiffies, stop)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame] | 402 | chip->ops->cancel(chip); |
Jason Gunthorpe | 8cfffc9 | 2016-02-29 12:29:47 -0500 | [diff] [blame] | 403 | dev_err(&chip->dev, "Operation Timed out\n"); |
Kylene Hall | d9e5b6b | 2005-06-23 22:02:02 -0700 | [diff] [blame] | 404 | rc = -ETIME; |
| 405 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | |
| 407 | out_recv: |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame] | 408 | rc = chip->ops->recv(chip, (u8 *) buf, bufsiz); |
Kylene Hall | d9e5b6b | 2005-06-23 22:02:02 -0700 | [diff] [blame] | 409 | if (rc < 0) |
Jason Gunthorpe | 8cfffc9 | 2016-02-29 12:29:47 -0500 | [diff] [blame] | 410 | dev_err(&chip->dev, |
Kylene Hall | d9e5b6b | 2005-06-23 22:02:02 -0700 | [diff] [blame] | 411 | "tpm_transmit: tpm_recv: error %zd\n", rc); |
| 412 | out: |
Stefan Berger | 6804f6b | 2016-11-07 07:14:33 -0500 | [diff] [blame] | 413 | if (chip->dev.parent) |
| 414 | pm_runtime_put_sync(chip->dev.parent); |
Winkler, Tomas | e74f2f7 | 2016-10-08 14:59:39 +0300 | [diff] [blame] | 415 | |
Jarkko Sakkinen | d4816ed | 2016-08-16 22:00:38 +0300 | [diff] [blame] | 416 | if (!(flags & TPM_TRANSMIT_UNLOCKED)) |
| 417 | mutex_unlock(&chip->tpm_mutex); |
Kylene Hall | d9e5b6b | 2005-06-23 22:02:02 -0700 | [diff] [blame] | 418 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | } |
| 420 | |
Winkler, Tomas | f865c19 | 2016-11-23 12:04:11 +0200 | [diff] [blame^] | 421 | /** |
| 422 | * tmp_transmit_cmd - send a tpm command to the device |
| 423 | * The function extracts tpm out header return code |
| 424 | * |
| 425 | * @chip: TPM chip to use |
| 426 | * @cmd: TPM command buffer |
| 427 | * @len: length of the TPM command |
| 428 | * @flags: tpm transmit flags - bitmap |
| 429 | * @desc: command description used in the error message |
| 430 | * |
| 431 | * Return: |
| 432 | * 0 when the operation is successful. |
| 433 | * A negative number for system errors (errno). |
| 434 | * A positive number for a TPM error. |
| 435 | */ |
Jarkko Sakkinen | d4816ed | 2016-08-16 22:00:38 +0300 | [diff] [blame] | 436 | ssize_t tpm_transmit_cmd(struct tpm_chip *chip, const void *cmd, |
| 437 | int len, unsigned int flags, const char *desc) |
Kylene Jo Hall | beed53a | 2006-04-22 02:37:05 -0700 | [diff] [blame] | 438 | { |
Jarkko Sakkinen | d4816ed | 2016-08-16 22:00:38 +0300 | [diff] [blame] | 439 | const struct tpm_output_header *header; |
Kylene Jo Hall | beed53a | 2006-04-22 02:37:05 -0700 | [diff] [blame] | 440 | int err; |
| 441 | |
Jarkko Sakkinen | d4816ed | 2016-08-16 22:00:38 +0300 | [diff] [blame] | 442 | len = tpm_transmit(chip, (const u8 *)cmd, len, flags); |
Kylene Jo Hall | beed53a | 2006-04-22 02:37:05 -0700 | [diff] [blame] | 443 | if (len < 0) |
| 444 | return len; |
Rajiv Andrade | b9e3238 | 2011-11-01 17:00:52 -0200 | [diff] [blame] | 445 | else if (len < TPM_HEADER_SIZE) |
| 446 | return -EFAULT; |
| 447 | |
Jarkko Sakkinen | 87155b7 | 2014-12-12 11:46:33 -0800 | [diff] [blame] | 448 | header = cmd; |
| 449 | |
| 450 | err = be32_to_cpu(header->return_code); |
Jason Gunthorpe | c584af1 | 2012-11-21 13:54:33 -0700 | [diff] [blame] | 451 | if (err != 0 && desc) |
Jason Gunthorpe | 8cfffc9 | 2016-02-29 12:29:47 -0500 | [diff] [blame] | 452 | dev_err(&chip->dev, "A TPM error (%d) occurred %s\n", err, |
Jarkko Sakkinen | 71ed848 | 2014-12-12 11:46:36 -0800 | [diff] [blame] | 453 | desc); |
Rajiv Andrade | b9e3238 | 2011-11-01 17:00:52 -0200 | [diff] [blame] | 454 | |
| 455 | return err; |
Kylene Jo Hall | beed53a | 2006-04-22 02:37:05 -0700 | [diff] [blame] | 456 | } |
| 457 | |
Winkler, Tomas | f865c19 | 2016-11-23 12:04:11 +0200 | [diff] [blame^] | 458 | #define TPM_DIGEST_SIZE 20 |
| 459 | #define TPM_RET_CODE_IDX 6 |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 460 | #define TPM_INTERNAL_RESULT_SIZE 200 |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 461 | #define TPM_ORD_GET_CAP cpu_to_be32(101) |
Kent Yoder | 41ab999 | 2012-06-07 13:47:14 -0500 | [diff] [blame] | 462 | #define TPM_ORD_GET_RANDOM cpu_to_be32(70) |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 463 | |
| 464 | static const struct tpm_input_header tpm_getcap_header = { |
| 465 | .tag = TPM_TAG_RQU_COMMAND, |
| 466 | .length = cpu_to_be32(22), |
| 467 | .ordinal = TPM_ORD_GET_CAP |
| 468 | }; |
| 469 | |
Jarkko Sakkinen | 84fda15 | 2016-09-19 23:22:09 +0300 | [diff] [blame] | 470 | ssize_t tpm_getcap(struct tpm_chip *chip, u32 subcap_id, cap_t *cap, |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 471 | const char *desc) |
| 472 | { |
| 473 | struct tpm_cmd_t tpm_cmd; |
| 474 | int rc; |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 475 | |
| 476 | tpm_cmd.header.in = tpm_getcap_header; |
Jarkko Sakkinen | 84fda15 | 2016-09-19 23:22:09 +0300 | [diff] [blame] | 477 | if (subcap_id == TPM_CAP_VERSION_1_1 || |
| 478 | subcap_id == TPM_CAP_VERSION_1_2) { |
| 479 | tpm_cmd.params.getcap_in.cap = cpu_to_be32(subcap_id); |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 480 | /*subcap field not necessary */ |
| 481 | tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(0); |
| 482 | tpm_cmd.header.in.length -= cpu_to_be32(sizeof(__be32)); |
| 483 | } else { |
| 484 | if (subcap_id == TPM_CAP_FLAG_PERM || |
| 485 | subcap_id == TPM_CAP_FLAG_VOL) |
Jarkko Sakkinen | 84fda15 | 2016-09-19 23:22:09 +0300 | [diff] [blame] | 486 | tpm_cmd.params.getcap_in.cap = |
| 487 | cpu_to_be32(TPM_CAP_FLAG); |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 488 | else |
Jarkko Sakkinen | 84fda15 | 2016-09-19 23:22:09 +0300 | [diff] [blame] | 489 | tpm_cmd.params.getcap_in.cap = |
| 490 | cpu_to_be32(TPM_CAP_PROP); |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 491 | tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4); |
Jarkko Sakkinen | 84fda15 | 2016-09-19 23:22:09 +0300 | [diff] [blame] | 492 | tpm_cmd.params.getcap_in.subcap = cpu_to_be32(subcap_id); |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 493 | } |
Jarkko Sakkinen | d4816ed | 2016-08-16 22:00:38 +0300 | [diff] [blame] | 494 | rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, 0, |
| 495 | desc); |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 496 | if (!rc) |
| 497 | *cap = tpm_cmd.params.getcap_out.cap; |
| 498 | return rc; |
| 499 | } |
Jarkko Sakkinen | eb5854e | 2016-06-12 16:42:09 +0300 | [diff] [blame] | 500 | EXPORT_SYMBOL_GPL(tpm_getcap); |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 501 | |
Jason Gunthorpe | c584af1 | 2012-11-21 13:54:33 -0700 | [diff] [blame] | 502 | #define TPM_ORD_STARTUP cpu_to_be32(153) |
| 503 | #define TPM_ST_CLEAR cpu_to_be16(1) |
| 504 | #define TPM_ST_STATE cpu_to_be16(2) |
| 505 | #define TPM_ST_DEACTIVATED cpu_to_be16(3) |
| 506 | static const struct tpm_input_header tpm_startup_header = { |
| 507 | .tag = TPM_TAG_RQU_COMMAND, |
| 508 | .length = cpu_to_be32(12), |
| 509 | .ordinal = TPM_ORD_STARTUP |
| 510 | }; |
| 511 | |
| 512 | static int tpm_startup(struct tpm_chip *chip, __be16 startup_type) |
| 513 | { |
| 514 | struct tpm_cmd_t start_cmd; |
| 515 | start_cmd.header.in = tpm_startup_header; |
Jarkko Sakkinen | 7a1d7e6 | 2014-12-12 11:46:38 -0800 | [diff] [blame] | 516 | |
Jason Gunthorpe | c584af1 | 2012-11-21 13:54:33 -0700 | [diff] [blame] | 517 | start_cmd.params.startup_in.startup_type = startup_type; |
Jarkko Sakkinen | d4816ed | 2016-08-16 22:00:38 +0300 | [diff] [blame] | 518 | return tpm_transmit_cmd(chip, &start_cmd, TPM_INTERNAL_RESULT_SIZE, 0, |
Jarkko Sakkinen | 87155b7 | 2014-12-12 11:46:33 -0800 | [diff] [blame] | 519 | "attempting to start the TPM"); |
Jason Gunthorpe | c584af1 | 2012-11-21 13:54:33 -0700 | [diff] [blame] | 520 | } |
| 521 | |
Stefan Berger | 2b30a90 | 2011-11-11 12:57:02 -0500 | [diff] [blame] | 522 | int tpm_get_timeouts(struct tpm_chip *chip) |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 523 | { |
Ed Swierk | aaa6f7f | 2016-09-19 23:22:08 +0300 | [diff] [blame] | 524 | cap_t cap; |
Jason Gunthorpe | 8e54caf | 2014-05-21 18:26:44 -0600 | [diff] [blame] | 525 | unsigned long new_timeout[4]; |
| 526 | unsigned long old_timeout[4]; |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 527 | ssize_t rc; |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 528 | |
Jason Gunthorpe | d1d253cf | 2016-10-26 16:28:44 -0600 | [diff] [blame] | 529 | if (chip->flags & TPM_CHIP_FLAG_HAVE_TIMEOUTS) |
| 530 | return 0; |
| 531 | |
Jason Gunthorpe | 2511204 | 2015-11-25 14:05:32 -0700 | [diff] [blame] | 532 | if (chip->flags & TPM_CHIP_FLAG_TPM2) { |
| 533 | /* Fixed timeouts for TPM2 */ |
Christophe Ricard | af782f3 | 2016-03-31 22:56:59 +0200 | [diff] [blame] | 534 | chip->timeout_a = msecs_to_jiffies(TPM2_TIMEOUT_A); |
| 535 | chip->timeout_b = msecs_to_jiffies(TPM2_TIMEOUT_B); |
| 536 | chip->timeout_c = msecs_to_jiffies(TPM2_TIMEOUT_C); |
| 537 | chip->timeout_d = msecs_to_jiffies(TPM2_TIMEOUT_D); |
| 538 | chip->duration[TPM_SHORT] = |
Jason Gunthorpe | 2511204 | 2015-11-25 14:05:32 -0700 | [diff] [blame] | 539 | msecs_to_jiffies(TPM2_DURATION_SHORT); |
Christophe Ricard | af782f3 | 2016-03-31 22:56:59 +0200 | [diff] [blame] | 540 | chip->duration[TPM_MEDIUM] = |
Jason Gunthorpe | 2511204 | 2015-11-25 14:05:32 -0700 | [diff] [blame] | 541 | msecs_to_jiffies(TPM2_DURATION_MEDIUM); |
Christophe Ricard | af782f3 | 2016-03-31 22:56:59 +0200 | [diff] [blame] | 542 | chip->duration[TPM_LONG] = |
Jason Gunthorpe | 2511204 | 2015-11-25 14:05:32 -0700 | [diff] [blame] | 543 | msecs_to_jiffies(TPM2_DURATION_LONG); |
Jason Gunthorpe | d1d253cf | 2016-10-26 16:28:44 -0600 | [diff] [blame] | 544 | |
| 545 | chip->flags |= TPM_CHIP_FLAG_HAVE_TIMEOUTS; |
Jason Gunthorpe | 2511204 | 2015-11-25 14:05:32 -0700 | [diff] [blame] | 546 | return 0; |
| 547 | } |
| 548 | |
Ed Swierk | aaa6f7f | 2016-09-19 23:22:08 +0300 | [diff] [blame] | 549 | rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_TIMEOUT, &cap, |
| 550 | "attempting to determine the timeouts"); |
Jason Gunthorpe | c584af1 | 2012-11-21 13:54:33 -0700 | [diff] [blame] | 551 | if (rc == TPM_ERR_INVALID_POSTINIT) { |
| 552 | /* The TPM is not started, we are the first to talk to it. |
| 553 | Execute a startup command. */ |
Ed Swierk | aaa6f7f | 2016-09-19 23:22:08 +0300 | [diff] [blame] | 554 | dev_info(&chip->dev, "Issuing TPM_STARTUP\n"); |
Jason Gunthorpe | c584af1 | 2012-11-21 13:54:33 -0700 | [diff] [blame] | 555 | if (tpm_startup(chip, TPM_ST_CLEAR)) |
| 556 | return rc; |
| 557 | |
Ed Swierk | aaa6f7f | 2016-09-19 23:22:08 +0300 | [diff] [blame] | 558 | rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_TIMEOUT, &cap, |
| 559 | "attempting to determine the timeouts"); |
Jason Gunthorpe | c584af1 | 2012-11-21 13:54:33 -0700 | [diff] [blame] | 560 | } |
Ed Swierk | aaa6f7f | 2016-09-19 23:22:08 +0300 | [diff] [blame] | 561 | if (rc) |
| 562 | return rc; |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 563 | |
Ed Swierk | aaa6f7f | 2016-09-19 23:22:08 +0300 | [diff] [blame] | 564 | old_timeout[0] = be32_to_cpu(cap.timeout.a); |
| 565 | old_timeout[1] = be32_to_cpu(cap.timeout.b); |
| 566 | old_timeout[2] = be32_to_cpu(cap.timeout.c); |
| 567 | old_timeout[3] = be32_to_cpu(cap.timeout.d); |
Jason Gunthorpe | 8e54caf | 2014-05-21 18:26:44 -0600 | [diff] [blame] | 568 | memcpy(new_timeout, old_timeout, sizeof(new_timeout)); |
| 569 | |
| 570 | /* |
| 571 | * Provide ability for vendor overrides of timeout values in case |
| 572 | * of misreporting. |
| 573 | */ |
| 574 | if (chip->ops->update_timeouts != NULL) |
Christophe Ricard | af782f3 | 2016-03-31 22:56:59 +0200 | [diff] [blame] | 575 | chip->timeout_adjusted = |
Jason Gunthorpe | 8e54caf | 2014-05-21 18:26:44 -0600 | [diff] [blame] | 576 | chip->ops->update_timeouts(chip, new_timeout); |
| 577 | |
Christophe Ricard | af782f3 | 2016-03-31 22:56:59 +0200 | [diff] [blame] | 578 | if (!chip->timeout_adjusted) { |
Jason Gunthorpe | 8e54caf | 2014-05-21 18:26:44 -0600 | [diff] [blame] | 579 | /* Don't overwrite default if value is 0 */ |
| 580 | if (new_timeout[0] != 0 && new_timeout[0] < 1000) { |
| 581 | int i; |
| 582 | |
| 583 | /* timeouts in msec rather usec */ |
| 584 | for (i = 0; i != ARRAY_SIZE(new_timeout); i++) |
| 585 | new_timeout[i] *= 1000; |
Christophe Ricard | af782f3 | 2016-03-31 22:56:59 +0200 | [diff] [blame] | 586 | chip->timeout_adjusted = true; |
Jason Gunthorpe | 8e54caf | 2014-05-21 18:26:44 -0600 | [diff] [blame] | 587 | } |
Stefan Berger | e3e1a1e | 2011-03-30 12:13:27 -0400 | [diff] [blame] | 588 | } |
Jason Gunthorpe | 8e54caf | 2014-05-21 18:26:44 -0600 | [diff] [blame] | 589 | |
| 590 | /* Report adjusted timeouts */ |
Christophe Ricard | af782f3 | 2016-03-31 22:56:59 +0200 | [diff] [blame] | 591 | if (chip->timeout_adjusted) { |
Jason Gunthorpe | 8cfffc9 | 2016-02-29 12:29:47 -0500 | [diff] [blame] | 592 | dev_info(&chip->dev, |
Jason Gunthorpe | 8e54caf | 2014-05-21 18:26:44 -0600 | [diff] [blame] | 593 | HW_ERR "Adjusting reported timeouts: A %lu->%luus B %lu->%luus C %lu->%luus D %lu->%luus\n", |
| 594 | old_timeout[0], new_timeout[0], |
| 595 | old_timeout[1], new_timeout[1], |
| 596 | old_timeout[2], new_timeout[2], |
| 597 | old_timeout[3], new_timeout[3]); |
| 598 | } |
| 599 | |
Christophe Ricard | af782f3 | 2016-03-31 22:56:59 +0200 | [diff] [blame] | 600 | chip->timeout_a = usecs_to_jiffies(new_timeout[0]); |
| 601 | chip->timeout_b = usecs_to_jiffies(new_timeout[1]); |
| 602 | chip->timeout_c = usecs_to_jiffies(new_timeout[2]); |
| 603 | chip->timeout_d = usecs_to_jiffies(new_timeout[3]); |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 604 | |
Ed Swierk | aaa6f7f | 2016-09-19 23:22:08 +0300 | [diff] [blame] | 605 | rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_DURATION, &cap, |
| 606 | "attempting to determine the durations"); |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 607 | if (rc) |
Stefan Berger | 2b30a90 | 2011-11-11 12:57:02 -0500 | [diff] [blame] | 608 | return rc; |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 609 | |
Christophe Ricard | af782f3 | 2016-03-31 22:56:59 +0200 | [diff] [blame] | 610 | chip->duration[TPM_SHORT] = |
Ed Swierk | aaa6f7f | 2016-09-19 23:22:08 +0300 | [diff] [blame] | 611 | usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_short)); |
Christophe Ricard | af782f3 | 2016-03-31 22:56:59 +0200 | [diff] [blame] | 612 | chip->duration[TPM_MEDIUM] = |
Ed Swierk | aaa6f7f | 2016-09-19 23:22:08 +0300 | [diff] [blame] | 613 | usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_medium)); |
Christophe Ricard | af782f3 | 2016-03-31 22:56:59 +0200 | [diff] [blame] | 614 | chip->duration[TPM_LONG] = |
Ed Swierk | aaa6f7f | 2016-09-19 23:22:08 +0300 | [diff] [blame] | 615 | usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_long)); |
Stefan Berger | e934acc | 2011-03-30 12:13:24 -0400 | [diff] [blame] | 616 | |
| 617 | /* The Broadcom BCM0102 chipset in a Dell Latitude D820 gets the above |
| 618 | * value wrong and apparently reports msecs rather than usecs. So we |
| 619 | * fix up the resulting too-small TPM_SHORT value to make things work. |
| 620 | * We also scale the TPM_MEDIUM and -_LONG values by 1000. |
| 621 | */ |
Christophe Ricard | af782f3 | 2016-03-31 22:56:59 +0200 | [diff] [blame] | 622 | if (chip->duration[TPM_SHORT] < (HZ / 100)) { |
| 623 | chip->duration[TPM_SHORT] = HZ; |
| 624 | chip->duration[TPM_MEDIUM] *= 1000; |
| 625 | chip->duration[TPM_LONG] *= 1000; |
| 626 | chip->duration_adjusted = true; |
Jason Gunthorpe | 8cfffc9 | 2016-02-29 12:29:47 -0500 | [diff] [blame] | 627 | dev_info(&chip->dev, "Adjusting TPM timeout parameters."); |
Stefan Berger | e934acc | 2011-03-30 12:13:24 -0400 | [diff] [blame] | 628 | } |
Jason Gunthorpe | d1d253cf | 2016-10-26 16:28:44 -0600 | [diff] [blame] | 629 | |
| 630 | chip->flags |= TPM_CHIP_FLAG_HAVE_TIMEOUTS; |
Stefan Berger | 2b30a90 | 2011-11-11 12:57:02 -0500 | [diff] [blame] | 631 | return 0; |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 632 | } |
| 633 | EXPORT_SYMBOL_GPL(tpm_get_timeouts); |
| 634 | |
Stefan Berger | d97c6ad | 2011-11-11 12:57:03 -0500 | [diff] [blame] | 635 | #define TPM_ORD_CONTINUE_SELFTEST 83 |
| 636 | #define CONTINUE_SELFTEST_RESULT_SIZE 10 |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 637 | |
Julia Lawall | 0014777 | 2016-09-11 15:05:52 +0200 | [diff] [blame] | 638 | static const struct tpm_input_header continue_selftest_header = { |
Stefan Berger | d97c6ad | 2011-11-11 12:57:03 -0500 | [diff] [blame] | 639 | .tag = TPM_TAG_RQU_COMMAND, |
| 640 | .length = cpu_to_be32(10), |
| 641 | .ordinal = cpu_to_be32(TPM_ORD_CONTINUE_SELFTEST), |
| 642 | }; |
| 643 | |
| 644 | /** |
| 645 | * tpm_continue_selftest -- run TPM's selftest |
| 646 | * @chip: TPM chip to use |
| 647 | * |
| 648 | * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing |
| 649 | * a TPM error code. |
| 650 | */ |
Stefan Berger | 68d6e67 | 2011-11-11 12:57:04 -0500 | [diff] [blame] | 651 | static int tpm_continue_selftest(struct tpm_chip *chip) |
Stefan Berger | d97c6ad | 2011-11-11 12:57:03 -0500 | [diff] [blame] | 652 | { |
| 653 | int rc; |
| 654 | struct tpm_cmd_t cmd; |
| 655 | |
| 656 | cmd.header.in = continue_selftest_header; |
Jarkko Sakkinen | d4816ed | 2016-08-16 22:00:38 +0300 | [diff] [blame] | 657 | rc = tpm_transmit_cmd(chip, &cmd, CONTINUE_SELFTEST_RESULT_SIZE, 0, |
Jarkko Sakkinen | 87155b7 | 2014-12-12 11:46:33 -0800 | [diff] [blame] | 658 | "continue selftest"); |
Stefan Berger | d97c6ad | 2011-11-11 12:57:03 -0500 | [diff] [blame] | 659 | return rc; |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 660 | } |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 661 | |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 662 | #define TPM_ORDINAL_PCRREAD cpu_to_be32(21) |
| 663 | #define READ_PCR_RESULT_SIZE 30 |
Julia Lawall | 0014777 | 2016-09-11 15:05:52 +0200 | [diff] [blame] | 664 | static const struct tpm_input_header pcrread_header = { |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 665 | .tag = TPM_TAG_RQU_COMMAND, |
| 666 | .length = cpu_to_be32(14), |
| 667 | .ordinal = TPM_ORDINAL_PCRREAD |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | }; |
| 669 | |
Jason Gunthorpe | 000a07b | 2013-11-26 13:30:41 -0700 | [diff] [blame] | 670 | int tpm_pcr_read_dev(struct tpm_chip *chip, int pcr_idx, u8 *res_buf) |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 671 | { |
| 672 | int rc; |
| 673 | struct tpm_cmd_t cmd; |
| 674 | |
| 675 | cmd.header.in = pcrread_header; |
| 676 | cmd.params.pcrread_in.pcr_idx = cpu_to_be32(pcr_idx); |
Jarkko Sakkinen | d4816ed | 2016-08-16 22:00:38 +0300 | [diff] [blame] | 677 | rc = tpm_transmit_cmd(chip, &cmd, READ_PCR_RESULT_SIZE, 0, |
Jarkko Sakkinen | 87155b7 | 2014-12-12 11:46:33 -0800 | [diff] [blame] | 678 | "attempting to read a pcr value"); |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 679 | |
| 680 | if (rc == 0) |
| 681 | memcpy(res_buf, cmd.params.pcrread_out.pcr_result, |
| 682 | TPM_DIGEST_SIZE); |
| 683 | return rc; |
| 684 | } |
| 685 | |
| 686 | /** |
Jarkko Sakkinen | 954650e | 2015-05-30 08:09:04 +0300 | [diff] [blame] | 687 | * tpm_is_tpm2 - is the chip a TPM2 chip? |
| 688 | * @chip_num: tpm idx # or ANY |
| 689 | * |
| 690 | * Returns < 0 on error, and 1 or 0 on success depending whether the chip |
| 691 | * is a TPM2 chip. |
| 692 | */ |
| 693 | int tpm_is_tpm2(u32 chip_num) |
| 694 | { |
| 695 | struct tpm_chip *chip; |
| 696 | int rc; |
| 697 | |
| 698 | chip = tpm_chip_find_get(chip_num); |
| 699 | if (chip == NULL) |
| 700 | return -ENODEV; |
| 701 | |
| 702 | rc = (chip->flags & TPM_CHIP_FLAG_TPM2) != 0; |
| 703 | |
Jason Gunthorpe | 4e26195 | 2016-02-12 20:29:53 -0700 | [diff] [blame] | 704 | tpm_put_ops(chip); |
Jarkko Sakkinen | 954650e | 2015-05-30 08:09:04 +0300 | [diff] [blame] | 705 | |
| 706 | return rc; |
| 707 | } |
| 708 | EXPORT_SYMBOL_GPL(tpm_is_tpm2); |
| 709 | |
| 710 | /** |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 711 | * tpm_pcr_read - read a pcr value |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 712 | * @chip_num: tpm idx # or ANY |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 713 | * @pcr_idx: pcr idx to retrieve |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 714 | * @res_buf: TPM_PCR value |
| 715 | * size of res_buf is 20 bytes (or NULL if you don't care) |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 716 | * |
| 717 | * The TPM driver should be built-in, but for whatever reason it |
| 718 | * isn't, protect against the chip disappearing, by incrementing |
| 719 | * the module usage count. |
| 720 | */ |
| 721 | int tpm_pcr_read(u32 chip_num, int pcr_idx, u8 *res_buf) |
| 722 | { |
| 723 | struct tpm_chip *chip; |
| 724 | int rc; |
| 725 | |
| 726 | chip = tpm_chip_find_get(chip_num); |
| 727 | if (chip == NULL) |
| 728 | return -ENODEV; |
Jarkko Sakkinen | 7a1d7e6 | 2014-12-12 11:46:38 -0800 | [diff] [blame] | 729 | if (chip->flags & TPM_CHIP_FLAG_TPM2) |
| 730 | rc = tpm2_pcr_read(chip, pcr_idx, res_buf); |
| 731 | else |
| 732 | rc = tpm_pcr_read_dev(chip, pcr_idx, res_buf); |
Jason Gunthorpe | 4e26195 | 2016-02-12 20:29:53 -0700 | [diff] [blame] | 733 | tpm_put_ops(chip); |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 734 | return rc; |
| 735 | } |
| 736 | EXPORT_SYMBOL_GPL(tpm_pcr_read); |
| 737 | |
Winkler, Tomas | ca6d458 | 2016-11-01 03:05:13 +0200 | [diff] [blame] | 738 | #define TPM_ORD_PCR_EXTEND cpu_to_be32(20) |
| 739 | #define EXTEND_PCR_RESULT_SIZE 34 |
| 740 | static const struct tpm_input_header pcrextend_header = { |
| 741 | .tag = TPM_TAG_RQU_COMMAND, |
| 742 | .length = cpu_to_be32(34), |
| 743 | .ordinal = TPM_ORD_PCR_EXTEND |
| 744 | }; |
| 745 | |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 746 | /** |
| 747 | * tpm_pcr_extend - extend pcr value with hash |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 748 | * @chip_num: tpm idx # or AN& |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 749 | * @pcr_idx: pcr idx to extend |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 750 | * @hash: hash value used to extend pcr value |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 751 | * |
| 752 | * The TPM driver should be built-in, but for whatever reason it |
| 753 | * isn't, protect against the chip disappearing, by incrementing |
| 754 | * the module usage count. |
| 755 | */ |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 756 | int tpm_pcr_extend(u32 chip_num, int pcr_idx, const u8 *hash) |
| 757 | { |
| 758 | struct tpm_cmd_t cmd; |
| 759 | int rc; |
| 760 | struct tpm_chip *chip; |
| 761 | |
| 762 | chip = tpm_chip_find_get(chip_num); |
| 763 | if (chip == NULL) |
| 764 | return -ENODEV; |
| 765 | |
Jarkko Sakkinen | 7a1d7e6 | 2014-12-12 11:46:38 -0800 | [diff] [blame] | 766 | if (chip->flags & TPM_CHIP_FLAG_TPM2) { |
| 767 | rc = tpm2_pcr_extend(chip, pcr_idx, hash); |
Jason Gunthorpe | 4e26195 | 2016-02-12 20:29:53 -0700 | [diff] [blame] | 768 | tpm_put_ops(chip); |
Jarkko Sakkinen | 7a1d7e6 | 2014-12-12 11:46:38 -0800 | [diff] [blame] | 769 | return rc; |
| 770 | } |
| 771 | |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 772 | cmd.header.in = pcrextend_header; |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 773 | cmd.params.pcrextend_in.pcr_idx = cpu_to_be32(pcr_idx); |
| 774 | memcpy(cmd.params.pcrextend_in.hash, hash, TPM_DIGEST_SIZE); |
Jarkko Sakkinen | d4816ed | 2016-08-16 22:00:38 +0300 | [diff] [blame] | 775 | rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE, 0, |
Jarkko Sakkinen | 87155b7 | 2014-12-12 11:46:33 -0800 | [diff] [blame] | 776 | "attempting extend a PCR value"); |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 777 | |
Jason Gunthorpe | 4e26195 | 2016-02-12 20:29:53 -0700 | [diff] [blame] | 778 | tpm_put_ops(chip); |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 779 | return rc; |
| 780 | } |
| 781 | EXPORT_SYMBOL_GPL(tpm_pcr_extend); |
| 782 | |
Stefan Berger | 68d6e67 | 2011-11-11 12:57:04 -0500 | [diff] [blame] | 783 | /** |
| 784 | * tpm_do_selftest - have the TPM continue its selftest and wait until it |
| 785 | * can receive further commands |
| 786 | * @chip: TPM chip to use |
| 787 | * |
| 788 | * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing |
| 789 | * a TPM error code. |
| 790 | */ |
| 791 | int tpm_do_selftest(struct tpm_chip *chip) |
| 792 | { |
| 793 | int rc; |
Stefan Berger | 68d6e67 | 2011-11-11 12:57:04 -0500 | [diff] [blame] | 794 | unsigned int loops; |
Jason Gunthorpe | 4643826 | 2012-11-21 13:15:54 -0800 | [diff] [blame] | 795 | unsigned int delay_msec = 100; |
Stefan Berger | 68d6e67 | 2011-11-11 12:57:04 -0500 | [diff] [blame] | 796 | unsigned long duration; |
Jarkko Sakkinen | 0c54133 | 2016-06-17 13:12:20 +0200 | [diff] [blame] | 797 | u8 dummy[TPM_DIGEST_SIZE]; |
Stefan Berger | 68d6e67 | 2011-11-11 12:57:04 -0500 | [diff] [blame] | 798 | |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 799 | duration = tpm_calc_ordinal_duration(chip, TPM_ORD_CONTINUE_SELFTEST); |
Stefan Berger | 68d6e67 | 2011-11-11 12:57:04 -0500 | [diff] [blame] | 800 | |
| 801 | loops = jiffies_to_msecs(duration) / delay_msec; |
| 802 | |
| 803 | rc = tpm_continue_selftest(chip); |
| 804 | /* This may fail if there was no TPM driver during a suspend/resume |
| 805 | * cycle; some may return 10 (BAD_ORDINAL), others 28 (FAILEDSELFTEST) |
| 806 | */ |
| 807 | if (rc) |
| 808 | return rc; |
| 809 | |
| 810 | do { |
Rajiv Andrade | 24ebe66 | 2012-04-24 17:38:17 -0300 | [diff] [blame] | 811 | /* Attempt to read a PCR value */ |
Jarkko Sakkinen | 0c54133 | 2016-06-17 13:12:20 +0200 | [diff] [blame] | 812 | rc = tpm_pcr_read_dev(chip, 0, dummy); |
| 813 | |
Jason Gunthorpe | 4643826 | 2012-11-21 13:15:54 -0800 | [diff] [blame] | 814 | /* Some buggy TPMs will not respond to tpm_tis_ready() for |
| 815 | * around 300ms while the self test is ongoing, keep trying |
| 816 | * until the self test duration expires. */ |
| 817 | if (rc == -ETIME) { |
Jason Gunthorpe | 8cfffc9 | 2016-02-29 12:29:47 -0500 | [diff] [blame] | 818 | dev_info( |
| 819 | &chip->dev, HW_ERR |
| 820 | "TPM command timed out during continue self test"); |
Jason Gunthorpe | 4643826 | 2012-11-21 13:15:54 -0800 | [diff] [blame] | 821 | msleep(delay_msec); |
| 822 | continue; |
| 823 | } |
Rajiv Andrade | 24ebe66 | 2012-04-24 17:38:17 -0300 | [diff] [blame] | 824 | |
Stefan Berger | be40541 | 2012-01-17 22:07:30 -0500 | [diff] [blame] | 825 | if (rc == TPM_ERR_DISABLED || rc == TPM_ERR_DEACTIVATED) { |
Jason Gunthorpe | 8cfffc9 | 2016-02-29 12:29:47 -0500 | [diff] [blame] | 826 | dev_info(&chip->dev, |
Stefan Berger | be40541 | 2012-01-17 22:07:30 -0500 | [diff] [blame] | 827 | "TPM is disabled/deactivated (0x%X)\n", rc); |
| 828 | /* TPM is disabled and/or deactivated; driver can |
| 829 | * proceed and TPM does handle commands for |
| 830 | * suspend/resume correctly |
| 831 | */ |
| 832 | return 0; |
| 833 | } |
Stefan Berger | 68d6e67 | 2011-11-11 12:57:04 -0500 | [diff] [blame] | 834 | if (rc != TPM_WARN_DOING_SELFTEST) |
| 835 | return rc; |
| 836 | msleep(delay_msec); |
| 837 | } while (--loops > 0); |
| 838 | |
| 839 | return rc; |
| 840 | } |
| 841 | EXPORT_SYMBOL_GPL(tpm_do_selftest); |
| 842 | |
Jason Gunthorpe | cae8b44 | 2016-07-12 11:41:49 -0600 | [diff] [blame] | 843 | /** |
| 844 | * tpm1_auto_startup - Perform the standard automatic TPM initialization |
| 845 | * sequence |
| 846 | * @chip: TPM chip to use |
| 847 | * |
| 848 | * Returns 0 on success, < 0 in case of fatal error. |
| 849 | */ |
| 850 | int tpm1_auto_startup(struct tpm_chip *chip) |
| 851 | { |
| 852 | int rc; |
| 853 | |
| 854 | rc = tpm_get_timeouts(chip); |
| 855 | if (rc) |
| 856 | goto out; |
| 857 | rc = tpm_do_selftest(chip); |
| 858 | if (rc) { |
| 859 | dev_err(&chip->dev, "TPM self test failed\n"); |
| 860 | goto out; |
| 861 | } |
| 862 | |
| 863 | return rc; |
| 864 | out: |
| 865 | if (rc > 0) |
| 866 | rc = -ENODEV; |
| 867 | return rc; |
| 868 | } |
| 869 | |
Mimi Zohar | c749ba9 | 2010-11-23 18:54:16 -0500 | [diff] [blame] | 870 | int tpm_send(u32 chip_num, void *cmd, size_t buflen) |
| 871 | { |
| 872 | struct tpm_chip *chip; |
| 873 | int rc; |
| 874 | |
| 875 | chip = tpm_chip_find_get(chip_num); |
| 876 | if (chip == NULL) |
| 877 | return -ENODEV; |
| 878 | |
Jarkko Sakkinen | d4816ed | 2016-08-16 22:00:38 +0300 | [diff] [blame] | 879 | rc = tpm_transmit_cmd(chip, cmd, buflen, 0, "attempting tpm_cmd"); |
Mimi Zohar | c749ba9 | 2010-11-23 18:54:16 -0500 | [diff] [blame] | 880 | |
Jason Gunthorpe | 4e26195 | 2016-02-12 20:29:53 -0700 | [diff] [blame] | 881 | tpm_put_ops(chip); |
Mimi Zohar | c749ba9 | 2010-11-23 18:54:16 -0500 | [diff] [blame] | 882 | return rc; |
| 883 | } |
| 884 | EXPORT_SYMBOL_GPL(tpm_send); |
| 885 | |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 886 | static bool wait_for_tpm_stat_cond(struct tpm_chip *chip, u8 mask, |
| 887 | bool check_cancel, bool *canceled) |
Stefan Berger | 78f09cc | 2013-01-22 13:57:53 -0600 | [diff] [blame] | 888 | { |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame] | 889 | u8 status = chip->ops->status(chip); |
Stefan Berger | 78f09cc | 2013-01-22 13:57:53 -0600 | [diff] [blame] | 890 | |
| 891 | *canceled = false; |
| 892 | if ((status & mask) == mask) |
| 893 | return true; |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame] | 894 | if (check_cancel && chip->ops->req_canceled(chip, status)) { |
Stefan Berger | 78f09cc | 2013-01-22 13:57:53 -0600 | [diff] [blame] | 895 | *canceled = true; |
| 896 | return true; |
| 897 | } |
| 898 | return false; |
| 899 | } |
| 900 | |
Rajiv Andrade | fd04886 | 2011-09-16 14:39:40 -0300 | [diff] [blame] | 901 | int wait_for_tpm_stat(struct tpm_chip *chip, u8 mask, unsigned long timeout, |
Stefan Berger | 78f09cc | 2013-01-22 13:57:53 -0600 | [diff] [blame] | 902 | wait_queue_head_t *queue, bool check_cancel) |
Rajiv Andrade | fd04886 | 2011-09-16 14:39:40 -0300 | [diff] [blame] | 903 | { |
| 904 | unsigned long stop; |
| 905 | long rc; |
| 906 | u8 status; |
Stefan Berger | 78f09cc | 2013-01-22 13:57:53 -0600 | [diff] [blame] | 907 | bool canceled = false; |
Rajiv Andrade | fd04886 | 2011-09-16 14:39:40 -0300 | [diff] [blame] | 908 | |
| 909 | /* check current status */ |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame] | 910 | status = chip->ops->status(chip); |
Rajiv Andrade | fd04886 | 2011-09-16 14:39:40 -0300 | [diff] [blame] | 911 | if ((status & mask) == mask) |
| 912 | return 0; |
| 913 | |
| 914 | stop = jiffies + timeout; |
| 915 | |
Christophe Ricard | 570a360 | 2016-03-31 22:56:56 +0200 | [diff] [blame] | 916 | if (chip->flags & TPM_CHIP_FLAG_IRQ) { |
Rajiv Andrade | fd04886 | 2011-09-16 14:39:40 -0300 | [diff] [blame] | 917 | again: |
| 918 | timeout = stop - jiffies; |
| 919 | if ((long)timeout <= 0) |
| 920 | return -ETIME; |
| 921 | rc = wait_event_interruptible_timeout(*queue, |
Stefan Berger | 78f09cc | 2013-01-22 13:57:53 -0600 | [diff] [blame] | 922 | wait_for_tpm_stat_cond(chip, mask, check_cancel, |
| 923 | &canceled), |
| 924 | timeout); |
| 925 | if (rc > 0) { |
| 926 | if (canceled) |
| 927 | return -ECANCELED; |
Rajiv Andrade | fd04886 | 2011-09-16 14:39:40 -0300 | [diff] [blame] | 928 | return 0; |
Stefan Berger | 78f09cc | 2013-01-22 13:57:53 -0600 | [diff] [blame] | 929 | } |
Rajiv Andrade | fd04886 | 2011-09-16 14:39:40 -0300 | [diff] [blame] | 930 | if (rc == -ERESTARTSYS && freezing(current)) { |
| 931 | clear_thread_flag(TIF_SIGPENDING); |
| 932 | goto again; |
| 933 | } |
| 934 | } else { |
| 935 | do { |
| 936 | msleep(TPM_TIMEOUT); |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame] | 937 | status = chip->ops->status(chip); |
Rajiv Andrade | fd04886 | 2011-09-16 14:39:40 -0300 | [diff] [blame] | 938 | if ((status & mask) == mask) |
| 939 | return 0; |
| 940 | } while (time_before(jiffies, stop)); |
| 941 | } |
| 942 | return -ETIME; |
| 943 | } |
| 944 | EXPORT_SYMBOL_GPL(wait_for_tpm_stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | |
Rajiv Andrade | 225a9be | 2010-03-25 00:55:32 -0300 | [diff] [blame] | 946 | #define TPM_ORD_SAVESTATE cpu_to_be32(152) |
| 947 | #define SAVESTATE_RESULT_SIZE 10 |
| 948 | |
Julia Lawall | 0014777 | 2016-09-11 15:05:52 +0200 | [diff] [blame] | 949 | static const struct tpm_input_header savestate_header = { |
Rajiv Andrade | 225a9be | 2010-03-25 00:55:32 -0300 | [diff] [blame] | 950 | .tag = TPM_TAG_RQU_COMMAND, |
| 951 | .length = cpu_to_be32(10), |
| 952 | .ordinal = TPM_ORD_SAVESTATE |
| 953 | }; |
| 954 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | /* |
| 956 | * We are about to suspend. Save the TPM state |
| 957 | * so that it can be restored. |
| 958 | */ |
Rafael J. Wysocki | 035e2ce | 2012-07-06 19:09:01 +0200 | [diff] [blame] | 959 | int tpm_pm_suspend(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | { |
Stefan Berger | ec03c50 | 2016-05-11 11:28:27 -0400 | [diff] [blame] | 961 | struct tpm_chip *chip = dev_get_drvdata(dev); |
Rajiv Andrade | 225a9be | 2010-03-25 00:55:32 -0300 | [diff] [blame] | 962 | struct tpm_cmd_t cmd; |
Duncan Laurie | 32d33b2 | 2013-03-17 14:56:39 -0700 | [diff] [blame] | 963 | int rc, try; |
Rajiv Andrade | 225a9be | 2010-03-25 00:55:32 -0300 | [diff] [blame] | 964 | |
| 965 | u8 dummy_hash[TPM_DIGEST_SIZE] = { 0 }; |
David Smith | 2490c68 | 2008-01-14 00:55:12 -0800 | [diff] [blame] | 966 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | if (chip == NULL) |
| 968 | return -ENODEV; |
| 969 | |
Jarkko Sakkinen | 74d6b3c | 2015-01-29 07:43:47 +0200 | [diff] [blame] | 970 | if (chip->flags & TPM_CHIP_FLAG_TPM2) { |
| 971 | tpm2_shutdown(chip, TPM2_SU_STATE); |
| 972 | return 0; |
| 973 | } |
Jarkko Sakkinen | 30fc8d1 | 2014-12-12 11:46:39 -0800 | [diff] [blame] | 974 | |
Rajiv Andrade | 225a9be | 2010-03-25 00:55:32 -0300 | [diff] [blame] | 975 | /* for buggy tpm, flush pcrs with extend to selected dummy */ |
| 976 | if (tpm_suspend_pcr) { |
| 977 | cmd.header.in = pcrextend_header; |
| 978 | cmd.params.pcrextend_in.pcr_idx = cpu_to_be32(tpm_suspend_pcr); |
| 979 | memcpy(cmd.params.pcrextend_in.hash, dummy_hash, |
| 980 | TPM_DIGEST_SIZE); |
Jarkko Sakkinen | d4816ed | 2016-08-16 22:00:38 +0300 | [diff] [blame] | 981 | rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE, 0, |
Jarkko Sakkinen | 87155b7 | 2014-12-12 11:46:33 -0800 | [diff] [blame] | 982 | "extending dummy pcr before suspend"); |
Rajiv Andrade | 225a9be | 2010-03-25 00:55:32 -0300 | [diff] [blame] | 983 | } |
| 984 | |
| 985 | /* now do the actual savestate */ |
Duncan Laurie | 32d33b2 | 2013-03-17 14:56:39 -0700 | [diff] [blame] | 986 | for (try = 0; try < TPM_RETRY; try++) { |
| 987 | cmd.header.in = savestate_header; |
Jarkko Sakkinen | d4816ed | 2016-08-16 22:00:38 +0300 | [diff] [blame] | 988 | rc = tpm_transmit_cmd(chip, &cmd, SAVESTATE_RESULT_SIZE, 0, |
| 989 | NULL); |
Duncan Laurie | 32d33b2 | 2013-03-17 14:56:39 -0700 | [diff] [blame] | 990 | |
| 991 | /* |
| 992 | * If the TPM indicates that it is too busy to respond to |
| 993 | * this command then retry before giving up. It can take |
| 994 | * several seconds for this TPM to be ready. |
| 995 | * |
| 996 | * This can happen if the TPM has already been sent the |
| 997 | * SaveState command before the driver has loaded. TCG 1.2 |
| 998 | * specification states that any communication after SaveState |
| 999 | * may cause the TPM to invalidate previously saved state. |
| 1000 | */ |
| 1001 | if (rc != TPM_WARN_RETRY) |
| 1002 | break; |
| 1003 | msleep(TPM_TIMEOUT_RETRY); |
| 1004 | } |
| 1005 | |
| 1006 | if (rc) |
Jason Gunthorpe | 8cfffc9 | 2016-02-29 12:29:47 -0500 | [diff] [blame] | 1007 | dev_err(&chip->dev, |
Duncan Laurie | 32d33b2 | 2013-03-17 14:56:39 -0700 | [diff] [blame] | 1008 | "Error (%d) sending savestate before suspend\n", rc); |
| 1009 | else if (try > 0) |
Jason Gunthorpe | 8cfffc9 | 2016-02-29 12:29:47 -0500 | [diff] [blame] | 1010 | dev_warn(&chip->dev, "TPM savestate took %dms\n", |
Duncan Laurie | 32d33b2 | 2013-03-17 14:56:39 -0700 | [diff] [blame] | 1011 | try * TPM_TIMEOUT_RETRY); |
| 1012 | |
Rajiv Andrade | 225a9be | 2010-03-25 00:55:32 -0300 | [diff] [blame] | 1013 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | EXPORT_SYMBOL_GPL(tpm_pm_suspend); |
| 1016 | |
| 1017 | /* |
| 1018 | * Resume from a power safe. The BIOS already restored |
| 1019 | * the TPM state. |
| 1020 | */ |
Kylene Jo Hall | ce2c87d | 2005-10-30 15:03:25 -0800 | [diff] [blame] | 1021 | int tpm_pm_resume(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | { |
Stefan Berger | ec03c50 | 2016-05-11 11:28:27 -0400 | [diff] [blame] | 1023 | struct tpm_chip *chip = dev_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | |
| 1025 | if (chip == NULL) |
| 1026 | return -ENODEV; |
| 1027 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | return 0; |
| 1029 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | EXPORT_SYMBOL_GPL(tpm_pm_resume); |
| 1031 | |
Kent Yoder | 41ab999 | 2012-06-07 13:47:14 -0500 | [diff] [blame] | 1032 | #define TPM_GETRANDOM_RESULT_SIZE 18 |
Julia Lawall | 0014777 | 2016-09-11 15:05:52 +0200 | [diff] [blame] | 1033 | static const struct tpm_input_header tpm_getrandom_header = { |
Kent Yoder | 41ab999 | 2012-06-07 13:47:14 -0500 | [diff] [blame] | 1034 | .tag = TPM_TAG_RQU_COMMAND, |
| 1035 | .length = cpu_to_be32(14), |
| 1036 | .ordinal = TPM_ORD_GET_RANDOM |
| 1037 | }; |
| 1038 | |
| 1039 | /** |
| 1040 | * tpm_get_random() - Get random bytes from the tpm's RNG |
| 1041 | * @chip_num: A specific chip number for the request or TPM_ANY_NUM |
| 1042 | * @out: destination buffer for the random bytes |
| 1043 | * @max: the max number of bytes to write to @out |
| 1044 | * |
| 1045 | * Returns < 0 on error and the number of bytes read on success |
| 1046 | */ |
| 1047 | int tpm_get_random(u32 chip_num, u8 *out, size_t max) |
| 1048 | { |
| 1049 | struct tpm_chip *chip; |
| 1050 | struct tpm_cmd_t tpm_cmd; |
| 1051 | u32 recd, num_bytes = min_t(u32, max, TPM_MAX_RNG_DATA); |
| 1052 | int err, total = 0, retries = 5; |
| 1053 | u8 *dest = out; |
| 1054 | |
Jarkko Sakkinen | 3e14d83 | 2014-05-09 14:23:10 +0300 | [diff] [blame] | 1055 | if (!out || !num_bytes || max > TPM_MAX_RNG_DATA) |
| 1056 | return -EINVAL; |
| 1057 | |
Kent Yoder | 41ab999 | 2012-06-07 13:47:14 -0500 | [diff] [blame] | 1058 | chip = tpm_chip_find_get(chip_num); |
| 1059 | if (chip == NULL) |
| 1060 | return -ENODEV; |
| 1061 | |
Jarkko Sakkinen | 7a1d7e6 | 2014-12-12 11:46:38 -0800 | [diff] [blame] | 1062 | if (chip->flags & TPM_CHIP_FLAG_TPM2) { |
| 1063 | err = tpm2_get_random(chip, out, max); |
Jason Gunthorpe | 4e26195 | 2016-02-12 20:29:53 -0700 | [diff] [blame] | 1064 | tpm_put_ops(chip); |
Jarkko Sakkinen | 7a1d7e6 | 2014-12-12 11:46:38 -0800 | [diff] [blame] | 1065 | return err; |
| 1066 | } |
| 1067 | |
Kent Yoder | 41ab999 | 2012-06-07 13:47:14 -0500 | [diff] [blame] | 1068 | do { |
| 1069 | tpm_cmd.header.in = tpm_getrandom_header; |
| 1070 | tpm_cmd.params.getrandom_in.num_bytes = cpu_to_be32(num_bytes); |
| 1071 | |
Jarkko Sakkinen | 87155b7 | 2014-12-12 11:46:33 -0800 | [diff] [blame] | 1072 | err = tpm_transmit_cmd(chip, &tpm_cmd, |
Jarkko Sakkinen | d4816ed | 2016-08-16 22:00:38 +0300 | [diff] [blame] | 1073 | TPM_GETRANDOM_RESULT_SIZE + num_bytes, |
| 1074 | 0, "attempting get random"); |
Kent Yoder | 41ab999 | 2012-06-07 13:47:14 -0500 | [diff] [blame] | 1075 | if (err) |
| 1076 | break; |
| 1077 | |
| 1078 | recd = be32_to_cpu(tpm_cmd.params.getrandom_out.rng_data_len); |
| 1079 | memcpy(dest, tpm_cmd.params.getrandom_out.rng_data, recd); |
| 1080 | |
| 1081 | dest += recd; |
| 1082 | total += recd; |
| 1083 | num_bytes -= recd; |
| 1084 | } while (retries-- && total < max); |
| 1085 | |
Jason Gunthorpe | 4e26195 | 2016-02-12 20:29:53 -0700 | [diff] [blame] | 1086 | tpm_put_ops(chip); |
Kent Yoder | 41ab999 | 2012-06-07 13:47:14 -0500 | [diff] [blame] | 1087 | return total ? total : -EIO; |
| 1088 | } |
| 1089 | EXPORT_SYMBOL_GPL(tpm_get_random); |
| 1090 | |
Jarkko Sakkinen | 954650e | 2015-05-30 08:09:04 +0300 | [diff] [blame] | 1091 | /** |
| 1092 | * tpm_seal_trusted() - seal a trusted key |
| 1093 | * @chip_num: A specific chip number for the request or TPM_ANY_NUM |
| 1094 | * @options: authentication values and other options |
| 1095 | * @payload: the key data in clear and encrypted form |
| 1096 | * |
| 1097 | * Returns < 0 on error and 0 on success. At the moment, only TPM 2.0 chips |
| 1098 | * are supported. |
| 1099 | */ |
| 1100 | int tpm_seal_trusted(u32 chip_num, struct trusted_key_payload *payload, |
| 1101 | struct trusted_key_options *options) |
| 1102 | { |
| 1103 | struct tpm_chip *chip; |
| 1104 | int rc; |
| 1105 | |
| 1106 | chip = tpm_chip_find_get(chip_num); |
| 1107 | if (chip == NULL || !(chip->flags & TPM_CHIP_FLAG_TPM2)) |
| 1108 | return -ENODEV; |
| 1109 | |
| 1110 | rc = tpm2_seal_trusted(chip, payload, options); |
| 1111 | |
Jason Gunthorpe | 4e26195 | 2016-02-12 20:29:53 -0700 | [diff] [blame] | 1112 | tpm_put_ops(chip); |
Jarkko Sakkinen | 954650e | 2015-05-30 08:09:04 +0300 | [diff] [blame] | 1113 | return rc; |
| 1114 | } |
| 1115 | EXPORT_SYMBOL_GPL(tpm_seal_trusted); |
| 1116 | |
| 1117 | /** |
| 1118 | * tpm_unseal_trusted() - unseal a trusted key |
| 1119 | * @chip_num: A specific chip number for the request or TPM_ANY_NUM |
| 1120 | * @options: authentication values and other options |
| 1121 | * @payload: the key data in clear and encrypted form |
| 1122 | * |
| 1123 | * Returns < 0 on error and 0 on success. At the moment, only TPM 2.0 chips |
| 1124 | * are supported. |
| 1125 | */ |
| 1126 | int tpm_unseal_trusted(u32 chip_num, struct trusted_key_payload *payload, |
| 1127 | struct trusted_key_options *options) |
| 1128 | { |
| 1129 | struct tpm_chip *chip; |
| 1130 | int rc; |
| 1131 | |
| 1132 | chip = tpm_chip_find_get(chip_num); |
| 1133 | if (chip == NULL || !(chip->flags & TPM_CHIP_FLAG_TPM2)) |
| 1134 | return -ENODEV; |
| 1135 | |
| 1136 | rc = tpm2_unseal_trusted(chip, payload, options); |
| 1137 | |
Jason Gunthorpe | 4e26195 | 2016-02-12 20:29:53 -0700 | [diff] [blame] | 1138 | tpm_put_ops(chip); |
| 1139 | |
Jarkko Sakkinen | 954650e | 2015-05-30 08:09:04 +0300 | [diff] [blame] | 1140 | return rc; |
| 1141 | } |
| 1142 | EXPORT_SYMBOL_GPL(tpm_unseal_trusted); |
| 1143 | |
Jarkko Sakkinen | 313d21e | 2014-12-12 11:46:37 -0800 | [diff] [blame] | 1144 | static int __init tpm_init(void) |
| 1145 | { |
| 1146 | int rc; |
| 1147 | |
| 1148 | tpm_class = class_create(THIS_MODULE, "tpm"); |
| 1149 | if (IS_ERR(tpm_class)) { |
| 1150 | pr_err("couldn't create tpm class\n"); |
| 1151 | return PTR_ERR(tpm_class); |
| 1152 | } |
| 1153 | |
| 1154 | rc = alloc_chrdev_region(&tpm_devt, 0, TPM_NUM_DEVICES, "tpm"); |
| 1155 | if (rc < 0) { |
| 1156 | pr_err("tpm: failed to allocate char dev region\n"); |
| 1157 | class_destroy(tpm_class); |
| 1158 | return rc; |
| 1159 | } |
| 1160 | |
| 1161 | return 0; |
| 1162 | } |
| 1163 | |
| 1164 | static void __exit tpm_exit(void) |
| 1165 | { |
Stefan Berger | 1551678 | 2016-02-29 08:53:02 -0500 | [diff] [blame] | 1166 | idr_destroy(&dev_nums_idr); |
Jarkko Sakkinen | 313d21e | 2014-12-12 11:46:37 -0800 | [diff] [blame] | 1167 | class_destroy(tpm_class); |
| 1168 | unregister_chrdev_region(tpm_devt, TPM_NUM_DEVICES); |
| 1169 | } |
| 1170 | |
| 1171 | subsys_initcall(tpm_init); |
| 1172 | module_exit(tpm_exit); |
| 1173 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)"); |
| 1175 | MODULE_DESCRIPTION("TPM Driver"); |
| 1176 | MODULE_VERSION("2.0"); |
| 1177 | MODULE_LICENSE("GPL"); |