strongswan/src/libpts/pts/pts.c

583 lines
13 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;
/**
* 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;
DBG2(DBG_IMC, "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);
DBG2(DBG_IMC, "selected PTS measurement algorithm is %N",
hash_algorithm_names, hash_alg);
if (hash_alg != HASH_UNKNOWN)
{
this->algorithm = algorithm;
}
}
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-06 22:48:25 +00:00
DBG1(DBG_TNC, "could not parse tpm version info: tss error 0x%x",
2011-08-20 21:37:37 +00:00
result);
}
else
{
2011-09-06 22:48:25 +00:00
DBG2(DBG_TNC, "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)
{
DBG2(DBG_IMC, "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)
{
DBG2(DBG_IMC, "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-05 09:15:34 +00:00
DBG1(DBG_IMC, "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)
{
DBG1(DBG_IMC," 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)
{
int error;
struct stat sb;
2011-09-10 09:57:17 +00:00
*error_code = 0;
error = stat(path, &sb);
if (error == 0)
{
return TRUE;
}
else if (error == ENOENT || error == ENOTDIR)
{
DBG1(DBG_IMC, "file/directory does not exist %s", path);
*error_code = TCG_PTS_FILE_NOT_FOUND;
}
else if (error == EFAULT)
{
DBG1(DBG_IMC, "bad address %s", path);
*error_code = TCG_PTS_INVALID_PATH;
}
else
{
2011-09-10 09:57:17 +00:00
DBG1(DBG_IMC, "error: %s occured while validating path: %s",
strerror(error), 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)
{
DBG1(DBG_IMC, " 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)
{
DBG1(DBG_IMC," 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;
}
DBG2(DBG_IMC, " %#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);
DBG2(DBG_IMC, " %#B for '%s'", &measurement, filename);
measurements->add(measurements, filename, measurement);
}
hasher->destroy(hasher);
return measurements;
}
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);
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)
{
DBG1(DBG_IMC, "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)
{
DBG1(DBG_IMC, "failed to find begin of lsb-release "
"DESCRIPTION field");
return NULL;
}
value = pos + strlen(description);
pos = strchr(value, '"');
if (!pos)
{
DBG1(DBG_IMC, "failed to find end of lsb-release "
"DESCRIPTION field");
return NULL;
}
}
else
{
value = buf;
pos = strchr(value, '\n');
if (!pos)
{
DBG1(DBG_IMC, "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
{
DBG1(DBG_IMC, "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
{
DBG1(DBG_IMC, "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 08:55:21 +00:00
DBG1(DBG_IMC, "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 08:55:21 +00:00
DBG1(DBG_IMC, "TPM context could not be created: tss error 0x%x", result);
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:
DBG1(DBG_IMC, "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_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,
.destroy = _destroy,
},
.proto_caps = PTS_PROTO_CAPS_V,
.algorithm = PTS_MEAS_ALGO_SHA256,
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;
}