-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
264 lines (215 loc) · 9.02 KB
/
Makefile
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
######## SGX SDK Settings ########
SGX_SDK ?= /opt/intel/sgxsdk # Intel SGX directory
SGX_MODE ?= SW # HW or SW (Hardware or Simulation mode)
SGX_ARCH ?= x64 # x64 or x86
SGX_DEBUG ?= 1 # DEBUG MODE
# Find out whether 32 or 64 bit
ifeq ($(shell getconf LONG_BIT), 32)
SGX_ARCH := x86
else ifeq ($(findstring -m32, $(CXXFLAGS)), -m32)
SGX_ARCH := x86
endif
ifeq ($(SGX_ARCH), x86)
SGX_COMMON_CFLAGS := -m32 # flag to compiler regarding 32 or 64 bit
SGX_LIBRARY_PATH := $(SGX_SDK)/lib # SGX library path
SGX_ENCLAVE_SIGNER := $(SGX_SDK)/bin/x86/sgx_sign # Tool for signing enclaves
SGX_EDGER8R := $(SGX_SDK)/bin/x86/sgx_edger8r # Tool to create bridge routines
else
SGX_COMMON_CFLAGS := -m64
SGX_LIBRARY_PATH := $(SGX_SDK)/lib64
SGX_ENCLAVE_SIGNER := $(SGX_SDK)/bin/x64/sgx_sign
SGX_EDGER8R := $(SGX_SDK)/bin/x64/sgx_edger8r
endif
ifeq ($(SGX_DEBUG), 1)
ifeq ($(SGX_PRERELEASE), 1)
$(error Cannot set SGX_DEBUG and SGX_PRERELEASE at the same time!!)
endif
endif
ifeq ($(SGX_DEBUG), 1)
SGX_COMMON_CFLAGS += -O0 -g # Add debug symbols, turn off optimisations
else
SGX_COMMON_CFLAGS += -O2 # turn on optimisations
endif
######## App Settings ########
ifneq ($(SGX_MODE), HW)
Urts_Library_Name := sgx_urts_sim
else
Urts_Library_Name := sgx_urts
endif
App_Cpp_Files := App/App.cpp
Test_Cpp_Files := App/test.cpp
App_Include_Paths := -IApp -I$(SGX_SDK)/include
App_C_Flags := $(SGX_COMMON_CFLAGS) -fPIC -Wno-attributes $(App_Include_Paths)
# Three configuration modes - Debug, prerelease, release
# Debug - Macro DEBUG enabled.
# Prerelease - Macro NDEBUG and EDEBUG enabled.
# Release - Macro NDEBUG enabled.
ifeq ($(SGX_DEBUG), 1)
App_C_Flags += -DDEBUG -UNDEBUG -UEDEBUG
else ifeq ($(SGX_PRERELEASE), 1)
App_C_Flags += -DNDEBUG -DEDEBUG -UDEBUG
else
App_C_Flags += -DNDEBUG -UEDEBUG -UDEBUG
endif
App_Cpp_Flags := $(App_C_Flags) -std=c++17 -I/home/azureuser/pistache/prefix/include
App_Link_Flags := $(SGX_COMMON_CFLAGS) -L$(SGX_LIBRARY_PATH) -l$(Urts_Library_Name) -lpthread -L/home/azureuser/pistache/prefix/lib/x86_64-linux-gnu -lpistache
ifneq ($(SGX_MODE), HW)
App_Link_Flags += -lsgx_uae_service_sim
else
App_Link_Flags += -lsgx_uae_service
endif
App_Cpp_Objects := $(App_Cpp_Files:.cpp=.o) App/ocalls.o
App_Name := app
Test_Cpp_Objects := $(Test_Cpp_Files:.cpp=.o)
Test_Name := test
######## Enclave Settings ########
ifneq ($(SGX_MODE), HW)
Trts_Library_Name := sgx_trts_sim
Service_Library_Name := sgx_tservice_sim
else
Trts_Library_Name := sgx_trts
Service_Library_Name := sgx_tservice
endif
Crypto_Library_Name := sgx_tcrypto
Enclave_Cpp_Files := Enclave/Enclave.cpp
Enclave_Include_Paths := -IEnclave -I$(SGX_SDK)/include -I$(SGX_SDK)/include/tlibc -I$(SGX_SDK)/include/libcxx
Enclave_C_Flags := $(SGX_COMMON_CFLAGS) -nostdinc -fvisibility=hidden -fpie -ffunction-sections -fdata-sections -fstack-protector-strong
Enclave_C_Flags += $(Enclave_Include_Paths)
Enclave_Cpp_Flags := $(Enclave_C_Flags) -std=c++11 -nostdinc++
# To generate a proper enclave, it is recommended to follow below guideline to link the trusted libraries:
# 1. Link sgx_trts with the `--whole-archive' and `--no-whole-archive' options,
# so that the whole content of trts is included in the enclave.
# 2. For other libraries, you just need to pull the required symbols.
# Use `--start-group' and `--end-group' to link these libraries.
# Do NOT move the libraries linked with `--start-group' and `--end-group' within `--whole-archive' and `--no-whole-archive' options.
# Otherwise, you may get some undesirable errors.
Enclave_Link_Flags := $(SGX_COMMON_CFLAGS) -Wl,--no-undefined -nostdlib -nodefaultlibs -nostartfiles -L$(SGX_LIBRARY_PATH) \
-Wl,--whole-archive -l$(Trts_Library_Name) -Wl,--no-whole-archive \
-Wl,--start-group -lsgx_tstdc -lsgx_tcxx -l$(Crypto_Library_Name) -l$(Service_Library_Name) -Wl,--end-group \
-Wl,-Bstatic -Wl,-Bsymbolic -Wl,--no-undefined \
-Wl,-pie,-eenclave_entry -Wl,--export-dynamic \
-Wl,--defsym,__ImageBase=0 -Wl,--gc-sections \
-Wl,--version-script=Enclave/Enclave.lds
Enclave_Cpp_Objects := Enclave/Enclave.o Enclave/AES.o Enclave/sha3.o Enclave/ocall_interface.o
Enclave_Name := enclave.so
Signed_Enclave_Name := enclave.signed.so
Enclave_Config_File := Enclave/Enclave.config.xml
ifeq ($(SGX_MODE), HW)
ifeq ($(SGX_DEBUG), 1)
Build_Mode = HW_DEBUG
else ifeq ($(SGX_PRERELEASE), 1)
Build_Mode = HW_PRERELEASE
else
Build_Mode = HW_RELEASE
endif
else
ifeq ($(SGX_DEBUG), 1)
Build_Mode = SIM_DEBUG
else ifeq ($(SGX_PRERELEASE), 1)
Build_Mode = SIM_PRERELEASE
else
Build_Mode = SIM_RELEASE
endif
endif
##### TARGETS #####
.PHONY: all run
# Default target "all" is to build
ifeq ($(Build_Mode), HW_RELEASE)
all: .config_$(Build_Mode)_$(SGX_ARCH) $(App_Name) $(Test_Name) $(Enclave_Name)
@echo "The project has been built in release hardware mode."
@echo "Please sign the $(Enclave_Name) first with your signing key before you run the $(App_Name) to launch and access the enclave."
@echo "To sign the enclave use the command:"
@echo " $(SGX_ENCLAVE_SIGNER) sign -key <your key> -enclave $(Enclave_Name) -out <$(Signed_Enclave_Name)> -config $(Enclave_Config_File)"
@echo "You can also sign the enclave using an external signing tool."
@echo "To build the project in simulation mode set SGX_MODE=SIM. To build the project in prerelease mode set SGX_PRERELEASE=1 and SGX_MODE=HW."
else
all: .config_$(Build_Mode)_$(SGX_ARCH) $(App_Name) $(Test_Name) $(Signed_Enclave_Name)
ifeq ($(Build_Mode), HW_DEBUG)
@echo "The project has been built in debug hardware mode."
else ifeq ($(Build_Mode), SIM_DEBUG)
@echo "The project has been built in debug simulation mode."
else ifeq ($(Build_Mode), HW_PRERELEASE)
@echo "The project has been built in pre-release hardware mode."
else ifeq ($(Build_Mode), SIM_PRERELEASE)
@echo "The project has been built in pre-release simulation mode."
else
@echo "The project has been built in release simulation mode."
endif
endif
# Build and run project
run: all
ifneq ($(Build_Mode), HW_RELEASE)
$(CURDIR)/$(App_Name)
@echo "RUN => $(App_Name) [$(SGX_MODE)|$(SGX_ARCH), OK]"
endif
######## App Objects ########
# Genereate untrusted brigde routines (Enclave_u.c and Enclave_u.h) using .edl file
App/Enclave_u.c: $(SGX_EDGER8R) Enclave/Enclave.edl
cd App && $(SGX_EDGER8R) --untrusted ../Enclave/Enclave.edl --search-path ../Enclave --search-path $(SGX_SDK)/include
@echo "GEN => $@"
# Compile untrusted brigde routines
App/Enclave_u.o: App/Enclave_u.c
$(CC) $(App_C_Flags) -DSGX_UNTRUSTED -c $< -o $@
@echo "CC <= $<"
# Compile ocalls
App/ocalls.o: App/ocalls.c
$(CC) $(App_C_Flags) -c $< -o $@
@echo "CC <= $<"
# Compile untrusted Application
App/%.o: App/%.cpp
$(CXX) $(App_Cpp_Flags) -c $< -o $@
@echo "CXX <= $<"
# Compile untrusted Application
App/test.o: App/test.cpp
$(CXX) $(Test_Cpp_Flags) -c $< -o $@
@echo "CXX <= $<"
# Link and generate main Application executable
$(App_Name): App/Enclave_u.o App/ocalls.o $(App_Cpp_Objects)
$(CXX) $^ -o $@ $(App_Link_Flags)
@echo "LINK => $@"
# Link and generate main Application executable
$(Test_Name): $(Test_Cpp_Objects)
$(CXX) $^ -o $@ $(App_Link_Flags)
@echo "LINK => $@"
.config_$(Build_Mode)_$(SGX_ARCH):
rm -f .config_* $(App_Name) $(Test_Name) $(Enclave_Name) $(Signed_Enclave_Name) $(App_Cpp_Objects) App/Enclave_u.* $(Enclave_Cpp_Objects) Enclave/Enclave_t.*
@touch .config_$(Build_Mode)_$(SGX_ARCH)
######## Enclave Objects ########
# Genereate trusted brigde routines (Enclave_t.c and Enclave_t.h) using .edl file
Enclave/Enclave_t.c: $(SGX_EDGER8R) Enclave/Enclave.edl
cd Enclave && $(SGX_EDGER8R) --trusted ../Enclave/Enclave.edl --search-path ../Enclave --search-path $(SGX_SDK)/include
@echo "GEN => $@"
# Compile trusted brigde routines
Enclave/Enclave_t.o: Enclave/Enclave_t.c
$(CC) $(Enclave_C_Flags) -c $< -o $@
@echo "CC <= $<"
# Compile trusted Enclave
Enclave/Enclave.o: Enclave/Enclave.cpp
$(CXX) $(Enclave_Cpp_Flags) -c $< -o $@
@echo "CXX <= $<"
# Compile AES util
Enclave/AES.o: Enclave/AES.cpp Enclave/AES.h
$(CXX) $(Enclave_Cpp_Flags) -c $< -o $@
@echo "CXX <= $<"
# Compile sha3 util
Enclave/sha3.o: Enclave/sha3.c Enclave/sha3.h
$(CXX) $(Enclave_Cpp_Flags) -c $< -o $@
@echo "CXX <= $<"
# Preprocess ocall_interface
Enclave/ocall_interface.i: Enclave/ocall_interface.c
$(CC) -I$(SGX_SDK)/include -E $< -o $@
@echo "CC-Preprocess <= $<"
# Compile ocall_interface
Enclave/ocall_interface.o: Enclave/ocall_interface.i Enclave/Enclave_t.c
$(CC) $(Enclave_C_Flags) -c $< -o $@
@echo "CC <= $<"
# Link and generate Enclave shared library/executable
$(Enclave_Name): Enclave/Enclave_t.o $(Enclave_Cpp_Objects)
$(CXX) $^ -o $@ $(Enclave_Link_Flags)
@echo "LINK => $@"
$(Signed_Enclave_Name): $(Enclave_Name)
$(SGX_ENCLAVE_SIGNER) sign -key Enclave/Enclave_private.pem -enclave $(Enclave_Name) -out $@ -config $(Enclave_Config_File)
@echo "SIGN => $@"
.PHONY: clean
clean:
rm -f .config_* $(App_Name) $(Test_Name) $(Enclave_Name) $(Signed_Enclave_Name) $(App_Cpp_Objects) Enclave/tree.o Enclave/ecc.o App/test.o App/Enclave_u.* $(Enclave_Cpp_Objects) Enclave/Enclave_t.* Enclave/ocall_interface.i