blob: 8c82c3f7ef2693680c354a923311fff3e59bf635 [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 "HMAC_Start_fp.h"
9
Vadim Bendeburyc3730f62019-01-15 11:59:05 -080010#if IS_CC_ENABLED(HMAC_Start)
Vadim Bendebury56abbbf2018-08-28 15:34:31 -070011static UINT16 HMAC_Start_Out_Marshal(HMAC_Start_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 = 1;
20 // Marshal response handles.
21 total_size += TPMI_DH_OBJECT_Marshal(&source->sequenceHandle, buffer, size);
22 // Add parameter_size=0 to indicate size of the parameter area. Will be
23 // replaced later by computed parameter_size.
24 if (tag == TPM_ST_SESSIONS) {
25 parameter_size_location = *buffer;
26 // Don't add to total_size, but increment *buffer and decrement *size.
27 UINT32_Marshal(&parameter_size, buffer, size);
28 }
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 HMAC_Start_In_Unmarshal(HMAC_Start_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->handle = request_handles[0];
46 // Unmarshal request parameters.
47 result = TPM2B_AUTH_Unmarshal(&target->auth, buffer, size);
48 if (result != TPM_RC_SUCCESS) {
49 return result;
50 }
51 result = TPMI_ALG_HASH_Unmarshal(&target->hashAlg, buffer, size, TRUE);
52 if (result != TPM_RC_SUCCESS) {
53 return result;
54 }
Vadim Bendebury3dfffca2015-10-20 17:17:54 -070055 if ((result == TPM_RC_SUCCESS) && *size) {
56 result = TPM_RC_SIZE;
57 }
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070058 return result;
59}
60
61TPM_RC Exec_HMAC_Start(TPMI_ST_COMMAND_TAG tag,
62 BYTE** request_parameter_buffer,
63 INT32* request_parameter_buffer_size,
64 TPM_HANDLE request_handles[],
65 UINT32* response_handle_buffer_size,
66 UINT32* response_parameter_buffer_size) {
67 TPM_RC result = TPM_RC_SUCCESS;
68 HMAC_Start_In in;
69 HMAC_Start_Out out;
Vadim Bendeburyc3730f62019-01-15 11:59:05 -080070#if IS_CC_ENABLED(HMAC_Start)
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070071 BYTE* response_buffer;
72 INT32 response_buffer_size;
73 UINT16 bytes_marshalled;
74 UINT16 num_response_handles = 1;
75#endif
76 *response_handle_buffer_size = 0;
77 *response_parameter_buffer_size = 0;
78 // Unmarshal request parameters to input structure.
79 result =
80 HMAC_Start_In_Unmarshal(&in, request_handles, request_parameter_buffer,
81 request_parameter_buffer_size);
82 if (result != TPM_RC_SUCCESS) {
83 return result;
84 }
85 // Execute command.
86 result = TPM2_HMAC_Start(&in, &out);
87 if (result != TPM_RC_SUCCESS) {
88 return result;
89 }
90// Marshal output structure to global response buffer.
Vadim Bendeburyc3730f62019-01-15 11:59:05 -080091#if IS_CC_ENABLED(HMAC_Start)
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070092 response_buffer = MemoryGetResponseBuffer(TPM_CC_HMAC_Start) + 10;
93 response_buffer_size = MAX_RESPONSE_SIZE - 10;
94 bytes_marshalled = HMAC_Start_Out_Marshal(&out, tag, &response_buffer,
95 &response_buffer_size);
96 *response_handle_buffer_size = num_response_handles * sizeof(TPM_HANDLE);
97 *response_parameter_buffer_size =
98 bytes_marshalled - *response_handle_buffer_size;
99 return TPM_RC_SUCCESS;
100#endif
101 return TPM_RC_COMMAND_CODE;
102}