hc
2024-01-05 071106ecf68c401173c58808b1cf5f68cc50d390
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
/*
 * Copyright (c) 2015, Linaro Limited
 * Copyright (c) 2014, STMicroelectronics International N.V.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 * this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */
#ifndef UTEE_SYSCALLS_H
#define UTEE_SYSCALLS_H
 
#include <compiler.h>
#include <stddef.h>
#include <stdint.h>
 
#include <utee_types.h>
#include <tee_api_types.h>
#include <trace.h>
 
/*
 * Arguments must use the native register width. To keep it simple, only
 * use pointers, long, unsigned long and size_t. Pointers may only point
 * structures or types based on fixed width integer types. Only exception
 * are buffers with opaque data.
 *
 * Return values should not use a fixed width larger than 32 bits, unsigned
 * long and pointers are OK though.
 *
 * Members in structs on the other hand should only use fixed width integer
 * types; uint32_t, uint64_t etc. To keep it simple, use uint64_t for all
 * length fields.
 */
 
void utee_return(unsigned long ret) __noreturn;
 
void utee_log(const void *buf, size_t len);
 
void utee_panic(unsigned long code) __noreturn;
 
uint32_t utee_dummy(uint32_t *a);
 
uint32_t utee_dummy_7args(unsigned long a1, unsigned long a2, unsigned long a3,
           unsigned long a4, unsigned long a5, unsigned long a6,
           unsigned long a7);
 
uint32_t utee_nocall(void);
 
/* prop_set is TEE_PROPSET_xxx*/
TEE_Result utee_get_property(unsigned long prop_set, unsigned long index,
                void *name, uint32_t *name_len,
                void *buf, uint32_t *blen,
               uint32_t *prop_type);
TEE_Result utee_get_property_name_to_index(unsigned long prop_set, void *name,
                      unsigned long name_len,
                      uint32_t *index);
 
 
/* sess has type TEE_TASessionHandle */
TEE_Result utee_open_ta_session(const TEE_UUID *dest,
           unsigned long cancel_req_to, struct utee_params *params,
           uint32_t *sess, uint32_t *ret_orig);
 
/* sess has type TEE_TASessionHandle */
TEE_Result utee_close_ta_session(unsigned long sess);
 
/* sess has type TEE_TASessionHandle */
TEE_Result utee_invoke_ta_command(unsigned long sess,
           unsigned long cancel_req_to, unsigned long cmd_id,
           struct utee_params *params, uint32_t *ret_orig);
 
TEE_Result utee_check_access_rights(uint32_t flags, const void *buf,
                   size_t len);
 
/* cancel has type bool */
TEE_Result utee_get_cancellation_flag(uint32_t *cancel);
 
/* old_mask has type bool */
TEE_Result utee_unmask_cancellation(uint32_t *old_mask);
 
/* old_mask has type bool */
TEE_Result utee_mask_cancellation(uint32_t *old_mask);
 
TEE_Result utee_wait(unsigned long timeout);
 
/* cat has type enum utee_time_category */
TEE_Result utee_get_time(unsigned long cat, TEE_Time *time);
 
TEE_Result utee_set_ta_time(const TEE_Time *time);
 
TEE_Result utee_cryp_state_alloc(unsigned long algo, unsigned long op_mode,
                unsigned long key1, unsigned long key2,
                uint32_t *state);
TEE_Result utee_cryp_state_copy(unsigned long dst, unsigned long src);
TEE_Result utee_cryp_state_free(unsigned long state);
 
/* iv and iv_len are ignored for some algorithms */
TEE_Result utee_hash_init(unsigned long state, const void *iv, size_t iv_len);
TEE_Result utee_hash_update(unsigned long state, const void *chunk,
               size_t chunk_size);
TEE_Result utee_hash_final(unsigned long state, const void *chunk,
              size_t chunk_size, void *hash, uint64_t *hash_len);
 
TEE_Result utee_cipher_init(unsigned long state, const void *iv, size_t iv_len);
TEE_Result utee_cipher_update(unsigned long state, const void *src,
           size_t src_len, void *dest, uint64_t *dest_len);
TEE_Result utee_cipher_final(unsigned long state, const void *src,
           size_t src_len, void *dest, uint64_t *dest_len);
 
/* Generic Object Functions */
TEE_Result utee_cryp_obj_get_info(unsigned long obj, TEE_ObjectInfo *info);
TEE_Result utee_cryp_obj_restrict_usage(unsigned long obj, unsigned long usage);
TEE_Result utee_cryp_obj_get_attr(unsigned long obj, unsigned long attr_id,
           void *buffer, uint64_t *size);
 
/* Transient Object Functions */
/* type has type TEE_ObjectType */
TEE_Result utee_cryp_obj_alloc(unsigned long type, unsigned long max_size,
           uint32_t *obj);
TEE_Result utee_cryp_obj_close(unsigned long obj);
TEE_Result utee_cryp_obj_reset(unsigned long obj);
TEE_Result utee_cryp_obj_populate(unsigned long obj,
           struct utee_attribute *attrs, unsigned long attr_count);
TEE_Result utee_cryp_obj_copy(unsigned long dst_obj, unsigned long src_obj);
 
TEE_Result utee_cryp_obj_generate_key(unsigned long obj, unsigned long key_size,
           const struct utee_attribute *params,
           unsigned long param_count);
 
TEE_Result utee_cryp_derive_key(unsigned long state,
           const struct utee_attribute *params,
           unsigned long param_count, unsigned long derived_key);
 
TEE_Result utee_cryp_random_number_generate(void *buf, size_t blen);
 
TEE_Result utee_cryp_random_number_add_entropy(void *buf, size_t blen);
TEE_Result utee_derive_key_from_hard(void *data, size_t dataLen,
           void *key, size_t keyLen);
TEE_Result utee_save_ta_image(const TEE_UUID *uuid, void *buf, uint64_t len);
TEE_Result utee_authenc_init(unsigned long state, const void *nonce,
           size_t nonce_len, size_t tag_len, size_t aad_len,
           size_t payload_len);
TEE_Result utee_authenc_update_aad(unsigned long state, const void *aad_data,
           size_t aad_data_len);
TEE_Result utee_authenc_update_payload(unsigned long state,
           const void *src_data, size_t src_len, void *dest_data,
           uint64_t *dest_len);
TEE_Result utee_authenc_enc_final(unsigned long state, const void *src_data,
           size_t src_len, void *dest_data, uint64_t *dest_len,
           void *tag, uint64_t *tag_len);
TEE_Result utee_authenc_dec_final(unsigned long state, const void *src_data,
           size_t src_len, void *dest_data, uint64_t *dest_len,
           const void *tag, size_t tag_len);
 
TEE_Result utee_asymm_operate(unsigned long state,
           const struct utee_attribute *params,
           unsigned long num_params, const void *src_data,
           size_t src_len, void *dest_data, uint64_t *dest_len);
 
TEE_Result utee_asymm_verify(unsigned long state,
           const struct utee_attribute *params,
           unsigned long num_params, const void *data,
           size_t data_len, const void *sig, size_t sig_len);
 
/* Persistant Object Functions */
/* obj is of type TEE_ObjectHandle */
TEE_Result utee_storage_obj_open(unsigned long storage_id, void *object_id,
                size_t object_id_len, unsigned long flags,
                uint32_t *obj);
 
/*
 * attr is of type TEE_ObjectHandle
 * obj is of type TEE_ObjectHandle
 */
TEE_Result utee_storage_obj_create(unsigned long storage_id, void *object_id,
               size_t object_id_len, unsigned long flags,
               unsigned long attr, const void *data,
               size_t len, uint32_t *obj);
 
/* obj is of type TEE_ObjectHandle */
TEE_Result utee_storage_obj_del(unsigned long obj);
 
/* obj is of type TEE_ObjectHandle */
TEE_Result utee_storage_obj_rename(unsigned long obj, const void *new_obj_id,
               size_t new_obj_id_len);
 
/* Persistent Object Enumeration Functions */
/* obj_enum is of type TEE_ObjectEnumHandle */
TEE_Result utee_storage_alloc_enum(uint32_t *obj_enum);
 
 
/* obj_enum is of type TEE_ObjectEnumHandle */
TEE_Result utee_storage_free_enum(unsigned long obj_enum);
 
/* obj_enum is of type TEE_ObjectEnumHandle */
TEE_Result utee_storage_reset_enum(unsigned long obj_enum);
 
/* obj_enum is of type TEE_ObjectEnumHandle */
TEE_Result utee_storage_start_enum(unsigned long obj_enum,
           unsigned long storage_id);
 
/* obj_enum is of type TEE_ObjectEnumHandle */
TEE_Result utee_storage_next_enum(unsigned long obj_enum, TEE_ObjectInfo *info,
           void *obj_id, uint64_t *len);
 
/* Data Stream Access Functions */
/* obj is of type TEE_ObjectHandle */
TEE_Result utee_storage_obj_read(unsigned long obj, void *data, size_t len,
           uint64_t *count);
 
/* obj is of type TEE_ObjectHandle */
TEE_Result utee_storage_obj_write(unsigned long obj, const void *data,
           size_t len);
 
/* obj is of type TEE_ObjectHandle */
TEE_Result utee_storage_obj_trunc(unsigned long obj, size_t len);
 
/* obj is of type TEE_ObjectHandle */
/* whence is of type TEE_Whence */
TEE_Result utee_storage_obj_seek(unsigned long obj, long offset,
                unsigned long whence);
 
/* seServiceHandle is of type TEE_SEServiceHandle */
TEE_Result utee_se_service_open(uint32_t *seServiceHandle);
 
/* seServiceHandle is of type TEE_SEServiceHandle */
TEE_Result utee_se_service_close(unsigned long seServiceHandle);
 
/*
 * seServiceHandle is of type TEE_SEServiceHandle
 * r is of type TEE_SEReaderHandle
 */
TEE_Result utee_se_service_get_readers(unsigned long seServiceHandle,
           uint32_t *r, uint64_t *len);
 
/*
 * r is of type TEE_SEReaderHandle
 * p is defined with defines UTEE_SE_READER_*
 */
TEE_Result utee_se_reader_get_prop(unsigned long r, uint32_t *p);
 
/* r is of type TEE_SEReaderHandle */
TEE_Result utee_se_reader_get_name(unsigned long r,
           char *name, uint64_t *name_len);
 
/*
 * r is of type TEE_SEReaderHandle
 * s if of type TEE_SESessionHandle
 */
TEE_Result utee_se_reader_open_session(unsigned long r, uint32_t *s);
 
/* r is of type TEE_SEReaderHandle */
TEE_Result utee_se_reader_close_sessions(unsigned long r);
 
/* s is of type TEE_SESessionHandle */
TEE_Result utee_se_session_is_closed(unsigned long s);
 
/* s is of type TEE_SESessionHandle */
TEE_Result utee_se_session_get_atr(unsigned long s, void *atr,
           uint64_t *atr_len);
 
/*
 * s is of type TEE_SESessionHandle
 * c is of type TEE_SEChannelHandle
 */
TEE_Result utee_se_session_open_channel(unsigned long s,
           unsigned long is_logical, const void *aid_buffer,
           size_t aid_buffer_len, uint32_t *c);
 
/* s is of type TEE_SESessionHandle */
TEE_Result utee_se_session_close(unsigned long s);
 
/* c is of type TEE_SEChannelHandle */
TEE_Result utee_se_channel_select_next(unsigned long c);
 
/* c is of type TEE_SEChannelHandle */
TEE_Result utee_se_channel_get_select_resp(unsigned long c, void *resp,
           uint64_t *resp_len);
 
/* c is of type TEE_SEChannelHandle */
TEE_Result utee_se_channel_transmit(unsigned long c, void *cmd,
           size_t cmd_len, void *resp, uint64_t *resp_len);
 
/* c is of type TEE_SEChannelHandle */
TEE_Result utee_se_channel_close(unsigned long c);
 
/* op is of type enum utee_cache_operation */
TEE_Result utee_cache_operation(void *va, size_t l, unsigned long op);
 
#endif /* UTEE_SYSCALLS_H */