hc
2024-03-26 e0728245c89800c2038c23308f2d88969d5b41c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/*
 * Copyright 2017, Rockchip Electronics Co., Ltd
 * hisping lin, <hisping.lin@rock-chips.com>
 *
 * SPDX-License-Identifier:    GPL-2.0+
 */
 
/* Based on GP TEE Internal API Specification Version 0.11 */
#ifndef TEE_API_TYPES_H
#define TEE_API_TYPES_H
 
#include <optee_include/tee_base_types.h>
#include <optee_include/tee_api_defines.h>
 
 
/*
 * Common Definitions
 */
 
typedef uint32_t TEE_Result;
 
typedef struct {
   uint32_t timeLow;
   uint16_t timeMid;
   uint16_t timeHiAndVersion;
   uint8_t clockSeqAndNode[8];
} TEE_UUID;
 
/*
 * The TEE_Identity structure defines the full identity of a Client:
 * - login is one of the TEE_LOGIN_XXX constants
 * - uuid contains the client UUID or Nil if not applicable
 */
typedef struct {
   uint32_t login;
   TEE_UUID uuid;
} TEE_Identity;
 
/*
 * This union describes one parameter passed by the Trusted Core Framework
 * to the entry points TA_OpenSessionEntryPoint or
 * TA_InvokeCommandEntryPoint or by the TA to the functions
 * TEE_OpenTASession or TEE_InvokeTACommand.
 *
 * Which of the field value or memref to select is determined by the
 * parameter type specified in the argument paramTypes passed to the entry
 * point.
*/
typedef union {
   struct {
       void *buffer;
       uint32_t size;
   } memref;
   struct {
       uint32_t a;
       uint32_t b;
   } value;
} TEE_Param;
 
/*
 * The type of opaque handles on TA Session. These handles are returned by
 * the function TEE_OpenTASession.
 */
typedef struct __TEE_TASessionHandle *TEE_TASessionHandle;
 
/*
 * The type of opaque handles on property sets or enumerators. These
 * handles are either one of the pseudo handles TEE_PROPSET_XXX or are
 * returned by the function TEE_AllocatePropertyEnumerator.
*/
typedef struct __TEE_PropSetHandle *TEE_PropSetHandle;
 
typedef struct __TEE_ObjectHandle *TEE_ObjectHandle;
typedef struct __TEE_ObjectEnumHandle *TEE_ObjectEnumHandle;
typedef struct __TEE_OperationHandle *TEE_OperationHandle;
 
/*
 * Storage Definitions
 */
 
typedef uint32_t TEE_ObjectType;
 
typedef struct {
   uint32_t objectType;
   uint32_t keySize;
   uint32_t maxKeySize;
   uint32_t objectUsage;
   uint32_t dataSize;
   uint32_t dataPosition;
   uint32_t handleFlags;
} TEE_ObjectInfo;
 
typedef enum {
   TEE_DATA_SEEK_SET = 0,
   TEE_DATA_SEEK_CUR = 1,
   TEE_DATA_SEEK_END = 2
} TEE_Whence;
 
typedef struct {
   uint32_t attributeID;
   union {
       struct {
           void *buffer;
           uint32_t length;
       } ref;
       struct {
           uint32_t a, b;
       } value;
   } content;
} TEE_Attribute;
 
/* Cryptographic Operations API */
 
typedef enum {
   TEE_MODE_ENCRYPT = 0,
   TEE_MODE_DECRYPT = 1,
   TEE_MODE_SIGN = 2,
   TEE_MODE_VERIFY = 3,
   TEE_MODE_MAC = 4,
   TEE_MODE_DIGEST = 5,
   TEE_MODE_DERIVE = 6
} TEE_OperationMode;
 
typedef struct {
   uint32_t algorithm;
   uint32_t operationClass;
   uint32_t mode;
   uint32_t digestLength;
   uint32_t maxKeySize;
   uint32_t keySize;
   uint32_t requiredKeyUsage;
   uint32_t handleState;
} TEE_OperationInfo;
 
typedef struct {
   uint32_t keySize;
   uint32_t requiredKeyUsage;
} TEE_OperationInfoKey;
 
typedef struct {
   uint32_t algorithm;
   uint32_t operationClass;
   uint32_t mode;
   uint32_t digestLength;
   uint32_t maxKeySize;
   uint32_t handleState;
   uint32_t operationState;
   uint32_t numberOfKeys;
   TEE_OperationInfoKey keyInformation[];
} TEE_OperationInfoMultiple;
 
/* Time & Date API */
 
typedef struct {
   uint32_t seconds;
   uint32_t millis;
} TEE_Time;
 
/* TEE Arithmetical APIs */
 
typedef uint32_t TEE_BigInt;
 
typedef uint32_t TEE_BigIntFMM;
 
typedef uint32_t TEE_BigIntFMMContext;
 
/* Tee Secure Element APIs */
 
typedef struct __TEE_SEServiceHandle *TEE_SEServiceHandle;
typedef struct __TEE_SEReaderHandle *TEE_SEReaderHandle;
typedef struct __TEE_SESessionHandle *TEE_SESessionHandle;
typedef struct __TEE_SEChannelHandle *TEE_SEChannelHandle;
 
typedef struct {
   bool sePresent;
   bool teeOnly;
   bool selectResponseEnable;
} TEE_SEReaderProperties;
 
typedef struct {
   uint8_t *buffer;
   size_t bufferLen;
} TEE_SEAID;
 
/* Other definitions */
typedef uint32_t TEE_ErrorOrigin;
typedef void *TEE_Session;
 
#define TEE_MEM_INPUT   0x00000001
#define TEE_MEM_OUTPUT  0x00000002
 
#define TEE_MEMREF_0_USED  0x00000001
#define TEE_MEMREF_1_USED  0x00000002
#define TEE_MEMREF_2_USED  0x00000004
#define TEE_MEMREF_3_USED  0x00000008
 
#define TEE_SE_READER_NAME_MAX    20
 
#endif /* TEE_API_TYPES_H */