硬件要求(请无视)
CPU:intel 6代CPU及以上的版本支持SGX功能(Kaby Lake系列全支持,不确定可以去Intel官网查询https://ark.intel.com/ )
BIOS:进入主板BIOS设置,查看安全选项,如果有SGX选项,选择enable
上述要求可以无视,不要纠结这个要求,也无需任何设定。后面我们会用模拟SGX_MODE=SIM环境。如果可以满足当然好。
系统要求
Ubuntu* Desktop-16.04-LTS 64bits
Red Hat Enterprise Linux Server release 7.3 64bits
CentOS 7.3.1611 64bits
不能低于以上版本,如果测试不顺利。建议保持和我一样的版本。
https://github.com/01org/linux-sgx-driver 下载驱动代码
命令参考:git clone 。不会的就直接下载ftp上去
进入下载目录,看到Makefile文件
make
验证:echo $? 如果返回0 证明编译正常。否则排错。以下每一步编译都需要,不在重复。
$ sudo mkdir -p "/lib/modules/"`uname -r`"/kernel/drivers/intel/sgx"
$ sudo cp isgx.ko "/lib/modules/"`uname -r`"/kernel/drivers/intel/sgx"
$ sudo sh -c "cat /etc/modules | grep -Fxq isgx || echo isgx >> /etc/modules"
$ sudo /sbin/depmod
$ sudo /sbin/modprobe isgx
https://github.com/01org/linux-sgx
命令参考:git clone 。不会的就直接下载ftp上去
sudo apt-get install build-essential ocaml automake autoconf libtool wget python
sudo apt-get install libssl-dev libcurl4-openssl-dev protobuf-compiler libprotobuf-dev
进入源码包
./download_prebuilt.sh
make
如果make报错就,make clean然后重新make
上面只是编译,并没有安装。下面操作原始目录是下载的安装包目录
make sdk_install_pkg
make psw_install_pkg
之后在linux/installer/bin/下会找到安装的bin文件
cd linux/installer/bin
./sgx_linux_x64_sdk_${version}.bin
注释:进入目录后,执行命令。 ${version}的意思是根据你实际安装的版本。让系统自动补全就好。
比如我的sgx_linux_x64_psw_2.5.101.50123.bin
实际执行过程如下:
根据提示我选择安装在/opt/intel/sgxsdk目录下。然后执行
source /opt/intel/sgxsdk/sgxsdk/environment (必须),否则sample可能make报错
root@iZuf6btiy5djpody2zh356Z:~/linux-sgx/linux/installer/bin# ./sgx_linux_x64_sdk_2.5.101.50123.bin
Do you want to install in current directory? [yes/no] : no
Please input the directory which you want to install in : /opt/intel/sgxsdk
source /opt/intel/sgxsdk/sgxsdk/environment
cd SampleCode/LocalAttestation
make SGX_MODE=SIM
./app
注释:SGX_MODE=SIM 模拟模式
执行结果如下:可以看到程序运行过程中创建了3个enclave容器。
sudo apt-get install libssl-dev libcurl4-openssl-dev libprotobuf-dev
cd linux/installer/deb
sudo dpkg -i ./libsgx-urts_2.5.101.50123-xenial1_amd64.deb ./libsgx-enclave-common_2.5.101.50123-xenial1_amd64.deb
如果你的硬件并不支持SGX的话,这步是不需要的。
https://github.com/intel/linux-sgx-driver
https://github.com/intel/linux-sgx
https://blog.csdn.net/y734564892/article/details/78177444