2 * Copyright (C) 2004 IBM Corporation
3 * Copyright (C) 2014 Intel Corporation
13 * Device driver for TCG/TCPA TPM (trusted platform module).
14 * Specifications at www.trustedcomputinggroup.org
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
21 * Note, the TPM chip is not interrupt driven (only polling)
22 * and can have very long timeouts (minutes!). Hence the unusual
27 #include <linux/poll.h>
28 #include <linux/slab.h>
29 #include <linux/mutex.h>
30 #include <linux/spinlock.h>
31 #include <linux/freezer.h>
32 #include <linux/tpm_eventlog.h>
36 #define TPM_MAX_ORDINAL 243
37 #define TSC_MAX_ORDINAL 12
38 #define TPM_PROTECTED_COMMAND 0x00
39 #define TPM_CONNECTION_COMMAND 0x40
42 * Bug workaround - some TPM's don't flush the most
43 * recently changed pcr on suspend, so force the flush
44 * with an extend to the selected _unused_ non-volatile pcr.
46 static int tpm_suspend_pcr;
47 module_param_named(suspend_pcr, tpm_suspend_pcr, uint, 0644);
48 MODULE_PARM_DESC(suspend_pcr,
49 "PCR to use for dummy writes to facilitate flush on suspend.");
52 * Array with one entry per ordinal defining the maximum amount
53 * of time the chip could take to return the result. The ordinal
54 * designation of short, medium or long is defined in a table in
55 * TCG Specification TPM Main Part 2 TPM Structures Section 17. The
56 * values of the SHORT, MEDIUM, and LONG durations are retrieved
57 * from the chip during initialization with a call to tpm_get_timeouts.
59 static const u8 tpm_ordinal_duration[TPM_MAX_ORDINAL] = {
60 TPM_UNDEFINED, /* 0 */
65 TPM_UNDEFINED, /* 5 */
115 TPM_UNDEFINED, /* 55 */
135 TPM_UNDEFINED, /* 75 */
145 TPM_UNDEFINED, /* 85 */
155 TPM_UNDEFINED, /* 95 */
160 TPM_MEDIUM, /* 100 */
165 TPM_UNDEFINED, /* 105 */
195 TPM_UNDEFINED, /* 135 */
205 TPM_UNDEFINED, /* 145 */
215 TPM_UNDEFINED, /* 155 */
225 TPM_UNDEFINED, /* 165 */
235 TPM_UNDEFINED, /* 175 */
240 TPM_MEDIUM, /* 180 */
245 TPM_MEDIUM, /* 185 */
250 TPM_UNDEFINED, /* 190 */
255 TPM_UNDEFINED, /* 195 */
270 TPM_MEDIUM, /* 210 */
275 TPM_UNDEFINED, /* 215 */
285 TPM_UNDEFINED, /* 225 */
295 TPM_UNDEFINED, /* 235 */
306 * Returns max number of jiffies to wait
308 unsigned long tpm_calc_ordinal_duration(struct tpm_chip *chip,
311 int duration_idx = TPM_UNDEFINED;
315 * We only have a duration table for protected commands, where the upper
316 * 16 bits are 0. For the few other ordinals the fallback will be used.
318 if (ordinal < TPM_MAX_ORDINAL)
319 duration_idx = tpm_ordinal_duration[ordinal];
321 if (duration_idx != TPM_UNDEFINED)
322 duration = chip->duration[duration_idx];
328 EXPORT_SYMBOL_GPL(tpm_calc_ordinal_duration);
330 static int tpm_validate_command(struct tpm_chip *chip,
331 struct tpm_space *space,
335 const struct tpm_input_header *header = (const void *)cmd;
339 unsigned int nr_handles;
341 if (len < TPM_HEADER_SIZE)
347 if (chip->flags & TPM_CHIP_FLAG_TPM2 && chip->nr_commands) {
348 cc = be32_to_cpu(header->ordinal);
350 i = tpm2_find_cc(chip, cc);
352 dev_dbg(&chip->dev, "0x%04X is an invalid command\n",
357 attrs = chip->cc_attrs_tbl[i];
359 4 * ((attrs >> TPM2_CC_ATTR_CHANDLES) & GENMASK(2, 0));
360 if (len < TPM_HEADER_SIZE + 4 * nr_handles)
367 "%s: insufficient command length %zu", __func__, len);
371 static int tpm_request_locality(struct tpm_chip *chip, unsigned int flags)
375 if (flags & TPM_TRANSMIT_NESTED)
378 if (!chip->ops->request_locality)
381 rc = chip->ops->request_locality(chip, 0);
390 static void tpm_relinquish_locality(struct tpm_chip *chip, unsigned int flags)
394 if (flags & TPM_TRANSMIT_NESTED)
397 if (!chip->ops->relinquish_locality)
400 rc = chip->ops->relinquish_locality(chip, chip->locality);
402 dev_err(&chip->dev, "%s: : error %d\n", __func__, rc);
407 static int tpm_cmd_ready(struct tpm_chip *chip, unsigned int flags)
409 if (flags & TPM_TRANSMIT_NESTED)
412 if (!chip->ops->cmd_ready)
415 return chip->ops->cmd_ready(chip);
418 static int tpm_go_idle(struct tpm_chip *chip, unsigned int flags)
420 if (flags & TPM_TRANSMIT_NESTED)
423 if (!chip->ops->go_idle)
426 return chip->ops->go_idle(chip);
429 static ssize_t tpm_try_transmit(struct tpm_chip *chip,
430 struct tpm_space *space,
431 u8 *buf, size_t bufsiz,
434 struct tpm_output_header *header = (void *)buf;
441 rc = tpm_validate_command(chip, space, buf, bufsiz);
445 * If the command is not implemented by the TPM, synthesize a
446 * response with a TPM2_RC_COMMAND_CODE return for user-space.
448 if (rc == -EOPNOTSUPP) {
449 header->length = cpu_to_be32(sizeof(*header));
450 header->tag = cpu_to_be16(TPM2_ST_NO_SESSIONS);
451 header->return_code = cpu_to_be32(TPM2_RC_COMMAND_CODE |
452 TSS2_RESMGR_TPM_RC_LAYER);
453 return sizeof(*header);
456 if (bufsiz > TPM_BUFSIZE)
457 bufsiz = TPM_BUFSIZE;
459 count = be32_to_cpu(*((__be32 *) (buf + 2)));
460 ordinal = be32_to_cpu(*((__be32 *) (buf + 6)));
463 if (count > bufsiz) {
465 "invalid count value %x %zx\n", count, bufsiz);
469 if (!(flags & TPM_TRANSMIT_UNLOCKED) && !(flags & TPM_TRANSMIT_NESTED))
470 mutex_lock(&chip->tpm_mutex);
472 if (chip->ops->clk_enable != NULL)
473 chip->ops->clk_enable(chip, true);
475 /* Store the decision as chip->locality will be changed. */
476 need_locality = chip->locality == -1;
479 rc = tpm_request_locality(chip, flags);
481 goto out_no_locality;
484 rc = tpm_cmd_ready(chip, flags);
488 rc = tpm2_prepare_space(chip, space, ordinal, buf);
492 rc = chip->ops->send(chip, buf, count);
496 "%s: tpm_send: error %d\n", __func__, rc);
500 if (chip->flags & TPM_CHIP_FLAG_IRQ)
503 if (chip->flags & TPM_CHIP_FLAG_TPM2)
504 stop = jiffies + tpm2_calc_ordinal_duration(chip, ordinal);
506 stop = jiffies + tpm_calc_ordinal_duration(chip, ordinal);
508 u8 status = chip->ops->status(chip);
509 if ((status & chip->ops->req_complete_mask) ==
510 chip->ops->req_complete_val)
513 if (chip->ops->req_canceled(chip, status)) {
514 dev_err(&chip->dev, "Operation Canceled\n");
519 tpm_msleep(TPM_TIMEOUT_POLL);
521 } while (time_before(jiffies, stop));
523 chip->ops->cancel(chip);
524 dev_err(&chip->dev, "Operation Timed out\n");
529 len = chip->ops->recv(chip, buf, bufsiz);
533 "tpm_transmit: tpm_recv: error %d\n", rc);
535 } else if (len < TPM_HEADER_SIZE) {
540 if (len != be32_to_cpu(header->length)) {
545 rc = tpm2_commit_space(chip, space, ordinal, buf, &len);
547 dev_err(&chip->dev, "tpm2_commit_space: error %d\n", rc);
550 rc = tpm_go_idle(chip, flags);
555 tpm_relinquish_locality(chip, flags);
558 if (chip->ops->clk_enable != NULL)
559 chip->ops->clk_enable(chip, false);
561 if (!(flags & TPM_TRANSMIT_UNLOCKED) && !(flags & TPM_TRANSMIT_NESTED))
562 mutex_unlock(&chip->tpm_mutex);
563 return rc ? rc : len;
567 * tpm_transmit - Internal kernel interface to transmit TPM commands.
569 * @chip: TPM chip to use
571 * @buf: TPM command buffer
572 * @bufsiz: length of the TPM command buffer
573 * @flags: tpm transmit flags - bitmap
575 * A wrapper around tpm_try_transmit that handles TPM2_RC_RETRY
576 * returns from the TPM and retransmits the command after a delay up
577 * to a maximum wait of TPM2_DURATION_LONG.
579 * Note: TPM1 never returns TPM2_RC_RETRY so the retry logic is TPM2
583 * the length of the return when the operation is successful.
584 * A negative number for system errors (errno).
586 ssize_t tpm_transmit(struct tpm_chip *chip, struct tpm_space *space,
587 u8 *buf, size_t bufsiz, unsigned int flags)
589 struct tpm_output_header *header = (struct tpm_output_header *)buf;
590 /* space for header and handles */
591 u8 save[TPM_HEADER_SIZE + 3*sizeof(u32)];
592 unsigned int delay_msec = TPM2_DURATION_SHORT;
595 const size_t save_size = min(space ? sizeof(save) : TPM_HEADER_SIZE,
597 /* the command code is where the return code will be */
598 u32 cc = be32_to_cpu(header->return_code);
601 * Subtlety here: if we have a space, the handles will be
602 * transformed, so when we restore the header we also have to
603 * restore the handles.
605 memcpy(save, buf, save_size);
608 ret = tpm_try_transmit(chip, space, buf, bufsiz, flags);
611 rc = be32_to_cpu(header->return_code);
612 if (rc != TPM2_RC_RETRY && rc != TPM2_RC_TESTING)
615 * return immediately if self test returns test
616 * still running to shorten boot time.
618 if (rc == TPM2_RC_TESTING && cc == TPM2_CC_SELF_TEST)
621 if (delay_msec > TPM2_DURATION_LONG) {
622 if (rc == TPM2_RC_RETRY)
623 dev_err(&chip->dev, "in retry loop\n");
626 "self test is still running\n");
629 tpm_msleep(delay_msec);
631 memcpy(buf, save, save_size);
636 * tpm_transmit_cmd - send a tpm command to the device
637 * The function extracts tpm out header return code
639 * @chip: TPM chip to use
641 * @buf: TPM command buffer
642 * @bufsiz: length of the buffer
643 * @min_rsp_body_length: minimum expected length of response body
644 * @flags: tpm transmit flags - bitmap
645 * @desc: command description used in the error message
648 * 0 when the operation is successful.
649 * A negative number for system errors (errno).
650 * A positive number for a TPM error.
652 ssize_t tpm_transmit_cmd(struct tpm_chip *chip, struct tpm_space *space,
653 void *buf, size_t bufsiz,
654 size_t min_rsp_body_length, unsigned int flags,
657 const struct tpm_output_header *header = buf;
661 len = tpm_transmit(chip, space, buf, bufsiz, flags);
665 err = be32_to_cpu(header->return_code);
666 if (err != 0 && desc)
667 dev_err(&chip->dev, "A TPM error (%d) occurred %s\n", err,
672 if (len < min_rsp_body_length + TPM_HEADER_SIZE)
677 EXPORT_SYMBOL_GPL(tpm_transmit_cmd);
679 #define TPM_ORD_STARTUP 153
680 #define TPM_ST_CLEAR 1
683 * tpm_startup - turn on the TPM
684 * @chip: TPM chip to use
686 * Normally the firmware should start the TPM. This function is provided as a
687 * workaround if this does not happen. A legal case for this could be for
688 * example when a TPM emulator is used.
690 * Return: same as tpm_transmit_cmd()
692 int tpm_startup(struct tpm_chip *chip)
697 dev_info(&chip->dev, "starting up the TPM manually\n");
699 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
700 rc = tpm_buf_init(&buf, TPM2_ST_NO_SESSIONS, TPM2_CC_STARTUP);
704 tpm_buf_append_u16(&buf, TPM2_SU_CLEAR);
706 rc = tpm_buf_init(&buf, TPM_TAG_RQU_COMMAND, TPM_ORD_STARTUP);
710 tpm_buf_append_u16(&buf, TPM_ST_CLEAR);
713 rc = tpm_transmit_cmd(chip, NULL, buf.data, PAGE_SIZE, 0, 0,
714 "attempting to start the TPM");
716 tpm_buf_destroy(&buf);
720 #define TPM_DIGEST_SIZE 20
721 #define TPM_RET_CODE_IDX 6
722 #define TPM_INTERNAL_RESULT_SIZE 200
723 #define TPM_ORD_GET_CAP 101
724 #define TPM_ORD_GET_RANDOM 70
726 static const struct tpm_input_header tpm_getcap_header = {
727 .tag = cpu_to_be16(TPM_TAG_RQU_COMMAND),
728 .length = cpu_to_be32(22),
729 .ordinal = cpu_to_be32(TPM_ORD_GET_CAP)
732 ssize_t tpm_getcap(struct tpm_chip *chip, u32 subcap_id, cap_t *cap,
733 const char *desc, size_t min_cap_length)
738 rc = tpm_buf_init(&buf, TPM_TAG_RQU_COMMAND, TPM_ORD_GET_CAP);
742 if (subcap_id == TPM_CAP_VERSION_1_1 ||
743 subcap_id == TPM_CAP_VERSION_1_2) {
744 tpm_buf_append_u32(&buf, subcap_id);
745 tpm_buf_append_u32(&buf, 0);
747 if (subcap_id == TPM_CAP_FLAG_PERM ||
748 subcap_id == TPM_CAP_FLAG_VOL)
749 tpm_buf_append_u32(&buf, TPM_CAP_FLAG);
751 tpm_buf_append_u32(&buf, TPM_CAP_PROP);
753 tpm_buf_append_u32(&buf, 4);
754 tpm_buf_append_u32(&buf, subcap_id);
756 rc = tpm_transmit_cmd(chip, NULL, buf.data, PAGE_SIZE,
757 min_cap_length, 0, desc);
759 *cap = *(cap_t *)&buf.data[TPM_HEADER_SIZE + 4];
761 tpm_buf_destroy(&buf);
764 EXPORT_SYMBOL_GPL(tpm_getcap);
766 int tpm_get_timeouts(struct tpm_chip *chip)
769 unsigned long timeout_old[4], timeout_chip[4], timeout_eff[4];
772 if (chip->flags & TPM_CHIP_FLAG_HAVE_TIMEOUTS)
775 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
776 /* Fixed timeouts for TPM2 */
777 chip->timeout_a = msecs_to_jiffies(TPM2_TIMEOUT_A);
778 chip->timeout_b = msecs_to_jiffies(TPM2_TIMEOUT_B);
779 chip->timeout_c = msecs_to_jiffies(TPM2_TIMEOUT_C);
780 chip->timeout_d = msecs_to_jiffies(TPM2_TIMEOUT_D);
781 chip->duration[TPM_SHORT] =
782 msecs_to_jiffies(TPM2_DURATION_SHORT);
783 chip->duration[TPM_MEDIUM] =
784 msecs_to_jiffies(TPM2_DURATION_MEDIUM);
785 chip->duration[TPM_LONG] =
786 msecs_to_jiffies(TPM2_DURATION_LONG);
787 chip->duration[TPM_LONG_LONG] =
788 msecs_to_jiffies(TPM2_DURATION_LONG_LONG);
790 chip->flags |= TPM_CHIP_FLAG_HAVE_TIMEOUTS;
794 rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_TIMEOUT, &cap, NULL,
795 sizeof(cap.timeout));
796 if (rc == TPM_ERR_INVALID_POSTINIT) {
797 if (tpm_startup(chip))
800 rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_TIMEOUT, &cap,
801 "attempting to determine the timeouts",
802 sizeof(cap.timeout));
807 "A TPM error (%zd) occurred attempting to determine the timeouts\n",
812 timeout_old[0] = jiffies_to_usecs(chip->timeout_a);
813 timeout_old[1] = jiffies_to_usecs(chip->timeout_b);
814 timeout_old[2] = jiffies_to_usecs(chip->timeout_c);
815 timeout_old[3] = jiffies_to_usecs(chip->timeout_d);
816 timeout_chip[0] = be32_to_cpu(cap.timeout.a);
817 timeout_chip[1] = be32_to_cpu(cap.timeout.b);
818 timeout_chip[2] = be32_to_cpu(cap.timeout.c);
819 timeout_chip[3] = be32_to_cpu(cap.timeout.d);
820 memcpy(timeout_eff, timeout_chip, sizeof(timeout_eff));
823 * Provide ability for vendor overrides of timeout values in case
826 if (chip->ops->update_timeouts != NULL)
827 chip->timeout_adjusted =
828 chip->ops->update_timeouts(chip, timeout_eff);
830 if (!chip->timeout_adjusted) {
831 /* Restore default if chip reported 0 */
834 for (i = 0; i < ARRAY_SIZE(timeout_eff); i++) {
838 timeout_eff[i] = timeout_old[i];
839 chip->timeout_adjusted = true;
842 if (timeout_eff[0] != 0 && timeout_eff[0] < 1000) {
843 /* timeouts in msec rather usec */
844 for (i = 0; i != ARRAY_SIZE(timeout_eff); i++)
845 timeout_eff[i] *= 1000;
846 chip->timeout_adjusted = true;
850 /* Report adjusted timeouts */
851 if (chip->timeout_adjusted) {
853 HW_ERR "Adjusting reported timeouts: A %lu->%luus B %lu->%luus C %lu->%luus D %lu->%luus\n",
854 timeout_chip[0], timeout_eff[0],
855 timeout_chip[1], timeout_eff[1],
856 timeout_chip[2], timeout_eff[2],
857 timeout_chip[3], timeout_eff[3]);
860 chip->timeout_a = usecs_to_jiffies(timeout_eff[0]);
861 chip->timeout_b = usecs_to_jiffies(timeout_eff[1]);
862 chip->timeout_c = usecs_to_jiffies(timeout_eff[2]);
863 chip->timeout_d = usecs_to_jiffies(timeout_eff[3]);
865 rc = tpm_getcap(chip, TPM_CAP_PROP_TIS_DURATION, &cap,
866 "attempting to determine the durations",
867 sizeof(cap.duration));
871 chip->duration[TPM_SHORT] =
872 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_short));
873 chip->duration[TPM_MEDIUM] =
874 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_medium));
875 chip->duration[TPM_LONG] =
876 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_long));
877 chip->duration[TPM_LONG_LONG] = 0; /* not used under 1.2 */
879 /* The Broadcom BCM0102 chipset in a Dell Latitude D820 gets the above
880 * value wrong and apparently reports msecs rather than usecs. So we
881 * fix up the resulting too-small TPM_SHORT value to make things work.
882 * We also scale the TPM_MEDIUM and -_LONG values by 1000.
884 if (chip->duration[TPM_SHORT] < (HZ / 100)) {
885 chip->duration[TPM_SHORT] = HZ;
886 chip->duration[TPM_MEDIUM] *= 1000;
887 chip->duration[TPM_LONG] *= 1000;
888 chip->duration_adjusted = true;
889 dev_info(&chip->dev, "Adjusting TPM timeout parameters.");
892 chip->flags |= TPM_CHIP_FLAG_HAVE_TIMEOUTS;
895 EXPORT_SYMBOL_GPL(tpm_get_timeouts);
897 #define TPM_ORD_CONTINUE_SELFTEST 83
898 #define CONTINUE_SELFTEST_RESULT_SIZE 10
900 static const struct tpm_input_header continue_selftest_header = {
901 .tag = cpu_to_be16(TPM_TAG_RQU_COMMAND),
902 .length = cpu_to_be32(10),
903 .ordinal = cpu_to_be32(TPM_ORD_CONTINUE_SELFTEST),
907 * tpm_continue_selftest -- run TPM's selftest
908 * @chip: TPM chip to use
910 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
913 static int tpm_continue_selftest(struct tpm_chip *chip)
916 struct tpm_cmd_t cmd;
918 cmd.header.in = continue_selftest_header;
919 rc = tpm_transmit_cmd(chip, NULL, &cmd, CONTINUE_SELFTEST_RESULT_SIZE,
920 0, 0, "continue selftest");
924 #define TPM_ORDINAL_PCRREAD 21
925 #define READ_PCR_RESULT_SIZE 30
926 #define READ_PCR_RESULT_BODY_SIZE 20
927 static const struct tpm_input_header pcrread_header = {
928 .tag = cpu_to_be16(TPM_TAG_RQU_COMMAND),
929 .length = cpu_to_be32(14),
930 .ordinal = cpu_to_be32(TPM_ORDINAL_PCRREAD)
933 int tpm_pcr_read_dev(struct tpm_chip *chip, int pcr_idx, u8 *res_buf)
936 struct tpm_cmd_t cmd;
938 cmd.header.in = pcrread_header;
939 cmd.params.pcrread_in.pcr_idx = cpu_to_be32(pcr_idx);
940 rc = tpm_transmit_cmd(chip, NULL, &cmd, READ_PCR_RESULT_SIZE,
941 READ_PCR_RESULT_BODY_SIZE, 0,
942 "attempting to read a pcr value");
945 memcpy(res_buf, cmd.params.pcrread_out.pcr_result,
951 * tpm_is_tpm2 - do we a have a TPM2 chip?
952 * @chip: a &struct tpm_chip instance, %NULL for the default chip
955 * 1 if we have a TPM2 chip.
956 * 0 if we don't have a TPM2 chip.
957 * A negative number for system errors (errno).
959 int tpm_is_tpm2(struct tpm_chip *chip)
963 chip = tpm_find_get_ops(chip);
967 rc = (chip->flags & TPM_CHIP_FLAG_TPM2) != 0;
973 EXPORT_SYMBOL_GPL(tpm_is_tpm2);
976 * tpm_pcr_read - read a PCR value from SHA1 bank
977 * @chip: a &struct tpm_chip instance, %NULL for the default chip
978 * @pcr_idx: the PCR to be retrieved
979 * @res_buf: the value of the PCR
981 * Return: same as with tpm_transmit_cmd()
983 int tpm_pcr_read(struct tpm_chip *chip, int pcr_idx, u8 *res_buf)
987 chip = tpm_find_get_ops(chip);
990 if (chip->flags & TPM_CHIP_FLAG_TPM2)
991 rc = tpm2_pcr_read(chip, pcr_idx, res_buf);
993 rc = tpm_pcr_read_dev(chip, pcr_idx, res_buf);
997 EXPORT_SYMBOL_GPL(tpm_pcr_read);
999 #define TPM_ORD_PCR_EXTEND 20
1000 #define EXTEND_PCR_RESULT_SIZE 34
1001 #define EXTEND_PCR_RESULT_BODY_SIZE 20
1002 static const struct tpm_input_header pcrextend_header = {
1003 .tag = cpu_to_be16(TPM_TAG_RQU_COMMAND),
1004 .length = cpu_to_be32(34),
1005 .ordinal = cpu_to_be32(TPM_ORD_PCR_EXTEND)
1008 static int tpm1_pcr_extend(struct tpm_chip *chip, int pcr_idx, const u8 *hash,
1014 rc = tpm_buf_init(&buf, TPM_TAG_RQU_COMMAND, TPM_ORD_PCR_EXTEND);
1018 tpm_buf_append_u32(&buf, pcr_idx);
1019 tpm_buf_append(&buf, hash, TPM_DIGEST_SIZE);
1021 rc = tpm_transmit_cmd(chip, NULL, buf.data, EXTEND_PCR_RESULT_SIZE,
1022 EXTEND_PCR_RESULT_BODY_SIZE, 0, log_msg);
1023 tpm_buf_destroy(&buf);
1028 * tpm_pcr_extend - extend a PCR value in SHA1 bank.
1029 * @chip: a &struct tpm_chip instance, %NULL for the default chip
1030 * @pcr_idx: the PCR to be retrieved
1031 * @hash: the hash value used to extend the PCR value
1033 * Note: with TPM 2.0 extends also those banks with a known digest size to the
1034 * cryto subsystem in order to prevent malicious use of those PCR banks. In the
1035 * future we should dynamically determine digest sizes.
1037 * Return: same as with tpm_transmit_cmd()
1039 int tpm_pcr_extend(struct tpm_chip *chip, int pcr_idx, const u8 *hash)
1042 struct tpm2_digest digest_list[ARRAY_SIZE(chip->active_banks)];
1046 chip = tpm_find_get_ops(chip);
1050 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
1051 memset(digest_list, 0, sizeof(digest_list));
1053 for (i = 0; i < ARRAY_SIZE(chip->active_banks) &&
1054 chip->active_banks[i] != TPM2_ALG_ERROR; i++) {
1055 digest_list[i].alg_id = chip->active_banks[i];
1056 memcpy(digest_list[i].digest, hash, TPM_DIGEST_SIZE);
1060 rc = tpm2_pcr_extend(chip, pcr_idx, count, digest_list);
1065 rc = tpm1_pcr_extend(chip, pcr_idx, hash,
1066 "attempting extend a PCR value");
1070 EXPORT_SYMBOL_GPL(tpm_pcr_extend);
1073 * tpm_do_selftest - have the TPM continue its selftest and wait until it
1074 * can receive further commands
1075 * @chip: TPM chip to use
1077 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
1080 int tpm_do_selftest(struct tpm_chip *chip)
1084 unsigned int delay_msec = 100;
1085 unsigned long duration;
1086 u8 dummy[TPM_DIGEST_SIZE];
1088 duration = tpm_calc_ordinal_duration(chip, TPM_ORD_CONTINUE_SELFTEST);
1090 loops = jiffies_to_msecs(duration) / delay_msec;
1092 rc = tpm_continue_selftest(chip);
1093 if (rc == TPM_ERR_INVALID_POSTINIT) {
1094 chip->flags |= TPM_CHIP_FLAG_ALWAYS_POWERED;
1095 dev_info(&chip->dev, "TPM not ready (%d)\n", rc);
1097 /* This may fail if there was no TPM driver during a suspend/resume
1098 * cycle; some may return 10 (BAD_ORDINAL), others 28 (FAILEDSELFTEST)
1104 /* Attempt to read a PCR value */
1105 rc = tpm_pcr_read_dev(chip, 0, dummy);
1107 /* Some buggy TPMs will not respond to tpm_tis_ready() for
1108 * around 300ms while the self test is ongoing, keep trying
1109 * until the self test duration expires. */
1113 "TPM command timed out during continue self test");
1114 tpm_msleep(delay_msec);
1118 if (rc == TPM_ERR_DISABLED || rc == TPM_ERR_DEACTIVATED) {
1119 dev_info(&chip->dev,
1120 "TPM is disabled/deactivated (0x%X)\n", rc);
1121 /* TPM is disabled and/or deactivated; driver can
1122 * proceed and TPM does handle commands for
1123 * suspend/resume correctly
1127 if (rc != TPM_WARN_DOING_SELFTEST)
1129 tpm_msleep(delay_msec);
1130 } while (--loops > 0);
1134 EXPORT_SYMBOL_GPL(tpm_do_selftest);
1137 * tpm1_auto_startup - Perform the standard automatic TPM initialization
1139 * @chip: TPM chip to use
1141 * Returns 0 on success, < 0 in case of fatal error.
1143 int tpm1_auto_startup(struct tpm_chip *chip)
1147 rc = tpm_get_timeouts(chip);
1150 rc = tpm_do_selftest(chip);
1152 dev_err(&chip->dev, "TPM self test failed\n");
1164 * tpm_send - send a TPM command
1165 * @chip: a &struct tpm_chip instance, %NULL for the default chip
1166 * @cmd: a TPM command buffer
1167 * @buflen: the length of the TPM command buffer
1169 * Return: same as with tpm_transmit_cmd()
1171 int tpm_send(struct tpm_chip *chip, void *cmd, size_t buflen)
1175 chip = tpm_find_get_ops(chip);
1179 rc = tpm_transmit_cmd(chip, NULL, cmd, buflen, 0, 0,
1180 "attempting to a send a command");
1184 EXPORT_SYMBOL_GPL(tpm_send);
1186 #define TPM_ORD_SAVESTATE 152
1187 #define SAVESTATE_RESULT_SIZE 10
1189 static const struct tpm_input_header savestate_header = {
1190 .tag = cpu_to_be16(TPM_TAG_RQU_COMMAND),
1191 .length = cpu_to_be32(10),
1192 .ordinal = cpu_to_be32(TPM_ORD_SAVESTATE)
1196 * We are about to suspend. Save the TPM state
1197 * so that it can be restored.
1199 int tpm_pm_suspend(struct device *dev)
1201 struct tpm_chip *chip = dev_get_drvdata(dev);
1202 struct tpm_cmd_t cmd;
1205 u8 dummy_hash[TPM_DIGEST_SIZE] = { 0 };
1210 if (chip->flags & TPM_CHIP_FLAG_ALWAYS_POWERED)
1213 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
1214 tpm2_shutdown(chip, TPM2_SU_STATE);
1218 /* for buggy tpm, flush pcrs with extend to selected dummy */
1219 if (tpm_suspend_pcr)
1220 rc = tpm1_pcr_extend(chip, tpm_suspend_pcr, dummy_hash,
1221 "extending dummy pcr before suspend");
1223 /* now do the actual savestate */
1224 for (try = 0; try < TPM_RETRY; try++) {
1225 cmd.header.in = savestate_header;
1226 rc = tpm_transmit_cmd(chip, NULL, &cmd, SAVESTATE_RESULT_SIZE,
1230 * If the TPM indicates that it is too busy to respond to
1231 * this command then retry before giving up. It can take
1232 * several seconds for this TPM to be ready.
1234 * This can happen if the TPM has already been sent the
1235 * SaveState command before the driver has loaded. TCG 1.2
1236 * specification states that any communication after SaveState
1237 * may cause the TPM to invalidate previously saved state.
1239 if (rc != TPM_WARN_RETRY)
1241 tpm_msleep(TPM_TIMEOUT_RETRY);
1246 "Error (%d) sending savestate before suspend\n", rc);
1248 dev_warn(&chip->dev, "TPM savestate took %dms\n",
1249 try * TPM_TIMEOUT_RETRY);
1253 EXPORT_SYMBOL_GPL(tpm_pm_suspend);
1256 * Resume from a power safe. The BIOS already restored
1259 int tpm_pm_resume(struct device *dev)
1261 struct tpm_chip *chip = dev_get_drvdata(dev);
1268 EXPORT_SYMBOL_GPL(tpm_pm_resume);
1270 #define TPM_GETRANDOM_RESULT_SIZE 18
1271 static const struct tpm_input_header tpm_getrandom_header = {
1272 .tag = cpu_to_be16(TPM_TAG_RQU_COMMAND),
1273 .length = cpu_to_be32(14),
1274 .ordinal = cpu_to_be32(TPM_ORD_GET_RANDOM)
1278 * tpm_get_random() - get random bytes from the TPM's RNG
1279 * @chip: a &struct tpm_chip instance, %NULL for the default chip
1280 * @out: destination buffer for the random bytes
1281 * @max: the max number of bytes to write to @out
1283 * Return: same as with tpm_transmit_cmd()
1285 int tpm_get_random(struct tpm_chip *chip, u8 *out, size_t max)
1287 struct tpm_cmd_t tpm_cmd;
1288 u32 recd, num_bytes = min_t(u32, max, TPM_MAX_RNG_DATA), rlength;
1289 int err, total = 0, retries = 5;
1292 if (!out || !num_bytes || max > TPM_MAX_RNG_DATA)
1295 chip = tpm_find_get_ops(chip);
1299 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
1300 err = tpm2_get_random(chip, out, max);
1306 tpm_cmd.header.in = tpm_getrandom_header;
1307 tpm_cmd.params.getrandom_in.num_bytes = cpu_to_be32(num_bytes);
1309 err = tpm_transmit_cmd(chip, NULL, &tpm_cmd,
1310 TPM_GETRANDOM_RESULT_SIZE + num_bytes,
1311 offsetof(struct tpm_getrandom_out,
1313 0, "attempting get random");
1317 recd = be32_to_cpu(tpm_cmd.params.getrandom_out.rng_data_len);
1318 if (recd > num_bytes) {
1323 rlength = be32_to_cpu(tpm_cmd.header.out.length);
1324 if (rlength < offsetof(struct tpm_getrandom_out, rng_data) +
1329 memcpy(dest, tpm_cmd.params.getrandom_out.rng_data, recd);
1334 } while (retries-- && total < max);
1337 return total ? total : -EIO;
1339 EXPORT_SYMBOL_GPL(tpm_get_random);
1342 * tpm_seal_trusted() - seal a trusted key payload
1343 * @chip: a &struct tpm_chip instance, %NULL for the default chip
1344 * @options: authentication values and other options
1345 * @payload: the key data in clear and encrypted form
1347 * Note: only TPM 2.0 chip are supported. TPM 1.x implementation is located in
1348 * the keyring subsystem.
1350 * Return: same as with tpm_transmit_cmd()
1352 int tpm_seal_trusted(struct tpm_chip *chip, struct trusted_key_payload *payload,
1353 struct trusted_key_options *options)
1357 chip = tpm_find_get_ops(chip);
1358 if (!chip || !(chip->flags & TPM_CHIP_FLAG_TPM2))
1361 rc = tpm2_seal_trusted(chip, payload, options);
1366 EXPORT_SYMBOL_GPL(tpm_seal_trusted);
1369 * tpm_unseal_trusted() - unseal a trusted key
1370 * @chip: a &struct tpm_chip instance, %NULL for the default chip
1371 * @options: authentication values and other options
1372 * @payload: the key data in clear and encrypted form
1374 * Note: only TPM 2.0 chip are supported. TPM 1.x implementation is located in
1375 * the keyring subsystem.
1377 * Return: same as with tpm_transmit_cmd()
1379 int tpm_unseal_trusted(struct tpm_chip *chip,
1380 struct trusted_key_payload *payload,
1381 struct trusted_key_options *options)
1385 chip = tpm_find_get_ops(chip);
1386 if (!chip || !(chip->flags & TPM_CHIP_FLAG_TPM2))
1389 rc = tpm2_unseal_trusted(chip, payload, options);
1395 EXPORT_SYMBOL_GPL(tpm_unseal_trusted);
1397 static int __init tpm_init(void)
1401 tpm_class = class_create(THIS_MODULE, "tpm");
1402 if (IS_ERR(tpm_class)) {
1403 pr_err("couldn't create tpm class\n");
1404 return PTR_ERR(tpm_class);
1407 tpmrm_class = class_create(THIS_MODULE, "tpmrm");
1408 if (IS_ERR(tpmrm_class)) {
1409 pr_err("couldn't create tpmrm class\n");
1410 class_destroy(tpm_class);
1411 return PTR_ERR(tpmrm_class);
1414 rc = alloc_chrdev_region(&tpm_devt, 0, 2*TPM_NUM_DEVICES, "tpm");
1416 pr_err("tpm: failed to allocate char dev region\n");
1417 class_destroy(tpmrm_class);
1418 class_destroy(tpm_class);
1425 static void __exit tpm_exit(void)
1427 idr_destroy(&dev_nums_idr);
1428 class_destroy(tpm_class);
1429 class_destroy(tpmrm_class);
1430 unregister_chrdev_region(tpm_devt, 2*TPM_NUM_DEVICES);
1433 subsys_initcall(tpm_init);
1434 module_exit(tpm_exit);
1437 MODULE_DESCRIPTION("TPM Driver");
1438 MODULE_VERSION("2.0");
1439 MODULE_LICENSE("GPL");