1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
use rustix::fd::{FromRawFd, IntoRawFd};
use rustix::io::OwnedFd;
use std::os::unix::process::CommandExt;
use std::sync::Arc;
pub trait CapStdExtCommandExt {
fn take_fd_n(&mut self, fd: Arc<OwnedFd>, target: i32) -> &mut Self;
}
#[allow(unsafe_code)]
impl CapStdExtCommandExt for std::process::Command {
fn take_fd_n(&mut self, fd: Arc<OwnedFd>, target: i32) -> &mut Self {
unsafe {
self.pre_exec(move || {
let target = rustix::io::OwnedFd::from_raw_fd(target);
rustix::io::dup2(&*fd, &target)?;
let _ = target.into_raw_fd();
Ok(())
});
}
self
}
}