2 * Copyright (C) 2010 IBM Corporation
5 * David Safford <safford@us.ibm.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, version 2 of the License.
11 * See Documentation/keys-trusted-encrypted.txt
14 #include <linux/uaccess.h>
15 #include <linux/module.h>
16 #include <linux/init.h>
17 #include <linux/slab.h>
18 #include <linux/parser.h>
19 #include <linux/string.h>
20 #include <linux/err.h>
21 #include <keys/user-type.h>
22 #include <keys/trusted-type.h>
23 #include <linux/key-type.h>
24 #include <linux/rcupdate.h>
25 #include <linux/crypto.h>
26 #include <crypto/hash.h>
27 #include <crypto/sha.h>
28 #include <linux/capability.h>
29 #include <linux/tpm.h>
30 #include <linux/tpm_command.h>
32 #include "trusted_defined.h"
34 static const char hmac_alg[] = "hmac(sha1)";
35 static const char hash_alg[] = "sha1";
38 struct shash_desc shash;
42 static struct crypto_shash *hashalg;
43 static struct crypto_shash *hmacalg;
45 static struct sdesc *init_sdesc(struct crypto_shash *alg)
50 size = sizeof(struct shash_desc) + crypto_shash_descsize(alg);
51 sdesc = kmalloc(size, GFP_KERNEL);
53 return ERR_PTR(-ENOMEM);
54 sdesc->shash.tfm = alg;
55 sdesc->shash.flags = 0x0;
59 static int TSS_sha1(const unsigned char *data, unsigned int datalen,
60 unsigned char *digest)
65 sdesc = init_sdesc(hashalg);
67 pr_info("trusted_key: can't alloc %s\n", hash_alg);
68 return PTR_ERR(sdesc);
71 ret = crypto_shash_digest(&sdesc->shash, data, datalen, digest);
76 static int TSS_rawhmac(unsigned char *digest, const unsigned char *key,
77 unsigned int keylen, ...)
85 sdesc = init_sdesc(hmacalg);
87 pr_info("trusted_key: can't alloc %s\n", hmac_alg);
88 return PTR_ERR(sdesc);
91 ret = crypto_shash_setkey(hmacalg, key, keylen);
94 ret = crypto_shash_init(&sdesc->shash);
98 va_start(argp, keylen);
100 dlen = va_arg(argp, unsigned int);
103 data = va_arg(argp, unsigned char *);
108 ret = crypto_shash_update(&sdesc->shash, data, dlen);
114 ret = crypto_shash_final(&sdesc->shash, digest);
121 * calculate authorization info fields to send to TPM
123 static int TSS_authhmac(unsigned char *digest, const unsigned char *key,
124 unsigned int keylen, unsigned char *h1,
125 unsigned char *h2, unsigned char h3, ...)
127 unsigned char paramdigest[SHA1_DIGEST_SIZE];
135 sdesc = init_sdesc(hashalg);
137 pr_info("trusted_key: can't alloc %s\n", hash_alg);
138 return PTR_ERR(sdesc);
142 ret = crypto_shash_init(&sdesc->shash);
147 dlen = va_arg(argp, unsigned int);
150 data = va_arg(argp, unsigned char *);
151 ret = crypto_shash_update(&sdesc->shash, data, dlen);
158 ret = crypto_shash_final(&sdesc->shash, paramdigest);
160 ret = TSS_rawhmac(digest, key, keylen, SHA1_DIGEST_SIZE,
161 paramdigest, TPM_NONCE_SIZE, h1,
162 TPM_NONCE_SIZE, h2, 1, &c, 0, 0);
169 * verify the AUTH1_COMMAND (Seal) result from TPM
171 static int TSS_checkhmac1(unsigned char *buffer,
172 const uint32_t command,
173 const unsigned char *ononce,
174 const unsigned char *key,
175 unsigned int keylen, ...)
181 unsigned char *enonce;
182 unsigned char *continueflag;
183 unsigned char *authdata;
184 unsigned char testhmac[SHA1_DIGEST_SIZE];
185 unsigned char paramdigest[SHA1_DIGEST_SIZE];
192 bufsize = LOAD32(buffer, TPM_SIZE_OFFSET);
193 tag = LOAD16(buffer, 0);
195 result = LOAD32N(buffer, TPM_RETURN_OFFSET);
196 if (tag == TPM_TAG_RSP_COMMAND)
198 if (tag != TPM_TAG_RSP_AUTH1_COMMAND)
200 authdata = buffer + bufsize - SHA1_DIGEST_SIZE;
201 continueflag = authdata - 1;
202 enonce = continueflag - TPM_NONCE_SIZE;
204 sdesc = init_sdesc(hashalg);
206 pr_info("trusted_key: can't alloc %s\n", hash_alg);
207 return PTR_ERR(sdesc);
209 ret = crypto_shash_init(&sdesc->shash);
212 ret = crypto_shash_update(&sdesc->shash, (const u8 *)&result,
216 ret = crypto_shash_update(&sdesc->shash, (const u8 *)&ordinal,
220 va_start(argp, keylen);
222 dlen = va_arg(argp, unsigned int);
225 dpos = va_arg(argp, unsigned int);
226 ret = crypto_shash_update(&sdesc->shash, buffer + dpos, dlen);
233 ret = crypto_shash_final(&sdesc->shash, paramdigest);
237 ret = TSS_rawhmac(testhmac, key, keylen, SHA1_DIGEST_SIZE, paramdigest,
238 TPM_NONCE_SIZE, enonce, TPM_NONCE_SIZE, ononce,
239 1, continueflag, 0, 0);
243 if (memcmp(testhmac, authdata, SHA1_DIGEST_SIZE))
251 * verify the AUTH2_COMMAND (unseal) result from TPM
253 static int TSS_checkhmac2(unsigned char *buffer,
254 const uint32_t command,
255 const unsigned char *ononce,
256 const unsigned char *key1,
257 unsigned int keylen1,
258 const unsigned char *key2,
259 unsigned int keylen2, ...)
265 unsigned char *enonce1;
266 unsigned char *continueflag1;
267 unsigned char *authdata1;
268 unsigned char *enonce2;
269 unsigned char *continueflag2;
270 unsigned char *authdata2;
271 unsigned char testhmac1[SHA1_DIGEST_SIZE];
272 unsigned char testhmac2[SHA1_DIGEST_SIZE];
273 unsigned char paramdigest[SHA1_DIGEST_SIZE];
280 bufsize = LOAD32(buffer, TPM_SIZE_OFFSET);
281 tag = LOAD16(buffer, 0);
283 result = LOAD32N(buffer, TPM_RETURN_OFFSET);
285 if (tag == TPM_TAG_RSP_COMMAND)
287 if (tag != TPM_TAG_RSP_AUTH2_COMMAND)
289 authdata1 = buffer + bufsize - (SHA1_DIGEST_SIZE + 1
290 + SHA1_DIGEST_SIZE + SHA1_DIGEST_SIZE);
291 authdata2 = buffer + bufsize - (SHA1_DIGEST_SIZE);
292 continueflag1 = authdata1 - 1;
293 continueflag2 = authdata2 - 1;
294 enonce1 = continueflag1 - TPM_NONCE_SIZE;
295 enonce2 = continueflag2 - TPM_NONCE_SIZE;
297 sdesc = init_sdesc(hashalg);
299 pr_info("trusted_key: can't alloc %s\n", hash_alg);
300 return PTR_ERR(sdesc);
302 ret = crypto_shash_init(&sdesc->shash);
305 ret = crypto_shash_update(&sdesc->shash, (const u8 *)&result,
309 ret = crypto_shash_update(&sdesc->shash, (const u8 *)&ordinal,
314 va_start(argp, keylen2);
316 dlen = va_arg(argp, unsigned int);
319 dpos = va_arg(argp, unsigned int);
320 ret = crypto_shash_update(&sdesc->shash, buffer + dpos, dlen);
327 ret = crypto_shash_final(&sdesc->shash, paramdigest);
331 ret = TSS_rawhmac(testhmac1, key1, keylen1, SHA1_DIGEST_SIZE,
332 paramdigest, TPM_NONCE_SIZE, enonce1,
333 TPM_NONCE_SIZE, ononce, 1, continueflag1, 0, 0);
336 if (memcmp(testhmac1, authdata1, SHA1_DIGEST_SIZE)) {
340 ret = TSS_rawhmac(testhmac2, key2, keylen2, SHA1_DIGEST_SIZE,
341 paramdigest, TPM_NONCE_SIZE, enonce2,
342 TPM_NONCE_SIZE, ononce, 1, continueflag2, 0, 0);
345 if (memcmp(testhmac2, authdata2, SHA1_DIGEST_SIZE))
353 * For key specific tpm requests, we will generate and send our
354 * own TPM command packets using the drivers send function.
356 static int trusted_tpm_send(const u32 chip_num, unsigned char *cmd,
362 rc = tpm_send(chip_num, cmd, buflen);
365 /* Can't return positive return codes values to keyctl */
371 * get a random value from TPM
373 static int tpm_get_random(struct tpm_buf *tb, unsigned char *buf, uint32_t len)
378 store16(tb, TPM_TAG_RQU_COMMAND);
379 store32(tb, TPM_GETRANDOM_SIZE);
380 store32(tb, TPM_ORD_GETRANDOM);
382 ret = trusted_tpm_send(TPM_ANY_NUM, tb->data, sizeof tb->data);
384 memcpy(buf, tb->data + TPM_GETRANDOM_SIZE, len);
388 static int my_get_random(unsigned char *buf, int len)
393 tb = kmalloc(sizeof *tb, GFP_KERNEL);
396 ret = tpm_get_random(tb, buf, len);
403 * Lock a trusted key, by extending a selected PCR.
405 * Prevents a trusted key that is sealed to PCRs from being accessed.
406 * This uses the tpm driver's extend function.
408 static int pcrlock(const int pcrnum)
410 unsigned char hash[SHA1_DIGEST_SIZE];
413 if (!capable(CAP_SYS_ADMIN))
415 ret = my_get_random(hash, SHA1_DIGEST_SIZE);
418 return tpm_pcr_extend(TPM_ANY_NUM, pcrnum, hash) ? -EINVAL : 0;
422 * Create an object specific authorisation protocol (OSAP) session
424 static int osap(struct tpm_buf *tb, struct osapsess *s,
425 const unsigned char *key, uint16_t type, uint32_t handle)
427 unsigned char enonce[TPM_NONCE_SIZE];
428 unsigned char ononce[TPM_NONCE_SIZE];
431 ret = tpm_get_random(tb, ononce, TPM_NONCE_SIZE);
436 store16(tb, TPM_TAG_RQU_COMMAND);
437 store32(tb, TPM_OSAP_SIZE);
438 store32(tb, TPM_ORD_OSAP);
441 storebytes(tb, ononce, TPM_NONCE_SIZE);
443 ret = trusted_tpm_send(TPM_ANY_NUM, tb->data, MAX_BUF_SIZE);
447 s->handle = LOAD32(tb->data, TPM_DATA_OFFSET);
448 memcpy(s->enonce, &(tb->data[TPM_DATA_OFFSET + sizeof(uint32_t)]),
450 memcpy(enonce, &(tb->data[TPM_DATA_OFFSET + sizeof(uint32_t) +
451 TPM_NONCE_SIZE]), TPM_NONCE_SIZE);
452 return TSS_rawhmac(s->secret, key, SHA1_DIGEST_SIZE, TPM_NONCE_SIZE,
453 enonce, TPM_NONCE_SIZE, ononce, 0, 0);
457 * Create an object independent authorisation protocol (oiap) session
459 static int oiap(struct tpm_buf *tb, uint32_t *handle, unsigned char *nonce)
464 store16(tb, TPM_TAG_RQU_COMMAND);
465 store32(tb, TPM_OIAP_SIZE);
466 store32(tb, TPM_ORD_OIAP);
467 ret = trusted_tpm_send(TPM_ANY_NUM, tb->data, MAX_BUF_SIZE);
471 *handle = LOAD32(tb->data, TPM_DATA_OFFSET);
472 memcpy(nonce, &tb->data[TPM_DATA_OFFSET + sizeof(uint32_t)],
478 unsigned char encauth[SHA1_DIGEST_SIZE];
479 unsigned char pubauth[SHA1_DIGEST_SIZE];
480 unsigned char xorwork[SHA1_DIGEST_SIZE * 2];
481 unsigned char xorhash[SHA1_DIGEST_SIZE];
482 unsigned char nonceodd[TPM_NONCE_SIZE];
486 * Have the TPM seal(encrypt) the trusted key, possibly based on
487 * Platform Configuration Registers (PCRs). AUTH1 for sealing key.
489 static int tpm_seal(struct tpm_buf *tb, uint16_t keytype,
490 uint32_t keyhandle, const unsigned char *keyauth,
491 const unsigned char *data, uint32_t datalen,
492 unsigned char *blob, uint32_t *bloblen,
493 const unsigned char *blobauth,
494 const unsigned char *pcrinfo, uint32_t pcrinfosize)
496 struct osapsess sess;
497 struct tpm_digests *td;
508 /* alloc some work space for all the hashes */
509 td = kmalloc(sizeof *td, GFP_KERNEL);
513 /* get session for sealing key */
514 ret = osap(tb, &sess, keyauth, keytype, keyhandle);
519 /* calculate encrypted authorization value */
520 memcpy(td->xorwork, sess.secret, SHA1_DIGEST_SIZE);
521 memcpy(td->xorwork + SHA1_DIGEST_SIZE, sess.enonce, SHA1_DIGEST_SIZE);
522 ret = TSS_sha1(td->xorwork, SHA1_DIGEST_SIZE * 2, td->xorhash);
526 ret = tpm_get_random(tb, td->nonceodd, TPM_NONCE_SIZE);
529 ordinal = htonl(TPM_ORD_SEAL);
530 datsize = htonl(datalen);
531 pcrsize = htonl(pcrinfosize);
534 /* encrypt data authorization key */
535 for (i = 0; i < SHA1_DIGEST_SIZE; ++i)
536 td->encauth[i] = td->xorhash[i] ^ blobauth[i];
538 /* calculate authorization HMAC value */
539 if (pcrinfosize == 0) {
540 /* no pcr info specified */
541 ret = TSS_authhmac(td->pubauth, sess.secret, SHA1_DIGEST_SIZE,
542 sess.enonce, td->nonceodd, cont,
543 sizeof(uint32_t), &ordinal, SHA1_DIGEST_SIZE,
544 td->encauth, sizeof(uint32_t), &pcrsize,
545 sizeof(uint32_t), &datsize, datalen, data, 0,
548 /* pcr info specified */
549 ret = TSS_authhmac(td->pubauth, sess.secret, SHA1_DIGEST_SIZE,
550 sess.enonce, td->nonceodd, cont,
551 sizeof(uint32_t), &ordinal, SHA1_DIGEST_SIZE,
552 td->encauth, sizeof(uint32_t), &pcrsize,
553 pcrinfosize, pcrinfo, sizeof(uint32_t),
554 &datsize, datalen, data, 0, 0);
559 /* build and send the TPM request packet */
561 store16(tb, TPM_TAG_RQU_AUTH1_COMMAND);
562 store32(tb, TPM_SEAL_SIZE + pcrinfosize + datalen);
563 store32(tb, TPM_ORD_SEAL);
564 store32(tb, keyhandle);
565 storebytes(tb, td->encauth, SHA1_DIGEST_SIZE);
566 store32(tb, pcrinfosize);
567 storebytes(tb, pcrinfo, pcrinfosize);
568 store32(tb, datalen);
569 storebytes(tb, data, datalen);
570 store32(tb, sess.handle);
571 storebytes(tb, td->nonceodd, TPM_NONCE_SIZE);
573 storebytes(tb, td->pubauth, SHA1_DIGEST_SIZE);
575 ret = trusted_tpm_send(TPM_ANY_NUM, tb->data, MAX_BUF_SIZE);
579 /* calculate the size of the returned Blob */
580 sealinfosize = LOAD32(tb->data, TPM_DATA_OFFSET + sizeof(uint32_t));
581 encdatasize = LOAD32(tb->data, TPM_DATA_OFFSET + sizeof(uint32_t) +
582 sizeof(uint32_t) + sealinfosize);
583 storedsize = sizeof(uint32_t) + sizeof(uint32_t) + sealinfosize +
584 sizeof(uint32_t) + encdatasize;
586 /* check the HMAC in the response */
587 ret = TSS_checkhmac1(tb->data, ordinal, td->nonceodd, sess.secret,
588 SHA1_DIGEST_SIZE, storedsize, TPM_DATA_OFFSET, 0,
591 /* copy the returned blob to caller */
593 memcpy(blob, tb->data + TPM_DATA_OFFSET, storedsize);
594 *bloblen = storedsize;
602 * use the AUTH2_COMMAND form of unseal, to authorize both key and blob
604 static int tpm_unseal(struct tpm_buf *tb,
605 uint32_t keyhandle, const unsigned char *keyauth,
606 const unsigned char *blob, int bloblen,
607 const unsigned char *blobauth,
608 unsigned char *data, unsigned int *datalen)
610 unsigned char nonceodd[TPM_NONCE_SIZE];
611 unsigned char enonce1[TPM_NONCE_SIZE];
612 unsigned char enonce2[TPM_NONCE_SIZE];
613 unsigned char authdata1[SHA1_DIGEST_SIZE];
614 unsigned char authdata2[SHA1_DIGEST_SIZE];
615 uint32_t authhandle1 = 0;
616 uint32_t authhandle2 = 0;
617 unsigned char cont = 0;
622 /* sessions for unsealing key and data */
623 ret = oiap(tb, &authhandle1, enonce1);
625 pr_info("trusted_key: oiap failed (%d)\n", ret);
628 ret = oiap(tb, &authhandle2, enonce2);
630 pr_info("trusted_key: oiap failed (%d)\n", ret);
634 ordinal = htonl(TPM_ORD_UNSEAL);
635 keyhndl = htonl(SRKHANDLE);
636 ret = tpm_get_random(tb, nonceodd, TPM_NONCE_SIZE);
638 pr_info("trusted_key: tpm_get_random failed (%d)\n", ret);
641 ret = TSS_authhmac(authdata1, keyauth, TPM_NONCE_SIZE,
642 enonce1, nonceodd, cont, sizeof(uint32_t),
643 &ordinal, bloblen, blob, 0, 0);
646 ret = TSS_authhmac(authdata2, blobauth, TPM_NONCE_SIZE,
647 enonce2, nonceodd, cont, sizeof(uint32_t),
648 &ordinal, bloblen, blob, 0, 0);
652 /* build and send TPM request packet */
654 store16(tb, TPM_TAG_RQU_AUTH2_COMMAND);
655 store32(tb, TPM_UNSEAL_SIZE + bloblen);
656 store32(tb, TPM_ORD_UNSEAL);
657 store32(tb, keyhandle);
658 storebytes(tb, blob, bloblen);
659 store32(tb, authhandle1);
660 storebytes(tb, nonceodd, TPM_NONCE_SIZE);
662 storebytes(tb, authdata1, SHA1_DIGEST_SIZE);
663 store32(tb, authhandle2);
664 storebytes(tb, nonceodd, TPM_NONCE_SIZE);
666 storebytes(tb, authdata2, SHA1_DIGEST_SIZE);
668 ret = trusted_tpm_send(TPM_ANY_NUM, tb->data, MAX_BUF_SIZE);
670 pr_info("trusted_key: authhmac failed (%d)\n", ret);
674 *datalen = LOAD32(tb->data, TPM_DATA_OFFSET);
675 ret = TSS_checkhmac2(tb->data, ordinal, nonceodd,
676 keyauth, SHA1_DIGEST_SIZE,
677 blobauth, SHA1_DIGEST_SIZE,
678 sizeof(uint32_t), TPM_DATA_OFFSET,
679 *datalen, TPM_DATA_OFFSET + sizeof(uint32_t), 0,
682 pr_info("trusted_key: TSS_checkhmac2 failed (%d)\n", ret);
685 memcpy(data, tb->data + TPM_DATA_OFFSET + sizeof(uint32_t), *datalen);
690 * Have the TPM seal(encrypt) the symmetric key
692 static int key_seal(struct trusted_key_payload *p,
693 struct trusted_key_options *o)
698 tb = kzalloc(sizeof *tb, GFP_KERNEL);
702 /* include migratable flag at end of sealed key */
703 p->key[p->key_len] = p->migratable;
705 ret = tpm_seal(tb, o->keytype, o->keyhandle, o->keyauth,
706 p->key, p->key_len + 1, p->blob, &p->blob_len,
707 o->blobauth, o->pcrinfo, o->pcrinfo_len);
709 pr_info("trusted_key: srkseal failed (%d)\n", ret);
716 * Have the TPM unseal(decrypt) the symmetric key
718 static int key_unseal(struct trusted_key_payload *p,
719 struct trusted_key_options *o)
724 tb = kzalloc(sizeof *tb, GFP_KERNEL);
728 ret = tpm_unseal(tb, o->keyhandle, o->keyauth, p->blob, p->blob_len,
729 o->blobauth, p->key, &p->key_len);
731 pr_info("trusted_key: srkunseal failed (%d)\n", ret);
733 /* pull migratable flag out of sealed key */
734 p->migratable = p->key[--p->key_len];
742 Opt_new, Opt_load, Opt_update,
743 Opt_keyhandle, Opt_keyauth, Opt_blobauth,
744 Opt_pcrinfo, Opt_pcrlock, Opt_migratable
747 static const match_table_t key_tokens = {
750 {Opt_update, "update"},
751 {Opt_keyhandle, "keyhandle=%s"},
752 {Opt_keyauth, "keyauth=%s"},
753 {Opt_blobauth, "blobauth=%s"},
754 {Opt_pcrinfo, "pcrinfo=%s"},
755 {Opt_pcrlock, "pcrlock=%s"},
756 {Opt_migratable, "migratable=%s"},
760 /* can have zero or more token= options */
761 static int getoptions(char *c, struct trusted_key_payload *pay,
762 struct trusted_key_options *opt)
764 substring_t args[MAX_OPT_ARGS];
768 unsigned long handle;
771 while ((p = strsep(&c, " \t"))) {
772 if (*p == '\0' || *p == ' ' || *p == '\t')
774 token = match_token(p, key_tokens, args);
778 opt->pcrinfo_len = strlen(args[0].from) / 2;
779 if (opt->pcrinfo_len > MAX_PCRINFO_SIZE)
781 hex2bin(opt->pcrinfo, args[0].from, opt->pcrinfo_len);
784 res = strict_strtoul(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 hex2bin(opt->keyauth, args[0].from, SHA1_DIGEST_SIZE);
796 if (strlen(args[0].from) != 2 * SHA1_DIGEST_SIZE)
798 hex2bin(opt->blobauth, args[0].from, SHA1_DIGEST_SIZE);
801 if (*args[0].from == '0')
807 res = strict_strtoul(args[0].from, 10, &lock);
820 * datablob_parse - parse the keyctl data and fill in the
821 * payload and options structures
823 * On success returns 0, otherwise -EINVAL.
825 static int datablob_parse(char *datablob, struct trusted_key_payload *p,
826 struct trusted_key_options *o)
828 substring_t args[MAX_OPT_ARGS];
835 c = strsep(&datablob, " \t");
838 key_cmd = match_token(c, key_tokens, args);
841 /* first argument is key size */
842 c = strsep(&datablob, " \t");
845 ret = strict_strtol(c, 10, &keylen);
846 if (ret < 0 || keylen < MIN_KEY_SIZE || keylen > MAX_KEY_SIZE)
849 ret = getoptions(datablob, p, o);
855 /* first argument is sealed blob */
856 c = strsep(&datablob, " \t");
859 p->blob_len = strlen(c) / 2;
860 if (p->blob_len > MAX_BLOB_SIZE)
862 hex2bin(p->blob, c, p->blob_len);
863 ret = getoptions(datablob, p, o);
869 /* all arguments are options */
870 ret = getoptions(datablob, p, o);
882 static struct trusted_key_options *trusted_options_alloc(void)
884 struct trusted_key_options *options;
886 options = kzalloc(sizeof *options, GFP_KERNEL);
888 /* set any non-zero defaults */
889 options->keytype = SRK_keytype;
890 options->keyhandle = SRKHANDLE;
895 static struct trusted_key_payload *trusted_payload_alloc(struct key *key)
897 struct trusted_key_payload *p = NULL;
900 ret = key_payload_reserve(key, sizeof *p);
903 p = kzalloc(sizeof *p, GFP_KERNEL);
905 p->migratable = 1; /* migratable by default */
910 * trusted_instantiate - create a new trusted key
912 * Unseal an existing trusted blob or, for a new key, get a
913 * random key, then seal and create a trusted key-type key,
914 * adding it to the specified keyring.
916 * On success, return 0. Otherwise return errno.
918 static int trusted_instantiate(struct key *key, const void *data,
921 struct trusted_key_payload *payload = NULL;
922 struct trusted_key_options *options = NULL;
927 if (datalen <= 0 || datalen > 32767 || !data)
930 datablob = kmalloc(datalen + 1, GFP_KERNEL);
933 memcpy(datablob, data, datalen);
934 datablob[datalen] = '\0';
936 options = trusted_options_alloc();
941 payload = trusted_payload_alloc(key);
947 key_cmd = datablob_parse(datablob, payload, options);
953 dump_payload(payload);
954 dump_options(options);
958 ret = key_unseal(payload, options);
959 dump_payload(payload);
960 dump_options(options);
962 pr_info("trusted_key: key_unseal failed (%d)\n", ret);
965 ret = my_get_random(payload->key, payload->key_len);
967 pr_info("trusted_key: key_create failed (%d)\n", ret);
970 ret = key_seal(payload, options);
972 pr_info("trusted_key: key_seal failed (%d)\n", ret);
978 if (!ret && options->pcrlock)
979 ret = pcrlock(options->pcrlock);
984 rcu_assign_pointer(key->payload.data, payload);
990 static void trusted_rcu_free(struct rcu_head *rcu)
992 struct trusted_key_payload *p;
994 p = container_of(rcu, struct trusted_key_payload, rcu);
995 memset(p->key, 0, p->key_len);
1000 * trusted_update - reseal an existing key with new PCR values
1002 static int trusted_update(struct key *key, const void *data, size_t datalen)
1004 struct trusted_key_payload *p = key->payload.data;
1005 struct trusted_key_payload *new_p;
1006 struct trusted_key_options *new_o;
1012 if (datalen <= 0 || datalen > 32767 || !data)
1015 datablob = kmalloc(datalen + 1, GFP_KERNEL);
1018 new_o = trusted_options_alloc();
1023 new_p = trusted_payload_alloc(key);
1029 memcpy(datablob, data, datalen);
1030 datablob[datalen] = '\0';
1031 ret = datablob_parse(datablob, new_p, new_o);
1032 if (ret != Opt_update) {
1036 /* copy old key values, and reseal with new pcrs */
1037 new_p->migratable = p->migratable;
1038 new_p->key_len = p->key_len;
1039 memcpy(new_p->key, p->key, p->key_len);
1041 dump_payload(new_p);
1043 ret = key_seal(new_p, new_o);
1045 pr_info("trusted_key: key_seal failed (%d)\n", ret);
1049 if (new_o->pcrlock) {
1050 ret = pcrlock(new_o->pcrlock);
1052 pr_info("trusted_key: pcrlock failed (%d)\n", ret);
1057 rcu_assign_pointer(key->payload.data, new_p);
1058 call_rcu(&p->rcu, trusted_rcu_free);
1066 * trusted_read - copy the sealed blob data to userspace in hex.
1067 * On success, return to userspace the trusted key datablob size.
1069 static long trusted_read(const struct key *key, char __user *buffer,
1072 struct trusted_key_payload *p;
1077 p = rcu_dereference_protected(key->payload.data,
1078 rwsem_is_locked(&((struct key *)key)->sem));
1081 if (!buffer || buflen <= 0)
1082 return 2 * p->blob_len;
1083 ascii_buf = kmalloc(2 * p->blob_len, GFP_KERNEL);
1088 for (i = 0; i < p->blob_len; i++)
1089 bufp = pack_hex_byte(bufp, p->blob[i]);
1090 if ((copy_to_user(buffer, ascii_buf, 2 * p->blob_len)) != 0) {
1095 return 2 * p->blob_len;
1099 * trusted_destroy - before freeing the key, clear the decrypted data
1101 static void trusted_destroy(struct key *key)
1103 struct trusted_key_payload *p = key->payload.data;
1107 memset(p->key, 0, p->key_len);
1108 kfree(key->payload.data);
1111 struct key_type key_type_trusted = {
1113 .instantiate = trusted_instantiate,
1114 .update = trusted_update,
1115 .match = user_match,
1116 .destroy = trusted_destroy,
1117 .describe = user_describe,
1118 .read = trusted_read,
1121 EXPORT_SYMBOL_GPL(key_type_trusted);
1123 static void trusted_shash_release(void)
1126 crypto_free_shash(hashalg);
1128 crypto_free_shash(hmacalg);
1131 static int __init trusted_shash_alloc(void)
1135 hmacalg = crypto_alloc_shash(hmac_alg, 0, CRYPTO_ALG_ASYNC);
1136 if (IS_ERR(hmacalg)) {
1137 pr_info("trusted_key: could not allocate crypto %s\n",
1139 return PTR_ERR(hmacalg);
1142 hashalg = crypto_alloc_shash(hash_alg, 0, CRYPTO_ALG_ASYNC);
1143 if (IS_ERR(hashalg)) {
1144 pr_info("trusted_key: could not allocate crypto %s\n",
1146 ret = PTR_ERR(hashalg);
1153 crypto_free_shash(hmacalg);
1157 static int __init init_trusted(void)
1161 ret = trusted_shash_alloc();
1164 ret = register_key_type(&key_type_trusted);
1166 trusted_shash_release();
1170 static void __exit cleanup_trusted(void)
1172 trusted_shash_release();
1173 unregister_key_type(&key_type_trusted);
1176 late_initcall(init_trusted);
1177 module_exit(cleanup_trusted);
1179 MODULE_LICENSE("GPL");