Files in this directory demonstrate how to build and install the SGX SDK and PSW, and run SGX applications in Docker containers.
- Install Docker and Compose and configure them properly following their respective installation guide.
- Install SGX Flexible Launch Control driver. Note: See below to run with the Legacy Launch Control driver.
- In the root directory of this repo, prepare source code and download prebuilt binaries:
$ make preparation
This will start AESM and an SGX sample on one terminal using docker-compose.
$ ./build_compose_run.sh
Alternatively, you can run AESM and SGX sample containers in two separate terminals.
In one terminal,
$ ./build_and_run_aesm_docker.sh
In another terminal,
$ ./build_and_run_sample_docker.sh
The Dockerfile specifies 5 image build targets:
- builder: Builds PSW and SDK bin and debian installers from source.
- aesm: Takes the PSW bin installer from builder to install and run the AESM daemon.
- sample: Installs the SDK installer and the PSW bin installer from builder. Then builds and runs the SampleEnclave app
- aesm_deb: Takes the PSW debian installer from builder to install and run the AESM daemon.
- sample_deb: Takes the SDK installer and the PSW debian installer from builder to install. Then builds and runs the SampleEnclave app.
- build_and_run_aesm_docker.sh: Shows how to build and run the AESM image in Docker. This will start the AESM service listening to a named socket, located in /var/run/aesmd in the container and mounted in Docker volume aesmd-socket.
- build_and_run_aesm_deb_docker.sh: Same as above, but with the debian packages for PSW and DCAP.
- build_and_run_sample_docker.sh: Shows how to build and run the SampleEnclave app inside a Docker container with a locally built SGX sample image.
- build_and_run_sample_deb_docker.sh: Same as above, but with the debian packages for PSW.
All SGX applications need access to the SGX device nodes exposed by the kernel space driver. Depending on the driver or kernel you are using, the SGX device nodes may have different names and locations. Therefore, you need to ensure those nodes are mapped and mounted inside the containers properly.
SGX kernel patches are upstream now and included in main line kernel release 5.11 or later. The Flexible Launch Control driver is developed to imitate the kernel patches as closely as possible. It can be used for distros with kernels older than 5.11.
The sample scripts and Compose files are compatible with the Flexible Launch Control driver or a custom built kernel with SGX support. To use the Legacy Launch Control driver, make following modifications:
- Replace "/dev/sgx/enclave" device with "/dev/isgx" and remove "/dev/sgx/provision" device for AESM in docker-compose.yml and build_and_run_aesm_docker.sh
- Replace "/dev/sgx/enclave" with "/dev/isgx" for the sample container in docker-compose.yml and build_and_run_sample_docker.sh
Note: When you switch between drivers, make sure you uninstall the previous driver and reboot the system before installing the other one.
Note: Earlier versions of the Flexible Launch Control driver and kernel patches may expose the SGX device as a single node at "/dev/sgx".
Besides the Prerequisites, you need to have docker version >= 20.04 to support host-gateway used in build_and_run_qgs_docker.sh. And Legacy Launch Control driver is not supported.
This will start QGS on one terminal directly.
$ ./build_and_run_qgs_docker.sh
It will listen on docker volume /var/lib/docker/volumes/qgs-socket. In order to connect to QGS in this configuration, you need to run QEMU with quote-generation-service=unix:/var/lib/docker/volumes/qgs-socket/_data/qgs.socket
option and use TDVMCall mode(which is the default mode if you installed with rpm/deb package) to get quote within TD guest.