#sgx #kvm #sev #tee #linux #intel-sgx #wasm-module

yanked enarx_test_011

Enarx Keep Loader

0.1.0 Oct 27, 2021

#5 in #sev

Apache-2.0

670KB
15K SLoC

lint enarxbot Workflow Status Average time to resolve an issue Percentage of issues still open Maintenance

enarx

This crate provides the enarx executable, which is a tool for running code inside an Enarx Keep - that is a hardware isolated environment using technologies such as Intel SGX or AMD SEV.

For more information about the project and the technology used visit the Enarx Project home page.

SGX and SEV machine setup

Please see this wiki page for instructions.

Building and Testing

Please see BUILD.md for instructions.

Install

First install all the build dependencies (see BUILD.md).

Install directly from crates.io:

$ cargo install --bin enarx -- enarx

or from the checked out git repository:

$ cargo install --bin enarx --path ./

Build and run a WebAssembly module

Install the Webassembly rust toolchain:

$ rustup target install wasm32-wasi

Create simple rust program:

$ cargo init --bin hello-world
$ cd hello-world
$ echo 'fn main() { println!("Hello, Enarx!"); }' > src/main.rs
$ cargo build --release --target=wasm32-wasi

Assuming you did install the enarx binary and have it in your $PATH, you can now run the Webassembly program in an Enarx keep.

$ enarx run target/wasm32-wasi/release/hello-world.wasm
[…]
Hello, Enarx!

If you want to suppress the debug output, add 2>/dev/null.

Select a Different Backend

enarx will probe the machine it is running on in an attempt to deduce an appropriate deployment backend. To see what backends are supported on your system, run:

$ enarx info

You can manually select a backend with the --backend option, or by setting the ENARX_BACKEND environment variable:

$ enarx run --backend=sgx target/wasm32-wasi/release/hello-world.wasm
$ ENARX_BACKEND=sgx enarx run target/wasm32-wasi/release/hello-world.wasm

License: Apache-2.0

Dependencies

~9–13MB
~235K SLoC