mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
65698ae9f3
This commit adds LLVM Kernel Control Flow Integrity (KCFI) support to the Rust compiler. It initially provides forward-edge control flow protection for operating systems kernels for Rust-compiled code only by aggregating function pointers in groups identified by their return and parameter types. (See llvm/llvm-project@cff5bef.) Forward-edge control flow protection for C or C++ and Rust -compiled code "mixed binaries" (i.e., for when C or C++ and Rust -compiled code share the same virtual address space) will be provided in later work as part of this project by identifying C char and integer type uses at the time types are encoded (see Type metadata in the design document in the tracking issue #89653). LLVM KCFI can be enabled with -Zsanitizer=kcfi. Co-authored-by: bjorn3 <17426603+bjorn3@users.noreply.github.com>
23 lines
562 B
TOML
23 lines
562 B
TOML
[package]
|
|
name = "rustc_symbol_mangling"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
bitflags = "1.2.1"
|
|
tracing = "0.1"
|
|
punycode = "0.4.0"
|
|
rustc-demangle = "0.1.21"
|
|
twox-hash = "1.6.3"
|
|
|
|
rustc_span = { path = "../rustc_span" }
|
|
rustc_middle = { path = "../rustc_middle" }
|
|
rustc_hir = { path = "../rustc_hir" }
|
|
rustc_target = { path = "../rustc_target" }
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
rustc_session = { path = "../rustc_session" }
|
|
rustc_macros = { path = "../rustc_macros" }
|
|
rustc_errors = { path = "../rustc_errors" }
|