⚠️ [Documentation for RUPTA] is under development.
This open-source framework, RUPTA, supports pointer/alias analysis for Rust, operating on Rust MIR. It currently offers callsite-based pointer analysis, as detailed in our CC'24 paper (https://dl.acm.org/doi/10.1145/3640537.3641574).
- Rust nightly and components, as specified in rust-toolchain.
-
Clone the repository
-
Build & install
You can build RUPTA in two different ways:
$ cargo build
This command generates two binaries,
cargo-pta
andpta
, in thetarget/debug
directory.You can also install RUPTA into
cargo
:$ cargo --locked install --path .
This enables you to perform pointer analysis on a Rust project using the command
cargo pta
, similar to othercargo
commands such ascargo fmt
.
You can run RUPTA for a Rust project using the binary cargo-pta
:
$ cargo-pta pta -- --entry <entry-function-name> --pta-type <pta-type> --context-depth <N> --dump-call-graph <call-graph-path> --dump-pts <pts-path>
You can also use the command cargo pta
instead of cargo-pta pta
if RUPTA has been installed into cargo
.
Alternatively, you can run RUPTA for a single file using the binary pta
:
$ pta <path-to-file> --entry-func <entry-function-name> --pta-type <pta-type> --context-depth <N> --dump-call-graph <call-graph-path> --dump-pts <pts-path>
Options:
<entry-function-name>
: Specifies the entry function. Default ismain()
.<pta-type>
: Determines the type of pointer analysis. Options arecs
(callsite-sensitive) orander
(andersen), withcs
as the default.context-depth
: Sets the depth of contexts in callsite-sensitive analysis. Default is 1.dump-call-graph
: Outputs the call graph in DOT format.dump-pts
: Outputs the points-to analysis results.dump-mir
: Outputs the MIR for all reachable functions.
Note: RUPTA requires substantial computational and memory resources to analyze large Rust projects. If you encounter excessively long analysis times—often due to many functions reachable from main() during the analysis—consider upgrading to a more powerful computing platform equipped with additional memory (e.g., 128GB) and faster CPUs.
Set the PTA_LOG
environment variable to enable logging:
$ export PTA_LOG=info
If you encounter errors loading shared libraries, such as librustc_driver.so
, try setting:
$ export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$LD_LIBRARY_PATH
See LICENSE
We have released the RUPTA source code to support the wider research community and facilitate advancements in the field. We hope it is valuable to your projects. Please credit our contribution by citing the following paper in any publications or presentations that utilize our tool:
@inproceedings{li2024context,
title={A Context-Sensitive Pointer Analysis Framework for Rust and Its Application to Call Graph Construction},
author={Li, Wei and He, Dongjie and Gui, Yujiang and Chen, Wenguang and Xue, Jingling},
booktitle={Proceedings of the 33rd ACM SIGPLAN International Conference on Compiler Construction},
pages={60--72},
year={2024},
publisher={ACM},
doi = {10.1145/3640537.3641574}
}
Any comments, contributions and collaborations are welcome. Please contact the authors Wei Li or Jingling Xue if you have any questions.