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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
|
#pragma once
#include <util/system/types.h>
#include <stdint.h>
#include <time.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct _TVM_String {
char* Data;
int Size;
} TVM_String;
typedef struct {
ui64 Uid;
ui64 CurrentPorgId;
} TVM_UserExtFields;
// MemPool owns memory allocated by C.
typedef struct {
char* ErrorStr;
void* TicketStr;
void* RawRolesStr;
TVM_String* Scopes;
void* CheckedUserTicket;
void* CheckedServiceTicket;
char* DbgInfo;
char* LogInfo;
char* LoginId;
TVM_UserExtFields* UidsExtFields;
TVM_UserExtFields* DefaultUidExtFields;
TVM_String LastError;
} TVM_MemPool;
void TVM_DestroyMemPool(TVM_MemPool* pool);
typedef struct {
int Code;
int Retriable;
TVM_String Message;
} TVM_Error;
typedef struct {
int Status;
ui64 DefaultUid;
ui64* Uids;
int UidsSize;
int Env;
TVM_String* Scopes;
int ScopesSize;
TVM_String DbgInfo;
TVM_String LogInfo;
TVM_String LoginId;
TVM_UserExtFields* UidsExtFields;
int UidsExtFieldsSize;
TVM_UserExtFields* DefaultUidExtFields;
} TVM_UserTicket;
typedef struct {
int Status;
ui32 SrcId;
ui32 DstId;
ui64 IssuerUid;
TVM_String DbgInfo;
TVM_String LogInfo;
} TVM_ServiceTicket;
typedef struct {
ui32 SelfId;
int EnableServiceTicketChecking;
int EnableUserTicketChecking;
int BlackboxEnv;
unsigned char* SelfSecret;
int SelfSecretSize;
unsigned char* DstAliases;
int DstAliasesSize;
unsigned char* IdmSystemSlug;
int IdmSystemSlugSize;
int DisableSrcCheck;
int DisableDefaultUIDCheck;
unsigned char* TVMHost;
int TVMHostSize;
int TVMPort;
unsigned char* TiroleHost;
int TiroleHostSize;
int TirolePort;
ui32 TiroleTvmId;
unsigned char* DiskCacheDir;
int DiskCacheDirSize;
int DisableDstCheck;
} TVM_ApiSettings;
typedef struct {
unsigned char* Alias;
int AliasSize;
int Port;
unsigned char* Hostname;
int HostnameSize;
unsigned char* AuthToken;
int AuthTokenSize;
int DisableSrcCheck;
int DisableDefaultUIDCheck;
int DisableDstCheck;
} TVM_ToolSettings;
typedef struct {
ui32 SelfId;
int BlackboxEnv;
} TVM_UnittestSettings;
typedef struct {
int Status;
TVM_String LastError;
} TVM_ClientStatus;
// First argument must be passed by value. "Go code may pass a Go pointer to C
// provided the Go memory to which it points does not contain any Go pointers."
void TVM_NewApiClient(
TVM_ApiSettings settings,
int loggerHandle,
void** handle,
TVM_Error* err,
TVM_MemPool* pool);
void TVM_NewDynamicApiClient(
TVM_ApiSettings settings,
int loggerHandle,
void** handle,
void** dynHandle,
TVM_Error* err,
TVM_MemPool* pool);
void TVM_NewToolClient(
TVM_ToolSettings settings,
int loggerHandle,
void** handle,
TVM_Error* err,
TVM_MemPool* pool);
void TVM_NewUnittestClient(
TVM_UnittestSettings settings,
void** handle,
TVM_Error* err,
TVM_MemPool* pool);
void TVM_DestroyClient(void* handle);
void TVM_GetStatus(
void* handle,
TVM_ClientStatus* status,
TVM_Error* err,
TVM_MemPool* pool);
void TVM_CheckUserTicket(
void* handle,
unsigned char* ticketStr, int ticketSize,
int* env,
TVM_UserTicket* ticket,
TVM_Error* err,
TVM_MemPool* pool);
void TVM_CheckServiceTicket(
void* handle,
unsigned char* ticketStr, int ticketSize,
TVM_ServiceTicket* ticket,
TVM_Error* err,
TVM_MemPool* pool);
void TVM_GetServiceTicket(
void* handle,
ui32 dstId,
char** ticket,
TVM_Error* err,
TVM_MemPool* pool);
void TVM_GetServiceTicketForAlias(
void* handle,
unsigned char* alias, int aliasSize,
char** ticket,
TVM_Error* err,
TVM_MemPool* pool);
void TVM_GetRoles(
void* handle,
unsigned char* currentRevision, int currentRevisionSize,
char** raw,
int* rawSize,
TVM_Error* err,
TVM_MemPool* pool);
void TVM_AddDsts(
void* dynHandle,
ui32* dsts,
int size,
TVM_Error* err,
TVM_MemPool* pool);
void TVM_GetOptionalServiceTicketFor(
void* dynHandle,
ui32 dstId,
char** ticket,
TVM_Error* err,
TVM_MemPool* pool);
const char* TVM_TicketStatusToString(int status);
#ifdef __cplusplus
}
#endif
|