| /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| */ |
| |
| /* A lightweight TPM command library. |
| * |
| * The general idea is that TPM commands are array of bytes whose fields are |
| * mostly compile-time constant. The goal is to build much of the commands at |
| * compile time (or build time) and change some of the fields at run time as |
| * needed. The code in generator.c builds structures containing the commands, |
| * as well as the offsets of the fields that need to be set at run time. |
| */ |
| |
| #include "tlcl.h" |
| |
| #include <errno.h> |
| #include <fcntl.h> |
| #include <string.h> |
| #include <sys/time.h> |
| #include <sys/types.h> |
| #include <sys/stat.h> |
| #include <tss/tcs.h> |
| #include <unistd.h> |
| |
| #include "structures.h" |
| #include "tlcl_internal.h" |
| #if USE_TPM_EMULATOR |
| #include "tpmemu.h" |
| #endif |
| #include "tpmextras.h" |
| |
| /* The file descriptor for the TPM device. |
| */ |
| int tpm_fd = -1; |
| |
| /* Print |n| bytes from array |a|, with newlines. |
| */ |
| static void PrintBytes(uint8_t* a, int n) { |
| int i; |
| for (i = 0; i < n; i++) { |
| printf("%02x ", a[i]); |
| if ((i + 1) % 16 == 0) { |
| printf("\n"); |
| } |
| } |
| if (i % 16 != 0) { |
| printf("\n"); |
| } |
| } |
| |
| /* Gets the tag field of a TPM command. |
| */ |
| static INLINE int TpmTag(uint8_t* buffer) { |
| uint16_t tag; |
| FromTpmUint16(buffer, &tag); |
| return (int) tag; |
| } |
| |
| /* Sets the size field of a TPM command. |
| */ |
| static INLINE void SetTpmCommandSize(uint8_t* buffer, uint32_t size) { |
| ToTpmUint32(buffer + sizeof(uint16_t), size); |
| } |
| |
| /* Gets the size field of a TPM command. |
| */ |
| static INLINE int TpmCommandSize(const uint8_t* buffer) { |
| uint32_t size; |
| FromTpmUint32(buffer + sizeof(uint16_t), &size); |
| return (int) size; |
| } |
| |
| /* Gets the code field of a TPM command. |
| */ |
| static INLINE int TpmCommandCode(const uint8_t* buffer) { |
| uint32_t code; |
| FromTpmUint32(buffer + sizeof(uint16_t) + sizeof(uint32_t), &code); |
| return code; |
| } |
| |
| /* Gets the return code field of a TPM result. |
| */ |
| static INLINE int TpmReturnCode(const uint8_t* buffer) { |
| return TpmCommandCode(buffer); |
| } |
| |
| /* Checks for errors in a TPM response. |
| */ |
| static void CheckResult(uint8_t* request, uint8_t* response, bool warn_only) { |
| int command = TpmCommandCode(request); |
| int result = TpmReturnCode(response); |
| if (result != TPM_SUCCESS) { |
| (warn_only? warning : error)("command %d 0x%x failed: %d 0x%x\n", |
| command, command, result, result); |
| } |
| } |
| |
| /* Executes a command on the TPM. |
| */ |
| void TpmExecute(const uint8_t *in, const uint32_t in_len, |
| uint8_t *out, uint32_t *pout_len) { |
| uint8_t response[TPM_MAX_COMMAND_SIZE]; |
| if (in_len <= 0) { |
| error("invalid command length %d\n", in_len); |
| } else if (tpm_fd < 0) { |
| error("the TPM device was not opened. Forgot to call TlclLibinit?\n"); |
| } else { |
| int n = write(tpm_fd, in, in_len); |
| if (n != in_len) { |
| error("write failure to TPM device: %s\n", strerror(errno)); |
| } |
| n = read(tpm_fd, response, sizeof(response)); |
| if (n == 0) { |
| error("null read from TPM device\n"); |
| } else if (n < 0) { |
| error("read failure from TPM device: %s\n", strerror(errno)); |
| } else { |
| if (n > *pout_len) { |
| error("TPM response too long for output buffer\n"); |
| } else { |
| *pout_len = n; |
| memcpy(out, response, n); |
| } |
| } |
| } |
| } |
| |
| /* Sends a request and receive a response. |
| */ |
| static void SendReceive(uint8_t* request, uint8_t* response, int max_length) { |
| uint32_t response_length = max_length; |
| int tag, response_tag; |
| |
| #if USE_TPM_EMULATOR |
| tpmemu_execute(request, TpmCommandSize(request), response, &response_length); |
| #else |
| struct timeval before, after; |
| gettimeofday(&before, NULL); |
| TpmExecute(request, TpmCommandSize(request), response, &response_length); |
| gettimeofday(&after, NULL); |
| #endif |
| |
| { |
| int x = TpmCommandSize(request); |
| int y = response_length; |
| printf("request (%d bytes): ", x); |
| PrintBytes(request, 10); |
| PrintBytes(request + 10, x - 10); |
| printf("response (%d bytes): ", y); |
| PrintBytes(response, 10); |
| PrintBytes(response + 10, y - 10); |
| printf("execution time: %dms\n", |
| (int) ((after.tv_sec - before.tv_sec) * 1000 + |
| (after.tv_usec - before.tv_usec) / 1000)); |
| } |
| |
| /* sanity checks */ |
| tag = TpmTag(request); |
| response_tag = TpmTag(response); |
| assert( |
| (tag == TPM_TAG_RQU_COMMAND && |
| response_tag == TPM_TAG_RSP_COMMAND) || |
| (tag == TPM_TAG_RQU_AUTH1_COMMAND && |
| response_tag == TPM_TAG_RSP_AUTH1_COMMAND) || |
| (tag == TPM_TAG_RQU_AUTH2_COMMAND && |
| response_tag == TPM_TAG_RSP_AUTH2_COMMAND)); |
| assert(response_length == TpmCommandSize(response)); |
| } |
| |
| /* Sends a command and checks the result for errors. Note that this error |
| * checking is only meaningful when running in user mode. TODO: The entire |
| * error recovery strategy in the firmware needs more work. |
| */ |
| static void Send(uint8_t* command) { |
| uint8_t response[TPM_LARGE_ENOUGH_COMMAND_SIZE]; |
| SendReceive(command, response, sizeof(response)); |
| CheckResult(command, response, false); |
| } |
| |
| |
| /* Exported functions. |
| */ |
| |
| void TlclLibinit(void) { |
| #if USE_TPM_EMULATOR |
| tpmemu_init(); |
| #else |
| tpm_fd = open("/dev/tpm0", O_RDWR); |
| if (tpm_fd < 0) { |
| error("cannot open TPM device: %s\n", strerror(errno)); |
| } |
| #endif |
| } |
| |
| void TlclStartup(void) { |
| Send(tpm_startup_cmd.buffer); |
| } |
| |
| void TlclSelftestfull(void) { |
| Send(tpm_selftestfull_cmd.buffer); |
| } |
| |
| void TlclDefineSpace(uint32_t index, uint32_t perm, uint32_t size) { |
| ToTpmUint32(tpm_nv_definespace_cmd.index, index); |
| ToTpmUint32(tpm_nv_definespace_cmd.perm, perm); |
| ToTpmUint32(tpm_nv_definespace_cmd.size, size); |
| Send(tpm_nv_definespace_cmd.buffer); |
| } |
| |
| uint32_t TlclWrite(uint32_t index, uint8_t* data, uint32_t length) { |
| uint8_t response[TPM_LARGE_ENOUGH_COMMAND_SIZE]; |
| const int total_length = |
| kTpmRequestHeaderLength + kWriteInfoLength + length; |
| |
| assert(total_length <= TPM_LARGE_ENOUGH_COMMAND_SIZE); |
| SetTpmCommandSize(tpm_nv_write_cmd.buffer, total_length); |
| |
| ToTpmUint32(tpm_nv_write_cmd.index, index); |
| ToTpmUint32(tpm_nv_write_cmd.length, length); |
| memcpy(tpm_nv_write_cmd.data, data, length); |
| |
| SendReceive(tpm_nv_write_cmd.buffer, response, sizeof(response)); |
| CheckResult(tpm_nv_write_cmd.buffer, response, true); |
| |
| return TpmReturnCode(response); |
| } |
| |
| uint32_t TlclRead(uint32_t index, uint8_t* data, uint32_t length) { |
| uint8_t response[TPM_LARGE_ENOUGH_COMMAND_SIZE]; |
| uint32_t result_length; |
| uint32_t result; |
| |
| ToTpmUint32(tpm_nv_read_cmd.index, index); |
| ToTpmUint32(tpm_nv_read_cmd.length, length); |
| |
| SendReceive(tpm_nv_read_cmd.buffer, response, sizeof(response)); |
| result = TpmReturnCode(response); |
| if (result == TPM_SUCCESS && length > 0) { |
| uint8_t* nv_read_cursor = response + kTpmResponseHeaderLength; |
| FromTpmUint32(nv_read_cursor, &result_length); |
| nv_read_cursor += sizeof(uint32_t); |
| memcpy(data, nv_read_cursor, result_length); |
| } |
| |
| return result; |
| } |
| |
| void TlclWriteLock(uint32_t index) { |
| if (TlclWrite(index, NULL, 0) != TPM_SUCCESS) { |
| error("failed to write lock space 0x%x\n", index); |
| } |
| } |
| |
| void TlclReadLock(uint32_t index) { |
| if (TlclRead(index, NULL, 0) != TPM_SUCCESS) { |
| error("failed to read lock space 0x%x\n", index); |
| } |
| } |
| |
| void TlclAssertPhysicalPresence(void) { |
| Send(tpm_physicalpresence_cmd.buffer); |
| } |
| |
| void TlclSetNvLocked(void) { |
| TlclDefineSpace(TPM_NV_INDEX_LOCK, 0, 0); |
| } |
| |
| int TlclIsOwned(void) { |
| uint8_t response[TPM_LARGE_ENOUGH_COMMAND_SIZE + TPM_PUBEK_SIZE]; |
| uint32_t result; |
| SendReceive(tpm_readpubek_cmd.buffer, response, sizeof(response)); |
| result = TpmReturnCode(response); |
| return (result != TPM_SUCCESS); |
| } |