mirror of
https://github.com/intel/linux-sgx
synced 2026-06-08 14:49:32 +00:00
8a22317709
Upgraded to OpenSSL 3.0.10. Added interoperable RA-TLS support which follows CCC design. Enhanced Protect File System performance and added additional dependency `libsgx_pthread.a`. Added the Constant Time instruction Decoder (CTD) into the default AEX-Notify mitigation handler in order to prevent the introduction of any additional subtle sidechannel leakages within the default handler. Added Mistletoe 3 mitigations to the IPP Cryptography Library to the AES-ECB, AESGCM, and AES-CMAC algorithms. These have been incorporated transparently into the `sgx_tcrypto` library. Resigned all Intel® SGX Architecture Enclaves. Upgraded Intel SGX Quote Verification Enclave to integrate OpenSSL/SgxSSL 3.0.10. Added Attestation Library support for Intel(R) TDX Migration TD. Added Rust wrapper for low-level Quote Generation APIs. Enabled `SE_TRACE` log in release binary. Updated Rust QVL wrapper to use native Rust structure for quote verification collateral. Added a limitation in the DCAP QVL to only allow the user to set the QvE load policy once. Fixed bugs. Signed-off-by: Li, Xun <xun.li@intel.com>
95 lines
3.4 KiB
Bash
Executable File
95 lines
3.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# 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.
|
|
#
|
|
#
|
|
|
|
ARG1=${1:-build}
|
|
project_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
echo "project_dir is $project_dir"
|
|
sgxssl_dir=$project_dir/sgxssl
|
|
openssl_out_dir=$sgxssl_dir/openssl_source
|
|
openssl_ver_name=openssl-3.0.10
|
|
intel_sgx_ssl_url=https://github.com/intel/intel-sgx-ssl
|
|
support_tls_branch=support_tls_openssl3
|
|
build_script=$sgxssl_dir/Linux/build_openssl.sh
|
|
server_url_path=https://www.openssl.org/source
|
|
full_openssl_url=$server_url_path/$openssl_ver_name.tar.gz
|
|
full_openssl_url_old=$server_url_path/old/3.0.10/$openssl_ver_name.tar.gz
|
|
|
|
FileExists() {
|
|
pushd $sgxssl_dir/Linux/
|
|
if [ $SGX_DEBUG == 0 ] ; then
|
|
echo "build release mode openssl"
|
|
make clean sgxssl_no_mitigation
|
|
else
|
|
echo "build debug mode openssl"
|
|
make clean sgxssl_no_mitigation DEBUG=1
|
|
fi
|
|
echo "build sgxssl completed"
|
|
popd
|
|
}
|
|
|
|
debug=false
|
|
|
|
if [ $debug == true ] ; then
|
|
read -n 1 -p "download souce code only, because we need to build ourselves"
|
|
fi
|
|
|
|
openssl_chksum=1761d4f5b13a1028b9b6f3d4b8e17feb0cedc9370f6afe61d7193d2cdce83323
|
|
rm -f check_sum_openssl.txt
|
|
if [ ! -f $build_script ]; then
|
|
git clone $intel_sgx_ssl_url -b $support_tls_branch $sgxssl_dir || exit 1
|
|
fi
|
|
|
|
if [ ! -f $openssl_out_dir/$openssl_ver_name.tar.gz ]; then
|
|
wget $full_openssl_url_old -P $openssl_out_dir || wget $full_openssl_url -P $openssl_out_dir || exit 1
|
|
sha256sum $openssl_out_dir/$openssl_ver_name.tar.gz > $sgxssl_dir/check_sum_openssl.txt
|
|
echo "downloading OPENSSL source code now..."
|
|
grep $openssl_chksum $sgxssl_dir/check_sum_openssl.txt
|
|
if [ $? -ne 0 ]; then
|
|
echo "File $openssl_out_dir/$openssl_ver_name.tar.gz checksum failure"
|
|
rm -f $openssl_out_dir/$openssl_ver_name.tar.gz
|
|
exit -1
|
|
fi
|
|
fi
|
|
|
|
|
|
if [ "$1" = "nobuild" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
if [ $debug == false ] ; then
|
|
echo "only when debug is turned off, can script go here"
|
|
FileExists
|
|
echo "endof of build sgxssl" && exit 0
|
|
fi
|
|
|
|
echo "end of script"
|