diff options
author | Santo Cariotti <santo@dcariotti.me> | 2023-10-15 21:25:49 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2023-10-15 21:27:17 +0200 |
commit | d3095900b941d7b08d579f9dc5e9dac45690228b (patch) | |
tree | c28e5f89b46eeacc4e95c7cabbaa4cf1863e4c3c /src/trace.rs | |
parent | 2779d956c4ad2e3be7fa814708c11c13ea1365d7 (diff) |
Use `registers` mod
Diffstat (limited to 'src/trace.rs')
-rw-r--r-- | src/trace.rs | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/trace.rs b/src/trace.rs index e576320..399f1c6 100644 --- a/src/trace.rs +++ b/src/trace.rs @@ -1,3 +1,4 @@ +use crate::registers::RegistersData; use nix::{ sys::{ ptrace, @@ -56,16 +57,12 @@ pub fn trace(pid: Pid, file_to_print: Option<String>) -> anyhow::Result<Vec<u8>> WaitStatus::Stopped(pid, signal) => { match signal { Signal::SIGTRAP => { - let regs = ptrace::getregs(pid)?; if have_to_print { - let output = format!( - "{}({:x}, {:x}, {:x}, ...) = {:x}", - regs.orig_rax, regs.rdi, regs.rsi, regs.rdx, regs.rax - ); - writeln!(lines, "{output}")?; + let reg = RegistersData::new(ptrace::getregs(pid)?); + writeln!(lines, "{}", reg.output())?; if let Some(ref mut f) = f { - writeln!(f, "{output}")?; + writeln!(f, "{}", reg.output())?; } } } |