2014-11-26 02:17:11 +00:00
|
|
|
//! The Rust compiler.
|
|
|
|
//!
|
|
|
|
//! # Note
|
|
|
|
//!
|
|
|
|
//! This API is completely unstable and subject to change.
|
2014-11-16 01:30:33 +00:00
|
|
|
|
2023-11-13 12:39:17 +00:00
|
|
|
#![allow(internal_features)]
|
|
|
|
#![feature(rustdoc_internals)]
|
|
|
|
#![doc(rust_logo)]
|
2020-09-23 19:51:56 +00:00
|
|
|
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
|
2023-09-28 12:36:40 +00:00
|
|
|
#![feature(exact_size_is_empty)]
|
2022-08-19 13:48:15 +00:00
|
|
|
#![feature(extern_types)]
|
2022-06-28 17:34:24 +00:00
|
|
|
#![feature(hash_raw_entry)]
|
2022-08-19 13:48:15 +00:00
|
|
|
#![feature(iter_intersperse)]
|
2022-08-20 18:40:08 +00:00
|
|
|
#![feature(let_chains)]
|
2023-05-22 13:46:40 +00:00
|
|
|
#![feature(impl_trait_in_assoc_type)]
|
2014-11-16 01:30:33 +00:00
|
|
|
|
2022-02-04 12:19:55 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate rustc_macros;
|
2022-08-31 13:01:10 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate tracing;
|
2022-02-04 12:19:55 +00:00
|
|
|
|
2023-09-17 12:40:22 +00:00
|
|
|
use back::owned_target_machine::OwnedTargetMachine;
|
2019-02-20 20:27:00 +00:00
|
|
|
use back::write::{create_informational_target_machine, create_target_machine};
|
2016-07-21 16:49:59 +00:00
|
|
|
|
2022-08-19 13:48:15 +00:00
|
|
|
use errors::ParseTargetMachineConfig;
|
2018-01-22 15:29:24 +00:00
|
|
|
pub use llvm_util::target_features;
|
2020-02-29 17:37:32 +00:00
|
|
|
use rustc_ast::expand::allocator::AllocatorKind;
|
2018-10-23 15:01:35 +00:00
|
|
|
use rustc_codegen_ssa::back::lto::{LtoModuleCodegen, SerializedModule, ThinModule};
|
2020-09-23 15:57:50 +00:00
|
|
|
use rustc_codegen_ssa::back::write::{
|
2023-07-21 01:18:25 +00:00
|
|
|
CodegenContext, FatLtoInput, ModuleConfig, TargetMachineFactoryConfig, TargetMachineFactoryFn,
|
2020-09-23 15:57:50 +00:00
|
|
|
};
|
2018-11-16 11:45:28 +00:00
|
|
|
use rustc_codegen_ssa::traits::*;
|
2020-03-11 11:49:08 +00:00
|
|
|
use rustc_codegen_ssa::ModuleCodegen;
|
2020-01-28 13:16:14 +00:00
|
|
|
use rustc_codegen_ssa::{CodegenResults, CompiledModule};
|
2023-04-07 06:26:08 +00:00
|
|
|
use rustc_data_structures::fx::FxIndexMap;
|
2023-12-17 10:48:57 +00:00
|
|
|
use rustc_errors::{DiagCtxt, ErrorGuaranteed, FatalError};
|
2021-09-24 16:15:36 +00:00
|
|
|
use rustc_metadata::EncodedMetadata;
|
2020-10-10 13:14:58 +00:00
|
|
|
use rustc_middle::dep_graph::{WorkProduct, WorkProductId};
|
2021-05-29 14:56:15 +00:00
|
|
|
use rustc_middle::ty::TyCtxt;
|
2023-09-22 16:26:20 +00:00
|
|
|
use rustc_middle::util::Providers;
|
2023-07-17 00:20:28 +00:00
|
|
|
use rustc_session::config::{OptLevel, OutputFilenames, PrintKind, PrintRequest};
|
2020-03-11 11:49:08 +00:00
|
|
|
use rustc_session::Session;
|
|
|
|
use rustc_span::symbol::Symbol;
|
|
|
|
|
2017-07-23 15:14:38 +00:00
|
|
|
use std::any::Any;
|
2019-08-27 19:25:35 +00:00
|
|
|
use std::ffi::CStr;
|
2023-07-19 08:00:06 +00:00
|
|
|
use std::io::Write;
|
2023-11-29 23:36:45 +00:00
|
|
|
use std::mem::ManuallyDrop;
|
2017-08-29 00:06:03 +00:00
|
|
|
|
2017-12-27 18:03:48 +00:00
|
|
|
mod back {
|
2019-03-30 14:30:07 +00:00
|
|
|
pub mod archive;
|
2018-08-17 14:07:23 +00:00
|
|
|
pub mod lto;
|
2023-09-17 12:40:22 +00:00
|
|
|
pub mod owned_target_machine;
|
2020-02-11 21:37:16 +00:00
|
|
|
mod profiling;
|
2014-11-16 01:30:33 +00:00
|
|
|
pub mod write;
|
|
|
|
}
|
|
|
|
|
2016-03-22 17:23:36 +00:00
|
|
|
mod abi;
|
2017-06-03 21:54:08 +00:00
|
|
|
mod allocator;
|
2016-03-22 17:23:36 +00:00
|
|
|
mod asm;
|
|
|
|
mod attributes;
|
|
|
|
mod base;
|
|
|
|
mod builder;
|
|
|
|
mod callee;
|
|
|
|
mod common;
|
|
|
|
mod consts;
|
|
|
|
mod context;
|
2020-06-22 06:29:08 +00:00
|
|
|
mod coverageinfo;
|
2016-03-22 17:23:36 +00:00
|
|
|
mod debuginfo;
|
|
|
|
mod declare;
|
2022-08-25 13:34:30 +00:00
|
|
|
mod errors;
|
2016-03-22 17:23:36 +00:00
|
|
|
mod intrinsic;
|
2018-09-06 17:23:42 +00:00
|
|
|
|
2023-04-09 21:35:02 +00:00
|
|
|
// The following is a workaround that replaces `pub mod llvm;` and that fixes issue 53912.
|
2018-09-06 17:23:42 +00:00
|
|
|
#[path = "llvm/mod.rs"]
|
|
|
|
mod llvm_;
|
|
|
|
pub mod llvm {
|
|
|
|
pub use super::llvm_::*;
|
|
|
|
}
|
|
|
|
|
2017-04-30 18:33:25 +00:00
|
|
|
mod llvm_util;
|
2018-05-08 13:10:16 +00:00
|
|
|
mod mono_item;
|
2016-03-22 17:23:36 +00:00
|
|
|
mod type_;
|
|
|
|
mod type_of;
|
2018-10-23 23:13:33 +00:00
|
|
|
mod va_arg;
|
2016-03-22 17:23:36 +00:00
|
|
|
mod value;
|
|
|
|
|
2023-11-21 22:53:07 +00:00
|
|
|
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }
|
2022-10-13 09:13:02 +00:00
|
|
|
|
2018-10-23 15:01:35 +00:00
|
|
|
#[derive(Clone)]
|
2018-05-08 13:10:16 +00:00
|
|
|
pub struct LlvmCodegenBackend(());
|
2017-09-16 15:27:29 +00:00
|
|
|
|
2021-11-05 00:00:00 +00:00
|
|
|
struct TimeTraceProfiler {
|
|
|
|
enabled: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TimeTraceProfiler {
|
|
|
|
fn new(enabled: bool) -> Self {
|
|
|
|
if enabled {
|
2023-11-21 18:43:11 +00:00
|
|
|
unsafe { llvm::LLVMRustTimeTraceProfilerInitialize() }
|
2021-11-05 00:00:00 +00:00
|
|
|
}
|
|
|
|
TimeTraceProfiler { enabled }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for TimeTraceProfiler {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
if self.enabled {
|
2023-11-21 18:43:11 +00:00
|
|
|
unsafe { llvm::LLVMRustTimeTraceProfilerFinishThread() }
|
2021-11-05 00:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-04 13:23:10 +00:00
|
|
|
impl ExtraBackendMethods for LlvmCodegenBackend {
|
2019-06-13 21:48:52 +00:00
|
|
|
fn codegen_allocator<'tcx>(
|
2019-02-25 07:40:18 +00:00
|
|
|
&self,
|
2019-06-13 21:48:52 +00:00
|
|
|
tcx: TyCtxt<'tcx>,
|
2021-08-31 18:16:10 +00:00
|
|
|
module_name: &str,
|
2019-06-11 21:11:55 +00:00
|
|
|
kind: AllocatorKind,
|
2023-04-24 22:08:35 +00:00
|
|
|
alloc_error_handler_kind: AllocatorKind,
|
2022-04-30 19:20:08 +00:00
|
|
|
) -> ModuleLlvm {
|
|
|
|
let mut module_llvm = ModuleLlvm::new_metadata(tcx, module_name);
|
|
|
|
unsafe {
|
2023-04-24 22:08:35 +00:00
|
|
|
allocator::codegen(tcx, &mut module_llvm, module_name, kind, alloc_error_handler_kind);
|
2022-04-30 19:20:08 +00:00
|
|
|
}
|
|
|
|
module_llvm
|
2018-10-23 15:01:35 +00:00
|
|
|
}
|
2019-09-25 17:14:43 +00:00
|
|
|
fn compile_codegen_unit(
|
|
|
|
&self,
|
|
|
|
tcx: TyCtxt<'_>,
|
2019-10-21 06:14:03 +00:00
|
|
|
cgu_name: Symbol,
|
2020-01-05 01:10:23 +00:00
|
|
|
) -> (ModuleCodegen<ModuleLlvm>, u64) {
|
|
|
|
base::compile_codegen_unit(tcx, cgu_name)
|
2018-09-25 15:52:03 +00:00
|
|
|
}
|
2018-10-23 15:01:35 +00:00
|
|
|
fn target_machine_factory(
|
2018-09-25 15:52:03 +00:00
|
|
|
&self,
|
2018-10-23 15:01:35 +00:00
|
|
|
sess: &Session,
|
2018-10-27 12:29:06 +00:00
|
|
|
optlvl: OptLevel,
|
2021-09-24 15:02:02 +00:00
|
|
|
target_features: &[String],
|
2020-09-23 15:57:50 +00:00
|
|
|
) -> TargetMachineFactoryFn<Self> {
|
2021-09-24 15:02:02 +00:00
|
|
|
back::write::target_machine_factory(sess, optlvl, target_features)
|
2018-09-25 15:52:03 +00:00
|
|
|
}
|
2021-11-05 00:00:00 +00:00
|
|
|
|
|
|
|
fn spawn_named_thread<F, T>(
|
|
|
|
time_trace: bool,
|
|
|
|
name: String,
|
|
|
|
f: F,
|
|
|
|
) -> std::io::Result<std::thread::JoinHandle<T>>
|
|
|
|
where
|
|
|
|
F: FnOnce() -> T,
|
|
|
|
F: Send + 'static,
|
|
|
|
T: Send + 'static,
|
|
|
|
{
|
|
|
|
std::thread::Builder::new().name(name).spawn(move || {
|
|
|
|
let _profiler = TimeTraceProfiler::new(time_trace);
|
|
|
|
f()
|
|
|
|
})
|
|
|
|
}
|
2018-10-23 15:01:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl WriteBackendMethods for LlvmCodegenBackend {
|
|
|
|
type Module = ModuleLlvm;
|
|
|
|
type ModuleBuffer = back::lto::ModuleBuffer;
|
2023-09-17 12:40:22 +00:00
|
|
|
type TargetMachine = OwnedTargetMachine;
|
2022-08-19 13:48:15 +00:00
|
|
|
type TargetMachineError = crate::errors::LlvmError<'static>;
|
2018-10-23 15:01:35 +00:00
|
|
|
type ThinData = back::lto::ThinData;
|
|
|
|
type ThinBuffer = back::lto::ThinBuffer;
|
|
|
|
fn print_pass_timings(&self) {
|
2023-07-19 08:00:06 +00:00
|
|
|
unsafe {
|
|
|
|
let mut size = 0;
|
2024-02-24 13:47:34 +00:00
|
|
|
let cstr = llvm::LLVMRustPrintPassTimings(std::ptr::addr_of_mut!(size));
|
2023-07-16 15:37:52 +00:00
|
|
|
if cstr.is_null() {
|
2023-07-19 08:00:06 +00:00
|
|
|
println!("failed to get pass timings");
|
2023-07-16 15:37:52 +00:00
|
|
|
} else {
|
2023-07-19 08:00:06 +00:00
|
|
|
let timings = std::slice::from_raw_parts(cstr as *const u8, size);
|
|
|
|
std::io::stdout().write_all(timings).unwrap();
|
2023-07-16 15:37:52 +00:00
|
|
|
libc::free(cstr as *mut _);
|
|
|
|
}
|
2023-07-19 08:00:06 +00:00
|
|
|
}
|
2018-09-25 15:52:03 +00:00
|
|
|
}
|
2022-11-05 08:08:57 +00:00
|
|
|
fn print_statistics(&self) {
|
2023-07-19 08:00:06 +00:00
|
|
|
unsafe {
|
|
|
|
let mut size = 0;
|
2024-02-24 13:47:34 +00:00
|
|
|
let cstr = llvm::LLVMRustPrintStatistics(std::ptr::addr_of_mut!(size));
|
2023-07-16 15:37:52 +00:00
|
|
|
if cstr.is_null() {
|
2023-07-19 08:00:06 +00:00
|
|
|
println!("failed to get pass stats");
|
2023-07-16 15:37:52 +00:00
|
|
|
} else {
|
2023-07-19 08:00:06 +00:00
|
|
|
let stats = std::slice::from_raw_parts(cstr as *const u8, size);
|
|
|
|
std::io::stdout().write_all(stats).unwrap();
|
2023-07-16 15:37:52 +00:00
|
|
|
libc::free(cstr as *mut _);
|
|
|
|
}
|
2023-07-19 08:00:06 +00:00
|
|
|
}
|
2022-11-05 08:08:57 +00:00
|
|
|
}
|
2020-09-09 04:51:16 +00:00
|
|
|
fn run_link(
|
|
|
|
cgcx: &CodegenContext<Self>,
|
2023-12-17 23:15:45 +00:00
|
|
|
dcx: &DiagCtxt,
|
2020-09-09 04:51:16 +00:00
|
|
|
modules: Vec<ModuleCodegen<Self::Module>>,
|
|
|
|
) -> Result<ModuleCodegen<Self::Module>, FatalError> {
|
2023-12-17 23:15:45 +00:00
|
|
|
back::write::link(cgcx, dcx, modules)
|
2020-09-09 04:51:16 +00:00
|
|
|
}
|
2018-12-03 19:45:03 +00:00
|
|
|
fn run_fat_lto(
|
2018-10-23 15:01:35 +00:00
|
|
|
cgcx: &CodegenContext<Self>,
|
2023-07-21 01:18:25 +00:00
|
|
|
modules: Vec<FatLtoInput<Self>>,
|
2019-02-11 15:46:04 +00:00
|
|
|
cached_modules: Vec<(SerializedModule<Self::ModuleBuffer>, WorkProduct)>,
|
2018-12-03 19:50:39 +00:00
|
|
|
) -> Result<LtoModuleCodegen<Self>, FatalError> {
|
2019-02-13 13:13:30 +00:00
|
|
|
back::lto::run_fat(cgcx, modules, cached_modules)
|
2018-12-03 19:45:03 +00:00
|
|
|
}
|
|
|
|
fn run_thin_lto(
|
|
|
|
cgcx: &CodegenContext<Self>,
|
2018-12-04 15:24:20 +00:00
|
|
|
modules: Vec<(String, Self::ThinBuffer)>,
|
2018-12-03 19:45:03 +00:00
|
|
|
cached_modules: Vec<(SerializedModule<Self::ModuleBuffer>, WorkProduct)>,
|
|
|
|
) -> Result<(Vec<LtoModuleCodegen<Self>>, Vec<WorkProduct>), FatalError> {
|
2019-02-13 13:13:30 +00:00
|
|
|
back::lto::run_thin(cgcx, modules, cached_modules)
|
2018-09-25 15:52:03 +00:00
|
|
|
}
|
2018-10-23 15:01:35 +00:00
|
|
|
unsafe fn optimize(
|
|
|
|
cgcx: &CodegenContext<Self>,
|
2023-12-17 23:15:45 +00:00
|
|
|
dcx: &DiagCtxt,
|
2018-10-23 15:01:35 +00:00
|
|
|
module: &ModuleCodegen<Self::Module>,
|
|
|
|
config: &ModuleConfig,
|
|
|
|
) -> Result<(), FatalError> {
|
2023-12-17 23:15:45 +00:00
|
|
|
back::write::optimize(cgcx, dcx, module, config)
|
2018-09-25 15:52:03 +00:00
|
|
|
}
|
2022-04-30 18:50:17 +00:00
|
|
|
fn optimize_fat(
|
|
|
|
cgcx: &CodegenContext<Self>,
|
2022-04-30 18:58:42 +00:00
|
|
|
module: &mut ModuleCodegen<Self::Module>,
|
2022-04-30 18:50:17 +00:00
|
|
|
) -> Result<(), FatalError> {
|
2023-12-18 00:15:13 +00:00
|
|
|
let dcx = cgcx.create_dcx();
|
|
|
|
back::lto::run_pass_manager(cgcx, &dcx, module, false)
|
2022-04-30 18:50:17 +00:00
|
|
|
}
|
2018-10-23 15:01:35 +00:00
|
|
|
unsafe fn optimize_thin(
|
|
|
|
cgcx: &CodegenContext<Self>,
|
2022-04-30 18:51:17 +00:00
|
|
|
thin: ThinModule<Self>,
|
2018-10-23 15:01:35 +00:00
|
|
|
) -> Result<ModuleCodegen<Self::Module>, FatalError> {
|
2019-02-13 13:13:30 +00:00
|
|
|
back::lto::optimize_thin_module(thin, cgcx)
|
2018-09-25 15:52:03 +00:00
|
|
|
}
|
2018-10-23 15:01:35 +00:00
|
|
|
unsafe fn codegen(
|
|
|
|
cgcx: &CodegenContext<Self>,
|
2023-12-17 23:15:45 +00:00
|
|
|
dcx: &DiagCtxt,
|
2018-10-23 15:01:35 +00:00
|
|
|
module: ModuleCodegen<Self::Module>,
|
|
|
|
config: &ModuleConfig,
|
|
|
|
) -> Result<CompiledModule, FatalError> {
|
2023-12-17 23:15:45 +00:00
|
|
|
back::write::codegen(cgcx, dcx, module, config)
|
2018-09-25 15:52:03 +00:00
|
|
|
}
|
2018-12-04 15:24:20 +00:00
|
|
|
fn prepare_thin(module: ModuleCodegen<Self::Module>) -> (String, Self::ThinBuffer) {
|
2019-02-11 15:46:04 +00:00
|
|
|
back::lto::prepare_thin(module)
|
|
|
|
}
|
|
|
|
fn serialize_module(module: ModuleCodegen<Self::Module>) -> (String, Self::ModuleBuffer) {
|
|
|
|
(module.name, back::lto::ModuleBuffer::new(module.module_llvm.llmod()))
|
2018-12-04 15:24:20 +00:00
|
|
|
}
|
2018-09-26 15:00:01 +00:00
|
|
|
}
|
|
|
|
|
2018-11-16 11:37:55 +00:00
|
|
|
unsafe impl Send for LlvmCodegenBackend {} // Llvm is on a per-thread basis
|
|
|
|
unsafe impl Sync for LlvmCodegenBackend {}
|
2017-10-30 17:42:21 +00:00
|
|
|
|
2018-05-08 13:10:16 +00:00
|
|
|
impl LlvmCodegenBackend {
|
2018-07-11 10:49:11 +00:00
|
|
|
pub fn new() -> Box<dyn CodegenBackend> {
|
2019-11-17 17:54:13 +00:00
|
|
|
Box::new(LlvmCodegenBackend(()))
|
2017-09-16 15:27:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-16 11:37:55 +00:00
|
|
|
impl CodegenBackend for LlvmCodegenBackend {
|
2022-10-17 13:11:26 +00:00
|
|
|
fn locale_resource(&self) -> &'static str {
|
|
|
|
crate::DEFAULT_LOCALE_RESOURCE
|
|
|
|
}
|
|
|
|
|
2018-01-22 15:29:24 +00:00
|
|
|
fn init(&self, sess: &Session) {
|
|
|
|
llvm_util::init(sess); // Make sure llvm is inited
|
|
|
|
}
|
|
|
|
|
2023-09-22 16:26:20 +00:00
|
|
|
fn provide(&self, providers: &mut Providers) {
|
2021-09-24 15:02:02 +00:00
|
|
|
providers.global_backend_features =
|
|
|
|
|tcx, ()| llvm_util::global_llvm_features(tcx.sess, true)
|
|
|
|
}
|
|
|
|
|
2023-07-17 05:33:38 +00:00
|
|
|
fn print(&self, req: &PrintRequest, out: &mut dyn PrintBackendInfo, sess: &Session) {
|
2023-07-17 00:20:28 +00:00
|
|
|
match req.kind {
|
|
|
|
PrintKind::RelocationModels => {
|
2023-07-17 05:33:38 +00:00
|
|
|
writeln!(out, "Available relocation models:");
|
2021-09-10 13:11:56 +00:00
|
|
|
for name in &[
|
|
|
|
"static",
|
|
|
|
"pic",
|
|
|
|
"pie",
|
|
|
|
"dynamic-no-pic",
|
|
|
|
"ropi",
|
|
|
|
"rwpi",
|
|
|
|
"ropi-rwpi",
|
|
|
|
"default",
|
|
|
|
] {
|
2023-07-25 21:04:01 +00:00
|
|
|
writeln!(out, " {name}");
|
2017-10-30 17:42:21 +00:00
|
|
|
}
|
2023-07-17 05:33:38 +00:00
|
|
|
writeln!(out);
|
2017-10-30 17:42:21 +00:00
|
|
|
}
|
2023-07-17 00:20:28 +00:00
|
|
|
PrintKind::CodeModels => {
|
2023-07-17 05:33:38 +00:00
|
|
|
writeln!(out, "Available code models:");
|
2020-05-20 20:09:19 +00:00
|
|
|
for name in &["tiny", "small", "kernel", "medium", "large"] {
|
2023-07-25 21:04:01 +00:00
|
|
|
writeln!(out, " {name}");
|
2017-10-30 17:42:21 +00:00
|
|
|
}
|
2023-07-17 05:33:38 +00:00
|
|
|
writeln!(out);
|
2017-10-30 17:42:21 +00:00
|
|
|
}
|
2023-07-17 00:20:28 +00:00
|
|
|
PrintKind::TlsModels => {
|
2023-07-17 05:33:38 +00:00
|
|
|
writeln!(out, "Available TLS models:");
|
2023-11-13 12:48:23 +00:00
|
|
|
for name in
|
|
|
|
&["global-dynamic", "local-dynamic", "initial-exec", "local-exec", "emulated"]
|
|
|
|
{
|
2023-07-25 21:04:01 +00:00
|
|
|
writeln!(out, " {name}");
|
2017-10-30 17:42:21 +00:00
|
|
|
}
|
2023-07-17 05:33:38 +00:00
|
|
|
writeln!(out);
|
2017-10-30 17:42:21 +00:00
|
|
|
}
|
2023-07-17 00:20:28 +00:00
|
|
|
PrintKind::StackProtectorStrategies => {
|
2023-07-17 05:33:38 +00:00
|
|
|
writeln!(
|
|
|
|
out,
|
add rustc option for using LLVM stack smash protection
LLVM has built-in heuristics for adding stack canaries to functions. These
heuristics can be selected with LLVM function attributes. This patch adds a
rustc option `-Z stack-protector={none,basic,strong,all}` which controls the use
of these attributes. This gives rustc the same stack smash protection support as
clang offers through options `-fno-stack-protector`, `-fstack-protector`,
`-fstack-protector-strong`, and `-fstack-protector-all`. The protection this can
offer is demonstrated in test/ui/abi/stack-protector.rs. This fills a gap in the
current list of rustc exploit
mitigations (https://doc.rust-lang.org/rustc/exploit-mitigations.html),
originally discussed in #15179.
Stack smash protection adds runtime overhead and is therefore still off by
default, but now users have the option to trade performance for security as they
see fit. An example use case is adding Rust code in an existing C/C++ code base
compiled with stack smash protection. Without the ability to add stack smash
protection to the Rust code, the code base artifacts could be exploitable in
ways not possible if the code base remained pure C/C++.
Stack smash protection support is present in LLVM for almost all the current
tier 1/tier 2 targets: see
test/assembly/stack-protector/stack-protector-target-support.rs. The one
exception is nvptx64-nvidia-cuda. This patch follows clang's example, and adds a
warning message printed if stack smash protection is used with this target (see
test/ui/stack-protector/warn-stack-protector-unsupported.rs). Support for tier 3
targets has not been checked.
Since the heuristics are applied at the LLVM level, the heuristics are expected
to add stack smash protection to a fraction of functions comparable to C/C++.
Some experiments demonstrating how Rust code is affected by the different
heuristics can be found in
test/assembly/stack-protector/stack-protector-heuristics-effect.rs. There is
potential for better heuristics using Rust-specific safety information. For
example it might be reasonable to skip stack smash protection in functions which
transitively only use safe Rust code, or which uses only a subset of functions
the user declares safe (such as anything under `std.*`). Such alternative
heuristics could be added at a later point.
LLVM also offers a "safestack" sanitizer as an alternative way to guard against
stack smashing (see #26612). This could possibly also be included as a
stack-protection heuristic. An alternative is to add it as a sanitizer (#39699).
This is what clang does: safestack is exposed with option
`-fsanitize=safe-stack`.
The options are only supported by the LLVM backend, but as with other codegen
options it is visible in the main codegen option help menu. The heuristic names
"basic", "strong", and "all" are hopefully sufficiently generic to be usable in
other backends as well.
Reviewed-by: Nikita Popov <nikic@php.net>
Extra commits during review:
- [address-review] make the stack-protector option unstable
- [address-review] reduce detail level of stack-protector option help text
- [address-review] correct grammar in comment
- [address-review] use compiler flag to avoid merging functions in test
- [address-review] specify min LLVM version in fortanix stack-protector test
Only for Fortanix test, since this target specifically requests the
`--x86-experimental-lvi-inline-asm-hardening` flag.
- [address-review] specify required LLVM components in stack-protector tests
- move stack protector option enum closer to other similar option enums
- rustc_interface/tests: sort debug option list in tracking hash test
- add an explicit `none` stack-protector option
Revert "set LLVM requirements for all stack protector support test revisions"
This reverts commit a49b74f92a4e7d701d6f6cf63d207a8aff2e0f68.
2021-04-06 19:37:49 +00:00
|
|
|
r#"Available stack protector strategies:
|
|
|
|
all
|
|
|
|
Generate stack canaries in all functions.
|
|
|
|
|
|
|
|
strong
|
|
|
|
Generate stack canaries in a function if it either:
|
|
|
|
- has a local variable of `[T; N]` type, regardless of `T` and `N`
|
|
|
|
- takes the address of a local variable.
|
|
|
|
|
|
|
|
(Note that a local variable being borrowed is not equivalent to its
|
|
|
|
address being taken: e.g. some borrows may be removed by optimization,
|
|
|
|
while by-value argument passing may be implemented with reference to a
|
|
|
|
local stack variable in the ABI.)
|
|
|
|
|
|
|
|
basic
|
2022-05-28 08:41:28 +00:00
|
|
|
Generate stack canaries in functions with local variables of `[T; N]`
|
|
|
|
type, where `T` is byte-sized and `N` >= 8.
|
add rustc option for using LLVM stack smash protection
LLVM has built-in heuristics for adding stack canaries to functions. These
heuristics can be selected with LLVM function attributes. This patch adds a
rustc option `-Z stack-protector={none,basic,strong,all}` which controls the use
of these attributes. This gives rustc the same stack smash protection support as
clang offers through options `-fno-stack-protector`, `-fstack-protector`,
`-fstack-protector-strong`, and `-fstack-protector-all`. The protection this can
offer is demonstrated in test/ui/abi/stack-protector.rs. This fills a gap in the
current list of rustc exploit
mitigations (https://doc.rust-lang.org/rustc/exploit-mitigations.html),
originally discussed in #15179.
Stack smash protection adds runtime overhead and is therefore still off by
default, but now users have the option to trade performance for security as they
see fit. An example use case is adding Rust code in an existing C/C++ code base
compiled with stack smash protection. Without the ability to add stack smash
protection to the Rust code, the code base artifacts could be exploitable in
ways not possible if the code base remained pure C/C++.
Stack smash protection support is present in LLVM for almost all the current
tier 1/tier 2 targets: see
test/assembly/stack-protector/stack-protector-target-support.rs. The one
exception is nvptx64-nvidia-cuda. This patch follows clang's example, and adds a
warning message printed if stack smash protection is used with this target (see
test/ui/stack-protector/warn-stack-protector-unsupported.rs). Support for tier 3
targets has not been checked.
Since the heuristics are applied at the LLVM level, the heuristics are expected
to add stack smash protection to a fraction of functions comparable to C/C++.
Some experiments demonstrating how Rust code is affected by the different
heuristics can be found in
test/assembly/stack-protector/stack-protector-heuristics-effect.rs. There is
potential for better heuristics using Rust-specific safety information. For
example it might be reasonable to skip stack smash protection in functions which
transitively only use safe Rust code, or which uses only a subset of functions
the user declares safe (such as anything under `std.*`). Such alternative
heuristics could be added at a later point.
LLVM also offers a "safestack" sanitizer as an alternative way to guard against
stack smashing (see #26612). This could possibly also be included as a
stack-protection heuristic. An alternative is to add it as a sanitizer (#39699).
This is what clang does: safestack is exposed with option
`-fsanitize=safe-stack`.
The options are only supported by the LLVM backend, but as with other codegen
options it is visible in the main codegen option help menu. The heuristic names
"basic", "strong", and "all" are hopefully sufficiently generic to be usable in
other backends as well.
Reviewed-by: Nikita Popov <nikic@php.net>
Extra commits during review:
- [address-review] make the stack-protector option unstable
- [address-review] reduce detail level of stack-protector option help text
- [address-review] correct grammar in comment
- [address-review] use compiler flag to avoid merging functions in test
- [address-review] specify min LLVM version in fortanix stack-protector test
Only for Fortanix test, since this target specifically requests the
`--x86-experimental-lvi-inline-asm-hardening` flag.
- [address-review] specify required LLVM components in stack-protector tests
- move stack protector option enum closer to other similar option enums
- rustc_interface/tests: sort debug option list in tracking hash test
- add an explicit `none` stack-protector option
Revert "set LLVM requirements for all stack protector support test revisions"
This reverts commit a49b74f92a4e7d701d6f6cf63d207a8aff2e0f68.
2021-04-06 19:37:49 +00:00
|
|
|
|
|
|
|
none
|
|
|
|
Do not generate stack canaries.
|
|
|
|
"#
|
|
|
|
);
|
|
|
|
}
|
2023-07-13 23:54:25 +00:00
|
|
|
_other => llvm_util::print(req, out, sess),
|
2017-10-30 17:42:21 +00:00
|
|
|
}
|
|
|
|
}
|
2017-09-16 15:27:29 +00:00
|
|
|
|
2018-01-22 15:29:24 +00:00
|
|
|
fn print_passes(&self) {
|
|
|
|
llvm_util::print_passes();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn print_version(&self) {
|
|
|
|
llvm_util::print_version();
|
|
|
|
}
|
|
|
|
|
2022-07-11 13:26:58 +00:00
|
|
|
fn target_features(&self, sess: &Session, allow_unstable: bool) -> Vec<Symbol> {
|
|
|
|
target_features(sess, allow_unstable)
|
2017-10-30 17:42:21 +00:00
|
|
|
}
|
|
|
|
|
2019-06-12 12:59:10 +00:00
|
|
|
fn codegen_crate<'tcx>(
|
2017-10-30 17:42:21 +00:00
|
|
|
&self,
|
2019-06-13 21:48:52 +00:00
|
|
|
tcx: TyCtxt<'tcx>,
|
2019-04-26 07:22:36 +00:00
|
|
|
metadata: EncodedMetadata,
|
|
|
|
need_metadata_module: bool,
|
2018-07-11 10:49:11 +00:00
|
|
|
) -> Box<dyn Any> {
|
2019-11-17 17:54:13 +00:00
|
|
|
Box::new(rustc_codegen_ssa::base::codegen_crate(
|
2019-09-25 17:14:43 +00:00
|
|
|
LlvmCodegenBackend(()),
|
|
|
|
tcx,
|
2021-03-28 20:14:09 +00:00
|
|
|
crate::llvm_util::target_cpu(tcx.sess).to_string(),
|
2019-09-25 17:14:43 +00:00
|
|
|
metadata,
|
|
|
|
need_metadata_module,
|
2019-11-17 17:54:13 +00:00
|
|
|
))
|
2017-09-16 15:27:29 +00:00
|
|
|
}
|
|
|
|
|
2020-01-28 13:16:14 +00:00
|
|
|
fn join_codegen(
|
2017-10-30 17:42:21 +00:00
|
|
|
&self,
|
2018-07-11 10:49:11 +00:00
|
|
|
ongoing_codegen: Box<dyn Any>,
|
2017-09-16 15:27:29 +00:00
|
|
|
sess: &Session,
|
2021-12-13 00:00:00 +00:00
|
|
|
outputs: &OutputFilenames,
|
2024-02-16 23:51:35 +00:00
|
|
|
) -> (CodegenResults, FxIndexMap<WorkProductId, WorkProduct>) {
|
2018-10-23 15:01:35 +00:00
|
|
|
let (codegen_results, work_products) = ongoing_codegen
|
|
|
|
.downcast::<rustc_codegen_ssa::back::write::OngoingCodegen<LlvmCodegenBackend>>()
|
2018-05-08 13:10:16 +00:00
|
|
|
.expect("Expected LlvmCodegenBackend's OngoingCodegen, found Box<Any>")
|
|
|
|
.join(sess);
|
2017-09-16 15:27:29 +00:00
|
|
|
|
2023-02-06 07:31:19 +00:00
|
|
|
if sess.opts.unstable_opts.llvm_time_trace {
|
|
|
|
sess.time("llvm_dump_timing_file", || {
|
2021-12-13 00:00:00 +00:00
|
|
|
let file_name = outputs.with_extension("llvm_timings.json");
|
|
|
|
llvm_util::time_trace_profiler_finish(&file_name);
|
2023-02-06 07:31:19 +00:00
|
|
|
});
|
|
|
|
}
|
2017-10-30 17:42:21 +00:00
|
|
|
|
2024-02-16 23:51:35 +00:00
|
|
|
(codegen_results, work_products)
|
2020-01-28 13:16:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn link(
|
|
|
|
&self,
|
|
|
|
sess: &Session,
|
2020-10-10 14:18:36 +00:00
|
|
|
codegen_results: CodegenResults,
|
2020-01-28 13:16:14 +00:00
|
|
|
outputs: &OutputFilenames,
|
2022-01-23 18:34:26 +00:00
|
|
|
) -> Result<(), ErrorGuaranteed> {
|
2022-07-28 09:07:49 +00:00
|
|
|
use crate::back::archive::LlvmArchiveBuilderBuilder;
|
2020-12-03 13:11:35 +00:00
|
|
|
use rustc_codegen_ssa::back::link::link_binary;
|
|
|
|
|
2017-10-30 17:42:21 +00:00
|
|
|
// Run the linker on any artifacts that resulted from the LLVM run.
|
|
|
|
// This should produce either a finished executable or library.
|
2022-07-28 09:07:49 +00:00
|
|
|
link_binary(sess, &LlvmArchiveBuilderBuilder, &codegen_results, outputs)
|
2017-09-16 15:27:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-25 15:52:03 +00:00
|
|
|
pub struct ModuleLlvm {
|
2018-06-27 14:57:25 +00:00
|
|
|
llcx: &'static mut llvm::Context,
|
|
|
|
llmod_raw: *const llvm::Module,
|
2023-09-17 12:40:22 +00:00
|
|
|
|
2023-11-29 23:36:45 +00:00
|
|
|
// This field is `ManuallyDrop` because it is important that the `TargetMachine`
|
|
|
|
// is disposed prior to the `Context` being disposed otherwise UAFs can occur.
|
|
|
|
tm: ManuallyDrop<OwnedTargetMachine>,
|
2016-03-22 17:23:36 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 23:04:20 +00:00
|
|
|
unsafe impl Send for ModuleLlvm {}
|
|
|
|
unsafe impl Sync for ModuleLlvm {}
|
2017-07-23 15:14:38 +00:00
|
|
|
|
2018-09-06 23:04:20 +00:00
|
|
|
impl ModuleLlvm {
|
2019-06-13 21:48:52 +00:00
|
|
|
fn new(tcx: TyCtxt<'_>, mod_name: &str) -> Self {
|
2018-06-27 14:57:25 +00:00
|
|
|
unsafe {
|
2018-10-27 12:29:06 +00:00
|
|
|
let llcx = llvm::LLVMRustContextCreate(tcx.sess.fewer_names());
|
|
|
|
let llmod_raw = context::create_module(tcx, llcx, mod_name) as *const _;
|
2023-11-29 23:36:45 +00:00
|
|
|
ModuleLlvm {
|
|
|
|
llmod_raw,
|
|
|
|
llcx,
|
|
|
|
tm: ManuallyDrop::new(create_target_machine(tcx, mod_name)),
|
|
|
|
}
|
2018-06-27 14:57:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-13 21:48:52 +00:00
|
|
|
fn new_metadata(tcx: TyCtxt<'_>, mod_name: &str) -> Self {
|
2019-02-20 20:27:00 +00:00
|
|
|
unsafe {
|
|
|
|
let llcx = llvm::LLVMRustContextCreate(tcx.sess.fewer_names());
|
|
|
|
let llmod_raw = context::create_module(tcx, llcx, mod_name) as *const _;
|
2023-11-29 23:36:45 +00:00
|
|
|
ModuleLlvm {
|
|
|
|
llmod_raw,
|
|
|
|
llcx,
|
|
|
|
tm: ManuallyDrop::new(create_informational_target_machine(tcx.sess)),
|
|
|
|
}
|
2019-02-20 20:27:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-11 15:46:04 +00:00
|
|
|
fn parse(
|
|
|
|
cgcx: &CodegenContext<LlvmCodegenBackend>,
|
2019-08-27 19:25:35 +00:00
|
|
|
name: &CStr,
|
|
|
|
buffer: &[u8],
|
2023-12-17 23:15:45 +00:00
|
|
|
dcx: &DiagCtxt,
|
2019-02-11 15:46:04 +00:00
|
|
|
) -> Result<Self, FatalError> {
|
|
|
|
unsafe {
|
|
|
|
let llcx = llvm::LLVMRustContextCreate(cgcx.fewer_names);
|
2023-12-17 23:15:45 +00:00
|
|
|
let llmod_raw = back::lto::parse_module(llcx, name, buffer, dcx)?;
|
2021-09-30 17:38:50 +00:00
|
|
|
let tm_factory_config = TargetMachineFactoryConfig::new(cgcx, name.to_str().unwrap());
|
2020-09-23 16:33:54 +00:00
|
|
|
let tm = match (cgcx.tm_factory)(tm_factory_config) {
|
2019-02-11 15:46:04 +00:00
|
|
|
Ok(m) => m,
|
|
|
|
Err(e) => {
|
2023-12-17 23:15:45 +00:00
|
|
|
return Err(dcx.emit_almost_fatal(ParseTargetMachineConfig(e)));
|
2019-02-11 15:46:04 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2023-11-29 23:36:45 +00:00
|
|
|
Ok(ModuleLlvm { llmod_raw, llcx, tm: ManuallyDrop::new(tm) })
|
2019-02-11 15:46:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-27 14:57:25 +00:00
|
|
|
fn llmod(&self) -> &llvm::Module {
|
|
|
|
unsafe { &*self.llmod_raw }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-06 23:04:20 +00:00
|
|
|
impl Drop for ModuleLlvm {
|
2017-07-23 15:14:38 +00:00
|
|
|
fn drop(&mut self) {
|
|
|
|
unsafe {
|
2023-11-30 00:00:41 +00:00
|
|
|
ManuallyDrop::drop(&mut self.tm);
|
2021-08-15 15:46:20 +00:00
|
|
|
llvm::LLVMContextDispose(&mut *(self.llcx as *mut _));
|
2017-07-23 15:14:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|