]> xenbits.xensource.com Git - people/liuw/stubdom.git/commitdiff
vTPM/TPM2: Bind group keys and sectors data on disk
authorQuan Xu <quan.xu@intel.com>
Thu, 15 Jan 2015 09:21:51 +0000 (04:21 -0500)
committerIan Campbell <ian.campbell@citrix.com>
Wed, 28 Jan 2015 12:54:50 +0000 (12:54 +0000)
Signed-off-by: Quan Xu <quan.xu@intel.com>
Acked-by: Daniel De Graaf <dgdegra@tycho.nsa.gov>
vtpmmgr/disk_write.c

index 4c825c5af6be2f2b6dbac2cb46e249e88acdb99b..ab15a9aa818fe5b2fd19e9f281f488dd65e80b45 100644 (file)
@@ -88,7 +88,12 @@ static void generate_group_seals(struct mem_group *src, const struct mem_tpm_mgr
                dst->pcr_selection = src->seals[i].pcr_selection;
                memcpy(&dst->digest_release, &src->seals[i].digest_release, 20);
                TPM_pcr_digest(&dst->digest_at_seal, dst->pcr_selection);
-               TPM_disk_seal(dst, &sblob, sizeof(sblob));
+
+        /*TPM 2.0 bind | TPM 1.x seal*/
+        if (hw_is_tpm2())
+            TPM2_disk_bind(dst, &sblob, sizeof(sblob));
+        else
+            TPM_disk_seal(dst, &sblob, sizeof(sblob));
        }
        src->seal_bits.nr_cfgs = native_be32(src->nr_seals);
 
@@ -250,7 +255,11 @@ static void disk_write_seal_list(struct mem_tpm_mgr *mgr, struct mem_group *grou
                memcpy(&dst->digest_release, &src->digest_release, 20);
                TPM_pcr_digest(&dst->digest_at_seal, dst->pcr_selection);
 
-               TPM_disk_seal(dst, &sblob, sizeof(sblob));
+        /*TPM 2.0 bind / TPM 1.x seal*/
+        if (hw_is_tpm2())
+            TPM2_disk_bind(dst, &sblob, sizeof(sblob));
+        else
+            TPM_disk_seal(dst, &sblob, sizeof(sblob));
        }
 
        memcpy(seal->hdr.magic, TPM_MGR_MAGIC, 12);