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