blob: f532a2fbd827f01f09cebe885fe545e218493d1e [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
197/**
198 * Finalize the TXT device.
199 *
200 * - Lock TXT register.
201 * - Protect TSEG using DMA protected regions.
202 * - Setup TXT regions.
203 * - Place SINIT ACM in TXT_SINIT memory segment.
204 * - Fill TXT BIOSDATA region.
205 */
206static void lockdown_intel_txt(void *unused)
207{
208 const uint64_t status = read64((void *)TXT_SPAD);
Angel Pons11334722020-10-05 16:34:03 +0200209
210 uintptr_t tseg_base;
211 size_t tseg_size;
212
213 smm_region(&tseg_base, &tseg_size);
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +0100214
215 if (status & ACMSTS_TXT_DISABLED)
216 return;
217
218 printk(BIOS_INFO, "TEE-TXT: Locking TEE...\n");
219
220 /* Lock TXT config, unlocks TXT_HEAP_BASE */
221 if (intel_txt_run_bios_acm(ACMINPUT_LOCK_CONFIG) < 0) {
222 printk(BIOS_ERR, "TEE-TXT: Failed to lock registers.\n");
223 printk(BIOS_ERR, "TEE-TXT: SINIT won't be supported.\n");
224 return;
225 }
226
227 /*
228 * Document Number: 558294
229 * Chapter 5.5.6.1 DMA Protection Memory Region
230 */
231
232 const u8 dpr_capable = !!(read64((void *)TXT_CAPABILITIES) &
233 TXT_CAPABILITIES_DPR);
234 printk(BIOS_INFO, "TEE-TXT: DPR capable %x\n", dpr_capable);
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +0100235
Angel Pons463e44b2020-10-05 13:58:16 +0200236 if (dpr_capable) {
Angel Ponsffbb4b22020-10-15 23:25:58 +0200237 /* Verify the DPR settings on the MCH and mirror them to TXT public space */
238 union dpr_register dpr = txt_get_chipset_dpr();
239
240 printk(BIOS_DEBUG, "TEE-TXT: MCH DPR 0x%08x\n", dpr.raw);
241
242 printk(BIOS_DEBUG, "TEE-TXT: MCH DPR base @ 0x%08x size %u MiB\n",
243 (dpr.top - dpr.size) * MiB, dpr.size);
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +0100244
245 // DPR TODO: implement SA_ENABLE_DPR in the intelblocks
246
Angel Ponsffbb4b22020-10-15 23:25:58 +0200247 if (!dpr.lock) {
248 printk(BIOS_ERR, "TEE-TXT: MCH DPR not locked.\n");
249 return;
250 }
251
252 if (!dpr.epm || !dpr.prs) {
253 printk(BIOS_ERR, "TEE-TXT: MCH DPR protection not active.\n");
254 return;
255 }
256
257 if (dpr.size < 3) {
258 printk(BIOS_ERR, "TEE-TXT: MCH DPR configured size is too small.\n");
259 return;
260 }
261
262 if (dpr.top * MiB != tseg_base) {
263 printk(BIOS_ERR, "TEE-TXT: MCH DPR top does not equal TSEG base.\n");
264 return;
265 }
266
267 /* Clear reserved bits */
268 dpr.prs = 0;
269 dpr.epm = 0;
270
271 write64((void *)TXT_DPR, dpr.raw);
272
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +0100273 printk(BIOS_INFO, "TEE-TXT: TXT.DPR 0x%08x\n",
274 read32((void *)TXT_DPR));
275 }
276
277 /*
278 * Document Number: 558294
279 * Chapter 5.5.6.3 Intel TXT Heap Memory Region
280 */
281 write64((void *)TXT_HEAP_SIZE, 0xE0000);
282 write64((void *)TXT_HEAP_BASE,
Angel Pons11334722020-10-05 16:34:03 +0200283 ALIGN_DOWN(tseg_base - read64((void *)TXT_HEAP_SIZE), 4096));
Philipp Deppenwiese5f9f7762018-11-20 14:22:15 +0100284
285 /*
286 * Document Number: 558294
287 * Chapter 5.5.6.2 SINIT Memory Region
288 */
289 write64((void *)TXT_SINIT_SIZE, 0x20000);
290 write64((void *)TXT_SINIT_BASE,
291 ALIGN_DOWN(read64((void *)TXT_HEAP_BASE) -
292 read64((void *)TXT_SINIT_SIZE), 4096));
293
294 /*
295 * BIOS Data Format
296 * Chapter C.2
297 * Intel TXT Software Development Guide (Document: 315168-015)
298 */
299 struct {
300 struct txt_biosdataregion bdr;
301 struct txt_heap_acm_element heap_acm;
302 struct txt_extended_data_element_header end;
303 } __packed data = {0};
304
305 /* TPM2.0 requires version 6 of BDT */
306 if (CONFIG(TPM2))
307 data.bdr.version = 6;
308 else
309 data.bdr.version = 5;
310
311 data.bdr.no_logical_procs = dev_count_cpu();
312
313 void *sinit_base = (void *)(uintptr_t)read64((void *)TXT_SINIT_BASE);
314 data.bdr.bios_sinit_size = cbfs_boot_load_file(CONFIG_INTEL_TXT_CBFS_SINIT_ACM,
315 sinit_base,
316 read64((void *)TXT_SINIT_SIZE),
317 CBFS_TYPE_RAW);
318
319 if (data.bdr.bios_sinit_size) {
320 printk(BIOS_INFO, "TEE-TXT: Placing SINIT ACM in memory.\n");
321 if (CONFIG(INTEL_TXT_LOGGING))
322 txt_dump_acm_info(sinit_base);
323 } else {
324 printk(BIOS_ERR, "TEE-TXT: Couldn't locate SINIT ACM in CBFS.\n");
325 /* Clear memory */
326 memset(sinit_base, 0, read64((void *)TXT_SINIT_SIZE));
327 }
328
329 struct cbfsf file;
330 /* The following have been removed from BIOS Data Table in version 6 */
331 if (!cbfs_boot_locate(&file, CONFIG_INTEL_TXT_CBFS_BIOS_POLICY, NULL)) {
332 struct region_device policy;
333
334 cbfs_file_data(&policy, &file);
335 void *policy_data = rdev_mmap_full(&policy);
336 size_t policy_len = region_device_sz(&policy);
337
338 if (policy_data && policy_len) {
339 /* Point to FIT Type 9 entry in flash */
340 data.bdr.lcp_pd_base = (uintptr_t)policy_data;
341 data.bdr.lcp_pd_size = (uint64_t)policy_len;
342 rdev_munmap(&policy, policy_data);
343 } else {
344 printk(BIOS_ERR, "TEE-TXT: Couldn't map LCP PD Policy from CBFS.\n");
345 }
346 } else {
347 printk(BIOS_ERR, "TEE-TXT: Couldn't locate LCP PD Policy in CBFS.\n");
348 }
349
350 data.bdr.support_acpi_ppi = 0;
351 data.bdr.platform_type = 0;
352
353 /* Extended elements - ACM addresses */
354 data.heap_acm.header.type = HEAP_EXTDATA_TYPE_ACM;
355 data.heap_acm.header.size = sizeof(data.heap_acm);
356 if (data.bdr.bios_sinit_size) {
357 data.heap_acm.num_acms = 2;
358 data.heap_acm.acm_addrs[1] = (uintptr_t)sinit_base;
359 } else {
360 data.heap_acm.num_acms = 1;
361 }
362 data.heap_acm.acm_addrs[0] =
363 (uintptr_t)cbfs_boot_map_with_leak(CONFIG_INTEL_TXT_CBFS_BIOS_ACM,
364 CBFS_TYPE_RAW,
365 NULL);
366 /* Extended elements - End marker */
367 data.end.type = HEAP_EXTDATA_TYPE_END;
368 data.end.size = sizeof(data.end);
369
370 /* Fill TXT.HEAP.BASE with 4 subregions */
371 u8 *heap_struct = (void *)((uintptr_t)read64((void *)TXT_HEAP_BASE));
372
373 /* BiosData */
374 push_sinit_heap(&heap_struct, &data, sizeof(data));
375
376 /* OsMLEData */
377 /* FIXME: Does firmware need to write this? */
378 push_sinit_heap(&heap_struct, NULL, 0);
379
380 /* OsSinitData */
381 /* FIXME: Does firmware need to write this? */
382 push_sinit_heap(&heap_struct, NULL, 0);
383
384 /* SinitMLEData */
385 /* FIXME: Does firmware need to write this? */
386 push_sinit_heap(&heap_struct, NULL, 0);
387
388 /*
389 * FIXME: Server-TXT capable platforms need to install an STM in SMM and set up MSEG.
390 */
391
392 /**
393 * Chapter 5.10.1 SMM in the Intel TXT for Servers Environment
394 * Disable MSEG.
395 */
396 write64((void *)TXT_MSEG_SIZE, 0);
397 write64((void *)TXT_MSEG_BASE, 0);
398
399 if (CONFIG(INTEL_TXT_LOGGING))
400 txt_dump_regions();
401}
402
403BOOT_STATE_INIT_ENTRY(BS_POST_DEVICE, BS_ON_EXIT, lockdown_intel_txt, NULL);