blob: 4cf6ce8be0764a8d0a8b432e9dda897cb46b4a76 [file] [log] [blame]
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -07001// Copyright 2015 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// THIS CODE IS GENERATED - DO NOT MODIFY!
6
7#include "MemoryLib_fp.h"
8#include "PCR_Event_fp.h"
9
Vadim Bendeburyc3730f62019-01-15 11:59:05 -080010#if IS_CC_ENABLED(PCR_Event)
Vadim Bendebury56abbbf2018-08-28 15:34:31 -070011static UINT16 PCR_Event_Out_Marshal(PCR_Event_Out* source,
12 TPMI_ST_COMMAND_TAG tag,
13 BYTE** buffer,
14 INT32* size) {
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070015 UINT16 total_size = 0;
16 UINT32 parameter_size = 0;
17 BYTE* parameter_size_location;
18 INT32 parameter_size_size = sizeof(UINT32);
19 UINT32 num_response_handles = 0;
20 // Add parameter_size=0 to indicate size of the parameter area. Will be
21 // replaced later by computed parameter_size.
22 if (tag == TPM_ST_SESSIONS) {
23 parameter_size_location = *buffer;
24 // Don't add to total_size, but increment *buffer and decrement *size.
25 UINT32_Marshal(&parameter_size, buffer, size);
26 }
27 // Marshal response parameters.
28 total_size += TPML_DIGEST_VALUES_Marshal(&source->digests, buffer, size);
29 // Compute actual parameter_size. Don't add result to total_size.
30 if (tag == TPM_ST_SESSIONS) {
31 parameter_size = total_size - num_response_handles * sizeof(TPM_HANDLE);
32 UINT32_Marshal(&parameter_size, &parameter_size_location,
33 &parameter_size_size);
34 }
35 return total_size;
36}
Vadim Bendebury56abbbf2018-08-28 15:34:31 -070037#endif
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070038
Vadim Bendebury56abbbf2018-08-28 15:34:31 -070039static TPM_RC PCR_Event_In_Unmarshal(PCR_Event_In* target,
40 TPM_HANDLE request_handles[],
41 BYTE** buffer,
42 INT32* size) {
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070043 TPM_RC result = TPM_RC_SUCCESS;
44 // Get request handles from request_handles array.
45 target->pcrHandle = request_handles[0];
46 // Unmarshal request parameters.
47 result = TPM2B_EVENT_Unmarshal(&target->eventData, buffer, size);
48 if (result != TPM_RC_SUCCESS) {
49 return result;
50 }
Vadim Bendebury3dfffca2015-10-20 17:17:54 -070051 if ((result == TPM_RC_SUCCESS) && *size) {
52 result = TPM_RC_SIZE;
53 }
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070054 return result;
55}
56
57TPM_RC Exec_PCR_Event(TPMI_ST_COMMAND_TAG tag,
58 BYTE** request_parameter_buffer,
59 INT32* request_parameter_buffer_size,
60 TPM_HANDLE request_handles[],
61 UINT32* response_handle_buffer_size,
62 UINT32* response_parameter_buffer_size) {
63 TPM_RC result = TPM_RC_SUCCESS;
64 PCR_Event_In in;
65 PCR_Event_Out out;
Vadim Bendeburyc3730f62019-01-15 11:59:05 -080066#if IS_CC_ENABLED(PCR_Event)
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070067 BYTE* response_buffer;
68 INT32 response_buffer_size;
69 UINT16 bytes_marshalled;
70 UINT16 num_response_handles = 0;
71#endif
72 *response_handle_buffer_size = 0;
73 *response_parameter_buffer_size = 0;
74 // Unmarshal request parameters to input structure.
75 result =
76 PCR_Event_In_Unmarshal(&in, request_handles, request_parameter_buffer,
77 request_parameter_buffer_size);
78 if (result != TPM_RC_SUCCESS) {
79 return result;
80 }
81 // Execute command.
82 result = TPM2_PCR_Event(&in, &out);
83 if (result != TPM_RC_SUCCESS) {
84 return result;
85 }
86// Marshal output structure to global response buffer.
Vadim Bendeburyc3730f62019-01-15 11:59:05 -080087#if IS_CC_ENABLED(PCR_Event)
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070088 response_buffer = MemoryGetResponseBuffer(TPM_CC_PCR_Event) + 10;
89 response_buffer_size = MAX_RESPONSE_SIZE - 10;
90 bytes_marshalled =
91 PCR_Event_Out_Marshal(&out, tag, &response_buffer, &response_buffer_size);
92 *response_handle_buffer_size = num_response_handles * sizeof(TPM_HANDLE);
93 *response_parameter_buffer_size =
94 bytes_marshalled - *response_handle_buffer_size;
95 return TPM_RC_SUCCESS;
96#endif
97 return TPM_RC_COMMAND_CODE;
98}