Makefile 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. #
  2. # Copyright (C) 2011-2016 Intel Corporation. All rights reserved.
  3. #
  4. # Redistribution and use in source and binary forms, with or without
  5. # modification, are permitted provided that the following conditions
  6. # are met:
  7. #
  8. # * Redistributions of source code must retain the above copyright
  9. # notice, this list of conditions and the following disclaimer.
  10. # * Redistributions in binary form must reproduce the above copyright
  11. # notice, this list of conditions and the following disclaimer in
  12. # the documentation and/or other materials provided with the
  13. # distribution.
  14. # * Neither the name of Intel Corporation nor the names of its
  15. # contributors may be used to endorse or promote products derived
  16. # from this software without specific prior written permission.
  17. #
  18. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  19. # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  20. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  21. # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  22. # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  24. # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  25. # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  26. # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  28. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. #
  30. #
  31. ######## SGX SDK Settings ########
  32. SGX_SDK ?= /opt/intel/sgxsdk
  33. SGX_MODE ?= HW
  34. SGX_ARCH ?= x64
  35. SGX_DEBUG ?= 1
  36. ifeq ($(shell getconf LONG_BIT), 32)
  37. SGX_ARCH := x86
  38. else ifeq ($(findstring -m32, $(CXXFLAGS)), -m32)
  39. SGX_ARCH := x86
  40. endif
  41. ifeq ($(SGX_ARCH), x86)
  42. SGX_COMMON_CFLAGS := -m32
  43. SGX_LIBRARY_PATH := $(SGX_SDK)/lib
  44. SGX_ENCLAVE_SIGNER := $(SGX_SDK)/bin/x86/sgx_sign
  45. SGX_EDGER8R := $(SGX_SDK)/bin/x86/sgx_edger8r
  46. else
  47. SGX_COMMON_CFLAGS := -m64
  48. SGX_LIBRARY_PATH := $(SGX_SDK)/lib64
  49. SGX_ENCLAVE_SIGNER := $(SGX_SDK)/bin/x64/sgx_sign
  50. SGX_EDGER8R := $(SGX_SDK)/bin/x64/sgx_edger8r
  51. endif
  52. ifeq ($(SGX_DEBUG), 1)
  53. ifeq ($(SGX_PRERELEASE), 1)
  54. $(error Cannot set SGX_DEBUG and SGX_PRERELEASE at the same time!!)
  55. endif
  56. endif
  57. ifeq ($(SGX_DEBUG), 1)
  58. SGX_COMMON_CFLAGS += -O0 -g
  59. else
  60. SGX_COMMON_CFLAGS += -O2
  61. endif
  62. ifeq ($(SUPPLIED_KEY_DERIVATION), 1)
  63. SGX_COMMON_CFLAGS += -DSUPPLIED_KEY_DERIVATION
  64. endif
  65. ######## App Settings ########
  66. ifneq ($(SGX_MODE), HW)
  67. Urts_Library_Name := sgx_urts_sim
  68. else
  69. Urts_Library_Name := sgx_urts
  70. endif
  71. App_Cpp_Files := isv_app/isv_app.cpp
  72. App_Include_Paths := -Iservice_provider -I$(SGX_SDK)/include
  73. App_C_Flags := $(SGX_COMMON_CFLAGS) -fPIC -Wno-attributes $(App_Include_Paths)
  74. # Three configuration modes - Debug, prerelease, release
  75. # Debug - Macro DEBUG enabled.
  76. # Prerelease - Macro NDEBUG and EDEBUG enabled.
  77. # Release - Macro NDEBUG enabled.
  78. ifeq ($(SGX_DEBUG), 1)
  79. App_C_Flags += -DDEBUG -UNDEBUG -UEDEBUG
  80. else ifeq ($(SGX_PRERELEASE), 1)
  81. App_C_Flags += -DNDEBUG -DEDEBUG -UDEBUG
  82. else
  83. App_C_Flags += -DNDEBUG -UEDEBUG -UDEBUG
  84. endif
  85. App_Cpp_Flags := $(App_C_Flags) -std=c++11
  86. App_Link_Flags := $(SGX_COMMON_CFLAGS) -L$(SGX_LIBRARY_PATH) -l$(Urts_Library_Name) -L. -lsgx_ukey_exchange -lpthread -lservice_provider -Wl,-rpath=$(CURDIR)/sample_libcrypto -Wl,-rpath=$(CURDIR)
  87. ifneq ($(SGX_MODE), HW)
  88. App_Link_Flags += -lsgx_uae_service_sim
  89. else
  90. App_Link_Flags += -lsgx_uae_service
  91. endif
  92. App_Cpp_Objects := $(App_Cpp_Files:.cpp=.o)
  93. App_Name := app
  94. ######## Service Provider Settings ########
  95. ServiceProvider_Cpp_Files := service_provider/ecp.cpp service_provider/network_ra.cpp service_provider/service_provider.cpp service_provider/ias_ra.cpp
  96. ServiceProvider_Include_Paths := -I$(SGX_SDK)/include -I$(SGX_SDK)/include/tlibc -I$(SGX_SDK)/include/stlport -Isample_libcrypto
  97. ServiceProvider_C_Flags := $(SGX_COMMON_CFLAGS) -fPIC -Wno-attributes -I$(SGX_SDK)/include -Isample_libcrypto
  98. ServiceProvider_Cpp_Flags := $(ServiceProvider_C_Flags) -std=c++11
  99. ServiceProvider_Link_Flags := -shared $(SGX_COMMON_CFLAGS) -L$(SGX_LIBRARY_PATH) -lsample_libcrypto -Lsample_libcrypto
  100. ServiceProvider_Cpp_Objects := $(ServiceProvider_Cpp_Files:.cpp=.o)
  101. ######## Enclave Settings ########
  102. ifneq ($(SGX_MODE), HW)
  103. Trts_Library_Name := sgx_trts_sim
  104. Service_Library_Name := sgx_tservice_sim
  105. else
  106. Trts_Library_Name := sgx_trts
  107. Service_Library_Name := sgx_tservice
  108. endif
  109. Crypto_Library_Name := sgx_tcrypto
  110. Enclave_Cpp_Files := isv_enclave/isv_enclave.cpp
  111. Enclave_Include_Paths := -I$(SGX_SDK)/include -I$(SGX_SDK)/include/tlibc -I$(SGX_SDK)/include/stlport
  112. Enclave_C_Flags := $(SGX_COMMON_CFLAGS) -nostdinc -fvisibility=hidden -fpie -fstack-protector $(Enclave_Include_Paths)
  113. Enclave_Cpp_Flags := $(Enclave_C_Flags) -std=c++03 -nostdinc++
  114. # To generate a proper enclave, it is recommended to follow below guideline to link the trusted libraries:
  115. # 1. Link sgx_trts with the `--whole-archive' and `--no-whole-archive' options,
  116. # so that the whole content of trts is included in the enclave.
  117. # 2. For other libraries, you just need to pull the required symbols.
  118. # Use `--start-group' and `--end-group' to link these libraries.
  119. # Do NOT move the libraries linked with `--start-group' and `--end-group' within `--whole-archive' and `--no-whole-archive' options.
  120. # Otherwise, you may get some undesirable errors.
  121. Enclave_Link_Flags := $(SGX_COMMON_CFLAGS) -Wl,--no-undefined -nostdlib -nodefaultlibs -nostartfiles -L$(SGX_LIBRARY_PATH) \
  122. -Wl,--whole-archive -l$(Trts_Library_Name) -Wl,--no-whole-archive \
  123. -Wl,--start-group -lsgx_tstdc -lsgx_tstdcxx -lsgx_tkey_exchange -l$(Crypto_Library_Name) -l$(Service_Library_Name) -Wl,--end-group \
  124. -Wl,-Bstatic -Wl,-Bsymbolic -Wl,--no-undefined \
  125. -Wl,-pie,-eenclave_entry -Wl,--export-dynamic \
  126. -Wl,--defsym,__ImageBase=0 \
  127. -Wl,--version-script=isv_enclave/isv_enclave.lds
  128. Enclave_Cpp_Objects := $(Enclave_Cpp_Files:.cpp=.o)
  129. Enclave_Name := isv_enclave.so
  130. Signed_Enclave_Name := isv_enclave.signed.so
  131. Enclave_Config_File := isv_enclave/isv_enclave.config.xml
  132. ifeq ($(SGX_MODE), HW)
  133. ifeq ($(SGX_DEBUG), 1)
  134. Build_Mode = HW_DEBUG
  135. else ifeq ($(SGX_PRERELEASE), 1)
  136. Build_Mode = HW_PRERELEASE
  137. else
  138. Build_Mode = HW_RELEASE
  139. endif
  140. else
  141. ifeq ($(SGX_DEBUG), 1)
  142. Build_Mode = SIM_DEBUG
  143. else ifeq ($(SGX_PRERELEASE), 1)
  144. Build_Mode = SIM_PRERELEASE
  145. else
  146. Build_Mode = SIM_RELEASE
  147. endif
  148. endif
  149. .PHONY: all run
  150. ifeq ($(Build_Mode), HW_RELEASE)
  151. all: libservice_provider.so $(App_Name) $(Enclave_Name)
  152. @echo "The project has been built in release hardware mode."
  153. @echo "Please sign the $(Enclave_Name) first with your signing key before you run the $(App_Name) to launch and access the enclave."
  154. @echo "To sign the enclave use the command:"
  155. @echo " $(SGX_ENCLAVE_SIGNER) sign -key <your key> -enclave $(Enclave_Name) -out <$(Signed_Enclave_Name)> -config $(Enclave_Config_File)"
  156. @echo "You can also sign the enclave using an external signing tool."
  157. @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."
  158. else
  159. all: libservice_provider.so $(App_Name) $(Signed_Enclave_Name)
  160. ifeq ($(Build_Mode), HW_DEBUG)
  161. @echo "The project has been built in debug hardware mode."
  162. else ifeq ($(Build_Mode), SIM_DEBUG)
  163. @echo "The project has been built in debug simulation mode."
  164. else ifeq ($(Build_Mode), HW_PRERELEASE)
  165. @echo "The project has been built in pre-release hardware mode."
  166. else ifeq ($(Build_Mode), SIM_PRERELEASE)
  167. @echo "The project has been built in pre-release simulation mode."
  168. else
  169. @echo "The project has been built in release simulation mode."
  170. endif
  171. endif
  172. run: all
  173. ifneq ($(Build_Mode), HW_RELEASE)
  174. @$(CURDIR)/$(App_Name)
  175. @echo "RUN => $(App_Name) [$(SGX_MODE)|$(SGX_ARCH), OK]"
  176. endif
  177. ######## App Objects ########
  178. isv_app/isv_enclave_u.c: $(SGX_EDGER8R) isv_enclave/isv_enclave.edl
  179. @cd isv_app && $(SGX_EDGER8R) --untrusted ../isv_enclave/isv_enclave.edl --search-path ../isv_enclave --search-path $(SGX_SDK)/include
  180. @echo "GEN => $@"
  181. isv_app/isv_enclave_u.o: isv_app/isv_enclave_u.c
  182. @$(CC) $(App_C_Flags) -c $< -o $@
  183. @echo "CC <= $<"
  184. isv_app/%.o: isv_app/%.cpp
  185. @$(CXX) $(App_Cpp_Flags) -c $< -o $@
  186. @echo "CXX <= $<"
  187. $(App_Name): isv_app/isv_enclave_u.o $(App_Cpp_Objects)
  188. @$(CXX) $^ -o $@ $(App_Link_Flags)
  189. @echo "LINK => $@"
  190. ######## Service Provider Objects ########
  191. service_provider/%.o: service_provider/%.cpp
  192. @$(CXX) $(ServiceProvider_Cpp_Flags) -c $< -o $@
  193. @echo "CXX <= $<"
  194. libservice_provider.so: $(ServiceProvider_Cpp_Objects)
  195. @$(CXX) $^ -o $@ $(ServiceProvider_Link_Flags)
  196. @echo "LINK => $@"
  197. ######## Enclave Objects ########
  198. isv_enclave/isv_enclave_t.c: $(SGX_EDGER8R) isv_enclave/isv_enclave.edl
  199. @cd isv_enclave && $(SGX_EDGER8R) --trusted ../isv_enclave/isv_enclave.edl --search-path ../isv_enclave --search-path $(SGX_SDK)/include
  200. @echo "GEN => $@"
  201. isv_enclave/isv_enclave_t.o: isv_enclave/isv_enclave_t.c
  202. @$(CC) $(Enclave_C_Flags) -c $< -o $@
  203. @echo "CC <= $<"
  204. isv_enclave/%.o: isv_enclave/%.cpp
  205. @$(CXX) $(Enclave_Cpp_Flags) -c $< -o $@
  206. @echo "CXX <= $<"
  207. $(Enclave_Name): isv_enclave/isv_enclave_t.o $(Enclave_Cpp_Objects)
  208. @$(CXX) $^ -o $@ $(Enclave_Link_Flags)
  209. @echo "LINK => $@"
  210. $(Signed_Enclave_Name): $(Enclave_Name)
  211. @$(SGX_ENCLAVE_SIGNER) sign -key isv_enclave/isv_enclave_private.pem -enclave $(Enclave_Name) -out $@ -config $(Enclave_Config_File)
  212. @echo "SIGN => $@"
  213. .PHONY: clean
  214. clean:
  215. @rm -f $(App_Name) $(Enclave_Name) $(Signed_Enclave_Name) $(App_Cpp_Objects) isv_app/isv_enclave_u.* $(Enclave_Cpp_Objects) isv_enclave/isv_enclave_t.* libservice_provider.* $(ServiceProvider_Cpp_Objects)