Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 80 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,42 @@ This project is currently being very actively brought up from nothing, and is re

## Usage / Examples

The primary use case of this crate is for creating a minidump for an **external** process (ie a process other than the one that writes the minidump) as writing minidumps from within a crashing process is inherently unreliable. That being said, there are scenarios where creating a minidump can be useful outside of a crash scenario thus each supported platforms has a way to generate a minidump for a local process as well.

For more information on how to dump an external process you can check out the documentation or code for the [minidumper](https://docs.rs/minidumper/latest/minidumper/) crate.

### Linux

#### Local process

```rust
fn write_minidump() {
// At a minimum, the crashdump writer needs to know the process and thread that you want to dump
let mut writer = minidump_writer::minidump_writer::MinidumpWriter::new(
std::process::id() as _,
// This gets the current thread, but you could get the id for any thread
// in the current process
unsafe { libc::syscall(libc::SYS_gettid) } as i32
);

// If provided with a full [crash_context::CrashContext](https://docs.rs/crash-context/latest/crash_context/struct.CrashContext.html),
// the crash will contain more info on the crash cause, such as the signal
//writer.set_crash_context(minidump_writer::crash_context::CrashContext { inner: crash_context });

// Here we could add more context or modify how the minidump is written, eg
// Add application specific memory blocks to the minidump
//writer.set_app_memory()
// Sanitize stack memory before it is written to the minidump by replacing
// non-pointer values with a sentinel value
//writer.sanitize_stack();

let mut minidump_file = std::fs::File::create("example_dump.mdmp").expect("failed to create file");
writer.dump(&mut minidump_file).expect("failed to write minidump");
}
```

#### External process

```rust
fn write_minidump(crash_context: crash_context::CrashContext) {
// At a minimum, the crashdump writer needs to know the process and thread that the crash occurred in
Expand All @@ -39,23 +73,63 @@ fn write_minidump(crash_context: crash_context::CrashContext) {

### Windows

#### Local process

```rust
fn write_minidump() {
let mut minidump_file = std::fs::File::create("example_dump.mdmp").expect("failed to create file");

// Attempts to the write the minidump
minidump_writer::minidump_writer::MinidumpWriter::dump_local_context(
// The exception code, presumably one of STATUS_*. Defaults to STATUS_NONCONTINUABLE_EXCEPTION if not specified
None,
// If not specified, uses the current thread as the "crashing" thread,
// so this is equivalent to passing `None`, but it could be any thread
// in the process
Some(unsafe { windows_sys::Win32::System::Threading::GetCurrentThreadId() }),
&mut minidump_file,
).expect("failed to write minidump");;
}
```

#### External process

```rust
fn write_minidump(crash_context: crash_context::CrashContext) {
// Creates the Windows MinidumpWriter. This function handles both the case
// of the crashing process being the same, or different, than the current
// process
let writer = minidump_writer::minidump_writer::MinidumpWriter::new(crash_context)?;
use std::io::{Read, Seek};

// Create the file to write the minidump to. Unlike MacOS and Linux, the
// system call used to write the minidump only supports outputting to a file
let mut minidump_file = std::fs::File::create("example_dump.mdmp").expect("failed to create file");
writer.dump(&mut minidump_file).expect("failed to write minidump");
// Attempts to the write the minidump for the crash context
minidump_writer::minidump_writer::MinidumpWriter::dump_crash_context(crash_context, &mut minidump_file).expect("failed to write minidump");;

let mut minidump_contents = Vec::with_capacity(minidump_file.stream_position().expect("failed to get stream length") as usize);
minidump_file.rewind().expect("failed to rewind minidump file");

minidump_file.read_to_end(&mut minidump_contents).expect("failed to read minidump");
}
```

### MacOS

#### Local process

```rust
fn write_minidump() {
// Defaults to dumping the current process and thread.
let mut writer = minidump_writer::minidump_writer::MinidumpWriter::new(None, None)?;

let mut minidump_file = std::fs::File::create("example_dump.mdmp").expect("failed to create file");
writer.dump(&mut minidump_file).expect("failed to write minidump");
}
```

#### External process

```rust
fn write_minidump(crash_context: crash_context::CrashContext) {
let mut writer = minidump_writer::minidump_writer::MinidumpWriter::new(crash_context)?;
let mut writer = minidump_writer::minidump_writer::MinidumpWriter::with_crash_context(crash_context)?;

let mut minidump_file = std::fs::File::create("example_dump.mdmp").expect("failed to create file");
writer.dump(&mut minidump_file).expect("failed to write minidump");
Expand Down
9 changes: 3 additions & 6 deletions src/bin/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -297,12 +297,9 @@ mod linux {
mod windows {
use super::*;
use std::mem;
use windows_sys::Win32::{
Foundation::CloseHandle,
System::{
Diagnostics::Debug::{GetThreadContext, CONTEXT, EXCEPTION_POINTERS, EXCEPTION_RECORD},
Threading::{GetCurrentProcessId, GetCurrentThread, GetCurrentThreadId},
},
use windows_sys::Win32::System::{
Diagnostics::Debug::{GetThreadContext, CONTEXT, EXCEPTION_POINTERS, EXCEPTION_RECORD},
Threading::{GetCurrentProcessId, GetCurrentThread, GetCurrentThreadId},
};

#[inline(never)]
Expand Down
6 changes: 6 additions & 0 deletions src/windows/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,10 @@ pub enum Error {
Io(#[from] std::io::Error),
#[error(transparent)]
Scroll(#[from] scroll::Error),
#[error("Failed to open thread")]
ThreadOpen(#[source] std::io::Error),
#[error("Failed to suspend thread")]
ThreadSuspend(#[source] std::io::Error),
#[error("Failed to get thread context")]
ThreadContext(#[source] std::io::Error),
}
Loading