This repository has been archived by the owner on Jan 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
sgx_stub.c
592 lines (468 loc) · 23 KB
/
sgx_stub.c
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
/*
Copyright 2017 Intel Corporation
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.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
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.
*/
#include "config.h"
#ifdef UAE_SERVICE_HAS_BOOL
typedef unsigned char bool;
#endif
#ifdef _WIN32
# include <Windows.h>
#else
# include <dlfcn.h>
#endif
#include <stdlib.h>
#include <stdio.h>
#include "sgx_stub.h"
#include <sgx_edger8r.h>
#include <sgx_uae_service.h>
#include <sgx_urts.h>
typedef void* (*func)();
static const char *dlerr= NULL;
static void _undefined_symbol (const char *symbol);
static void *_load_symbol(void *handle, const char *symbol, int *status);
#include <sys/types.h>
#include <inttypes.h>
int close_session_ocall(uint32_t sid, uint32_t timeout);
int create_session_ocall(uint32_t* sid, uint8_t* dh_msg1, uint32_t dh_msg1_size, uint32_t timeout);
int exchange_report_ocall(uint32_t sid, uint8_t* dh_msg2, uint32_t dh_msg2_size, uint8_t* dh_msg3, uint32_t dh_msg3_size, uint32_t timeout);
int invoke_service_ocall(uint8_t* pse_message_req, uint32_t pse_message_req_size, uint8_t* pse_message_resp, uint32_t pse_message_resp_size, uint32_t timeout);
int invoke_service_ocall(uint8_t* pse_message_req, uint32_t pse_message_req_size, uint8_t* pse_message_resp, uint32_t pse_message_resp_size, uint32_t timeout);
int sgx_thread_set_multiple_untrusted_events_ocall(const void **waiters, size_t total);
int sgx_thread_set_untrusted_event_ocall(const void *waiter);
int sgx_thread_setwait_untrusted_events_ocall(const void *waiter, const void *self);
int sgx_thread_wait_untrusted_event_ocall(const void *self);
void sgx_oc_cpuidex(int cpuinfo[4], int leaf, int subleaf);
;
static void *_load_libsgx_uae_service();
static void *_load_libsgx_urts();
static void *h_libsgx_uae_service= NULL;
static void *h_libsgx_urts= NULL;
static int l_libsgx_uae_service= 0;
static int l_libsgx_urts= 0;
static func p_sgx_register_wl_cert_chain= NULL;
static func p_invoke_service_ocall= NULL;
static func p_sgx_get_target_info= NULL;
static func p_sgx_thread_setwait_untrusted_events_ocall= NULL;
static func p_sgx_get_extended_epid_group_id= NULL;
static func p_close_session_ocall= NULL;
static func p_sgx_get_whitelist_size= NULL;
static func p_sgx_create_enclave_ex= NULL;
static func p_sgx_create_enclave= NULL;
static func p_sgx_get_quote_ex= NULL;
static func p_sgx_oc_cpuidex= NULL;
static func p_sgx_destroy_enclave= NULL;
static func p_create_session_ocall= NULL;
static func p_sgx_report_attestation_status= NULL;
static func p_sgx_get_whitelist= NULL;
static func p_sgx_create_enclave_from_buffer_ex= NULL;
static func p_sgx_get_quote= NULL;
static func p_sgx_get_quote_size= NULL;
static func p_sgx_ocall= NULL;
static func p_sgx_init_quote= NULL;
static func p_sgx_calc_quote_size= NULL;
static func p_sgx_thread_wait_untrusted_event_ocall= NULL;
static func p_sgx_ecall_switchless= NULL;
static func p_sgx_init_quote_ex= NULL;
static func p_sgx_create_encrypted_enclave= NULL;
static func p_sgx_thread_set_untrusted_event_ocall= NULL;
static func p_sgx_get_quote_size_ex= NULL;
static func p_sgx_ecall= NULL;
static func p_sgx_thread_set_multiple_untrusted_events_ocall= NULL;
static func p_exchange_report_ocall= NULL;
static int l_sgx_register_wl_cert_chain= 0;
static int l_invoke_service_ocall= 0;
static int l_sgx_get_target_info= 0;
static int l_sgx_thread_setwait_untrusted_events_ocall= 0;
static int l_sgx_get_extended_epid_group_id= 0;
static int l_close_session_ocall= 0;
static int l_sgx_get_whitelist_size= 0;
static int l_sgx_create_enclave_ex= 0;
static int l_sgx_create_enclave= 0;
static int l_sgx_get_quote_ex= 0;
static int l_sgx_oc_cpuidex= 0;
static int l_sgx_destroy_enclave= 0;
static int l_create_session_ocall= 0;
static int l_sgx_report_attestation_status= 0;
static int l_sgx_get_whitelist= 0;
static int l_sgx_create_enclave_from_buffer_ex= 0;
static int l_sgx_get_quote= 0;
static int l_sgx_get_quote_size= 0;
static int l_sgx_ocall= 0;
static int l_sgx_init_quote= 0;
static int l_sgx_calc_quote_size= 0;
static int l_sgx_thread_wait_untrusted_event_ocall= 0;
static int l_sgx_ecall_switchless= 0;
static int l_sgx_init_quote_ex= 0;
static int l_sgx_create_encrypted_enclave= 0;
static int l_sgx_thread_set_untrusted_event_ocall= 0;
static int l_sgx_get_quote_size_ex= 0;
static int l_sgx_ecall= 0;
static int l_sgx_thread_set_multiple_untrusted_events_ocall= 0;
static int l_exchange_report_ocall= 0;
static void _undefined_symbol (const char *symbol)
{
fprintf(stderr, "%s: %s\n", symbol, dlerr);
exit(1);
}
static void *_load_symbol(void *handle, const char *symbol, int *status)
{
void *hsym;
#ifdef _WIN32
hsym = GetProcAddress((HMODULE)handle, symbol);
*status = (dlerr == NULL) ? 1 : -1;
#else
dlerr= dlerror();
hsym= dlsym(handle, symbol);
dlerr= dlerror();
*status= ( dlerr == NULL ) ? 1 : -1;
#endif
return hsym;
}
static void *_load_libsgx_uae_service()
{
if ( l_libsgx_uae_service == 0 ) {
#ifdef _WIN32
h_libsgx_uae_service= LoadLibrary("libsgx_uae_service.dll");
#else
h_libsgx_uae_service= dlopen("libsgx_uae_service.so", RTLD_GLOBAL|RTLD_NOW);
#endif
l_libsgx_uae_service= ( h_libsgx_uae_service == NULL ) ? -1 : 1;
}
return h_libsgx_uae_service;
}
static void *_load_libsgx_urts()
{
if ( l_libsgx_urts == 0 ) {
#ifdef _WIN32
h_libsgx_urts= LoadLibrary("libsgx_urts.dll");
#else
h_libsgx_urts= dlopen("libsgx_urts.so", RTLD_GLOBAL|RTLD_NOW);
#endif
l_libsgx_urts= ( h_libsgx_urts == NULL ) ? -1 : 1;
}
return h_libsgx_urts;
}
int have_sgx_psw()
{
return (
_load_libsgx_uae_service() == NULL ||
_load_libsgx_urts() == NULL
) ? 0 : 1;
}
int have_sgx_ufunction(const char *name)
{
int status = 0;
_load_symbol(h_libsgx_uae_service, name, &status);
if ( status == 1 ) return 1;
_load_symbol(h_libsgx_urts, name, &status);
return (status == 1) ? 1 : 0;
}
void *get_sgx_ufunction(const char *name)
{
void *hsym= NULL;
int status = 0;
hsym= _load_symbol(h_libsgx_uae_service, name, &status);
if ( status == 1 ) return hsym;
_load_symbol(h_libsgx_urts, name, &status);
return (status == 1) ? hsym : NULL;
}
sgx_status_t sgx_register_wl_cert_chain(uint8_t *p_wl_cert_chain, uint32_t wl_cert_chain_size)
{
if ( l_sgx_register_wl_cert_chain == 0 ) {
if ( h_libsgx_uae_service == 0 ) _load_libsgx_uae_service();
*(void **)(&p_sgx_register_wl_cert_chain)= _load_symbol(h_libsgx_uae_service, "sgx_register_wl_cert_chain", &l_sgx_register_wl_cert_chain);
}
if ( l_sgx_register_wl_cert_chain == -1 ) _undefined_symbol("sgx_register_wl_cert_chain");
return (sgx_status_t) p_sgx_register_wl_cert_chain(p_wl_cert_chain, wl_cert_chain_size);
}
int invoke_service_ocall(uint8_t *pse_message_req, uint32_t pse_message_req_size, uint8_t *pse_message_resp, uint32_t pse_message_resp_size, uint32_t timeout)
{
if ( l_invoke_service_ocall == 0 ) {
if ( h_libsgx_uae_service == 0 ) _load_libsgx_uae_service();
*(void **)(&p_invoke_service_ocall)= _load_symbol(h_libsgx_uae_service, "invoke_service_ocall", &l_invoke_service_ocall);
}
if ( l_invoke_service_ocall == -1 ) _undefined_symbol("invoke_service_ocall");
return (int) p_invoke_service_ocall(pse_message_req, pse_message_req_size, pse_message_resp, pse_message_resp_size, timeout);
}
sgx_status_t sgx_get_target_info(const sgx_enclave_id_t enclave_id, sgx_target_info_t *target_info)
{
if ( l_sgx_get_target_info == 0 ) {
if ( h_libsgx_urts == 0 ) _load_libsgx_urts();
*(void **)(&p_sgx_get_target_info)= _load_symbol(h_libsgx_urts, "sgx_get_target_info", &l_sgx_get_target_info);
}
if ( l_sgx_get_target_info == -1 ) _undefined_symbol("sgx_get_target_info");
return (sgx_status_t) p_sgx_get_target_info(enclave_id, target_info);
}
int sgx_thread_setwait_untrusted_events_ocall(const void *waiter, const void *self)
{
if ( l_sgx_thread_setwait_untrusted_events_ocall == 0 ) {
if ( h_libsgx_urts == 0 ) _load_libsgx_urts();
*(void **)(&p_sgx_thread_setwait_untrusted_events_ocall)= _load_symbol(h_libsgx_urts, "sgx_thread_setwait_untrusted_events_ocall", &l_sgx_thread_setwait_untrusted_events_ocall);
}
if ( l_sgx_thread_setwait_untrusted_events_ocall == -1 ) _undefined_symbol("sgx_thread_setwait_untrusted_events_ocall");
return (int) p_sgx_thread_setwait_untrusted_events_ocall(waiter, self);
}
sgx_status_t sgx_get_extended_epid_group_id(uint32_t *p_extended_epid_group_id)
{
if ( l_sgx_get_extended_epid_group_id == 0 ) {
if ( h_libsgx_uae_service == 0 ) _load_libsgx_uae_service();
*(void **)(&p_sgx_get_extended_epid_group_id)= _load_symbol(h_libsgx_uae_service, "sgx_get_extended_epid_group_id", &l_sgx_get_extended_epid_group_id);
}
if ( l_sgx_get_extended_epid_group_id == -1 ) _undefined_symbol("sgx_get_extended_epid_group_id");
return (sgx_status_t) p_sgx_get_extended_epid_group_id(p_extended_epid_group_id);
}
int close_session_ocall(uint32_t sid, uint32_t timeout)
{
if ( l_close_session_ocall == 0 ) {
if ( h_libsgx_uae_service == 0 ) _load_libsgx_uae_service();
*(void **)(&p_close_session_ocall)= _load_symbol(h_libsgx_uae_service, "close_session_ocall", &l_close_session_ocall);
}
if ( l_close_session_ocall == -1 ) _undefined_symbol("close_session_ocall");
return (int) p_close_session_ocall(sid, timeout);
}
sgx_status_t sgx_get_whitelist_size(uint32_t *p_whitelist_size)
{
if ( l_sgx_get_whitelist_size == 0 ) {
if ( h_libsgx_uae_service == 0 ) _load_libsgx_uae_service();
*(void **)(&p_sgx_get_whitelist_size)= _load_symbol(h_libsgx_uae_service, "sgx_get_whitelist_size", &l_sgx_get_whitelist_size);
}
if ( l_sgx_get_whitelist_size == -1 ) _undefined_symbol("sgx_get_whitelist_size");
return (sgx_status_t) p_sgx_get_whitelist_size(p_whitelist_size);
}
sgx_status_t sgx_create_enclave_ex(const char *file_name, const int debug, sgx_launch_token_t *launch_token, int *launch_token_updated, sgx_enclave_id_t *enclave_id, sgx_misc_attribute_t *misc_attr, const uint32_t ex_features, const void **ex_features_p)
{
if ( l_sgx_create_enclave_ex == 0 ) {
if ( h_libsgx_urts == 0 ) _load_libsgx_urts();
*(void **)(&p_sgx_create_enclave_ex)= _load_symbol(h_libsgx_urts, "sgx_create_enclave_ex", &l_sgx_create_enclave_ex);
}
if ( l_sgx_create_enclave_ex == -1 ) _undefined_symbol("sgx_create_enclave_ex");
return (sgx_status_t) p_sgx_create_enclave_ex(file_name, debug, launch_token, launch_token_updated, enclave_id, misc_attr, ex_features, ex_features_p);
}
sgx_status_t sgx_create_enclave(const char *file_name, const int debug, sgx_launch_token_t *launch_token, int *launch_token_updated, sgx_enclave_id_t *enclave_id, sgx_misc_attribute_t *misc_attr)
{
if ( l_sgx_create_enclave == 0 ) {
if ( h_libsgx_urts == 0 ) _load_libsgx_urts();
*(void **)(&p_sgx_create_enclave)= _load_symbol(h_libsgx_urts, "sgx_create_enclave", &l_sgx_create_enclave);
}
if ( l_sgx_create_enclave == -1 ) _undefined_symbol("sgx_create_enclave");
return (sgx_status_t) p_sgx_create_enclave(file_name, debug, launch_token, launch_token_updated, enclave_id, misc_attr);
}
sgx_status_t sgx_get_quote_ex(const sgx_report_t *p_app_report, const sgx_att_key_id_t *p_att_key_id, sgx_qe_report_info_t *p_qe_report_info, uint8_t *p_quote, uint32_t quote_size)
{
if ( l_sgx_get_quote_ex == 0 ) {
if ( h_libsgx_uae_service == 0 ) _load_libsgx_uae_service();
*(void **)(&p_sgx_get_quote_ex)= _load_symbol(h_libsgx_uae_service, "sgx_get_quote_ex", &l_sgx_get_quote_ex);
}
if ( l_sgx_get_quote_ex == -1 ) _undefined_symbol("sgx_get_quote_ex");
return (sgx_status_t) p_sgx_get_quote_ex(p_app_report, p_att_key_id, p_qe_report_info, p_quote, quote_size);
}
void sgx_oc_cpuidex(int *cpuinfo, int leaf, int subleaf)
{
if ( l_sgx_oc_cpuidex == 0 ) {
if ( h_libsgx_urts == 0 ) _load_libsgx_urts();
*(void **)(&p_sgx_oc_cpuidex)= _load_symbol(h_libsgx_urts, "sgx_oc_cpuidex", &l_sgx_oc_cpuidex);
}
if ( l_sgx_oc_cpuidex == -1 ) _undefined_symbol("sgx_oc_cpuidex");
return (void) p_sgx_oc_cpuidex(cpuinfo, leaf, subleaf);
}
sgx_status_t sgx_destroy_enclave(const sgx_enclave_id_t enclave_id)
{
if ( l_sgx_destroy_enclave == 0 ) {
if ( h_libsgx_urts == 0 ) _load_libsgx_urts();
*(void **)(&p_sgx_destroy_enclave)= _load_symbol(h_libsgx_urts, "sgx_destroy_enclave", &l_sgx_destroy_enclave);
}
if ( l_sgx_destroy_enclave == -1 ) _undefined_symbol("sgx_destroy_enclave");
return (sgx_status_t) p_sgx_destroy_enclave(enclave_id);
}
int create_session_ocall(uint32_t *sid, uint8_t *dh_msg1, uint32_t dh_msg1_size, uint32_t timeout)
{
if ( l_create_session_ocall == 0 ) {
if ( h_libsgx_uae_service == 0 ) _load_libsgx_uae_service();
*(void **)(&p_create_session_ocall)= _load_symbol(h_libsgx_uae_service, "create_session_ocall", &l_create_session_ocall);
}
if ( l_create_session_ocall == -1 ) _undefined_symbol("create_session_ocall");
return (int) p_create_session_ocall(sid, dh_msg1, dh_msg1_size, timeout);
}
sgx_status_t sgx_report_attestation_status(const sgx_platform_info_t *p_platform_info, int attestation_status, sgx_update_info_bit_t *p_update_info)
{
if ( l_sgx_report_attestation_status == 0 ) {
if ( h_libsgx_uae_service == 0 ) _load_libsgx_uae_service();
*(void **)(&p_sgx_report_attestation_status)= _load_symbol(h_libsgx_uae_service, "sgx_report_attestation_status", &l_sgx_report_attestation_status);
}
if ( l_sgx_report_attestation_status == -1 ) _undefined_symbol("sgx_report_attestation_status");
return (sgx_status_t) p_sgx_report_attestation_status(p_platform_info, attestation_status, p_update_info);
}
sgx_status_t sgx_get_whitelist(uint8_t *p_whitelist, uint32_t whitelist_size)
{
if ( l_sgx_get_whitelist == 0 ) {
if ( h_libsgx_uae_service == 0 ) _load_libsgx_uae_service();
*(void **)(&p_sgx_get_whitelist)= _load_symbol(h_libsgx_uae_service, "sgx_get_whitelist", &l_sgx_get_whitelist);
}
if ( l_sgx_get_whitelist == -1 ) _undefined_symbol("sgx_get_whitelist");
return (sgx_status_t) p_sgx_get_whitelist(p_whitelist, whitelist_size);
}
sgx_status_t sgx_create_enclave_from_buffer_ex(uint8_t *buffer, size_t buffer_size, const int debug, sgx_enclave_id_t *enclave_id, sgx_misc_attribute_t *misc_attr, const uint32_t ex_features, const void **ex_features_p)
{
if ( l_sgx_create_enclave_from_buffer_ex == 0 ) {
if ( h_libsgx_urts == 0 ) _load_libsgx_urts();
*(void **)(&p_sgx_create_enclave_from_buffer_ex)= _load_symbol(h_libsgx_urts, "sgx_create_enclave_from_buffer_ex", &l_sgx_create_enclave_from_buffer_ex);
}
if ( l_sgx_create_enclave_from_buffer_ex == -1 ) _undefined_symbol("sgx_create_enclave_from_buffer_ex");
return (sgx_status_t) p_sgx_create_enclave_from_buffer_ex(buffer, buffer_size, debug, enclave_id, misc_attr, ex_features, ex_features_p);
}
sgx_status_t sgx_get_quote(const sgx_report_t *p_report, sgx_quote_sign_type_t quote_type, const sgx_spid_t *p_spid, const sgx_quote_nonce_t *p_nonce, const uint8_t *p_sig_rl, uint32_t sig_rl_size, sgx_report_t *p_qe_report, sgx_quote_t *p_quote, uint32_t quote_size)
{
if ( l_sgx_get_quote == 0 ) {
if ( h_libsgx_uae_service == 0 ) _load_libsgx_uae_service();
*(void **)(&p_sgx_get_quote)= _load_symbol(h_libsgx_uae_service, "sgx_get_quote", &l_sgx_get_quote);
}
if ( l_sgx_get_quote == -1 ) _undefined_symbol("sgx_get_quote");
return (sgx_status_t) p_sgx_get_quote(p_report, quote_type, p_spid, p_nonce, p_sig_rl, sig_rl_size, p_qe_report, p_quote, quote_size);
}
sgx_status_t sgx_get_quote_size(const uint8_t *p_sig_rl, uint32_t *p_quote_size)
{
if ( l_sgx_get_quote_size == 0 ) {
if ( h_libsgx_uae_service == 0 ) _load_libsgx_uae_service();
*(void **)(&p_sgx_get_quote_size)= _load_symbol(h_libsgx_uae_service, "sgx_get_quote_size", &l_sgx_get_quote_size);
}
if ( l_sgx_get_quote_size == -1 ) _undefined_symbol("sgx_get_quote_size");
return (sgx_status_t) p_sgx_get_quote_size(p_sig_rl, p_quote_size);
}
sgx_status_t sgx_ocall(const unsigned int index, void *ms)
{
if ( l_sgx_ocall == 0 ) {
if ( h_libsgx_urts == 0 ) _load_libsgx_urts();
*(void **)(&p_sgx_ocall)= _load_symbol(h_libsgx_urts, "sgx_ocall", &l_sgx_ocall);
}
if ( l_sgx_ocall == -1 ) _undefined_symbol("sgx_ocall");
return (sgx_status_t) p_sgx_ocall(index, ms);
}
sgx_status_t sgx_init_quote(sgx_target_info_t *p_target_info, sgx_epid_group_id_t *p_gid)
{
if ( l_sgx_init_quote == 0 ) {
if ( h_libsgx_uae_service == 0 ) _load_libsgx_uae_service();
*(void **)(&p_sgx_init_quote)= _load_symbol(h_libsgx_uae_service, "sgx_init_quote", &l_sgx_init_quote);
}
if ( l_sgx_init_quote == -1 ) _undefined_symbol("sgx_init_quote");
return (sgx_status_t) p_sgx_init_quote(p_target_info, p_gid);
}
sgx_status_t sgx_calc_quote_size(const uint8_t *p_sig_rl, uint32_t sig_rl_size, uint32_t *p_quote_size)
{
if ( l_sgx_calc_quote_size == 0 ) {
if ( h_libsgx_uae_service == 0 ) _load_libsgx_uae_service();
*(void **)(&p_sgx_calc_quote_size)= _load_symbol(h_libsgx_uae_service, "sgx_calc_quote_size", &l_sgx_calc_quote_size);
}
if ( l_sgx_calc_quote_size == -1 ) _undefined_symbol("sgx_calc_quote_size");
return (sgx_status_t) p_sgx_calc_quote_size(p_sig_rl, sig_rl_size, p_quote_size);
}
int sgx_thread_wait_untrusted_event_ocall(const void *self)
{
if ( l_sgx_thread_wait_untrusted_event_ocall == 0 ) {
if ( h_libsgx_urts == 0 ) _load_libsgx_urts();
*(void **)(&p_sgx_thread_wait_untrusted_event_ocall)= _load_symbol(h_libsgx_urts, "sgx_thread_wait_untrusted_event_ocall", &l_sgx_thread_wait_untrusted_event_ocall);
}
if ( l_sgx_thread_wait_untrusted_event_ocall == -1 ) _undefined_symbol("sgx_thread_wait_untrusted_event_ocall");
return (int) p_sgx_thread_wait_untrusted_event_ocall(self);
}
sgx_status_t sgx_ecall_switchless(const sgx_enclave_id_t eid, const int index, const void *ocall_table, void *ms)
{
if ( l_sgx_ecall_switchless == 0 ) {
if ( h_libsgx_urts == 0 ) _load_libsgx_urts();
*(void **)(&p_sgx_ecall_switchless)= _load_symbol(h_libsgx_urts, "sgx_ecall_switchless", &l_sgx_ecall_switchless);
}
if ( l_sgx_ecall_switchless == -1 ) _undefined_symbol("sgx_ecall_switchless");
return (sgx_status_t) p_sgx_ecall_switchless(eid, index, ocall_table, ms);
}
#ifdef UAE_SERVICE_HAS_BOOL
sgx_status_t sgx_init_quote_ex(const sgx_att_key_id_t *p_att_key_id, sgx_target_info_t *p_qe_target_info, uint8_t refresh_att_key, size_t *p_pub_key_id_size, uint8_t *p_pub_key_id)
#else
sgx_status_t sgx_init_quote_ex(const sgx_att_key_id_t *p_att_key_id, sgx_target_info_t *p_qe_target_info, size_t *p_pub_key_id_size, uint8_t *p_pub_key_id)
#endif
{
if ( l_sgx_init_quote_ex == 0 ) {
if ( h_libsgx_uae_service == 0 ) _load_libsgx_uae_service();
*(void **)(&p_sgx_init_quote_ex)= _load_symbol(h_libsgx_uae_service, "sgx_init_quote_ex", &l_sgx_init_quote_ex);
}
if ( l_sgx_init_quote_ex == -1 ) _undefined_symbol("sgx_init_quote_ex");
#ifdef UAE_SERVICE_HAS_BOOL
return (sgx_status_t) p_sgx_init_quote_ex(p_att_key_id, p_qe_target_info, refresh_att_key, p_pub_key_id_size, p_pub_key_id);
#else
return (sgx_status_t) p_sgx_init_quote_ex(p_att_key_id, p_qe_target_info, p_pub_key_id_size, p_pub_key_id);
#endif
}
sgx_status_t sgx_create_encrypted_enclave(const char *file_name, const int debug, sgx_launch_token_t *launch_token, int *launch_token_updated, sgx_enclave_id_t *enclave_id, sgx_misc_attribute_t *misc_attr, uint8_t *sealed_key)
{
if ( l_sgx_create_encrypted_enclave == 0 ) {
if ( h_libsgx_urts == 0 ) _load_libsgx_urts();
*(void **)(&p_sgx_create_encrypted_enclave)= _load_symbol(h_libsgx_urts, "sgx_create_encrypted_enclave", &l_sgx_create_encrypted_enclave);
}
if ( l_sgx_create_encrypted_enclave == -1 ) _undefined_symbol("sgx_create_encrypted_enclave");
return (sgx_status_t) p_sgx_create_encrypted_enclave(file_name, debug, launch_token, launch_token_updated, enclave_id, misc_attr, sealed_key);
}
int sgx_thread_set_untrusted_event_ocall(const void *waiter)
{
if ( l_sgx_thread_set_untrusted_event_ocall == 0 ) {
if ( h_libsgx_urts == 0 ) _load_libsgx_urts();
*(void **)(&p_sgx_thread_set_untrusted_event_ocall)= _load_symbol(h_libsgx_urts, "sgx_thread_set_untrusted_event_ocall", &l_sgx_thread_set_untrusted_event_ocall);
}
if ( l_sgx_thread_set_untrusted_event_ocall == -1 ) _undefined_symbol("sgx_thread_set_untrusted_event_ocall");
return (int) p_sgx_thread_set_untrusted_event_ocall(waiter);
}
sgx_status_t sgx_get_quote_size_ex(const sgx_att_key_id_t *p_att_key_id, uint32_t *p_quote_size)
{
if ( l_sgx_get_quote_size_ex == 0 ) {
if ( h_libsgx_uae_service == 0 ) _load_libsgx_uae_service();
*(void **)(&p_sgx_get_quote_size_ex)= _load_symbol(h_libsgx_uae_service, "sgx_get_quote_size_ex", &l_sgx_get_quote_size_ex);
}
if ( l_sgx_get_quote_size_ex == -1 ) _undefined_symbol("sgx_get_quote_size_ex");
return (sgx_status_t) p_sgx_get_quote_size_ex(p_att_key_id, p_quote_size);
}
sgx_status_t sgx_ecall(const sgx_enclave_id_t eid, const int index, const void *ocall_table, void *ms)
{
if ( l_sgx_ecall == 0 ) {
if ( h_libsgx_urts == 0 ) _load_libsgx_urts();
*(void **)(&p_sgx_ecall)= _load_symbol(h_libsgx_urts, "sgx_ecall", &l_sgx_ecall);
}
if ( l_sgx_ecall == -1 ) _undefined_symbol("sgx_ecall");
return (sgx_status_t) p_sgx_ecall(eid, index, ocall_table, ms);
}
int sgx_thread_set_multiple_untrusted_events_ocall(const void **waiters, size_t total)
{
if ( l_sgx_thread_set_multiple_untrusted_events_ocall == 0 ) {
if ( h_libsgx_urts == 0 ) _load_libsgx_urts();
*(void **)(&p_sgx_thread_set_multiple_untrusted_events_ocall)= _load_symbol(h_libsgx_urts, "sgx_thread_set_multiple_untrusted_events_ocall", &l_sgx_thread_set_multiple_untrusted_events_ocall);
}
if ( l_sgx_thread_set_multiple_untrusted_events_ocall == -1 ) _undefined_symbol("sgx_thread_set_multiple_untrusted_events_ocall");
return (int) p_sgx_thread_set_multiple_untrusted_events_ocall(waiters, total);
}
int exchange_report_ocall(uint32_t sid, uint8_t *dh_msg2, uint32_t dh_msg2_size, uint8_t *dh_msg3, uint32_t dh_msg3_size, uint32_t timeout)
{
if ( l_exchange_report_ocall == 0 ) {
if ( h_libsgx_uae_service == 0 ) _load_libsgx_uae_service();
*(void **)(&p_exchange_report_ocall)= _load_symbol(h_libsgx_uae_service, "exchange_report_ocall", &l_exchange_report_ocall);
}
if ( l_exchange_report_ocall == -1 ) _undefined_symbol("exchange_report_ocall");
return (int) p_exchange_report_ocall(sid, dh_msg2, dh_msg2_size, dh_msg3, dh_msg3_size, timeout);
}