-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathOcclum.json
87 lines (87 loc) · 2.12 KB
/
Occlum.json
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
{
"resource_limits": {
"kernel_space_heap_size": "64MB",
"kernel_space_stack_size": "1MB",
"user_space_size": "2048MB",
"max_num_of_threads": 64
},
"process": {
"default_stack_size": "4MB",
"default_heap_size": "32MB",
"default_mmap_size": "900MB"
},
"entry_points": [
"/bin/premain-libos"
],
"env": {
"default": [
"OCCLUM=yes",
"EDG_MARBLE_COORDINATOR_ADDR=localhost:2001",
"EDG_MARBLE_TYPE=hello",
"EDG_MARBLE_UUID_FILE=uuid",
"EDG_MARBLE_DNS_NAMES=localhost"
],
"untrusted": [
"EDG_MARBLE_COORDINATOR_ADDR",
"EDG_MARBLE_TYPE",
"EDG_MARBLE_UUID_FILE",
"EDG_MARBLE_DNS_NAMES"
]
},
"metadata": {
"product_id": 0,
"version_number": 0,
"debuggable": true,
"enable_kss": false,
"family_id": {
"high": "0x0",
"low": "0x0"
},
"ext_prod_id": {
"high": "0x0",
"low": "0x0"
}
},
"mount": [
{
"target": "/",
"type": "unionfs",
"options": {
"layers": [
{
"target": "/",
"type": "sefs",
"source": "./build/mount/__ROOT",
"options": {
"MAC": ""
}
},
{
"target": "/",
"type": "sefs",
"source": "./run/mount/__ROOT"
}
]
}
},
{
"target": "/host",
"type": "hostfs",
"source": "."
},
{
"target": "/proc",
"type": "procfs"
},
{
"target": "/dev",
"type": "devfs"
}
],
"feature": {
"amx": 0,
"pkru": 0,
"enable_edmm": false,
"enable_posix_shm": false
}
}