]> git.proxmox.com Git - rustc.git/blob - library/std/src/panicking.rs
New upstream version 1.62.1+dfsg1
[rustc.git] / library / std / src / panicking.rs
1 //! Implementation of various bits and pieces of the `panic!` macro and
2 //! associated runtime pieces.
3 //!
4 //! Specifically, this module contains the implementation of:
5 //!
6 //! * Panic hooks
7 //! * Executing a panic up to doing the actual implementation
8 //! * Shims around "try"
9
10 #![deny(unsafe_op_in_unsafe_fn)]
11
12 use crate::panic::BacktraceStyle;
13 use core::panic::{BoxMeUp, Location, PanicInfo};
14
15 use crate::any::Any;
16 use crate::fmt;
17 use crate::intrinsics;
18 use crate::mem::{self, ManuallyDrop};
19 use crate::process;
20 use crate::sync::atomic::{AtomicBool, Ordering};
21 use crate::sys::stdio::panic_output;
22 use crate::sys_common::backtrace;
23 use crate::sys_common::rwlock::StaticRwLock;
24 use crate::sys_common::thread_info;
25 use crate::thread;
26
27 #[cfg(not(test))]
28 use crate::io::set_output_capture;
29 // make sure to use the stderr output configured
30 // by libtest in the real copy of std
31 #[cfg(test)]
32 use realstd::io::set_output_capture;
33
34 // Binary interface to the panic runtime that the standard library depends on.
35 //
36 // The standard library is tagged with `#![needs_panic_runtime]` (introduced in
37 // RFC 1513) to indicate that it requires some other crate tagged with
38 // `#![panic_runtime]` to exist somewhere. Each panic runtime is intended to
39 // implement these symbols (with the same signatures) so we can get matched up
40 // to them.
41 //
42 // One day this may look a little less ad-hoc with the compiler helping out to
43 // hook up these functions, but it is not this day!
44 #[allow(improper_ctypes)]
45 extern "C" {
46 fn __rust_panic_cleanup(payload: *mut u8) -> *mut (dyn Any + Send + 'static);
47 }
48
49 #[allow(improper_ctypes)]
50 extern "C-unwind" {
51 /// `payload` is passed through another layer of raw pointers as `&mut dyn Trait` is not
52 /// FFI-safe. `BoxMeUp` lazily performs allocation only when needed (this avoids allocations
53 /// when using the "abort" panic runtime).
54 fn __rust_start_panic(payload: *mut &mut dyn BoxMeUp) -> u32;
55 }
56
57 /// This function is called by the panic runtime if FFI code catches a Rust
58 /// panic but doesn't rethrow it. We don't support this case since it messes
59 /// with our panic count.
60 #[cfg(not(test))]
61 #[rustc_std_internal_symbol]
62 extern "C" fn __rust_drop_panic() -> ! {
63 rtabort!("Rust panics must be rethrown");
64 }
65
66 /// This function is called by the panic runtime if it catches an exception
67 /// object which does not correspond to a Rust panic.
68 #[cfg(not(test))]
69 #[rustc_std_internal_symbol]
70 extern "C" fn __rust_foreign_exception() -> ! {
71 rtabort!("Rust cannot catch foreign exceptions");
72 }
73
74 #[derive(Copy, Clone)]
75 enum Hook {
76 Default,
77 Custom(*mut (dyn Fn(&PanicInfo<'_>) + 'static + Sync + Send)),
78 }
79
80 impl Hook {
81 fn custom(f: impl Fn(&PanicInfo<'_>) + 'static + Sync + Send) -> Self {
82 Self::Custom(Box::into_raw(Box::new(f)))
83 }
84 }
85
86 static HOOK_LOCK: StaticRwLock = StaticRwLock::new();
87 static mut HOOK: Hook = Hook::Default;
88
89 /// Registers a custom panic hook, replacing any that was previously registered.
90 ///
91 /// The panic hook is invoked when a thread panics, but before the panic runtime
92 /// is invoked. As such, the hook will run with both the aborting and unwinding
93 /// runtimes. The default hook prints a message to standard error and generates
94 /// a backtrace if requested, but this behavior can be customized with the
95 /// `set_hook` and [`take_hook`] functions.
96 ///
97 /// [`take_hook`]: ./fn.take_hook.html
98 ///
99 /// The hook is provided with a `PanicInfo` struct which contains information
100 /// about the origin of the panic, including the payload passed to `panic!` and
101 /// the source code location from which the panic originated.
102 ///
103 /// The panic hook is a global resource.
104 ///
105 /// # Panics
106 ///
107 /// Panics if called from a panicking thread.
108 ///
109 /// # Examples
110 ///
111 /// The following will print "Custom panic hook":
112 ///
113 /// ```should_panic
114 /// use std::panic;
115 ///
116 /// panic::set_hook(Box::new(|_| {
117 /// println!("Custom panic hook");
118 /// }));
119 ///
120 /// panic!("Normal panic");
121 /// ```
122 #[stable(feature = "panic_hooks", since = "1.10.0")]
123 pub fn set_hook(hook: Box<dyn Fn(&PanicInfo<'_>) + 'static + Sync + Send>) {
124 if thread::panicking() {
125 panic!("cannot modify the panic hook from a panicking thread");
126 }
127
128 // SAFETY:
129 //
130 // - `HOOK` can only be modified while holding write access to `HOOK_LOCK`.
131 // - The argument of `Box::from_raw` is always a valid pointer that was created using
132 // `Box::into_raw`.
133 unsafe {
134 let guard = HOOK_LOCK.write();
135 let old_hook = HOOK;
136 HOOK = Hook::Custom(Box::into_raw(hook));
137 drop(guard);
138
139 if let Hook::Custom(ptr) = old_hook {
140 #[allow(unused_must_use)]
141 {
142 Box::from_raw(ptr);
143 }
144 }
145 }
146 }
147
148 /// Unregisters the current panic hook, returning it.
149 ///
150 /// *See also the function [`set_hook`].*
151 ///
152 /// [`set_hook`]: ./fn.set_hook.html
153 ///
154 /// If no custom hook is registered, the default hook will be returned.
155 ///
156 /// # Panics
157 ///
158 /// Panics if called from a panicking thread.
159 ///
160 /// # Examples
161 ///
162 /// The following will print "Normal panic":
163 ///
164 /// ```should_panic
165 /// use std::panic;
166 ///
167 /// panic::set_hook(Box::new(|_| {
168 /// println!("Custom panic hook");
169 /// }));
170 ///
171 /// let _ = panic::take_hook();
172 ///
173 /// panic!("Normal panic");
174 /// ```
175 #[must_use]
176 #[stable(feature = "panic_hooks", since = "1.10.0")]
177 pub fn take_hook() -> Box<dyn Fn(&PanicInfo<'_>) + 'static + Sync + Send> {
178 if thread::panicking() {
179 panic!("cannot modify the panic hook from a panicking thread");
180 }
181
182 // SAFETY:
183 //
184 // - `HOOK` can only be modified while holding write access to `HOOK_LOCK`.
185 // - The argument of `Box::from_raw` is always a valid pointer that was created using
186 // `Box::into_raw`.
187 unsafe {
188 let guard = HOOK_LOCK.write();
189 let hook = HOOK;
190 HOOK = Hook::Default;
191 drop(guard);
192
193 match hook {
194 Hook::Default => Box::new(default_hook),
195 Hook::Custom(ptr) => Box::from_raw(ptr),
196 }
197 }
198 }
199
200 /// Atomic combination of [`take_hook`] and [`set_hook`]. Use this to replace the panic handler with
201 /// a new panic handler that does something and then executes the old handler.
202 ///
203 /// [`take_hook`]: ./fn.take_hook.html
204 /// [`set_hook`]: ./fn.set_hook.html
205 ///
206 /// # Panics
207 ///
208 /// Panics if called from a panicking thread.
209 ///
210 /// # Examples
211 ///
212 /// The following will print the custom message, and then the normal output of panic.
213 ///
214 /// ```should_panic
215 /// #![feature(panic_update_hook)]
216 /// use std::panic;
217 ///
218 /// // Equivalent to
219 /// // let prev = panic::take_hook();
220 /// // panic::set_hook(move |info| {
221 /// // println!("...");
222 /// // prev(info);
223 /// // );
224 /// panic::update_hook(move |prev, info| {
225 /// println!("Print custom message and execute panic handler as usual");
226 /// prev(info);
227 /// });
228 ///
229 /// panic!("Custom and then normal");
230 /// ```
231 #[unstable(feature = "panic_update_hook", issue = "92649")]
232 pub fn update_hook<F>(hook_fn: F)
233 where
234 F: Fn(&(dyn Fn(&PanicInfo<'_>) + Send + Sync + 'static), &PanicInfo<'_>)
235 + Sync
236 + Send
237 + 'static,
238 {
239 if thread::panicking() {
240 panic!("cannot modify the panic hook from a panicking thread");
241 }
242
243 // SAFETY:
244 //
245 // - `HOOK` can only be modified while holding write access to `HOOK_LOCK`.
246 // - The argument of `Box::from_raw` is always a valid pointer that was created using
247 // `Box::into_raw`.
248 unsafe {
249 let guard = HOOK_LOCK.write();
250 let old_hook = HOOK;
251 HOOK = Hook::Default;
252
253 let prev = match old_hook {
254 Hook::Default => Box::new(default_hook),
255 Hook::Custom(ptr) => Box::from_raw(ptr),
256 };
257
258 HOOK = Hook::custom(move |info| hook_fn(&prev, info));
259 drop(guard);
260 }
261 }
262
263 fn default_hook(info: &PanicInfo<'_>) {
264 // If this is a double panic, make sure that we print a backtrace
265 // for this panic. Otherwise only print it if logging is enabled.
266 let backtrace = if panic_count::get_count() >= 2 {
267 BacktraceStyle::full()
268 } else {
269 crate::panic::get_backtrace_style()
270 };
271
272 // The current implementation always returns `Some`.
273 let location = info.location().unwrap();
274
275 let msg = match info.payload().downcast_ref::<&'static str>() {
276 Some(s) => *s,
277 None => match info.payload().downcast_ref::<String>() {
278 Some(s) => &s[..],
279 None => "Box<dyn Any>",
280 },
281 };
282 let thread = thread_info::current_thread();
283 let name = thread.as_ref().and_then(|t| t.name()).unwrap_or("<unnamed>");
284
285 let write = |err: &mut dyn crate::io::Write| {
286 let _ = writeln!(err, "thread '{name}' panicked at '{msg}', {location}");
287
288 static FIRST_PANIC: AtomicBool = AtomicBool::new(true);
289
290 match backtrace {
291 Some(BacktraceStyle::Short) => {
292 drop(backtrace::print(err, crate::backtrace_rs::PrintFmt::Short))
293 }
294 Some(BacktraceStyle::Full) => {
295 drop(backtrace::print(err, crate::backtrace_rs::PrintFmt::Full))
296 }
297 Some(BacktraceStyle::Off) => {
298 if FIRST_PANIC.swap(false, Ordering::SeqCst) {
299 let _ = writeln!(
300 err,
301 "note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace"
302 );
303 }
304 }
305 // If backtraces aren't supported, do nothing.
306 None => {}
307 }
308 };
309
310 if let Some(local) = set_output_capture(None) {
311 write(&mut *local.lock().unwrap_or_else(|e| e.into_inner()));
312 set_output_capture(Some(local));
313 } else if let Some(mut out) = panic_output() {
314 write(&mut out);
315 }
316 }
317
318 #[cfg(not(test))]
319 #[doc(hidden)]
320 #[unstable(feature = "update_panic_count", issue = "none")]
321 pub mod panic_count {
322 use crate::cell::Cell;
323 use crate::sync::atomic::{AtomicUsize, Ordering};
324
325 pub const ALWAYS_ABORT_FLAG: usize = 1 << (usize::BITS - 1);
326
327 // Panic count for the current thread.
328 thread_local! { static LOCAL_PANIC_COUNT: Cell<usize> = Cell::new(0) }
329
330 // Sum of panic counts from all threads. The purpose of this is to have
331 // a fast path in `is_zero` (which is used by `panicking`). In any particular
332 // thread, if that thread currently views `GLOBAL_PANIC_COUNT` as being zero,
333 // then `LOCAL_PANIC_COUNT` in that thread is zero. This invariant holds before
334 // and after increase and decrease, but not necessarily during their execution.
335 //
336 // Additionally, the top bit of GLOBAL_PANIC_COUNT (GLOBAL_ALWAYS_ABORT_FLAG)
337 // records whether panic::always_abort() has been called. This can only be
338 // set, never cleared.
339 //
340 // This could be viewed as a struct containing a single bit and an n-1-bit
341 // value, but if we wrote it like that it would be more than a single word,
342 // and even a newtype around usize would be clumsy because we need atomics.
343 // But we use such a tuple for the return type of increase().
344 //
345 // Stealing a bit is fine because it just amounts to assuming that each
346 // panicking thread consumes at least 2 bytes of address space.
347 static GLOBAL_PANIC_COUNT: AtomicUsize = AtomicUsize::new(0);
348
349 pub fn increase() -> (bool, usize) {
350 (
351 GLOBAL_PANIC_COUNT.fetch_add(1, Ordering::Relaxed) & ALWAYS_ABORT_FLAG != 0,
352 LOCAL_PANIC_COUNT.with(|c| {
353 let next = c.get() + 1;
354 c.set(next);
355 next
356 }),
357 )
358 }
359
360 pub fn decrease() {
361 GLOBAL_PANIC_COUNT.fetch_sub(1, Ordering::Relaxed);
362 LOCAL_PANIC_COUNT.with(|c| {
363 let next = c.get() - 1;
364 c.set(next);
365 next
366 });
367 }
368
369 pub fn set_always_abort() {
370 GLOBAL_PANIC_COUNT.fetch_or(ALWAYS_ABORT_FLAG, Ordering::Relaxed);
371 }
372
373 // Disregards ALWAYS_ABORT_FLAG
374 #[must_use]
375 pub fn get_count() -> usize {
376 LOCAL_PANIC_COUNT.with(|c| c.get())
377 }
378
379 // Disregards ALWAYS_ABORT_FLAG
380 #[must_use]
381 #[inline]
382 pub fn count_is_zero() -> bool {
383 if GLOBAL_PANIC_COUNT.load(Ordering::Relaxed) & !ALWAYS_ABORT_FLAG == 0 {
384 // Fast path: if `GLOBAL_PANIC_COUNT` is zero, all threads
385 // (including the current one) will have `LOCAL_PANIC_COUNT`
386 // equal to zero, so TLS access can be avoided.
387 //
388 // In terms of performance, a relaxed atomic load is similar to a normal
389 // aligned memory read (e.g., a mov instruction in x86), but with some
390 // compiler optimization restrictions. On the other hand, a TLS access
391 // might require calling a non-inlinable function (such as `__tls_get_addr`
392 // when using the GD TLS model).
393 true
394 } else {
395 is_zero_slow_path()
396 }
397 }
398
399 // Slow path is in a separate function to reduce the amount of code
400 // inlined from `is_zero`.
401 #[inline(never)]
402 #[cold]
403 fn is_zero_slow_path() -> bool {
404 LOCAL_PANIC_COUNT.with(|c| c.get() == 0)
405 }
406 }
407
408 #[cfg(test)]
409 pub use realstd::rt::panic_count;
410
411 /// Invoke a closure, capturing the cause of an unwinding panic if one occurs.
412 pub unsafe fn r#try<R, F: FnOnce() -> R>(f: F) -> Result<R, Box<dyn Any + Send>> {
413 union Data<F, R> {
414 f: ManuallyDrop<F>,
415 r: ManuallyDrop<R>,
416 p: ManuallyDrop<Box<dyn Any + Send>>,
417 }
418
419 // We do some sketchy operations with ownership here for the sake of
420 // performance. We can only pass pointers down to `do_call` (can't pass
421 // objects by value), so we do all the ownership tracking here manually
422 // using a union.
423 //
424 // We go through a transition where:
425 //
426 // * First, we set the data field `f` to be the argumentless closure that we're going to call.
427 // * When we make the function call, the `do_call` function below, we take
428 // ownership of the function pointer. At this point the `data` union is
429 // entirely uninitialized.
430 // * If the closure successfully returns, we write the return value into the
431 // data's return slot (field `r`).
432 // * If the closure panics (`do_catch` below), we write the panic payload into field `p`.
433 // * Finally, when we come back out of the `try` intrinsic we're
434 // in one of two states:
435 //
436 // 1. The closure didn't panic, in which case the return value was
437 // filled in. We move it out of `data.r` and return it.
438 // 2. The closure panicked, in which case the panic payload was
439 // filled in. We move it out of `data.p` and return it.
440 //
441 // Once we stack all that together we should have the "most efficient'
442 // method of calling a catch panic whilst juggling ownership.
443 let mut data = Data { f: ManuallyDrop::new(f) };
444
445 let data_ptr = &mut data as *mut _ as *mut u8;
446 // SAFETY:
447 //
448 // Access to the union's fields: this is `std` and we know that the `r#try`
449 // intrinsic fills in the `r` or `p` union field based on its return value.
450 //
451 // The call to `intrinsics::r#try` is made safe by:
452 // - `do_call`, the first argument, can be called with the initial `data_ptr`.
453 // - `do_catch`, the second argument, can be called with the `data_ptr` as well.
454 // See their safety preconditions for more information
455 unsafe {
456 return if intrinsics::r#try(do_call::<F, R>, data_ptr, do_catch::<F, R>) == 0 {
457 Ok(ManuallyDrop::into_inner(data.r))
458 } else {
459 Err(ManuallyDrop::into_inner(data.p))
460 };
461 }
462
463 // We consider unwinding to be rare, so mark this function as cold. However,
464 // do not mark it no-inline -- that decision is best to leave to the
465 // optimizer (in most cases this function is not inlined even as a normal,
466 // non-cold function, though, as of the writing of this comment).
467 #[cold]
468 unsafe fn cleanup(payload: *mut u8) -> Box<dyn Any + Send + 'static> {
469 // SAFETY: The whole unsafe block hinges on a correct implementation of
470 // the panic handler `__rust_panic_cleanup`. As such we can only
471 // assume it returns the correct thing for `Box::from_raw` to work
472 // without undefined behavior.
473 let obj = unsafe { Box::from_raw(__rust_panic_cleanup(payload)) };
474 panic_count::decrease();
475 obj
476 }
477
478 // SAFETY:
479 // data must be non-NUL, correctly aligned, and a pointer to a `Data<F, R>`
480 // Its must contains a valid `f` (type: F) value that can be use to fill
481 // `data.r`.
482 //
483 // This function cannot be marked as `unsafe` because `intrinsics::r#try`
484 // expects normal function pointers.
485 #[inline]
486 fn do_call<F: FnOnce() -> R, R>(data: *mut u8) {
487 // SAFETY: this is the responsibility of the caller, see above.
488 unsafe {
489 let data = data as *mut Data<F, R>;
490 let data = &mut (*data);
491 let f = ManuallyDrop::take(&mut data.f);
492 data.r = ManuallyDrop::new(f());
493 }
494 }
495
496 // We *do* want this part of the catch to be inlined: this allows the
497 // compiler to properly track accesses to the Data union and optimize it
498 // away most of the time.
499 //
500 // SAFETY:
501 // data must be non-NUL, correctly aligned, and a pointer to a `Data<F, R>`
502 // Since this uses `cleanup` it also hinges on a correct implementation of
503 // `__rustc_panic_cleanup`.
504 //
505 // This function cannot be marked as `unsafe` because `intrinsics::r#try`
506 // expects normal function pointers.
507 #[inline]
508 fn do_catch<F: FnOnce() -> R, R>(data: *mut u8, payload: *mut u8) {
509 // SAFETY: this is the responsibility of the caller, see above.
510 //
511 // When `__rustc_panic_cleaner` is correctly implemented we can rely
512 // on `obj` being the correct thing to pass to `data.p` (after wrapping
513 // in `ManuallyDrop`).
514 unsafe {
515 let data = data as *mut Data<F, R>;
516 let data = &mut (*data);
517 let obj = cleanup(payload);
518 data.p = ManuallyDrop::new(obj);
519 }
520 }
521 }
522
523 /// Determines whether the current thread is unwinding because of panic.
524 #[inline]
525 pub fn panicking() -> bool {
526 !panic_count::count_is_zero()
527 }
528
529 /// Entry point of panics from the libcore crate (`panic_impl` lang item).
530 #[cfg(not(test))]
531 #[panic_handler]
532 pub fn begin_panic_handler(info: &PanicInfo<'_>) -> ! {
533 struct PanicPayload<'a> {
534 inner: &'a fmt::Arguments<'a>,
535 string: Option<String>,
536 }
537
538 impl<'a> PanicPayload<'a> {
539 fn new(inner: &'a fmt::Arguments<'a>) -> PanicPayload<'a> {
540 PanicPayload { inner, string: None }
541 }
542
543 fn fill(&mut self) -> &mut String {
544 use crate::fmt::Write;
545
546 let inner = self.inner;
547 // Lazily, the first time this gets called, run the actual string formatting.
548 self.string.get_or_insert_with(|| {
549 let mut s = String::new();
550 drop(s.write_fmt(*inner));
551 s
552 })
553 }
554 }
555
556 unsafe impl<'a> BoxMeUp for PanicPayload<'a> {
557 fn take_box(&mut self) -> *mut (dyn Any + Send) {
558 // We do two allocations here, unfortunately. But (a) they're required with the current
559 // scheme, and (b) we don't handle panic + OOM properly anyway (see comment in
560 // begin_panic below).
561 let contents = mem::take(self.fill());
562 Box::into_raw(Box::new(contents))
563 }
564
565 fn get(&mut self) -> &(dyn Any + Send) {
566 self.fill()
567 }
568 }
569
570 struct StrPanicPayload(&'static str);
571
572 unsafe impl BoxMeUp for StrPanicPayload {
573 fn take_box(&mut self) -> *mut (dyn Any + Send) {
574 Box::into_raw(Box::new(self.0))
575 }
576
577 fn get(&mut self) -> &(dyn Any + Send) {
578 &self.0
579 }
580 }
581
582 let loc = info.location().unwrap(); // The current implementation always returns Some
583 let msg = info.message().unwrap(); // The current implementation always returns Some
584 crate::sys_common::backtrace::__rust_end_short_backtrace(move || {
585 if let Some(msg) = msg.as_str() {
586 rust_panic_with_hook(&mut StrPanicPayload(msg), info.message(), loc, info.can_unwind());
587 } else {
588 rust_panic_with_hook(
589 &mut PanicPayload::new(msg),
590 info.message(),
591 loc,
592 info.can_unwind(),
593 );
594 }
595 })
596 }
597
598 /// This is the entry point of panicking for the non-format-string variants of
599 /// panic!() and assert!(). In particular, this is the only entry point that supports
600 /// arbitrary payloads, not just format strings.
601 #[unstable(feature = "libstd_sys_internals", reason = "used by the panic! macro", issue = "none")]
602 #[cfg_attr(not(test), lang = "begin_panic")]
603 // lang item for CTFE panic support
604 // never inline unless panic_immediate_abort to avoid code
605 // bloat at the call sites as much as possible
606 #[cfg_attr(not(feature = "panic_immediate_abort"), inline(never))]
607 #[cold]
608 #[track_caller]
609 #[rustc_do_not_const_check] // hooked by const-eval
610 pub const fn begin_panic<M: Any + Send>(msg: M) -> ! {
611 if cfg!(feature = "panic_immediate_abort") {
612 intrinsics::abort()
613 }
614
615 let loc = Location::caller();
616 return crate::sys_common::backtrace::__rust_end_short_backtrace(move || {
617 rust_panic_with_hook(&mut PanicPayload::new(msg), None, loc, true)
618 });
619
620 struct PanicPayload<A> {
621 inner: Option<A>,
622 }
623
624 impl<A: Send + 'static> PanicPayload<A> {
625 fn new(inner: A) -> PanicPayload<A> {
626 PanicPayload { inner: Some(inner) }
627 }
628 }
629
630 unsafe impl<A: Send + 'static> BoxMeUp for PanicPayload<A> {
631 fn take_box(&mut self) -> *mut (dyn Any + Send) {
632 // Note that this should be the only allocation performed in this code path. Currently
633 // this means that panic!() on OOM will invoke this code path, but then again we're not
634 // really ready for panic on OOM anyway. If we do start doing this, then we should
635 // propagate this allocation to be performed in the parent of this thread instead of the
636 // thread that's panicking.
637 let data = match self.inner.take() {
638 Some(a) => Box::new(a) as Box<dyn Any + Send>,
639 None => process::abort(),
640 };
641 Box::into_raw(data)
642 }
643
644 fn get(&mut self) -> &(dyn Any + Send) {
645 match self.inner {
646 Some(ref a) => a,
647 None => process::abort(),
648 }
649 }
650 }
651 }
652
653 /// Central point for dispatching panics.
654 ///
655 /// Executes the primary logic for a panic, including checking for recursive
656 /// panics, panic hooks, and finally dispatching to the panic runtime to either
657 /// abort or unwind.
658 fn rust_panic_with_hook(
659 payload: &mut dyn BoxMeUp,
660 message: Option<&fmt::Arguments<'_>>,
661 location: &Location<'_>,
662 can_unwind: bool,
663 ) -> ! {
664 let (must_abort, panics) = panic_count::increase();
665
666 // If this is the third nested call (e.g., panics == 2, this is 0-indexed),
667 // the panic hook probably triggered the last panic, otherwise the
668 // double-panic check would have aborted the process. In this case abort the
669 // process real quickly as we don't want to try calling it again as it'll
670 // probably just panic again.
671 if must_abort || panics > 2 {
672 if panics > 2 {
673 // Don't try to print the message in this case
674 // - perhaps that is causing the recursive panics.
675 rtprintpanic!("thread panicked while processing panic. aborting.\n");
676 } else {
677 // Unfortunately, this does not print a backtrace, because creating
678 // a `Backtrace` will allocate, which we must to avoid here.
679 let panicinfo = PanicInfo::internal_constructor(message, location, can_unwind);
680 rtprintpanic!("{panicinfo}\npanicked after panic::always_abort(), aborting.\n");
681 }
682 crate::sys::abort_internal();
683 }
684
685 unsafe {
686 let mut info = PanicInfo::internal_constructor(message, location, can_unwind);
687 let _guard = HOOK_LOCK.read();
688 match HOOK {
689 // Some platforms (like wasm) know that printing to stderr won't ever actually
690 // print anything, and if that's the case we can skip the default
691 // hook. Since string formatting happens lazily when calling `payload`
692 // methods, this means we avoid formatting the string at all!
693 // (The panic runtime might still call `payload.take_box()` though and trigger
694 // formatting.)
695 Hook::Default if panic_output().is_none() => {}
696 Hook::Default => {
697 info.set_payload(payload.get());
698 default_hook(&info);
699 }
700 Hook::Custom(ptr) => {
701 info.set_payload(payload.get());
702 (*ptr)(&info);
703 }
704 };
705 }
706
707 if panics > 1 || !can_unwind {
708 // If a thread panics while it's already unwinding then we
709 // have limited options. Currently our preference is to
710 // just abort. In the future we may consider resuming
711 // unwinding or otherwise exiting the thread cleanly.
712 rtprintpanic!("thread panicked while panicking. aborting.\n");
713 crate::sys::abort_internal();
714 }
715
716 rust_panic(payload)
717 }
718
719 /// This is the entry point for `resume_unwind`.
720 /// It just forwards the payload to the panic runtime.
721 pub fn rust_panic_without_hook(payload: Box<dyn Any + Send>) -> ! {
722 panic_count::increase();
723
724 struct RewrapBox(Box<dyn Any + Send>);
725
726 unsafe impl BoxMeUp for RewrapBox {
727 fn take_box(&mut self) -> *mut (dyn Any + Send) {
728 Box::into_raw(mem::replace(&mut self.0, Box::new(())))
729 }
730
731 fn get(&mut self) -> &(dyn Any + Send) {
732 &*self.0
733 }
734 }
735
736 rust_panic(&mut RewrapBox(payload))
737 }
738
739 /// An unmangled function (through `rustc_std_internal_symbol`) on which to slap
740 /// yer breakpoints.
741 #[inline(never)]
742 #[cfg_attr(not(test), rustc_std_internal_symbol)]
743 fn rust_panic(mut msg: &mut dyn BoxMeUp) -> ! {
744 let code = unsafe {
745 let obj = &mut msg as *mut &mut dyn BoxMeUp;
746 __rust_start_panic(obj)
747 };
748 rtabort!("failed to initiate panic, error {code}")
749 }