-
Notifications
You must be signed in to change notification settings - Fork 201
/
pal_main.c
835 lines (708 loc) · 31.6 KB
/
pal_main.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
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
/* SPDX-License-Identifier: LGPL-3.0-or-later */
/* Copyright (C) 2014 Stony Brook University
* Copyright (C) 2022 Intel Corporation
* Michał Kowalczyk <[email protected]>
* Vijay Dhanraj <[email protected]>
*/
/*
* This file contains the main function of the PAL loader, which loads and processes environment,
* arguments and manifest.
*/
#include <stdalign.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdnoreturn.h>
#include "api.h"
#include "enclave_tf.h"
#include "init.h"
#include "pal.h"
#include "pal_internal.h"
#include "pal_linux.h"
#include "pal_linux_defs.h"
#include "pal_linux_error.h"
#include "pal_rpc_queue.h"
#include "pal_rtld.h"
#include "pal_topology.h"
#include "toml.h"
#include "toml_utils.h"
struct pal_linuxsgx_state g_pal_linuxsgx_state;
PAL_SESSION_KEY g_master_key = {0};
/* Limit of PAL memory available for _PalVirtualMemoryAlloc(PAL_ALLOC_INTERNAL) */
size_t g_pal_internal_mem_size = PAL_INITIAL_MEM_SIZE;
const size_t g_page_size = PRESET_PAGESIZE;
void _PalGetAvailableUserAddressRange(void** out_start, void** out_end) {
*out_start = g_pal_linuxsgx_state.heap_min;
*out_end = g_pal_linuxsgx_state.heap_max;
/* Keep some heap for internal PAL objects allocated at runtime (recall that LibOS does not keep
* track of PAL memory, so without this limit it could overwrite internal PAL memory). See also
* `enclave_pages.c`. */
*out_end = SATURATED_P_SUB(*out_end, g_pal_internal_mem_size, *out_start);
if (*out_end <= *out_start) {
log_error("Not enough enclave memory, please increase enclave size!");
ocall_exit(1, /*is_exitgroup=*/true);
}
}
static bool verify_and_init_rpc_queue(void* untrusted_rpc_queue) {
if (!untrusted_rpc_queue) {
/* user app didn't request RPC queue (i.e., the app didn't request exitless syscalls) */
return true;
}
if (!sgx_is_valid_untrusted_ptr(untrusted_rpc_queue, sizeof(*g_rpc_queue),
alignof(__typeof__(*g_rpc_queue)))) {
/* malicious RPC queue object, return error */
return false;
}
g_rpc_queue = untrusted_rpc_queue;
return true;
}
/*
* Takes a pointer+size to an untrusted memory region containing a
* NUL-separated list of strings. It builds an argv-style list in trusted memory
* with those strings.
*
* It is responsible for handling the access to untrusted memory safely
* (returns NULL on error) and ensures that all strings are properly
* terminated. The content of the strings is NOT further sanitized.
*
* The argv-style list is allocated on the heap and the caller is responsible
* to free it (For argv and envp we rely on auto free on termination in
* practice).
*/
/* This function doesn't clean up resources on failure as we terminate the process anyway. */
static const char** make_argv_list(void* uptr_src, size_t src_size) {
const char** argv;
if (src_size == 0) {
argv = malloc(sizeof(char*));
if (argv)
argv[0] = NULL;
return argv;
}
char* data = malloc(src_size);
if (!data) {
return NULL;
}
if (!sgx_copy_to_enclave(data, src_size, uptr_src, src_size)) {
goto fail;
}
data[src_size - 1] = '\0';
size_t argc = 0;
for (size_t i = 0; i < src_size; i++) {
if (data[i] == '\0') {
argc++;
}
}
size_t argv_size;
if (__builtin_mul_overflow(argc + 1, sizeof(char*), &argv_size)) {
goto fail;
}
argv = malloc(argv_size);
if (!argv) {
goto fail;
}
argv[argc] = NULL;
size_t data_i = 0;
for (size_t arg_i = 0; arg_i < argc; arg_i++) {
argv[arg_i] = &data[data_i];
while (data[data_i] != '\0') {
data_i++;
}
data_i++;
}
return argv;
fail:
free(data);
return NULL;
}
/* Without this, `(int)imported_bool` may actually return something outside of {0, 1}. */
static void coerce_untrusted_bool(bool* ptr) {
static_assert(sizeof(bool) == sizeof(unsigned char), "Unsupported compiler");
*ptr = !!READ_ONCE(*(unsigned char*)ptr);
}
/* `*topo_info` should already be deep-copied into the enclave. */
static int sanitize_topo_info(struct pal_topo_info* topo_info) {
for (size_t i = 0; i < topo_info->caches_cnt; i++) {
struct pal_cache_info* cache = &topo_info->caches[i];
if (cache->type != CACHE_TYPE_DATA &&
cache->type != CACHE_TYPE_INSTRUCTION &&
cache->type != CACHE_TYPE_UNIFIED) {
return -PAL_ERROR_INVAL;
}
if ( !IS_IN_RANGE_INCL(cache->level, 1, 3)
|| !IS_IN_RANGE_INCL(cache->size, 1, 1 << 30)
|| !IS_IN_RANGE_INCL(cache->coherency_line_size, 1, 1 << 16)
|| !IS_IN_RANGE_INCL(cache->number_of_sets, 1, 1 << 30)
|| !IS_IN_RANGE_INCL(cache->physical_line_partition, 1, 1 << 16))
return -PAL_ERROR_INVAL;
}
if (topo_info->threads_cnt == 0 || !topo_info->threads[0].is_online) {
// Linux requires this
return -PAL_ERROR_INVAL;
}
for (size_t i = 0; i < topo_info->threads_cnt; i++) {
struct pal_cpu_thread_info* thread = &topo_info->threads[i];
coerce_untrusted_bool(&thread->is_online);
if (thread->is_online) {
if (thread->core_id >= topo_info->cores_cnt)
return -PAL_ERROR_INVAL;
/* Verify that the cache array has no holes... */
for (size_t j = 0; j < MAX_CACHES - 1; j++)
if (thread->ids_of_caches[j] == (size_t)-1
&& thread->ids_of_caches[j + 1] != (size_t)-1)
return -PAL_ERROR_INVAL;
/* ...and valid indices. */
for (size_t j = 0; j < MAX_CACHES; j++) {
if (thread->ids_of_caches[j] != (size_t)-1
&& thread->ids_of_caches[j] >= topo_info->caches_cnt)
return -PAL_ERROR_INVAL;
}
} else {
// Not required, just a hardening in case we accidentally accessed offline CPU's fields.
thread->core_id = 0;
for (size_t j = 0; j < MAX_CACHES; j++)
thread->ids_of_caches[j] = 0;
}
}
for (size_t i = 0; i < topo_info->cores_cnt; i++) {
if (topo_info->cores[i].socket_id >= topo_info->sockets_cnt)
return -PAL_ERROR_INVAL;
if (topo_info->cores[i].node_id >= topo_info->numa_nodes_cnt)
return -PAL_ERROR_INVAL;
}
if (!topo_info->numa_nodes[0].is_online) {
// Linux requires this
return -PAL_ERROR_INVAL;
}
for (size_t i = 0; i < topo_info->numa_nodes_cnt; i++) {
struct pal_numa_node_info* node = &topo_info->numa_nodes[i];
coerce_untrusted_bool(&node->is_online);
if (node->is_online) {
for (size_t j = 0; j < HUGEPAGES_MAX; j++) {
size_t unused; // can't use __builtin_mul_overflow_p because clang doesn't have it.
if (__builtin_mul_overflow(node->nr_hugepages[j], hugepage_size[j], &unused))
return -PAL_ERROR_INVAL;
}
} else {
/* Not required, just a hardening in case we accidentally accessed offline node's
* fields. */
for (size_t j = 0; j < HUGEPAGES_MAX; j++)
node->nr_hugepages[j] = 0;
}
}
for (size_t i = 0; i < topo_info->numa_nodes_cnt; i++) {
/* Note: Linux doesn't guarantee that distance i -> i is 0, so we aren't checking this (it's
* actually non-zero on all machines we have). */
for (size_t j = 0; j < topo_info->numa_nodes_cnt; j++) {
if ( topo_info->numa_distance_matrix[i*topo_info->numa_nodes_cnt + j]
!= topo_info->numa_distance_matrix[j*topo_info->numa_nodes_cnt + i])
return -PAL_ERROR_INVAL;
}
}
return 0;
}
static int import_and_sanitize_topo_info(void* uptr_topo_info) {
/* Import topology information via an untrusted pointer. This is only a shallow copy and we use
* this temp variable to do deep copy into `g_pal_public_state.topo_info` */
struct pal_topo_info shallow_topo_info;
if (!sgx_copy_to_enclave(&shallow_topo_info, sizeof(shallow_topo_info),
uptr_topo_info, sizeof(struct pal_topo_info))) {
return -PAL_ERROR_DENIED;
}
struct pal_topo_info* topo_info = &g_pal_public_state.topo_info;
size_t caches_cnt = shallow_topo_info.caches_cnt;
size_t threads_cnt = shallow_topo_info.threads_cnt;
size_t cores_cnt = shallow_topo_info.cores_cnt;
size_t sockets_cnt = shallow_topo_info.sockets_cnt;
size_t numa_nodes_cnt = shallow_topo_info.numa_nodes_cnt;
struct pal_cache_info* caches = sgx_import_array_to_enclave(shallow_topo_info.caches, sizeof(*caches), caches_cnt);
struct pal_cpu_thread_info* threads = sgx_import_array_to_enclave(shallow_topo_info.threads, sizeof(*threads), threads_cnt);
struct pal_cpu_core_info* cores = sgx_import_array_to_enclave(shallow_topo_info.cores, sizeof(*cores), cores_cnt);
struct pal_socket_info* sockets = sgx_import_array_to_enclave(shallow_topo_info.sockets, sizeof(*sockets), sockets_cnt);
struct pal_numa_node_info* numa_nodes = sgx_import_array_to_enclave(shallow_topo_info.numa_nodes, sizeof(*numa_nodes), numa_nodes_cnt);
size_t* distances = sgx_import_array2d_to_enclave(shallow_topo_info.numa_distance_matrix,
sizeof(*distances),
numa_nodes_cnt,
numa_nodes_cnt);
if (!caches || !threads || !cores || !sockets || !numa_nodes || !distances) {
return -PAL_ERROR_NOMEM;
}
topo_info->caches = caches;
topo_info->threads = threads;
topo_info->cores = cores;
topo_info->sockets = sockets;
topo_info->numa_nodes = numa_nodes;
topo_info->numa_distance_matrix = distances;
topo_info->caches_cnt = caches_cnt;
topo_info->threads_cnt = threads_cnt;
topo_info->cores_cnt = cores_cnt;
topo_info->sockets_cnt = sockets_cnt;
topo_info->numa_nodes_cnt = numa_nodes_cnt;
return sanitize_topo_info(topo_info);
}
/*
* Gramine assumes that the hostname is valid when:
* - the length of the hostname is below or equal to 255 characters (including '\0'),
* - the length of a single label is between 1 and 63,
* - every label is separated with '.',
* - the hostname doesn't start or end with '.' and '-',
* - the hostname contains only alphanumeric characters, '-', and '.',
* These rules were taken from:
* - RFC1123,
* - RFC0952,
* - RFC2181.
*/
static bool is_hostname_valid(const char* hostname) {
const char* ptr = hostname;
size_t label_len = 0;
if (*ptr == '-')
return false;
while (*ptr != 0x00) {
if (('a' <= *ptr && *ptr <= 'z')
|| ('A' <= *ptr && *ptr <= 'Z')
|| ('0' <= *ptr && *ptr <= '9')
|| *ptr == '-') {
label_len++;
} else if (*ptr == '.') {
if (label_len == 0 || label_len > 63) {
return false;
}
label_len = 0;
} else {
return false;
}
ptr++;
}
if (ptr - hostname >= PAL_HOSTNAME_MAX)
return false;
if (label_len == 0 || label_len > 63)
return false;
/* rewind to last character */
ptr--;
if (*ptr == '-')
return false;
return true;
}
static int import_and_init_extra_runtime_domain_names(struct pal_dns_host_conf* uptr_dns_conf) {
struct pal_dns_host_conf* pub_dns = &g_pal_public_state.dns_host;
if (!g_pal_public_state.extra_runtime_domain_names_conf)
return 0;
struct pal_dns_host_conf untrusted_dns;
if (!sgx_copy_to_enclave(&untrusted_dns, sizeof(untrusted_dns), uptr_dns_conf,
sizeof(*uptr_dns_conf))) {
log_error("Unable to read host dns info");
return -EINVAL;
}
if (untrusted_dns.nsaddr_list_count > PAL_MAX_NAMESPACES) {
log_error("Too many nameservers provided");
return -EINVAL;
}
pub_dns->nsaddr_list_count = untrusted_dns.nsaddr_list_count;
for (size_t i = 0; i < pub_dns->nsaddr_list_count; i++) {
coerce_untrusted_bool(&untrusted_dns.nsaddr_list[i].is_ipv6);
/* All binary IP addresses are valid. */
if (!untrusted_dns.nsaddr_list[i].is_ipv6) {
pub_dns->nsaddr_list[i].ipv4 = untrusted_dns.nsaddr_list[i].ipv4;
pub_dns->nsaddr_list[i].is_ipv6 = false;
} else {
memcpy(&pub_dns->nsaddr_list[i].ipv6, &untrusted_dns.nsaddr_list[i].ipv6,
sizeof(pub_dns->nsaddr_list[i].ipv6));
pub_dns->nsaddr_list[i].is_ipv6 = true;
}
}
if (untrusted_dns.dn_search_count > PAL_MAX_DN_SEARCH) {
log_error("Too many search entries provided");
return -EINVAL;
}
size_t j = 0;
for (size_t i = 0; i < untrusted_dns.dn_search_count; i++) {
untrusted_dns.dn_search[i][PAL_HOSTNAME_MAX - 1] = 0x00;
if (!is_hostname_valid(untrusted_dns.dn_search[i])) {
log_warning("The search domain name %s is invalid, skipping it", untrusted_dns.dn_search[i]);
continue;
}
memcpy(pub_dns->dn_search[j], untrusted_dns.dn_search[i], sizeof(pub_dns->dn_search[j]));
j++;
}
pub_dns->dn_search_count = j;
coerce_untrusted_bool(&untrusted_dns.inet6);
coerce_untrusted_bool(&untrusted_dns.rotate);
pub_dns->inet6 = untrusted_dns.inet6;
pub_dns->rotate = untrusted_dns.rotate;
untrusted_dns.hostname[sizeof(untrusted_dns.hostname) - 1] = 0x00;
if (!is_hostname_valid(untrusted_dns.hostname)) {
log_warning("The hostname on the host seems to be invalid. "
"The Gramine hostname will be set to \"localhost\".");
} else {
memcpy(pub_dns->hostname, untrusted_dns.hostname, sizeof(pub_dns->hostname));
}
return 0;
}
extern void* g_enclave_base;
extern void* g_enclave_top;
extern bool g_allowed_files_warn;
static int print_warnings_on_insecure_configs(PAL_HANDLE parent_process) {
int ret;
if (parent_process) {
/* Warn only in the first process. */
return 0;
}
/* TODO: `sgx.insecure__protected_files_key` is deprecated in v1.2, remove two versions
* later. */
bool verbose_log_level = false;
bool sgx_debug = false;
bool use_cmdline_argv = false;
bool use_host_env = false;
bool disable_aslr = false;
bool allow_eventfd = false;
bool allow_all_files = false;
bool use_allowed_files = g_allowed_files_warn;
bool protected_files_key = false;
bool encrypted_files_keys = false;
char* log_level_str = NULL;
char* protected_files_key_str = NULL;
ret = toml_string_in(g_pal_public_state.manifest_root, "loader.log_level", &log_level_str);
if (ret < 0)
goto out;
if (log_level_str && strcmp(log_level_str, "none") && strcmp(log_level_str, "error"))
verbose_log_level = true;
ret = toml_bool_in(g_pal_public_state.manifest_root, "sgx.debug",
/*defaultval=*/false, &sgx_debug);
if (ret < 0)
goto out;
ret = toml_bool_in(g_pal_public_state.manifest_root, "loader.insecure__use_cmdline_argv",
/*defaultval=*/false, &use_cmdline_argv);
if (ret < 0)
goto out;
ret = toml_bool_in(g_pal_public_state.manifest_root, "loader.insecure__use_host_env",
/*defaultval=*/false, &use_host_env);
if (ret < 0)
goto out;
ret = toml_bool_in(g_pal_public_state.manifest_root, "loader.insecure__disable_aslr",
/*defaultval=*/false, &disable_aslr);
if (ret < 0)
goto out;
ret = toml_bool_in(g_pal_public_state.manifest_root, "sys.insecure__allow_eventfd",
/*defaultval=*/false, &allow_eventfd);
if (ret < 0)
goto out;
if (get_file_check_policy() == FILE_CHECK_POLICY_ALLOW_ALL_BUT_LOG)
allow_all_files = true;
ret = toml_string_in(g_pal_public_state.manifest_root, "sgx.insecure__protected_files_key",
&protected_files_key_str);
if (ret < 0)
goto out;
if (protected_files_key_str)
protected_files_key = true;
toml_table_t* manifest_fs = toml_table_in(g_pal_public_state.manifest_root, "fs");
if (manifest_fs) {
toml_table_t* manifest_fs_keys = toml_table_in(manifest_fs, "insecure__keys");
if (manifest_fs_keys) {
ret = toml_table_nkval(manifest_fs_keys);
if (ret < 0)
goto out;
if (ret > 0)
encrypted_files_keys = true;
}
}
if (!verbose_log_level && !sgx_debug && !use_cmdline_argv && !use_host_env && !disable_aslr &&
!allow_eventfd && !allow_all_files && !use_allowed_files && !protected_files_key &&
!encrypted_files_keys) {
/* there are no insecure configurations, skip printing */
ret = 0;
goto out;
}
log_always("-------------------------------------------------------------------------------"
"----------------------------------------");
log_always("Gramine detected the following insecure configurations:\n");
if (sgx_debug)
log_always(" - sgx.debug = true "
"(this is a debug enclave)");
if (verbose_log_level)
log_always(" - loader.log_level = warning|debug|trace|all "
"(verbose log level, may leak information)");
if (use_cmdline_argv)
log_always(" - loader.insecure__use_cmdline_argv = true "
"(forwarding command-line args from untrusted host to the app)");
if (use_host_env)
log_always(" - loader.insecure__use_host_env = true "
"(forwarding environment vars from untrusted host to the app)");
if (disable_aslr)
log_always(" - loader.insecure__disable_aslr = true "
"(Address Space Layout Randomization is disabled)");
if (allow_eventfd)
log_always(" - sys.insecure__allow_eventfd = true "
"(host-based eventfd is enabled)");
if (allow_all_files)
log_always(" - sgx.file_check_policy = allow_all_but_log "
"(all files are passed through from untrusted host without verification)");
if (use_allowed_files)
log_always(" - sgx.allowed_files = [ ... ] "
"(some files are passed through from untrusted host without verification)");
if (protected_files_key)
log_always(" - sgx.insecure__protected_files_key = \"...\" "
"(key hardcoded in manifest)");
if (encrypted_files_keys)
log_always(" - fs.insecure__keys.* = \"...\" "
"(keys hardcoded in manifest)");
log_always("\nGramine will continue application execution, but this configuration must not be "
"used in production!");
log_always("-------------------------------------------------------------------------------"
"----------------------------------------\n");
ret = 0;
out:
free(log_level_str);
free(protected_files_key_str);
return ret;
}
__attribute_no_sanitize_address
static void do_preheat_enclave(void) {
for (uint8_t* i = g_pal_linuxsgx_state.heap_min; i < (uint8_t*)g_pal_linuxsgx_state.heap_max;
i += g_page_size) {
READ_ONCE(*(size_t*)i);
}
}
/* Gramine uses GCC's stack protector that looks for a canary at gs:[0x8], but this function starts
* with a default canary and then updates it to a random one, so we disable stack protector here */
__attribute_no_stack_protector
noreturn void pal_linux_main(void* uptr_libpal_uri, size_t libpal_uri_len, void* uptr_args,
size_t args_size, void* uptr_env, size_t env_size,
int parent_stream_fd, void* uptr_qe_targetinfo, void* uptr_topo_info,
void* uptr_rpc_queue, void* uptr_dns_conf) {
/* All our arguments are coming directly from the host. We are responsible to check them. */
int ret;
/* Relocate PAL */
ret = setup_pal_binary();
if (ret < 0) {
log_error("Relocation of the PAL binary failed: %d", ret);
ocall_exit(1, /*is_exitgroup=*/true);
}
uint64_t start_time;
ret = _PalSystemTimeQuery(&start_time);
if (ret < 0) {
log_error("_PalSystemTimeQuery() failed: %d", ret);
ocall_exit(1, /*is_exitgroup=*/true);
}
call_init_array();
/* Initialize alloc_align as early as possible, a lot of PAL APIs depend on this being set. */
g_pal_public_state.alloc_align = g_page_size;
assert(IS_POWER_OF_2(g_pal_public_state.alloc_align));
g_pal_linuxsgx_state.heap_min = GET_ENCLAVE_TCB(heap_min);
g_pal_linuxsgx_state.heap_max = GET_ENCLAVE_TCB(heap_max);
if (libpal_uri_len < URI_PREFIX_FILE_LEN) {
log_error("Invalid libpal_uri length (missing \"%s\" prefix?)", URI_PREFIX_FILE);
ocall_exit(1, /*is_exitgroup=*/true);
}
/* At this point we don't yet have memory manager, so we cannot allocate memory dynamically. */
static char libpal_path[1024 + 1] = { 0 };
if (!sgx_copy_to_enclave(libpal_path, sizeof(libpal_path) - 1, uptr_libpal_uri,
libpal_uri_len)) {
log_error("Copying libpal_path into the enclave failed");
ocall_exit(1, /*is_exitgroup=*/true);
}
/* Now that we have `libpal_path`, set name for PAL map */
set_pal_binary_name(libpal_path + URI_PREFIX_FILE_LEN);
/* We can't verify the following arguments from the host. So we copy them directly but need to
* be careful when we use them. */
if (!sgx_copy_to_enclave(&g_pal_linuxsgx_state.qe_targetinfo,
sizeof(g_pal_linuxsgx_state.qe_targetinfo),
uptr_qe_targetinfo,
sizeof(sgx_target_info_t))) {
log_error("Copying qe_targetinfo into the enclave failed");
ocall_exit(1, /*is_exitgroup=*/true);
}
/* Set up page allocator and slab manager. There is no need to provide any initial memory pool,
* because the slab manager can use normal allocations (`_PalVirtualMemoryAlloc`) right away. */
init_slab_mgr(/*mem_pool=*/NULL, /*mem_pool_size=*/0);
/* initialize enclave properties */
ret = init_enclave();
if (ret) {
log_error("Failed to initialize enclave properties: %d", ret);
ocall_exit(1, /*is_exitgroup=*/true);
}
if (args_size > MAX_ARGS_SIZE || env_size > MAX_ENV_SIZE) {
log_error("Invalid args_size (%lu) or env_size (%lu)", args_size, env_size);
ocall_exit(1, /*is_exitgroup=*/true);
}
const char** arguments = make_argv_list(uptr_args, args_size);
if (!arguments) {
log_error("Creating arguments failed");
ocall_exit(1, /*is_exitgroup=*/true);
}
const char** environments = make_argv_list(uptr_env, env_size);
if (!environments) {
log_error("Creating environments failed");
ocall_exit(1, /*is_exitgroup=*/true);
}
SET_ENCLAVE_TCB(ready_for_exceptions, 1UL);
/* initialize "Invariant TSC" HW feature for fast and accurate gettime and immediately probe
* RDTSC instruction inside SGX enclave (via dummy get_tsc) -- it is possible that
* the CPU supports invariant TSC but doesn't support executing RDTSC inside SGX enclave, in
* this case the SIGILL exception is generated and leads to emulate_rdtsc_and_print_warning()
* which unsets invariant TSC, and we end up falling back to the slower ocall_gettime() */
init_tsc();
(void)get_tsc(); /* must be after `ready_for_exceptions=1` since it may generate SIGILL */
ret = init_cpuid();
if (ret < 0) {
log_error("init_cpuid failed: %d", ret);
ocall_exit(1, /*is_exitgroup=*/true);
}
/* initialize master key (used for pipes' encryption for all enclaves of an application); it
* will be overwritten below in init_child_process() with inherited-from-parent master key if
* this enclave is child */
ret = _PalRandomBitsRead(&g_master_key, sizeof(g_master_key));
if (ret < 0) {
log_error("_PalRandomBitsRead failed: %d", ret);
ocall_exit(1, /*is_exitgroup=*/true);
}
/* if there is a parent, create parent handle */
PAL_HANDLE parent = NULL;
uint64_t instance_id = 0;
if (parent_stream_fd != -1) {
if ((ret = init_child_process(parent_stream_fd, &parent, &instance_id)) < 0) {
log_error("Failed to initialize child process: %d", ret);
ocall_exit(1, /*is_exitgroup=*/true);
}
}
uint64_t manifest_size = GET_ENCLAVE_TCB(manifest_size);
void* manifest_addr = (void*)(g_enclave_top - ALIGN_UP_POW2(manifest_size, g_page_size));
ret = add_preloaded_range((uintptr_t)manifest_addr, (uintptr_t)manifest_addr + manifest_size,
"manifest");
if (ret < 0) {
log_error("Failed to initialize manifest preload range: %d", ret);
ocall_exit(1, /*is_exitgroup=*/true);
}
/* TOML parser (for whatever reason) allocates a lot of memory when parsing the manifest into an
* in-memory struct. We heuristically pre-allocate additional PAL internal memory if the
* manifest file looks large enough. Hopefully below sizes are sufficient for any manifest.
*
* FIXME: this is a quick hack, we need proper memory allocation in PAL. */
if (manifest_size > 10 * 1024 * 1024) {
log_always("Detected a huge manifest, preallocating 128MB of internal memory.");
g_pal_internal_mem_size += 128 * 1024 * 1024; /* 10MB manifest -> 64 + 128 MB PAL mem */
} else if (manifest_size > 5 * 1024 * 1024) {
log_always("Detected a huge manifest, preallocating 64MB of internal memory.");
g_pal_internal_mem_size += 64 * 1024 * 1024; /* 5MB manifest -> 64 + 64 MB PAL mem */
}
/* parse manifest */
char errbuf[256];
toml_table_t* manifest_root = toml_parse(manifest_addr, errbuf, sizeof(errbuf));
if (!manifest_root) {
log_error("PAL failed at parsing the manifest: %s", errbuf);
ocall_exit(1, /*is_exitgroup=*/true);
}
g_pal_common_state.raw_manifest_data = manifest_addr;
g_pal_public_state.manifest_root = manifest_root;
int64_t rpc_thread_num;
ret = toml_int_in(g_pal_public_state.manifest_root, "sgx.insecure__rpc_thread_num",
/*defaultval=*/0, &rpc_thread_num);
if (ret < 0) {
log_error("Cannot parse 'sgx.insecure__rpc_thread_num'");
ocall_exit(1, /*is_exitgroup=*/true);
}
if (rpc_thread_num > 0) {
if (!verify_and_init_rpc_queue(uptr_rpc_queue)) {
log_error("Invalid rpc queue pointer");
ocall_exit(1, /*is_exitgroup=*/true);
}
}
/* Get host topology information only for the first process. This information will be
* checkpointed and restored during forking of the child process(es). */
if (parent_stream_fd < 0) {
/* Parse, sanitize and store host topology info into g_pal_public_state struct */
ret = import_and_sanitize_topo_info(uptr_topo_info);
if (ret < 0) {
log_error("Failed to copy and sanitize topology information: %d", ret);
ocall_exit(1, /*is_exitgroup=*/true);
}
}
bool preheat_enclave;
ret = toml_bool_in(g_pal_public_state.manifest_root, "sgx.preheat_enclave",
/*defaultval=*/false, &preheat_enclave);
if (ret < 0) {
log_error("Cannot parse 'sgx.preheat_enclave' (the value must be `true` or `false`)");
ocall_exit(1, /*is_exitgroup=*/true);
}
if (preheat_enclave)
do_preheat_enclave();
/* For backward compatibility, `loader.pal_internal_mem_size` does not include
* PAL_INITIAL_MEM_SIZE */
size_t extra_mem_size;
ret = toml_sizestring_in(g_pal_public_state.manifest_root, "loader.pal_internal_mem_size",
/*defaultval=*/0, &extra_mem_size);
if (ret < 0) {
log_error("Cannot parse 'loader.pal_internal_mem_size'");
ocall_exit(1, /*is_exitgroup=*/true);
}
if (extra_mem_size + PAL_INITIAL_MEM_SIZE < g_pal_internal_mem_size) {
log_error("Too small `loader.pal_internal_mem_size`, need at least %luMB because the "
"manifest is large",
(g_pal_internal_mem_size - PAL_INITIAL_MEM_SIZE) / 1024 / 1024);
ocall_exit(1, /*is_exitgroup=*/true);
}
g_pal_internal_mem_size = extra_mem_size + PAL_INITIAL_MEM_SIZE;
if ((ret = init_seal_key_material()) < 0) {
log_error("Failed to initialize SGX sealing key material: %d", ret);
ocall_exit(1, /*is_exitgroup=*/true);
}
if ((ret = init_file_check_policy()) < 0) {
log_error("Failed to load the file check policy: %d", ret);
ocall_exit(1, /*is_exitgroup=*/true);
}
if ((ret = init_allowed_files()) < 0) {
log_error("Failed to initialize allowed files: %d", ret);
ocall_exit(1, /*is_exitgroup=*/true);
}
if ((ret = init_trusted_files()) < 0) {
log_error("Failed to initialize trusted files: %d", ret);
ocall_exit(1, /*is_exitgroup=*/true);
}
ret = toml_bool_in(g_pal_public_state.manifest_root,
"sys.enable_extra_runtime_domain_names_conf", /*defaultval*/false,
&g_pal_public_state.extra_runtime_domain_names_conf);
if (ret < 0) {
log_error("Cannot parse 'sys.enable_extra_runtime_domain_names_conf'");
ocall_exit(1, /*is_exitgroup=*/true);
}
/* Get host information about domain name configuration only for the first process.
* This information will be checkpointed and restored during forking of the child
* process(es). */
if (parent_stream_fd < 0) {
ret = import_and_init_extra_runtime_domain_names(uptr_dns_conf);
if (ret < 0) {
log_error("Failed to initialize host info: %d", ret);
ocall_exit(1, /*is_exitgroup=*/true);
}
}
enum sgx_attestation_type attestation_type;
ret = parse_attestation_type(g_pal_public_state.manifest_root, &attestation_type);
if (ret < 0) {
log_error("Failed to parse attestation type: %d", unix_to_pal_error(ret));
ocall_exit(1, /*is_exitgroup=*/true);
}
g_pal_public_state.attestation_type = attestation_type_to_str(attestation_type);
/* this should be placed *after all* initialize-from-manifest routines */
if ((ret = print_warnings_on_insecure_configs(parent)) < 0) {
log_error("Cannot parse the manifest (while checking for insecure configurations)");
ocall_exit(1, /*is_exitgroup=*/true);
}
/* set up thread handle */
PAL_HANDLE first_thread = calloc(1, HANDLE_SIZE(thread));
if (!first_thread) {
log_error("Out of memory");
ocall_exit(1, /*is_exitgroup=*/true);
}
init_handle_hdr(first_thread, PAL_TYPE_THREAD);
first_thread->thread.tcs = (void*)(g_enclave_base + GET_ENCLAVE_TCB(tcs_offset));
g_pal_public_state.first_thread = first_thread;
SET_ENCLAVE_TCB(thread, &first_thread->thread);
uint64_t stack_protector_canary;
ret = _PalRandomBitsRead(&stack_protector_canary, sizeof(stack_protector_canary));
if (ret < 0) {
log_error("_PalRandomBitsRead failed: %d", ret);
ocall_exit(1, /*is_exitgroup=*/true);
}
pal_set_tcb_stack_canary(stack_protector_canary);
assert(!g_pal_linuxsgx_state.enclave_initialized);
g_pal_linuxsgx_state.enclave_initialized = true;
/* call main function */
pal_main(instance_id, parent, first_thread, arguments, environments);
}