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