urts.cpp 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /*
  2. * Copyright (C) 2011-2018 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. #include "sgx_error.h"
  32. #include "sgx_urts.h"
  33. #include "se_types.h"
  34. #include <errno.h>
  35. #include <fcntl.h>
  36. #include <limits.h>
  37. #include "urts_com.h"
  38. extern "C" sgx_status_t sgx_create_enclave(const char *file_name, const int debug, sgx_launch_token_t *launch_token, int *launch_token_updated, sgx_enclave_id_t *enclave_id, sgx_misc_attribute_t *misc_attr)
  39. {
  40. sgx_status_t ret = SGX_SUCCESS;
  41. //Only true or false is valid
  42. if(TRUE != debug && FALSE != debug)
  43. return SGX_ERROR_INVALID_PARAMETER;
  44. int fd = open(file_name, O_RDONLY);
  45. if(-1 == fd)
  46. {
  47. SE_TRACE(SE_TRACE_ERROR, "Couldn't open the enclave file, error = %d\n", errno);
  48. return SGX_ERROR_ENCLAVE_FILE_ACCESS;
  49. }
  50. se_file_t file = {NULL, 0, false};
  51. char resolved_path[PATH_MAX];
  52. file.name = realpath(file_name, resolved_path);
  53. file.name_len = (uint32_t)strlen(resolved_path);
  54. ret = _create_enclave(!!debug, fd, file, NULL, launch_token, launch_token_updated, enclave_id, misc_attr);
  55. if(SGX_SUCCESS != ret && misc_attr)
  56. {
  57. sgx_misc_attribute_t plat_cap;
  58. memset(&plat_cap, 0, sizeof(plat_cap));
  59. get_enclave_creator()->get_plat_cap(&plat_cap);
  60. memcpy_s(misc_attr, sizeof(sgx_misc_attribute_t), &plat_cap, sizeof(sgx_misc_attribute_t));
  61. }
  62. close(fd);
  63. return ret;
  64. }
  65. extern "C" sgx_status_t
  66. sgx_create_encrypted_enclave(
  67. const char *file_name,
  68. const int debug,
  69. sgx_launch_token_t *launch_token,
  70. int *launch_token_updated,
  71. sgx_enclave_id_t *enclave_id,
  72. sgx_misc_attribute_t *misc_attr,
  73. uint8_t* sealed_key)
  74. {
  75. sgx_status_t ret = SGX_SUCCESS;
  76. //Only true or false is valid
  77. if(TRUE != debug && FALSE != debug)
  78. return SGX_ERROR_INVALID_PARAMETER;
  79. if(NULL == sealed_key)
  80. {
  81. return SGX_ERROR_INVALID_PARAMETER;
  82. }
  83. int fd = open(file_name, O_RDONLY);
  84. if(-1 == fd)
  85. {
  86. SE_TRACE(SE_TRACE_ERROR, "Couldn't open the enclave file, error = %d\n", errno);
  87. return SGX_ERROR_ENCLAVE_FILE_ACCESS;
  88. }
  89. se_file_t file = {NULL, 0, false};
  90. char resolved_path[PATH_MAX];
  91. file.name = realpath(file_name, resolved_path);
  92. file.name_len = (uint32_t)strlen(resolved_path);
  93. ret = _create_enclave(
  94. !!debug,
  95. fd,
  96. file,
  97. NULL,
  98. launch_token,
  99. launch_token_updated,
  100. enclave_id,
  101. misc_attr,
  102. sealed_key);
  103. if(SGX_SUCCESS != ret && misc_attr)
  104. {
  105. sgx_misc_attribute_t plat_cap;
  106. memset(&plat_cap, 0, sizeof(plat_cap));
  107. get_enclave_creator()->get_plat_cap(&plat_cap);
  108. memcpy_s(misc_attr, sizeof(sgx_misc_attribute_t), &plat_cap, sizeof(sgx_misc_attribute_t));
  109. }
  110. close(fd);
  111. return ret;
  112. }