blob: 8e7299ef141c45c42882db94b728d7917c3c6523 [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 "CertifyCreation_fp.h"
9
Vadim Bendeburyc3730f62019-01-15 11:59:05 -080010#if IS_CC_ENABLED(CertifyCreation)
Vadim Bendebury56abbbf2018-08-28 15:34:31 -070011static UINT16 CertifyCreation_Out_Marshal(CertifyCreation_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 += TPM2B_ATTEST_Marshal(&source->certifyInfo, buffer, size);
29 total_size += TPMT_SIGNATURE_Marshal(&source->signature, buffer, size);
30 // Compute actual parameter_size. Don't add result to total_size.
31 if (tag == TPM_ST_SESSIONS) {
32 parameter_size = total_size - num_response_handles * sizeof(TPM_HANDLE);
33 UINT32_Marshal(&parameter_size, &parameter_size_location,
34 &parameter_size_size);
35 }
36 return total_size;
37}
Vadim Bendebury56abbbf2018-08-28 15:34:31 -070038#endif
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070039
Vadim Bendebury56abbbf2018-08-28 15:34:31 -070040static TPM_RC CertifyCreation_In_Unmarshal(CertifyCreation_In* target,
41 TPM_HANDLE request_handles[],
42 BYTE** buffer,
43 INT32* size) {
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070044 TPM_RC result = TPM_RC_SUCCESS;
45 // Get request handles from request_handles array.
46 target->signHandle = request_handles[0];
47 target->objectHandle = request_handles[1];
48 // Unmarshal request parameters.
49 result = TPM2B_DATA_Unmarshal(&target->qualifyingData, buffer, size);
50 if (result != TPM_RC_SUCCESS) {
51 return result;
52 }
53 result = TPM2B_DIGEST_Unmarshal(&target->creationHash, buffer, size);
54 if (result != TPM_RC_SUCCESS) {
55 return result;
56 }
57 result = TPMT_SIG_SCHEME_Unmarshal(&target->inScheme, buffer, size);
58 if (result != TPM_RC_SUCCESS) {
59 return result;
60 }
61 result = TPMT_TK_CREATION_Unmarshal(&target->creationTicket, buffer, size);
62 if (result != TPM_RC_SUCCESS) {
63 return result;
64 }
Vadim Bendebury3dfffca2015-10-20 17:17:54 -070065 if ((result == TPM_RC_SUCCESS) && *size) {
66 result = TPM_RC_SIZE;
67 }
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070068 return result;
69}
70
71TPM_RC Exec_CertifyCreation(TPMI_ST_COMMAND_TAG tag,
72 BYTE** request_parameter_buffer,
73 INT32* request_parameter_buffer_size,
74 TPM_HANDLE request_handles[],
75 UINT32* response_handle_buffer_size,
76 UINT32* response_parameter_buffer_size) {
77 TPM_RC result = TPM_RC_SUCCESS;
78 CertifyCreation_In in;
79 CertifyCreation_Out out;
Vadim Bendeburyc3730f62019-01-15 11:59:05 -080080#if IS_CC_ENABLED(CertifyCreation)
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070081 BYTE* response_buffer;
82 INT32 response_buffer_size;
83 UINT16 bytes_marshalled;
84 UINT16 num_response_handles = 0;
85#endif
86 *response_handle_buffer_size = 0;
87 *response_parameter_buffer_size = 0;
88 // Unmarshal request parameters to input structure.
89 result = CertifyCreation_In_Unmarshal(&in, request_handles,
90 request_parameter_buffer,
91 request_parameter_buffer_size);
92 if (result != TPM_RC_SUCCESS) {
93 return result;
94 }
95 // Execute command.
96 result = TPM2_CertifyCreation(&in, &out);
97 if (result != TPM_RC_SUCCESS) {
98 return result;
99 }
100// Marshal output structure to global response buffer.
Vadim Bendeburyc3730f62019-01-15 11:59:05 -0800101#if IS_CC_ENABLED(CertifyCreation)
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -0700102 response_buffer = MemoryGetResponseBuffer(TPM_CC_CertifyCreation) + 10;
103 response_buffer_size = MAX_RESPONSE_SIZE - 10;
104 bytes_marshalled = CertifyCreation_Out_Marshal(&out, tag, &response_buffer,
105 &response_buffer_size);
106 *response_handle_buffer_size = num_response_handles * sizeof(TPM_HANDLE);
107 *response_parameter_buffer_size =
108 bytes_marshalled - *response_handle_buffer_size;
109 return TPM_RC_SUCCESS;
110#endif
111 return TPM_RC_COMMAND_CODE;
112}