MIRAI is an abstract interpreter for the Rust compiler's mid-level intermediate representation (MIR). It is intended to become a widely used static analysis tool for Rust.
You'll need to install MIRAI as described here for MacOS and Windows and here for Linux.
To run MIRAI, use cargo with RUSTC_WRAPPER
set to mirai
.
Use rustup override set nightly-YYYY-MM-DD
to make Cargo use the same version of Rust as MIRAI. See the above installation
instruction to determine which version to use. If you forget to do that or use the wrong version,
you'll see an error message complaining about a dynamic load library not being found.
The easiest way to get started is to first build your project in the normal way (with one exception:
set RUSTFLAGS="-Z always_encode_mir"
to force the rust compiler to include MIR into its compiled output).
Refer to this link for details
on compiling a cargo project.
When there are no compile errors,
no lint errors and no test failures, you can proceed to the next step and run MIRAI. For example:
touch src/lib.rs
RUSTC_WRAPPER=mirai cargo build
The touch command (which needs to reference a real file in your project) forces Cargo to re-run rustc and to not assume that its cached error messages are still correct.
This will likely produce a lot of warnings, which you can then fix by adding annotations declared in this crate. Keep re-touching and running cargo build as above until there are no more warnings.
At this stage your code will be better documented and more readable. Perhaps you'll also have found and fixed a few bugs.
You can use the environment variable MIRAI_FLAGS
to provide command line options to MIRAI. The value is a string
which can contain any of the following flags:
--test_only
: instructs MIRAI to analyze only test methods in your crate. You must also provide the--tests
option to thecargo build
command to include those tests actually into your build.--diag=relaxed|strict|paranoid
: configures level of diagnostics. Withrelaxed
(the default) MIRAI will not report errors which are potential 'false positives'. Withstrict
it will report such errors. Withparanoid
it will flag any direct or indirect call as a potential error.--single_func <name>
: the name of a specific function you want to analyze.--
: any arguments after this marker are passed on to rustc.
You can get some insight into the inner workings of MIRAI by setting the verbosity level of log output to one of
warn
, info
, debug
, or trace
, via the environment variable MIRAI_LOG
.
Preliminary support for MIRAI is available in the design by contracts crate. There is currently no official release containing this support on crates.io, so you must directly refer to the gitlab repo using a dependency like below in your Cargo.toml:
contracts = { git = "https://gitlab.com/karroffel/contracts.git", branch = "master", features = [ "mirai_assertions" ]}
See the shopping cart example for usage.
See the developer guide for instructions on how to build, run and debug MIRAI.
- Stabilize MIRAI and get rid of crashing bugs.
- Summaries for intrinsics and standard library functions without MIR.
- Loop discovery
- Explicit loop invariants
- Loop invariant inference
- Model (ghost) variables
- Quantifiers
- Publish MIRAI to crates.io
- Support linting interfaces
- Tutorials and worked examples
See the CONTRIBUTING file for how to help out.
MIRAI is MIT licensed, as found in the LICENSE file.