diff options
author | Santo Cariotti <santo@dcariotti.me> | 2023-10-15 20:06:41 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2023-10-15 20:06:41 +0200 |
commit | 2f282d100fca3d8aa09d7802c1c38d61ec92b5ae (patch) | |
tree | f58ffc728765390632b4ed84b35de15452800718 /src/trace.rs | |
parent | 72664d87d2fb0782ca49a5f2118c64d0cf58e3f7 (diff) |
Init Terminal User Interface
Diffstat (limited to 'src/trace.rs')
-rw-r--r-- | src/trace.rs | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/src/trace.rs b/src/trace.rs index e826c53..b2880d5 100644 --- a/src/trace.rs +++ b/src/trace.rs @@ -6,12 +6,7 @@ use nix::{ }, unistd::Pid, }; -use std::{ - fs::File, - io::{self, Write}, - os::unix::process::CommandExt, - process::Command, -}; +use std::{fs::File, io::Write, os::unix::process::CommandExt, process::Command}; /// Exec the `command` value tracing it with `ptrace` lib pub fn exec(command: &String) -> anyhow::Result<()> { @@ -30,7 +25,7 @@ pub fn exec(command: &String) -> anyhow::Result<()> { } /// Trace a process with `pid` ID -pub fn trace(pid: Pid, file_to_print: Option<String>) -> anyhow::Result<()> { +pub fn trace(pid: Pid, file_to_print: Option<String>) -> anyhow::Result<Vec<u8>> { // Since you have to do 2 syscalls (start and end) you have to alternate the print value, // because it could be equals except for the `rax` register. let mut have_to_print = true; @@ -45,6 +40,8 @@ pub fn trace(pid: Pid, file_to_print: Option<String>) -> anyhow::Result<()> { f = Some(File::create(filename)?); } + let mut lines = Vec::new(); + loop { have_to_print ^= true; ptrace::syscall(pid, None)?; @@ -65,7 +62,7 @@ pub fn trace(pid: Pid, file_to_print: Option<String>) -> anyhow::Result<()> { "{}({:x}, {:x}, {:x}, ...) = {:x}", regs.orig_rax, regs.rdi, regs.rsi, regs.rdx, regs.rax ); - writeln!(io::stdout(), "{output}")?; + writeln!(lines, "{output}")?; if let Some(ref mut f) = f { writeln!(f, "{output}")?; @@ -79,5 +76,5 @@ pub fn trace(pid: Pid, file_to_print: Option<String>) -> anyhow::Result<()> { }; } - Ok(()) + Ok(lines) } |