2 * Copyright (C) 2005 IBM Corporation
5 * Seiji Munetoh <munetoh@jp.ibm.com>
6 * Stefan Berger <stefanb@us.ibm.com>
7 * Reiner Sailer <sailer@watson.ibm.com>
8 * Kylene Hall <kjhall@us.ibm.com>
10 * Access to the eventlog extended by the TCG BIOS of PC platform
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
19 #include <linux/seq_file.h>
21 #include <linux/security.h>
22 #include <linux/module.h>
23 #include <acpi/acpi.h>
24 #include <acpi/actypes.h>
25 #include <acpi/actbl.h>
28 #define TCG_EVENT_NAME_LEN_MAX 255
29 #define MAX_TEXT_EVENT 1000 /* Max event string length */
30 #define ACPI_TCPA_SIG "TCPA" /* 0x41504354 /'TCPA' */
34 void *bios_event_log_end;
38 struct acpi_table_header hdr;
40 u32 log_max_len __attribute__ ((packed));
41 u32 log_start_addr __attribute__ ((packed));
47 u8 pcr_value[20]; /* SHA1 */
52 enum tcpa_event_types {
63 PLATFORM_CONFIG_FLAGS,
73 static const char* tcpa_event_type_strings[] = {
84 "Platform Config Flags",
94 enum tcpa_pc_event_ids {
103 OPTION_ROM_MICROCODE,
109 static const char* tcpa_pc_event_id_strings[] = {
119 "Option ROM microcode",
122 "S-CRTM POST Contents",
125 /* returns pointer to start of pos. entry of tcg log */
126 static void *tpm_bios_measurements_start(struct seq_file *m, loff_t *pos)
129 struct tpm_bios_log *log = m->private;
130 void *addr = log->bios_event_log;
131 void *limit = log->bios_event_log_end;
132 struct tcpa_event *event;
134 /* read over *pos measurements */
135 for (i = 0; i < *pos; i++) {
138 if ((addr + sizeof(struct tcpa_event)) < limit) {
139 if (event->event_type == 0 && event->event_size == 0)
141 addr += sizeof(struct tcpa_event) + event->event_size;
145 /* now check if current entry is valid */
146 if ((addr + sizeof(struct tcpa_event)) >= limit)
151 if ((event->event_type == 0 && event->event_size == 0) ||
152 ((addr + sizeof(struct tcpa_event) + event->event_size) >= limit))
158 static void *tpm_bios_measurements_next(struct seq_file *m, void *v,
161 struct tcpa_event *event = v;
162 struct tpm_bios_log *log = m->private;
163 void *limit = log->bios_event_log_end;
165 v += sizeof(struct tcpa_event) + event->event_size;
167 /* now check if current entry is valid */
168 if ((v + sizeof(struct tcpa_event)) >= limit)
173 if (event->event_type == 0 && event->event_size == 0)
176 if ((event->event_type == 0 && event->event_size == 0) ||
177 ((v + sizeof(struct tcpa_event) + event->event_size) >= limit))
184 static void tpm_bios_measurements_stop(struct seq_file *m, void *v)
188 static int get_event_name(char *dest, struct tcpa_event *event,
189 unsigned char * event_entry)
191 const char *name = "";
193 int i, n_len = 0, d_len = 0;
196 switch(event->event_type) {
204 case PLATFORM_CONFIG_FLAGS:
205 case TABLE_OF_DEVICES:
208 case IPL_PARTITION_DATA:
212 name = tcpa_event_type_strings[event->event_type];
213 n_len = strlen(name);
217 if (MAX_TEXT_EVENT > event->event_size) {
219 n_len = event->event_size;
223 event_id = be32_to_cpu(*((u32 *)event_entry));
225 /* ToDo Row data -> Base64 */
232 case OPTION_ROM_EXEC:
233 case OPTION_ROM_CONFIG:
234 case OPTION_ROM_MICROCODE:
236 case S_CRTM_CONTENTS:
238 name = tcpa_pc_event_id_strings[event_id];
239 n_len = strlen(name);
243 name = tcpa_pc_event_id_strings[event_id];
244 n_len = strlen(name);
245 for (i = 0; i < 20; i++)
246 d_len += sprintf(data, "%02x",
256 return snprintf(dest, MAX_TEXT_EVENT, "[%.*s%.*s]",
257 n_len, name, d_len, data);
261 static int tpm_binary_bios_measurements_show(struct seq_file *m, void *v)
268 struct tcpa_event *event = (struct tcpa_event *) v;
269 unsigned char *event_entry =
270 (unsigned char *) (v + sizeof(struct tcpa_event));
272 eventname = kmalloc(MAX_TEXT_EVENT, GFP_KERNEL);
274 printk(KERN_ERR "%s: ERROR - No Memory for event name\n ",
279 /* 1st: PCR used is in little-endian format (4 bytes) */
280 help = le32_to_cpu(event->pcr_index);
281 memcpy(data, &help, 4);
282 for (i = 0; i < 4; i++)
283 seq_putc(m, data[i]);
285 /* 2nd: SHA1 (20 bytes) */
286 for (i = 0; i < 20; i++)
287 seq_putc(m, event->pcr_value[i]);
289 /* 3rd: event type identifier (4 bytes) */
290 help = le32_to_cpu(event->event_type);
291 memcpy(data, &help, 4);
292 for (i = 0; i < 4; i++)
293 seq_putc(m, data[i]);
297 len += get_event_name(eventname, event, event_entry);
299 /* 4th: filename <= 255 + \'0' delimiter */
300 if (len > TCG_EVENT_NAME_LEN_MAX)
301 len = TCG_EVENT_NAME_LEN_MAX;
303 for (i = 0; i < len; i++)
304 seq_putc(m, eventname[i]);
312 static int tpm_bios_measurements_release(struct inode *inode,
315 struct seq_file *seq = file->private_data;
316 struct tpm_bios_log *log = seq->private;
319 kfree(log->bios_event_log);
323 return seq_release(inode, file);
326 static int tpm_ascii_bios_measurements_show(struct seq_file *m, void *v)
331 struct tcpa_event *event = v;
332 unsigned char *event_entry =
333 (unsigned char *) (v + sizeof(struct tcpa_event));
335 eventname = kmalloc(MAX_TEXT_EVENT, GFP_KERNEL);
337 printk(KERN_ERR "%s: ERROR - No Memory for event name\n ",
342 seq_printf(m, "%2d ", event->pcr_index);
345 for (i = 0; i < 20; i++)
346 seq_printf(m, "%02x", event->pcr_value[i]);
348 /* 3rd: event type identifier */
349 seq_printf(m, " %02x", event->event_type);
351 len += get_event_name(eventname, event, event_entry);
353 /* 4th: eventname <= max + \'0' delimiter */
354 seq_printf(m, " %s\n", eventname);
359 static struct seq_operations tpm_ascii_b_measurments_seqops = {
360 .start = tpm_bios_measurements_start,
361 .next = tpm_bios_measurements_next,
362 .stop = tpm_bios_measurements_stop,
363 .show = tpm_ascii_bios_measurements_show,
366 static struct seq_operations tpm_binary_b_measurments_seqops = {
367 .start = tpm_bios_measurements_start,
368 .next = tpm_bios_measurements_next,
369 .stop = tpm_bios_measurements_stop,
370 .show = tpm_binary_bios_measurements_show,
373 /* read binary bios log */
374 static int read_log(struct tpm_bios_log *log)
376 struct acpi_tcpa *buff;
378 struct acpi_table_header *virt;
380 if (log->bios_event_log != NULL) {
382 "%s: ERROR - Eventlog already initialized\n",
387 /* Find TCPA entry in RSDT (ACPI_LOGICAL_ADDRESSING) */
388 status = acpi_get_firmware_table(ACPI_TCPA_SIG, 1,
389 ACPI_LOGICAL_ADDRESSING,
390 (struct acpi_table_header **)
393 if (ACPI_FAILURE(status)) {
394 printk(KERN_ERR "%s: ERROR - Could not get TCPA table\n",
399 if (buff->log_max_len == 0) {
400 printk(KERN_ERR "%s: ERROR - TCPA log area empty\n", __func__);
404 /* malloc EventLog space */
405 log->bios_event_log = kmalloc(buff->log_max_len, GFP_KERNEL);
406 if (!log->bios_event_log) {
408 ("%s: ERROR - Not enough Memory for BIOS measurements\n",
413 log->bios_event_log_end = log->bios_event_log + buff->log_max_len;
415 acpi_os_map_memory(buff->log_start_addr, buff->log_max_len, (void *) &virt);
417 memcpy(log->bios_event_log, virt, buff->log_max_len);
419 acpi_os_unmap_memory(virt, buff->log_max_len);
423 static int tpm_ascii_bios_measurements_open(struct inode *inode,
427 struct tpm_bios_log *log;
428 struct seq_file *seq;
430 log = kzalloc(sizeof(struct tpm_bios_log), GFP_KERNEL);
434 if ((err = read_log(log)))
437 /* now register seq file */
438 err = seq_open(file, &tpm_ascii_b_measurments_seqops);
440 seq = file->private_data;
443 kfree(log->bios_event_log);
449 struct file_operations tpm_ascii_bios_measurements_ops = {
450 .open = tpm_ascii_bios_measurements_open,
453 .release = tpm_bios_measurements_release,
456 static int tpm_binary_bios_measurements_open(struct inode *inode,
460 struct tpm_bios_log *log;
461 struct seq_file *seq;
463 log = kzalloc(sizeof(struct tpm_bios_log), GFP_KERNEL);
467 if ((err = read_log(log)))
470 /* now register seq file */
471 err = seq_open(file, &tpm_binary_b_measurments_seqops);
473 seq = file->private_data;
476 kfree(log->bios_event_log);
482 struct file_operations tpm_binary_bios_measurements_ops = {
483 .open = tpm_binary_bios_measurements_open,
486 .release = tpm_bios_measurements_release,
489 static int is_bad(void *p)
493 if (IS_ERR(p) && (PTR_ERR(p) != -ENODEV))
498 struct dentry **tpm_bios_log_setup(char *name)
500 struct dentry **ret = NULL, *tpm_dir, *bin_file, *ascii_file;
502 tpm_dir = securityfs_create_dir(name, NULL);
507 securityfs_create_file("binary_bios_measurements",
508 S_IRUSR | S_IRGRP, tpm_dir, NULL,
509 &tpm_binary_bios_measurements_ops);
510 if (is_bad(bin_file))
514 securityfs_create_file("ascii_bios_measurements",
515 S_IRUSR | S_IRGRP, tpm_dir, NULL,
516 &tpm_ascii_bios_measurements_ops);
517 if (is_bad(ascii_file))
520 ret = kmalloc(3 * sizeof(struct dentry *), GFP_KERNEL);
531 securityfs_remove(ascii_file);
533 securityfs_remove(bin_file);
535 securityfs_remove(tpm_dir);
539 EXPORT_SYMBOL_GPL(tpm_bios_log_setup);
541 void tpm_bios_log_teardown(struct dentry **lst)
545 for (i = 0; i < 3; i++)
546 securityfs_remove(lst[i]);
548 EXPORT_SYMBOL_GPL(tpm_bios_log_teardown);
549 MODULE_LICENSE("GPL");