Mustang is a system for building programs built entirely in Rust, meaning they do not depend on any part of libc or crt1.o, and do not link in any C code.
Why? For fun! And to exercise some components built for other purposes (such as rsix
) but which happen to also be part of what's needed to do what Mustang is doing. And in the future, possibly also for experimenting with new kinds of platform ABIs and new forms of process argument passing.
Mustang isn't about making anything safer, for the foreseeable future. The major libc implementations are extraordinarily well tested and mature. Mustang for its part is experimental and has lots of unsafe
.
This also isn't about building a complete libc. It currently includes some things with libc-compatible interfaces, just enough to allow it to slide in underneath std
, however even this may not always be necessary. We'll see.
Mustang currently runs on Rust Nightly on Linux on x86-64, aarch64, and x86.
Usage
To use it, first install rust-src, which is needed by -Z build-std
:
$ rustup component add rust-src --toolchain nightly
Then, set the RUST_TARGET_PATH
environment variable to a path to mustang's specs
directory, so that you can name mustang
targets with --target=...
. For example, within a mustang repo:
$ export RUST_TARGET_PATH="$PWD/specs"
Then, in your own crate, add a dependency on mustang
:
[dependencies]
mustang = { git = "https://github.com/sunfishcode/mustang" }
And add an extern crate
declaration for mustang
to your top-level module (eg. main.rs). This is needed even in Rust 2018 Edition, to ensure that mustang
is linked in even though no functions in it are explicitly called:
extern crate mustang;
Then, compile with Rust nightly, using -Z build-std
and --target=<mustang-target>
. For example:
$ cargo +nightly run --quiet -Z build-std --target=x86_64-mustang-linux-gnu --example hello
.。oO(This process was started by origin! 🎯)
.。oO(Environment variables initialized by c-scape! 🌱)
.。oO(I/O performed by c-scape using rsix! 🌊)
Hello, world!
.。oO(This process will be exited by c-scape using rsix! 🚪)
$
That's a Rust program built entirely from Rust saying "Hello, world!"!
Those .。oO
lines are just debugging output to confirm everything is set up properly. Once mustang
is more stable, we'll stop printing them.
A simple way to check for uses of libc functions is to use nm -u
, since the above commands are configured to link libc dynamically. If mustang
has everything covered, there should be no output:
$ nm -u target/x86_64-mustang-linux-gnu/debug/examples/hello
$
The C Runtime
C has a runtime, and if you wish to link with any C libraries, the C runtime needs to be initialized. mustang
doesn't do this by default, but it does support this when the cargo feature "initialize-c-runtime" is enabled.
To compile C code with a *-mustang-*
target, you may need to tell the cc
crate which C compiler to use; for example, for i686-mustang-linux-gnu
, set the environment variable CC_i686-mustang-linux-gnu
to i686-linux-gnu-gcc
.
Known Limitations
Known limitations in mustang
include:
- Networking,
current_dir
, spawning new processes, threads, and unwinding panics are not implemented yet. - No support for dynamic linking yet.
Background
Mustang is partly inspired by similar functionality in steed
, but a few things are different. cargo's build-std is now available, which makes it much easier to work with custom targets. And Mustang is starting with the approach of starting by replacing libc interfaces and using std
as-is, rather than reimplementing std
. This is likely to evolve, but whatever we do, a high-level goal of Mustang is to avoid ever having to reimplement std
.
Where does mustang
go from here? Will it support feature X, platform Y, or use case Z? If origin
can do program startup in Rust, and rsix
can do system calls in Rust, what does it all mean?
And could mustang
eventually support new ABIs that aren't limited to passing C-style argc
/argv
(/envp
) convention, allowing new kinds of program argument passing?
Let's find out! Come say hi in the chat or an issue.
mustang
to a new architecture?
How does one port - Port
rsix
to the architecture, adding assembly sequences for making syscalls on the architecture. - Add assembly code to the
_start
function in src/lib.rs to callorigin::rust
. - Create a target file in
specs/
, by first following these instructions to generate a default target file, and then:- change
dynamic-linking
to false - add
-nostdlib
,-Wl,--require-defined=start
, and-Wl,--require-defined=environ
to pre-link-args - add
"vendor": "mustang"
See other targets in thespecs/
directory for examples.
- change
- Add the architecture to example/test/test.rs.
- Add CI testing to .github/workflows/main.yml, by copying what's done for other architectures.
mustang
to a new OS?
How does one port One probably needs to do similar things as for a new architecture, and also write a new origin::rust
implementation to handle the OS's convention for arguments, environment variables, and initialization functions.