mirror of
https://github.com/intel/linux-sgx
synced 2026-06-08 14:49:32 +00:00
590856d0c7
Removed reference Launch Enclave implementation and related tools Removed Launch Enclave service bundle from AESM Updated build system to remove LE-related compilation flags and targets Removed LE-related packages from installer scripts --------- Signed-off-by: Krzysztof1 Wisniewski <krzysztof1.wisniewski@intel.com>
368 lines
14 KiB
Makefile
368 lines
14 KiB
Makefile
#
|
|
# Copyright (C) 2011-2021 Intel Corporation. All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions
|
|
# are met:
|
|
#
|
|
# * Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# * 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.
|
|
# * Neither the name of Intel Corporation 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
|
|
# OWNER 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.
|
|
#
|
|
#
|
|
|
|
######## SGX SDK Settings ########
|
|
|
|
SGX_SDK ?= /opt/intel/sgxsdk
|
|
SGX_MODE ?= HW
|
|
SGX_ARCH ?= x64
|
|
SGX_DEBUG ?= 1
|
|
SGX_PCL ?= 1
|
|
|
|
ifeq ($(shell getconf LONG_BIT), 32)
|
|
SGX_ARCH := x86
|
|
else ifeq ($(findstring -m32, $(CXXFLAGS)), -m32)
|
|
SGX_ARCH := x86
|
|
endif
|
|
|
|
|
|
ifeq ($(SGX_ARCH), x86)
|
|
ifneq ($(SGX_PCL), 0)
|
|
$(error SGX PCL feature is not supported for 32bit mode!)
|
|
else
|
|
SGX_COMMON_FLAGS := -m32
|
|
SGX_LIBRARY_PATH := $(SGX_SDK)/lib
|
|
SGX_ENCLAVE_SIGNER := $(SGX_SDK)/bin/x86/sgx_sign
|
|
SGX_EDGER8R := $(SGX_SDK)/bin/x86/sgx_edger8r
|
|
endif
|
|
else
|
|
SGX_COMMON_FLAGS := -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_FLAGS += -O0 -g
|
|
Encryption_Tool_Flags := -d
|
|
else
|
|
SGX_COMMON_FLAGS += -O2
|
|
endif
|
|
|
|
SGX_COMMON_FLAGS += -Wall -Wextra -Winit-self -Wpointer-arith -Wreturn-type \
|
|
-Waddress -Wsequence-point -Wformat-security \
|
|
-Wmissing-include-dirs -Wfloat-equal -Wundef -Wshadow \
|
|
-Wcast-align -Wcast-qual -Wconversion -Wredundant-decls
|
|
SGX_COMMON_CFLAGS := $(SGX_COMMON_FLAGS) -Wjump-misses-init -Wstrict-prototypes -Wunsuffixed-float-constants
|
|
SGX_COMMON_CXXFLAGS := $(SGX_COMMON_FLAGS) -Wnon-virtual-dtor -std=c++11
|
|
|
|
######## 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 $(wildcard App/Edger8rSyntax/*.cpp) $(wildcard App/TrustedLibrary/*.cpp)
|
|
App_Include_Paths := -IInclude -IApp -I$(SGX_SDK)/include
|
|
|
|
App_C_Flags := -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
|
|
|
|
ifneq ($(SGX_PCL), 0)
|
|
App_C_Flags += -DSGX_USE_PCL -ISeal
|
|
endif
|
|
|
|
App_Cpp_Flags := $(App_C_Flags) $(SGX_COMMON_CXXFLAGS)
|
|
App_C_Flags += $(SGX_COMMON_CFLAGS)
|
|
App_Link_Flags := -L$(SGX_LIBRARY_PATH) -l$(Urts_Library_Name) -lpthread
|
|
|
|
App_Cpp_Objects := $(App_Cpp_Files:.cpp=.o)
|
|
|
|
App_Name := app
|
|
|
|
######## 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 $(wildcard Enclave/Edger8rSyntax/*.cpp) $(wildcard Enclave/TrustedLibrary/*.cpp)
|
|
Enclave_Include_Paths := -IInclude -IEnclave -I$(SGX_SDK)/include -I$(SGX_SDK)/include/tlibc -I$(SGX_SDK)/include/libcxx
|
|
|
|
Enclave_C_Flags := -nostdinc -fvisibility=hidden -fpie -ffunction-sections -fdata-sections -fstack-protector-strong
|
|
Enclave_C_Flags += $(Enclave_Include_Paths)
|
|
Enclave_Cpp_Flags := $(Enclave_C_Flags) $(SGX_COMMON_CXXFLAGS) -nostdinc++
|
|
Enclave_C_Flags += $(SGX_COMMON_CFLAGS)
|
|
|
|
# Enable the security flags
|
|
Enclave_Security_Link_Flags := -Wl,-z,relro,-z,now,-z,noexecstack
|
|
|
|
# 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 := $(Enclave_Security_Link_Flags) \
|
|
-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_Cpp_Files:.cpp=.o)
|
|
|
|
Enclave_Name := enclave.so
|
|
Signed_Enclave_Name := enclave.signed.so
|
|
Enclave_Config_File := Enclave/Enclave.config.xml
|
|
Enclave_Test_Key := Enclave/Enclave_private_test.pem
|
|
|
|
Unsigned_Enclave_Name := $(Enclave_Name)
|
|
Encrypted_Enclave_Name := $(Enclave_Name).enc
|
|
|
|
Seal_Enclave_Name := Seal.so
|
|
Signed_Seal_Enclave_Name := Seal.signed.so
|
|
Seal_Enclave_Cpp_Files := Seal/Seal.cpp
|
|
Seal_Enclave_Cpp_Objects := $(Seal_Enclave_Cpp_Files:.cpp=.o)
|
|
Seal_Enclave_Config_File := Seal/Seal.config.xml
|
|
Seal_Enclave_Test_Key := Seal/Seal_private_test.pem
|
|
|
|
PCL_LINK_FLAGS :=
|
|
|
|
ifneq ($(SGX_PCL),0)
|
|
|
|
Pcl_Encryption_Tool := $(SGX_SDK)/bin/x64/sgx_encrypt
|
|
PCL_KEY := ./debug_mock_key.bin
|
|
|
|
ifneq ($(SGX_MODE), HW)
|
|
PCL_LIB_NAME := sgx_pclsim
|
|
else # ifneq ($(SGX_MODE), HW)
|
|
PCL_LIB_NAME := sgx_pcl
|
|
endif # ifneq ($(SGX_MODE), HW)
|
|
|
|
PCL_LINK_FLAGS = -Wl,--whole-archive -l$(PCL_LIB_NAME) -Wl,--no-whole-archive
|
|
endif # ifneq ($(SGX_PCL),0)
|
|
|
|
|
|
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
|
|
|
|
|
|
.PHONY: all run target
|
|
all: .config_$(Build_Mode)_$(SGX_ARCH)$(SGX_PCL)
|
|
@$(MAKE) target
|
|
|
|
ifeq ($(Build_Mode), HW_RELEASE)
|
|
ifeq ($(SGX_PCL), 1)
|
|
target: $(App_Name) $(Enclave_Name) $(Seal_Enclave_Name)
|
|
@echo "The project has been built in release hardware mode."
|
|
@echo "Note that there are 2 enclaves in this project"
|
|
@echo "$(Enclave_Name) and $(Seal_Enclave_Name)"
|
|
@echo "Therefore, there are 2 steps involved for this project in release hardware mode"
|
|
@echo "Step 1: encrypt the enclave - $(Enclave_Name)"
|
|
@echo "First encrypt the $(Enclave_Name) with the encryption key before signing the enclave"
|
|
@echo "To encrypt the $(Enclave_Name) use this command:"
|
|
@echo " $(Pcl_Encryption_Tool) -i $(Enclave_Name) -o $(Encrypted_Enclave_Name) -k <encryption key>"
|
|
@echo "Step 2: sign $(Encrypted_Enclave_Name) and $(Seal_Enclave_Name)"
|
|
@echo "Please sign the $(Encrypted_Enclave_Name) with enclave signing key"
|
|
@echo "and also sign the $(Seal_Enclave_Name) with seal enclave signing key before you run the $(App_Name) to launch and access the enclaves."
|
|
@echo "To sign the seal enclave (i.e. $(Seal_Enclave_Name)) use the command"
|
|
@echo " $(SGX_ENCLAVE_SIGNER) sign -key <seal enclave sign key> -enclave $(Seal_Enclave_Name) -out $(Signed_Seal_Enclave_Name) -config $(Seal_Enclave_Config_File)"
|
|
@echo "To sign the encrypted enclave (i.e. $(Encrypted_Enclave_Name)) from step 1, use the command:"
|
|
@echo " $(SGX_ENCLAVE_SIGNER) sign -key <enclave signing key> -enclave $(Encrypted_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
|
|
target: $(App_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."
|
|
endif
|
|
else
|
|
target: $(Signed_Seal_Enclave_Name) $(App_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
|
|
|
|
run: all
|
|
ifneq ($(Build_Mode), HW_RELEASE)
|
|
@$(CURDIR)/$(App_Name)
|
|
@echo "RUN => $(App_Name) [$(SGX_MODE)|$(SGX_ARCH), OK]"
|
|
endif
|
|
|
|
.config_$(Build_Mode)_$(SGX_ARCH)$(SGX_PCL):
|
|
@rm -f .config_* $(App_Name) $(Enclave_Name) $(Signed_Enclave_Name) $(App_Cpp_Objects) App/Enclave_u.* $(Enclave_Cpp_Objects) Enclave/Enclave_t.* $(Encrypted_Enclave_Name) $(Seal_Enclave_Name) $(Signed_Seal_Enclave_Name) App/Seal_u.* $(Seal_Enclave_Cpp_Objects) Seal/Seal_t.* sealed_key.bin
|
|
@touch .config_$(Build_Mode)_$(SGX_ARCH)$(SGX_PCL)
|
|
|
|
######## App Objects ########
|
|
|
|
App/Enclave_u.h: $(SGX_EDGER8R) Enclave/Enclave.edl
|
|
@cd App && $(SGX_EDGER8R) --untrusted ../Enclave/Enclave.edl --search-path ../Enclave --search-path $(SGX_SDK)/include
|
|
@echo "GEN => $@"
|
|
|
|
App/Enclave_u.c: App/Enclave_u.h
|
|
|
|
App/Enclave_u.o: App/Enclave_u.c
|
|
@$(CC) $(App_C_Flags) -c $< -o $@
|
|
@echo "CC <= $<"
|
|
|
|
App/Seal_u.c: $(SGX_EDGER8R) Seal/Seal.edl
|
|
@cd App && $(SGX_EDGER8R) --untrusted ../Seal/Seal.edl --search-path ../Seal --search-path $(SGX_SDK)/include
|
|
@echo "GEN => $@"
|
|
|
|
App/Seal_u.o: App/Seal_u.c
|
|
@$(CC) $(App_C_Flags) -c $< -o $@
|
|
@echo "CC <= $<"
|
|
|
|
App/%.o: App/%.cpp App/Enclave_u.h
|
|
@$(CXX) $(App_Cpp_Flags) -c $< -o $@
|
|
@echo "CXX <= $<"
|
|
|
|
$(App_Name): App/Seal_u.o App/Enclave_u.o $(App_Cpp_Objects)
|
|
@$(CXX) $^ -o $@ $(App_Link_Flags)
|
|
@echo "LINK => $@"
|
|
|
|
######## Sealing enclave Objects ########
|
|
|
|
Seal/Seal_t.h: $(SGX_EDGER8R) Seal/Seal.edl
|
|
@cd Seal && $(SGX_EDGER8R) --trusted ../Seal/Seal.edl --search-path ../Seal --search-path $(SGX_SDK)/include
|
|
@echo "GEN => $@"
|
|
|
|
Seal/Seal_t.c: Seal/Seal_t.h
|
|
|
|
Seal/Seal_t.o: Seal/Seal_t.c
|
|
@$(CC) $(Enclave_C_Flags) -c $< -o $@
|
|
@echo "CC <= $<"
|
|
|
|
Seal/%.o: Seal/%.cpp Seal/Seal_t.h
|
|
@$(CXX) $(Enclave_Cpp_Flags) -c $< -o $@
|
|
@echo "CXX <= $<"
|
|
|
|
$(Seal_Enclave_Name): Seal/Seal_t.o $(Seal_Enclave_Cpp_Objects)
|
|
@$(CXX) $^ -o $@ $(Enclave_Link_Flags)
|
|
@echo "LINK => $@"
|
|
|
|
$(Signed_Seal_Enclave_Name): $(Seal_Enclave_Name)
|
|
ifeq ($(wildcard $(Seal_Enclave_Test_Key)),)
|
|
@echo "There is no enclave test key<Seal_private_test.pem>."
|
|
@echo "The project will generate a key<Seal_private_test.pem> for test."
|
|
@openssl genrsa -out $(Seal_Enclave_Test_Key) -3 3072
|
|
endif
|
|
@$(SGX_ENCLAVE_SIGNER) sign -key $(Seal_Enclave_Test_Key) -enclave $(Seal_Enclave_Name) -out $@ -config $(Seal_Enclave_Config_File)
|
|
@echo "SIGN => $@"
|
|
|
|
######## Enclave Objects ########
|
|
|
|
Enclave/Enclave_t.h: $(SGX_EDGER8R) Enclave/Enclave.edl
|
|
@cd Enclave && $(SGX_EDGER8R) --trusted ../Enclave/Enclave.edl --search-path ../Enclave --search-path $(SGX_SDK)/include
|
|
@echo "GEN => $@"
|
|
|
|
Enclave/Enclave_t.c: Enclave/Enclave_t.h
|
|
|
|
Enclave/Enclave_t.o: Enclave/Enclave_t.c
|
|
@$(CC) $(Enclave_C_Flags) -c $< -o $@
|
|
@echo "CC <= $<"
|
|
|
|
Enclave/%.o: Enclave/%.cpp Enclave/Enclave_t.h
|
|
@$(CXX) $(Enclave_Cpp_Flags) -c $< -o $@
|
|
@echo "CXX <= $<"
|
|
|
|
$(Enclave_Name): Enclave/Enclave_t.o $(Enclave_Cpp_Objects)
|
|
@$(CXX) $^ -o $@ $(Enclave_Link_Flags) $(PCL_LINK_FLAGS)
|
|
@echo "LINK => $@"
|
|
|
|
# encrypted enclave required only for PCL build
|
|
ifneq ($(SGX_PCL),0)
|
|
|
|
$(Encrypted_Enclave_Name): $(Enclave_Name) $(Pcl_Encryption_Tool)
|
|
@$(Pcl_Encryption_Tool) -i $< -o $@ -k $(PCL_KEY) $(Encryption_Tool_Flags)
|
|
@echo "Encrypted => $@"
|
|
|
|
endif # ifneq ($(SGX_PCL),0)
|
|
|
|
ifneq ($(SGX_PCL), 0)
|
|
$(Signed_Enclave_Name): $(Encrypted_Enclave_Name)
|
|
else
|
|
$(Signed_Enclave_Name): $(Enclave_Name)
|
|
endif
|
|
@$(SGX_ENCLAVE_SIGNER) sign -key $(Seal_Enclave_Test_Key) -enclave $< -out $@ -config $(Enclave_Config_File)
|
|
@echo "SIGN => $@"
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
@rm -f .config_* $(App_Name) $(Enclave_Name) $(Signed_Enclave_Name) $(App_Cpp_Objects) App/Enclave_u.* $(Enclave_Cpp_Objects) Enclave/Enclave_t.* $(Encrypted_Enclave_Name) $(Seal_Enclave_Name) $(Signed_Seal_Enclave_Name) App/Seal_u.* $(Seal_Enclave_Cpp_Objects) Seal/Seal_t.* sealed_key.bin
|
|
|