Files
intel-linux-sgx/psw/urts/linux/Makefile
T
Li, Xun a53adeaab7 Linux 2.24 Open Source Gold Release
Upgraded to OpenSSL 3.0.13.
Upgraded to Intel(R) Integrated Performance Primitives (IPP) Cryptography library
  version 2021.11.
Upgraded to Protobuf 3.23.2.
Upgraded MbedTLS to 3.5.2.
Upgraded Intel DCAP Ring3 Abstraction Layer (R3AAL) library to support ConfigFS-TSM
  as communication channel between host and guest for TDX remote attestation.
Upgraded Intel DCAP Quote Verification Enclave to integrate OpenSSL/SgxSSL 3.0.13.
Upgraded new TDX attestation result “TD_RELAUNCH_ADVISED” in Intel DCAP Quote
  Verification Library (QVL) and Appraisal Engine.
Fixed bugs.

Signed-off-by: Li, Xun <xun.li@intel.com>
2024-04-26 15:24:15 +08:00

187 lines
6.3 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.
#
#
include ../../../buildenv.mk
URTS_VER:= $(shell awk '$$2 ~ /URTS_VERSION/ { print substr($$3, 2, length($$3) - 2); }' $(COMMON_DIR)/inc/internal/se_version.h)
ifndef DEBUG
CXXFLAGS += -DDISABLE_TRACE
CFLAGS += -DDISABLE_TRACE
endif
CXXFLAGS += -fPIC -Werror -g
CXXFLAGS += $(ADDED_INC)
CFLAGS += -fPIC -Werror -g
CFLAGS += $(ADDED_INC)
VTUNE_DIR = $(LINUX_EXTERNAL_DIR)/vtune/linux
PREBUILT_OPENSSL_DIR := $(LINUX_EXTERNAL_DIR)/dcap_source/prebuilt/openssl
CRYPTO_LIB := -L$(PREBUILT_OPENSSL_DIR)/lib/linux64 -lcrypto
INC += -I$(SGX_HEADER_DIR) \
-I$(COMMON_DIR)/inc/internal \
-I$(COMMON_DIR)/inc/internal/linux \
-I$(LINUX_PSW_DIR)/enclave_common \
-I$(LINUX_PSW_DIR)/urts/ \
-I$(LINUX_PSW_DIR)/urts/linux \
-I$(LINUX_PSW_DIR)/urts/parser \
-I$(VTUNE_DIR)/include \
-I$(VTUNE_DIR)/sdk/src/ittnotify \
-I$(PREBUILT_OPENSSL_DIR)/inc
LDFLAGS := -lwrapper
INTERNAL_LDFLAGS := -lwrapper
LDFLAGS += $(COMMON_LDFLAGS) -Wl,-Bdynamic -L$(BUILD_DIR) -lsgx_enclave_common -lpthread
INTERNAL_LDFLAGS += $(COMMON_LDFLAGS) -lpthread
LDFLAGS += -L$(VTUNE_DIR)/sdk/src/ittnotify -littnotify -ldl $(CRYPTO_LIB)
INTERNAL_LDFLAGS += -L$(VTUNE_DIR)/sdk/src/ittnotify -littnotify -ldl $(CRYPTO_LIB)
LDFLAGS += -Wl,--version-script=urts.lds -Wl,--gc-sections
INTERNAL_LDFLAGS += -Wl,--version-script=urts_internal.lds -Wl,--gc-sections
DIR1 := $(LINUX_PSW_DIR)/urts/linux
DIR2 := $(LINUX_PSW_DIR)/urts
DIR3 := $(LINUX_PSW_DIR)/urts/parser
DIR4 := $(LINUX_PSW_DIR)/urts/parser/linux
DIR5 := $(LINUX_PSW_DIR)/../common/src/linux
DIR6 := $(LINUX_PSW_DIR)/../common/src
LIB += -L$(COMMON_DIR)/se_wrapper_psw \
-L$(SGX_LIB_DIR)
OBJ1 := loader.o \
node.o \
se_detect.o \
enclave.o \
tcs.o \
enclave_mutex.o \
enclave_thread.o \
routine.o \
urts_xsave.o \
se_ocalls.o \
cpu_features.o \
cpu_features_ext.o \
launch_checker.o \
urts_version.o \
enclave_creator_hw_com.o
OBJ2 := urts.o \
enclave_creator_hw.o \
misc.o \
sig_handler.o \
debugger_support.o \
get_thread_id.o \
prd_css_util.o \
urts_emm.o \
edmm_utility.o
OBJ3 := enter_enclave.o \
xsave_gnu.o
OBJ4 := section.o \
elfparser.o
OBJ5 := urts_internal.o
OBJ6 := crypto_evp_digest.o crypto_rsa_key.o crypto_rsa3072.o
CPP_OBJ := $(OBJ1) $(OBJ2) $(OBJ4) $(OBJ5) $(OBJ6)
URTS_OBJ := $(OBJ3) $(OBJ1) $(OBJ2) $(OBJ4) $(OBJ6)
INTERNAL_OBJ := $(OBJ3) $(CPP_OBJ)
vpath %.cpp $(DIR1):$(DIR2):$(DIR3):$(DIR4):$(DIR6)
vpath %.S $(DIR1):$(DIR5)
LIBWRAPPER := libwrapper.a
LIBSGX_ENCLAVE_COMMON := libsgx_enclave_common.a
LIBURTS := libsgx_urts.so
LIBURTS_INTERNAL := liburts_internal.so
LIBURTS_DEBUG := libsgx_urts.so.debug
.PHONY: all
all: $(LIBURTS) $(LIBURTS_INTERNAL) $(LIBURTS_DEBUG) | $(BUILD_DIR)
@$(CP) $(LIBURTS) $|
@$(CP) $(LIBURTS_INTERNAL) $|
ifndef DEBUG
@$(CP) $(LIBURTS_DEBUG) $|
endif
$(LIBURTS_INTERNAL): $(INTERNAL_OBJ) $(LIBWRAPPER) $(LIBSGX_ENCLAVE_COMMON) ittnotify
@$(MKDIR) $(BUILD_DIR)/.sgx_enclave_common
@$(RM) -f $(BUILD_DIR)/.sgx_enclave_common/*
cd $(BUILD_DIR)/.sgx_enclave_common && \
$(AR) x $(BUILD_DIR)/$(LIBSGX_ENCLAVE_COMMON) && \
$(RM) -f edmm_utility.o
$(CXX) $(CXXFLAGS) -shared -Wl,-soname=$@ $(LIB) -o $@ $(INTERNAL_OBJ) $(BUILD_DIR)/.sgx_enclave_common/*.o $(INTERNAL_LDFLAGS)
@$(RM) -rf $(BUILD_DIR)/.sgx_enclave_common
$(LIBURTS): $(URTS_OBJ) $(LIBWRAPPER) $(LIBSGX_ENCLAVE_COMMON) ittnotify
$(CXX) $(CXXFLAGS) -shared -Wl,-soname=$@.$(call SPLIT_VERSION,$(URTS_VER),1) $(LIB) -o $@ $(URTS_OBJ) $(LDFLAGS)
$(LIBURTS_DEBUG): $(LIBURTS)
ifndef DEBUG
$(CP) $(LIBURTS) $(LIBURTS).orig
$(OBJCOPY) --only-keep-debug $(LIBURTS) $(LIBURTS_DEBUG)
$(STRIP) -g $(LIBURTS)
$(OBJCOPY) --add-gnu-debuglink=$(LIBURTS_DEBUG) $(LIBURTS)
endif
$(CPP_OBJ): %.o: %.cpp
$(CXX) -c $(CXXFLAGS) $(INC) $< -o $@
$(OBJ3): %.o: %.S
$(CC) -c $(CFLAGS) $(INC) $< -o $@
$(LIBWRAPPER):
$(MAKE) -C $(COMMON_DIR)/se_wrapper_psw/
$(LIBSGX_ENCLAVE_COMMON):
$(MAKE) -C $(LINUX_PSW_DIR)/enclave_common/
.PHONY: ittnotify
ittnotify:
CFLAGS= CXXFLAGS= $(MAKE) -C $(VTUNE_DIR)/sdk/src/ittnotify
$(BUILD_DIR):
@$(MKDIR) $@
.PHONY: clean
clean::
@$(RM) *.o $(LIBURTS) $(LIBURTS_INTERNAL) $(LIBURTS_DEBUG)
@$(RM) $(BUILD_DIR)/$(LIBURTS) $(BUILD_DIR)/$(LIBURTS_INTERNAL)
@$(RM) $(LIBURTS).orig $(BUILD_DIR)/$(LIBURTS_DEBUG)
$(MAKE) -C $(COMMON_DIR)/se_wrapper_psw/ clean
$(MAKE) -C $(LINUX_PSW_DIR)/enclave_common/ clean
$(MAKE) -C $(VTUNE_DIR)/sdk/src/ittnotify clean