install-sgx-sdk.bin.tmpl 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. #!/usr/bin/env bash
  2. #
  3. # Copyright (C) 2011-2017 Intel Corporation. All rights reserved.
  4. #
  5. # Redistribution and use in source and binary forms, with or without
  6. # modification, are permitted provided that the following conditions
  7. # are met:
  8. #
  9. # * Redistributions of source code must retain the above copyright
  10. # notice, this list of conditions and the following disclaimer.
  11. # * Redistributions in binary form must reproduce the above copyright
  12. # notice, this list of conditions and the following disclaimer in
  13. # the documentation and/or other materials provided with the
  14. # distribution.
  15. # * Neither the name of Intel Corporation nor the names of its
  16. # contributors may be used to endorse or promote products derived
  17. # from this software without specific prior written permission.
  18. #
  19. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20. # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22. # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  23. # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  24. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  25. # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  26. # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  27. # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  28. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. #
  31. #
  32. set -e
  33. PKG_NAME="Intel SGX SDK"
  34. select_install_path()
  35. {
  36. USER_INPUT_PATH=$(pwd)
  37. echo
  38. echo -n "Do you want to install in current directory? [yes/no] : "
  39. read ANSWER
  40. if [ "$ANSWER" == "yes" ]; then
  41. if [ ! -d "$USER_INPUT_PATH" ] || [ ! -w "$USER_INPUT_PATH" ]; then
  42. echo "Can not install in $USER_INPUT_PATH, please check the permission!"
  43. exit 4
  44. fi
  45. else
  46. echo
  47. echo -n "Please input the directory which you want to install in : "
  48. read USER_INPUT_PATH
  49. eval USER_INPUT_PATH="$USER_INPUT_PATH"
  50. if [ -d "$USER_INPUT_PATH" ]; then
  51. if [ ! -w "$USER_INPUT_PATH" ]; then
  52. echo "Can not install in $USER_INPUT_PATH, please check the permission!"
  53. exit 4
  54. fi
  55. else
  56. mkdir -p "$USER_INPUT_PATH"
  57. if [ "$?" != "0" ]; then
  58. echo "Can not install in $USER_INPUT_PATH, please check the permission!"
  59. exit 4
  60. fi
  61. fi
  62. fi
  63. USER_INPUT_PATH=$(cd "$USER_INPUT_PATH"; pwd -P)
  64. }
  65. select_install_path
  66. PATH=/usr/bin:/bin
  67. umask 022
  68. SDKPKG=`mktemp -t sgx-sdk-pkg.XXXXXX`
  69. SDK_TEMP_FOLDER=`mktemp -d sgx-sdk-XXXXXX -p /tmp`
  70. trap "rm -rf $SDKPKG $SDK_TEMP_FOLDER 2>/dev/null; exit 3" HUP INT QUIT TERM
  71. # The number of lines in this script (plus 1). Using this number to
  72. # calculate the start address of the payload.
  73. NR_SCRIPT_LINES=@linenum@
  74. # Run /usr/bin/md5sum on the binary payload to get the MD5 check sum.
  75. CHKSUM=@md5sum@
  76. # Get the install payload from this shell script.
  77. echo -n "Unpacking $PKG_NAME ..."
  78. tail -n +$NR_SCRIPT_LINES "$0" > $SDKPKG
  79. echo " done."
  80. echo -n "Verifying the integrity of the install package ..."
  81. if test $(md5sum $SDKPKG | awk '{print $1}') != $CHKSUM; then
  82. echo " The install package appears to be corrupted."
  83. exit 1
  84. fi
  85. echo " done."
  86. echo -n "Installing $PKG_NAME ..."
  87. tar zxf $SDKPKG -C $SDK_TEMP_FOLDER >/dev/null 2>&1
  88. retcode=$? # Save the return code
  89. # Clean-up the temporary tarball.
  90. rm -f $SDKPKG 2>/dev/null
  91. if test $retcode -ne 0; then
  92. echo " failed."
  93. exit 2
  94. fi
  95. echo " done."
  96. pushd ${SDK_TEMP_FOLDER}
  97. sed -i "s#\(SGX_PACKAGES_PATH=\).*#\1$USER_INPUT_PATH#" scripts/installConfig
  98. source scripts/installConfig
  99. make install INSTALLER_FORM=BIN
  100. popd
  101. ${SGX_PACKAGES_PATH}/${SDK_PKG_NAME}/scripts/install.sh BIN
  102. rm -fr ${SDK_TEMP_FOLDER}
  103. export_the_simulation()
  104. {
  105. if [ ! -d ${SGX_PACKAGES_PATH}/${SDK_PKG_NAME}/sdk_libs ]; then
  106. mkdir ${SGX_PACKAGES_PATH}/${SDK_PKG_NAME}/sdk_libs
  107. else
  108. rm -f ${SGX_PACKAGES_PATH}/${SDK_PKG_NAME}/sdk_libs/libsgx_urts_sim.so
  109. rm -f ${SGX_PACKAGES_PATH}/${SDK_PKG_NAME}/sdk_libs/libsgx_uae_service_sim.so
  110. fi
  111. ln -s ${SGX_PACKAGES_PATH}/${SDK_PKG_NAME}/${LIB_DIR}/libsgx_urts_sim.so ${SGX_PACKAGES_PATH}/${SDK_PKG_NAME}/sdk_libs/
  112. ln -s ${SGX_PACKAGES_PATH}/${SDK_PKG_NAME}/${LIB_DIR}/libsgx_uae_service_sim.so ${SGX_PACKAGES_PATH}/${SDK_PKG_NAME}/sdk_libs/
  113. }
  114. generate_environment_script()
  115. {
  116. cat > ${SGX_PACKAGES_PATH}/${SDK_PKG_NAME}/environment <<EOF
  117. export SGX_SDK=${SGX_PACKAGES_PATH}/${SDK_PKG_NAME}
  118. export PATH=\$PATH:\$SGX_SDK/$(dirname ${BIN_DIR}):\$SGX_SDK/${BIN_DIR}
  119. export PKG_CONFIG_PATH=\$PKG_CONFIG_PATH:\$SGX_SDK/pkgconfig
  120. if [ -z "\$LD_LIBRARY_PATH" ]; then
  121. export LD_LIBRARY_PATH=\$SGX_SDK/sdk_libs
  122. else
  123. export LD_LIBRARY_PATH=\$LD_LIBRARY_PATH:\$SGX_SDK/sdk_libs
  124. fi
  125. EOF
  126. }
  127. export_the_simulation
  128. generate_environment_script
  129. echo """
  130. Please set the environment variables with below command:
  131. "
  132. echo -e "\033[32;49;1msource ${SGX_PACKAGES_PATH}/${SDK_PKG_NAME}/environment\033[39;49;0m"
  133. exit 0