2 * Copyright 2016 The Chromium OS Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
6 * Some TPM constants and type definitions for standalone compilation for use
10 #include "rollback_index.h"
11 #include "tpm2_marshaling.h"
15 static struct tpm2_response *tpm_process_command(TPM_CC command,
18 /* Command/response buffer. */
19 static uint8_t cr_buffer[TPM_BUFFER_SIZE];
20 uint32_t out_size, in_size;
21 struct tpm2_response *response;
23 out_size = tpm_marshal_command(command, command_body,
24 cr_buffer, sizeof(cr_buffer));
26 VBDEBUG(("command %#x, cr size %d\n",
31 in_size = sizeof(cr_buffer);
32 if (VbExTpmSendReceive(cr_buffer, out_size,
33 cr_buffer, &in_size) != TPM_SUCCESS) {
34 VBDEBUG(("tpm transaction failed for %#x\n", command));
38 response = tpm_unmarshal_response(command, cr_buffer, in_size);
40 VBDEBUG(("%s: command %#x, return code %#x\n", __func__, command,
41 response ? response->hdr.tpm_code : -1));
46 static uint32_t tlcl_read_ph_disabled(void)
49 TPM_STCLEAR_FLAGS flags;
51 rv = TlclGetSTClearFlags(&flags);
52 if (rv != TPM_SUCCESS)
55 tpm_set_ph_disabled(!flags.phEnable);
60 uint32_t TlclLibInit(void)
65 if (rv != TPM_SUCCESS)
68 rv = tlcl_read_ph_disabled();
69 if (rv != TPM_SUCCESS) {
77 uint32_t TlclLibClose(void)
79 return VbExTpmClose();
82 uint32_t TlclSendReceive(const uint8_t *request, uint8_t *response,
85 uint32_t rv, resp_size;
87 resp_size = max_length;
88 rv = VbExTpmSendReceive(request, tpm_get_packet_size(request),
89 response, &resp_size);
91 return rv ? rv : tpm_get_packet_response_code(response);
94 int TlclPacketSize(const uint8_t *packet)
96 return tpm_get_packet_size(packet);
99 uint32_t TlclStartup(void)
101 VBDEBUG(("%s called, NOT YET IMPLEMENTED\n", __func__));
105 uint32_t TlclSaveState(void)
107 VBDEBUG(("%s called, NOT YET IMPLEMENTED\n", __func__));
111 uint32_t TlclResume(void)
113 VBDEBUG(("%s called, NOT YET IMPLEMENTED\n", __func__));
117 uint32_t TlclSelfTestFull(void)
119 VBDEBUG(("%s called, NOT YET IMPLEMENTED\n", __func__));
123 uint32_t TlclContinueSelfTest(void)
125 VBDEBUG(("%s called, NOT YET IMPLEMENTED\n", __func__));
129 uint32_t TlclDefineSpace(uint32_t index, uint32_t perm, uint32_t size)
131 VBDEBUG(("%s called, NOT YET IMPLEMENTED\n", __func__));
136 * Issue a ForceClear. The TPM error code is returned.
138 uint32_t TlclForceClear(void)
140 VBDEBUG(("%s called, NOT YET IMPLEMENTED\n", __func__));
144 uint32_t TlclSetDeactivated(uint8_t flag)
146 VBDEBUG(("%s called, NOT YET IMPLEMENTED\n", __func__));
150 uint32_t TlclSetEnable(void)
152 VBDEBUG(("%s called, NOT YET IMPLEMENTED\n", __func__));
156 uint32_t TlclGetFlags(uint8_t* disable,
157 uint8_t* deactivated,
160 /* For TPM2 the flags are always the same */
170 int TlclIsOwned(void)
172 VBDEBUG(("%s called, NOT YET IMPLEMENTED\n", __func__));
176 uint32_t TlclExtend(int pcr_num, const uint8_t *in_digest, uint8_t *out_digest)
178 VBDEBUG(("%s called, NOT YET IMPLEMENTED\n", __func__));
183 * Get the permission bits for the NVRAM space with |index|.
185 uint32_t TlclGetPermissions(uint32_t index, uint32_t *permissions)
188 VBDEBUG(("%s called, NOT YET IMPLEMENTED\n", __func__));
192 static uint32_t tlcl_get_capability(TPM_CAP cap, TPM_PT property,
193 struct get_capability_response **presp)
195 struct tpm2_response *response;
196 struct tpm2_get_capability_cmd getcap;
198 getcap.capability = cap;
199 getcap.property = property;
200 getcap.property_count = 1;
202 response = tpm_process_command(TPM2_GetCapability, &getcap);
203 if (!response || response->hdr.tpm_code)
204 return TPM_E_IOERROR;
205 *presp = &response->cap;
210 static uint32_t tlcl_get_tpm_property(TPM_PT property, uint32_t *pvalue)
213 struct get_capability_response *resp;
214 TPML_TAGGED_TPM_PROPERTY *tpm_prop;
216 rv = tlcl_get_capability(TPM_CAP_TPM_PROPERTIES, property, &resp);
217 if (rv != TPM_SUCCESS)
220 if (resp->capability_data.capability != TPM_CAP_TPM_PROPERTIES)
221 return TPM_E_IOERROR;
223 tpm_prop = &resp->capability_data.data.tpm_properties;
225 if ((tpm_prop->count != 1) ||
226 (tpm_prop->tpm_property[0].property != property))
227 return TPM_E_IOERROR;
229 *pvalue = tpm_prop->tpm_property[0].value;
233 uint32_t TlclGetPermanentFlags(TPM_PERMANENT_FLAGS *pflags)
235 return tlcl_get_tpm_property(TPM_PT_PERMANENT,
239 uint32_t TlclGetSTClearFlags(TPM_STCLEAR_FLAGS *pflags)
241 return tlcl_get_tpm_property(TPM_PT_STARTUP_CLEAR,
245 uint32_t TlclGetOwnership(uint8_t *owned)
248 VBDEBUG(("%s called, NOT YET IMPLEMENTED\n", __func__));
252 static uint32_t tlcl_lock_nv_write(uint32_t index)
254 struct tpm2_response *response;
255 struct tpm2_nv_write_lock_cmd nv_wl;
257 nv_wl.nvIndex = HR_NV_INDEX + index;
258 response = tpm_process_command(TPM2_NV_WriteLock, &nv_wl);
260 if (!response || response->hdr.tpm_code)
261 return TPM_E_INTERNAL_INCONSISTENCY;
266 static uint32_t tlcl_disable_platform_hierarchy(void)
268 struct tpm2_response *response;
269 struct tpm2_hierarchy_control_cmd hc;
271 hc.enable = TPM_RH_PLATFORM;
274 response = tpm_process_command(TPM2_Hierarchy_Control, &hc);
276 if (!response || response->hdr.tpm_code)
277 return TPM_E_INTERNAL_INCONSISTENCY;
279 tpm_set_ph_disabled(1);
284 * The name of the function was kept to maintain the existing TPM API, but
285 * TPM2.0 does not use the global lock to protect the FW rollback counter.
286 * Instead it calls WriteLock for the FW NVRAM index to prevent future
289 * It first checks if the platform hierarchy is already disabled, and does
290 * nothing, if so. Otherwise, WriteLock for the index obviously fails.
292 uint32_t TlclSetGlobalLock(void)
294 if (tpm_is_ph_disabled())
297 return tlcl_lock_nv_write(FIRMWARE_NV_INDEX);
301 * Turn off physical presence and locks it off until next reboot. The TPM
302 * error code is returned.
304 * The name of the function was kept to maintain the existing TPM API, but
305 * TPM2.0 does not have to use the Physical Presence concept. Instead it just
306 * removes platform authorization - this makes sure that firmware and kernel
307 * rollback counter spaces can not be modified.
309 * It also explicitly locks the kernel rollback counter space (the FW rollback
310 * counter space was locked before RW firmware started.)
312 uint32_t TlclLockPhysicalPresence(void)
316 if (tpm_is_ph_disabled())
319 rv = tlcl_lock_nv_write(KERNEL_NV_INDEX);
320 if (rv == TPM_SUCCESS)
321 rv = tlcl_disable_platform_hierarchy();
326 uint32_t TlclRead(uint32_t index, void* data, uint32_t length)
328 struct tpm2_nv_read_cmd nv_readc;
329 struct tpm2_response *response;
331 Memset(&nv_readc, 0, sizeof(nv_readc));
333 nv_readc.nvIndex = HR_NV_INDEX + index;
334 nv_readc.size = length;
336 response = tpm_process_command(TPM2_NV_Read, &nv_readc);
338 /* Need to map tpm error codes into internal values. */
340 return TPM_E_READ_FAILURE;
342 switch (response->hdr.tpm_code) {
347 return TPM_E_BADINDEX;
350 return TPM_E_READ_FAILURE;
353 if (length > response->nvr.buffer.t.size)
354 return TPM_E_RESPONSE_TOO_LARGE;
356 if (length < response->nvr.buffer.t.size)
357 return TPM_E_READ_EMPTY;
359 Memcpy(data, response->nvr.buffer.t.buffer, length);
364 uint32_t TlclWrite(uint32_t index, const void *data, uint32_t length)
366 struct tpm2_nv_write_cmd nv_writec;
367 struct tpm2_response *response;
369 Memset(&nv_writec, 0, sizeof(nv_writec));
371 nv_writec.nvIndex = HR_NV_INDEX + index;
372 nv_writec.data.t.size = length;
373 nv_writec.data.t.buffer = data;
375 response = tpm_process_command(TPM2_NV_Write, &nv_writec);
377 /* Need to map tpm error codes into internal values. */
379 return TPM_E_WRITE_FAILURE;
384 uint32_t TlclPCRRead(uint32_t index, void *data, uint32_t length)
386 VBDEBUG(("%s called, NOT YET IMPLEMENTED\n", __func__));
390 uint32_t TlclWriteLock(uint32_t index)
392 VBDEBUG(("%s called, NOT YET IMPLEMENTED\n", __func__));
396 uint32_t TlclReadLock(uint32_t index)
398 VBDEBUG(("%s called, NOT YET IMPLEMENTED\n", __func__));
402 uint32_t TlclGetRandom(uint8_t *data, uint32_t length, uint32_t *size)
405 VBDEBUG(("%s called, NOT YET IMPLEMENTED\n", __func__));
406 return TPM_E_IOERROR;