|
8 | 8 | // option. This file may not be copied, modified, or distributed
|
9 | 9 | // except according to those terms.
|
10 | 10 |
|
| 11 | +//! Win64 SEH (see http://msdn.microsoft.com/en-us/library/1eyas8tf.aspx) |
| 12 | +//! |
| 13 | +//! On Windows (currently only on MSVC), the default exception handling |
| 14 | +//! mechanism is Structured Exception Handling (SEH). This is quite different |
| 15 | +//! than Dwarf-based exception handling (e.g. what other unix platforms use) in |
| 16 | +//! terms of compiler internals, so LLVM is required to have a good deal of |
| 17 | +//! extra support for SEH. Currently this support is somewhat lacking, so what's |
| 18 | +//! here is the bare bones of SEH support. |
| 19 | +//! |
| 20 | +//! In a nutshell, what happens here is: |
| 21 | +//! |
| 22 | +//! 1. The `panic` function calls the standard Windows function `RaiseException` |
| 23 | +//! with a Rust-specific code, triggering the unwinding process. |
| 24 | +//! 2. All landing pads generated by the compiler (just "cleanup" landing pads) |
| 25 | +//! use the personality function `__C_specific_handler`, a function in the |
| 26 | +//! CRT, and the unwinding code in Windows will use this personality function |
| 27 | +//! to execute all cleanup code on the stack. |
| 28 | +//! 3. Eventually the "catch" code in `rust_try` (located in |
| 29 | +//! src/rt/rust_try_msvc_64.ll) is executed, which will ensure that the |
| 30 | +//! exception being caught is indeed a Rust exception, returning control back |
| 31 | +//! into Rust. |
| 32 | +//! |
| 33 | +//! Some specific differences from the gcc-based exception handling are: |
| 34 | +//! |
| 35 | +//! * Rust has no custom personality function, it is instead *always* |
| 36 | +//! __C_specific_handler, so the filtering is done in a C++-like manner |
| 37 | +//! instead of in the personality function itself. Note that the specific |
| 38 | +//! syntax for this (found in the rust_try_msvc_64.ll) is taken from an LLVM |
| 39 | +//! test case for SEH. |
| 40 | +//! * We've got some data to transmit across the unwinding boundary, |
| 41 | +//! specifically a `Box<Any + Send + 'static>`. In Dwarf-based unwinding this |
| 42 | +//! data is part of the payload of the exception, but I have not currently |
| 43 | +//! figured out how to do this with LLVM's bindings. Judging by some comments |
| 44 | +//! in the LLVM test cases this may not even be possible currently with LLVM, |
| 45 | +//! so this is just abandoned entirely. Instead the data is stored in a |
| 46 | +//! thread-local in `panic` and retrieved during `cleanup`. |
| 47 | +//! |
| 48 | +//! So given all that, the bindings here are pretty small, |
| 49 | +
|
| 50 | +#![allow(bad_style)] |
| 51 | + |
11 | 52 | use prelude::v1::*;
|
12 | 53 |
|
13 | 54 | use any::Any;
|
14 |
| -use intrinsics; |
15 |
| -use libc::c_void; |
| 55 | +use libc::{c_ulong, DWORD, c_void}; |
| 56 | +use sys_common::thread_local::StaticKey; |
| 57 | + |
| 58 | +// 0x R U S T |
| 59 | +const RUST_PANIC: DWORD = 0x52555354; |
| 60 | +static PANIC_DATA: StaticKey = StaticKey::new(None); |
| 61 | + |
| 62 | +// This function is provided by kernel32.dll |
| 63 | +extern "system" { |
| 64 | + fn RaiseException(dwExceptionCode: DWORD, |
| 65 | + dwExceptionFlags: DWORD, |
| 66 | + nNumberOfArguments: DWORD, |
| 67 | + lpArguments: *const c_ulong); |
| 68 | +} |
| 69 | + |
| 70 | +#[repr(C)] |
| 71 | +pub struct EXCEPTION_POINTERS { |
| 72 | + ExceptionRecord: *mut EXCEPTION_RECORD, |
| 73 | + ContextRecord: *mut CONTEXT, |
| 74 | +} |
| 75 | + |
| 76 | +enum CONTEXT {} |
| 77 | + |
| 78 | +#[repr(C)] |
| 79 | +struct EXCEPTION_RECORD { |
| 80 | + ExceptionCode: DWORD, |
| 81 | + ExceptionFlags: DWORD, |
| 82 | + ExceptionRecord: *mut _EXCEPTION_RECORD, |
| 83 | + ExceptionAddress: *mut c_void, |
| 84 | + NumberParameters: DWORD, |
| 85 | + ExceptionInformation: [*mut c_ulong; EXCEPTION_MAXIMUM_PARAMETERS], |
| 86 | +} |
16 | 87 |
|
17 |
| -pub unsafe fn panic(_data: Box<Any + Send + 'static>) -> ! { |
18 |
| - intrinsics::abort(); |
| 88 | +enum _EXCEPTION_RECORD {} |
| 89 | + |
| 90 | +const EXCEPTION_MAXIMUM_PARAMETERS: usize = 15; |
| 91 | + |
| 92 | +pub unsafe fn panic(data: Box<Any + Send + 'static>) -> ! { |
| 93 | + // See module docs above for an explanation of why `data` is stored in a |
| 94 | + // thread local instead of being passed as an argument to the |
| 95 | + // `RaiseException` function (which can in theory carry along arbitrary |
| 96 | + // data). |
| 97 | + let exception = Box::new(data); |
| 98 | + rtassert!(PANIC_DATA.get().is_null()); |
| 99 | + PANIC_DATA.set(Box::into_raw(exception) as *mut u8); |
| 100 | + |
| 101 | + RaiseException(RUST_PANIC, 0, 0, 0 as *const _); |
| 102 | + rtabort!("could not unwind stack"); |
19 | 103 | }
|
20 | 104 |
|
21 |
| -pub unsafe fn cleanup(_ptr: *mut c_void) -> Box<Any + Send + 'static> { |
22 |
| - intrinsics::abort(); |
| 105 | +pub unsafe fn cleanup(ptr: *mut c_void) -> Box<Any + Send + 'static> { |
| 106 | + // The `ptr` here actually corresponds to the code of the exception, and our |
| 107 | + // real data is stored in our thread local. |
| 108 | + rtassert!(ptr as DWORD == RUST_PANIC); |
| 109 | + |
| 110 | + let data = PANIC_DATA.get() as *mut Box<Any + Send + 'static>; |
| 111 | + PANIC_DATA.set(0 as *mut u8); |
| 112 | + rtassert!(!data.is_null()); |
| 113 | + |
| 114 | + *Box::from_raw(data) |
23 | 115 | }
|
24 | 116 |
|
| 117 | +// This is required by the compiler to exist (e.g. it's a lang item), but it's |
| 118 | +// never actually called by the compiler because __C_specific_handler is the |
| 119 | +// personality function that is always used. Hence this is just an aborting |
| 120 | +// stub. |
25 | 121 | #[lang = "eh_personality"]
|
26 |
| -#[no_mangle] |
27 |
| -pub extern fn rust_eh_personality() {} |
| 122 | +fn rust_eh_personality() { |
| 123 | + unsafe { ::intrinsics::abort() } |
| 124 | +} |
28 | 125 |
|
| 126 | +// This is a function referenced from `rust_try_msvc_64.ll` which is used to |
| 127 | +// filter the exceptions being caught by that function. |
| 128 | +// |
| 129 | +// In theory local variables can be accessed through the `rbp` parameter of this |
| 130 | +// function, but a comment in an LLVM test case indicates that this is not |
| 131 | +// implemented in LLVM, so this is just an idempotent function which doesn't |
| 132 | +// ferry along any other information. |
| 133 | +// |
| 134 | +// This function just takes a look at the current EXCEPTION_RECORD being thrown |
| 135 | +// to ensure that it's code is RUST_PANIC, which was set by the call to |
| 136 | +// `RaiseException` above in the `panic` function. |
29 | 137 | #[no_mangle]
|
30 |
| -pub extern fn rust_eh_personality_catch() {} |
| 138 | +pub extern fn __rust_try_filter(eh_ptrs: *mut EXCEPTION_POINTERS, |
| 139 | + _rbp: *mut c_void) -> i32 { |
| 140 | + unsafe { |
| 141 | + ((*(*eh_ptrs).ExceptionRecord).ExceptionCode == RUST_PANIC) as i32 |
| 142 | + } |
| 143 | +} |
0 commit comments