Builds the sel4 kernel and generates Rust bindings around it, as configured by a feL4 manifest.
This library provides thin Rust bindings around the seL4 codebase; more idiomatic Rust wrappers for the enclosed functionality will be supplied in other crates.
Intended for use in projects managed by cargo-fel4, see that repository for introductory materials.
libsel4-sys uses git submodules to make seL4 related code available locally. Building the seL4 code requires several system dependencies to be installed. The few Rust dependencies are managed by Cargo.toml, so Cargo is necessary, as well as Xargo for cross-compilation. Rustup is the recommended Rust toolchain manager.
This project is intended to be built in the context of the cargo fel4
command, which manages
the piping of key environment variables relevant to the downstream project.
Install Rust Nightly ```bash
wget https://static.rust-lang.org/rustup/rustup-init.sh
chmod +x rustup-init.sh sh rustup-init.sh
rustup install nightly ```
Install xargo ```bash
rustup component add --toolchain nightly rust-src
cargo +nightly install xargo ```
Install the gnu cross compilers ```bash
sudo apt-get install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf
sudo apt-get install gcc-aarch64-linux-gnu g++-aarch64-linux-gnu ```
Install Python, pip, and a sel4-specific pip package. ```bash
sudo apt-get install python-pip
pip install sel4-deps ```
Install cmake
CMake version 3.7.2
or greater is required.
Binary releases are available from cmake.org.
An example workflow for a recent binary installation on Ubuntu can be found on StackExchange's askUbuntu.
Alternately, you can use Python's pip
tool to install the latest cmake.
bash
sudo pip install --upgrade cmake
Install ninja-build
Ninja version 1.7.1
or greater is required or greater is required due to the seL4 build system.
Binary releases are available from github.
Ubuntu users can typically install ninja using apt-get.
bash
sudo apt-get install ninja-build
The underlying seL4 build system requires xmlint
.
bash
sudo apt-get install libxml2-utils
cargo-fel4
to create a new feL4 project, which will automatically include libsel4-sys
as a dependency to build
bash
cargo fel4 new demo_project
cd demo_project
cargo fel4 build
cargo-fel4
, though are not recommended for general use.bash
git clone https://github.com/maindotrs/libsel4-sys.git
cd libsel4-sys
bash
git submodule update --init
FEL4_MANIFEST_PATH
environment variable is set and
includes a path pointing to a fel4.toml file, as specified by the fel4-config
crate.
Additionally, the RUST_TARGET_PATH
must be supplied, pointing to the directory that
contains the Rust target specification JSON files relevant for the desired build target.
bash
RUST_TARGET_PATH=$PWD/test_configs FEL4_MANIFEST_PATH=$PWD/test_configs/fel4.toml xargo rustc --target x86_64-sel4-fel4 -vv
libsel4-sys may be included in your Rust project by including it in your Cargo.toml.
[dependencies]
section:
toml
libsel4-sys = "0.5"
The generated bindings should be treated as relatively ephemeral and dynamic compared to most Rust libraries. The output is context-specific to the target (e.g. "armv7-sel4-fel4") and the set of configuration flags derived from the input feL4 manifest file.
See the Rust docs for a surface-level overview of the raw APIs exposed.
bash
RUST_TARGET_PATH=$PWD/test_configs FEL4_MANIFEST_PATH=$PWD/test_configs/fel4.toml xargo doc --target x86_64-sel4-fel4 -vv
rust
extern crate libsel4_sys;
use libsel4_sys::{seL4_Word, seL4_CapRights_new};
let cap_rights = unsafe { seL4_CapRights_new(0 as seL4_Word, 1 as seL4_Word, 0 as seL4_Word); };
Currently, all testing is done one level up, in the cargo-fel4
repo,
which has the capability to auto-generate the appropriate test runner
code and exercise the resultant artifacts.
See the cargo-fel4 repository for its build and installation.
Once cargo-fel4
and the libsel4-sys
dependencies are installed, you should be able to run:
bash
cargo fel4 new tests
cd tests
cargo fel4 test build
cargo fel4 test simulate
Please see the LICENSE file for more details