blob: 2d56d1fd61845b9f6e51b96d8817097f2b444d40 [file] [log] [blame]
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +01001/* SPDX-License-Identifier: GPL-2.0-only */
2
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +01003#include <acpi/acpi.h>
Angel Pons52082be2020-10-05 12:34:29 +02004#include <arch/mmio.h>
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +01005#include <bootmem.h>
Angel Pons52082be2020-10-05 12:34:29 +02006#include <bootstate.h>
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +01007#include <cbfs.h>
Angel Pons52082be2020-10-05 12:34:29 +02008#include <console/console.h>
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +01009#include <cpu/intel/common/common.h>
10#include <cpu/x86/msr.h>
Angel Pons11334722020-10-05 16:34:03 +020011#include <cpu/x86/smm.h>
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +010012#include <device/pci_ops.h>
Angel Pons52082be2020-10-05 12:34:29 +020013#include <types.h>
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +010014
15#include "txt.h"
Angel Ponsffbb4b22020-10-15 23:25:58 +020016#include "txt_platform.h"
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +010017#include "txt_register.h"
18#include "txt_getsec.h"
19
20/* FIXME: Seems to work only on some platforms */
21static void log_ibb_measurements(void)
22{
23 const uint64_t mseg_size = read64((void *)TXT_MSEG_SIZE);
24 uint64_t mseg_base = read64((void *)TXT_MSEG_BASE);
25
26 if (!mseg_size || !mseg_base || mseg_size <= mseg_base)
27 return;
28 /*
29 * MSEG SIZE and MSEG BASE might contain random values.
30 * Assume below 4GiB and 8byte aligned.
31 */
32 if (mseg_base & ~0xfffffff8ULL || mseg_size & ~0xfffffff8ULL)
33 return;
34
35 printk(BIOS_INFO, "TEE-TXT: IBB Hash 0x");
36 for (; mseg_base < mseg_size; mseg_base++)
37 printk(BIOS_INFO, "%02X", read8((void *)(uintptr_t)mseg_base));
38
39 printk(BIOS_INFO, "\n");
40}
41
42void bootmem_platform_add_ranges(void)
43{
44 uint64_t status = read64((void *)TXT_SPAD);
45
46 if (status & ACMSTS_TXT_DISABLED)
47 return;
48
49 /* Chapter 5.5.5 Intel TXT reserved memory */
50 bootmem_add_range(TXT_RESERVED_SPACE,
51 TXT_RESERVED_SPACE_SIZE,
52 BM_MEM_RESERVED);
53
54 /* Intel TPM decode memory */
55 bootmem_add_range(TXT_TPM_DECODE_AREA,
56 TXT_RESERVED_SPACE - TXT_TPM_DECODE_AREA,
57 BM_MEM_RESERVED);
58
59 /* Intel TXT public space memory */
60 bootmem_add_range(TXT_PUBLIC_SPACE,
61 TXT_TPM_DECODE_AREA - TXT_PUBLIC_SPACE,
62 BM_MEM_RESERVED);
63
64 /* Intel TXT private space memory */
65 bootmem_add_range(TXT_PRIVATE_SPACE,
66 TXT_PUBLIC_SPACE - TXT_PRIVATE_SPACE,
67 BM_MEM_RESERVED);
68
Angel Pons463e44b2020-10-05 13:58:16 +020069 const union dpr_register dpr = {
70 .raw = read32((void *)TXT_DPR),
71 };
72
73 const uint32_t dpr_base = dpr.top - dpr.size * MiB;
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +010074
75 /* Chapter 5.5.6 Intel TXT Device Memory */
Angel Pons463e44b2020-10-05 13:58:16 +020076 bootmem_add_range(dpr_base, dpr.size * MiB, BM_MEM_RESERVED);
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +010077}
78
79static bool get_wake_error_status(void)
80{
81 const uint8_t error = read8((void *)TXT_ESTS);
82 return !!(error & TXT_ESTS_WAKE_ERROR_STS);
83}
84
85static void check_secrets_txt(void *unused)
86{
87 uint64_t status = read64((void *)TXT_SPAD);
88
89 if (status & ACMSTS_TXT_DISABLED)
90 return;
91
92 /* Check for fatal ACM error and TXT reset */
93 if (get_wake_error_status()) {
94 /*
95 * Check if secrets bit needs to be reset. Only platforms that support
96 * CONFIG(PLATFORM_HAS_DRAM_CLEAR) will be able to run this code.
97 * Assume all memory really was cleared.
98 *
99 * TXT will issue a platform reset to come up sober.
100 */
101 if (intel_txt_memory_has_secrets()) {
102 printk(BIOS_INFO, "TEE-TXT: Wiping TEE...\n");
103 intel_txt_run_bios_acm(ACMINPUT_CLEAR_SECRETS);
104
105 /* Should never reach this point ... */
106 intel_txt_log_acm_error(read32((void *)TXT_BIOSACM_ERRORCODE));
107 die("Waiting for platform reset...\n");
108 }
109 }
110}
111
112BOOT_STATE_INIT_ENTRY(BS_POST_DEVICE, BS_ON_ENTRY, check_secrets_txt, NULL);
113
114/**
115 * Log TXT startup errors, check all bits for TXT, run BIOSACM using
116 * GETSEC[ENTERACCS].
117 *
118 * If a "TXT reset" is detected or "memory had secrets" is set, then do nothing as
119 * 1. Running ACMs will cause a TXT-RESET
120 * 2. Memory will be scrubbed in BS_DEV_INIT
121 * 3. TXT-RESET will be issued by code above later
122 *
123 */
124static void init_intel_txt(void *unused)
125{
126 const uint64_t status = read64((void *)TXT_SPAD);
127
128 if (status & ACMSTS_TXT_DISABLED)
129 return;
130
131 printk(BIOS_INFO, "TEE-TXT: Initializing TEE...\n");
132
133 intel_txt_log_spad();
134
135 if (CONFIG(INTEL_TXT_LOGGING)) {
136 intel_txt_log_bios_acm_error();
137 txt_dump_chipset_info();
138 }
139
140 printk(BIOS_INFO, "TEE-TXT: Validate TEE...\n");
141
142 if (intel_txt_prepare_txt_env()) {
143 printk(BIOS_ERR, "TEE-TXT: Failed to prepare TXT environment\n");
144 return;
145 }
146
147 /* Check for fatal ACM error and TXT reset */
148 if (get_wake_error_status()) {
149 /* Can't run ACMs with TXT_ESTS_WAKE_ERROR_STS set */
150 printk(BIOS_ERR, "TEE-TXT: Fatal BIOS ACM error reported\n");
151 return;
152 }
153
154 printk(BIOS_INFO, "TEE-TXT: Testing BIOS ACM calling code...\n");
155
156 /*
157 * Test BIOS ACM code.
158 * ACM should do nothing on reserved functions, and return an error code
159 * in TXT_BIOSACM_ERRORCODE. Tests showed that this is not true.
160 * Use special function "NOP" that does 'nothing'.
161 */
162 if (intel_txt_run_bios_acm(ACMINPUT_NOP) < 0) {
163 printk(BIOS_ERR, "TEE-TXT: Error calling BIOS ACM with NOP function.\n");
164 return;
165 }
166
167 if (status & (ACMSTS_BIOS_TRUSTED | ACMSTS_IBB_MEASURED)) {
168 log_ibb_measurements();
169
170 int s3resume = acpi_is_wakeup_s3();
171 if (!s3resume) {
172 printk(BIOS_INFO, "TEE-TXT: Scheck...\n");
173 if (intel_txt_run_bios_acm(ACMINPUT_SCHECK) < 0) {
174 printk(BIOS_ERR, "TEE-TXT: Error calling BIOS ACM.\n");
175 return;
176 }
177 }
178 }
179}
180
181BOOT_STATE_INIT_ENTRY(BS_DEV_INIT, BS_ON_EXIT, init_intel_txt, NULL);
182
183static void push_sinit_heap(u8 **heap_ptr, void *data, size_t data_length)
184{
185 /* Push size */
186 const uint64_t tmp = data_length + 8;
187 memcpy(*heap_ptr, &tmp, 8);
188 *heap_ptr += 8;
189
190 if (data_length) {
191 /* Push data */
192 memcpy(*heap_ptr, data, data_length);
193 *heap_ptr += data_length;
194 }
195}
196
Angel Pons8f7e2a32020-10-16 01:07:18 +0200197static void txt_initialize_heap(void)
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +0100198{
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +0100199 /*
200 * BIOS Data Format
201 * Chapter C.2
202 * Intel TXT Software Development Guide (Document: 315168-015)
203 */
204 struct {
205 struct txt_biosdataregion bdr;
Angel Pons08de7d62020-10-16 01:01:14 +0200206 struct txt_bios_spec_ver_element spec;
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +0100207 struct txt_heap_acm_element heap_acm;
208 struct txt_extended_data_element_header end;
209 } __packed data = {0};
210
211 /* TPM2.0 requires version 6 of BDT */
212 if (CONFIG(TPM2))
213 data.bdr.version = 6;
214 else
215 data.bdr.version = 5;
216
217 data.bdr.no_logical_procs = dev_count_cpu();
218
219 void *sinit_base = (void *)(uintptr_t)read64((void *)TXT_SINIT_BASE);
220 data.bdr.bios_sinit_size = cbfs_boot_load_file(CONFIG_INTEL_TXT_CBFS_SINIT_ACM,
221 sinit_base,
222 read64((void *)TXT_SINIT_SIZE),
223 CBFS_TYPE_RAW);
224
225 if (data.bdr.bios_sinit_size) {
226 printk(BIOS_INFO, "TEE-TXT: Placing SINIT ACM in memory.\n");
227 if (CONFIG(INTEL_TXT_LOGGING))
228 txt_dump_acm_info(sinit_base);
229 } else {
230 printk(BIOS_ERR, "TEE-TXT: Couldn't locate SINIT ACM in CBFS.\n");
231 /* Clear memory */
232 memset(sinit_base, 0, read64((void *)TXT_SINIT_SIZE));
233 }
234
235 struct cbfsf file;
236 /* The following have been removed from BIOS Data Table in version 6 */
237 if (!cbfs_boot_locate(&file, CONFIG_INTEL_TXT_CBFS_BIOS_POLICY, NULL)) {
238 struct region_device policy;
239
240 cbfs_file_data(&policy, &file);
241 void *policy_data = rdev_mmap_full(&policy);
242 size_t policy_len = region_device_sz(&policy);
243
244 if (policy_data && policy_len) {
245 /* Point to FIT Type 9 entry in flash */
246 data.bdr.lcp_pd_base = (uintptr_t)policy_data;
247 data.bdr.lcp_pd_size = (uint64_t)policy_len;
248 rdev_munmap(&policy, policy_data);
249 } else {
250 printk(BIOS_ERR, "TEE-TXT: Couldn't map LCP PD Policy from CBFS.\n");
251 }
252 } else {
253 printk(BIOS_ERR, "TEE-TXT: Couldn't locate LCP PD Policy in CBFS.\n");
254 }
255
256 data.bdr.support_acpi_ppi = 0;
257 data.bdr.platform_type = 0;
258
Angel Pons08de7d62020-10-16 01:01:14 +0200259 /* Fill in the version of the used TXT BIOS Specification */
260 data.spec.header.type = HEAP_EXTDATA_TYPE_BIOS_SPEC_VER;
261 data.spec.header.size = sizeof(data.spec);
262 data.spec.ver_major = 2;
263 data.spec.ver_minor = 1;
264 data.spec.ver_revision = 0;
265
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +0100266 /* Extended elements - ACM addresses */
267 data.heap_acm.header.type = HEAP_EXTDATA_TYPE_ACM;
268 data.heap_acm.header.size = sizeof(data.heap_acm);
269 if (data.bdr.bios_sinit_size) {
270 data.heap_acm.num_acms = 2;
271 data.heap_acm.acm_addrs[1] = (uintptr_t)sinit_base;
272 } else {
273 data.heap_acm.num_acms = 1;
274 }
275 data.heap_acm.acm_addrs[0] =
276 (uintptr_t)cbfs_boot_map_with_leak(CONFIG_INTEL_TXT_CBFS_BIOS_ACM,
277 CBFS_TYPE_RAW,
278 NULL);
279 /* Extended elements - End marker */
280 data.end.type = HEAP_EXTDATA_TYPE_END;
281 data.end.size = sizeof(data.end);
282
283 /* Fill TXT.HEAP.BASE with 4 subregions */
284 u8 *heap_struct = (void *)((uintptr_t)read64((void *)TXT_HEAP_BASE));
285
286 /* BiosData */
287 push_sinit_heap(&heap_struct, &data, sizeof(data));
288
289 /* OsMLEData */
290 /* FIXME: Does firmware need to write this? */
291 push_sinit_heap(&heap_struct, NULL, 0);
292
293 /* OsSinitData */
294 /* FIXME: Does firmware need to write this? */
295 push_sinit_heap(&heap_struct, NULL, 0);
296
297 /* SinitMLEData */
298 /* FIXME: Does firmware need to write this? */
299 push_sinit_heap(&heap_struct, NULL, 0);
Angel Pons8f7e2a32020-10-16 01:07:18 +0200300}
301
302/**
303 * Finalize the TXT device.
304 *
305 * - Lock TXT register.
306 * - Protect TSEG using DMA protected regions.
307 * - Setup TXT regions.
308 * - Place SINIT ACM in TXT_SINIT memory segment.
309 * - Fill TXT BIOSDATA region.
310 */
311static void lockdown_intel_txt(void *unused)
312{
313 const uint64_t status = read64((void *)TXT_SPAD);
314
315 uintptr_t tseg_base;
316 size_t tseg_size;
317
318 smm_region(&tseg_base, &tseg_size);
319
320 if (status & ACMSTS_TXT_DISABLED)
321 return;
322
323 printk(BIOS_INFO, "TEE-TXT: Locking TEE...\n");
324
325 /* Lock TXT config, unlocks TXT_HEAP_BASE */
326 if (intel_txt_run_bios_acm(ACMINPUT_LOCK_CONFIG) < 0) {
327 printk(BIOS_ERR, "TEE-TXT: Failed to lock registers.\n");
328 printk(BIOS_ERR, "TEE-TXT: SINIT won't be supported.\n");
329 return;
330 }
331
332 /*
333 * Document Number: 558294
334 * Chapter 5.5.6.1 DMA Protection Memory Region
335 */
336
337 const u8 dpr_capable = !!(read64((void *)TXT_CAPABILITIES) &
338 TXT_CAPABILITIES_DPR);
339 printk(BIOS_INFO, "TEE-TXT: DPR capable %x\n", dpr_capable);
340
341 if (dpr_capable) {
342 /* Verify the DPR settings on the MCH and mirror them to TXT public space */
343 union dpr_register dpr = txt_get_chipset_dpr();
344
345 printk(BIOS_DEBUG, "TEE-TXT: MCH DPR 0x%08x\n", dpr.raw);
346
347 printk(BIOS_DEBUG, "TEE-TXT: MCH DPR base @ 0x%08x size %u MiB\n",
348 (dpr.top - dpr.size) * MiB, dpr.size);
349
350 // DPR TODO: implement SA_ENABLE_DPR in the intelblocks
351
352 if (!dpr.lock) {
353 printk(BIOS_ERR, "TEE-TXT: MCH DPR not locked.\n");
354 return;
355 }
356
357 if (!dpr.epm || !dpr.prs) {
358 printk(BIOS_ERR, "TEE-TXT: MCH DPR protection not active.\n");
359 return;
360 }
361
362 if (dpr.size < CONFIG_INTEL_TXT_DPR_SIZE) {
363 printk(BIOS_ERR, "TEE-TXT: MCH DPR configured size is too small.\n");
364 return;
365 }
366
367 if (dpr.top * MiB != tseg_base) {
368 printk(BIOS_ERR, "TEE-TXT: MCH DPR top does not equal TSEG base.\n");
369 return;
370 }
371
372 /* Clear reserved bits */
373 dpr.prs = 0;
374 dpr.epm = 0;
375
376 write64((void *)TXT_DPR, dpr.raw);
377
378 printk(BIOS_INFO, "TEE-TXT: TXT.DPR 0x%08x\n",
379 read32((void *)TXT_DPR));
380 }
381
382 /*
383 * Document Number: 558294
384 * Chapter 5.5.6.3 Intel TXT Heap Memory Region
385 */
386 write64((void *)TXT_HEAP_SIZE, 0xE0000);
387 write64((void *)TXT_HEAP_BASE,
388 ALIGN_DOWN(tseg_base - read64((void *)TXT_HEAP_SIZE), 4096));
389
390 /*
391 * Document Number: 558294
392 * Chapter 5.5.6.2 SINIT Memory Region
393 */
394 write64((void *)TXT_SINIT_SIZE, 0x20000);
395 write64((void *)TXT_SINIT_BASE,
396 ALIGN_DOWN(read64((void *)TXT_HEAP_BASE) -
397 read64((void *)TXT_SINIT_SIZE), 4096));
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +0100398
399 /*
400 * FIXME: Server-TXT capable platforms need to install an STM in SMM and set up MSEG.
401 */
402
403 /**
404 * Chapter 5.10.1 SMM in the Intel TXT for Servers Environment
405 * Disable MSEG.
406 */
407 write64((void *)TXT_MSEG_SIZE, 0);
408 write64((void *)TXT_MSEG_BASE, 0);
409
Angel Pons8f7e2a32020-10-16 01:07:18 +0200410 txt_initialize_heap();
411
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +0100412 if (CONFIG(INTEL_TXT_LOGGING))
413 txt_dump_regions();
414}
415
416BOOT_STATE_INIT_ENTRY(BS_POST_DEVICE, BS_ON_EXIT, lockdown_intel_txt, NULL);