forked from rust-cli/rexpect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess.rs
266 lines (239 loc) · 9.3 KB
/
process.rs
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
//! Start a process via pty
use crate::error::Error;
use nix;
use nix::fcntl::{open, OFlag};
use nix::libc::{STDERR_FILENO, STDIN_FILENO, STDOUT_FILENO};
use nix::pty::{grantpt, posix_openpt, unlockpt, PtyMaster};
pub use nix::sys::{signal, wait};
use nix::sys::{stat, termios};
use nix::unistd::{close, dup, dup2, fork, setsid, ForkResult, Pid};
use std;
use std::fs::File;
use std::io;
use std::os::unix::io::{AsRawFd, FromRawFd};
use std::os::unix::process::CommandExt;
use std::process::Command;
use std::{thread, time};
/// Start a process in a forked tty so you can interact with it the same as you would
/// within a terminal
///
/// The process and pty session are killed upon dropping `PtyProcess`
///
/// # Example
///
/// Typically you want to do something like this (for a more complete example see
/// unit test `test_cat` within this module):
///
/// ```
/// # #![allow(unused_mut)]
/// # #![allow(unused_variables)]
///
/// use rexpect::process::PtyProcess;
/// use std::process::Command;
/// use std::fs::File;
/// use std::io::{BufReader, LineWriter};
/// use std::os::unix::io::{FromRawFd, AsRawFd};
/// use nix::unistd::dup;
///
/// # fn main() {
///
/// let mut process = PtyProcess::new(Command::new("cat")).expect("could not execute cat");
/// let fd = dup(process.pty.as_raw_fd()).unwrap();
/// let f = unsafe { File::from_raw_fd(fd) };
/// let mut writer = LineWriter::new(&f);
/// let mut reader = BufReader::new(&f);
/// process.exit().expect("could not terminate process");
///
/// // writer.write() sends strings to `cat`
/// // writer.reader() reads back what `cat` wrote
/// // send Ctrl-C with writer.write(&[3]) and writer.flush()
///
/// # }
/// ```
pub struct PtyProcess {
pub pty: PtyMaster,
pub child_pid: Pid,
kill_timeout: Option<time::Duration>,
}
#[cfg(target_os = "linux")]
use nix::pty::ptsname_r;
#[cfg(target_os = "macos")]
/// ptsname_r is a linux extension but ptsname isn't thread-safe
/// instead of using a static mutex this calls ioctl with TIOCPTYGNAME directly
/// based on https://blog.tarq.io/ptsname-on-osx-with-rust/
fn ptsname_r(fd: &PtyMaster) -> nix::Result<String> {
use nix::libc::{ioctl, TIOCPTYGNAME};
use std::ffi::CStr;
// the buffer size on OSX is 128, defined by sys/ttycom.h
let mut buf: [i8; 128] = [0; 128];
unsafe {
match ioctl(fd.as_raw_fd(), TIOCPTYGNAME as u64, &mut buf) {
0 => {
let res = CStr::from_ptr(buf.as_ptr()).to_string_lossy().into_owned();
Ok(res)
}
_ => Err(nix::Error::last()),
}
}
}
impl PtyProcess {
/// Start a process in a forked pty
pub fn new(mut command: Command) -> Result<Self, Error> {
// Open a new PTY master
let master_fd = posix_openpt(OFlag::O_RDWR)?;
// Allow a slave to be generated for it
grantpt(&master_fd)?;
unlockpt(&master_fd)?;
// on Linux this is the libc function, on OSX this is our implementation of ptsname_r
let slave_name = ptsname_r(&master_fd)?;
match unsafe { fork()? } {
ForkResult::Child => {
// Avoid leaking master fd
close(master_fd.as_raw_fd())?;
setsid()?; // create new session with child as session leader
let slave_fd = open(
std::path::Path::new(&slave_name),
OFlag::O_RDWR,
stat::Mode::empty(),
)?;
// assign stdin, stdout, stderr to the tty, just like a terminal does
dup2(slave_fd, STDIN_FILENO)?;
dup2(slave_fd, STDOUT_FILENO)?;
dup2(slave_fd, STDERR_FILENO)?;
// Avoid leaking slave fd
if slave_fd > STDERR_FILENO {
close(slave_fd)?;
}
// set echo off
let stdin = io::stdin();
let mut flags = termios::tcgetattr(&stdin)?;
flags.local_flags &= !termios::LocalFlags::ECHO;
termios::tcsetattr(&stdin, termios::SetArg::TCSANOW, &flags)?;
command.exec();
Err(Error::Nix(nix::Error::last()))
}
ForkResult::Parent { child: child_pid } => Ok(PtyProcess {
pty: master_fd,
child_pid,
kill_timeout: None,
}),
}
}
/// Get handle to pty fork for reading/writing
pub fn get_file_handle(&self) -> Result<File, Error> {
// needed because otherwise fd is closed both by dropping process and reader/writer
let fd = dup(self.pty.as_raw_fd())?;
unsafe { Ok(File::from_raw_fd(fd)) }
}
/// At the drop of `PtyProcess` the running process is killed. This is blocking forever if
/// the process does not react to a normal kill. If `kill_timeout` is set the process is
/// `kill -9`ed after duration
pub fn set_kill_timeout(&mut self, timeout_ms: Option<u64>) {
self.kill_timeout = timeout_ms.map(time::Duration::from_millis);
}
/// Get status of child process, non-blocking.
///
/// This method runs waitpid on the process.
/// This means: If you ran `exit()` before or `status()` this method will
/// return `None`
///
/// # Example
/// ```rust,no_run
///
/// use rexpect::process::{self, wait::WaitStatus};
/// use std::process::Command;
///
/// # fn main() {
/// let cmd = Command::new("/path/to/myprog");
/// let process = process::PtyProcess::new(cmd).expect("could not execute myprog");
/// while let Some(WaitStatus::StillAlive) = process.status() {
/// // do something
/// }
/// # }
/// ```
///
pub fn status(&self) -> Option<wait::WaitStatus> {
if let Ok(status) = wait::waitpid(self.child_pid, Some(wait::WaitPidFlag::WNOHANG)) {
Some(status)
} else {
None
}
}
/// Wait until process has exited. This is a blocking call.
/// If the process doesn't terminate this will block forever.
pub fn wait(&self) -> Result<wait::WaitStatus, Error> {
wait::waitpid(self.child_pid, None).map_err(Error::from)
}
/// Regularly exit the process, this method is blocking until the process is dead
pub fn exit(&mut self) -> Result<wait::WaitStatus, Error> {
self.kill(signal::SIGTERM).map_err(Error::from)
}
/// Non-blocking variant of `kill()` (doesn't wait for process to be killed)
pub fn signal(&mut self, sig: signal::Signal) -> Result<(), Error> {
signal::kill(self.child_pid, sig).map_err(Error::from)
}
/// Kill the process with a specific signal. This method blocks, until the process is dead
///
/// repeatedly sends SIGTERM to the process until it died,
/// the pty session is closed upon dropping `PtyMaster`,
/// so we don't need to explicitly do that here.
///
/// if `kill_timeout` is set and a repeated sending of signal does not result in the process
/// being killed, then `kill -9` is sent after the `kill_timeout` duration has elapsed.
pub fn kill(&mut self, sig: signal::Signal) -> Result<wait::WaitStatus, Error> {
let start = time::Instant::now();
loop {
match signal::kill(self.child_pid, sig) {
Ok(_) => {}
// process was already killed before -> ignore
Err(nix::errno::Errno::ESRCH) => {
return Ok(wait::WaitStatus::Exited(Pid::from_raw(0), 0))
}
Err(e) => return Err(Error::from(e)),
}
match self.status() {
Some(status) if status != wait::WaitStatus::StillAlive => return Ok(status),
Some(_) | None => thread::sleep(time::Duration::from_millis(100)),
}
// kill -9 if timeout is reached
if let Some(timeout) = self.kill_timeout {
if start.elapsed() > timeout {
signal::kill(self.child_pid, signal::Signal::SIGKILL).map_err(Error::from)?;
}
}
}
}
}
impl Drop for PtyProcess {
fn drop(&mut self) {
if let Some(wait::WaitStatus::StillAlive) = self.status() {
self.exit().expect("cannot exit");
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use nix::sys::{signal, wait};
use std::io::{BufRead, BufReader, LineWriter, Write};
#[test]
/// Open cat, write string, read back string twice, send Ctrl^C and check that cat exited
fn test_cat() -> io::Result<()> {
let process = PtyProcess::new(Command::new("cat")).expect("could not execute cat");
let f = process.get_file_handle().unwrap();
let mut writer = LineWriter::new(&f);
let mut reader = BufReader::new(&f);
let _ = writer.write(b"hello cat\n")?;
let mut buf = String::new();
reader.read_line(&mut buf)?;
assert_eq!(buf, "hello cat\r\n");
// this sleep solves an edge case of some cases when cat is somehow not "ready"
// to take the ^C (occasional test hangs)
thread::sleep(time::Duration::from_millis(100));
writer.write_all(&[3])?; // send ^C
writer.flush()?;
let should = wait::WaitStatus::Signaled(process.child_pid, signal::Signal::SIGINT, false);
assert_eq!(should, wait::waitpid(process.child_pid, None).unwrap());
Ok(())
}
}