running-process 4.5.2

Subprocess and PTY runtime for the running-process project
Documentation
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
//! Stdin-side MITM helper used by the substrate tests in #448 / #449.
//!
//! Wraps a `NativePtyProcess` running one of the `testbin-stdin-*` or
//! `testbin-paste-*` fixtures. Exposes `write_stdin`, drain helpers,
//! and an opinionated `assert_received_exact` that fails fast with
//! a hex diff when the child's echoed bytes drift from expected.

use std::collections::VecDeque;
use std::path::PathBuf;
use std::process::Command;
use std::sync::Mutex;
use std::time::{Duration, Instant};

use running_process::pty::NativePtyProcess;

/// Returns `true` if the host PTY substrate is expected to be
/// byte-exact under `PSEUDOCONSOLE_PASSTHROUGH_MODE` on the current
/// platform.
///
/// Always `true` on POSIX (native PTY is byte-exact by design).
/// On Windows 11 / Server 2022 build >= 22000, native kernel32 ConPTY
/// honors PASSTHROUGH_MODE so `true`. On Windows 10 (build < 22000),
/// passthrough only works when the Microsoft.Windows.Console.ConPTY
/// redistributable's `conpty.dll` is staged either next to the test
/// binary or in this crate's auto-acquire cache (#445/#446).
///
/// Tests call this and `return` early when it's `false`, mirroring
/// `daemon_tui_repaint_test`'s skip pattern. CI logs report
/// "SKIPPED:" so the run remains green on unsupported hosts.
pub fn mitm_byte_exact_supported() -> bool {
    #[cfg(not(windows))]
    {
        true
    }
    #[cfg(windows)]
    {
        // #452 ongoing investigation: the printable
        // `STARTUP_HANDSHAKE_BYTE` below makes the spawn fence survive
        // ConPTY's virtual-screen renderer on Server 2025 — Hypothesis 2
        // from #452 is partially confirmed (~27 of 28 tests pass with
        // it). But a *second* substrate issue surfaced under
        // windows-2025 CI: whichever MITM test runs *second* in a
        // binary (after the first one succeeds) consistently fails its
        // own spawn handshake even with nextest serialization in
        // place — the testbin process spawns but its stdout never
        // surfaces on the master pipe. The root cause is not yet
        // identified and needs proper diagnostics on a real Server
        // 2025 host. Until then keep the Windows-wide skip.
        //
        // Investigators can drive the diagnostic path with
        // `RUNNING_PROCESS_FORCE_MITM_WINDOWS=1`.
        if std::env::var_os("RUNNING_PROCESS_FORCE_MITM_WINDOWS").is_some() {
            return true;
        }
        let _ = windows_build_number();
        false
    }
}

/// Byte the testbin emits at startup as a synchronization fence,
/// and the byte the helper drains until.
///
/// We use a printable ASCII byte (`'R'` = 0x52, picked because it
/// does not appear in any of the test payloads) rather than the
/// previous `\x06` (ACK) marker. On Windows Server 2025 (#452) ConPTY
/// in virtual-screen mode silently dropped the ASCII C0 control
/// byte from the master pipe — a printable byte survives the
/// renderer round-trip.
pub const STARTUP_HANDSHAKE_BYTE: u8 = b'R';

/// Diagnostic message rendered when `EchoerSession::spawn`'s startup
/// handshake fails. Captures everything an investigator needs to
/// triage #452 from a CI log: the Windows build number, the resolved
/// ConPTY backend kind (kernel32 vs sidecar), the count and hex of
/// every byte the master pipe yielded in the handshake window, and
/// the env-var override that lets them flip the skip locally.
fn spawn_handshake_failure_diagnostic(drained: &[u8], handshake: Duration) -> String {
    let backend = backend_description();
    let host = host_description();
    let drained_hex = drained
        .iter()
        .map(|b| format!("{b:02x}"))
        .collect::<Vec<_>>()
        .join(" ");
    let preview_ascii = drained
        .iter()
        .map(|&b| {
            if (0x20..0x7f).contains(&b) {
                b as char
            } else {
                '.'
            }
        })
        .collect::<String>();
    format!(
        "testbin-stdin-echoer never emitted startup ACK in {handshake:?}\n  \
             host:    {host}\n  \
             backend: {backend}\n  \
             drained: {} bytes [{drained_hex}]\n  \
             ascii:   \"{preview_ascii}\"\n  \
             hint:    if drained matches `1b 5b 36 6e`, ConPTY is in non-passthrough mode and \
                      synthesized a DSR cursor query — see #452 for the Windows Server 2025 \
                      investigation. Re-run with RUNNING_PROCESS_FORCE_MITM_WINDOWS=1 to drive \
                      this path manually.",
        drained.len(),
    )
}

#[cfg(windows)]
fn backend_description() -> String {
    format!("{:?}", running_process::pty::current_backend_kind())
}

#[cfg(not(windows))]
fn backend_description() -> String {
    "n/a (POSIX PTY)".to_string()
}

/// Print a uniform skip line. Use at the top of every test that
/// asserts byte-exact MITM behavior.
pub fn skip_unless_mitm_supported() -> bool {
    if mitm_byte_exact_supported() {
        return false;
    }
    eprintln!(
        "[SKIP] byte-exact MITM substrate is currently disabled on Windows pending \
         investigation of Server 2025's ConPTY behavior (#448 / #449 follow-up). \
         Linux/macOS CI covers the substrate guarantee. Current host: {}",
        host_description()
    );
    true
}

#[cfg(windows)]
fn host_description() -> String {
    format!(
        "Windows build {}, sidecar present = {}",
        windows_build_number().unwrap_or(0),
        sidecar_conpty_dll_present()
    )
}

#[cfg(not(windows))]
fn host_description() -> String {
    "POSIX".to_string()
}

#[cfg(windows)]
fn windows_build_number() -> Option<u32> {
    let output = Command::new("cmd").args(["/c", "ver"]).output().ok()?;
    let stdout = String::from_utf8_lossy(&output.stdout);
    let v = stdout.split('.').nth(2)?;
    v.parse::<u32>().ok()
}

#[cfg(windows)]
fn sidecar_conpty_dll_present() -> bool {
    // 1. Next to the test binary (admin pre-stage path).
    if let Ok(exe) = std::env::current_exe() {
        if let Some(parent) = exe.parent() {
            if parent.join("conpty.dll").is_file() {
                return true;
            }
        }
    }
    // 2. Auto-acquire cache from #446 (mirrors the runtime layout).
    let Some(cache_root) = dirs::cache_dir() else {
        return false;
    };
    let arch = if cfg!(target_arch = "x86_64") {
        "x64"
    } else if cfg!(target_arch = "aarch64") {
        "arm64"
    } else if cfg!(target_arch = "x86") {
        "x86"
    } else if cfg!(target_arch = "arm") {
        "arm"
    } else {
        return false;
    };
    let p = cache_root
        .join("running-process")
        .join("conpty")
        .join(env!("CARGO_PKG_VERSION"))
        .join(arch)
        .join("conpty.dll");
    p.is_file()
}

/// Build (or locate, if already built) the named testbin and return
/// its absolute path. Uses `cargo build --message-format=json` to
/// resolve the artifact path in a way that survives target dir
/// overrides.
pub fn testbin_path(name: &str) -> PathBuf {
    let output = Command::new(env!("CARGO"))
        .args([
            "build",
            "-p",
            "testbins",
            "--bin",
            name,
            "--message-format=json",
        ])
        .stderr(std::process::Stdio::inherit())
        .output()
        .unwrap_or_else(|e| panic!("cargo build for testbin {name} failed: {e}"));
    assert!(
        output.status.success(),
        "cargo build -p testbins --bin {name} returned non-zero status"
    );

    let stdout = String::from_utf8_lossy(&output.stdout);
    for line in stdout.lines() {
        if !line.contains("\"compiler-artifact\"") || !line.contains(name) {
            continue;
        }
        let Ok(v) = serde_json::from_str::<serde_json::Value>(line) else {
            continue;
        };
        if v["reason"] != "compiler-artifact" {
            continue;
        }
        let Some(kinds) = v["target"]["kind"].as_array() else {
            continue;
        };
        if !kinds.iter().any(|k| k == "bin") {
            continue;
        }
        if let Some(exe) = v["executable"].as_str() {
            let p = PathBuf::from(exe);
            let deadline = Instant::now() + Duration::from_secs(5);
            while !p.exists() && Instant::now() < deadline {
                std::thread::sleep(Duration::from_millis(50));
            }
            return p;
        }
    }
    panic!("could not locate compiler-artifact for testbin {name}");
}

/// Round-trip session for stdin-side MITM tests. Holds the
/// `NativePtyProcess`, exposes write + drain primitives, and tears
/// down cleanly on `Drop`.
///
/// The `prefetched` buffer captures bytes the spawn-time handshake
/// over-drained past the ACK marker. Subsequent reads consume them
/// before pulling new bytes off the master pipe, so tests that
/// inspect startup-time child writes (e.g. the `--advertise-paste`
/// flow in #449 test 8) still see them.
pub struct EchoerSession {
    process: NativePtyProcess,
    prefetched: Mutex<VecDeque<u8>>,
}

impl EchoerSession {
    /// Spawn `testbin-stdin-echoer` with the given argv tail and
    /// wait for its startup handshake byte
    /// (`STARTUP_HANDSHAKE_BYTE`, currently `'R'`).
    ///
    /// The handshake fences against the POSIX line-discipline race:
    /// without it, the host's first `write_stdin` could race the
    /// testbin's `cfmakeraw` and trigger cooked-mode echo
    /// (`\x1b` → `^[`). Bytes the testbin wrote *after* the
    /// handshake byte (e.g. the bracketed-paste enable sequence
    /// when `--advertise-paste` is set) are retained in the
    /// session's `prefetched` buffer and consumed by subsequent
    /// reads.
    ///
    /// `args` are appended to the testbin invocation (e.g.
    /// `["--advertise-paste"]` or `["--exit-on", "0x04"]`).
    pub fn spawn(args: &[&str]) -> Self {
        let bin = testbin_path("testbin-stdin-echoer");
        let mut argv: Vec<String> = Vec::with_capacity(1 + args.len());
        argv.push(bin.to_string_lossy().into_owned());
        for a in args {
            argv.push((*a).to_string());
        }
        let process = NativePtyProcess::new(argv, None, None, 24, 80, None)
            .expect("construct NativePtyProcess");
        process.start_impl().expect("start NativePtyProcess");
        let session = Self {
            process,
            prefetched: Mutex::new(VecDeque::new()),
        };
        // Generous 40 s budget; Windows Server 2025 CI runners
        // schedule the testbin process behind nextest's parallel
        // pool so the first child stdout byte can take a while to
        // arrive — empirically up to ~25 s under contention on
        // x86_64-windows. We allow margin on top. nextest's
        // 2-minute slow-timeout still bounds the worst case.
        let handshake = Duration::from_secs(40);
        let drained = session.drain_raw_until_byte(STARTUP_HANDSHAKE_BYTE, handshake);
        let ack_pos = drained
            .iter()
            .position(|&b| b == STARTUP_HANDSHAKE_BYTE)
            .unwrap_or_else(|| {
                panic!(
                    "{}",
                    spawn_handshake_failure_diagnostic(&drained, handshake)
                )
            });
        // Retain everything *after* the ACK for the next test-visible
        // read. The ACK itself is the handshake marker and is dropped.
        if ack_pos + 1 < drained.len() {
            session
                .prefetched
                .lock()
                .expect("prefetched mutex poisoned")
                .extend(drained[ack_pos + 1..].iter().copied());
        }
        session
    }

    /// Internal: raw read from the master pipe until either `target`
    /// byte appears or `timeout` elapses. Unlike the public
    /// `drain_until_contains`, this does NOT consult the prefetched
    /// buffer — used at spawn time before prefetched has anything in
    /// it.
    fn drain_raw_until_byte(&self, target: u8, timeout: Duration) -> Vec<u8> {
        let mut out = Vec::new();
        let deadline = Instant::now() + timeout;
        while Instant::now() < deadline {
            let remaining = deadline.saturating_duration_since(Instant::now());
            let slice = remaining.min(Duration::from_millis(100));
            match self.process.read_chunk_impl(Some(slice.as_secs_f64())) {
                Ok(Some(bytes)) => {
                    out.extend_from_slice(&bytes);
                    if out.contains(&target) {
                        return out;
                    }
                }
                Ok(None) => {}
                Err(e) => panic!("read_chunk_impl error: {e:?}"),
            }
        }
        out
    }

    /// Drain bytes from the prefetched buffer (max `max_bytes`).
    /// Returns whatever was queued; never blocks.
    fn drain_prefetched(&self, max_bytes: usize) -> Vec<u8> {
        let mut guard = self.prefetched.lock().expect("prefetched mutex poisoned");
        let take = max_bytes.min(guard.len());
        let mut out = Vec::with_capacity(take);
        for _ in 0..take {
            if let Some(b) = guard.pop_front() {
                out.push(b);
            }
        }
        out
    }

    /// Write `data` to the child's stdin in one syscall. Does not
    /// flag the write as a "submit" event (that's a PTY-input-metrics
    /// concept and not relevant to the byte-exact guarantees we test
    /// here).
    pub fn write_stdin(&self, data: &[u8]) {
        self.process
            .write_impl(data, false)
            .unwrap_or_else(|e| panic!("write_stdin({} bytes) failed: {e:?}", data.len()));
    }

    /// Read bytes from the child's stdout for up to `timeout`,
    /// returning the concatenated bytes seen. Drains the spawn-time
    /// prefetched buffer before pulling fresh bytes off the master
    /// pipe. Returns early once `target_len` bytes have arrived (if
    /// `Some`).
    pub fn drain_for(&self, timeout: Duration, target_len: Option<usize>) -> Vec<u8> {
        let mut out = self.drain_prefetched(target_len.unwrap_or(usize::MAX));
        if let Some(target) = target_len {
            if out.len() >= target {
                return out;
            }
        }
        let deadline = Instant::now() + timeout;
        while Instant::now() < deadline {
            let remaining = deadline.saturating_duration_since(Instant::now());
            let slice = remaining.min(Duration::from_millis(100));
            let chunk = self
                .process
                .read_chunk_impl(Some(slice.as_secs_f64()))
                .expect("read_chunk_impl");
            match chunk {
                Some(bytes) => {
                    out.extend_from_slice(&bytes);
                    if let Some(target) = target_len {
                        if out.len() >= target {
                            return out;
                        }
                    }
                }
                None => {
                    // No data; spin on the timeout.
                    if Instant::now() >= deadline {
                        break;
                    }
                }
            }
        }
        out
    }

    /// Drain stdout for up to `timeout` and assert the child wrote
    /// back `expected`, byte-exact. On mismatch panics with a
    /// hex-rendered diff to make tearing or translation visible.
    pub fn assert_received_exact(&self, expected: &[u8], timeout: Duration) {
        let got = self.drain_for(timeout, Some(expected.len()));
        if got.as_slice() != expected {
            panic!(
                "byte-exact mismatch:\n  expected ({} bytes): {}\n  got      ({} bytes): {}",
                expected.len(),
                hex(expected),
                got.len(),
                hex(&got),
            );
        }
    }

    /// Drain stdout until either `needle` is contained or `timeout`
    /// elapses. Drains the prefetched buffer first, then reads from
    /// the master pipe. Returns the full drained buffer for further
    /// inspection.
    pub fn drain_until_contains(&self, needle: &[u8], timeout: Duration) -> Vec<u8> {
        let mut out = self.drain_prefetched(usize::MAX);
        if !out.is_empty() && out.windows(needle.len()).any(|w| w == needle) {
            return out;
        }
        let deadline = Instant::now() + timeout;
        while Instant::now() < deadline {
            let remaining = deadline.saturating_duration_since(Instant::now());
            let slice = remaining.min(Duration::from_millis(100));
            match self.process.read_chunk_impl(Some(slice.as_secs_f64())) {
                Ok(Some(bytes)) => {
                    out.extend_from_slice(&bytes);
                    if out.windows(needle.len()).any(|w| w == needle) {
                        return out;
                    }
                }
                Ok(None) => {}
                Err(e) => panic!("read_chunk_impl error: {e:?}"),
            }
        }
        out
    }

    /// Drop the child's stdin pipe, signalling EOF. Used by tests
    /// that need a deterministic teardown without sending a control
    /// byte.
    pub fn close_stdin(&self) {
        // `close_impl` tears down the whole process; for an EOF-only
        // signal we don't have a dedicated API. Tests that need the
        // distinction rely on `--exit-on <byte>` instead.
        let _ = self.process.close_impl();
    }

    pub fn process(&self) -> &NativePtyProcess {
        &self.process
    }
}

impl Drop for EchoerSession {
    fn drop(&mut self) {
        // Best-effort teardown. Each test owns its own session, so a
        // failure here means CI logs get extra noise but never a
        // false negative.
        let _ = self.process.kill_impl();
        let _ = self.process.wait_impl(Some(1.5));
    }
}

fn hex(bytes: &[u8]) -> String {
    let mut s = String::with_capacity(bytes.len() * 3);
    for (i, b) in bytes.iter().enumerate() {
        if i > 0 && i % 16 == 0 {
            s.push('\n');
            s.push_str("                                ");
        }
        s.push_str(&format!("{b:02x} "));
    }
    s
}