Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame^] | 1 | // 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 "GetSessionAuditDigest_fp.h" |
| 9 | |
| 10 | UINT16 GetSessionAuditDigest_Out_Marshal(GetSessionAuditDigest_Out* source, |
| 11 | TPMI_ST_COMMAND_TAG tag, |
| 12 | BYTE** buffer, |
| 13 | INT32* size) { |
| 14 | UINT16 total_size = 0; |
| 15 | UINT32 parameter_size = 0; |
| 16 | BYTE* parameter_size_location; |
| 17 | INT32 parameter_size_size = sizeof(UINT32); |
| 18 | UINT32 num_response_handles = 0; |
| 19 | // Add parameter_size=0 to indicate size of the parameter area. Will be |
| 20 | // replaced later by computed parameter_size. |
| 21 | if (tag == TPM_ST_SESSIONS) { |
| 22 | parameter_size_location = *buffer; |
| 23 | // Don't add to total_size, but increment *buffer and decrement *size. |
| 24 | UINT32_Marshal(¶meter_size, buffer, size); |
| 25 | } |
| 26 | // Marshal response parameters. |
| 27 | total_size += TPM2B_ATTEST_Marshal(&source->auditInfo, buffer, size); |
| 28 | total_size += TPMT_SIGNATURE_Marshal(&source->signature, 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(¶meter_size, ¶meter_size_location, |
| 33 | ¶meter_size_size); |
| 34 | } |
| 35 | return total_size; |
| 36 | } |
| 37 | |
| 38 | TPM_RC GetSessionAuditDigest_In_Unmarshal(GetSessionAuditDigest_In* target, |
| 39 | TPM_HANDLE request_handles[], |
| 40 | BYTE** buffer, |
| 41 | INT32* size) { |
| 42 | TPM_RC result = TPM_RC_SUCCESS; |
| 43 | // Get request handles from request_handles array. |
| 44 | target->privacyAdminHandle = request_handles[0]; |
| 45 | target->signHandle = request_handles[1]; |
| 46 | target->sessionHandle = request_handles[2]; |
| 47 | // Unmarshal request parameters. |
| 48 | result = TPM2B_DATA_Unmarshal(&target->qualifyingData, buffer, size); |
| 49 | if (result != TPM_RC_SUCCESS) { |
| 50 | return result; |
| 51 | } |
| 52 | result = TPMT_SIG_SCHEME_Unmarshal(&target->inScheme, buffer, size); |
| 53 | if (result != TPM_RC_SUCCESS) { |
| 54 | return result; |
| 55 | } |
| 56 | return result; |
| 57 | } |
| 58 | |
| 59 | TPM_RC Exec_GetSessionAuditDigest(TPMI_ST_COMMAND_TAG tag, |
| 60 | BYTE** request_parameter_buffer, |
| 61 | INT32* request_parameter_buffer_size, |
| 62 | TPM_HANDLE request_handles[], |
| 63 | UINT32* response_handle_buffer_size, |
| 64 | UINT32* response_parameter_buffer_size) { |
| 65 | TPM_RC result = TPM_RC_SUCCESS; |
| 66 | GetSessionAuditDigest_In in; |
| 67 | GetSessionAuditDigest_Out out; |
| 68 | #ifdef TPM_CC_GetSessionAuditDigest |
| 69 | BYTE* response_buffer; |
| 70 | INT32 response_buffer_size; |
| 71 | UINT16 bytes_marshalled; |
| 72 | UINT16 num_response_handles = 0; |
| 73 | #endif |
| 74 | *response_handle_buffer_size = 0; |
| 75 | *response_parameter_buffer_size = 0; |
| 76 | // Unmarshal request parameters to input structure. |
| 77 | result = GetSessionAuditDigest_In_Unmarshal(&in, request_handles, |
| 78 | request_parameter_buffer, |
| 79 | request_parameter_buffer_size); |
| 80 | if (result != TPM_RC_SUCCESS) { |
| 81 | return result; |
| 82 | } |
| 83 | // Execute command. |
| 84 | result = TPM2_GetSessionAuditDigest(&in, &out); |
| 85 | if (result != TPM_RC_SUCCESS) { |
| 86 | return result; |
| 87 | } |
| 88 | // Marshal output structure to global response buffer. |
| 89 | #ifdef TPM_CC_GetSessionAuditDigest |
| 90 | response_buffer = MemoryGetResponseBuffer(TPM_CC_GetSessionAuditDigest) + 10; |
| 91 | response_buffer_size = MAX_RESPONSE_SIZE - 10; |
| 92 | bytes_marshalled = GetSessionAuditDigest_Out_Marshal( |
| 93 | &out, tag, &response_buffer, &response_buffer_size); |
| 94 | *response_handle_buffer_size = num_response_handles * sizeof(TPM_HANDLE); |
| 95 | *response_parameter_buffer_size = |
| 96 | bytes_marshalled - *response_handle_buffer_size; |
| 97 | return TPM_RC_SUCCESS; |
| 98 | #endif |
| 99 | return TPM_RC_COMMAND_CODE; |
| 100 | } |