diff options
author | Santo Cariotti <santo@dcariotti.me> | 2023-10-15 18:27:15 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2023-10-15 18:27:15 +0200 |
commit | 36fc4e67d4b8c23d726234f34113ae518d4a12e7 (patch) | |
tree | 03eaa77ede1d6c33a5019a2b6f6a853f93439a80 /src/trace.rs | |
parent | 0bfaadf339bd263c9458e827819e39b10bd925ed (diff) |
Add multiprocessing
Diffstat (limited to 'src/trace.rs')
-rw-r--r-- | src/trace.rs | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/src/trace.rs b/src/trace.rs index 0031fcd..b00b9f9 100644 --- a/src/trace.rs +++ b/src/trace.rs @@ -8,16 +8,27 @@ use nix::{ }; use std::{os::unix::process::CommandExt, process::Command}; -pub fn exec(command: &mut Command) -> anyhow::Result<Pid> { +pub fn exec(command: &String) -> anyhow::Result<()> { + let params: Vec<&str> = command.split(' ').collect(); + + let mut command = Command::new(params[0]); + command.args(params[1..].iter()); + unsafe { command.pre_exec(|| ptrace::traceme().map_err(|e| e.into())); } - let child = command.spawn()?; - Ok(Pid::from_raw(child.id() as i32)) + + command.exec(); + + Ok(()) } pub fn trace(pid: Pid) -> anyhow::Result<()> { let mut have_to_print = true; + + // First wait if for the parent process + _ = waitpid(pid, None)?; + loop { have_to_print ^= true; ptrace::syscall(pid, None)?; |