blob: 946b30bec30205fe34c66774e2a813d36492ecb5 [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.
Vadim Bendeburydf6896c2015-05-29 22:48:49 -07004
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -07005// THIS CODE IS GENERATED - DO NOT MODIFY!
6
Vadim Bendebury776e2362015-09-04 16:14:53 -07007#ifndef TPM2_CREATEPRIMARY_FP_H_
8#define TPM2_CREATEPRIMARY_FP_H_
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -07009
10#include "tpm_generated.h"
Vadim Bendeburydf6896c2015-05-29 22:48:49 -070011
12typedef struct {
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070013 TPMI_RH_HIERARCHY primaryHandle;
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070014 TPM2B_SENSITIVE_CREATE inSensitive;
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070015 TPM2B_PUBLIC inPublic;
16 TPM2B_DATA outsideInfo;
17 TPML_PCR_SELECTION creationPCR;
Vadim Bendeburydf6896c2015-05-29 22:48:49 -070018} CreatePrimary_In;
19
20typedef struct {
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070021 TPM_HANDLE objectHandle;
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070022 TPM2B_PUBLIC outPublic;
23 TPM2B_CREATION_DATA creationData;
24 TPM2B_DIGEST creationHash;
25 TPMT_TK_CREATION creationTicket;
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070026 TPM2B_NAME name;
Vadim Bendeburydf6896c2015-05-29 22:48:49 -070027} CreatePrimary_Out;
28
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070029// Executes CreatePrimary with request handles and parameters from
30// |in| and computes response handles and parameters to |out|.
31TPM_RC TPM2_CreatePrimary(CreatePrimary_In* in, CreatePrimary_Out* out);
Vadim Bendeburydf6896c2015-05-29 22:48:49 -070032
Vadim Bendebury776e2362015-09-04 16:14:53 -070033// Initializes handle fields in |target| from |request_handles|. Unmarshals
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070034// parameter fields in |target| from |buffer|.
35TPM_RC CreatePrimary_In_Unmarshal(CreatePrimary_In* target,
Vadim Bendebury776e2362015-09-04 16:14:53 -070036 TPM_HANDLE request_handles[],
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070037 BYTE** buffer,
38 INT32* size);
39
40// Marshals response handles and parameters from |source| to |buffer|. Computes
41// and marshals the size of the parameter area (parameter_size) if |tag| ==
42// TPM_ST_SESSIONS. Returns size of (parameter area + handle area) in bytes.
Vadim Bendebury776e2362015-09-04 16:14:53 -070043// Return value does not include parameter_size field.
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070044UINT16 CreatePrimary_Out_Marshal(CreatePrimary_Out* source,
45 TPMI_ST_COMMAND_TAG tag,
46 BYTE** buffer,
47 INT32* size);
48
Vadim Bendebury776e2362015-09-04 16:14:53 -070049// Unmarshals any request parameters starting at |request_parameter_buffer|.
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070050// Executes command. Marshals any response handles and parameters to the
Vadim Bendebury776e2362015-09-04 16:14:53 -070051// global response buffer and computes |*response_handle_buffer_size| and
52// |*response_parameter_buffer_size|. If |tag| == TPM_ST_SESSIONS, marshals
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070053// parameter_size indicating the size of the parameter area. parameter_size
54// field is located between the handle area and parameter area.
55TPM_RC Exec_CreatePrimary(TPMI_ST_COMMAND_TAG tag,
Vadim Bendebury776e2362015-09-04 16:14:53 -070056 BYTE** request_parameter_buffer,
57 INT32* request_parameter_buffer_size,
58 TPM_HANDLE request_handles[],
59 UINT32* response_handle_buffer_size,
60 UINT32* response_parameter_buffer_size);
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070061
62#endif // TPM2_CREATEPRIMARY_FP_H