Skip to content

ffosilva/mbedtls-compat-sgx

 
 

Repository files navigation

mbedtls-compat-sgx: mbed TLS Intel(r) SGX Compatibility Layer

mbedtls-compat-sgx is a compatibility layer for mbedtls (previously PolarSSL) to Intel(r) SGX. mbedtls-compat-sgx aims to preserve all of the features of mbedtls. With mbed TLS inside enclaves, you can

  • use a wide array of cryptographic primitives (hash, RSA, ECC, AES, etc).
  • build SGX-secured TLS clients and servers -- even OS cannot access session secrets.
  • SGX multithread support.
  • enjoy the awesome documentation and clean API of mbed TLS.

In addition, mbedtls-compat-sgx comes with examples to help you get started. Note that certain functionality is lost due to limitations of SGX. Read on for details.

Usage and Examples

mbedtls-compat-sgx is a static enclave library. General steps of using mbedtls-SGX in your project are:

  • compile and install mbedtls-compat-sgx (see below)
  • include trusted/mbedtls_sgx.edl in your enclave's EDL file.
  • make sure your compiler can find the headers in include.
  • link libmbedtls_sgx_u.a to the untrusted part of your application
  • link libmbedtls_sgx_t.a to your enclave. Note that mbedtls-SGX needs to be linked in the same group with other SGX standard libs. Your Makefile (or CMakeLists.txt) needs something like
-Wl,--start-group  -lmbedtls_sgx_t -lsgx_tstdc -lsgx_tcxx -l$(Crypto_Library_Name) -l$(Service_Library_Name) -Wl,--end-group

Build

Local environment

git clone https://github.com/ffosilva/mbedtls-compat-sgx.git --recursive && cd mbedtls-compat-sgx
mkdir build && cd build
cmake ..
make -j && make install

Using Docker

git clone https://github.com/ffosilva/mbedtls-compat-sgx.git --recursive && cd mbedtls-compat-sgx
make lib

Include the resultant mbedtls_SGX-2.24.0 as part of your project.

mbedtls_SGX-2.24.0
├── include
│   └── mbedtls
└── lib
    ├── libmbedtls_SGX_t.a
    ├── libmbedtls_SGX_u.a
    └── mbedtls_SGX.edl

Examples

To compile examples, run cmake with -DCOMPILE_EXAMPLES=YES

cmake .. -DCOMPILE_EXAMPLES=YES
make -j

Three examples will be built

  • s_client: a simple TLS client (by default it connects to google.com:443, dumps the HTML page and exits)
  • s_server: a simple TLS server. You can play with it by openssl s_client localhost:4433.
  • m_server: a multi-threaded TLS server, also listening at localhost:4433 by default.

Missing features and workarounds

Due to SGX's contraints, some features have been turned off.

  • The lack of trusted wall-clock time. SGX provides trusted relative timer but not an absolute one. This affects checking expired certificates. A workaround is to maintain an internal clock and calibrate it frequently.
  • No access to file systems: mbedtls-SGX can not load CA files from file systems. To work this around, you need to hardcode root CAs as part of the enclave program. See example/enclave/ca_bundle.h for an example.

License

mbedtls-compat-sgx is open source under Apache 2.0. See LICENSE for more details.

Packages

No packages published

Languages

  • C 92.1%
  • C++ 3.6%
  • CMake 3.5%
  • Other 0.8%