Detecting Unsafe Raw Pointer Dereferencing Behavior in Rust.

Zhijian Huang,Yong Jun Wang,Jing Liu
DOI: https://doi.org/10.1587/transinf.2018edl8040
2018-01-01
IEICE Transactions on Information and Systems
Abstract:The rising systems programming language Rust is fast, efficient and memory safe. However, improperly dereferencing raw pointers in Rust causes new safety problems. In this paper, we present a detailed analysis into these problems and propose a practical hybrid approach to detecting unsafe raw pointer dereferencing behaviors. Our approach employs pattern matching to identify functions that can be used to generate illegal multiple mutable references (We define them as thief function) and instruments the dereferencing operation in order to perform dynamic checking at runtime. We implement a tool named UnsafeFencer and has successfully identified 52 thief functions in 28 real-world crates*, of which 13 public functions are verified to generate multiple mutable references.
What problem does this paper attempt to address?