| 1 | //! A library for acquiring a backtrace at runtime |
| 2 | //! |
| 3 | //! This library is meant to supplement the `RUST_BACKTRACE=1` support of the |
| 4 | //! standard library by allowing an acquisition of a backtrace at runtime |
| 5 | //! programmatically. The backtraces generated by this library do not need to be |
| 6 | //! parsed, for example, and expose the functionality of multiple backend |
| 7 | //! implementations. |
| 8 | //! |
| 9 | //! # Usage |
| 10 | //! |
| 11 | //! First, add this to your Cargo.toml |
| 12 | //! |
| 13 | //! ```toml |
| 14 | //! [dependencies] |
| 15 | //! backtrace = "0.3" |
| 16 | //! ``` |
| 17 | //! |
| 18 | //! Next: |
| 19 | //! |
| 20 | //! ``` |
| 21 | //! fn main() { |
| 22 | //! # // Unsafe here so test passes on no_std. |
| 23 | //! # #[cfg (feature = "std" )] { |
| 24 | //! backtrace::trace(|frame| { |
| 25 | //! let ip = frame.ip(); |
| 26 | //! let symbol_address = frame.symbol_address(); |
| 27 | //! |
| 28 | //! // Resolve this instruction pointer to a symbol name |
| 29 | //! backtrace::resolve_frame(frame, |symbol| { |
| 30 | //! if let Some(name) = symbol.name() { |
| 31 | //! // ... |
| 32 | //! } |
| 33 | //! if let Some(filename) = symbol.filename() { |
| 34 | //! // ... |
| 35 | //! } |
| 36 | //! }); |
| 37 | //! |
| 38 | //! true // keep going to the next frame |
| 39 | //! }); |
| 40 | //! } |
| 41 | //! # } |
| 42 | //! ``` |
| 43 | //! |
| 44 | //! # Backtrace accuracy |
| 45 | //! |
| 46 | //! This crate implements best-effort attempts to get the native backtrace. This |
| 47 | //! is not always guaranteed to work, and some platforms don't return any |
| 48 | //! backtrace at all. If your application requires accurate backtraces then it's |
| 49 | //! recommended to closely evaluate this crate to see whether it's suitable |
| 50 | //! for your use case on your target platforms. |
| 51 | //! |
| 52 | //! Even on supported platforms, there's a number of reasons that backtraces may |
| 53 | //! be less-than-accurate, including but not limited to: |
| 54 | //! |
| 55 | //! * Unwind information may not be available. This crate primarily implements |
| 56 | //! backtraces by unwinding the stack, but not all functions may have |
| 57 | //! unwinding information (e.g. DWARF unwinding information). |
| 58 | //! |
| 59 | //! * Rust code may be compiled without unwinding information for some |
| 60 | //! functions. This can also happen for Rust code compiled with |
| 61 | //! `-Cpanic=abort`. You can remedy this, however, with |
| 62 | //! `-Cforce-unwind-tables` as a compiler option. |
| 63 | //! |
| 64 | //! * Unwind information may be inaccurate or corrupt. In the worst case |
| 65 | //! inaccurate unwind information can lead this library to segfault. In the |
| 66 | //! best case inaccurate information will result in a truncated stack trace. |
| 67 | //! |
| 68 | //! * Backtraces may not report filenames/line numbers correctly due to missing |
| 69 | //! or corrupt debug information. This won't lead to segfaults unlike corrupt |
| 70 | //! unwinding information, but missing or malformed debug information will |
| 71 | //! mean that filenames and line numbers will not be available. This may be |
| 72 | //! because debug information wasn't generated by the compiler, or it's just |
| 73 | //! missing on the filesystem. |
| 74 | //! |
| 75 | //! * Not all platforms are supported. For example there's no way to get a |
| 76 | //! backtrace on WebAssembly at the moment. |
| 77 | //! |
| 78 | //! * Crate features may be disabled. Currently this crate supports using Gimli |
| 79 | //! libbacktrace on non-Windows platforms for reading debuginfo for |
| 80 | //! backtraces. If both crate features are disabled, however, then these |
| 81 | //! platforms will generate a backtrace but be unable to generate symbols for |
| 82 | //! it. |
| 83 | //! |
| 84 | //! In most standard workflows for most standard platforms you generally don't |
| 85 | //! need to worry about these caveats. We'll try to fix ones where we can over |
| 86 | //! time, but otherwise it's important to be aware of the limitations of |
| 87 | //! unwinding-based backtraces! |
| 88 | |
| 89 | #![deny (missing_docs)] |
| 90 | #![no_std ] |
| 91 | #![cfg_attr ( |
| 92 | all(feature = "std" , target_env = "sgx" , target_vendor = "fortanix" ), |
| 93 | feature(sgx_platform) |
| 94 | )] |
| 95 | #![warn (rust_2018_idioms)] |
| 96 | // When we're building as part of libstd, silence all warnings since they're |
| 97 | // irrelevant as this crate is developed out-of-tree. |
| 98 | #![cfg_attr (backtrace_in_libstd, allow(warnings))] |
| 99 | #![cfg_attr (not(feature = "std" ), allow(dead_code))] |
| 100 | // We know this is deprecated, it's only here for back-compat reasons. |
| 101 | #![cfg_attr (feature = "rustc-serialize" , allow(deprecated))] |
| 102 | |
| 103 | #[cfg (feature = "std" )] |
| 104 | #[macro_use ] |
| 105 | extern crate std; |
| 106 | |
| 107 | // This is only used for gimli right now, which is only used on some platforms, and miri |
| 108 | // so don't worry if it's unused in other configurations. |
| 109 | #[allow (unused_extern_crates)] |
| 110 | extern crate alloc; |
| 111 | |
| 112 | pub use self::backtrace::{trace_unsynchronized, Frame}; |
| 113 | mod backtrace; |
| 114 | |
| 115 | pub use self::symbolize::resolve_frame_unsynchronized; |
| 116 | pub use self::symbolize::{resolve_unsynchronized, Symbol, SymbolName}; |
| 117 | mod symbolize; |
| 118 | |
| 119 | pub use self::types::BytesOrWideString; |
| 120 | mod types; |
| 121 | |
| 122 | #[cfg (feature = "std" )] |
| 123 | pub use self::symbolize::clear_symbol_cache; |
| 124 | |
| 125 | mod print; |
| 126 | pub use print::{BacktraceFmt, BacktraceFrameFmt, PrintFmt}; |
| 127 | |
| 128 | cfg_if::cfg_if! { |
| 129 | if #[cfg(feature = "std" )] { |
| 130 | pub use self::backtrace::trace; |
| 131 | pub use self::symbolize::{resolve, resolve_frame}; |
| 132 | pub use self::capture::{Backtrace, BacktraceFrame, BacktraceSymbol}; |
| 133 | mod capture; |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | cfg_if::cfg_if! { |
| 138 | if #[cfg(all(target_env = "sgx" , target_vendor = "fortanix" , not(feature = "std" )))] { |
| 139 | pub use self::backtrace::set_image_base; |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | #[allow (dead_code)] |
| 144 | struct Bomb { |
| 145 | enabled: bool, |
| 146 | } |
| 147 | |
| 148 | #[allow (dead_code)] |
| 149 | impl Drop for Bomb { |
| 150 | fn drop(&mut self) { |
| 151 | if self.enabled { |
| 152 | panic!("cannot panic during the backtrace function" ); |
| 153 | } |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | #[allow (dead_code)] |
| 158 | #[cfg (feature = "std" )] |
| 159 | mod lock { |
| 160 | use std::boxed::Box; |
| 161 | use std::cell::Cell; |
| 162 | use std::ptr; |
| 163 | use std::sync::{Mutex, MutexGuard, Once}; |
| 164 | |
| 165 | pub struct LockGuard(Option<MutexGuard<'static, ()>>); |
| 166 | |
| 167 | static mut LOCK: *mut Mutex<()> = ptr::null_mut(); |
| 168 | static INIT: Once = Once::new(); |
| 169 | thread_local!(static LOCK_HELD: Cell<bool> = Cell::new(false)); |
| 170 | |
| 171 | impl Drop for LockGuard { |
| 172 | fn drop(&mut self) { |
| 173 | if self.0.is_some() { |
| 174 | LOCK_HELD.with(|slot| { |
| 175 | assert!(slot.get()); |
| 176 | slot.set(false); |
| 177 | }); |
| 178 | } |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | pub fn lock() -> LockGuard { |
| 183 | if LOCK_HELD.with(|l| l.get()) { |
| 184 | return LockGuard(None); |
| 185 | } |
| 186 | LOCK_HELD.with(|s| s.set(true)); |
| 187 | unsafe { |
| 188 | INIT.call_once(|| { |
| 189 | LOCK = Box::into_raw(Box::new(Mutex::new(()))); |
| 190 | }); |
| 191 | LockGuard(Some((*LOCK).lock().unwrap())) |
| 192 | } |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | #[cfg (all( |
| 197 | windows, |
| 198 | any( |
| 199 | target_env = "msvc" , |
| 200 | all(target_env = "gnu" , any(target_arch = "x86" , target_arch = "arm" )) |
| 201 | ), |
| 202 | not(target_vendor = "uwp" ) |
| 203 | ))] |
| 204 | mod dbghelp; |
| 205 | #[cfg (windows)] |
| 206 | mod windows; |
| 207 | |