1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
|
/*
* acminfo.c: Linux app that will display header information for a TXT
* Authenticated Code Module (ACM) and match it with the current
* system
*
* Copyright (c) 2006-2011, Intel Corporation
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of the Intel Corporation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <sys/user.h>
#include <fcntl.h>
typedef uint8_t mtrr_state_t;
typedef uint8_t multiboot_info_t;
#define printk printf
#include "../include/config.h"
#include "../include/uuid.h"
#include "../include/mle.h"
#include "../include/hash.h"
#include "../tboot/include/compiler.h"
#include "../tboot/include/processor.h"
#include "../tboot/include/misc.h"
#include "../tboot/include/io.h"
#include "../tboot/include/txt/acmod.h"
#include "../tboot/include/txt/config_regs.h"
#include "../tboot/include/txt/heap.h"
/* override of fn. that will be called by verify_acmod() */
typedef struct {
uint32_t acm_max_size;
} getsec_parameters_t;
static bool get_parameters(getsec_parameters_t *params)
{
params->acm_max_size = 0x8000;
return true;
}
static unsigned long long rdmsr(unsigned int msr)
{
unsigned long long val = 0;
/* read MSRs in userspace by reading /dev/cpu/0/msr file */
int fd = open("/dev/cpu/0/msr", O_RDONLY);
if ( fd == -1 ) {
printf("Error: failed to open /dev/cpu/0/msr\n");
printf("Perhaps you should modprobe msr?\n");
exit(1);
}
/* lseek() to MSR # */
if ( lseek(fd, msr, SEEK_SET) == (off_t)-1 ) {
printf("Error: failed to find MSR 0x%x\n", msr);
exit(1);
} else {
if ( read(fd, &val, sizeof(val)) != sizeof(val) ) {
printf("Error: failed to read MSR 0x%x value\n", msr);
exit(1);
}
}
close(fd);
return val;
}
#define MSR_IA32_PLATFORM_ID 0x17
#define MSR_IA32_SE_SVN_STATUS 0x500
static void *pub_config_base;
#define read_pub_config_reg(reg) *(volatile uint64_t *)(pub_config_base + \
reg);
#define MIN_OS_SINIT_DATA_VER 4
#define IS_INCLUDED /* prevent acmod.c #include */
#include "../tboot/txt/acmod.c"
static void *load_acm(const char *file_name, size_t *size)
{
int fd;
struct stat sb;
void *addr;
fd = open(file_name, O_RDONLY);
if ( fd == -1 ) {
printf("Error: failed to open file %s\n", file_name);
return NULL;
}
if ( fstat(fd, &sb) == -1 ) {
printf("Error: failed to get file length\n");
close(fd);
return NULL;
}
addr = mmap(NULL, sb.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
if ( addr == NULL ) {
printf("Error: failed to map file %s of size %lu\n", file_name,
sb.st_size);
close(fd);
return NULL;
}
if ( size != NULL )
*size = sb.st_size;
close(fd);
return addr;
}
void print_hex(const char* prefix, const void *start, size_t len)
{
const void *end = start + len;
while ( start < end ) {
printf("%s", prefix);
for ( int i = 0; i < 16; i++ ) {
if ( start < end )
printf("%02x ", *(uint8_t *)start);
start++;
}
printf("\n");
}
}
static bool display_acm(void *acm_addr, size_t size, const char *file_name)
{
if ( !is_acmod(acm_addr, size, NULL, false) )
return false;
acm_hdr_t *hdr = (acm_hdr_t *)acm_addr;
print_acm_hdr(hdr, file_name);
/* display signature info */
printf("signature information:\n");
printf("\t key size*4: 0x%x (%u)\n", hdr->key_size, hdr->key_size);
printf("\t RSA public key:\n");
print_hex("\t ", hdr->rsa2048_pubkey, hdr->key_size*4);
printf("\t RSA public key exponent: 0x%08x\n", hdr->pub_exp);
printf("\t PKCS #1.5 RSA signature:\n");
print_hex("\t ", hdr->rsa2048_sig, 256);
return true;
}
static bool is_txt_supported(void)
{
return true;
}
static bool match_platform(acm_hdr_t *hdr)
{
if ( !is_txt_supported() ) {
printf("Intel(r) TXT is not supported\n");
return false;
}
int fd_mem = open("/dev/mem", O_RDONLY);
if ( fd_mem == -1 ) {
printf("ERROR: cannot open /dev/mem\n");
return false;
}
pub_config_base = mmap(NULL, TXT_CONFIG_REGS_SIZE, PROT_READ, MAP_PRIVATE,
fd_mem, TXT_PUB_CONFIG_REGS_BASE);
if ( pub_config_base == MAP_FAILED ) {
printf("ERROR: cannot map config regs by mmap()\n");
close(fd_mem);
return false;
}
uint64_t txt_heap_size = *(volatile uint64_t *)(pub_config_base + TXTCR_HEAP_SIZE);
if (txt_heap_size == 0) {
printf("ERROR: No TXT heap is available\n");
munmap(pub_config_base, TXT_CONFIG_REGS_SIZE);
close(fd_mem);
return false;
}
uint64_t txt_heap_base = *(volatile uint64_t *)(pub_config_base + TXTCR_HEAP_BASE);
txt_heap_t *txt_heap = mmap(NULL, txt_heap_size, PROT_READ, MAP_PRIVATE,
fd_mem, txt_heap_base);
if ( txt_heap == MAP_FAILED ) {
printf("ERROR: cannot map TXT heap by mmap()\n");
munmap(pub_config_base, TXT_CONFIG_REGS_SIZE);
close(fd_mem);
return false;
}
if ( does_acmod_match_platform(hdr, txt_heap) )
printf("ACM matches platform\n");
else
printf("ACM does not match platform\n");
munmap(txt_heap, txt_heap_size);
munmap(pub_config_base, TXT_CONFIG_REGS_SIZE);
close(fd_mem);
return true;
}
int main(int argc, char *argv[])
{
void *acm_mem = NULL;
char *acm_file;
size_t size;
bool valid;
if ( argc != 2 ) {
printf("usage: %s acm_file_name\n", argv[0]);
return 1;
}
acm_file = argv[1];
/* load ACM file into memory */
acm_mem = load_acm(acm_file, &size);
if ( acm_mem == NULL ) {
printf("Error: failed to read ACM %s\n", acm_file);
return 1;
}
/* display the ACM info */
valid = display_acm(acm_mem, size, acm_file);
if ( valid )
match_platform((acm_hdr_t *)acm_mem);
/* this allows us to use dump-acm return code to indicate valid ACM */
return valid ? 0 : 1;
}
/*
* Local variables:
* mode: C
* c-basic-offset: 4
* tab-width: 4
* indent-tabs-mode: nil
* End:
*/
|