Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/drivers/firmware/efi/libstub/tpm.c
26483 views
1
// SPDX-License-Identifier: GPL-2.0
2
/*
3
* TPM handling.
4
*
5
* Copyright (C) 2016 CoreOS, Inc
6
* Copyright (C) 2017 Google, Inc.
7
* Matthew Garrett <[email protected]>
8
* Thiebaud Weksteen <[email protected]>
9
*/
10
#include <linux/efi.h>
11
#include <linux/tpm_eventlog.h>
12
#include <asm/efi.h>
13
14
#include "efistub.h"
15
16
#ifdef CONFIG_RESET_ATTACK_MITIGATION
17
static const efi_char16_t efi_MemoryOverWriteRequest_name[] =
18
L"MemoryOverwriteRequestControl";
19
20
#define MEMORY_ONLY_RESET_CONTROL_GUID \
21
EFI_GUID(0xe20939be, 0x32d4, 0x41be, 0xa1, 0x50, 0x89, 0x7f, 0x85, 0xd4, 0x98, 0x29)
22
23
/*
24
* Enable reboot attack mitigation. This requests that the firmware clear the
25
* RAM on next reboot before proceeding with boot, ensuring that any secrets
26
* are cleared. If userland has ensured that all secrets have been removed
27
* from RAM before reboot it can simply reset this variable.
28
*/
29
void efi_enable_reset_attack_mitigation(void)
30
{
31
u8 val = 1;
32
efi_guid_t var_guid = MEMORY_ONLY_RESET_CONTROL_GUID;
33
efi_status_t status;
34
unsigned long datasize = 0;
35
36
status = get_efi_var(efi_MemoryOverWriteRequest_name, &var_guid,
37
NULL, &datasize, NULL);
38
39
if (status == EFI_NOT_FOUND)
40
return;
41
42
set_efi_var(efi_MemoryOverWriteRequest_name, &var_guid,
43
EFI_VARIABLE_NON_VOLATILE |
44
EFI_VARIABLE_BOOTSERVICE_ACCESS |
45
EFI_VARIABLE_RUNTIME_ACCESS, sizeof(val), &val);
46
}
47
48
#endif
49
50
static void efi_retrieve_tcg2_eventlog(int version, efi_physical_addr_t log_location,
51
efi_physical_addr_t log_last_entry,
52
efi_bool_t truncated,
53
struct efi_tcg2_final_events_table *final_events_table)
54
{
55
efi_guid_t linux_eventlog_guid = LINUX_EFI_TPM_EVENT_LOG_GUID;
56
efi_status_t status;
57
struct linux_efi_tpm_eventlog *log_tbl = NULL;
58
unsigned long first_entry_addr, last_entry_addr;
59
size_t log_size, last_entry_size;
60
u32 final_events_size = 0;
61
62
first_entry_addr = (unsigned long) log_location;
63
64
/*
65
* We populate the EFI table even if the logs are empty.
66
*/
67
if (!log_last_entry) {
68
log_size = 0;
69
} else {
70
last_entry_addr = (unsigned long) log_last_entry;
71
/*
72
* get_event_log only returns the address of the last entry.
73
* We need to calculate its size to deduce the full size of
74
* the logs.
75
*
76
* CC Event log also uses TCG2 format, handle it same as TPM2.
77
*/
78
if (version > EFI_TCG2_EVENT_LOG_FORMAT_TCG_1_2) {
79
/*
80
* The TCG2 log format has variable length entries,
81
* and the information to decode the hash algorithms
82
* back into a size is contained in the first entry -
83
* pass a pointer to the final entry (to calculate its
84
* size) and the first entry (so we know how long each
85
* digest is)
86
*/
87
last_entry_size =
88
__calc_tpm2_event_size((void *)last_entry_addr,
89
(void *)(long)log_location,
90
false);
91
} else {
92
last_entry_size = sizeof(struct tcpa_event) +
93
((struct tcpa_event *) last_entry_addr)->event_size;
94
}
95
log_size = log_last_entry - log_location + last_entry_size;
96
}
97
98
/* Allocate space for the logs and copy them. */
99
status = efi_bs_call(allocate_pool, EFI_ACPI_RECLAIM_MEMORY,
100
sizeof(*log_tbl) + log_size, (void **)&log_tbl);
101
102
if (status != EFI_SUCCESS) {
103
efi_err("Unable to allocate memory for event log\n");
104
return;
105
}
106
107
/*
108
* Figure out whether any events have already been logged to the
109
* final events structure, and if so how much space they take up
110
*/
111
if (final_events_table && final_events_table->nr_events) {
112
struct tcg_pcr_event2_head *header;
113
u32 offset;
114
void *data;
115
u32 event_size;
116
int i = final_events_table->nr_events;
117
118
data = (void *)final_events_table;
119
offset = sizeof(final_events_table->version) +
120
sizeof(final_events_table->nr_events);
121
122
while (i > 0) {
123
header = data + offset + final_events_size;
124
event_size = __calc_tpm2_event_size(header,
125
(void *)(long)log_location,
126
false);
127
/* If calc fails this is a malformed log */
128
if (!event_size)
129
break;
130
final_events_size += event_size;
131
i--;
132
}
133
}
134
135
memset(log_tbl, 0, sizeof(*log_tbl) + log_size);
136
log_tbl->size = log_size;
137
log_tbl->final_events_preboot_size = final_events_size;
138
log_tbl->version = version;
139
memcpy(log_tbl->log, (void *) first_entry_addr, log_size);
140
141
status = efi_bs_call(install_configuration_table,
142
&linux_eventlog_guid, log_tbl);
143
if (status != EFI_SUCCESS)
144
goto err_free;
145
return;
146
147
err_free:
148
efi_bs_call(free_pool, log_tbl);
149
}
150
151
void efi_retrieve_eventlog(void)
152
{
153
struct efi_tcg2_final_events_table *final_events_table = NULL;
154
efi_physical_addr_t log_location = 0, log_last_entry = 0;
155
efi_guid_t tpm2_guid = EFI_TCG2_PROTOCOL_GUID;
156
int version = EFI_TCG2_EVENT_LOG_FORMAT_TCG_2;
157
efi_tcg2_protocol_t *tpm2 = NULL;
158
efi_bool_t truncated;
159
efi_status_t status;
160
161
status = efi_bs_call(locate_protocol, &tpm2_guid, NULL, (void **)&tpm2);
162
if (status == EFI_SUCCESS) {
163
status = efi_call_proto(tpm2, get_event_log, version, &log_location,
164
&log_last_entry, &truncated);
165
166
if (status != EFI_SUCCESS || !log_location) {
167
version = EFI_TCG2_EVENT_LOG_FORMAT_TCG_1_2;
168
status = efi_call_proto(tpm2, get_event_log, version,
169
&log_location, &log_last_entry,
170
&truncated);
171
} else {
172
final_events_table =
173
get_efi_config_table(EFI_TCG2_FINAL_EVENTS_TABLE_GUID);
174
}
175
} else {
176
efi_guid_t cc_guid = EFI_CC_MEASUREMENT_PROTOCOL_GUID;
177
efi_cc_protocol_t *cc = NULL;
178
179
status = efi_bs_call(locate_protocol, &cc_guid, NULL, (void **)&cc);
180
if (status != EFI_SUCCESS)
181
return;
182
183
version = EFI_CC_EVENT_LOG_FORMAT_TCG_2;
184
status = efi_call_proto(cc, get_event_log, version, &log_location,
185
&log_last_entry, &truncated);
186
187
final_events_table =
188
get_efi_config_table(EFI_CC_FINAL_EVENTS_TABLE_GUID);
189
}
190
191
if (status != EFI_SUCCESS || !log_location)
192
return;
193
194
efi_retrieve_tcg2_eventlog(version, log_location, log_last_entry,
195
truncated, final_events_table);
196
}
197
198