strongswan/src/libpts/pts/pts.c

844 lines
20 KiB
C
Raw Normal View History

2011-08-20 21:37:37 +00:00
/*
* Copyright (C) 2011 Sansar Choinyambuu
* HSR Hochschule fuer Technik Rapperswil
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
#include "pts.h"
#include <debug.h>
#include <crypto/hashers/hasher.h>
2011-08-20 21:37:37 +00:00
#include <trousers/tss.h>
#include <trousers/trousers.h>
#include <sys/stat.h>
#include <sys/utsname.h>
#include <errno.h>
#define PTS_BUF_SIZE 4096
2011-08-20 21:37:37 +00:00
typedef struct private_pts_t private_pts_t;
/**
* Private data of a pts_t object.
*
*/
struct private_pts_t {
/**
* Public pts_t interface.
*/
pts_t public;
/**
* PTS Protocol Capabilities
*/
pts_proto_caps_flag_t proto_caps;
/**
* PTS Measurement Algorithm
*/
pts_meas_algorithms_t algorithm;
/**
* PTS Diffie Hellman Group
*/
pts_dh_group_t dh_group;
/**
* Contains a Diffie Hellman object
*/
diffie_hellman_t *dh;
/**
* Secret assessment value to be used for TPM Quote as an external data
*/
chunk_t secret;
/**
* Platform and OS Info
*/
char *platform_info;
2011-08-21 18:00:15 +00:00
/**
* Do we have an activated TPM
*/
bool has_tpm;
2011-08-20 21:37:37 +00:00
/**
* Contains a TPM_CAP_VERSION_INFO struct
*/
chunk_t tpm_version_info;
2011-08-26 12:16:12 +00:00
/**
2011-09-05 09:15:34 +00:00
* Contains a Attestation Identity Key or Certificate
2011-08-26 12:16:12 +00:00
*/
2011-09-05 09:15:34 +00:00
certificate_t *aik;
2011-08-20 21:37:37 +00:00
};
METHOD(pts_t, get_proto_caps, pts_proto_caps_flag_t,
private_pts_t *this)
{
return this->proto_caps;
}
METHOD(pts_t, set_proto_caps, void,
private_pts_t *this, pts_proto_caps_flag_t flags)
{
this->proto_caps = flags;
2011-09-10 22:11:04 +00:00
DBG2(DBG_PTS, "supported PTS protocol capabilities: %s%s%s%s%s",
flags & PTS_PROTO_CAPS_C ? "C" : ".",
flags & PTS_PROTO_CAPS_V ? "V" : ".",
flags & PTS_PROTO_CAPS_D ? "D" : ".",
flags & PTS_PROTO_CAPS_T ? "T" : ".",
flags & PTS_PROTO_CAPS_X ? "X" : ".");
}
METHOD(pts_t, get_meas_algorithm, pts_meas_algorithms_t,
private_pts_t *this)
{
return this->algorithm;
}
METHOD(pts_t, set_meas_algorithm, void,
private_pts_t *this, pts_meas_algorithms_t algorithm)
{
hash_algorithm_t hash_alg;
hash_alg = pts_meas_to_hash_algorithm(algorithm);
2011-09-10 22:11:04 +00:00
DBG2(DBG_PTS, "selected PTS measurement algorithm is %N",
hash_algorithm_names, hash_alg);
if (hash_alg != HASH_UNKNOWN)
{
this->algorithm = algorithm;
}
}
METHOD(pts_t, get_dh_group, pts_dh_group_t,
private_pts_t *this)
{
return this->dh_group;
}
METHOD(pts_t, set_dh_group, void,
private_pts_t *this, pts_dh_group_t group)
{
diffie_hellman_group_t dh_group;
dh_group = pts_dh_group_to_strongswan_dh_group(group);
DBG2(DBG_PTS, "selected PTS Diffie Hellman Group is %N",
diffie_hellman_group_names, dh_group);
if (dh_group != MODP_NONE)
{
this->dh_group = group;
}
}
METHOD(pts_t, create_dh, bool,
private_pts_t *this, pts_dh_group_t group)
{
diffie_hellman_group_t dh_group;
dh_group = pts_dh_group_to_strongswan_dh_group(group);
if (dh_group != MODP_NONE)
{
this->dh = lib->crypto->create_dh(lib->crypto, dh_group);
return TRUE;
}
DBG1(DBG_PTS, "Unable to create Diffie Hellman object with group %N",
diffie_hellman_group_names, dh_group);
return FALSE;
}
METHOD(pts_t, get_my_pub_val, chunk_t,
private_pts_t *this)
{
chunk_t public_value;
this->dh->get_my_public_value(this->dh, &public_value);
DBG3(DBG_PTS, "My Public value:%B", &public_value);
return public_value;
}
METHOD(pts_t, set_other_pub_val, void,
private_pts_t *this, chunk_t value)
{
DBG3(DBG_PTS, "Partner's Public value:%B", &value);
this->dh->set_other_public_value(this->dh, value);
}
METHOD(pts_t, calculate_secret, bool,
private_pts_t *this, chunk_t initiator_nonce, chunk_t responder_nonce,
pts_meas_algorithms_t algorithm)
{
hasher_t *hasher;
hash_algorithm_t hash_alg;
u_char output[HASH_SIZE_SHA384];
chunk_t shared_secret;
/* Create a hasher */
hash_alg = pts_meas_to_hash_algorithm(algorithm);
hasher = lib->crypto->create_hasher(lib->crypto, hash_alg);
if (!hasher)
{
DBG1(DBG_PTS, " hasher %N not available", hash_algorithm_names, hash_alg);
return FALSE;
}
if (this->dh->get_shared_secret(this->dh, &shared_secret) != SUCCESS)
{
DBG1(DBG_PTS, "Shared secret couldn't be calculated");
hasher->destroy(hasher);
return FALSE;
}
hasher->get_hash(hasher, chunk_create("1", sizeof("1")), NULL);
hasher->get_hash(hasher, initiator_nonce, NULL);
hasher->get_hash(hasher, responder_nonce, NULL);
hasher->get_hash(hasher, shared_secret, output);
/**
* Link the hash output to the secret and set the length
* Truncate the output to 20 bytes to fit ExternalDate argument of TPM Quote
*/
this->secret = chunk_create(output, HASH_SIZE_SHA1);
DBG3(DBG_PTS, "Secret assessment value: %B", &this->secret);
hasher->destroy(hasher);
return TRUE;
}
METHOD(pts_t, get_secret, chunk_t,
private_pts_t *this)
{
return this->secret;
}
2011-08-20 21:37:37 +00:00
/**
* Print TPM 1.2 Version Info
*/
static void print_tpm_version_info(private_pts_t *this)
{
TPM_CAP_VERSION_INFO versionInfo;
UINT64 offset = 0;
TSS_RESULT result;
result = Trspi_UnloadBlob_CAP_VERSION_INFO(&offset,
2011-09-10 09:02:19 +00:00
this->tpm_version_info.ptr, &versionInfo);
2011-08-20 21:37:37 +00:00
if (result != TSS_SUCCESS)
{
2011-09-10 22:11:04 +00:00
DBG1(DBG_PTS, "could not parse tpm version info: tss error 0x%x",
2011-08-20 21:37:37 +00:00
result);
}
else
{
2011-09-10 22:11:04 +00:00
DBG2(DBG_PTS, "TPM 1.2 Version Info: Chip Version: %hhu.%hhu.%hhu.%hhu,"
" Spec Level: %hu, Errata Rev: %hhu, Vendor ID: %.4s",
versionInfo.version.major, versionInfo.version.minor,
versionInfo.version.revMajor, versionInfo.version.revMinor,
versionInfo.specLevel, versionInfo.errataRev,
versionInfo.tpmVendorID);
2011-08-20 21:37:37 +00:00
}
}
METHOD(pts_t, get_platform_info, char*,
private_pts_t *this)
{
return this->platform_info;
}
METHOD(pts_t, set_platform_info, void,
private_pts_t *this, char *info)
{
free(this->platform_info);
this->platform_info = strdup(info);
}
2011-08-20 21:37:37 +00:00
METHOD(pts_t, get_tpm_version_info, bool,
private_pts_t *this, chunk_t *info)
2011-08-20 21:37:37 +00:00
{
2011-08-21 18:00:15 +00:00
if (!this->has_tpm)
2011-08-20 21:37:37 +00:00
{
2011-08-21 18:00:15 +00:00
return FALSE;
2011-08-20 21:37:37 +00:00
}
*info = this->tpm_version_info;
print_tpm_version_info(this);
return TRUE;
}
METHOD(pts_t, set_tpm_version_info, void,
private_pts_t *this, chunk_t info)
2011-08-20 21:37:37 +00:00
{
this->tpm_version_info = chunk_clone(info);
print_tpm_version_info(this);
}
2011-08-31 13:04:05 +00:00
/**
2011-09-05 09:15:34 +00:00
* Load an AIK certificate or public key,
* the certificate having precedence over the public key if both are present
*/
2011-09-05 09:15:34 +00:00
static void load_aik(private_pts_t *this)
2011-08-26 12:16:12 +00:00
{
2011-09-05 09:15:34 +00:00
char *cert_path, *key_path;
2011-08-31 13:04:05 +00:00
2011-09-05 09:15:34 +00:00
cert_path = lib->settings->get_str(lib->settings,
"libimcv.plugins.imc-attestation.aik_cert", NULL);
key_path = lib->settings->get_str(lib->settings,
"libimcv.plugins.imc-attestation.aik_key", NULL);
2011-08-31 13:04:05 +00:00
2011-09-05 09:15:34 +00:00
if (cert_path)
{
2011-09-05 09:15:34 +00:00
this->aik = lib->creds->create(lib->creds, CRED_CERTIFICATE,
2011-09-10 09:02:19 +00:00
CERT_X509, BUILD_FROM_FILE,
cert_path, BUILD_END);
2011-09-05 09:15:34 +00:00
if (this->aik)
{
2011-09-10 22:11:04 +00:00
DBG2(DBG_PTS, "loaded AIK certificate from '%s'", cert_path);
2011-09-05 09:15:34 +00:00
return;
}
}
2011-09-05 09:15:34 +00:00
if (key_path)
2011-08-26 12:16:12 +00:00
{
2011-09-05 09:15:34 +00:00
this->aik = lib->creds->create(lib->creds, CRED_CERTIFICATE,
2011-09-10 09:02:19 +00:00
CERT_TRUSTED_PUBKEY, BUILD_FROM_FILE,
key_path, BUILD_END);
2011-09-05 09:15:34 +00:00
if (this->aik)
{
2011-09-10 22:11:04 +00:00
DBG2(DBG_PTS, "loaded AIK public key from '%s'", key_path);
2011-09-05 09:15:34 +00:00
return;
}
2011-08-26 12:16:12 +00:00
}
2011-09-10 22:11:04 +00:00
DBG1(DBG_PTS, "neither AIK certificate nor public key is available");
2011-08-26 12:16:12 +00:00
}
2011-09-05 09:15:34 +00:00
METHOD(pts_t, get_aik, certificate_t*,
private_pts_t *this)
{
2011-09-05 09:15:34 +00:00
return this->aik;
}
2011-09-05 09:15:34 +00:00
METHOD(pts_t, set_aik, void,
private_pts_t *this, certificate_t *aik)
2011-08-26 12:16:12 +00:00
{
2011-09-05 09:15:34 +00:00
DESTROY_IF(this->aik);
this->aik = aik->get_ref(aik);
2011-08-26 12:16:12 +00:00
}
/**
* Compute a hash over a file
*/
static bool hash_file(hasher_t *hasher, char *pathname, u_char *hash)
{
u_char buffer[PTS_BUF_SIZE];
FILE *file;
int bytes_read;
2011-08-31 14:52:31 +00:00
file = fopen(pathname, "rb");
if (!file)
{
2011-09-10 22:11:04 +00:00
DBG1(DBG_PTS," file '%s' can not be opened, %s", pathname,
strerror(errno));
2011-08-31 14:52:31 +00:00
return FALSE;
}
while (TRUE)
{
bytes_read = fread(buffer, 1, sizeof(buffer), file);
if (bytes_read > 0)
{
hasher->get_hash(hasher, chunk_create(buffer, bytes_read), NULL);
}
else
{
hasher->get_hash(hasher, chunk_empty, hash);
break;
}
}
fclose(file);
2011-08-31 14:52:31 +00:00
return TRUE;
}
/**
* Get the relative filename of a fully qualified file pathname
*/
static char* get_filename(char *pathname)
{
char *pos, *filename;
pos = filename = pathname;
while (pos && *(++pos) != '\0')
{
filename = pos;
pos = strchr(filename, '/');
}
return filename;
}
METHOD(pts_t, is_path_valid, bool, private_pts_t *this, char *path,
pts_error_code_t *error_code)
{
2011-09-14 13:41:57 +00:00
struct stat st;
2011-09-10 09:57:17 +00:00
*error_code = 0;
if (!stat(path, &st))
{
return TRUE;
}
else if (errno == ENOENT || errno == ENOTDIR)
{
2011-09-10 22:11:04 +00:00
DBG1(DBG_PTS, "file/directory does not exist %s", path);
*error_code = TCG_PTS_FILE_NOT_FOUND;
}
else if (errno == EFAULT)
{
2011-09-10 22:11:04 +00:00
DBG1(DBG_PTS, "bad address %s", path);
*error_code = TCG_PTS_INVALID_PATH;
}
else
{
DBG1(DBG_PTS, "error: %s occured while validating path: %s",
strerror(errno), path);
return FALSE;
}
return TRUE;
}
METHOD(pts_t, do_measurements, pts_file_meas_t*,
private_pts_t *this, u_int16_t request_id, char *pathname, bool is_directory)
{
hasher_t *hasher;
hash_algorithm_t hash_alg;
u_char hash[HASH_SIZE_SHA384];
chunk_t measurement;
pts_file_meas_t *measurements;
/* Create a hasher */
hash_alg = pts_meas_to_hash_algorithm(this->algorithm);
hasher = lib->crypto->create_hasher(lib->crypto, hash_alg);
if (!hasher)
{
2011-09-10 22:11:04 +00:00
DBG1(DBG_PTS, " hasher %N not available", hash_algorithm_names, hash_alg);
return NULL;
}
/* Create a measurement object */
measurements = pts_file_meas_create(request_id);
/* Link the hash to the measurement and set the measurement length */
measurement = chunk_create(hash, hasher->get_hash_size(hasher));
if (is_directory)
{
enumerator_t *enumerator;
char *rel_name, *abs_name;
struct stat st;
enumerator = enumerator_create_directory(pathname);
if (!enumerator)
{
2011-09-10 22:11:04 +00:00
DBG1(DBG_PTS," directory '%s' can not be opened, %s", pathname,
strerror(errno));
hasher->destroy(hasher);
measurements->destroy(measurements);
return NULL;
}
while (enumerator->enumerate(enumerator, &rel_name, &abs_name, &st))
{
/* measure regular files only */
if (S_ISREG(st.st_mode) && *rel_name != '.')
{
if (!hash_file(hasher, abs_name, hash))
{
enumerator->destroy(enumerator);
hasher->destroy(hasher);
measurements->destroy(measurements);
return NULL;
}
2011-09-10 22:11:04 +00:00
DBG2(DBG_PTS, " %#B for '%s'", &measurement, rel_name);
measurements->add(measurements, rel_name, measurement);
}
}
enumerator->destroy(enumerator);
}
else
{
char *filename;
if (!hash_file(hasher, pathname, hash))
{
hasher->destroy(hasher);
measurements->destroy(measurements);
return NULL;
}
filename = get_filename(pathname);
2011-09-10 22:11:04 +00:00
DBG2(DBG_PTS, " %#B for '%s'", &measurement, filename);
measurements->add(measurements, filename, measurement);
}
hasher->destroy(hasher);
return measurements;
}
2011-09-14 13:41:57 +00:00
/**
* Obtain statistical information describing a file
*/
static bool file_metadata(char *pathname, pts_file_metadata_t **entry)
{
struct stat st;
pts_file_metadata_t *tmp;
tmp = malloc_thing(pts_file_metadata_t);
if (stat(pathname, &st))
{
DBG1(DBG_PTS, "Unable to obtain statistical information about %s", pathname);
return FALSE;
}
tmp->filename = strdup(pathname);
tmp->meta_length = PTS_FILE_METADATA_SIZE + strlen(tmp->filename);
if (S_ISREG(st.st_mode))
{
tmp->type = PTS_FILE_REGULAR;
}
else if (S_ISDIR(st.st_mode))
{
tmp->type = PTS_FILE_DIRECTORY;
}
else if (S_ISCHR(st.st_mode))
{
tmp->type = PTS_FILE_CHAR_SPEC;
}
else if (S_ISBLK(st.st_mode))
{
tmp->type = PTS_FILE_BLOCK_SPEC;
}
else if (S_ISFIFO(st.st_mode))
{
tmp->type = PTS_FILE_FIFO;
}
else if (S_ISLNK(st.st_mode))
{
tmp->type = PTS_FILE_SYM_LINK;
}
else if (S_ISSOCK(st.st_mode))
{
tmp->type = PTS_FILE_SOCKET;
}
else
{
tmp->type = PTS_FILE_OTHER;
}
tmp->filesize = (u_int64_t)st.st_size;
tmp->create_time = st.st_ctime;
tmp->last_modify_time = st.st_mtime;
tmp->last_access_time = st.st_atime;
tmp->owner_id = (u_int64_t)st.st_uid;
tmp->group_id = (u_int64_t)st.st_gid;
*entry = tmp;
return TRUE;
}
METHOD(pts_t, get_metadata, pts_file_meta_t*,
private_pts_t *this, char *pathname, bool is_directory)
{
pts_file_meta_t *metadata;
pts_file_metadata_t *entry;
/* Create a metadata object */
metadata = pts_file_meta_create();
if (is_directory)
{
enumerator_t *enumerator;
char *rel_name, *abs_name;
struct stat st;
enumerator = enumerator_create_directory(pathname);
if (!enumerator)
{
DBG1(DBG_PTS," directory '%s' can not be opened, %s", pathname,
strerror(errno));
metadata->destroy(metadata);
return NULL;
}
while (enumerator->enumerate(enumerator, &rel_name, &abs_name, &st))
{
/* measure regular files only */
if (S_ISREG(st.st_mode) && *rel_name != '.')
{
if (!file_metadata(abs_name, &entry))
{
enumerator->destroy(enumerator);
metadata->destroy(metadata);
return NULL;
}
DBG3(DBG_PTS, "File name: %s", entry->filename);
DBG3(DBG_PTS, " type: %d", entry->type);
DBG3(DBG_PTS, " size: %d", entry->filesize);
DBG3(DBG_PTS, " create time: %s", ctime(&entry->create_time));
DBG3(DBG_PTS, " last modified: %s", ctime(&entry->last_modify_time));
DBG3(DBG_PTS, " last accessed: %s", ctime(&entry->last_access_time));
DBG3(DBG_PTS, " owner id: %d", entry->owner_id);
DBG3(DBG_PTS, " group id: %d", entry->group_id);
metadata->add(metadata, entry);
}
}
enumerator->destroy(enumerator);
}
else
{
char *filename;
if (!file_metadata(pathname, &entry))
{
metadata->destroy(metadata);
return NULL;
}
filename = get_filename(pathname);
DBG3(DBG_PTS, "File name: %s", entry->filename);
DBG3(DBG_PTS, " type: %d", entry->type);
DBG3(DBG_PTS, " size: %d", entry->filesize);
DBG3(DBG_PTS, " create time: %s", ctime(&entry->create_time));
DBG3(DBG_PTS, " last modified: %s", ctime(&entry->last_modify_time));
DBG3(DBG_PTS, " last accessed: %s", ctime(&entry->last_access_time));
DBG3(DBG_PTS, " owner id: %d", entry->owner_id);
DBG3(DBG_PTS, " group id: %d", entry->group_id);
metadata->add(metadata, entry);
}
return metadata;
}
2011-08-20 21:37:37 +00:00
METHOD(pts_t, destroy, void,
private_pts_t *this)
2011-08-20 21:37:37 +00:00
{
2011-09-05 09:15:34 +00:00
DESTROY_IF(this->aik);
DESTROY_IF(this->dh);
free(this->platform_info);
2011-08-20 21:37:37 +00:00
free(this->tpm_version_info.ptr);
free(this);
}
2011-09-06 22:48:25 +00:00
/**
* Determine Linux distribution and hardware platform
*/
2011-09-07 05:40:42 +00:00
static char* extract_platform_info(void)
2011-09-06 22:48:25 +00:00
{
FILE *file;
char buf[BUF_LEN], *pos, *value = NULL;
int i, len;
struct utsname uninfo;
/* Linux/Unix distribution release info (from http://linuxmafia.com) */
const char* releases[] = {
"/etc/lsb-release", "/etc/debian_version",
"/etc/SuSE-release", "/etc/novell-release",
"/etc/sles-release", "/etc/redhat-release",
2011-09-10 09:34:52 +00:00
"/etc/fedora-release", "/etc/gentoo-release",
"/etc/slackware-version", "/etc/annvix-release",
"/etc/arch-release", "/etc/arklinux-release",
"/etc/aurox-release", "/etc/blackcat-release",
"/etc/cobalt-release", "/etc/conectiva-release",
"/etc/debian_release", "/etc/immunix-release",
"/etc/lfs-release", "/etc/linuxppc-release",
"/etc/mandrake-release", "/etc/mandriva-release",
"/etc/mandrakelinux-release", "/etc/mklinux-release",
"/etc/pld-release", "/etc/redhat_version",
"/etc/slackware-release", "/etc/e-smith-release",
"/etc/release", "/etc/sun-release",
2011-09-10 09:34:52 +00:00
"/etc/tinysofa-release", "/etc/turbolinux-release",
"/etc/ultrapenguin-release", "/etc/UnitedLinux-release",
"/etc/va-release", "/etc/yellowdog-release"
};
const char description[] = "DISTRIB_DESCRIPTION=\"";
for (i = 0; i < countof(releases); i++)
2011-09-06 22:48:25 +00:00
{
file = fopen(releases[i], "r");
if (!file)
{
continue;
}
fseek(file, 0, SEEK_END);
len = min(ftell(file), sizeof(buf)-1);
rewind(file);
buf[len] = '\0';
if (fread(buf, 1, len, file) != len)
{
2011-09-10 22:11:04 +00:00
DBG1(DBG_PTS, "failed to read file '%s'", releases[i]);
fclose(file);
return NULL;
}
fclose(file);
2011-09-06 22:48:25 +00:00
if (i == 0) /* LSB release */
{
pos = strstr(buf, description);
if (!pos)
{
2011-09-10 22:11:04 +00:00
DBG1(DBG_PTS, "failed to find begin of lsb-release "
"DESCRIPTION field");
return NULL;
}
value = pos + strlen(description);
pos = strchr(value, '"');
if (!pos)
{
2011-09-10 22:11:04 +00:00
DBG1(DBG_PTS, "failed to find end of lsb-release "
"DESCRIPTION field");
return NULL;
}
}
else
{
value = buf;
pos = strchr(value, '\n');
if (!pos)
{
2011-09-10 22:11:04 +00:00
DBG1(DBG_PTS, "failed to find end of release string");
return NULL;
}
}
break;
2011-09-06 22:48:25 +00:00
}
if (!value)
2011-09-06 22:48:25 +00:00
{
2011-09-10 22:11:04 +00:00
DBG1(DBG_PTS, "no distribution release file found");
2011-09-06 22:48:25 +00:00
return NULL;
}
if (uname(&uninfo) < 0)
2011-09-06 22:48:25 +00:00
{
2011-09-10 22:11:04 +00:00
DBG1(DBG_PTS, "could not retrieve machine architecture");
2011-09-06 22:48:25 +00:00
return NULL;
}
*pos++ = ' ';
len = sizeof(buf)-1 + (pos - buf);
strncpy(pos, uninfo.machine, len);
2011-09-06 22:48:25 +00:00
2011-09-10 22:11:04 +00:00
DBG1(DBG_PTS, "platform is '%s'", value);
2011-09-10 09:34:52 +00:00
return strdup(value);
2011-09-06 22:48:25 +00:00
}
2011-08-21 18:00:15 +00:00
/**
* Check for a TPM by querying for TPM Version Info
*/
static bool has_tpm(private_pts_t *this)
{
TSS_HCONTEXT hContext;
TSS_HTPM hTPM;
TSS_RESULT result;
u_int32_t version_info_len;
2011-08-21 18:00:15 +00:00
result = Tspi_Context_Create(&hContext);
if (result != TSS_SUCCESS)
{
2011-09-10 22:11:04 +00:00
DBG1(DBG_PTS, "TPM context could not be created: tss error 0x%x", result);
2011-09-10 08:55:21 +00:00
return FALSE;
2011-08-21 18:00:15 +00:00
}
result = Tspi_Context_Connect(hContext, NULL);
if (result != TSS_SUCCESS)
{
goto err;
}
result = Tspi_Context_GetTpmObject (hContext, &hTPM);
if (result != TSS_SUCCESS)
{
goto err;
}
result = Tspi_TPM_GetCapability(hTPM, TSS_TPMCAP_VERSION_VAL, 0, NULL,
&version_info_len,
2011-08-21 18:00:15 +00:00
&this->tpm_version_info.ptr);
this->tpm_version_info.len = version_info_len;
2011-08-21 18:00:15 +00:00
if (result != TSS_SUCCESS)
{
goto err;
}
this->tpm_version_info = chunk_clone(this->tpm_version_info);
return TRUE;
err:
2011-09-10 22:11:04 +00:00
DBG1(DBG_PTS, "TPM not available: tss error 0x%x", result);
2011-09-10 08:55:21 +00:00
Tspi_Context_Close(hContext);
2011-08-21 18:00:15 +00:00
return FALSE;
}
2011-08-20 21:37:37 +00:00
/**
* See header
*/
pts_t *pts_create(bool is_imc)
2011-08-20 21:37:37 +00:00
{
private_pts_t *this;
INIT(this,
.public = {
.get_proto_caps = _get_proto_caps,
.set_proto_caps = _set_proto_caps,
.get_meas_algorithm = _get_meas_algorithm,
.set_meas_algorithm = _set_meas_algorithm,
.get_dh_group = _get_dh_group,
.set_dh_group = _set_dh_group,
.create_dh = _create_dh,
.get_my_pub_val = _get_my_pub_val,
.set_other_pub_val = _set_other_pub_val,
.calculate_secret = _calculate_secret,
.get_secret = _get_secret,
.get_platform_info = _get_platform_info,
.set_platform_info = _set_platform_info,
.get_tpm_version_info = _get_tpm_version_info,
.set_tpm_version_info = _set_tpm_version_info,
.get_aik = _get_aik,
2011-09-05 09:15:34 +00:00
.set_aik = _set_aik,
.is_path_valid = _is_path_valid,
.do_measurements = _do_measurements,
2011-09-14 13:41:57 +00:00
.get_metadata = _get_metadata,
.destroy = _destroy,
},
.proto_caps = PTS_PROTO_CAPS_V,
.algorithm = PTS_MEAS_ALGO_SHA256,
.dh_group = PTS_DH_GROUP_IKE19,
2011-08-20 21:37:37 +00:00
);
2011-08-21 18:00:15 +00:00
if (is_imc)
{
2011-09-06 22:48:25 +00:00
this->platform_info = extract_platform_info();
2011-08-21 18:00:15 +00:00
if (has_tpm(this))
{
this->has_tpm = TRUE;
this->proto_caps |= PTS_PROTO_CAPS_T;
2011-09-05 09:15:34 +00:00
load_aik(this);
2011-08-21 18:00:15 +00:00
}
}
else
{
2011-08-21 18:00:15 +00:00
this->proto_caps |= PTS_PROTO_CAPS_T | PTS_PROTO_CAPS_C;
}
2011-08-20 21:37:37 +00:00
return &this->public;
}