2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2004 IBM Corporation
|
2014-12-13 03:46:34 +08:00
|
|
|
* Copyright (C) 2014 Intel Corporation
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Leendert van Doorn <leendert@watson.ibm.com>
|
|
|
|
* Dave Safford <safford@watson.ibm.com>
|
|
|
|
* Reiner Sailer <sailer@watson.ibm.com>
|
|
|
|
* Kylene Hall <kjhall@us.ibm.com>
|
|
|
|
*
|
2007-08-23 05:01:04 +08:00
|
|
|
* Maintained by: <tpmdd-devel@lists.sourceforge.net>
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* Device driver for TCG/TCPA TPM (trusted platform module).
|
tpm: cleanup checkpatch warnings
before we rename the file it might be a good idea to cleanup the long
persisting checkpatch warnings.
Since everything is really trivial, splitting the patch up would only
result in noise.
For the interested reader - here the checkpatch warnings:
(regrouped for easer readability)
ERROR: trailing whitespace
+ * Specifications at www.trustedcomputinggroup.org^I $
+ * $
+^I/* $
+^I parameters (RSA 12->bytes: keybit, #primes, expbit) $
WARNING: unnecessary whitespace before a quoted newline
+ "invalid count value %x %zx \n", count, bufsiz);
ERROR: do not use assignment in if condition
+ if ((rc = chip->vendor.send(chip, (u8 *) buf, count)) < 0) {
ERROR: space required after that ',' (ctx:VxV)
+ len = tpm_transmit(chip,(u8 *) cmd, len);
^
ERROR: "foo * bar" should be "foo *bar"
+ssize_t tpm_show_enabled(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_enabled(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_active(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_active(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_owned(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_owned(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_temp_deactivated(struct device * dev,
+ struct device_attribute * attr, char *buf)
WARNING: please, no space before tabs
+ * @chip_num: ^Itpm idx # or ANY$
+ * @res_buf: ^ITPM_PCR value$
+ * ^I^Isize of res_buf is 20 bytes (or NULL if you don't care)$
+ * @chip_num: ^Itpm idx # or AN&$
+ * @hash: ^Ihash value used to extend pcr value$
ERROR: code indent should use tabs where possible
+^I TPM_ORD_CONTINUE_SELFTEST);$
WARNING: line over 80 characters
+static bool wait_for_tpm_stat_cond(struct tpm_chip *chip, u8 mask, bool check_cancel,
ERROR: trailing whitespace
+ * Called from tpm_<specific>.c probe function only for devices $
total: 16 errors, 7 warnings, 1554 lines checked
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
2013-10-22 06:29:14 +08:00
|
|
|
* Specifications at www.trustedcomputinggroup.org
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation, version 2 of the
|
|
|
|
* License.
|
tpm: cleanup checkpatch warnings
before we rename the file it might be a good idea to cleanup the long
persisting checkpatch warnings.
Since everything is really trivial, splitting the patch up would only
result in noise.
For the interested reader - here the checkpatch warnings:
(regrouped for easer readability)
ERROR: trailing whitespace
+ * Specifications at www.trustedcomputinggroup.org^I $
+ * $
+^I/* $
+^I parameters (RSA 12->bytes: keybit, #primes, expbit) $
WARNING: unnecessary whitespace before a quoted newline
+ "invalid count value %x %zx \n", count, bufsiz);
ERROR: do not use assignment in if condition
+ if ((rc = chip->vendor.send(chip, (u8 *) buf, count)) < 0) {
ERROR: space required after that ',' (ctx:VxV)
+ len = tpm_transmit(chip,(u8 *) cmd, len);
^
ERROR: "foo * bar" should be "foo *bar"
+ssize_t tpm_show_enabled(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_enabled(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_active(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_active(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_owned(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_owned(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_temp_deactivated(struct device * dev,
+ struct device_attribute * attr, char *buf)
WARNING: please, no space before tabs
+ * @chip_num: ^Itpm idx # or ANY$
+ * @res_buf: ^ITPM_PCR value$
+ * ^I^Isize of res_buf is 20 bytes (or NULL if you don't care)$
+ * @chip_num: ^Itpm idx # or AN&$
+ * @hash: ^Ihash value used to extend pcr value$
ERROR: code indent should use tabs where possible
+^I TPM_ORD_CONTINUE_SELFTEST);$
WARNING: line over 80 characters
+static bool wait_for_tpm_stat_cond(struct tpm_chip *chip, u8 mask, bool check_cancel,
ERROR: trailing whitespace
+ * Called from tpm_<specific>.c probe function only for devices $
total: 16 errors, 7 warnings, 1554 lines checked
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
2013-10-22 06:29:14 +08:00
|
|
|
*
|
2005-04-17 06:20:36 +08:00
|
|
|
* Note, the TPM chip is not interrupt driven (only polling)
|
|
|
|
* and can have very long timeouts (minutes!). Hence the unusual
|
2005-06-24 13:01:47 +08:00
|
|
|
* calls to msleep.
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/poll.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2007-05-08 15:32:02 +08:00
|
|
|
#include <linux/mutex.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/spinlock.h>
|
2011-09-17 01:39:40 +08:00
|
|
|
#include <linux/freezer.h>
|
2017-09-20 16:13:36 +08:00
|
|
|
#include <linux/tpm_eventlog.h>
|
2007-05-08 15:32:02 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#include "tpm.h"
|
|
|
|
|
2010-10-02 05:16:39 +08:00
|
|
|
/*
|
|
|
|
* Bug workaround - some TPM's don't flush the most
|
|
|
|
* recently changed pcr on suspend, so force the flush
|
|
|
|
* with an extend to the selected _unused_ non-volatile pcr.
|
|
|
|
*/
|
2018-10-20 02:23:07 +08:00
|
|
|
static u32 tpm_suspend_pcr;
|
2010-10-02 05:16:39 +08:00
|
|
|
module_param_named(suspend_pcr, tpm_suspend_pcr, uint, 0644);
|
|
|
|
MODULE_PARM_DESC(suspend_pcr,
|
2017-02-06 12:47:18 +08:00
|
|
|
"PCR to use for dummy writes to facilitate flush on suspend.");
|
2010-10-02 05:16:39 +08:00
|
|
|
|
2018-10-20 02:22:51 +08:00
|
|
|
/**
|
|
|
|
* tpm_calc_ordinal_duration() - calculate the maximum command duration
|
|
|
|
* @chip: TPM chip to use.
|
|
|
|
* @ordinal: TPM command ordinal.
|
|
|
|
*
|
|
|
|
* The function returns the maximum amount of time the chip could take
|
|
|
|
* to return the result for a particular ordinal in jiffies.
|
|
|
|
*
|
|
|
|
* Return: A maximal duration time for an ordinal in jiffies.
|
|
|
|
*/
|
|
|
|
unsigned long tpm_calc_ordinal_duration(struct tpm_chip *chip, u32 ordinal)
|
|
|
|
{
|
|
|
|
if (chip->flags & TPM_CHIP_FLAG_TPM2)
|
|
|
|
return tpm2_calc_ordinal_duration(chip, ordinal);
|
|
|
|
else
|
|
|
|
return tpm1_calc_ordinal_duration(chip, ordinal);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(tpm_calc_ordinal_duration);
|
|
|
|
|
2018-11-03 21:15:07 +08:00
|
|
|
static ssize_t tpm_try_transmit(struct tpm_chip *chip, void *buf, size_t bufsiz,
|
|
|
|
unsigned int flags)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2018-11-07 01:04:30 +08:00
|
|
|
struct tpm_header *header = buf;
|
2017-01-06 20:03:45 +08:00
|
|
|
int rc;
|
|
|
|
ssize_t len = 0;
|
2006-04-22 17:37:38 +08:00
|
|
|
u32 count, ordinal;
|
2005-06-24 13:01:47 +08:00
|
|
|
unsigned long stop;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2018-11-03 09:04:56 +08:00
|
|
|
if (bufsiz < TPM_HEADER_SIZE)
|
|
|
|
return -EINVAL;
|
2016-09-12 18:43:30 +08:00
|
|
|
|
2011-09-16 01:37:43 +08:00
|
|
|
if (bufsiz > TPM_BUFSIZE)
|
|
|
|
bufsiz = TPM_BUFSIZE;
|
|
|
|
|
2018-11-03 08:31:07 +08:00
|
|
|
count = be32_to_cpu(header->length);
|
|
|
|
ordinal = be32_to_cpu(header->ordinal);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (count == 0)
|
|
|
|
return -ENODATA;
|
|
|
|
if (count > bufsiz) {
|
2016-03-01 01:29:47 +08:00
|
|
|
dev_err(&chip->dev,
|
tpm: cleanup checkpatch warnings
before we rename the file it might be a good idea to cleanup the long
persisting checkpatch warnings.
Since everything is really trivial, splitting the patch up would only
result in noise.
For the interested reader - here the checkpatch warnings:
(regrouped for easer readability)
ERROR: trailing whitespace
+ * Specifications at www.trustedcomputinggroup.org^I $
+ * $
+^I/* $
+^I parameters (RSA 12->bytes: keybit, #primes, expbit) $
WARNING: unnecessary whitespace before a quoted newline
+ "invalid count value %x %zx \n", count, bufsiz);
ERROR: do not use assignment in if condition
+ if ((rc = chip->vendor.send(chip, (u8 *) buf, count)) < 0) {
ERROR: space required after that ',' (ctx:VxV)
+ len = tpm_transmit(chip,(u8 *) cmd, len);
^
ERROR: "foo * bar" should be "foo *bar"
+ssize_t tpm_show_enabled(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_enabled(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_active(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_active(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_owned(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_owned(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_temp_deactivated(struct device * dev,
+ struct device_attribute * attr, char *buf)
WARNING: please, no space before tabs
+ * @chip_num: ^Itpm idx # or ANY$
+ * @res_buf: ^ITPM_PCR value$
+ * ^I^Isize of res_buf is 20 bytes (or NULL if you don't care)$
+ * @chip_num: ^Itpm idx # or AN&$
+ * @hash: ^Ihash value used to extend pcr value$
ERROR: code indent should use tabs where possible
+^I TPM_ORD_CONTINUE_SELFTEST);$
WARNING: line over 80 characters
+static bool wait_for_tpm_stat_cond(struct tpm_chip *chip, u8 mask, bool check_cancel,
ERROR: trailing whitespace
+ * Called from tpm_<specific>.c probe function only for devices $
total: 16 errors, 7 warnings, 1554 lines checked
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
2013-10-22 06:29:14 +08:00
|
|
|
"invalid count value %x %zx\n", count, bufsiz);
|
2005-04-17 06:20:36 +08:00
|
|
|
return -E2BIG;
|
|
|
|
}
|
|
|
|
|
2018-03-05 20:48:26 +08:00
|
|
|
rc = chip->ops->send(chip, buf, count);
|
tpm: cleanup checkpatch warnings
before we rename the file it might be a good idea to cleanup the long
persisting checkpatch warnings.
Since everything is really trivial, splitting the patch up would only
result in noise.
For the interested reader - here the checkpatch warnings:
(regrouped for easer readability)
ERROR: trailing whitespace
+ * Specifications at www.trustedcomputinggroup.org^I $
+ * $
+^I/* $
+^I parameters (RSA 12->bytes: keybit, #primes, expbit) $
WARNING: unnecessary whitespace before a quoted newline
+ "invalid count value %x %zx \n", count, bufsiz);
ERROR: do not use assignment in if condition
+ if ((rc = chip->vendor.send(chip, (u8 *) buf, count)) < 0) {
ERROR: space required after that ',' (ctx:VxV)
+ len = tpm_transmit(chip,(u8 *) cmd, len);
^
ERROR: "foo * bar" should be "foo *bar"
+ssize_t tpm_show_enabled(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_enabled(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_active(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_active(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_owned(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_owned(struct device * dev, struct device_attribute * attr,
+ssize_t tpm_show_temp_deactivated(struct device * dev,
+ struct device_attribute * attr, char *buf)
WARNING: please, no space before tabs
+ * @chip_num: ^Itpm idx # or ANY$
+ * @res_buf: ^ITPM_PCR value$
+ * ^I^Isize of res_buf is 20 bytes (or NULL if you don't care)$
+ * @chip_num: ^Itpm idx # or AN&$
+ * @hash: ^Ihash value used to extend pcr value$
ERROR: code indent should use tabs where possible
+^I TPM_ORD_CONTINUE_SELFTEST);$
WARNING: line over 80 characters
+static bool wait_for_tpm_stat_cond(struct tpm_chip *chip, u8 mask, bool check_cancel,
ERROR: trailing whitespace
+ * Called from tpm_<specific>.c probe function only for devices $
total: 16 errors, 7 warnings, 1554 lines checked
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
2013-10-22 06:29:14 +08:00
|
|
|
if (rc < 0) {
|
2017-05-26 06:29:13 +08:00
|
|
|
if (rc != -EPIPE)
|
|
|
|
dev_err(&chip->dev,
|
2019-02-09 00:30:58 +08:00
|
|
|
"%s: send(): error %d\n", __func__, rc);
|
2018-11-03 11:22:36 +08:00
|
|
|
return rc;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2019-02-09 00:30:58 +08:00
|
|
|
/* A sanity check. send() should just return zero on success e.g.
|
|
|
|
* not the command length.
|
|
|
|
*/
|
|
|
|
if (rc > 0) {
|
|
|
|
dev_warn(&chip->dev,
|
|
|
|
"%s: send(): invalid value %d\n", __func__, rc);
|
|
|
|
rc = 0;
|
|
|
|
}
|
|
|
|
|
2016-04-01 04:56:56 +08:00
|
|
|
if (chip->flags & TPM_CHIP_FLAG_IRQ)
|
2006-04-22 17:38:03 +08:00
|
|
|
goto out_recv;
|
|
|
|
|
2018-10-20 02:22:51 +08:00
|
|
|
stop = jiffies + tpm_calc_ordinal_duration(chip, ordinal);
|
2005-04-17 06:20:36 +08:00
|
|
|
do {
|
2013-11-27 04:30:44 +08:00
|
|
|
u8 status = chip->ops->status(chip);
|
|
|
|
if ((status & chip->ops->req_complete_mask) ==
|
|
|
|
chip->ops->req_complete_val)
|
2005-04-17 06:20:36 +08:00
|
|
|
goto out_recv;
|
2005-06-24 13:02:02 +08:00
|
|
|
|
2013-11-27 04:30:44 +08:00
|
|
|
if (chip->ops->req_canceled(chip, status)) {
|
2016-03-01 01:29:47 +08:00
|
|
|
dev_err(&chip->dev, "Operation Canceled\n");
|
2018-11-03 11:22:36 +08:00
|
|
|
return -ECANCELED;
|
2005-06-24 13:02:02 +08:00
|
|
|
}
|
|
|
|
|
2018-05-08 00:07:32 +08:00
|
|
|
tpm_msleep(TPM_TIMEOUT_POLL);
|
2005-04-17 06:20:36 +08:00
|
|
|
rmb();
|
2005-06-24 13:01:47 +08:00
|
|
|
} while (time_before(jiffies, stop));
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-11-27 04:30:44 +08:00
|
|
|
chip->ops->cancel(chip);
|
2016-03-01 01:29:47 +08:00
|
|
|
dev_err(&chip->dev, "Operation Timed out\n");
|
2018-11-03 11:22:36 +08:00
|
|
|
return -ETIME;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
out_recv:
|
2018-03-05 20:48:26 +08:00
|
|
|
len = chip->ops->recv(chip, buf, bufsiz);
|
2017-01-06 20:03:45 +08:00
|
|
|
if (len < 0) {
|
|
|
|
rc = len;
|
2018-11-04 22:15:49 +08:00
|
|
|
dev_err(&chip->dev, "tpm_transmit: tpm_recv: error %d\n", rc);
|
|
|
|
} else if (len < TPM_HEADER_SIZE || len != be32_to_cpu(header->length))
|
2017-02-15 03:57:42 +08:00
|
|
|
rc = -EFAULT;
|
2017-01-06 20:03:45 +08:00
|
|
|
|
|
|
|
return rc ? rc : len;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2018-03-22 02:43:48 +08:00
|
|
|
/**
|
|
|
|
* tpm_transmit - Internal kernel interface to transmit TPM commands.
|
2018-10-26 21:34:22 +08:00
|
|
|
* @chip: a TPM chip to use
|
|
|
|
* @buf: a TPM command buffer
|
|
|
|
* @bufsiz: length of the TPM command buffer
|
|
|
|
* @flags: TPM transmit flags
|
2018-03-22 02:43:48 +08:00
|
|
|
*
|
2018-10-26 21:34:22 +08:00
|
|
|
* A wrapper around tpm_try_transmit() that handles TPM2_RC_RETRY returns from
|
|
|
|
* the TPM and retransmits the command after a delay up to a maximum wait of
|
|
|
|
* TPM2_DURATION_LONG.
|
2018-03-22 02:43:48 +08:00
|
|
|
*
|
2018-10-26 21:34:22 +08:00
|
|
|
* Note that TPM 1.x never returns TPM2_RC_RETRY so the retry logic is TPM 2.0
|
|
|
|
* only.
|
2018-03-22 02:43:48 +08:00
|
|
|
*
|
|
|
|
* Return:
|
2018-10-26 21:34:22 +08:00
|
|
|
* * The response length - OK
|
|
|
|
* * -errno - A system error
|
2018-03-22 02:43:48 +08:00
|
|
|
*/
|
2018-11-03 21:15:07 +08:00
|
|
|
ssize_t tpm_transmit(struct tpm_chip *chip, u8 *buf, size_t bufsiz,
|
|
|
|
unsigned int flags)
|
2018-03-22 02:43:48 +08:00
|
|
|
{
|
2018-11-07 01:04:30 +08:00
|
|
|
struct tpm_header *header = (struct tpm_header *)buf;
|
2018-03-22 02:43:48 +08:00
|
|
|
/* space for header and handles */
|
|
|
|
u8 save[TPM_HEADER_SIZE + 3*sizeof(u32)];
|
|
|
|
unsigned int delay_msec = TPM2_DURATION_SHORT;
|
|
|
|
u32 rc = 0;
|
|
|
|
ssize_t ret;
|
2018-11-03 21:15:07 +08:00
|
|
|
const size_t save_size = min(sizeof(save), bufsiz);
|
2018-03-22 23:32:20 +08:00
|
|
|
/* the command code is where the return code will be */
|
|
|
|
u32 cc = be32_to_cpu(header->return_code);
|
2018-03-22 02:43:48 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Subtlety here: if we have a space, the handles will be
|
|
|
|
* transformed, so when we restore the header we also have to
|
|
|
|
* restore the handles.
|
|
|
|
*/
|
|
|
|
memcpy(save, buf, save_size);
|
|
|
|
|
|
|
|
for (;;) {
|
2018-11-05 03:18:46 +08:00
|
|
|
ret = tpm_chip_start(chip, flags);
|
2018-11-04 22:15:49 +08:00
|
|
|
if (ret)
|
2018-11-05 03:18:46 +08:00
|
|
|
return ret;
|
2018-11-04 22:15:49 +08:00
|
|
|
|
2018-11-03 21:15:07 +08:00
|
|
|
ret = tpm_try_transmit(chip, buf, bufsiz, flags);
|
2018-11-04 22:15:49 +08:00
|
|
|
|
2018-11-05 03:18:46 +08:00
|
|
|
tpm_chip_stop(chip, flags);
|
2018-03-22 02:43:48 +08:00
|
|
|
if (ret < 0)
|
|
|
|
break;
|
|
|
|
rc = be32_to_cpu(header->return_code);
|
2018-03-22 23:32:20 +08:00
|
|
|
if (rc != TPM2_RC_RETRY && rc != TPM2_RC_TESTING)
|
|
|
|
break;
|
|
|
|
/*
|
|
|
|
* return immediately if self test returns test
|
|
|
|
* still running to shorten boot time.
|
|
|
|
*/
|
|
|
|
if (rc == TPM2_RC_TESTING && cc == TPM2_CC_SELF_TEST)
|
2018-03-22 02:43:48 +08:00
|
|
|
break;
|
2018-04-03 00:20:06 +08:00
|
|
|
|
2018-03-22 02:43:48 +08:00
|
|
|
if (delay_msec > TPM2_DURATION_LONG) {
|
2018-03-22 23:32:20 +08:00
|
|
|
if (rc == TPM2_RC_RETRY)
|
|
|
|
dev_err(&chip->dev, "in retry loop\n");
|
|
|
|
else
|
|
|
|
dev_err(&chip->dev,
|
|
|
|
"self test is still running\n");
|
2018-03-22 02:43:48 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
tpm_msleep(delay_msec);
|
2018-04-03 00:20:06 +08:00
|
|
|
delay_msec *= 2;
|
2018-03-22 02:43:48 +08:00
|
|
|
memcpy(buf, save, save_size);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2018-10-26 21:34:22 +08:00
|
|
|
|
2016-11-23 18:04:11 +08:00
|
|
|
/**
|
2018-03-05 20:48:25 +08:00
|
|
|
* tpm_transmit_cmd - send a tpm command to the device
|
2018-10-26 21:34:22 +08:00
|
|
|
* @chip: a TPM chip to use
|
|
|
|
* @buf: a TPM command buffer
|
|
|
|
* @min_rsp_body_length: minimum expected length of response body
|
|
|
|
* @flags: TPM transmit flags
|
|
|
|
* @desc: command description used in the error message
|
2016-11-23 18:04:11 +08:00
|
|
|
*
|
|
|
|
* Return:
|
2018-10-26 21:34:22 +08:00
|
|
|
* * 0 - OK
|
|
|
|
* * -errno - A system error
|
|
|
|
* * TPM_RC - A TPM error
|
2016-11-23 18:04:11 +08:00
|
|
|
*/
|
2018-11-03 21:15:07 +08:00
|
|
|
ssize_t tpm_transmit_cmd(struct tpm_chip *chip, struct tpm_buf *buf,
|
|
|
|
size_t min_rsp_body_length, unsigned int flags,
|
|
|
|
const char *desc)
|
2006-04-22 17:37:05 +08:00
|
|
|
{
|
2018-11-07 01:04:30 +08:00
|
|
|
const struct tpm_header *header = (struct tpm_header *)buf->data;
|
2006-04-22 17:37:05 +08:00
|
|
|
int err;
|
2017-01-19 20:19:12 +08:00
|
|
|
ssize_t len;
|
2006-04-22 17:37:05 +08:00
|
|
|
|
2018-11-03 21:15:07 +08:00
|
|
|
len = tpm_transmit(chip, buf->data, PAGE_SIZE, flags);
|
2006-04-22 17:37:05 +08:00
|
|
|
if (len < 0)
|
|
|
|
return len;
|
2014-12-13 03:46:33 +08:00
|
|
|
|
|
|
|
err = be32_to_cpu(header->return_code);
|
tpm: suppress transmit cmd error logs when TPM 1.2 is disabled/deactivated
For TPM 1.2 chips the system setup utility allows to set the TPM device in
one of the following states:
* Active: Security chip is functional
* Inactive: Security chip is visible, but is not functional
* Disabled: Security chip is hidden and is not functional
When choosing the "Inactive" state, the TPM 1.2 device is enumerated and
registered, but sending TPM commands fail with either TPM_DEACTIVATED or
TPM_DISABLED depending if the firmware deactivated or disabled the TPM.
Since these TPM 1.2 error codes don't have special treatment, inactivating
the TPM leads to a very noisy kernel log buffer that shows messages like
the following:
tpm_tis 00:05: 1.2 TPM (device-id 0x0, rev-id 78)
tpm tpm0: A TPM error (6) occurred attempting to read a pcr value
tpm tpm0: TPM is disabled/deactivated (0x6)
tpm tpm0: A TPM error (6) occurred attempting get random
tpm tpm0: A TPM error (6) occurred attempting to read a pcr value
ima: No TPM chip found, activating TPM-bypass! (rc=6)
tpm tpm0: A TPM error (6) occurred attempting get random
tpm tpm0: A TPM error (6) occurred attempting get random
tpm tpm0: A TPM error (6) occurred attempting get random
tpm tpm0: A TPM error (6) occurred attempting get random
Let's just suppress error log messages for the TPM_{DEACTIVATED,DISABLED}
return codes, since this is expected when the TPM 1.2 is set to Inactive.
In that case the kernel log is cleaner and less confusing for users, i.e:
tpm_tis 00:05: 1.2 TPM (device-id 0x0, rev-id 78)
tpm tpm0: TPM is disabled/deactivated (0x6)
ima: No TPM chip found, activating TPM-bypass! (rc=6)
Reported-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
2018-08-30 22:40:05 +08:00
|
|
|
if (err != 0 && err != TPM_ERR_DISABLED && err != TPM_ERR_DEACTIVATED
|
2019-01-30 02:59:11 +08:00
|
|
|
&& err != TPM2_RC_TESTING && desc)
|
2016-03-01 01:29:47 +08:00
|
|
|
dev_err(&chip->dev, "A TPM error (%d) occurred %s\n", err,
|
2014-12-13 03:46:36 +08:00
|
|
|
desc);
|
2017-01-19 20:19:12 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
if (len < min_rsp_body_length + TPM_HEADER_SIZE)
|
|
|
|
return -EFAULT;
|
2011-11-02 03:00:52 +08:00
|
|
|
|
2017-01-19 20:19:12 +08:00
|
|
|
return 0;
|
2006-04-22 17:37:05 +08:00
|
|
|
}
|
2017-05-25 05:39:40 +08:00
|
|
|
EXPORT_SYMBOL_GPL(tpm_transmit_cmd);
|
2006-04-22 17:37:05 +08:00
|
|
|
|
2011-11-12 01:57:02 +08:00
|
|
|
int tpm_get_timeouts(struct tpm_chip *chip)
|
2006-04-22 17:37:50 +08:00
|
|
|
{
|
2016-10-27 06:28:44 +08:00
|
|
|
if (chip->flags & TPM_CHIP_FLAG_HAVE_TIMEOUTS)
|
|
|
|
return 0;
|
|
|
|
|
2018-10-20 02:22:52 +08:00
|
|
|
if (chip->flags & TPM_CHIP_FLAG_TPM2)
|
|
|
|
return tpm2_get_timeouts(chip);
|
|
|
|
else
|
|
|
|
return tpm1_get_timeouts(chip);
|
2006-04-22 17:37:50 +08:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(tpm_get_timeouts);
|
|
|
|
|
2015-05-30 13:09:04 +08:00
|
|
|
/**
|
2017-11-05 19:16:26 +08:00
|
|
|
* tpm_is_tpm2 - do we a have a TPM2 chip?
|
|
|
|
* @chip: a &struct tpm_chip instance, %NULL for the default chip
|
2015-05-30 13:09:04 +08:00
|
|
|
*
|
2017-11-05 19:16:26 +08:00
|
|
|
* Return:
|
|
|
|
* 1 if we have a TPM2 chip.
|
|
|
|
* 0 if we don't have a TPM2 chip.
|
|
|
|
* A negative number for system errors (errno).
|
2015-05-30 13:09:04 +08:00
|
|
|
*/
|
2017-11-05 19:16:26 +08:00
|
|
|
int tpm_is_tpm2(struct tpm_chip *chip)
|
2015-05-30 13:09:04 +08:00
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
2018-06-26 19:06:15 +08:00
|
|
|
chip = tpm_find_get_ops(chip);
|
2017-11-05 19:16:26 +08:00
|
|
|
if (!chip)
|
2015-05-30 13:09:04 +08:00
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
rc = (chip->flags & TPM_CHIP_FLAG_TPM2) != 0;
|
|
|
|
|
2016-02-13 11:29:53 +08:00
|
|
|
tpm_put_ops(chip);
|
2015-05-30 13:09:04 +08:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(tpm_is_tpm2);
|
|
|
|
|
2009-02-03 01:23:44 +08:00
|
|
|
/**
|
2017-11-05 19:16:26 +08:00
|
|
|
* tpm_pcr_read - read a PCR value from SHA1 bank
|
|
|
|
* @chip: a &struct tpm_chip instance, %NULL for the default chip
|
|
|
|
* @pcr_idx: the PCR to be retrieved
|
|
|
|
* @res_buf: the value of the PCR
|
2009-02-03 01:23:44 +08:00
|
|
|
*
|
2017-11-05 19:16:26 +08:00
|
|
|
* Return: same as with tpm_transmit_cmd()
|
2009-02-03 01:23:44 +08:00
|
|
|
*/
|
2018-10-20 02:23:07 +08:00
|
|
|
int tpm_pcr_read(struct tpm_chip *chip, u32 pcr_idx, u8 *res_buf)
|
2009-02-03 01:23:44 +08:00
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
2018-06-26 19:06:15 +08:00
|
|
|
chip = tpm_find_get_ops(chip);
|
2017-11-05 19:16:26 +08:00
|
|
|
if (!chip)
|
2009-02-03 01:23:44 +08:00
|
|
|
return -ENODEV;
|
2018-10-20 02:22:56 +08:00
|
|
|
|
2014-12-13 03:46:38 +08:00
|
|
|
if (chip->flags & TPM_CHIP_FLAG_TPM2)
|
|
|
|
rc = tpm2_pcr_read(chip, pcr_idx, res_buf);
|
|
|
|
else
|
2018-10-20 02:23:04 +08:00
|
|
|
rc = tpm1_pcr_read(chip, pcr_idx, res_buf);
|
2018-10-20 02:22:56 +08:00
|
|
|
|
2016-02-13 11:29:53 +08:00
|
|
|
tpm_put_ops(chip);
|
2009-02-03 01:23:44 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(tpm_pcr_read);
|
|
|
|
|
|
|
|
/**
|
2017-11-05 19:16:26 +08:00
|
|
|
* tpm_pcr_extend - extend a PCR value in SHA1 bank.
|
|
|
|
* @chip: a &struct tpm_chip instance, %NULL for the default chip
|
|
|
|
* @pcr_idx: the PCR to be retrieved
|
|
|
|
* @hash: the hash value used to extend the PCR value
|
2009-02-03 01:23:44 +08:00
|
|
|
*
|
2017-11-05 19:16:26 +08:00
|
|
|
* Note: with TPM 2.0 extends also those banks with a known digest size to the
|
|
|
|
* cryto subsystem in order to prevent malicious use of those PCR banks. In the
|
|
|
|
* future we should dynamically determine digest sizes.
|
|
|
|
*
|
|
|
|
* Return: same as with tpm_transmit_cmd()
|
2009-02-03 01:23:44 +08:00
|
|
|
*/
|
2018-10-20 02:23:07 +08:00
|
|
|
int tpm_pcr_extend(struct tpm_chip *chip, u32 pcr_idx, const u8 *hash)
|
2009-02-03 01:23:44 +08:00
|
|
|
{
|
|
|
|
int rc;
|
2017-01-30 17:59:41 +08:00
|
|
|
struct tpm2_digest digest_list[ARRAY_SIZE(chip->active_banks)];
|
|
|
|
u32 count = 0;
|
|
|
|
int i;
|
2009-02-03 01:23:44 +08:00
|
|
|
|
2018-06-26 19:06:15 +08:00
|
|
|
chip = tpm_find_get_ops(chip);
|
2017-11-05 19:16:26 +08:00
|
|
|
if (!chip)
|
2009-02-03 01:23:44 +08:00
|
|
|
return -ENODEV;
|
|
|
|
|
2014-12-13 03:46:38 +08:00
|
|
|
if (chip->flags & TPM_CHIP_FLAG_TPM2) {
|
2017-01-30 17:59:41 +08:00
|
|
|
memset(digest_list, 0, sizeof(digest_list));
|
|
|
|
|
2017-02-03 18:30:40 +08:00
|
|
|
for (i = 0; i < ARRAY_SIZE(chip->active_banks) &&
|
|
|
|
chip->active_banks[i] != TPM2_ALG_ERROR; i++) {
|
2017-01-30 17:59:41 +08:00
|
|
|
digest_list[i].alg_id = chip->active_banks[i];
|
|
|
|
memcpy(digest_list[i].digest, hash, TPM_DIGEST_SIZE);
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = tpm2_pcr_extend(chip, pcr_idx, count, digest_list);
|
2016-02-13 11:29:53 +08:00
|
|
|
tpm_put_ops(chip);
|
2014-12-13 03:46:38 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2017-05-04 19:16:47 +08:00
|
|
|
rc = tpm1_pcr_extend(chip, pcr_idx, hash,
|
|
|
|
"attempting extend a PCR value");
|
2016-02-13 11:29:53 +08:00
|
|
|
tpm_put_ops(chip);
|
2009-02-03 01:23:44 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(tpm_pcr_extend);
|
|
|
|
|
2017-11-05 19:16:26 +08:00
|
|
|
/**
|
|
|
|
* tpm_send - send a TPM command
|
|
|
|
* @chip: a &struct tpm_chip instance, %NULL for the default chip
|
|
|
|
* @cmd: a TPM command buffer
|
|
|
|
* @buflen: the length of the TPM command buffer
|
|
|
|
*
|
|
|
|
* Return: same as with tpm_transmit_cmd()
|
|
|
|
*/
|
|
|
|
int tpm_send(struct tpm_chip *chip, void *cmd, size_t buflen)
|
2010-11-24 07:54:16 +08:00
|
|
|
{
|
2018-10-26 21:34:22 +08:00
|
|
|
struct tpm_buf buf;
|
2010-11-24 07:54:16 +08:00
|
|
|
int rc;
|
|
|
|
|
2018-06-26 19:06:15 +08:00
|
|
|
chip = tpm_find_get_ops(chip);
|
2017-11-05 19:16:26 +08:00
|
|
|
if (!chip)
|
2010-11-24 07:54:16 +08:00
|
|
|
return -ENODEV;
|
|
|
|
|
2018-10-26 21:34:22 +08:00
|
|
|
rc = tpm_buf_init(&buf, 0, 0);
|
|
|
|
if (rc)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
memcpy(buf.data, cmd, buflen);
|
2018-11-03 21:15:07 +08:00
|
|
|
rc = tpm_transmit_cmd(chip, &buf, 0, 0,
|
2017-11-05 19:16:26 +08:00
|
|
|
"attempting to a send a command");
|
2018-10-26 21:34:22 +08:00
|
|
|
tpm_buf_destroy(&buf);
|
|
|
|
out:
|
2016-02-13 11:29:53 +08:00
|
|
|
tpm_put_ops(chip);
|
2010-11-24 07:54:16 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(tpm_send);
|
|
|
|
|
2018-10-20 02:22:59 +08:00
|
|
|
int tpm_auto_startup(struct tpm_chip *chip)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if (!(chip->ops->flags & TPM_OPS_AUTO_STARTUP))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (chip->flags & TPM_CHIP_FLAG_TPM2)
|
|
|
|
rc = tpm2_auto_startup(chip);
|
|
|
|
else
|
|
|
|
rc = tpm1_auto_startup(chip);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* We are about to suspend. Save the TPM state
|
|
|
|
* so that it can be restored.
|
|
|
|
*/
|
2012-07-07 01:09:01 +08:00
|
|
|
int tpm_pm_suspend(struct device *dev)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2016-05-11 23:28:27 +08:00
|
|
|
struct tpm_chip *chip = dev_get_drvdata(dev);
|
2018-10-20 02:22:57 +08:00
|
|
|
int rc = 0;
|
2008-01-14 16:55:12 +08:00
|
|
|
|
2018-10-20 02:22:57 +08:00
|
|
|
if (!chip)
|
2005-04-17 06:20:36 +08:00
|
|
|
return -ENODEV;
|
|
|
|
|
2017-06-27 18:27:24 +08:00
|
|
|
if (chip->flags & TPM_CHIP_FLAG_ALWAYS_POWERED)
|
|
|
|
return 0;
|
|
|
|
|
2018-10-20 02:22:57 +08:00
|
|
|
if (chip->flags & TPM_CHIP_FLAG_TPM2)
|
2015-01-29 13:43:47 +08:00
|
|
|
tpm2_shutdown(chip, TPM2_SU_STATE);
|
2018-10-20 02:22:57 +08:00
|
|
|
else
|
|
|
|
rc = tpm1_pm_suspend(chip, tpm_suspend_pcr);
|
2013-03-18 05:56:39 +08:00
|
|
|
|
2010-03-25 11:55:32 +08:00
|
|
|
return rc;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(tpm_pm_suspend);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Resume from a power safe. The BIOS already restored
|
|
|
|
* the TPM state.
|
|
|
|
*/
|
2005-10-31 07:03:25 +08:00
|
|
|
int tpm_pm_resume(struct device *dev)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2016-05-11 23:28:27 +08:00
|
|
|
struct tpm_chip *chip = dev_get_drvdata(dev);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
if (chip == NULL)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(tpm_pm_resume);
|
|
|
|
|
2012-06-08 02:47:14 +08:00
|
|
|
/**
|
2017-11-05 19:16:26 +08:00
|
|
|
* tpm_get_random() - get random bytes from the TPM's RNG
|
|
|
|
* @chip: a &struct tpm_chip instance, %NULL for the default chip
|
|
|
|
* @out: destination buffer for the random bytes
|
|
|
|
* @max: the max number of bytes to write to @out
|
2012-06-08 02:47:14 +08:00
|
|
|
*
|
2018-10-20 02:23:02 +08:00
|
|
|
* Return: number of random bytes read or a negative error value.
|
2012-06-08 02:47:14 +08:00
|
|
|
*/
|
2017-11-05 19:16:26 +08:00
|
|
|
int tpm_get_random(struct tpm_chip *chip, u8 *out, size_t max)
|
2012-06-08 02:47:14 +08:00
|
|
|
{
|
2018-10-20 02:22:55 +08:00
|
|
|
int rc;
|
2012-06-08 02:47:14 +08:00
|
|
|
|
2018-10-20 02:22:55 +08:00
|
|
|
if (!out || max > TPM_MAX_RNG_DATA)
|
2014-05-09 19:23:10 +08:00
|
|
|
return -EINVAL;
|
|
|
|
|
2018-06-26 19:06:15 +08:00
|
|
|
chip = tpm_find_get_ops(chip);
|
2017-11-05 19:16:26 +08:00
|
|
|
if (!chip)
|
2012-06-08 02:47:14 +08:00
|
|
|
return -ENODEV;
|
|
|
|
|
2018-10-20 02:22:55 +08:00
|
|
|
if (chip->flags & TPM_CHIP_FLAG_TPM2)
|
|
|
|
rc = tpm2_get_random(chip, out, max);
|
|
|
|
else
|
|
|
|
rc = tpm1_get_random(chip, out, max);
|
2012-06-08 02:47:14 +08:00
|
|
|
|
2016-02-13 11:29:53 +08:00
|
|
|
tpm_put_ops(chip);
|
2018-10-20 02:22:55 +08:00
|
|
|
return rc;
|
2012-06-08 02:47:14 +08:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(tpm_get_random);
|
|
|
|
|
2015-05-30 13:09:04 +08:00
|
|
|
/**
|
2017-11-05 19:16:26 +08:00
|
|
|
* tpm_seal_trusted() - seal a trusted key payload
|
|
|
|
* @chip: a &struct tpm_chip instance, %NULL for the default chip
|
|
|
|
* @options: authentication values and other options
|
|
|
|
* @payload: the key data in clear and encrypted form
|
|
|
|
*
|
|
|
|
* Note: only TPM 2.0 chip are supported. TPM 1.x implementation is located in
|
|
|
|
* the keyring subsystem.
|
2015-05-30 13:09:04 +08:00
|
|
|
*
|
2017-11-05 19:16:26 +08:00
|
|
|
* Return: same as with tpm_transmit_cmd()
|
2015-05-30 13:09:04 +08:00
|
|
|
*/
|
2017-11-05 19:16:26 +08:00
|
|
|
int tpm_seal_trusted(struct tpm_chip *chip, struct trusted_key_payload *payload,
|
2015-05-30 13:09:04 +08:00
|
|
|
struct trusted_key_options *options)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
2018-06-26 19:06:15 +08:00
|
|
|
chip = tpm_find_get_ops(chip);
|
2017-11-05 19:16:26 +08:00
|
|
|
if (!chip || !(chip->flags & TPM_CHIP_FLAG_TPM2))
|
2015-05-30 13:09:04 +08:00
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
rc = tpm2_seal_trusted(chip, payload, options);
|
|
|
|
|
2016-02-13 11:29:53 +08:00
|
|
|
tpm_put_ops(chip);
|
2015-05-30 13:09:04 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(tpm_seal_trusted);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* tpm_unseal_trusted() - unseal a trusted key
|
2017-11-05 19:16:26 +08:00
|
|
|
* @chip: a &struct tpm_chip instance, %NULL for the default chip
|
|
|
|
* @options: authentication values and other options
|
|
|
|
* @payload: the key data in clear and encrypted form
|
|
|
|
*
|
|
|
|
* Note: only TPM 2.0 chip are supported. TPM 1.x implementation is located in
|
|
|
|
* the keyring subsystem.
|
2015-05-30 13:09:04 +08:00
|
|
|
*
|
2017-11-05 19:16:26 +08:00
|
|
|
* Return: same as with tpm_transmit_cmd()
|
2015-05-30 13:09:04 +08:00
|
|
|
*/
|
2017-11-05 19:16:26 +08:00
|
|
|
int tpm_unseal_trusted(struct tpm_chip *chip,
|
|
|
|
struct trusted_key_payload *payload,
|
2015-05-30 13:09:04 +08:00
|
|
|
struct trusted_key_options *options)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
2018-06-26 19:06:15 +08:00
|
|
|
chip = tpm_find_get_ops(chip);
|
2017-11-05 19:16:26 +08:00
|
|
|
if (!chip || !(chip->flags & TPM_CHIP_FLAG_TPM2))
|
2015-05-30 13:09:04 +08:00
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
rc = tpm2_unseal_trusted(chip, payload, options);
|
|
|
|
|
2016-02-13 11:29:53 +08:00
|
|
|
tpm_put_ops(chip);
|
|
|
|
|
2015-05-30 13:09:04 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(tpm_unseal_trusted);
|
|
|
|
|
2014-12-13 03:46:37 +08:00
|
|
|
static int __init tpm_init(void)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
tpm_class = class_create(THIS_MODULE, "tpm");
|
|
|
|
if (IS_ERR(tpm_class)) {
|
|
|
|
pr_err("couldn't create tpm class\n");
|
|
|
|
return PTR_ERR(tpm_class);
|
|
|
|
}
|
|
|
|
|
2017-01-04 01:07:32 +08:00
|
|
|
tpmrm_class = class_create(THIS_MODULE, "tpmrm");
|
|
|
|
if (IS_ERR(tpmrm_class)) {
|
|
|
|
pr_err("couldn't create tpmrm class\n");
|
2018-09-11 01:18:33 +08:00
|
|
|
rc = PTR_ERR(tpmrm_class);
|
|
|
|
goto out_destroy_tpm_class;
|
2017-01-04 01:07:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
rc = alloc_chrdev_region(&tpm_devt, 0, 2*TPM_NUM_DEVICES, "tpm");
|
2014-12-13 03:46:37 +08:00
|
|
|
if (rc < 0) {
|
|
|
|
pr_err("tpm: failed to allocate char dev region\n");
|
2018-09-11 01:18:33 +08:00
|
|
|
goto out_destroy_tpmrm_class;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = tpm_dev_common_init();
|
|
|
|
if (rc) {
|
|
|
|
pr_err("tpm: failed to allocate char dev region\n");
|
|
|
|
goto out_unreg_chrdev;
|
2014-12-13 03:46:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2018-09-11 01:18:33 +08:00
|
|
|
|
|
|
|
out_unreg_chrdev:
|
|
|
|
unregister_chrdev_region(tpm_devt, 2 * TPM_NUM_DEVICES);
|
|
|
|
out_destroy_tpmrm_class:
|
|
|
|
class_destroy(tpmrm_class);
|
|
|
|
out_destroy_tpm_class:
|
|
|
|
class_destroy(tpm_class);
|
|
|
|
|
|
|
|
return rc;
|
2014-12-13 03:46:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit tpm_exit(void)
|
|
|
|
{
|
2016-02-29 21:53:02 +08:00
|
|
|
idr_destroy(&dev_nums_idr);
|
2014-12-13 03:46:37 +08:00
|
|
|
class_destroy(tpm_class);
|
2017-01-04 01:07:32 +08:00
|
|
|
class_destroy(tpmrm_class);
|
|
|
|
unregister_chrdev_region(tpm_devt, 2*TPM_NUM_DEVICES);
|
2018-09-11 01:18:33 +08:00
|
|
|
tpm_dev_common_exit();
|
2014-12-13 03:46:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
subsys_initcall(tpm_init);
|
|
|
|
module_exit(tpm_exit);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
|
|
|
|
MODULE_DESCRIPTION("TPM Driver");
|
|
|
|
MODULE_VERSION("2.0");
|
|
|
|
MODULE_LICENSE("GPL");
|