]> git.lizzy.rs Git - rust.git/blob - src/libpanic_unwind/gcc.rs
Rollup merge of #39604 - est31:i128_tests, r=alexcrichton
[rust.git] / src / libpanic_unwind / gcc.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Implementation of panics backed by libgcc/libunwind (in some form)
12 //!
13 //! For background on exception handling and stack unwinding please see
14 //! "Exception Handling in LLVM" (llvm.org/docs/ExceptionHandling.html) and
15 //! documents linked from it.
16 //! These are also good reads:
17 //!     http://mentorembedded.github.io/cxx-abi/abi-eh.html
18 //!     http://monoinfinito.wordpress.com/series/exception-handling-in-c/
19 //!     http://www.airs.com/blog/index.php?s=exception+frames
20 //!
21 //! ## A brief summary
22 //!
23 //! Exception handling happens in two phases: a search phase and a cleanup
24 //! phase.
25 //!
26 //! In both phases the unwinder walks stack frames from top to bottom using
27 //! information from the stack frame unwind sections of the current process's
28 //! modules ("module" here refers to an OS module, i.e. an executable or a
29 //! dynamic library).
30 //!
31 //! For each stack frame, it invokes the associated "personality routine", whose
32 //! address is also stored in the unwind info section.
33 //!
34 //! In the search phase, the job of a personality routine is to examine
35 //! exception object being thrown, and to decide whether it should be caught at
36 //! that stack frame.  Once the handler frame has been identified, cleanup phase
37 //! begins.
38 //!
39 //! In the cleanup phase, the unwinder invokes each personality routine again.
40 //! This time it decides which (if any) cleanup code needs to be run for
41 //! the current stack frame.  If so, the control is transferred to a special
42 //! branch in the function body, the "landing pad", which invokes destructors,
43 //! frees memory, etc.  At the end of the landing pad, control is transferred
44 //! back to the unwinder and unwinding resumes.
45 //!
46 //! Once stack has been unwound down to the handler frame level, unwinding stops
47 //! and the last personality routine transfers control to the catch block.
48 //!
49 //! ## `eh_personality` and `eh_unwind_resume`
50 //!
51 //! These language items are used by the compiler when generating unwind info.
52 //! The first one is the personality routine described above.  The second one
53 //! allows compilation target to customize the process of resuming unwind at the
54 //! end of the landing pads. `eh_unwind_resume` is used only if
55 //! `custom_unwind_resume` flag in the target options is set.
56
57 #![allow(private_no_mangle_fns)]
58
59 use core::any::Any;
60 use core::ptr;
61 use alloc::boxed::Box;
62
63 use unwind as uw;
64 use libc::{c_int, uintptr_t};
65 use dwarf::eh::{self, EHContext, EHAction};
66
67 #[repr(C)]
68 struct Exception {
69     _uwe: uw::_Unwind_Exception,
70     cause: Option<Box<Any + Send>>,
71 }
72
73 pub unsafe fn panic(data: Box<Any + Send>) -> u32 {
74     let exception = Box::new(Exception {
75         _uwe: uw::_Unwind_Exception {
76             exception_class: rust_exception_class(),
77             exception_cleanup: exception_cleanup,
78             private: [0; uw::unwinder_private_data_size],
79         },
80         cause: Some(data),
81     });
82     let exception_param = Box::into_raw(exception) as *mut uw::_Unwind_Exception;
83     return uw::_Unwind_RaiseException(exception_param) as u32;
84
85     extern "C" fn exception_cleanup(_unwind_code: uw::_Unwind_Reason_Code,
86                                     exception: *mut uw::_Unwind_Exception) {
87         unsafe {
88             let _: Box<Exception> = Box::from_raw(exception as *mut Exception);
89         }
90     }
91 }
92
93 pub fn payload() -> *mut u8 {
94     ptr::null_mut()
95 }
96
97 pub unsafe fn cleanup(ptr: *mut u8) -> Box<Any + Send> {
98     let my_ep = ptr as *mut Exception;
99     let cause = (*my_ep).cause.take();
100     uw::_Unwind_DeleteException(ptr as *mut _);
101     cause.unwrap()
102 }
103
104 // Rust's exception class identifier.  This is used by personality routines to
105 // determine whether the exception was thrown by their own runtime.
106 fn rust_exception_class() -> uw::_Unwind_Exception_Class {
107     // M O Z \0  R U S T -- vendor, language
108     0x4d4f5a_00_52555354
109 }
110
111
112 // Register ids were lifted from LLVM's TargetLowering::getExceptionPointerRegister()
113 // and TargetLowering::getExceptionSelectorRegister() for each architecture,
114 // then mapped to DWARF register numbers via register definition tables
115 // (typically <arch>RegisterInfo.td, search for "DwarfRegNum").
116 // See also http://llvm.org/docs/WritingAnLLVMBackend.html#defining-a-register.
117
118 #[cfg(target_arch = "x86")]
119 const UNWIND_DATA_REG: (i32, i32) = (0, 2); // EAX, EDX
120
121 #[cfg(target_arch = "x86_64")]
122 const UNWIND_DATA_REG: (i32, i32) = (0, 1); // RAX, RDX
123
124 #[cfg(any(target_arch = "arm", target_arch = "aarch64"))]
125 const UNWIND_DATA_REG: (i32, i32) = (0, 1); // R0, R1 / X0, X1
126
127 #[cfg(any(target_arch = "mips", target_arch = "mips64"))]
128 const UNWIND_DATA_REG: (i32, i32) = (4, 5); // A0, A1
129
130 #[cfg(any(target_arch = "powerpc", target_arch = "powerpc64"))]
131 const UNWIND_DATA_REG: (i32, i32) = (3, 4); // R3, R4 / X3, X4
132
133 #[cfg(target_arch = "s390x")]
134 const UNWIND_DATA_REG: (i32, i32) = (6, 7); // R6, R7
135
136 #[cfg(target_arch = "sparc64")]
137 const UNWIND_DATA_REG: (i32, i32) = (24, 25); // I0, I1
138
139 // The following code is based on GCC's C and C++ personality routines.  For reference, see:
140 // https://github.com/gcc-mirror/gcc/blob/master/libstdc++-v3/libsupc++/eh_personality.cc
141 // https://github.com/gcc-mirror/gcc/blob/trunk/libgcc/unwind-c.c
142
143 // The personality routine for most of our targets, except ARM, which has a slightly different ABI
144 // (however, iOS goes here as it uses SjLj unwinding).  Also, the 64-bit Windows implementation
145 // lives in seh64_gnu.rs
146 #[cfg(all(any(target_os = "ios", not(target_arch = "arm"))))]
147 #[lang = "eh_personality"]
148 #[no_mangle]
149 #[allow(unused)]
150 unsafe extern "C" fn rust_eh_personality(version: c_int,
151                                          actions: uw::_Unwind_Action,
152                                          exception_class: uw::_Unwind_Exception_Class,
153                                          exception_object: *mut uw::_Unwind_Exception,
154                                          context: *mut uw::_Unwind_Context)
155                                          -> uw::_Unwind_Reason_Code {
156     if version != 1 {
157         return uw::_URC_FATAL_PHASE1_ERROR;
158     }
159     let eh_action = find_eh_action(context);
160     if actions as i32 & uw::_UA_SEARCH_PHASE as i32 != 0 {
161         match eh_action {
162             EHAction::None |
163             EHAction::Cleanup(_) => return uw::_URC_CONTINUE_UNWIND,
164             EHAction::Catch(_) => return uw::_URC_HANDLER_FOUND,
165             EHAction::Terminate => return uw::_URC_FATAL_PHASE1_ERROR,
166         }
167     } else {
168         match eh_action {
169             EHAction::None => return uw::_URC_CONTINUE_UNWIND,
170             EHAction::Cleanup(lpad) |
171             EHAction::Catch(lpad) => {
172                 uw::_Unwind_SetGR(context, UNWIND_DATA_REG.0, exception_object as uintptr_t);
173                 uw::_Unwind_SetGR(context, UNWIND_DATA_REG.1, 0);
174                 uw::_Unwind_SetIP(context, lpad);
175                 return uw::_URC_INSTALL_CONTEXT;
176             }
177             EHAction::Terminate => return uw::_URC_FATAL_PHASE2_ERROR,
178         }
179     }
180 }
181
182 // ARM EHABI personality routine.
183 // http://infocenter.arm.com/help/topic/com.arm.doc.ihi0038b/IHI0038B_ehabi.pdf
184 #[cfg(all(target_arch = "arm", not(target_os = "ios")))]
185 #[lang = "eh_personality"]
186 #[no_mangle]
187 unsafe extern "C" fn rust_eh_personality(state: uw::_Unwind_State,
188                                          exception_object: *mut uw::_Unwind_Exception,
189                                          context: *mut uw::_Unwind_Context)
190                                          -> uw::_Unwind_Reason_Code {
191     let state = state as c_int;
192     let action = state & uw::_US_ACTION_MASK as c_int;
193     let search_phase = if action == uw::_US_VIRTUAL_UNWIND_FRAME as c_int {
194         // Backtraces on ARM will call the personality routine with
195         // state == _US_VIRTUAL_UNWIND_FRAME | _US_FORCE_UNWIND. In those cases
196         // we want to continue unwinding the stack, otherwise all our backtraces
197         // would end at __rust_try
198         if state & uw::_US_FORCE_UNWIND as c_int != 0 {
199             return continue_unwind(exception_object, context);
200         }
201         true
202     } else if action == uw::_US_UNWIND_FRAME_STARTING as c_int {
203         false
204     } else if action == uw::_US_UNWIND_FRAME_RESUME as c_int {
205         return continue_unwind(exception_object, context);
206     } else {
207         return uw::_URC_FAILURE;
208     };
209
210     // The DWARF unwinder assumes that _Unwind_Context holds things like the function
211     // and LSDA pointers, however ARM EHABI places them into the exception object.
212     // To preserve signatures of functions like _Unwind_GetLanguageSpecificData(), which
213     // take only the context pointer, GCC personality routines stash a pointer to exception_object
214     // in the context, using location reserved for ARM's "scratch register" (r12).
215     uw::_Unwind_SetGR(context,
216                       uw::UNWIND_POINTER_REG,
217                       exception_object as uw::_Unwind_Ptr);
218     // ...A more principled approach would be to provide the full definition of ARM's
219     // _Unwind_Context in our libunwind bindings and fetch the required data from there directly,
220     // bypassing DWARF compatibility functions.
221
222     let eh_action = find_eh_action(context);
223     if search_phase {
224         match eh_action {
225             EHAction::None |
226             EHAction::Cleanup(_) => return continue_unwind(exception_object, context),
227             EHAction::Catch(_) => return uw::_URC_HANDLER_FOUND,
228             EHAction::Terminate => return uw::_URC_FAILURE,
229         }
230     } else {
231         match eh_action {
232             EHAction::None => return continue_unwind(exception_object, context),
233             EHAction::Cleanup(lpad) |
234             EHAction::Catch(lpad) => {
235                 uw::_Unwind_SetGR(context, UNWIND_DATA_REG.0, exception_object as uintptr_t);
236                 uw::_Unwind_SetGR(context, UNWIND_DATA_REG.1, 0);
237                 uw::_Unwind_SetIP(context, lpad);
238                 return uw::_URC_INSTALL_CONTEXT;
239             }
240             EHAction::Terminate => return uw::_URC_FAILURE,
241         }
242     }
243
244     // On ARM EHABI the personality routine is responsible for actually
245     // unwinding a single stack frame before returning (ARM EHABI Sec. 6.1).
246     unsafe fn continue_unwind(exception_object: *mut uw::_Unwind_Exception,
247                               context: *mut uw::_Unwind_Context)
248                               -> uw::_Unwind_Reason_Code {
249         if __gnu_unwind_frame(exception_object, context) == uw::_URC_NO_REASON {
250             uw::_URC_CONTINUE_UNWIND
251         } else {
252             uw::_URC_FAILURE
253         }
254     }
255     // defined in libgcc
256     extern "C" {
257         fn __gnu_unwind_frame(exception_object: *mut uw::_Unwind_Exception,
258                               context: *mut uw::_Unwind_Context)
259                               -> uw::_Unwind_Reason_Code;
260     }
261 }
262
263 unsafe fn find_eh_action(context: *mut uw::_Unwind_Context) -> EHAction {
264     let lsda = uw::_Unwind_GetLanguageSpecificData(context) as *const u8;
265     let mut ip_before_instr: c_int = 0;
266     let ip = uw::_Unwind_GetIPInfo(context, &mut ip_before_instr);
267     let eh_context = EHContext {
268         // The return address points 1 byte past the call instruction,
269         // which could be in the next IP range in LSDA range table.
270         ip: if ip_before_instr != 0 { ip } else { ip - 1 },
271         func_start: uw::_Unwind_GetRegionStart(context),
272         get_text_start: &|| uw::_Unwind_GetTextRelBase(context),
273         get_data_start: &|| uw::_Unwind_GetDataRelBase(context),
274     };
275     eh::find_eh_action(lsda, &eh_context)
276 }
277
278 // See docs in the `unwind` module.
279 #[cfg(all(target_os="windows", target_arch = "x86", target_env="gnu"))]
280 #[lang = "eh_unwind_resume"]
281 #[unwind]
282 unsafe extern "C" fn rust_eh_unwind_resume(panic_ctx: *mut u8) -> ! {
283     uw::_Unwind_Resume(panic_ctx as *mut uw::_Unwind_Exception);
284 }
285
286 // Frame unwind info registration
287 //
288 // Each module's image contains a frame unwind info section (usually
289 // ".eh_frame").  When a module is loaded/unloaded into the process, the
290 // unwinder must be informed about the location of this section in memory. The
291 // methods of achieving that vary by the platform.  On some (e.g. Linux), the
292 // unwinder can discover unwind info sections on its own (by dynamically
293 // enumerating currently loaded modules via the dl_iterate_phdr() API and
294 // finding their ".eh_frame" sections); Others, like Windows, require modules
295 // to actively register their unwind info sections via unwinder API.
296 //
297 // This module defines two symbols which are referenced and called from
298 // rsbegin.rs to register our information with the GCC runtime. The
299 // implementation of stack unwinding is (for now) deferred to libgcc_eh, however
300 // Rust crates use these Rust-specific entry points to avoid potential clashes
301 // with any GCC runtime.
302 #[cfg(all(target_os="windows", target_arch = "x86", target_env="gnu"))]
303 pub mod eh_frame_registry {
304     extern "C" {
305         fn __register_frame_info(eh_frame_begin: *const u8, object: *mut u8);
306         fn __deregister_frame_info(eh_frame_begin: *const u8, object: *mut u8);
307     }
308
309     #[no_mangle]
310     pub unsafe extern "C" fn rust_eh_register_frames(eh_frame_begin: *const u8, object: *mut u8) {
311         __register_frame_info(eh_frame_begin, object);
312     }
313
314     #[no_mangle]
315     pub unsafe extern "C" fn rust_eh_unregister_frames(eh_frame_begin: *const u8,
316                                                        object: *mut u8) {
317         __deregister_frame_info(eh_frame_begin, object);
318     }
319 }