10 releases

0.6.1 Jan 29, 2024
0.6.0 Apr 3, 2023
0.5.1 Nov 17, 2022
0.4.0 Oct 21, 2022
0.1.0 Apr 29, 2022

#54 in Operating systems

Download history 792/week @ 2024-01-01 892/week @ 2024-01-08 1937/week @ 2024-01-15 4777/week @ 2024-01-22 7266/week @ 2024-01-29 4153/week @ 2024-02-05 4997/week @ 2024-02-12 6659/week @ 2024-02-19 8002/week @ 2024-02-26 6950/week @ 2024-03-04 7571/week @ 2024-03-11 5537/week @ 2024-03-18 5042/week @ 2024-03-25 6471/week @ 2024-04-01 5833/week @ 2024-04-08 5236/week @ 2024-04-15

22,844 downloads per month
Used in 5 crates (2 directly)

MIT/Apache

185KB
3K SLoC

🔥 crash-handler

Runs user-specified code when a crash occurs

Embark Embark Crates.io Docs dependency status Build status

Linux/Android

On Linux this is done by handling signals, namely the following.

One important detail of the Linux signal handling is that this crate hooks pthread_create so that an alternate signal stack is always installed on every thread. std::thread::Thread already does this, however hooking pthread_create allows us to ensure this occurs for threads created from eg. C/C++ code as well. An alternate stack is necessary to reliably handle a SIGSEGV caused by a stack overflow, as signals are otherwise handled on the same stack that raised the signal.

SIGABRT

Signal sent to a process to tell it to abort, i.e. to terminate. The signal is usually initiated by the process itself when it calls std::process::abort or libc::abort, but it can be sent to the process from outside itself like any other signal.

SIGBUS

Signal sent to a process when it causes a bus error.

SIGFPE

Signal sent to a process when it executes an erroneous arithmetic operation. Though it stands for floating point exception this signal covers integer operations as well.

SIGILL

Signal sent to a process when it attempts to execute an illegal, malformed, unknown, or privileged, instruction.

SIGSEGV

Signal sent to a process when it makes an invalid virtual memory reference, a segmentation fault. This covers infamous null pointer access, out of bounds access, use after free, stack overflows, etc.

SIGTRAP

Signal sent to a process when a trap is raised, eg. a breakpoint or debug assertion.

Windows

On Windows we catch exceptions, which cover a wide range of crash reasons, as well as invalid parameters and purecall

MacOS

On Macos we use exception ports. Exception ports are the first layer that exceptions are filtered, from a thread level, to a process (task) level, and finally to a host level.

If no user ports have been registered, the default Macos implementation is to convert the Mach exception into an equivalent Unix signal and deliver it to any registered signal handlers before performing the default action for the exception/signal (ie process termination). This means that if you use this crate in conjunction with signal handling on MacOs, you will not get the results you expect as the exception port used by this crate will take precedence over the signal handler. See this issue for a concrete example.

Note that there is one exception to the above, which is that SIGABRT is handled by a signal handler, as there is no equivalent Mach exception for it.

EXC_BAD_ACCESS

Covers similar crashes as SIGSEGV and SIGBUS

EXC_BAD_INSTRUCTION

Covers similar crashes as SIGILL

EXC_ARITHMETIC

Covers similar crashes as SIGFPE

EXC_BREAKPOINT

Covers similar crashes as SIGTRAP

Contribution

Contributor Covenant

We welcome community contributions to this project.

Please read our Contributor Guide for more information on how to get started. Please also read our Contributor Terms before you make any contributions.

Any contribution intentionally submitted for inclusion in an Embark Studios project, shall comply with the Rust standard licensing model (MIT OR Apache 2.0) and therefore be dual licensed as described below, without any additional terms or conditions:

License

This contribution is dual licensed under EITHER OF

at your option.

For clarity, "your" refers to Embark or any other licensee/user of the contribution.

Dependencies

~0.4–6.5MB
~12K SLoC