]> git.lizzy.rs Git - rust.git/blob - src/libpanic_abort/lib.rs
Auto merge of #64432 - gnzlbg:simplify_truncate, r=alexcrichton
[rust.git] / src / libpanic_abort / lib.rs
1 //! Implementation of Rust panics via process aborts
2 //!
3 //! When compared to the implementation via unwinding, this crate is *much*
4 //! simpler! That being said, it's not quite as versatile, but here goes!
5
6 #![no_std]
7 #![unstable(feature = "panic_abort", issue = "32837")]
8 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/",
9        issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
10 #![panic_runtime]
11
12 #![allow(unused_features)]
13
14 #![feature(core_intrinsics)]
15 #![feature(libc)]
16 #![feature(nll)]
17 #![feature(panic_runtime)]
18 #![feature(staged_api)]
19 #![feature(rustc_attrs)]
20
21 // Rust's "try" function, but if we're aborting on panics we just call the
22 // function as there's nothing else we need to do here.
23 #[rustc_std_internal_symbol]
24 pub unsafe extern fn __rust_maybe_catch_panic(f: fn(*mut u8),
25                                               data: *mut u8,
26                                               _data_ptr: *mut usize,
27                                               _vtable_ptr: *mut usize) -> u32 {
28     f(data);
29     0
30 }
31
32 // "Leak" the payload and shim to the relevant abort on the platform in
33 // question.
34 //
35 // For Unix we just use `abort` from libc as it'll trigger debuggers, core
36 // dumps, etc, as one might expect. On Windows, however, the best option we have
37 // is the `__fastfail` intrinsics, but that's unfortunately not defined in LLVM,
38 // and the `RaiseFailFastException` function isn't available until Windows 7
39 // which would break compat with XP. For now just use `intrinsics::abort` which
40 // will kill us with an illegal instruction, which will do a good enough job for
41 // now hopefully.
42 #[rustc_std_internal_symbol]
43 pub unsafe extern fn __rust_start_panic(_payload: usize) -> u32 {
44     abort();
45
46     #[cfg(any(unix, target_os = "cloudabi"))]
47     unsafe fn abort() -> ! {
48         libc::abort();
49     }
50
51     #[cfg(any(windows,
52               all(target_arch = "wasm32", not(target_os = "emscripten"))))]
53     unsafe fn abort() -> ! {
54         core::intrinsics::abort();
55     }
56
57     #[cfg(any(target_os = "hermit",
58               all(target_vendor="fortanix", target_env="sgx")))]
59     unsafe fn abort() -> ! {
60         // call std::sys::abort_internal
61         extern "C" { pub fn __rust_abort() -> !; }
62         __rust_abort();
63     }
64 }
65
66 // This... is a bit of an oddity. The tl;dr; is that this is required to link
67 // correctly, the longer explanation is below.
68 //
69 // Right now the binaries of libcore/libstd that we ship are all compiled with
70 // `-C panic=unwind`. This is done to ensure that the binaries are maximally
71 // compatible with as many situations as possible. The compiler, however,
72 // requires a "personality function" for all functions compiled with `-C
73 // panic=unwind`. This personality function is hardcoded to the symbol
74 // `rust_eh_personality` and is defined by the `eh_personality` lang item.
75 //
76 // So... why not just define that lang item here? Good question! The way that
77 // panic runtimes are linked in is actually a little subtle in that they're
78 // "sort of" in the compiler's crate store, but only actually linked if another
79 // isn't actually linked. This ends up meaning that both this crate and the
80 // panic_unwind crate can appear in the compiler's crate store, and if both
81 // define the `eh_personality` lang item then that'll hit an error.
82 //
83 // To handle this the compiler only requires the `eh_personality` is defined if
84 // the panic runtime being linked in is the unwinding runtime, and otherwise
85 // it's not required to be defined (rightfully so). In this case, however, this
86 // library just defines this symbol so there's at least some personality
87 // somewhere.
88 //
89 // Essentially this symbol is just defined to get wired up to libcore/libstd
90 // binaries, but it should never be called as we don't link in an unwinding
91 // runtime at all.
92 pub mod personalities {
93     #[no_mangle]
94     #[cfg(not(any(
95         all(
96             target_arch = "wasm32",
97             not(target_os = "emscripten"),
98         ),
99         all(
100             target_os = "windows",
101             target_env = "gnu",
102             target_arch = "x86_64",
103         ),
104     )))]
105     pub extern fn rust_eh_personality() {}
106
107     // On x86_64-pc-windows-gnu we use our own personality function that needs
108     // to return `ExceptionContinueSearch` as we're passing on all our frames.
109     #[no_mangle]
110     #[cfg(all(target_os = "windows",
111               target_env = "gnu",
112               target_arch = "x86_64"))]
113     pub extern fn rust_eh_personality(_record: usize,
114                                       _frame: usize,
115                                       _context: usize,
116                                       _dispatcher: usize) -> u32 {
117         1 // `ExceptionContinueSearch`
118     }
119
120     // Similar to above, this corresponds to the `eh_unwind_resume` lang item
121     // that's only used on Windows currently.
122     //
123     // Note that we don't execute landing pads, so this is never called, so it's
124     // body is empty.
125     #[no_mangle]
126     #[cfg(all(target_os = "windows", target_env = "gnu"))]
127     pub extern fn rust_eh_unwind_resume() {}
128
129     // These two are called by our startup objects on i686-pc-windows-gnu, but
130     // they don't need to do anything so the bodies are nops.
131     #[no_mangle]
132     #[cfg(all(target_os = "windows", target_env = "gnu", target_arch = "x86"))]
133     pub extern fn rust_eh_register_frames() {}
134     #[no_mangle]
135     #[cfg(all(target_os = "windows", target_env = "gnu", target_arch = "x86"))]
136     pub extern fn rust_eh_unregister_frames() {}
137 }