20 releases

0.7.8 Mar 10, 2024
0.7.6 Sep 1, 2023
0.7.4 Mar 27, 2023
0.7.1 Dec 22, 2022
0.2.0 May 10, 2021

#527 in Debugging

Download history 576/week @ 2024-07-02 908/week @ 2024-07-09 730/week @ 2024-07-16 858/week @ 2024-07-23 1000/week @ 2024-07-30 553/week @ 2024-08-06 879/week @ 2024-08-13 908/week @ 2024-08-20 382/week @ 2024-08-27 1312/week @ 2024-09-03 1158/week @ 2024-09-10 1332/week @ 2024-09-17 1755/week @ 2024-09-24 1015/week @ 2024-10-01 1354/week @ 2024-10-08 964/week @ 2024-10-15

5,347 downloads per month
Used in 3 crates (2 directly)

MIT license

35KB
596 lines

gdb-command

CI Crates.io Documentation

gdb-command is a library providing API for manipulating gdb in batch mode. It supports:

  • Execution of target program (Local type).
  • Opening core of target program (Core type).
  • Attaching to remote process (Remote type).

Example

use std::process::Command;
use std::thread;
use std::time::Duration;
use gdb_command::*;

fn main () -> error::Result<()> {
    // Get stack trace from running program (stopped at crash)
    let result = GdbCommand::new(&ExecType::Local(&["tests/bins/test_abort", "A"])).r().bt().launch()?;

    // Get stack trace from core
    let result = GdbCommand::new(
            &ExecType::Core {target: "tests/bins/test_canary",
                core: "tests/bins/core.test_canary"})
        .bt().launch()?;

    // Get info from remote attach to process
    let mut child = Command::new("tests/bins/test_callstack_remote")
       .spawn()
       .expect("failed to execute child");

    thread::sleep(Duration::from_millis(10));

    // To run this test: echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope
    let result = GdbCommand::new(&ExecType::Remote(&child.id().to_string()))
        .bt()
        .regs()
        .disassembly()
        .launch();
    child.kill().unwrap();

    Ok(())
}

Installation

[dependencies]
gdb-command = "0.7.8"

License

This crate is licensed under the MIT license.

Dependencies

~2.2–3.5MB
~56K SLoC