我最近正在尝试学习 intel sgx sdk。
今天我在我的代码中发现了一个问题,在 intel DOC 或 WEB 中找不到任何解释。
当我在某些情况下调用 sgx_create_enclave 时,代码将返回 SGX_ERROR_UNEXPECTED。我认为我的 CMakeLists.txt 有问题(我使用 cmake 编译项目中不受信任的部分),因为当我在 sdk 示例中使用模板 Makefile 进行编译时,代码运行正常。更多细节吹:
代码将在以下情况下成功运行:
* compile with Makefile
* compile with cmake and comment out app.cpp:21
在这种情况下代码会返回错误:
* compile with cmake and do not comment out app.cpp:21
此处提供的代码(我已删除所有不必要的代码): https ://github.com/chilogen/workspace/tree/master/error/SimpleEnclave
应用程序.cpp
#include "enclave_u.h"
#include <sgx_urts.h>
#include <sgx_uae_service.h>
#include <sgx_ukey_exchange.h>
#include <iostream>
using namespace std;
class testClass {
public:
sgx_launch_token_t _token = {0};
sgx_enclave_id_t _eid;
sgx_ra_context_t _ctx;
void init_enclave();
bool request(uint8_t *src, uint32_t srcLen, uint8_t *cmac);
//will set _ctx here
//void do_attestation();
}x;
bool testClass::request(uint8_t *src, uint32_t srcLen, uint8_t *cmac) {
sgx_status_t retval,status;
status = ecall_calcmac(_eid, &retval,&_ctx, SGX_RA_KEY_SK, src, srcLen, cmac);
return true;
}
void testClass::init_enclave(){
sgx_enclave_id_t global_eid;
sgx_launch_token_t token={0};
sgx_status_t ret;
int updated=0;
ret=sgx_create_enclave("enclave.signed.so",SGX_DEBUG_FLAG, \
&token,&updated,&global_eid,NULL);
if(ret!=SGX_SUCCESS){
std::cout<<"error init enclavedsfdsf\n";
printf("%08x\n",ret);
exit(1);
}
}
int main(){
x.init_enclave();
return 0;
}
CMakeLists.txt
include_directories (/opt/intel/sgxsdk/include)
link_directories (/opt/intel/sgxsdk/lib64)
add_library (enclave_untrusted enclave_u.c)
add_executable (app app.cpp)
target_link_libraries (app enclave_untrusted sgx_ukey_exchange sgx_urts sgx_uae_service pthread)
Makefile(我认为这是重要的部分,如果您对 intel sgx 不太了解,那么您仍然可以检查 CMakeLists.txt 和 Makefile 之间的区别)
## SGX SDK 设置SGX_SDK ?= /opt/intel/sgxsdk
SGX_LIBRARY_PATH := $(SGX_SDK)/lib64
SGX_ENCLAVE_SIGNER := $(SGX_SDK)/bin/x64/sgx_sign
SGX_EDGER8R := $(SGX_SDK)/bin/x64/sgx_edger8r
######## App Settings ########
App_Include_Paths := -I$(SGX_SDK)/include
App_Link_Flags := -L /opt/intel/sgxsdk/lib64 -lsgx_urts -lsgx_ukey_exchange -lsgx_uae_service -pthread
.PHONY: all
all: app
######## App Objects ########
enclave_u.c: $(SGX_EDGER8R) enclave.edl
@$(SGX_EDGER8R) --untrusted enclave.edl --search-path $(SGX_SDK)/include
@echo "GEN => $@"
enclave_u.o: enclave_u.c
@$(CC) $(App_Include_Paths) -c $< -o $@
@echo "CC <= $<"
app.o: app.cpp
@$(CXX) $(App_Include_Paths) -c $< -o $@
@echo "CXX <= $<"
app: app.o enclave_u.o
@$(CXX) $^ -o $@ $(App_Link_Flags)
@echo "LINK => $@"
.PHONY: clean
clean:
@rm -f *.o app
更新:编译.sh
gcc -c -I /opt/intel/sgxsdk/include/ -o enclave_u.o enclave_u.c
g++ -c app.cpp -o app.o -I /opt/intel/sgxsdk/include/
g++ -o app app.o enclave_u.o -L /opt/intel/sgxsdk/lib64 -lsgx_urts -lsgx_ukey_exchange -lsgx_uae_service -pthread
那么,我的代码(或 CMakeLists.txt)有什么问题,我该怎么办?
如果你能给我一些想法,我将非常感激。