2 * Copyright (C) 2011 Sansar Choinyambuu
3 * HSR Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 #include <crypto/hashers/hasher.h>
20 #include <bio/bio_writer.h>
21 #include <bio/bio_reader.h>
23 #include <trousers/tss.h>
24 #include <trousers/trousers.h>
27 #include <sys/utsname.h>
30 #define PTS_BUF_SIZE 4096
33 * Maximum number of PCR's of TPM, TPM Spec 1.2
35 #define PCR_MAX_NUM 24
38 * Number of bytes that can be saved in a PCR of TPM, TPM Spec 1.2
42 typedef struct private_pts_t private_pts_t
;
45 * Private data of a pts_t object.
48 struct private_pts_t
{
51 * Public pts_t interface.
56 * PTS Protocol Capabilities
58 pts_proto_caps_flag_t proto_caps
;
61 * PTS Measurement Algorithm
63 pts_meas_algorithms_t algorithm
;
68 pts_meas_algorithms_t dh_hash_algorithm
;
71 * PTS Diffie-Hellman Secret
76 * PTS Diffie-Hellman Initiator Nonce
78 chunk_t initiator_nonce
;
81 * PTS Diffie-Hellman Responder Nonce
83 chunk_t responder_nonce
;
86 * Secret assessment value to be used for TPM Quote as an external data
91 * Platform and OS Info
96 * TRUE if IMC-PTS, FALSE if IMV-PTS
101 * Do we have an activated TPM
106 * Contains a TPM_CAP_VERSION_INFO struct
108 chunk_t tpm_version_info
;
111 * Contains TSS Blob structure for AIK
116 * Contains a Attestation Identity Key or Certificate
121 * Table of extended PCRs with corresponding values
123 u_char
* pcrs
[PCR_MAX_NUM
];
126 * Length of PCR registers
131 * Number of extended PCR registers
136 * Highest extended PCR register
141 * Bitmap of extended PCR registers
143 u_int8_t pcr_select
[PCR_MAX_NUM
/ 8];
147 METHOD(pts_t
, get_proto_caps
, pts_proto_caps_flag_t
,
150 return this->proto_caps
;
153 METHOD(pts_t
, set_proto_caps
, void,
154 private_pts_t
*this, pts_proto_caps_flag_t flags
)
156 this->proto_caps
= flags
;
157 DBG2(DBG_PTS
, "supported PTS protocol capabilities: %s%s%s%s%s",
158 flags
& PTS_PROTO_CAPS_C ?
"C" : ".",
159 flags
& PTS_PROTO_CAPS_V ?
"V" : ".",
160 flags
& PTS_PROTO_CAPS_D ?
"D" : ".",
161 flags
& PTS_PROTO_CAPS_T ?
"T" : ".",
162 flags
& PTS_PROTO_CAPS_X ?
"X" : ".");
165 METHOD(pts_t
, get_meas_algorithm
, pts_meas_algorithms_t
,
168 return this->algorithm
;
171 METHOD(pts_t
, set_meas_algorithm
, void,
172 private_pts_t
*this, pts_meas_algorithms_t algorithm
)
174 hash_algorithm_t hash_alg
;
176 hash_alg
= pts_meas_algo_to_hash(algorithm
);
177 DBG2(DBG_PTS
, "selected PTS measurement algorithm is %N",
178 hash_algorithm_names
, hash_alg
);
179 if (hash_alg
!= HASH_UNKNOWN
)
181 this->algorithm
= algorithm
;
185 METHOD(pts_t
, get_dh_hash_algorithm
, pts_meas_algorithms_t
,
188 return this->dh_hash_algorithm
;
191 METHOD(pts_t
, set_dh_hash_algorithm
, void,
192 private_pts_t
*this, pts_meas_algorithms_t algorithm
)
194 hash_algorithm_t hash_alg
;
196 hash_alg
= pts_meas_algo_to_hash(algorithm
);
197 DBG2(DBG_PTS
, "selected DH hash algorithm is %N",
198 hash_algorithm_names
, hash_alg
);
199 if (hash_alg
!= HASH_UNKNOWN
)
201 this->dh_hash_algorithm
= algorithm
;
206 METHOD(pts_t
, create_dh_nonce
, bool,
207 private_pts_t
*this, pts_dh_group_t group
, int nonce_len
)
209 diffie_hellman_group_t dh_group
;
213 dh_group
= pts_dh_group_to_ike(group
);
214 DBG2(DBG_PTS
, "selected PTS DH group is %N",
215 diffie_hellman_group_names
, dh_group
);
216 DESTROY_IF(this->dh
);
217 this->dh
= lib
->crypto
->create_dh(lib
->crypto
, dh_group
);
219 rng
= lib
->crypto
->create_rng(lib
->crypto
, RNG_STRONG
);
222 DBG1(DBG_PTS
, "no rng available");
225 DBG2(DBG_PTS
, "nonce length is %d", nonce_len
);
226 nonce
= this->is_imc ?
&this->responder_nonce
: &this->initiator_nonce
;
228 rng
->allocate_bytes(rng
, nonce_len
, nonce
);
234 METHOD(pts_t
, get_my_public_value
, void,
235 private_pts_t
*this, chunk_t
*value
, chunk_t
*nonce
)
237 this->dh
->get_my_public_value(this->dh
, value
);
238 *nonce
= this->is_imc ?
this->responder_nonce
: this->initiator_nonce
;
241 METHOD(pts_t
, set_peer_public_value
, void,
242 private_pts_t
*this, chunk_t value
, chunk_t nonce
)
244 this->dh
->set_other_public_value(this->dh
, value
);
246 nonce
= chunk_clone(nonce
);
249 this->initiator_nonce
= nonce
;
253 this->responder_nonce
= nonce
;
257 METHOD(pts_t
, calculate_secret
, bool,
261 hash_algorithm_t hash_alg
;
262 chunk_t shared_secret
;
264 /* Check presence of nonces */
265 if (!this->initiator_nonce
.len
|| !this->responder_nonce
.len
)
267 DBG1(DBG_PTS
, "initiator and/or responder nonce is not available");
270 DBG3(DBG_PTS
, "initiator nonce: %B", &this->initiator_nonce
);
271 DBG3(DBG_PTS
, "responder nonce: %B", &this->responder_nonce
);
273 /* Calculate the DH secret */
274 if (this->dh
->get_shared_secret(this->dh
, &shared_secret
) != SUCCESS
)
276 DBG1(DBG_PTS
, "shared DH secret computation failed");
279 DBG3(DBG_PTS
, "shared DH secret: %B", &shared_secret
);
281 /* Calculate the secret assessment value */
282 hash_alg
= pts_meas_algo_to_hash(this->dh_hash_algorithm
);
283 hasher
= lib
->crypto
->create_hasher(lib
->crypto
, hash_alg
);
285 hasher
->allocate_hash(hasher
, chunk_from_chars('1'), NULL
);
286 hasher
->allocate_hash(hasher
, this->initiator_nonce
, NULL
);
287 hasher
->allocate_hash(hasher
, this->responder_nonce
, NULL
);
288 hasher
->allocate_hash(hasher
, shared_secret
, &this->secret
);
289 hasher
->destroy(hasher
);
291 /* The DH secret must be destroyed */
292 chunk_clear(&shared_secret
);
295 * Truncate the hash to 20 bytes to fit the ExternalData
296 * argument of the TPM Quote command
298 this->secret
.len
= min(this->secret
.len
, 20);
299 DBG3(DBG_PTS
, "secret assessment value: %B", &this->secret
);
304 * Print TPM 1.2 Version Info
306 static void print_tpm_version_info(private_pts_t
*this)
308 TPM_CAP_VERSION_INFO versionInfo
;
312 result
= Trspi_UnloadBlob_CAP_VERSION_INFO(&offset
,
313 this->tpm_version_info
.ptr
, &versionInfo
);
314 if (result
!= TSS_SUCCESS
)
316 DBG1(DBG_PTS
, "could not parse tpm version info: tss error 0x%x",
321 DBG2(DBG_PTS
, "TPM 1.2 Version Info: Chip Version: %hhu.%hhu.%hhu.%hhu,"
322 " Spec Level: %hu, Errata Rev: %hhu, Vendor ID: %.4s",
323 versionInfo
.version
.major
, versionInfo
.version
.minor
,
324 versionInfo
.version
.revMajor
, versionInfo
.version
.revMinor
,
325 versionInfo
.specLevel
, versionInfo
.errataRev
,
326 versionInfo
.tpmVendorID
);
330 METHOD(pts_t
, get_platform_info
, char*,
333 return this->platform_info
;
336 METHOD(pts_t
, set_platform_info
, void,
337 private_pts_t
*this, char *info
)
339 free(this->platform_info
);
340 this->platform_info
= strdup(info
);
343 METHOD(pts_t
, get_tpm_version_info
, bool,
344 private_pts_t
*this, chunk_t
*info
)
350 *info
= this->tpm_version_info
;
351 print_tpm_version_info(this);
355 METHOD(pts_t
, set_tpm_version_info
, void,
356 private_pts_t
*this, chunk_t info
)
358 this->tpm_version_info
= chunk_clone(info
);
359 print_tpm_version_info(this);
362 METHOD(pts_t
, get_pcr_len
, size_t,
365 return this->pcr_len
;
369 * Load an AIK Blob (TSS_TSPATTRIB_KEYBLOB_BLOB attribute)
371 static void load_aik_blob(private_pts_t
*this)
375 u_int32_t aikBlobLen
;
377 blob_path
= lib
->settings
->get_str(lib
->settings
,
378 "libimcv.plugins.imc-attestation.aik_blob", NULL
);
382 /* Read aik key blob from a file */
383 if ((fp
= fopen(blob_path
, "r")) == NULL
)
385 DBG1(DBG_PTS
, "unable to open AIK Blob file: %s", blob_path
);
389 fseek(fp
, 0, SEEK_END
);
390 aikBlobLen
= ftell(fp
);
391 fseek(fp
, 0L, SEEK_SET
);
393 this->aik_blob
= chunk_alloc(aikBlobLen
);
394 if (fread(this->aik_blob
.ptr
, 1, aikBlobLen
, fp
))
396 DBG2(DBG_PTS
, "loaded AIK Blob from '%s'", blob_path
);
397 DBG3(DBG_PTS
, "AIK Blob: %B", &this->aik_blob
);
401 DBG1(DBG_PTS
, "unable to read AIK Blob file '%s'", blob_path
);
407 DBG1(DBG_PTS
, "AIK Blob is not available");
411 * Load an AIK certificate or public key
412 * the certificate having precedence over the public key if both are present
414 static void load_aik(private_pts_t
*this)
416 char *cert_path
, *key_path
;
418 cert_path
= lib
->settings
->get_str(lib
->settings
,
419 "libimcv.plugins.imc-attestation.aik_cert", NULL
);
420 key_path
= lib
->settings
->get_str(lib
->settings
,
421 "libimcv.plugins.imc-attestation.aik_key", NULL
);
425 this->aik
= lib
->creds
->create(lib
->creds
, CRED_CERTIFICATE
,
426 CERT_X509
, BUILD_FROM_FILE
,
427 cert_path
, BUILD_END
);
430 DBG2(DBG_PTS
, "loaded AIK certificate from '%s'", cert_path
);
436 this->aik
= lib
->creds
->create(lib
->creds
, CRED_CERTIFICATE
,
437 CERT_TRUSTED_PUBKEY
, BUILD_FROM_FILE
,
438 key_path
, BUILD_END
);
441 DBG2(DBG_PTS
, "loaded AIK public key from '%s'", key_path
);
446 DBG1(DBG_PTS
, "neither AIK certificate nor public key is available");
449 METHOD(pts_t
, get_aik
, certificate_t
*,
455 METHOD(pts_t
, set_aik
, void,
456 private_pts_t
*this, certificate_t
*aik
)
458 DESTROY_IF(this->aik
);
459 this->aik
= aik
->get_ref(aik
);
462 METHOD(pts_t
, hash_file
, bool,
463 private_pts_t
*this, hasher_t
*hasher
, char *pathname
, u_char
*hash
)
465 u_char buffer
[PTS_BUF_SIZE
];
469 file
= fopen(pathname
, "rb");
472 DBG1(DBG_PTS
," file '%s' can not be opened, %s", pathname
,
478 bytes_read
= fread(buffer
, 1, sizeof(buffer
), file
);
481 hasher
->get_hash(hasher
, chunk_create(buffer
, bytes_read
), NULL
);
485 hasher
->get_hash(hasher
, chunk_empty
, hash
);
495 * Get the relative filename of a fully qualified file pathname
497 static char* get_filename(char *pathname
)
499 char *pos
, *filename
;
501 pos
= filename
= pathname
;
502 while (pos
&& *(++pos
) != '\0')
505 pos
= strchr(filename
, '/');
510 METHOD(pts_t
, is_path_valid
, bool,
511 private_pts_t
*this, char *path
, pts_error_code_t
*error_code
)
517 if (!stat(path
, &st
))
521 else if (errno
== ENOENT
|| errno
== ENOTDIR
)
523 DBG1(DBG_PTS
, "file/directory does not exist %s", path
);
524 *error_code
= TCG_PTS_FILE_NOT_FOUND
;
526 else if (errno
== EFAULT
)
528 DBG1(DBG_PTS
, "bad address %s", path
);
529 *error_code
= TCG_PTS_INVALID_PATH
;
533 DBG1(DBG_PTS
, "error: %s occured while validating path: %s",
534 strerror(errno
), path
);
541 METHOD(pts_t
, do_measurements
, pts_file_meas_t
*,
542 private_pts_t
*this, u_int16_t request_id
, char *pathname
, bool is_directory
)
545 hash_algorithm_t hash_alg
;
546 u_char hash
[HASH_SIZE_SHA384
];
548 pts_file_meas_t
*measurements
;
550 /* Create a hasher */
551 hash_alg
= pts_meas_algo_to_hash(this->algorithm
);
552 hasher
= lib
->crypto
->create_hasher(lib
->crypto
, hash_alg
);
555 DBG1(DBG_PTS
, "hasher %N not available", hash_algorithm_names
, hash_alg
);
559 /* Create a measurement object */
560 measurements
= pts_file_meas_create(request_id
);
562 /* Link the hash to the measurement and set the measurement length */
563 measurement
= chunk_create(hash
, hasher
->get_hash_size(hasher
));
567 enumerator_t
*enumerator
;
568 char *rel_name
, *abs_name
;
571 enumerator
= enumerator_create_directory(pathname
);
574 DBG1(DBG_PTS
," directory '%s' can not be opened, %s", pathname
,
576 hasher
->destroy(hasher
);
577 measurements
->destroy(measurements
);
580 while (enumerator
->enumerate(enumerator
, &rel_name
, &abs_name
, &st
))
582 /* measure regular files only */
583 if (S_ISREG(st
.st_mode
) && *rel_name
!= '.')
585 if (!hash_file(this, hasher
, abs_name
, hash
))
587 enumerator
->destroy(enumerator
);
588 hasher
->destroy(hasher
);
589 measurements
->destroy(measurements
);
592 DBG2(DBG_PTS
, " %#B for '%s'", &measurement
, rel_name
);
593 measurements
->add(measurements
, rel_name
, measurement
);
596 enumerator
->destroy(enumerator
);
602 if (!hash_file(this, hasher
, pathname
, hash
))
604 hasher
->destroy(hasher
);
605 measurements
->destroy(measurements
);
608 filename
= get_filename(pathname
);
609 DBG2(DBG_PTS
, " %#B for '%s'", &measurement
, filename
);
610 measurements
->add(measurements
, filename
, measurement
);
612 hasher
->destroy(hasher
);
618 * Obtain statistical information describing a file
620 static bool file_metadata(char *pathname
, pts_file_metadata_t
**entry
)
623 pts_file_metadata_t
*this;
625 this = malloc_thing(pts_file_metadata_t
);
627 if (stat(pathname
, &st
))
629 DBG1(DBG_PTS
, "Unable to obtain statistics about '%s'", pathname
);
633 if (S_ISREG(st
.st_mode
))
635 this->type
= PTS_FILE_REGULAR
;
637 else if (S_ISDIR(st
.st_mode
))
639 this->type
= PTS_FILE_DIRECTORY
;
641 else if (S_ISCHR(st
.st_mode
))
643 this->type
= PTS_FILE_CHAR_SPEC
;
645 else if (S_ISBLK(st
.st_mode
))
647 this->type
= PTS_FILE_BLOCK_SPEC
;
649 else if (S_ISFIFO(st
.st_mode
))
651 this->type
= PTS_FILE_FIFO
;
653 else if (S_ISLNK(st
.st_mode
))
655 this->type
= PTS_FILE_SYM_LINK
;
657 else if (S_ISSOCK(st
.st_mode
))
659 this->type
= PTS_FILE_SOCKET
;
663 this->type
= PTS_FILE_OTHER
;
666 this->filesize
= st
.st_size
;
667 this->created
= st
.st_ctime
;
668 this->modified
= st
.st_mtime
;
669 this->accessed
= st
.st_atime
;
670 this->owner
= st
.st_uid
;
671 this->group
= st
.st_gid
;
677 METHOD(pts_t
, get_metadata
, pts_file_meta_t
*,
678 private_pts_t
*this, char *pathname
, bool is_directory
)
680 pts_file_meta_t
*metadata
;
681 pts_file_metadata_t
*entry
;
683 /* Create a metadata object */
684 metadata
= pts_file_meta_create();
688 enumerator_t
*enumerator
;
689 char *rel_name
, *abs_name
;
692 enumerator
= enumerator_create_directory(pathname
);
695 DBG1(DBG_PTS
," directory '%s' can not be opened, %s", pathname
,
697 metadata
->destroy(metadata
);
700 while (enumerator
->enumerate(enumerator
, &rel_name
, &abs_name
, &st
))
702 /* measure regular files only */
703 if (S_ISREG(st
.st_mode
) && *rel_name
!= '.')
705 if (!file_metadata(abs_name
, &entry
))
707 enumerator
->destroy(enumerator
);
708 metadata
->destroy(metadata
);
711 entry
->filename
= strdup(rel_name
);
712 metadata
->add(metadata
, entry
);
715 enumerator
->destroy(enumerator
);
719 if (!file_metadata(pathname
, &entry
))
721 metadata
->destroy(metadata
);
724 entry
->filename
= strdup(get_filename(pathname
));
725 metadata
->add(metadata
, entry
);
731 METHOD(pts_t
, read_pcr
, bool,
732 private_pts_t
*this, u_int32_t pcr_num
, chunk_t
*pcr_value
)
734 TSS_HCONTEXT hContext
;
739 bool success
= FALSE
;
741 result
= Tspi_Context_Create(&hContext
);
742 if (result
!= TSS_SUCCESS
)
744 DBG1(DBG_PTS
, "TPM context could not be created: tss error 0x%x", result
);
748 result
= Tspi_Context_Connect(hContext
, NULL
);
749 if (result
!= TSS_SUCCESS
)
753 result
= Tspi_Context_GetTpmObject (hContext
, &hTPM
);
754 if (result
!= TSS_SUCCESS
)
758 result
= Tspi_TPM_PcrRead(hTPM
, pcr_num
, (UINT32
*)&rgbPcrValue
.len
, &rgbPcrValue
.ptr
);
759 if (result
!= TSS_SUCCESS
)
763 *pcr_value
= chunk_clone(rgbPcrValue
);
764 DBG3(DBG_PTS
, "PCR %d value:%B", pcr_num
, pcr_value
);
770 DBG1(DBG_PTS
, "TPM not available: tss error 0x%x", result
);
772 Tspi_Context_FreeMemory(hContext
, NULL
);
773 Tspi_Context_Close(hContext
);
778 METHOD(pts_t
, extend_pcr
, bool,
779 private_pts_t
*this, u_int32_t pcr_num
, chunk_t input
, chunk_t
*output
)
781 TSS_HCONTEXT hContext
;
784 u_int32_t pcr_length
;
787 result
= Tspi_Context_Create(&hContext
);
788 if (result
!= TSS_SUCCESS
)
790 DBG1(DBG_PTS
, "TPM context could not be created: tss error 0x%x",
794 result
= Tspi_Context_Connect(hContext
, NULL
);
795 if (result
!= TSS_SUCCESS
)
799 result
= Tspi_Context_GetTpmObject (hContext
, &hTPM
);
800 if (result
!= TSS_SUCCESS
)
805 pcr_value
= chunk_alloc(PCR_LEN
);
806 result
= Tspi_TPM_PcrExtend(hTPM
, pcr_num
, PCR_LEN
, input
.ptr
,
807 NULL
, &pcr_length
, &pcr_value
.ptr
);
808 if (result
!= TSS_SUCCESS
)
814 *output
= chunk_clone(*output
);
816 DBG3(DBG_PTS
, "PCR %d extended with: %B", pcr_num
, &input
);
817 DBG3(DBG_PTS
, "PCR %d value after extend: %B", pcr_num
, output
);
819 chunk_clear(&pcr_value
);
820 Tspi_Context_FreeMemory(hContext
, NULL
);
821 Tspi_Context_Close(hContext
);
826 DBG1(DBG_PTS
, "TPM not available: tss error 0x%x", result
);
828 chunk_clear(&pcr_value
);
829 Tspi_Context_FreeMemory(hContext
, NULL
);
830 Tspi_Context_Close(hContext
);
836 static void clear_pcrs(private_pts_t
*this)
840 for (i
= 0; i
<= this->pcr_max
; i
++)
843 this->pcrs
[i
] = NULL
;
848 memset(this->pcr_select
, 0x00, sizeof(this->pcr_select
));
851 METHOD(pts_t
, quote_tpm
, bool,
852 private_pts_t
*this, bool use_quote2
, chunk_t
*pcr_comp
, chunk_t
*quote_sig
)
854 TSS_HCONTEXT hContext
;
858 TSS_HPOLICY srkUsagePolicy
;
859 TSS_UUID SRK_UUID
= TSS_UUID_SRK
;
860 BYTE secret
[] = TSS_WELL_KNOWN_SECRET
;
861 TSS_HPCRS hPcrComposite
;
862 TSS_VALIDATION valData
;
866 u_int32_t versionInfoSize
, pcr
, i
= 0, f
= 1;
867 bool success
= FALSE
;
869 result
= Tspi_Context_Create(&hContext
);
870 if (result
!= TSS_SUCCESS
)
872 DBG1(DBG_PTS
, "TPM context could not be created: tss error 0x%x",
876 result
= Tspi_Context_Connect(hContext
, NULL
);
877 if (result
!= TSS_SUCCESS
)
881 result
= Tspi_Context_GetTpmObject (hContext
, &hTPM
);
882 if (result
!= TSS_SUCCESS
)
887 /* Retrieve SRK from TPM and set the authentication to well known secret*/
888 result
= Tspi_Context_LoadKeyByUUID(hContext
, TSS_PS_TYPE_SYSTEM
,
890 if (result
!= TSS_SUCCESS
)
895 result
= Tspi_GetPolicyObject(hSRK
, TSS_POLICY_USAGE
, &srkUsagePolicy
);
896 if (result
!= TSS_SUCCESS
)
900 result
= Tspi_Policy_SetSecret(srkUsagePolicy
, TSS_SECRET_MODE_SHA1
,
902 if (result
!= TSS_SUCCESS
)
907 result
= Tspi_Context_LoadKeyByBlob (hContext
, hSRK
, this->aik_blob
.len
,
908 this->aik_blob
.ptr
, &hAIK
);
909 if (result
!= TSS_SUCCESS
)
914 /* Create PCR composite object */
915 result
= use_quote2 ?
916 Tspi_Context_CreateObject(hContext
, TSS_OBJECT_TYPE_PCRS
,
917 TSS_PCRS_STRUCT_INFO_SHORT
, &hPcrComposite
) :
918 Tspi_Context_CreateObject(hContext
, TSS_OBJECT_TYPE_PCRS
,
920 if (result
!= TSS_SUCCESS
)
926 for (pcr
= 0; pcr
<= this->pcr_max
; pcr
++)
933 if (this->pcr_select
[i
] & f
)
935 DBG2(DBG_TNC
, "PCR %02d selected for TPM Quote", pcr
);
936 result
= use_quote2 ?
937 Tspi_PcrComposite_SelectPcrIndexEx(hPcrComposite
, pcr
,
938 TSS_PCRS_DIRECTION_RELEASE
) :
939 Tspi_PcrComposite_SelectPcrIndex(hPcrComposite
, pcr
);
940 if (result
!= TSS_SUCCESS
)
948 /* Set the Validation Data */
949 valData
.ulExternalDataLength
= this->secret
.len
;
950 valData
.rgbExternalData
= (BYTE
*)this->secret
.ptr
;
954 result
= use_quote2 ?
955 Tspi_TPM_Quote2(hTPM
, hAIK
, FALSE
, hPcrComposite
, &valData
,
956 &versionInfoSize
, &versionInfo
):
957 Tspi_TPM_Quote(hTPM
, hAIK
, hPcrComposite
, &valData
);
958 if (result
!= TSS_SUCCESS
)
963 /* Set output chunks */
964 *pcr_comp
= chunk_alloc(HASH_SIZE_SHA1
);
968 /* TPM_Composite_Hash is last 20 bytes of TPM_Quote_Info2 structure */
969 memcpy(pcr_comp
->ptr
, valData
.rgbData
+ valData
.ulDataLength
- HASH_SIZE_SHA1
,
974 /* TPM_Composite_Hash is 8-28th bytes of TPM_Quote_Info structure */
975 memcpy(pcr_comp
->ptr
, valData
.rgbData
+ 8, HASH_SIZE_SHA1
);
977 DBG3(DBG_PTS
, "Hash of PCR Composite: %#B", pcr_comp
);
979 quote_info
= chunk_create(valData
.rgbData
, valData
.ulDataLength
);
980 DBG3(DBG_PTS
, "TPM Quote Info: %B","e_info
);
982 *quote_sig
= chunk_clone(chunk_create(valData
.rgbValidationData
,
983 valData
.ulValidationDataLength
));
984 DBG3(DBG_PTS
, "TPM Quote Signature: %B",quote_sig
);
990 Tspi_Context_FreeMemory(hContext
, NULL
);
993 Tspi_Context_CloseObject(hContext
, hPcrComposite
);
996 Tspi_Context_CloseObject(hContext
, hAIK
);
999 Tspi_Context_Close(hContext
);
1003 DBG1(DBG_PTS
, "TPM not available: tss error 0x%x", result
);
1010 METHOD(pts_t
, select_pcr
, bool,
1011 private_pts_t
*this, u_int32_t pcr
)
1015 if (pcr
>= PCR_MAX_NUM
)
1017 DBG1(DBG_PTS
, "PCR %u: number is larger than maximum of %u",
1018 pcr
, PCR_MAX_NUM
-1);
1022 /* Determine PCR selection flag */
1024 f
= 1 << (pcr
- 8*i
);
1026 /* Has this PCR already been selected? */
1027 if (!(this->pcr_select
[i
] & f
))
1029 this->pcr_select
[i
] |= f
;
1030 this->pcr_max
= max(this->pcr_max
, pcr
);
1037 METHOD(pts_t
, add_pcr
, bool,
1038 private_pts_t
*this, u_int32_t pcr
, chunk_t pcr_before
, chunk_t pcr_after
)
1040 if (pcr
>= PCR_MAX_NUM
)
1042 DBG1(DBG_PTS
, "PCR %u: number is larger than maximum of %u",
1043 pcr
, PCR_MAX_NUM
-1);
1047 /* Is the length of the PCR registers already set? */
1050 if (pcr_after
.len
!= this->pcr_len
)
1052 DBG1(DBG_PTS
, "PCR %02u: length is %d bytes but should be %d bytes",
1053 pcr_after
.len
, this->pcr_len
);
1059 this->pcr_len
= pcr_after
.len
;
1062 /* Has the value of the PCR register already been assigned? */
1063 if (this->pcrs
[pcr
])
1065 if (!memeq(this->pcrs
[pcr
], pcr_before
.ptr
, this->pcr_len
))
1067 DBG1(DBG_PTS
, "PCR %02u: new pcr_before value does not equal "
1068 "old pcr_after value");
1070 /* remove the old PCR value */
1071 free(this->pcrs
[pcr
]);
1075 /* add extended PCR Register */
1076 this->pcr_select
[pcr
/ 8] |= 1 << (pcr
% 8);
1077 this->pcr_max
= max(this->pcr_max
, pcr
);
1081 /* Duplicate and store current PCR value */
1082 pcr_after
= chunk_clone(pcr_after
);
1083 this->pcrs
[pcr
] = pcr_after
.ptr
;
1088 METHOD(pts_t
, does_pcr_value_match
, bool,
1089 private_pts_t
*this, chunk_t pcr_after_value
)
1096 this->pcrs
= linked_list_create();
1099 e
= this->pcrs
->create_enumerator(this->pcrs
);
1100 while (e
->enumerate(e
, &entry
))
1102 if (entry
->pcr_number
== new->pcr_number
)
1104 DBG4(DBG_PTS
, "updating already added PCR%d value",
1106 this->pcrs
->remove_at(this->pcrs
, e
);
1112 this->pcrs
->insert_last(this->pcrs
, new);
1116 * TPM_QUOTE_INFO structure:
1117 * 4 bytes of version
1118 * 4 bytes 'Q' 'U' 'O' 'T'
1119 * 20 byte SHA1 of TCPA_PCR_COMPOSITE
1122 * TPM_QUOTE_INFO2 structure:
1123 * 2 bytes Tag 0x0036 TPM_Tag_Quote_info2
1124 * 4 bytes 'Q' 'U' 'T' '2'
1126 * 26 bytes PCR_INFO_SHORT
1129 METHOD(pts_t
, get_quote_info
, bool,
1130 private_pts_t
*this, bool use_quote2
, bool use_ver_info
,
1131 pts_meas_algorithms_t comp_hash_algo
,
1132 chunk_t
*out_pcr_comp
, chunk_t
*out_quote_info
)
1134 u_int8_t size_of_select
;
1135 int pcr_comp_len
, i
;
1136 chunk_t pcr_comp
, hash_pcr_comp
;
1137 bio_writer_t
*writer
;
1140 if (this->pcr_count
== 0)
1142 DBG1(DBG_PTS
, "No extended PCR entries available, "
1143 "unable to construct TPM Quote Info");
1146 if (!this->secret
.ptr
)
1148 DBG1(DBG_PTS
, "Secret assessment value unavailable, ",
1149 "unable to construct TPM Quote Info");
1152 if (use_quote2
&& use_ver_info
&& !this->tpm_version_info
.ptr
)
1154 DBG1(DBG_PTS
, "TPM Version Information unavailable, ",
1155 "unable to construct TPM Quote Info2");
1159 size_of_select
= 1 + this->pcr_max
/ 8;
1160 pcr_comp_len
= 2 + size_of_select
+ 4 + this->pcr_count
* this->pcr_len
;
1162 writer
= bio_writer_create(pcr_comp_len
);
1164 writer
->write_uint16(writer
, size_of_select
);
1165 for (i
= 0; i
< size_of_select
; i
++)
1167 writer
->write_uint8(writer
, this->pcr_select
[i
]);
1170 writer
->write_uint32(writer
, this->pcr_count
* this->pcr_len
);
1171 for (i
= 0; i
< 8 * size_of_select
; i
++)
1175 writer
->write_data(writer
, chunk_create(this->pcrs
[i
], this->pcr_len
));
1178 pcr_comp
= chunk_clone(writer
->get_buf(writer
));
1179 DBG3(DBG_PTS
, "constructed PCR Composite: %B", &pcr_comp
);
1181 writer
->destroy(writer
);
1183 /* Output the TPM_PCR_COMPOSITE expected from IMC */
1186 hash_algorithm_t algo
;
1188 algo
= pts_meas_algo_to_hash(comp_hash_algo
);
1189 hasher
= lib
->crypto
->create_hasher(lib
->crypto
, algo
);
1191 /* Hash the PCR Composite Structure */
1192 hasher
->allocate_hash(hasher
, pcr_comp
, out_pcr_comp
);
1193 DBG3(DBG_PTS
, "constructed PCR Composite hash: %#B", out_pcr_comp
);
1194 hasher
->destroy(hasher
);
1198 *out_pcr_comp
= chunk_clone(pcr_comp
);
1201 /* SHA1 hash of PCR Composite to construct TPM_QUOTE_INFO */
1202 hasher
= lib
->crypto
->create_hasher(lib
->crypto
, HASH_SHA1
);
1203 hasher
->allocate_hash(hasher
, pcr_comp
, &hash_pcr_comp
);
1204 hasher
->destroy(hasher
);
1206 writer
->write_data(writer
, hash_pcr_composite
);
1207 chunk_clear(&pcr_composite
);
1208 chunk_clear(&hash_pcr_composite
);
1210 /* Hash the PCR Composite Structure */
1211 hasher
->allocate_hash(hasher
, pcr_composite
, out_pcr_composite
);
1212 DBG4(DBG_PTS
, "Hash of calculated PCR Composite: %B", out_pcr_composite
);
1213 hasher
->destroy(hasher
);
1217 *out_pcr_composite
= chunk_clone(pcr_composite
);
1218 DBG3(DBG_PTS
, "calculated PCR Composite: %B", out_pcr_composite
);
1221 /* SHA1 hash of PCR Composite to construct TPM_QUOTE_INFO */
1222 hasher
= lib
->crypto
->create_hasher(lib
->crypto
, HASH_SHA1
);
1223 hasher
->allocate_hash(hasher
, pcr_composite
, &hash_pcr_composite
);
1224 hasher
->destroy(hasher
);
1226 /* Construct TPM_QUOTE_INFO/TPM_QUOTE_INFO2 structure */
1227 writer
= bio_writer_create(TPM_QUOTE_INFO_LEN
);
1231 /* TPM Structure Tag */
1232 writer
->write_uint16(writer
, TPM_TAG_QUOTE_INFO2
);
1234 /* Magic QUT2 value */
1235 writer
->write_data(writer
, chunk_create("QUT2", 4));
1237 /* Secret assessment value 20 bytes (nonce) */
1238 writer
->write_data(writer
, this->secret
);
1240 /* Length of the PCR selection field */
1241 writer
->write_uint16(writer
, size_of_select
);
1244 for (i
= 0; i
< size_of_select
; i
++)
1246 writer
->write_uint8(writer
, this->pcr_select
[i
]);
1249 /* TPM Locality Selection */
1250 writer
->write_uint8(writer
, TPM_LOC_ZERO
);
1252 /* PCR Composite Hash */
1253 writer
->write_data(writer
, hash_pcr_comp
);
1257 /* TPM version Info */
1258 writer
->write_data(writer
, this->tpm_version_info
);
1263 /* Version number */
1264 writer
->write_data(writer
, chunk_from_chars(1, 1, 0, 0));
1266 /* Magic QUOT value */
1267 writer
->write_data(writer
, chunk_create("QUOT", 4));
1269 /* PCR Composite Hash */
1270 writer
->write_data(writer
, hash_pcr_comp
);
1272 /* Secret assessment value 20 bytes (nonce) */
1273 writer
->write_data(writer
, this->secret
);
1276 /* TPM Quote Info */
1277 *out_quote_info
= chunk_clone(writer
->get_buf(writer
));
1278 DBG3(DBG_PTS
, "constructed TPM Quote Info: %B", out_quote_info
);
1280 writer
->destroy(writer
);
1282 free(hash_pcr_comp
.ptr
);
1288 METHOD(pts_t
, verify_quote_signature
, bool,
1289 private_pts_t
*this, chunk_t data
, chunk_t signature
)
1291 public_key_t
*aik_pub_key
;
1293 aik_pub_key
= this->aik
->get_public_key(this->aik
);
1296 DBG1(DBG_PTS
, "failed to get public key from AIK certificate");
1300 if (!aik_pub_key
->verify(aik_pub_key
, SIGN_RSA_EMSA_PKCS1_SHA1
,
1303 DBG1(DBG_PTS
, "signature verification failed for TPM Quote Info");
1304 DESTROY_IF(aik_pub_key
);
1309 if (!aik_pub_key
->get_encoding(aik_pub_key
,
1310 PUBKEY_SPKI_ASN1_DER
, &key_encoding
))
1312 DBG1(DBG_PTS
, "failed to get encoding of AIK public key");
1316 aik_pub_key
->destroy(aik_pub_key
);
1320 METHOD(pts_t
, destroy
, void,
1321 private_pts_t
*this)
1324 DESTROY_IF(this->aik
);
1325 DESTROY_IF(this->dh
);
1326 free(this->initiator_nonce
.ptr
);
1327 free(this->responder_nonce
.ptr
);
1328 free(this->secret
.ptr
);
1329 free(this->platform_info
);
1330 free(this->aik_blob
.ptr
);
1331 free(this->tpm_version_info
.ptr
);
1336 * Determine Linux distribution and hardware platform
1338 static char* extract_platform_info(void)
1341 char buf
[BUF_LEN
], *pos
, *value
= NULL
;
1343 struct utsname uninfo
;
1345 /* Linux/Unix distribution release info (from http://linuxmafia.com) */
1346 const char* releases
[] = {
1347 "/etc/lsb-release", "/etc/debian_version",
1348 "/etc/SuSE-release", "/etc/novell-release",
1349 "/etc/sles-release", "/etc/redhat-release",
1350 "/etc/fedora-release", "/etc/gentoo-release",
1351 "/etc/slackware-version", "/etc/annvix-release",
1352 "/etc/arch-release", "/etc/arklinux-release",
1353 "/etc/aurox-release", "/etc/blackcat-release",
1354 "/etc/cobalt-release", "/etc/conectiva-release",
1355 "/etc/debian_release", "/etc/immunix-release",
1356 "/etc/lfs-release", "/etc/linuxppc-release",
1357 "/etc/mandrake-release", "/etc/mandriva-release",
1358 "/etc/mandrakelinux-release", "/etc/mklinux-release",
1359 "/etc/pld-release", "/etc/redhat_version",
1360 "/etc/slackware-release", "/etc/e-smith-release",
1361 "/etc/release", "/etc/sun-release",
1362 "/etc/tinysofa-release", "/etc/turbolinux-release",
1363 "/etc/ultrapenguin-release", "/etc/UnitedLinux-release",
1364 "/etc/va-release", "/etc/yellowdog-release"
1367 const char description
[] = "DISTRIB_DESCRIPTION=\"";
1369 for (i
= 0; i
< countof(releases
); i
++)
1371 file
= fopen(releases
[i
], "r");
1376 fseek(file
, 0, SEEK_END
);
1377 len
= min(ftell(file
), sizeof(buf
)-1);
1380 if (fread(buf
, 1, len
, file
) != len
)
1382 DBG1(DBG_PTS
, "failed to read file '%s'", releases
[i
]);
1388 if (i
== 0) /* LSB release */
1390 pos
= strstr(buf
, description
);
1393 DBG1(DBG_PTS
, "failed to find begin of lsb-release "
1394 "DESCRIPTION field");
1397 value
= pos
+ strlen(description
);
1398 pos
= strchr(value
, '"');
1401 DBG1(DBG_PTS
, "failed to find end of lsb-release "
1402 "DESCRIPTION field");
1409 pos
= strchr(value
, '\n');
1412 DBG1(DBG_PTS
, "failed to find end of release string");
1421 DBG1(DBG_PTS
, "no distribution release file found");
1425 if (uname(&uninfo
) < 0)
1427 DBG1(DBG_PTS
, "could not retrieve machine architecture");
1432 len
= sizeof(buf
)-1 + (pos
- buf
);
1433 strncpy(pos
, uninfo
.machine
, len
);
1435 DBG1(DBG_PTS
, "platform is '%s'", value
);
1436 return strdup(value
);
1440 * Check for a TPM by querying for TPM Version Info
1442 static bool has_tpm(private_pts_t
*this)
1444 TSS_HCONTEXT hContext
;
1447 u_int32_t version_info_len
;
1449 result
= Tspi_Context_Create(&hContext
);
1450 if (result
!= TSS_SUCCESS
)
1452 DBG1(DBG_PTS
, "TPM context could not be created: tss error 0x%x",
1456 result
= Tspi_Context_Connect(hContext
, NULL
);
1457 if (result
!= TSS_SUCCESS
)
1461 result
= Tspi_Context_GetTpmObject (hContext
, &hTPM
);
1462 if (result
!= TSS_SUCCESS
)
1466 result
= Tspi_TPM_GetCapability(hTPM
, TSS_TPMCAP_VERSION_VAL
, 0, NULL
,
1468 &this->tpm_version_info
.ptr
);
1469 this->tpm_version_info
.len
= version_info_len
;
1470 if (result
!= TSS_SUCCESS
)
1474 this->tpm_version_info
= chunk_clone(this->tpm_version_info
);
1476 Tspi_Context_FreeMemory(hContext
, NULL
);
1477 Tspi_Context_Close(hContext
);
1481 DBG1(DBG_PTS
, "TPM not available: tss error 0x%x", result
);
1482 Tspi_Context_FreeMemory(hContext
, NULL
);
1483 Tspi_Context_Close(hContext
);
1490 pts_t
*pts_create(bool is_imc
)
1492 private_pts_t
*this;
1496 .get_proto_caps
= _get_proto_caps
,
1497 .set_proto_caps
= _set_proto_caps
,
1498 .get_meas_algorithm
= _get_meas_algorithm
,
1499 .set_meas_algorithm
= _set_meas_algorithm
,
1500 .get_dh_hash_algorithm
= _get_dh_hash_algorithm
,
1501 .set_dh_hash_algorithm
= _set_dh_hash_algorithm
,
1502 .create_dh_nonce
= _create_dh_nonce
,
1503 .get_my_public_value
= _get_my_public_value
,
1504 .set_peer_public_value
= _set_peer_public_value
,
1505 .calculate_secret
= _calculate_secret
,
1506 .get_platform_info
= _get_platform_info
,
1507 .set_platform_info
= _set_platform_info
,
1508 .get_tpm_version_info
= _get_tpm_version_info
,
1509 .set_tpm_version_info
= _set_tpm_version_info
,
1510 .get_pcr_len
= _get_pcr_len
,
1511 .get_aik
= _get_aik
,
1512 .set_aik
= _set_aik
,
1513 .is_path_valid
= _is_path_valid
,
1514 .hash_file
= _hash_file
,
1515 .do_measurements
= _do_measurements
,
1516 .get_metadata
= _get_metadata
,
1517 .read_pcr
= _read_pcr
,
1518 .extend_pcr
= _extend_pcr
,
1519 .quote_tpm
= _quote_tpm
,
1520 .select_pcr
= _select_pcr
,
1521 .add_pcr
= _add_pcr
,
1522 .get_quote_info
= _get_quote_info
,
1523 .verify_quote_signature
= _verify_quote_signature
,
1524 .destroy
= _destroy
,
1527 .proto_caps
= PTS_PROTO_CAPS_V
,
1528 .algorithm
= PTS_MEAS_ALGO_SHA256
,
1529 .dh_hash_algorithm
= PTS_MEAS_ALGO_SHA256
,
1534 this->platform_info
= extract_platform_info();
1538 this->has_tpm
= TRUE
;
1539 this->pcr_len
= PCR_LEN
;
1540 this->proto_caps
|= PTS_PROTO_CAPS_T
| PTS_PROTO_CAPS_D
;
1542 load_aik_blob(this);
1547 this->proto_caps
|= PTS_PROTO_CAPS_T
| PTS_PROTO_CAPS_D
;
1550 return &this->public;