1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2010 IBM Corporation
4 * Copyright (c) 2019-2021, Linaro Limited
6 * See Documentation/security/keys/trusted-encrypted.rst
9 #include <crypto/hash_info.h>
10 #include <linux/init.h>
11 #include <linux/slab.h>
12 #include <linux/parser.h>
13 #include <linux/string.h>
14 #include <linux/err.h>
15 #include <keys/trusted-type.h>
16 #include <linux/key-type.h>
17 #include <linux/crypto.h>
18 #include <crypto/hash.h>
19 #include <crypto/sha1.h>
20 #include <linux/tpm.h>
21 #include <linux/tpm_command.h>
23 #include <keys/trusted_tpm.h>
25 static const char hmac_alg
[] = "hmac(sha1)";
26 static const char hash_alg
[] = "sha1";
27 static struct tpm_chip
*chip
;
28 static struct tpm_digest
*digests
;
31 struct shash_desc shash
;
35 static struct crypto_shash
*hashalg
;
36 static struct crypto_shash
*hmacalg
;
38 static struct sdesc
*init_sdesc(struct crypto_shash
*alg
)
43 size
= sizeof(struct shash_desc
) + crypto_shash_descsize(alg
);
44 sdesc
= kmalloc(size
, GFP_KERNEL
);
46 return ERR_PTR(-ENOMEM
);
47 sdesc
->shash
.tfm
= alg
;
51 static int TSS_sha1(const unsigned char *data
, unsigned int datalen
,
52 unsigned char *digest
)
57 sdesc
= init_sdesc(hashalg
);
59 pr_info("can't alloc %s\n", hash_alg
);
60 return PTR_ERR(sdesc
);
63 ret
= crypto_shash_digest(&sdesc
->shash
, data
, datalen
, digest
);
64 kfree_sensitive(sdesc
);
68 static int TSS_rawhmac(unsigned char *digest
, const unsigned char *key
,
69 unsigned int keylen
, ...)
77 sdesc
= init_sdesc(hmacalg
);
79 pr_info("can't alloc %s\n", hmac_alg
);
80 return PTR_ERR(sdesc
);
83 ret
= crypto_shash_setkey(hmacalg
, key
, keylen
);
86 ret
= crypto_shash_init(&sdesc
->shash
);
90 va_start(argp
, keylen
);
92 dlen
= va_arg(argp
, unsigned int);
95 data
= va_arg(argp
, unsigned char *);
100 ret
= crypto_shash_update(&sdesc
->shash
, data
, dlen
);
106 ret
= crypto_shash_final(&sdesc
->shash
, digest
);
108 kfree_sensitive(sdesc
);
113 * calculate authorization info fields to send to TPM
115 int TSS_authhmac(unsigned char *digest
, const unsigned char *key
,
116 unsigned int keylen
, unsigned char *h1
,
117 unsigned char *h2
, unsigned int h3
, ...)
119 unsigned char paramdigest
[SHA1_DIGEST_SIZE
];
130 sdesc
= init_sdesc(hashalg
);
132 pr_info("can't alloc %s\n", hash_alg
);
133 return PTR_ERR(sdesc
);
137 ret
= crypto_shash_init(&sdesc
->shash
);
142 dlen
= va_arg(argp
, unsigned int);
145 data
= va_arg(argp
, unsigned char *);
150 ret
= crypto_shash_update(&sdesc
->shash
, data
, dlen
);
156 ret
= crypto_shash_final(&sdesc
->shash
, paramdigest
);
158 ret
= TSS_rawhmac(digest
, key
, keylen
, SHA1_DIGEST_SIZE
,
159 paramdigest
, TPM_NONCE_SIZE
, h1
,
160 TPM_NONCE_SIZE
, h2
, 1, &c
, 0, 0);
162 kfree_sensitive(sdesc
);
165 EXPORT_SYMBOL_GPL(TSS_authhmac
);
168 * verify the AUTH1_COMMAND (Seal) result from TPM
170 int TSS_checkhmac1(unsigned char *buffer
,
171 const uint32_t command
,
172 const unsigned char *ononce
,
173 const unsigned char *key
,
174 unsigned int keylen
, ...)
180 unsigned char *enonce
;
181 unsigned char *continueflag
;
182 unsigned char *authdata
;
183 unsigned char testhmac
[SHA1_DIGEST_SIZE
];
184 unsigned char paramdigest
[SHA1_DIGEST_SIZE
];
194 bufsize
= LOAD32(buffer
, TPM_SIZE_OFFSET
);
195 tag
= LOAD16(buffer
, 0);
197 result
= LOAD32N(buffer
, TPM_RETURN_OFFSET
);
198 if (tag
== TPM_TAG_RSP_COMMAND
)
200 if (tag
!= TPM_TAG_RSP_AUTH1_COMMAND
)
202 authdata
= buffer
+ bufsize
- SHA1_DIGEST_SIZE
;
203 continueflag
= authdata
- 1;
204 enonce
= continueflag
- TPM_NONCE_SIZE
;
206 sdesc
= init_sdesc(hashalg
);
208 pr_info("can't alloc %s\n", hash_alg
);
209 return PTR_ERR(sdesc
);
211 ret
= crypto_shash_init(&sdesc
->shash
);
214 ret
= crypto_shash_update(&sdesc
->shash
, (const u8
*)&result
,
218 ret
= crypto_shash_update(&sdesc
->shash
, (const u8
*)&ordinal
,
222 va_start(argp
, keylen
);
224 dlen
= va_arg(argp
, unsigned int);
227 dpos
= va_arg(argp
, unsigned int);
228 ret
= crypto_shash_update(&sdesc
->shash
, buffer
+ dpos
, dlen
);
234 ret
= crypto_shash_final(&sdesc
->shash
, paramdigest
);
238 ret
= TSS_rawhmac(testhmac
, key
, keylen
, SHA1_DIGEST_SIZE
, paramdigest
,
239 TPM_NONCE_SIZE
, enonce
, TPM_NONCE_SIZE
, ononce
,
240 1, continueflag
, 0, 0);
244 if (memcmp(testhmac
, authdata
, SHA1_DIGEST_SIZE
))
247 kfree_sensitive(sdesc
);
250 EXPORT_SYMBOL_GPL(TSS_checkhmac1
);
253 * verify the AUTH2_COMMAND (unseal) result from TPM
255 static int TSS_checkhmac2(unsigned char *buffer
,
256 const uint32_t command
,
257 const unsigned char *ononce
,
258 const unsigned char *key1
,
259 unsigned int keylen1
,
260 const unsigned char *key2
,
261 unsigned int keylen2
, ...)
267 unsigned char *enonce1
;
268 unsigned char *continueflag1
;
269 unsigned char *authdata1
;
270 unsigned char *enonce2
;
271 unsigned char *continueflag2
;
272 unsigned char *authdata2
;
273 unsigned char testhmac1
[SHA1_DIGEST_SIZE
];
274 unsigned char testhmac2
[SHA1_DIGEST_SIZE
];
275 unsigned char paramdigest
[SHA1_DIGEST_SIZE
];
282 bufsize
= LOAD32(buffer
, TPM_SIZE_OFFSET
);
283 tag
= LOAD16(buffer
, 0);
285 result
= LOAD32N(buffer
, TPM_RETURN_OFFSET
);
287 if (tag
== TPM_TAG_RSP_COMMAND
)
289 if (tag
!= TPM_TAG_RSP_AUTH2_COMMAND
)
291 authdata1
= buffer
+ bufsize
- (SHA1_DIGEST_SIZE
+ 1
292 + SHA1_DIGEST_SIZE
+ SHA1_DIGEST_SIZE
);
293 authdata2
= buffer
+ bufsize
- (SHA1_DIGEST_SIZE
);
294 continueflag1
= authdata1
- 1;
295 continueflag2
= authdata2
- 1;
296 enonce1
= continueflag1
- TPM_NONCE_SIZE
;
297 enonce2
= continueflag2
- TPM_NONCE_SIZE
;
299 sdesc
= init_sdesc(hashalg
);
301 pr_info("can't alloc %s\n", hash_alg
);
302 return PTR_ERR(sdesc
);
304 ret
= crypto_shash_init(&sdesc
->shash
);
307 ret
= crypto_shash_update(&sdesc
->shash
, (const u8
*)&result
,
311 ret
= crypto_shash_update(&sdesc
->shash
, (const u8
*)&ordinal
,
316 va_start(argp
, keylen2
);
318 dlen
= va_arg(argp
, unsigned int);
321 dpos
= va_arg(argp
, unsigned int);
322 ret
= crypto_shash_update(&sdesc
->shash
, buffer
+ dpos
, dlen
);
328 ret
= crypto_shash_final(&sdesc
->shash
, paramdigest
);
332 ret
= TSS_rawhmac(testhmac1
, key1
, keylen1
, SHA1_DIGEST_SIZE
,
333 paramdigest
, TPM_NONCE_SIZE
, enonce1
,
334 TPM_NONCE_SIZE
, ononce
, 1, continueflag1
, 0, 0);
337 if (memcmp(testhmac1
, authdata1
, SHA1_DIGEST_SIZE
)) {
341 ret
= TSS_rawhmac(testhmac2
, key2
, keylen2
, SHA1_DIGEST_SIZE
,
342 paramdigest
, TPM_NONCE_SIZE
, enonce2
,
343 TPM_NONCE_SIZE
, ononce
, 1, continueflag2
, 0, 0);
346 if (memcmp(testhmac2
, authdata2
, SHA1_DIGEST_SIZE
))
349 kfree_sensitive(sdesc
);
354 * For key specific tpm requests, we will generate and send our
355 * own TPM command packets using the drivers send function.
357 int trusted_tpm_send(unsigned char *cmd
, size_t buflen
)
365 rc
= tpm_try_get_ops(chip
);
373 rc
= tpm_transmit_cmd(chip
, &buf
, 4, "sending data");
383 EXPORT_SYMBOL_GPL(trusted_tpm_send
);
386 * Lock a trusted key, by extending a selected PCR.
388 * Prevents a trusted key that is sealed to PCRs from being accessed.
389 * This uses the tpm driver's extend function.
391 static int pcrlock(const int pcrnum
)
393 if (!capable(CAP_SYS_ADMIN
))
396 return tpm_pcr_extend(chip
, pcrnum
, digests
) ? -EINVAL
: 0;
400 * Create an object specific authorisation protocol (OSAP) session
402 static int osap(struct tpm_buf
*tb
, struct osapsess
*s
,
403 const unsigned char *key
, uint16_t type
, uint32_t handle
)
405 unsigned char enonce
[TPM_NONCE_SIZE
];
406 unsigned char ononce
[TPM_NONCE_SIZE
];
409 ret
= tpm_get_random(chip
, ononce
, TPM_NONCE_SIZE
);
413 if (ret
!= TPM_NONCE_SIZE
)
416 tpm_buf_reset(tb
, TPM_TAG_RQU_COMMAND
, TPM_ORD_OSAP
);
417 tpm_buf_append_u16(tb
, type
);
418 tpm_buf_append_u32(tb
, handle
);
419 tpm_buf_append(tb
, ononce
, TPM_NONCE_SIZE
);
421 ret
= trusted_tpm_send(tb
->data
, tb
->length
);
425 s
->handle
= LOAD32(tb
->data
, TPM_DATA_OFFSET
);
426 memcpy(s
->enonce
, &(tb
->data
[TPM_DATA_OFFSET
+ sizeof(uint32_t)]),
428 memcpy(enonce
, &(tb
->data
[TPM_DATA_OFFSET
+ sizeof(uint32_t) +
429 TPM_NONCE_SIZE
]), TPM_NONCE_SIZE
);
430 return TSS_rawhmac(s
->secret
, key
, SHA1_DIGEST_SIZE
, TPM_NONCE_SIZE
,
431 enonce
, TPM_NONCE_SIZE
, ononce
, 0, 0);
435 * Create an object independent authorisation protocol (oiap) session
437 int oiap(struct tpm_buf
*tb
, uint32_t *handle
, unsigned char *nonce
)
444 tpm_buf_reset(tb
, TPM_TAG_RQU_COMMAND
, TPM_ORD_OIAP
);
445 ret
= trusted_tpm_send(tb
->data
, tb
->length
);
449 *handle
= LOAD32(tb
->data
, TPM_DATA_OFFSET
);
450 memcpy(nonce
, &tb
->data
[TPM_DATA_OFFSET
+ sizeof(uint32_t)],
454 EXPORT_SYMBOL_GPL(oiap
);
457 unsigned char encauth
[SHA1_DIGEST_SIZE
];
458 unsigned char pubauth
[SHA1_DIGEST_SIZE
];
459 unsigned char xorwork
[SHA1_DIGEST_SIZE
* 2];
460 unsigned char xorhash
[SHA1_DIGEST_SIZE
];
461 unsigned char nonceodd
[TPM_NONCE_SIZE
];
465 * Have the TPM seal(encrypt) the trusted key, possibly based on
466 * Platform Configuration Registers (PCRs). AUTH1 for sealing key.
468 static int tpm_seal(struct tpm_buf
*tb
, uint16_t keytype
,
469 uint32_t keyhandle
, const unsigned char *keyauth
,
470 const unsigned char *data
, uint32_t datalen
,
471 unsigned char *blob
, uint32_t *bloblen
,
472 const unsigned char *blobauth
,
473 const unsigned char *pcrinfo
, uint32_t pcrinfosize
)
475 struct osapsess sess
;
476 struct tpm_digests
*td
;
487 /* alloc some work space for all the hashes */
488 td
= kmalloc(sizeof *td
, GFP_KERNEL
);
492 /* get session for sealing key */
493 ret
= osap(tb
, &sess
, keyauth
, keytype
, keyhandle
);
498 /* calculate encrypted authorization value */
499 memcpy(td
->xorwork
, sess
.secret
, SHA1_DIGEST_SIZE
);
500 memcpy(td
->xorwork
+ SHA1_DIGEST_SIZE
, sess
.enonce
, SHA1_DIGEST_SIZE
);
501 ret
= TSS_sha1(td
->xorwork
, SHA1_DIGEST_SIZE
* 2, td
->xorhash
);
505 ret
= tpm_get_random(chip
, td
->nonceodd
, TPM_NONCE_SIZE
);
509 if (ret
!= TPM_NONCE_SIZE
) {
514 ordinal
= htonl(TPM_ORD_SEAL
);
515 datsize
= htonl(datalen
);
516 pcrsize
= htonl(pcrinfosize
);
519 /* encrypt data authorization key */
520 for (i
= 0; i
< SHA1_DIGEST_SIZE
; ++i
)
521 td
->encauth
[i
] = td
->xorhash
[i
] ^ blobauth
[i
];
523 /* calculate authorization HMAC value */
524 if (pcrinfosize
== 0) {
525 /* no pcr info specified */
526 ret
= TSS_authhmac(td
->pubauth
, sess
.secret
, SHA1_DIGEST_SIZE
,
527 sess
.enonce
, td
->nonceodd
, cont
,
528 sizeof(uint32_t), &ordinal
, SHA1_DIGEST_SIZE
,
529 td
->encauth
, sizeof(uint32_t), &pcrsize
,
530 sizeof(uint32_t), &datsize
, datalen
, data
, 0,
533 /* pcr info specified */
534 ret
= TSS_authhmac(td
->pubauth
, sess
.secret
, SHA1_DIGEST_SIZE
,
535 sess
.enonce
, td
->nonceodd
, cont
,
536 sizeof(uint32_t), &ordinal
, SHA1_DIGEST_SIZE
,
537 td
->encauth
, sizeof(uint32_t), &pcrsize
,
538 pcrinfosize
, pcrinfo
, sizeof(uint32_t),
539 &datsize
, datalen
, data
, 0, 0);
544 /* build and send the TPM request packet */
545 tpm_buf_reset(tb
, TPM_TAG_RQU_AUTH1_COMMAND
, TPM_ORD_SEAL
);
546 tpm_buf_append_u32(tb
, keyhandle
);
547 tpm_buf_append(tb
, td
->encauth
, SHA1_DIGEST_SIZE
);
548 tpm_buf_append_u32(tb
, pcrinfosize
);
549 tpm_buf_append(tb
, pcrinfo
, pcrinfosize
);
550 tpm_buf_append_u32(tb
, datalen
);
551 tpm_buf_append(tb
, data
, datalen
);
552 tpm_buf_append_u32(tb
, sess
.handle
);
553 tpm_buf_append(tb
, td
->nonceodd
, TPM_NONCE_SIZE
);
554 tpm_buf_append_u8(tb
, cont
);
555 tpm_buf_append(tb
, td
->pubauth
, SHA1_DIGEST_SIZE
);
557 ret
= trusted_tpm_send(tb
->data
, tb
->length
);
561 /* calculate the size of the returned Blob */
562 sealinfosize
= LOAD32(tb
->data
, TPM_DATA_OFFSET
+ sizeof(uint32_t));
563 encdatasize
= LOAD32(tb
->data
, TPM_DATA_OFFSET
+ sizeof(uint32_t) +
564 sizeof(uint32_t) + sealinfosize
);
565 storedsize
= sizeof(uint32_t) + sizeof(uint32_t) + sealinfosize
+
566 sizeof(uint32_t) + encdatasize
;
568 /* check the HMAC in the response */
569 ret
= TSS_checkhmac1(tb
->data
, ordinal
, td
->nonceodd
, sess
.secret
,
570 SHA1_DIGEST_SIZE
, storedsize
, TPM_DATA_OFFSET
, 0,
573 /* copy the returned blob to caller */
575 memcpy(blob
, tb
->data
+ TPM_DATA_OFFSET
, storedsize
);
576 *bloblen
= storedsize
;
584 * use the AUTH2_COMMAND form of unseal, to authorize both key and blob
586 static int tpm_unseal(struct tpm_buf
*tb
,
587 uint32_t keyhandle
, const unsigned char *keyauth
,
588 const unsigned char *blob
, int bloblen
,
589 const unsigned char *blobauth
,
590 unsigned char *data
, unsigned int *datalen
)
592 unsigned char nonceodd
[TPM_NONCE_SIZE
];
593 unsigned char enonce1
[TPM_NONCE_SIZE
];
594 unsigned char enonce2
[TPM_NONCE_SIZE
];
595 unsigned char authdata1
[SHA1_DIGEST_SIZE
];
596 unsigned char authdata2
[SHA1_DIGEST_SIZE
];
597 uint32_t authhandle1
= 0;
598 uint32_t authhandle2
= 0;
599 unsigned char cont
= 0;
603 /* sessions for unsealing key and data */
604 ret
= oiap(tb
, &authhandle1
, enonce1
);
606 pr_info("oiap failed (%d)\n", ret
);
609 ret
= oiap(tb
, &authhandle2
, enonce2
);
611 pr_info("oiap failed (%d)\n", ret
);
615 ordinal
= htonl(TPM_ORD_UNSEAL
);
616 ret
= tpm_get_random(chip
, nonceodd
, TPM_NONCE_SIZE
);
620 if (ret
!= TPM_NONCE_SIZE
) {
621 pr_info("tpm_get_random failed (%d)\n", ret
);
624 ret
= TSS_authhmac(authdata1
, keyauth
, TPM_NONCE_SIZE
,
625 enonce1
, nonceodd
, cont
, sizeof(uint32_t),
626 &ordinal
, bloblen
, blob
, 0, 0);
629 ret
= TSS_authhmac(authdata2
, blobauth
, TPM_NONCE_SIZE
,
630 enonce2
, nonceodd
, cont
, sizeof(uint32_t),
631 &ordinal
, bloblen
, blob
, 0, 0);
635 /* build and send TPM request packet */
636 tpm_buf_reset(tb
, TPM_TAG_RQU_AUTH2_COMMAND
, TPM_ORD_UNSEAL
);
637 tpm_buf_append_u32(tb
, keyhandle
);
638 tpm_buf_append(tb
, blob
, bloblen
);
639 tpm_buf_append_u32(tb
, authhandle1
);
640 tpm_buf_append(tb
, nonceodd
, TPM_NONCE_SIZE
);
641 tpm_buf_append_u8(tb
, cont
);
642 tpm_buf_append(tb
, authdata1
, SHA1_DIGEST_SIZE
);
643 tpm_buf_append_u32(tb
, authhandle2
);
644 tpm_buf_append(tb
, nonceodd
, TPM_NONCE_SIZE
);
645 tpm_buf_append_u8(tb
, cont
);
646 tpm_buf_append(tb
, authdata2
, SHA1_DIGEST_SIZE
);
648 ret
= trusted_tpm_send(tb
->data
, tb
->length
);
650 pr_info("authhmac failed (%d)\n", ret
);
654 *datalen
= LOAD32(tb
->data
, TPM_DATA_OFFSET
);
655 ret
= TSS_checkhmac2(tb
->data
, ordinal
, nonceodd
,
656 keyauth
, SHA1_DIGEST_SIZE
,
657 blobauth
, SHA1_DIGEST_SIZE
,
658 sizeof(uint32_t), TPM_DATA_OFFSET
,
659 *datalen
, TPM_DATA_OFFSET
+ sizeof(uint32_t), 0,
662 pr_info("TSS_checkhmac2 failed (%d)\n", ret
);
665 memcpy(data
, tb
->data
+ TPM_DATA_OFFSET
+ sizeof(uint32_t), *datalen
);
670 * Have the TPM seal(encrypt) the symmetric key
672 static int key_seal(struct trusted_key_payload
*p
,
673 struct trusted_key_options
*o
)
678 ret
= tpm_buf_init(&tb
, 0, 0);
682 /* include migratable flag at end of sealed key */
683 p
->key
[p
->key_len
] = p
->migratable
;
685 ret
= tpm_seal(&tb
, o
->keytype
, o
->keyhandle
, o
->keyauth
,
686 p
->key
, p
->key_len
+ 1, p
->blob
, &p
->blob_len
,
687 o
->blobauth
, o
->pcrinfo
, o
->pcrinfo_len
);
689 pr_info("srkseal failed (%d)\n", ret
);
691 tpm_buf_destroy(&tb
);
696 * Have the TPM unseal(decrypt) the symmetric key
698 static int key_unseal(struct trusted_key_payload
*p
,
699 struct trusted_key_options
*o
)
704 ret
= tpm_buf_init(&tb
, 0, 0);
708 ret
= tpm_unseal(&tb
, o
->keyhandle
, o
->keyauth
, p
->blob
, p
->blob_len
,
709 o
->blobauth
, p
->key
, &p
->key_len
);
711 pr_info("srkunseal failed (%d)\n", ret
);
713 /* pull migratable flag out of sealed key */
714 p
->migratable
= p
->key
[--p
->key_len
];
716 tpm_buf_destroy(&tb
);
722 Opt_keyhandle
, Opt_keyauth
, Opt_blobauth
,
723 Opt_pcrinfo
, Opt_pcrlock
, Opt_migratable
,
729 static const match_table_t key_tokens
= {
730 {Opt_keyhandle
, "keyhandle=%s"},
731 {Opt_keyauth
, "keyauth=%s"},
732 {Opt_blobauth
, "blobauth=%s"},
733 {Opt_pcrinfo
, "pcrinfo=%s"},
734 {Opt_pcrlock
, "pcrlock=%s"},
735 {Opt_migratable
, "migratable=%s"},
736 {Opt_hash
, "hash=%s"},
737 {Opt_policydigest
, "policydigest=%s"},
738 {Opt_policyhandle
, "policyhandle=%s"},
742 /* can have zero or more token= options */
743 static int getoptions(char *c
, struct trusted_key_payload
*pay
,
744 struct trusted_key_options
*opt
)
746 substring_t args
[MAX_OPT_ARGS
];
750 unsigned long handle
;
752 unsigned long token_mask
= 0;
753 unsigned int digest_len
;
757 tpm2
= tpm_is_tpm2(chip
);
761 opt
->hash
= tpm2
? HASH_ALGO_SHA256
: HASH_ALGO_SHA1
;
766 while ((p
= strsep(&c
, " \t"))) {
767 if (*p
== '\0' || *p
== ' ' || *p
== '\t')
769 token
= match_token(p
, key_tokens
, args
);
770 if (test_and_set_bit(token
, &token_mask
))
775 opt
->pcrinfo_len
= strlen(args
[0].from
) / 2;
776 if (opt
->pcrinfo_len
> MAX_PCRINFO_SIZE
)
778 res
= hex2bin(opt
->pcrinfo
, args
[0].from
,
784 res
= kstrtoul(args
[0].from
, 16, &handle
);
787 opt
->keytype
= SEAL_keytype
;
788 opt
->keyhandle
= handle
;
791 if (strlen(args
[0].from
) != 2 * SHA1_DIGEST_SIZE
)
793 res
= hex2bin(opt
->keyauth
, args
[0].from
,
800 * TPM 1.2 authorizations are sha1 hashes passed in as
801 * hex strings. TPM 2.0 authorizations are simple
802 * passwords (although it can take a hash as well)
804 opt
->blobauth_len
= strlen(args
[0].from
);
806 if (opt
->blobauth_len
== 2 * TPM_DIGEST_SIZE
) {
807 res
= hex2bin(opt
->blobauth
, args
[0].from
,
812 opt
->blobauth_len
= TPM_DIGEST_SIZE
;
816 if (tpm2
&& opt
->blobauth_len
<= sizeof(opt
->blobauth
)) {
817 memcpy(opt
->blobauth
, args
[0].from
,
827 if (*args
[0].from
== '0')
829 else if (*args
[0].from
!= '1')
833 res
= kstrtoul(args
[0].from
, 10, &lock
);
839 if (test_bit(Opt_policydigest
, &token_mask
))
841 for (i
= 0; i
< HASH_ALGO__LAST
; i
++) {
842 if (!strcmp(args
[0].from
, hash_algo_name
[i
])) {
847 if (i
== HASH_ALGO__LAST
)
849 if (!tpm2
&& i
!= HASH_ALGO_SHA1
) {
850 pr_info("TPM 1.x only supports SHA-1.\n");
854 case Opt_policydigest
:
855 digest_len
= hash_digest_size
[opt
->hash
];
856 if (!tpm2
|| strlen(args
[0].from
) != (2 * digest_len
))
858 res
= hex2bin(opt
->policydigest
, args
[0].from
,
862 opt
->policydigest_len
= digest_len
;
864 case Opt_policyhandle
:
867 res
= kstrtoul(args
[0].from
, 16, &handle
);
870 opt
->policyhandle
= handle
;
879 static struct trusted_key_options
*trusted_options_alloc(void)
881 struct trusted_key_options
*options
;
884 tpm2
= tpm_is_tpm2(chip
);
888 options
= kzalloc(sizeof *options
, GFP_KERNEL
);
890 /* set any non-zero defaults */
891 options
->keytype
= SRK_keytype
;
894 options
->keyhandle
= SRKHANDLE
;
899 static int trusted_tpm_seal(struct trusted_key_payload
*p
, char *datablob
)
901 struct trusted_key_options
*options
= NULL
;
905 tpm2
= tpm_is_tpm2(chip
);
909 options
= trusted_options_alloc();
913 ret
= getoptions(datablob
, p
, options
);
916 dump_options(options
);
918 if (!options
->keyhandle
&& !tpm2
) {
924 ret
= tpm2_seal_trusted(chip
, p
, options
);
926 ret
= key_seal(p
, options
);
928 pr_info("key_seal failed (%d)\n", ret
);
932 if (options
->pcrlock
) {
933 ret
= pcrlock(options
->pcrlock
);
935 pr_info("pcrlock failed (%d)\n", ret
);
940 kfree_sensitive(options
);
944 static int trusted_tpm_unseal(struct trusted_key_payload
*p
, char *datablob
)
946 struct trusted_key_options
*options
= NULL
;
950 tpm2
= tpm_is_tpm2(chip
);
954 options
= trusted_options_alloc();
958 ret
= getoptions(datablob
, p
, options
);
961 dump_options(options
);
963 if (!options
->keyhandle
&& !tpm2
) {
969 ret
= tpm2_unseal_trusted(chip
, p
, options
);
971 ret
= key_unseal(p
, options
);
973 pr_info("key_unseal failed (%d)\n", ret
);
975 if (options
->pcrlock
) {
976 ret
= pcrlock(options
->pcrlock
);
978 pr_info("pcrlock failed (%d)\n", ret
);
983 kfree_sensitive(options
);
987 static int trusted_tpm_get_random(unsigned char *key
, size_t key_len
)
989 return tpm_get_random(chip
, key
, key_len
);
992 static void trusted_shash_release(void)
995 crypto_free_shash(hashalg
);
997 crypto_free_shash(hmacalg
);
1000 static int __init
trusted_shash_alloc(void)
1004 hmacalg
= crypto_alloc_shash(hmac_alg
, 0, 0);
1005 if (IS_ERR(hmacalg
)) {
1006 pr_info("could not allocate crypto %s\n",
1008 return PTR_ERR(hmacalg
);
1011 hashalg
= crypto_alloc_shash(hash_alg
, 0, 0);
1012 if (IS_ERR(hashalg
)) {
1013 pr_info("could not allocate crypto %s\n",
1015 ret
= PTR_ERR(hashalg
);
1022 crypto_free_shash(hmacalg
);
1026 static int __init
init_digests(void)
1030 digests
= kcalloc(chip
->nr_allocated_banks
, sizeof(*digests
),
1035 for (i
= 0; i
< chip
->nr_allocated_banks
; i
++)
1036 digests
[i
].alg_id
= chip
->allocated_banks
[i
].alg_id
;
1041 static int __init
trusted_tpm_init(void)
1045 chip
= tpm_default_chip();
1049 ret
= init_digests();
1052 ret
= trusted_shash_alloc();
1055 ret
= register_key_type(&key_type_trusted
);
1060 trusted_shash_release();
1064 put_device(&chip
->dev
);
1068 static void trusted_tpm_exit(void)
1071 put_device(&chip
->dev
);
1073 trusted_shash_release();
1074 unregister_key_type(&key_type_trusted
);
1078 struct trusted_key_ops trusted_key_tpm_ops
= {
1079 .migratable
= 1, /* migratable by default */
1080 .init
= trusted_tpm_init
,
1081 .seal
= trusted_tpm_seal
,
1082 .unseal
= trusted_tpm_unseal
,
1083 .get_random
= trusted_tpm_get_random
,
1084 .exit
= trusted_tpm_exit
,