std/process.rs
1//! A module for working with processes.
2//!
3//! This module is mostly concerned with spawning and interacting with child
4//! processes, but it also provides [`abort`] and [`exit`] for terminating the
5//! current process.
6//!
7//! # Spawning a process
8//!
9//! The [`Command`] struct is used to configure and spawn processes:
10//!
11//! ```no_run
12//! use std::process::Command;
13//!
14//! let output = Command::new("echo")
15//! .arg("Hello world")
16//! .output()
17//! .expect("Failed to execute command");
18//!
19//! assert_eq!(b"Hello world\n", output.stdout.as_slice());
20//! ```
21//!
22//! Several methods on [`Command`], such as [`spawn`] or [`output`], can be used
23//! to spawn a process. In particular, [`output`] spawns the child process and
24//! waits until the process terminates, while [`spawn`] will return a [`Child`]
25//! that represents the spawned child process.
26//!
27//! # Handling I/O
28//!
29//! The [`stdout`], [`stdin`], and [`stderr`] of a child process can be
30//! configured by passing an [`Stdio`] to the corresponding method on
31//! [`Command`]. Once spawned, they can be accessed from the [`Child`]. For
32//! example, piping output from one command into another command can be done
33//! like so:
34//!
35//! ```no_run
36//! use std::process::{Command, Stdio};
37//!
38//! // stdout must be configured with `Stdio::piped` in order to use
39//! // `echo_child.stdout`
40//! let echo_child = Command::new("echo")
41//! .arg("Oh no, a tpyo!")
42//! .stdout(Stdio::piped())
43//! .spawn()
44//! .expect("Failed to start echo process");
45//!
46//! // Note that `echo_child` is moved here, but we won't be needing
47//! // `echo_child` anymore
48//! let echo_out = echo_child.stdout.expect("Failed to open echo stdout");
49//!
50//! let mut sed_child = Command::new("sed")
51//! .arg("s/tpyo/typo/")
52//! .stdin(Stdio::from(echo_out))
53//! .stdout(Stdio::piped())
54//! .spawn()
55//! .expect("Failed to start sed process");
56//!
57//! let output = sed_child.wait_with_output().expect("Failed to wait on sed");
58//! assert_eq!(b"Oh no, a typo!\n", output.stdout.as_slice());
59//! ```
60//!
61//! Note that [`ChildStderr`] and [`ChildStdout`] implement [`Read`] and
62//! [`ChildStdin`] implements [`Write`]:
63//!
64//! ```no_run
65//! use std::process::{Command, Stdio};
66//! use std::io::Write;
67//!
68//! let mut child = Command::new("/bin/cat")
69//! .stdin(Stdio::piped())
70//! .stdout(Stdio::piped())
71//! .spawn()
72//! .expect("failed to execute child");
73//!
74//! // If the child process fills its stdout buffer, it may end up
75//! // waiting until the parent reads the stdout, and not be able to
76//! // read stdin in the meantime, causing a deadlock.
77//! // Writing from another thread ensures that stdout is being read
78//! // at the same time, avoiding the problem.
79//! let mut stdin = child.stdin.take().expect("failed to get stdin");
80//! std::thread::spawn(move || {
81//! stdin.write_all(b"test").expect("failed to write to stdin");
82//! });
83//!
84//! let output = child
85//! .wait_with_output()
86//! .expect("failed to wait on child");
87//!
88//! assert_eq!(b"test", output.stdout.as_slice());
89//! ```
90//!
91//! # Windows argument splitting
92//!
93//! On Unix systems arguments are passed to a new process as an array of strings,
94//! but on Windows arguments are passed as a single commandline string and it is
95//! up to the child process to parse it into an array. Therefore the parent and
96//! child processes must agree on how the commandline string is encoded.
97//!
98//! Most programs use the standard C run-time `argv`, which in practice results
99//! in consistent argument handling. However, some programs have their own way of
100//! parsing the commandline string. In these cases using [`arg`] or [`args`] may
101//! result in the child process seeing a different array of arguments than the
102//! parent process intended.
103//!
104//! Two ways of mitigating this are:
105//!
106//! * Validate untrusted input so that only a safe subset is allowed.
107//! * Use [`raw_arg`] to build a custom commandline. This bypasses the escaping
108//! rules used by [`arg`] so should be used with due caution.
109//!
110//! `cmd.exe` and `.bat` files use non-standard argument parsing and are especially
111//! vulnerable to malicious input as they may be used to run arbitrary shell
112//! commands. Untrusted arguments should be restricted as much as possible.
113//! For examples on handling this see [`raw_arg`].
114//!
115//! ### Batch file special handling
116//!
117//! On Windows, `Command` uses the Windows API function [`CreateProcessW`] to
118//! spawn new processes. An undocumented feature of this function is that
119//! when given a `.bat` file as the application to run, it will automatically
120//! convert that into running `cmd.exe /c` with the batch file as the next argument.
121//!
122//! For historical reasons Rust currently preserves this behavior when using
123//! [`Command::new`], and escapes the arguments according to `cmd.exe` rules.
124//! Due to the complexity of `cmd.exe` argument handling, it might not be
125//! possible to safely escape some special characters, and using them will result
126//! in an error being returned at process spawn. The set of unescapeable
127//! special characters might change between releases.
128//!
129//! Also note that running batch scripts in this way may be removed in the
130//! future and so should not be relied upon.
131//!
132//! [`spawn`]: Command::spawn
133//! [`output`]: Command::output
134//!
135//! [`stdout`]: Command::stdout
136//! [`stdin`]: Command::stdin
137//! [`stderr`]: Command::stderr
138//!
139//! [`Write`]: io::Write
140//! [`Read`]: io::Read
141//!
142//! [`arg`]: Command::arg
143//! [`args`]: Command::args
144//! [`raw_arg`]: crate::os::windows::process::CommandExt::raw_arg
145//!
146//! [`CreateProcessW`]: https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-createprocessw
147
148#![stable(feature = "process", since = "1.0.0")]
149#![deny(unsafe_op_in_unsafe_fn)]
150
151#[cfg(all(
152 test,
153 not(any(
154 target_os = "emscripten",
155 target_os = "wasi",
156 target_env = "sgx",
157 target_os = "xous",
158 target_os = "trusty",
159 target_os = "hermit",
160 ))
161))]
162mod tests;
163
164use crate::convert::Infallible;
165use crate::ffi::OsStr;
166use crate::io::prelude::*;
167use crate::io::{self, BorrowedCursor, IoSlice, IoSliceMut};
168use crate::num::NonZero;
169use crate::path::Path;
170use crate::sys::{AsInner, AsInnerMut, FromInner, IntoInner, process as imp};
171use crate::{fmt, format_args_nl, fs, str};
172
173/// Representation of a running or exited child process.
174///
175/// This structure is used to represent and manage child processes. A child
176/// process is created via the [`Command`] struct, which configures the
177/// spawning process and can itself be constructed using a builder-style
178/// interface.
179///
180/// There is no implementation of [`Drop`] for child processes,
181/// so if you do not ensure the `Child` has exited then it will continue to
182/// run, even after the `Child` handle to the child process has gone out of
183/// scope.
184///
185/// Calling [`wait`] (or other functions that wrap around it) will make
186/// the parent process wait until the child has actually exited before
187/// continuing.
188///
189/// # Warning
190///
191/// On some systems, calling [`wait`] or similar is necessary for the OS to
192/// release resources. A process that terminated but has not been waited on is
193/// still around as a "zombie". Leaving too many zombies around may exhaust
194/// global resources (for example process IDs).
195///
196/// The standard library does *not* automatically wait on child processes (not
197/// even if the `Child` is dropped), it is up to the application developer to do
198/// so. As a consequence, dropping `Child` handles without waiting on them first
199/// is not recommended in long-running applications.
200///
201/// # Examples
202///
203/// ```should_panic
204/// use std::process::Command;
205///
206/// let mut child = Command::new("/bin/cat")
207/// .arg("file.txt")
208/// .spawn()
209/// .expect("failed to execute child");
210///
211/// let ecode = child.wait().expect("failed to wait on child");
212///
213/// assert!(ecode.success());
214/// ```
215///
216/// [`wait`]: Child::wait
217#[stable(feature = "process", since = "1.0.0")]
218#[cfg_attr(not(test), rustc_diagnostic_item = "Child")]
219pub struct Child {
220 pub(crate) handle: imp::Process,
221
222 /// The handle for writing to the child's standard input (stdin), if it
223 /// has been captured. You might find it helpful to do
224 ///
225 /// ```ignore (incomplete)
226 /// let stdin = child.stdin.take().expect("handle present");
227 /// ```
228 ///
229 /// to avoid partially moving the `child` and thus blocking yourself from calling
230 /// functions on `child` while using `stdin`.
231 #[stable(feature = "process", since = "1.0.0")]
232 pub stdin: Option<ChildStdin>,
233
234 /// The handle for reading from the child's standard output (stdout), if it
235 /// has been captured. You might find it helpful to do
236 ///
237 /// ```ignore (incomplete)
238 /// let stdout = child.stdout.take().expect("handle present");
239 /// ```
240 ///
241 /// to avoid partially moving the `child` and thus blocking yourself from calling
242 /// functions on `child` while using `stdout`.
243 #[stable(feature = "process", since = "1.0.0")]
244 pub stdout: Option<ChildStdout>,
245
246 /// The handle for reading from the child's standard error (stderr), if it
247 /// has been captured. You might find it helpful to do
248 ///
249 /// ```ignore (incomplete)
250 /// let stderr = child.stderr.take().expect("handle present");
251 /// ```
252 ///
253 /// to avoid partially moving the `child` and thus blocking yourself from calling
254 /// functions on `child` while using `stderr`.
255 #[stable(feature = "process", since = "1.0.0")]
256 pub stderr: Option<ChildStderr>,
257}
258
259impl AsInner<imp::Process> for Child {
260 #[inline]
261 fn as_inner(&self) -> &imp::Process {
262 &self.handle
263 }
264}
265
266impl FromInner<(imp::Process, StdioPipes)> for Child {
267 fn from_inner((handle, io): (imp::Process, StdioPipes)) -> Child {
268 Child {
269 handle,
270 stdin: io.stdin.map(ChildStdin::from_inner),
271 stdout: io.stdout.map(ChildStdout::from_inner),
272 stderr: io.stderr.map(ChildStderr::from_inner),
273 }
274 }
275}
276
277impl IntoInner<imp::Process> for Child {
278 fn into_inner(self) -> imp::Process {
279 self.handle
280 }
281}
282
283#[stable(feature = "std_debug", since = "1.16.0")]
284impl fmt::Debug for Child {
285 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
286 f.debug_struct("Child")
287 .field("stdin", &self.stdin)
288 .field("stdout", &self.stdout)
289 .field("stderr", &self.stderr)
290 .finish_non_exhaustive()
291 }
292}
293
294/// The pipes connected to a spawned process.
295///
296/// Used to pass pipe handles between this module and [`imp`].
297pub(crate) struct StdioPipes {
298 pub stdin: Option<imp::ChildPipe>,
299 pub stdout: Option<imp::ChildPipe>,
300 pub stderr: Option<imp::ChildPipe>,
301}
302
303/// A handle to a child process's standard input (stdin).
304///
305/// This struct is used in the [`stdin`] field on [`Child`].
306///
307/// When an instance of `ChildStdin` is [dropped], the `ChildStdin`'s underlying
308/// file handle will be closed. If the child process was blocked on input prior
309/// to being dropped, it will become unblocked after dropping.
310///
311/// [`stdin`]: Child::stdin
312/// [dropped]: Drop
313#[stable(feature = "process", since = "1.0.0")]
314pub struct ChildStdin {
315 inner: imp::ChildPipe,
316}
317
318// In addition to the `impl`s here, `ChildStdin` also has `impl`s for
319// `AsFd`/`From<OwnedFd>`/`Into<OwnedFd>` and
320// `AsRawFd`/`IntoRawFd`/`FromRawFd`, on Unix and WASI, and
321// `AsHandle`/`From<OwnedHandle>`/`Into<OwnedHandle>` and
322// `AsRawHandle`/`IntoRawHandle`/`FromRawHandle` on Windows.
323
324#[stable(feature = "process", since = "1.0.0")]
325impl Write for ChildStdin {
326 fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
327 (&*self).write(buf)
328 }
329
330 fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> {
331 (&*self).write_vectored(bufs)
332 }
333
334 fn is_write_vectored(&self) -> bool {
335 io::Write::is_write_vectored(&&*self)
336 }
337
338 #[inline]
339 fn flush(&mut self) -> io::Result<()> {
340 (&*self).flush()
341 }
342}
343
344#[stable(feature = "write_mt", since = "1.48.0")]
345impl Write for &ChildStdin {
346 fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
347 self.inner.write(buf)
348 }
349
350 fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> {
351 self.inner.write_vectored(bufs)
352 }
353
354 fn is_write_vectored(&self) -> bool {
355 self.inner.is_write_vectored()
356 }
357
358 #[inline]
359 fn flush(&mut self) -> io::Result<()> {
360 Ok(())
361 }
362}
363
364impl AsInner<imp::ChildPipe> for ChildStdin {
365 #[inline]
366 fn as_inner(&self) -> &imp::ChildPipe {
367 &self.inner
368 }
369}
370
371impl IntoInner<imp::ChildPipe> for ChildStdin {
372 fn into_inner(self) -> imp::ChildPipe {
373 self.inner
374 }
375}
376
377impl FromInner<imp::ChildPipe> for ChildStdin {
378 fn from_inner(pipe: imp::ChildPipe) -> ChildStdin {
379 ChildStdin { inner: pipe }
380 }
381}
382
383#[stable(feature = "std_debug", since = "1.16.0")]
384impl fmt::Debug for ChildStdin {
385 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
386 f.debug_struct("ChildStdin").finish_non_exhaustive()
387 }
388}
389
390/// A handle to a child process's standard output (stdout).
391///
392/// This struct is used in the [`stdout`] field on [`Child`].
393///
394/// When an instance of `ChildStdout` is [dropped], the `ChildStdout`'s
395/// underlying file handle will be closed.
396///
397/// [`stdout`]: Child::stdout
398/// [dropped]: Drop
399#[stable(feature = "process", since = "1.0.0")]
400pub struct ChildStdout {
401 inner: imp::ChildPipe,
402}
403
404// In addition to the `impl`s here, `ChildStdout` also has `impl`s for
405// `AsFd`/`From<OwnedFd>`/`Into<OwnedFd>` and
406// `AsRawFd`/`IntoRawFd`/`FromRawFd`, on Unix and WASI, and
407// `AsHandle`/`From<OwnedHandle>`/`Into<OwnedHandle>` and
408// `AsRawHandle`/`IntoRawHandle`/`FromRawHandle` on Windows.
409
410#[stable(feature = "process", since = "1.0.0")]
411impl Read for ChildStdout {
412 fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
413 self.inner.read(buf)
414 }
415
416 fn read_buf(&mut self, buf: BorrowedCursor<'_, u8>) -> io::Result<()> {
417 self.inner.read_buf(buf)
418 }
419
420 fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> io::Result<usize> {
421 self.inner.read_vectored(bufs)
422 }
423
424 #[inline]
425 fn is_read_vectored(&self) -> bool {
426 self.inner.is_read_vectored()
427 }
428
429 fn read_to_end(&mut self, buf: &mut Vec<u8>) -> io::Result<usize> {
430 self.inner.read_to_end(buf)
431 }
432}
433
434impl AsInner<imp::ChildPipe> for ChildStdout {
435 #[inline]
436 fn as_inner(&self) -> &imp::ChildPipe {
437 &self.inner
438 }
439}
440
441impl IntoInner<imp::ChildPipe> for ChildStdout {
442 fn into_inner(self) -> imp::ChildPipe {
443 self.inner
444 }
445}
446
447impl FromInner<imp::ChildPipe> for ChildStdout {
448 fn from_inner(pipe: imp::ChildPipe) -> ChildStdout {
449 ChildStdout { inner: pipe }
450 }
451}
452
453#[stable(feature = "std_debug", since = "1.16.0")]
454impl fmt::Debug for ChildStdout {
455 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
456 f.debug_struct("ChildStdout").finish_non_exhaustive()
457 }
458}
459
460/// A handle to a child process's stderr.
461///
462/// This struct is used in the [`stderr`] field on [`Child`].
463///
464/// When an instance of `ChildStderr` is [dropped], the `ChildStderr`'s
465/// underlying file handle will be closed.
466///
467/// [`stderr`]: Child::stderr
468/// [dropped]: Drop
469#[stable(feature = "process", since = "1.0.0")]
470pub struct ChildStderr {
471 inner: imp::ChildPipe,
472}
473
474// In addition to the `impl`s here, `ChildStderr` also has `impl`s for
475// `AsFd`/`From<OwnedFd>`/`Into<OwnedFd>` and
476// `AsRawFd`/`IntoRawFd`/`FromRawFd`, on Unix and WASI, and
477// `AsHandle`/`From<OwnedHandle>`/`Into<OwnedHandle>` and
478// `AsRawHandle`/`IntoRawHandle`/`FromRawHandle` on Windows.
479
480#[stable(feature = "process", since = "1.0.0")]
481impl Read for ChildStderr {
482 fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
483 self.inner.read(buf)
484 }
485
486 fn read_buf(&mut self, buf: BorrowedCursor<'_, u8>) -> io::Result<()> {
487 self.inner.read_buf(buf)
488 }
489
490 fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> io::Result<usize> {
491 self.inner.read_vectored(bufs)
492 }
493
494 #[inline]
495 fn is_read_vectored(&self) -> bool {
496 self.inner.is_read_vectored()
497 }
498
499 fn read_to_end(&mut self, buf: &mut Vec<u8>) -> io::Result<usize> {
500 self.inner.read_to_end(buf)
501 }
502}
503
504impl AsInner<imp::ChildPipe> for ChildStderr {
505 #[inline]
506 fn as_inner(&self) -> &imp::ChildPipe {
507 &self.inner
508 }
509}
510
511impl IntoInner<imp::ChildPipe> for ChildStderr {
512 fn into_inner(self) -> imp::ChildPipe {
513 self.inner
514 }
515}
516
517impl FromInner<imp::ChildPipe> for ChildStderr {
518 fn from_inner(pipe: imp::ChildPipe) -> ChildStderr {
519 ChildStderr { inner: pipe }
520 }
521}
522
523#[stable(feature = "std_debug", since = "1.16.0")]
524impl fmt::Debug for ChildStderr {
525 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
526 f.debug_struct("ChildStderr").finish_non_exhaustive()
527 }
528}
529
530/// A process builder, providing fine-grained control
531/// over how a new process should be spawned.
532///
533/// A default configuration can be
534/// generated using `Command::new(program)`, where `program` gives a path to the
535/// program to be executed. Additional builder methods allow the configuration
536/// to be changed (for example, by adding arguments) prior to spawning:
537///
538/// ```
539/// # if cfg!(not(all(target_vendor = "apple", not(target_os = "macos")))) {
540/// use std::process::Command;
541///
542/// let output = if cfg!(target_os = "windows") {
543/// Command::new("cmd")
544/// .args(["/C", "echo hello"])
545/// .output()
546/// .expect("failed to execute process")
547/// } else {
548/// Command::new("sh")
549/// .arg("-c")
550/// .arg("echo hello")
551/// .output()
552/// .expect("failed to execute process")
553/// };
554///
555/// let hello = output.stdout;
556/// # }
557/// ```
558///
559/// `Command` can be reused to spawn multiple processes. The builder methods
560/// change the command without needing to immediately spawn the process.
561///
562/// ```no_run
563/// use std::process::Command;
564///
565/// let mut echo_hello = Command::new("sh");
566/// echo_hello.arg("-c").arg("echo hello");
567/// let hello_1 = echo_hello.output().expect("failed to execute process");
568/// let hello_2 = echo_hello.output().expect("failed to execute process");
569/// ```
570///
571/// Similarly, you can call builder methods after spawning a process and then
572/// spawn a new process with the modified settings.
573///
574/// ```no_run
575/// use std::process::Command;
576///
577/// let mut list_dir = Command::new("ls");
578///
579/// // Execute `ls` in the current directory of the program.
580/// list_dir.status().expect("process failed to execute");
581///
582/// println!();
583///
584/// // Change `ls` to execute in the root directory.
585/// list_dir.current_dir("/");
586///
587/// // And then execute `ls` again but in the root directory.
588/// list_dir.status().expect("process failed to execute");
589/// ```
590#[stable(feature = "process", since = "1.0.0")]
591#[cfg_attr(not(test), rustc_diagnostic_item = "Command")]
592pub struct Command {
593 inner: imp::Command,
594}
595
596impl Command {
597 /// Constructs a new `Command` for launching the program at
598 /// path `program`, with the following default configuration:
599 ///
600 /// * No arguments to the program
601 /// * Inherit the current process's environment
602 /// * Inherit the current process's working directory
603 /// * Inherit stdin/stdout/stderr for [`spawn`] or [`status`], but create pipes for [`output`]
604 ///
605 /// [`spawn`]: Self::spawn
606 /// [`status`]: Self::status
607 /// [`output`]: Self::output
608 ///
609 /// Builder methods are provided to change these defaults and
610 /// otherwise configure the process.
611 ///
612 /// If `program` is not an absolute path, the `PATH` environment variable
613 /// will be searched in an OS-defined way.
614 ///
615 /// # Platform-specific behavior
616 ///
617 /// The details below describe the current behavior, but these details
618 /// may change in future versions of Rust.
619 ///
620 /// On Unix, the `PATH` searched comes from the child's environment:
621 ///
622 /// - If the environment is unmodified, the child inherits the parent's
623 /// `PATH` and that is what is searched.
624 /// - If `PATH` is explicitly set via [`env`], that new value is searched.
625 /// - If [`env_clear`] or [`env_remove`] removes `PATH` without a
626 /// replacement, `execvp` falls back to an OS-defined default (typically
627 /// `/bin:/usr/bin`), **not** the parent's `PATH`. This may fail to find
628 /// programs that rely on the parent's `PATH`.
629 ///
630 /// To avoid surprises, use an absolute path or explicitly set `PATH` on
631 /// the `Command` when modifying the child's environment.
632 ///
633 /// On Windows, Rust resolves the executable path before spawning, rather
634 /// than passing the name to `CreateProcessW` for resolution. When
635 /// `program` is not an absolute path, the following locations are searched
636 /// in order:
637 ///
638 /// 1. The child's `PATH`, if explicitly set via [`env`].
639 /// 2. The directory of the current executable.
640 /// 3. The system directory (`GetSystemDirectoryW`).
641 /// 4. The Windows directory (`GetWindowsDirectoryW`).
642 /// 5. The parent process's `PATH`.
643 ///
644 /// Note: when `PATH` is cleared via [`env_clear`] or [`env_remove`] on
645 /// Windows, step 1 is skipped but the parent process's `PATH` is still
646 /// searched at step 5, unlike on Unix.
647 ///
648 /// For executable files, the `.exe` extension may be omitted. Files with
649 /// other extensions must include the extension, otherwise they will not be
650 /// found. Note that this behavior has some known limitations
651 /// (see issue #37519).
652 ///
653 /// [`env`]: Self::env
654 /// [`env_remove`]: Self::env_remove
655 /// [`env_clear`]: Self::env_clear
656 ///
657 /// # Examples
658 ///
659 /// ```no_run
660 /// use std::process::Command;
661 ///
662 /// Command::new("sh")
663 /// .spawn()
664 /// .expect("sh command failed to start");
665 /// ```
666 ///
667 /// # Caveats
668 ///
669 /// [`Command::new`] is only intended to accept the path of the program. If you pass a program
670 /// path along with arguments like `Command::new("ls -l").spawn()`, it will try to search for
671 /// `ls -l` literally. The arguments need to be passed separately, such as via [`arg`] or
672 /// [`args`].
673 ///
674 /// ```no_run
675 /// use std::process::Command;
676 ///
677 /// Command::new("ls")
678 /// .arg("-l") // arg passed separately
679 /// .spawn()
680 /// .expect("ls command failed to start");
681 /// ```
682 ///
683 /// [`arg`]: Self::arg
684 /// [`args`]: Self::args
685 #[stable(feature = "process", since = "1.0.0")]
686 pub fn new<S: AsRef<OsStr>>(program: S) -> Command {
687 Command { inner: imp::Command::new(program.as_ref()) }
688 }
689
690 /// Adds an argument to pass to the program.
691 ///
692 /// Only one argument can be passed per use. So instead of:
693 ///
694 /// ```no_run
695 /// # std::process::Command::new("sh")
696 /// .arg("-C /path/to/repo")
697 /// # ;
698 /// ```
699 ///
700 /// usage would be:
701 ///
702 /// ```no_run
703 /// # std::process::Command::new("sh")
704 /// .arg("-C")
705 /// .arg("/path/to/repo")
706 /// # ;
707 /// ```
708 ///
709 /// To pass multiple arguments see [`args`].
710 ///
711 /// [`args`]: Command::args
712 ///
713 /// Note that the argument is not passed through a shell, but given
714 /// literally to the program. This means that shell syntax like quotes,
715 /// escaped characters, word splitting, glob patterns, variable substitution,
716 /// etc. have no effect.
717 ///
718 /// <div class="warning">
719 ///
720 /// On Windows, use caution with untrusted inputs. Most applications use the
721 /// standard convention for decoding arguments passed to them. These are safe to
722 /// use with `arg`. However, some applications such as `cmd.exe` and `.bat` files
723 /// use a non-standard way of decoding arguments. They are therefore vulnerable
724 /// to malicious input.
725 ///
726 /// In the case of `cmd.exe` this is especially important because a malicious
727 /// argument can potentially run arbitrary shell commands.
728 ///
729 /// See [Windows argument splitting][windows-args] for more details
730 /// or [`raw_arg`] for manually implementing non-standard argument encoding.
731 ///
732 /// [`raw_arg`]: crate::os::windows::process::CommandExt::raw_arg
733 /// [windows-args]: crate::process#windows-argument-splitting
734 ///
735 /// </div>
736 ///
737 /// # Examples
738 ///
739 /// ```no_run
740 /// use std::process::Command;
741 ///
742 /// Command::new("ls")
743 /// .arg("-l")
744 /// .arg("-a")
745 /// .spawn()
746 /// .expect("ls command failed to start");
747 /// ```
748 #[stable(feature = "process", since = "1.0.0")]
749 pub fn arg<S: AsRef<OsStr>>(&mut self, arg: S) -> &mut Command {
750 self.inner.arg(arg.as_ref());
751 self
752 }
753
754 /// Adds multiple arguments to pass to the program.
755 ///
756 /// To pass a single argument see [`arg`].
757 ///
758 /// [`arg`]: Command::arg
759 ///
760 /// Note that the arguments are not passed through a shell, but given
761 /// literally to the program. This means that shell syntax like quotes,
762 /// escaped characters, word splitting, glob patterns, variable substitution, etc.
763 /// have no effect.
764 ///
765 /// <div class="warning">
766 ///
767 /// On Windows, use caution with untrusted inputs. Most applications use the
768 /// standard convention for decoding arguments passed to them. These are safe to
769 /// use with `arg`. However, some applications such as `cmd.exe` and `.bat` files
770 /// use a non-standard way of decoding arguments. They are therefore vulnerable
771 /// to malicious input.
772 ///
773 /// In the case of `cmd.exe` this is especially important because a malicious
774 /// argument can potentially run arbitrary shell commands.
775 ///
776 /// See [Windows argument splitting][windows-args] for more details
777 /// or [`raw_arg`] for manually implementing non-standard argument encoding.
778 ///
779 /// [`raw_arg`]: crate::os::windows::process::CommandExt::raw_arg
780 /// [windows-args]: crate::process#windows-argument-splitting
781 ///
782 /// </div>
783 ///
784 /// # Examples
785 ///
786 /// ```no_run
787 /// use std::process::Command;
788 ///
789 /// Command::new("ls")
790 /// .args(["-l", "-a"])
791 /// .spawn()
792 /// .expect("ls command failed to start");
793 /// ```
794 #[stable(feature = "process", since = "1.0.0")]
795 pub fn args<I, S>(&mut self, args: I) -> &mut Command
796 where
797 I: IntoIterator<Item = S>,
798 S: AsRef<OsStr>,
799 {
800 for arg in args {
801 self.arg(arg.as_ref());
802 }
803 self
804 }
805
806 /// Inserts or updates an explicit environment variable mapping.
807 ///
808 /// This method allows you to add an environment variable mapping to the spawned process or
809 /// overwrite a previously set value. You can use [`Command::envs`] to set multiple environment
810 /// variables simultaneously.
811 ///
812 /// Child processes will inherit environment variables from their parent process by default.
813 /// Environment variables explicitly set using [`Command::env`] take precedence over inherited
814 /// variables. You can disable environment variable inheritance entirely using
815 /// [`Command::env_clear`] or for a single key using [`Command::env_remove`].
816 ///
817 /// Note that environment variable names are case-insensitive (but
818 /// case-preserving) on Windows and case-sensitive on all other platforms.
819 ///
820 /// # Examples
821 ///
822 /// ```no_run
823 /// use std::process::Command;
824 ///
825 /// Command::new("ls")
826 /// .env("PATH", "/bin")
827 /// .spawn()
828 /// .expect("ls command failed to start");
829 /// ```
830 #[stable(feature = "process", since = "1.0.0")]
831 pub fn env<K, V>(&mut self, key: K, val: V) -> &mut Command
832 where
833 K: AsRef<OsStr>,
834 V: AsRef<OsStr>,
835 {
836 self.inner.env_mut().set(key.as_ref(), val.as_ref());
837 self
838 }
839
840 /// Inserts or updates multiple explicit environment variable mappings.
841 ///
842 /// This method allows you to add multiple environment variable mappings to the spawned process
843 /// or overwrite previously set values. You can use [`Command::env`] to set a single environment
844 /// variable.
845 ///
846 /// Child processes will inherit environment variables from their parent process by default.
847 /// Environment variables explicitly set using [`Command::envs`] take precedence over inherited
848 /// variables. You can disable environment variable inheritance entirely using
849 /// [`Command::env_clear`] or for a single key using [`Command::env_remove`].
850 ///
851 /// Note that environment variable names are case-insensitive (but case-preserving) on Windows
852 /// and case-sensitive on all other platforms.
853 ///
854 /// # Examples
855 ///
856 /// ```no_run
857 /// use std::process::{Command, Stdio};
858 /// use std::env;
859 /// use std::collections::HashMap;
860 ///
861 /// let filtered_env : HashMap<String, String> =
862 /// env::vars().filter(|&(ref k, _)|
863 /// k == "TERM" || k == "TZ" || k == "LANG" || k == "PATH"
864 /// ).collect();
865 ///
866 /// Command::new("printenv")
867 /// .stdin(Stdio::null())
868 /// .stdout(Stdio::inherit())
869 /// .env_clear()
870 /// .envs(&filtered_env)
871 /// .spawn()
872 /// .expect("printenv failed to start");
873 /// ```
874 #[stable(feature = "command_envs", since = "1.19.0")]
875 pub fn envs<I, K, V>(&mut self, vars: I) -> &mut Command
876 where
877 I: IntoIterator<Item = (K, V)>,
878 K: AsRef<OsStr>,
879 V: AsRef<OsStr>,
880 {
881 for (ref key, ref val) in vars {
882 self.inner.env_mut().set(key.as_ref(), val.as_ref());
883 }
884 self
885 }
886
887 /// Removes an explicitly set environment variable and prevents inheriting it from a parent
888 /// process.
889 ///
890 /// This method will remove the explicit value of an environment variable set via
891 /// [`Command::env`] or [`Command::envs`]. In addition, it will prevent the spawned child
892 /// process from inheriting that environment variable from its parent process.
893 ///
894 /// After calling [`Command::env_remove`], the value associated with its key from
895 /// [`Command::get_envs`] will be [`None`].
896 ///
897 /// To clear all explicitly set environment variables and disable all environment variable
898 /// inheritance, you can use [`Command::env_clear`].
899 ///
900 /// # Examples
901 ///
902 /// Prevent any inherited `GIT_DIR` variable from changing the target of the `git` command,
903 /// while allowing all other variables, like `GIT_AUTHOR_NAME`.
904 ///
905 /// ```no_run
906 /// use std::process::Command;
907 ///
908 /// Command::new("git")
909 /// .arg("commit")
910 /// .env_remove("GIT_DIR")
911 /// .spawn()?;
912 /// # std::io::Result::Ok(())
913 /// ```
914 #[stable(feature = "process", since = "1.0.0")]
915 pub fn env_remove<K: AsRef<OsStr>>(&mut self, key: K) -> &mut Command {
916 self.inner.env_mut().remove(key.as_ref());
917 self
918 }
919
920 /// Clears all explicitly set environment variables and prevents inheriting any parent process
921 /// environment variables.
922 ///
923 /// This method will remove all explicitly added environment variables set via [`Command::env`]
924 /// or [`Command::envs`]. In addition, it will prevent the spawned child process from inheriting
925 /// any environment variable from its parent process.
926 ///
927 /// After calling [`Command::env_clear`], the iterator from [`Command::get_envs`] will be
928 /// empty.
929 ///
930 /// You can use [`Command::env_remove`] to clear a single mapping.
931 ///
932 /// # Examples
933 ///
934 /// The behavior of `sort` is affected by `LANG` and `LC_*` environment variables.
935 /// Clearing the environment makes `sort`'s behavior independent of the parent processes' language.
936 ///
937 /// ```no_run
938 /// use std::process::Command;
939 ///
940 /// Command::new("sort")
941 /// .arg("file.txt")
942 /// .env_clear()
943 /// .spawn()?;
944 /// # std::io::Result::Ok(())
945 /// ```
946 #[stable(feature = "process", since = "1.0.0")]
947 pub fn env_clear(&mut self) -> &mut Command {
948 self.inner.env_mut().clear();
949 self
950 }
951
952 /// Sets the working directory for the child process.
953 ///
954 /// # Platform-specific behavior
955 ///
956 /// If the program path is relative (e.g., `"./script.sh"`), it's ambiguous
957 /// whether it should be interpreted relative to the parent's working
958 /// directory or relative to `current_dir`. The behavior in this case is
959 /// platform specific and unstable, and it's recommended to use
960 /// [`canonicalize`] to get an absolute program path instead.
961 ///
962 /// # Examples
963 ///
964 /// ```no_run
965 /// use std::process::Command;
966 ///
967 /// Command::new("ls")
968 /// .current_dir("/bin")
969 /// .spawn()
970 /// .expect("ls command failed to start");
971 /// ```
972 ///
973 /// [`canonicalize`]: crate::fs::canonicalize
974 #[stable(feature = "process", since = "1.0.0")]
975 pub fn current_dir<P: AsRef<Path>>(&mut self, dir: P) -> &mut Command {
976 self.inner.cwd(dir.as_ref().as_ref());
977 self
978 }
979
980 /// Configuration for the child process's standard input (stdin) handle.
981 ///
982 /// Defaults to [`inherit`] when used with [`spawn`] or [`status`], and
983 /// defaults to [`piped`] when used with [`output`].
984 ///
985 /// [`inherit`]: Stdio::inherit
986 /// [`piped`]: Stdio::piped
987 /// [`spawn`]: Self::spawn
988 /// [`status`]: Self::status
989 /// [`output`]: Self::output
990 ///
991 /// # Examples
992 ///
993 /// ```no_run
994 /// use std::process::{Command, Stdio};
995 ///
996 /// Command::new("ls")
997 /// .stdin(Stdio::null())
998 /// .spawn()
999 /// .expect("ls command failed to start");
1000 /// ```
1001 #[stable(feature = "process", since = "1.0.0")]
1002 pub fn stdin<T: Into<Stdio>>(&mut self, cfg: T) -> &mut Command {
1003 self.inner.stdin(cfg.into().0);
1004 self
1005 }
1006
1007 /// Configuration for the child process's standard output (stdout) handle.
1008 ///
1009 /// Defaults to [`inherit`] when used with [`spawn`] or [`status`], and
1010 /// defaults to [`piped`] when used with [`output`].
1011 ///
1012 /// [`inherit`]: Stdio::inherit
1013 /// [`piped`]: Stdio::piped
1014 /// [`spawn`]: Self::spawn
1015 /// [`status`]: Self::status
1016 /// [`output`]: Self::output
1017 ///
1018 /// # Examples
1019 ///
1020 /// ```no_run
1021 /// use std::process::{Command, Stdio};
1022 ///
1023 /// Command::new("ls")
1024 /// .stdout(Stdio::null())
1025 /// .spawn()
1026 /// .expect("ls command failed to start");
1027 /// ```
1028 #[stable(feature = "process", since = "1.0.0")]
1029 pub fn stdout<T: Into<Stdio>>(&mut self, cfg: T) -> &mut Command {
1030 self.inner.stdout(cfg.into().0);
1031 self
1032 }
1033
1034 /// Configuration for the child process's standard error (stderr) handle.
1035 ///
1036 /// Defaults to [`inherit`] when used with [`spawn`] or [`status`], and
1037 /// defaults to [`piped`] when used with [`output`].
1038 ///
1039 /// [`inherit`]: Stdio::inherit
1040 /// [`piped`]: Stdio::piped
1041 /// [`spawn`]: Self::spawn
1042 /// [`status`]: Self::status
1043 /// [`output`]: Self::output
1044 ///
1045 /// # Examples
1046 ///
1047 /// ```no_run
1048 /// use std::process::{Command, Stdio};
1049 ///
1050 /// Command::new("ls")
1051 /// .stderr(Stdio::null())
1052 /// .spawn()
1053 /// .expect("ls command failed to start");
1054 /// ```
1055 #[stable(feature = "process", since = "1.0.0")]
1056 pub fn stderr<T: Into<Stdio>>(&mut self, cfg: T) -> &mut Command {
1057 self.inner.stderr(cfg.into().0);
1058 self
1059 }
1060
1061 /// Executes the command as a child process, returning a handle to it.
1062 ///
1063 /// By default, stdin, stdout and stderr are inherited from the parent.
1064 ///
1065 /// # Errors
1066 ///
1067 /// This method returns an [`io::Error`] if the child process could not be
1068 /// spawned. Common reasons include:
1069 ///
1070 /// * the program could not be found (for example, it does not exist, or,
1071 /// when given a bare name, it is not present in the `PATH`);
1072 /// * the current process does not have permission to execute the program
1073 /// (for example, the file is not marked executable, or execution is
1074 /// denied by a security policy such as `seccomp`);
1075 /// * the operating system could not create the new process because of
1076 /// resource exhaustion (for example, a limit on the number of processes
1077 /// was reached).
1078 ///
1079 /// An error is only returned for failures that occur while the child is
1080 /// being spawned. Once the child has started successfully, anything that
1081 /// happens to it afterwards — including being terminated by a signal — is
1082 /// reported through its [`ExitStatus`] rather than as an error from the
1083 /// spawning method.
1084 ///
1085 /// # Examples
1086 ///
1087 /// ```no_run
1088 /// use std::process::Command;
1089 ///
1090 /// Command::new("ls")
1091 /// .spawn()
1092 /// .expect("ls command failed to start");
1093 /// ```
1094 #[stable(feature = "process", since = "1.0.0")]
1095 pub fn spawn(&mut self) -> io::Result<Child> {
1096 self.inner.spawn(imp::Stdio::Inherit, true).map(Child::from_inner)
1097 }
1098
1099 /// Executes the command as a child process, waiting for it to finish and
1100 /// collecting all of its output.
1101 ///
1102 /// By default, stdout and stderr are captured (and used to provide the
1103 /// resulting output). Stdin is not inherited from the parent and any
1104 /// attempt by the child process to read from the stdin stream will result
1105 /// in the stream immediately closing.
1106 ///
1107 /// # Errors
1108 ///
1109 /// Like [`spawn`], this method returns an [`io::Error`] if the child
1110 /// process could not be spawned; see [`spawn`] for the common reasons. It
1111 /// may also return an error if reading the child's output or waiting on the
1112 /// child fails.
1113 ///
1114 /// Note that this method does **not** return an error if the child runs and
1115 /// then exits unsuccessfully, or is terminated by a signal. In those cases
1116 /// it still returns [`Ok`], and the outcome is reflected in the
1117 /// [`ExitStatus`] stored in the returned [`Output`].
1118 ///
1119 /// [`spawn`]: Command::spawn
1120 ///
1121 /// # Examples
1122 ///
1123 /// ```should_panic
1124 /// use std::process::Command;
1125 /// use std::io::{self, Write};
1126 /// let output = Command::new("/bin/cat")
1127 /// .arg("file.txt")
1128 /// .output()?;
1129 ///
1130 /// println!("status: {}", output.status);
1131 /// io::stdout().write_all(&output.stdout)?;
1132 /// io::stderr().write_all(&output.stderr)?;
1133 ///
1134 /// assert!(output.status.success());
1135 /// # io::Result::Ok(())
1136 /// ```
1137 #[stable(feature = "process", since = "1.0.0")]
1138 pub fn output(&mut self) -> io::Result<Output> {
1139 let (status, stdout, stderr) = imp::output(&mut self.inner)?;
1140 Ok(Output { status: ExitStatus(status), stdout, stderr })
1141 }
1142
1143 /// Executes a command as a child process, waiting for it to finish and
1144 /// collecting its status.
1145 ///
1146 /// By default, stdin, stdout and stderr are inherited from the parent.
1147 ///
1148 /// # Errors
1149 ///
1150 /// Like [`spawn`], this method returns an [`io::Error`] if the child
1151 /// process could not be spawned; see [`spawn`] for the common reasons. It
1152 /// may also return an error if waiting on the child fails.
1153 ///
1154 /// Note that this method does **not** return an error if the child runs and
1155 /// then exits unsuccessfully, or is terminated by a signal. In those cases
1156 /// it still returns [`Ok`], and the outcome is reflected in the returned
1157 /// [`ExitStatus`].
1158 ///
1159 /// [`spawn`]: Command::spawn
1160 ///
1161 /// # Examples
1162 ///
1163 /// ```should_panic
1164 /// use std::process::Command;
1165 ///
1166 /// let status = Command::new("/bin/cat")
1167 /// .arg("file.txt")
1168 /// .status()
1169 /// .expect("failed to execute process");
1170 ///
1171 /// println!("process finished with: {status}");
1172 ///
1173 /// assert!(status.success());
1174 /// ```
1175 #[stable(feature = "process", since = "1.0.0")]
1176 pub fn status(&mut self) -> io::Result<ExitStatus> {
1177 self.inner
1178 .spawn(imp::Stdio::Inherit, true)
1179 .map(Child::from_inner)
1180 .and_then(|mut p| p.wait())
1181 }
1182
1183 /// Returns the path to the program that was given to [`Command::new`].
1184 ///
1185 /// # Examples
1186 ///
1187 /// ```
1188 /// use std::process::Command;
1189 ///
1190 /// let cmd = Command::new("echo");
1191 /// assert_eq!(cmd.get_program(), "echo");
1192 /// ```
1193 #[must_use]
1194 #[stable(feature = "command_access", since = "1.57.0")]
1195 pub fn get_program(&self) -> &OsStr {
1196 self.inner.get_program()
1197 }
1198
1199 /// Returns an iterator of the arguments that will be passed to the program.
1200 ///
1201 /// This does not include the path to the program as the first argument;
1202 /// it only includes the arguments specified with [`Command::arg`] and
1203 /// [`Command::args`].
1204 ///
1205 /// # Examples
1206 ///
1207 /// ```
1208 /// use std::ffi::OsStr;
1209 /// use std::process::Command;
1210 ///
1211 /// let mut cmd = Command::new("echo");
1212 /// cmd.arg("first").arg("second");
1213 /// let args: Vec<&OsStr> = cmd.get_args().collect();
1214 /// assert_eq!(args, &["first", "second"]);
1215 /// ```
1216 #[stable(feature = "command_access", since = "1.57.0")]
1217 pub fn get_args(&self) -> CommandArgs<'_> {
1218 CommandArgs { inner: self.inner.get_args() }
1219 }
1220
1221 /// Returns an iterator of the environment variables explicitly set for the child process.
1222 ///
1223 /// Environment variables explicitly set using [`Command::env`], [`Command::envs`], and
1224 /// [`Command::env_remove`] can be retrieved with this method.
1225 ///
1226 /// Note that this output does not include environment variables inherited from the parent
1227 /// process. To see the full list of environment variables, including those inherited from the
1228 /// parent process, use [`Command::get_resolved_envs`].
1229 ///
1230 /// Each element is a tuple key/value pair `(&OsStr, Option<&OsStr>)`. A [`None`] value
1231 /// indicates its key was explicitly removed via [`Command::env_remove`]. The associated key for
1232 /// the [`None`] value will no longer inherit from its parent process.
1233 ///
1234 /// An empty iterator can indicate that no explicit mappings were added or that
1235 /// [`Command::env_clear`] was called. After calling [`Command::env_clear`], the child process
1236 /// will not inherit any environment variables from its parent process.
1237 ///
1238 /// # Examples
1239 ///
1240 /// ```
1241 /// use std::ffi::OsStr;
1242 /// use std::process::Command;
1243 ///
1244 /// let mut cmd = Command::new("ls");
1245 /// cmd.env("TERM", "dumb").env_remove("TZ");
1246 /// let envs: Vec<(&OsStr, Option<&OsStr>)> = cmd.get_envs().collect();
1247 /// assert_eq!(envs, &[
1248 /// (OsStr::new("TERM"), Some(OsStr::new("dumb"))),
1249 /// (OsStr::new("TZ"), None)
1250 /// ]);
1251 /// ```
1252 #[stable(feature = "command_access", since = "1.57.0")]
1253 pub fn get_envs(&self) -> CommandEnvs<'_> {
1254 CommandEnvs { iter: self.inner.get_envs() }
1255 }
1256
1257 /// Returns an iterator of the environment variables that will be set when the process is spawned.
1258 ///
1259 /// This returns the environment as it would be if the command were executed at the time of calling
1260 /// this method. The returned environment includes:
1261 /// - All inherited environment variables from the parent process (unless [`Command::env_clear`] was called)
1262 /// - All environment variables explicitly set via [`Command::env`] or [`Command::envs`]
1263 /// - Excluding any environment variables removed via [`Command::env_remove`]
1264 ///
1265 /// Note that the returned environment is a snapshot at the time this method is called and will not
1266 /// reflect any subsequent changes to the `Command` or the parent process's environment. Additionally,
1267 /// it will not reflect changes made in a `pre_exec` hook (on Unix platforms).
1268 ///
1269 /// Each element is a tuple `(OsString, OsString)` representing an environment variable key and value.
1270 ///
1271 /// # Examples
1272 ///
1273 /// ```
1274 /// #![feature(command_resolved_envs)]
1275 /// use std::process::Command;
1276 /// use std::ffi::{OsString, OsStr};
1277 /// use std::env;
1278 /// use std::collections::HashMap;
1279 ///
1280 /// let mut cmd = Command::new("ls");
1281 /// cmd.env("TZ", "UTC");
1282 /// unsafe { env::set_var("EDITOR", "vim"); }
1283 ///
1284 /// let resolved: HashMap<OsString, OsString> = cmd.get_resolved_envs().collect();
1285 /// assert_eq!(resolved.get(OsStr::new("TZ")), Some(&OsString::from("UTC")));
1286 /// assert_eq!(resolved.get(OsStr::new("EDITOR")), Some(&OsString::from("vim")));
1287 /// ```
1288 #[unstable(feature = "command_resolved_envs", issue = "149070")]
1289 pub fn get_resolved_envs(&self) -> CommandResolvedEnvs {
1290 self.inner.get_resolved_envs()
1291 }
1292
1293 /// Returns the working directory for the child process.
1294 ///
1295 /// This returns [`None`] if the working directory will not be changed.
1296 ///
1297 /// # Examples
1298 ///
1299 /// ```
1300 /// use std::path::Path;
1301 /// use std::process::Command;
1302 ///
1303 /// let mut cmd = Command::new("ls");
1304 /// assert_eq!(cmd.get_current_dir(), None);
1305 /// cmd.current_dir("/bin");
1306 /// assert_eq!(cmd.get_current_dir(), Some(Path::new("/bin")));
1307 /// ```
1308 #[must_use]
1309 #[stable(feature = "command_access", since = "1.57.0")]
1310 pub fn get_current_dir(&self) -> Option<&Path> {
1311 self.inner.get_current_dir()
1312 }
1313
1314 /// Returns whether the environment will be cleared for the child process.
1315 ///
1316 /// This returns `true` if [`Command::env_clear`] was called, and `false` otherwise.
1317 /// When `true`, the child process will not inherit any environment variables from
1318 /// its parent process.
1319 ///
1320 /// # Examples
1321 ///
1322 /// ```
1323 /// #![feature(command_resolved_envs)]
1324 /// use std::process::Command;
1325 ///
1326 /// let mut cmd = Command::new("ls");
1327 /// assert_eq!(cmd.get_env_clear(), false);
1328 ///
1329 /// cmd.env_clear();
1330 /// assert_eq!(cmd.get_env_clear(), true);
1331 /// ```
1332 #[must_use]
1333 #[unstable(feature = "command_resolved_envs", issue = "149070")]
1334 pub fn get_env_clear(&self) -> bool {
1335 self.inner.get_env_clear()
1336 }
1337}
1338
1339#[stable(feature = "rust1", since = "1.0.0")]
1340impl fmt::Debug for Command {
1341 /// Format the program and arguments of a Command for display. Any
1342 /// non-utf8 data is lossily converted using the utf8 replacement
1343 /// character.
1344 ///
1345 /// The default format approximates a shell invocation of the program along with its
1346 /// arguments. It does not include most of the other command properties. The output is not guaranteed to work
1347 /// (e.g. due to lack of shell-escaping or differences in path resolution).
1348 /// On some platforms you can use [the alternate syntax] to show more fields.
1349 ///
1350 /// Note that the debug implementation is platform-specific.
1351 ///
1352 /// [the alternate syntax]: fmt#sign0
1353 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1354 self.inner.fmt(f)
1355 }
1356}
1357
1358impl AsInner<imp::Command> for Command {
1359 #[inline]
1360 fn as_inner(&self) -> &imp::Command {
1361 &self.inner
1362 }
1363}
1364
1365impl AsInnerMut<imp::Command> for Command {
1366 #[inline]
1367 fn as_inner_mut(&mut self) -> &mut imp::Command {
1368 &mut self.inner
1369 }
1370}
1371
1372/// An iterator over the command arguments.
1373///
1374/// This struct is created by [`Command::get_args`]. See its documentation for
1375/// more.
1376#[must_use = "iterators are lazy and do nothing unless consumed"]
1377#[stable(feature = "command_access", since = "1.57.0")]
1378#[derive(Debug)]
1379pub struct CommandArgs<'a> {
1380 inner: imp::CommandArgs<'a>,
1381}
1382
1383#[stable(feature = "command_access", since = "1.57.0")]
1384impl<'a> Iterator for CommandArgs<'a> {
1385 type Item = &'a OsStr;
1386 fn next(&mut self) -> Option<&'a OsStr> {
1387 self.inner.next()
1388 }
1389 fn size_hint(&self) -> (usize, Option<usize>) {
1390 self.inner.size_hint()
1391 }
1392}
1393
1394#[stable(feature = "command_access", since = "1.57.0")]
1395impl<'a> ExactSizeIterator for CommandArgs<'a> {
1396 fn len(&self) -> usize {
1397 self.inner.len()
1398 }
1399 fn is_empty(&self) -> bool {
1400 self.inner.is_empty()
1401 }
1402}
1403
1404const fn assert_send<T: core::marker::Send>() {}
1405const fn assert_sync<T: core::marker::Sync>() {}
1406
1407const _: () = assert_send::<CommandArgs<'static>>();
1408const _: () = assert_sync::<CommandArgs<'static>>();
1409
1410/// An iterator over the command environment variables.
1411///
1412/// This struct is created by
1413/// [`Command::get_envs`][crate::process::Command::get_envs]. See its
1414/// documentation for more.
1415#[must_use = "iterators are lazy and do nothing unless consumed"]
1416#[stable(feature = "command_access", since = "1.57.0")]
1417pub struct CommandEnvs<'a> {
1418 iter: imp::CommandEnvs<'a>,
1419}
1420
1421#[stable(feature = "command_access", since = "1.57.0")]
1422impl<'a> Iterator for CommandEnvs<'a> {
1423 type Item = (&'a OsStr, Option<&'a OsStr>);
1424
1425 fn next(&mut self) -> Option<Self::Item> {
1426 self.iter.next()
1427 }
1428
1429 fn size_hint(&self) -> (usize, Option<usize>) {
1430 self.iter.size_hint()
1431 }
1432}
1433
1434#[stable(feature = "command_access", since = "1.57.0")]
1435impl<'a> ExactSizeIterator for CommandEnvs<'a> {
1436 fn len(&self) -> usize {
1437 self.iter.len()
1438 }
1439
1440 fn is_empty(&self) -> bool {
1441 self.iter.is_empty()
1442 }
1443}
1444
1445#[stable(feature = "command_access", since = "1.57.0")]
1446impl<'a> fmt::Debug for CommandEnvs<'a> {
1447 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1448 self.iter.fmt(f)
1449 }
1450}
1451
1452#[unstable(feature = "command_resolved_envs", issue = "149070")]
1453pub use imp::CommandResolvedEnvs;
1454
1455/// The output of a finished process.
1456///
1457/// This is returned in a Result by either the [`output`] method of a
1458/// [`Command`], or the [`wait_with_output`] method of a [`Child`]
1459/// process.
1460///
1461/// [`output`]: Command::output
1462/// [`wait_with_output`]: Child::wait_with_output
1463#[derive(PartialEq, Eq, Clone)]
1464#[stable(feature = "process", since = "1.0.0")]
1465pub struct Output {
1466 /// The status (exit code) of the process.
1467 #[stable(feature = "process", since = "1.0.0")]
1468 pub status: ExitStatus,
1469 /// The data that the process wrote to stdout.
1470 #[stable(feature = "process", since = "1.0.0")]
1471 pub stdout: Vec<u8>,
1472 /// The data that the process wrote to stderr.
1473 #[stable(feature = "process", since = "1.0.0")]
1474 pub stderr: Vec<u8>,
1475}
1476
1477impl Output {
1478 /// Returns an error if a nonzero exit status was received.
1479 ///
1480 /// If the [`Command`] exited successfully,
1481 /// `self` is returned.
1482 ///
1483 /// This is equivalent to calling [`exit_ok`](ExitStatus::exit_ok)
1484 /// on [`Output.status`](Output::status).
1485 ///
1486 /// Note that this will throw away the [`Output::stderr`] field in the error case.
1487 /// If the child process outputs useful informantion to stderr, you can:
1488 /// * Use `cmd.stderr(Stdio::inherit())` to forward the
1489 /// stderr child process to the parent's stderr,
1490 /// usually printing it to console where the user can see it.
1491 /// This is usually correct for command-line applications.
1492 /// * Capture `stderr` using a custom error type.
1493 /// This is usually correct for libraries.
1494 ///
1495 /// # Examples
1496 ///
1497 // Ferrocene annotation: QNX does not have the binaries
1498 /// ```ignore-qnx
1499 /// # #![allow(unused_features)]
1500 /// #![feature(exit_status_error)]
1501 /// # #[cfg(all(unix, not(target_os = "android"), not(all(target_vendor = "apple", not(target_os = "macos")))))] {
1502 /// use std::process::Command;
1503 /// assert!(Command::new("false").output().unwrap().exit_ok().is_err());
1504 /// # }
1505 /// ```
1506 #[unstable(feature = "exit_status_error", issue = "84908")]
1507 pub fn exit_ok(self) -> Result<Self, ExitStatusError> {
1508 self.status.exit_ok()?;
1509 Ok(self)
1510 }
1511}
1512
1513// If either stderr or stdout are valid utf8 strings it prints the valid
1514// strings, otherwise it prints the byte sequence instead
1515#[stable(feature = "process_output_debug", since = "1.7.0")]
1516impl fmt::Debug for Output {
1517 fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
1518 let stdout_utf8 = str::from_utf8(&self.stdout);
1519 let stdout_debug: &dyn fmt::Debug = match stdout_utf8 {
1520 Ok(ref s) => s,
1521 Err(_) => &self.stdout,
1522 };
1523
1524 let stderr_utf8 = str::from_utf8(&self.stderr);
1525 let stderr_debug: &dyn fmt::Debug = match stderr_utf8 {
1526 Ok(ref s) => s,
1527 Err(_) => &self.stderr,
1528 };
1529
1530 fmt.debug_struct("Output")
1531 .field("status", &self.status)
1532 .field("stdout", stdout_debug)
1533 .field("stderr", stderr_debug)
1534 .finish()
1535 }
1536}
1537
1538/// Describes what to do with a standard I/O stream for a child process when
1539/// passed to the [`stdin`], [`stdout`], and [`stderr`] methods of [`Command`].
1540///
1541/// [`stdin`]: Command::stdin
1542/// [`stdout`]: Command::stdout
1543/// [`stderr`]: Command::stderr
1544#[stable(feature = "process", since = "1.0.0")]
1545pub struct Stdio(imp::Stdio);
1546
1547impl Stdio {
1548 /// A new pipe should be arranged to connect the parent and child processes.
1549 ///
1550 /// # Examples
1551 ///
1552 /// With stdout:
1553 ///
1554 /// ```no_run
1555 /// use std::process::{Command, Stdio};
1556 ///
1557 /// let output = Command::new("echo")
1558 /// .arg("Hello, world!")
1559 /// .stdout(Stdio::piped())
1560 /// .output()
1561 /// .expect("Failed to execute command");
1562 ///
1563 /// assert_eq!(String::from_utf8_lossy(&output.stdout), "Hello, world!\n");
1564 /// // Nothing echoed to console
1565 /// ```
1566 ///
1567 /// With stdin:
1568 ///
1569 /// ```no_run
1570 /// use std::io::Write;
1571 /// use std::process::{Command, Stdio};
1572 ///
1573 /// let mut child = Command::new("rev")
1574 /// .stdin(Stdio::piped())
1575 /// .stdout(Stdio::piped())
1576 /// .spawn()
1577 /// .expect("Failed to spawn child process");
1578 ///
1579 /// let mut stdin = child.stdin.take().expect("Failed to open stdin");
1580 /// std::thread::spawn(move || {
1581 /// stdin.write_all("Hello, world!".as_bytes()).expect("Failed to write to stdin");
1582 /// });
1583 ///
1584 /// let output = child.wait_with_output().expect("Failed to read stdout");
1585 /// assert_eq!(String::from_utf8_lossy(&output.stdout), "!dlrow ,olleH");
1586 /// ```
1587 ///
1588 /// Writing more than a pipe buffer's worth of input to stdin without also reading
1589 /// stdout and stderr at the same time may cause a deadlock.
1590 /// This is an issue when running any program that doesn't guarantee that it reads
1591 /// its entire stdin before writing more than a pipe buffer's worth of output.
1592 /// The size of a pipe buffer varies on different targets.
1593 ///
1594 #[must_use]
1595 #[stable(feature = "process", since = "1.0.0")]
1596 pub fn piped() -> Stdio {
1597 Stdio(imp::Stdio::MakePipe)
1598 }
1599
1600 /// The child inherits from the corresponding parent descriptor.
1601 ///
1602 /// # Examples
1603 ///
1604 /// With stdout:
1605 ///
1606 /// ```no_run
1607 /// use std::process::{Command, Stdio};
1608 ///
1609 /// let output = Command::new("echo")
1610 /// .arg("Hello, world!")
1611 /// .stdout(Stdio::inherit())
1612 /// .output()
1613 /// .expect("Failed to execute command");
1614 ///
1615 /// assert_eq!(String::from_utf8_lossy(&output.stdout), "");
1616 /// // "Hello, world!" echoed to console
1617 /// ```
1618 ///
1619 /// With stdin:
1620 ///
1621 /// ```no_run
1622 /// use std::process::{Command, Stdio};
1623 /// use std::io::{self, Write};
1624 ///
1625 /// let output = Command::new("rev")
1626 /// .stdin(Stdio::inherit())
1627 /// .stdout(Stdio::piped())
1628 /// .output()?;
1629 ///
1630 /// print!("You piped in the reverse of: ");
1631 /// io::stdout().write_all(&output.stdout)?;
1632 /// # io::Result::Ok(())
1633 /// ```
1634 #[must_use]
1635 #[stable(feature = "process", since = "1.0.0")]
1636 pub fn inherit() -> Stdio {
1637 Stdio(imp::Stdio::Inherit)
1638 }
1639
1640 /// This stream will be ignored. This is the equivalent of attaching the
1641 /// stream to `/dev/null`.
1642 ///
1643 /// # Examples
1644 ///
1645 /// With stdout:
1646 ///
1647 /// ```no_run
1648 /// use std::process::{Command, Stdio};
1649 ///
1650 /// let output = Command::new("echo")
1651 /// .arg("Hello, world!")
1652 /// .stdout(Stdio::null())
1653 /// .output()
1654 /// .expect("Failed to execute command");
1655 ///
1656 /// assert_eq!(String::from_utf8_lossy(&output.stdout), "");
1657 /// // Nothing echoed to console
1658 /// ```
1659 ///
1660 /// With stdin:
1661 ///
1662 /// ```no_run
1663 /// use std::process::{Command, Stdio};
1664 ///
1665 /// let output = Command::new("rev")
1666 /// .stdin(Stdio::null())
1667 /// .stdout(Stdio::piped())
1668 /// .output()
1669 /// .expect("Failed to execute command");
1670 ///
1671 /// assert_eq!(String::from_utf8_lossy(&output.stdout), "");
1672 /// // Ignores any piped-in input
1673 /// ```
1674 #[must_use]
1675 #[stable(feature = "process", since = "1.0.0")]
1676 pub fn null() -> Stdio {
1677 Stdio(imp::Stdio::Null)
1678 }
1679
1680 /// Returns `true` if this requires [`Command`] to create a new pipe.
1681 ///
1682 /// # Example
1683 ///
1684 /// ```
1685 /// #![feature(stdio_makes_pipe)]
1686 /// use std::process::Stdio;
1687 ///
1688 /// let io = Stdio::piped();
1689 /// assert_eq!(io.makes_pipe(), true);
1690 /// ```
1691 #[unstable(feature = "stdio_makes_pipe", issue = "98288")]
1692 pub fn makes_pipe(&self) -> bool {
1693 matches!(self.0, imp::Stdio::MakePipe)
1694 }
1695}
1696
1697impl FromInner<imp::Stdio> for Stdio {
1698 fn from_inner(inner: imp::Stdio) -> Stdio {
1699 Stdio(inner)
1700 }
1701}
1702
1703#[stable(feature = "std_debug", since = "1.16.0")]
1704impl fmt::Debug for Stdio {
1705 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1706 f.debug_struct("Stdio").finish_non_exhaustive()
1707 }
1708}
1709
1710#[stable(feature = "stdio_from", since = "1.20.0")]
1711impl From<ChildStdin> for Stdio {
1712 /// Converts a [`ChildStdin`] into a [`Stdio`].
1713 ///
1714 /// # Examples
1715 ///
1716 /// `ChildStdin` will be converted to `Stdio` using `Stdio::from` under the hood.
1717 ///
1718 /// ```rust,no_run
1719 /// use std::process::{Command, Stdio};
1720 ///
1721 /// let reverse = Command::new("rev")
1722 /// .stdin(Stdio::piped())
1723 /// .spawn()
1724 /// .expect("failed reverse command");
1725 ///
1726 /// let _echo = Command::new("echo")
1727 /// .arg("Hello, world!")
1728 /// .stdout(reverse.stdin.unwrap()) // Converted into a Stdio here
1729 /// .output()
1730 /// .expect("failed echo command");
1731 ///
1732 /// // "!dlrow ,olleH" echoed to console
1733 /// ```
1734 fn from(child: ChildStdin) -> Stdio {
1735 Stdio::from_inner(child.into_inner().into())
1736 }
1737}
1738
1739#[stable(feature = "stdio_from", since = "1.20.0")]
1740impl From<ChildStdout> for Stdio {
1741 /// Converts a [`ChildStdout`] into a [`Stdio`].
1742 ///
1743 /// # Examples
1744 ///
1745 /// `ChildStdout` will be converted to `Stdio` using `Stdio::from` under the hood.
1746 ///
1747 /// ```rust,no_run
1748 /// use std::process::{Command, Stdio};
1749 ///
1750 /// let hello = Command::new("echo")
1751 /// .arg("Hello, world!")
1752 /// .stdout(Stdio::piped())
1753 /// .spawn()
1754 /// .expect("failed echo command");
1755 ///
1756 /// let reverse = Command::new("rev")
1757 /// .stdin(hello.stdout.unwrap()) // Converted into a Stdio here
1758 /// .output()
1759 /// .expect("failed reverse command");
1760 ///
1761 /// assert_eq!(reverse.stdout, b"!dlrow ,olleH\n");
1762 /// ```
1763 fn from(child: ChildStdout) -> Stdio {
1764 Stdio::from_inner(child.into_inner().into())
1765 }
1766}
1767
1768#[stable(feature = "stdio_from", since = "1.20.0")]
1769impl From<ChildStderr> for Stdio {
1770 /// Converts a [`ChildStderr`] into a [`Stdio`].
1771 ///
1772 /// # Examples
1773 ///
1774 /// ```rust,no_run
1775 /// use std::process::{Command, Stdio};
1776 ///
1777 /// let reverse = Command::new("rev")
1778 /// .arg("non_existing_file.txt")
1779 /// .stderr(Stdio::piped())
1780 /// .spawn()
1781 /// .expect("failed reverse command");
1782 ///
1783 /// let cat = Command::new("cat")
1784 /// .arg("-")
1785 /// .stdin(reverse.stderr.unwrap()) // Converted into a Stdio here
1786 /// .output()
1787 /// .expect("failed echo command");
1788 ///
1789 /// assert_eq!(
1790 /// String::from_utf8_lossy(&cat.stdout),
1791 /// "rev: cannot open non_existing_file.txt: No such file or directory\n"
1792 /// );
1793 /// ```
1794 fn from(child: ChildStderr) -> Stdio {
1795 Stdio::from_inner(child.into_inner().into())
1796 }
1797}
1798
1799#[stable(feature = "stdio_from", since = "1.20.0")]
1800impl From<fs::File> for Stdio {
1801 /// Converts a [`File`](fs::File) into a [`Stdio`].
1802 ///
1803 /// # Examples
1804 ///
1805 /// `File` will be converted to `Stdio` using `Stdio::from` under the hood.
1806 ///
1807 /// ```rust,no_run
1808 /// use std::fs::File;
1809 /// use std::process::Command;
1810 ///
1811 /// // With the `foo.txt` file containing "Hello, world!"
1812 /// let file = File::open("foo.txt")?;
1813 ///
1814 /// let reverse = Command::new("rev")
1815 /// .stdin(file) // Implicit File conversion into a Stdio
1816 /// .output()?;
1817 ///
1818 /// assert_eq!(reverse.stdout, b"!dlrow ,olleH");
1819 /// # std::io::Result::Ok(())
1820 /// ```
1821 fn from(file: fs::File) -> Stdio {
1822 Stdio::from_inner(file.into_inner().into())
1823 }
1824}
1825
1826#[stable(feature = "stdio_from_stdio", since = "1.74.0")]
1827impl From<io::Stdout> for Stdio {
1828 /// Redirect command stdout/stderr to our stdout
1829 ///
1830 /// # Examples
1831 ///
1832 // Ferrocene annotation: QNX does not have a `whoami` binary
1833 /// ```rust,ignore-qnx
1834 /// #![feature(exit_status_error)]
1835 /// use std::io;
1836 /// use std::process::Command;
1837 ///
1838 /// # fn test() -> Result<(), Box<dyn std::error::Error>> {
1839 /// let output = Command::new("whoami")
1840 // "whoami" is a command which exists on both Unix and Windows,
1841 // and which succeeds, producing some stdout output but no stderr.
1842 /// .stdout(io::stdout())
1843 /// .output()?;
1844 /// output.status.exit_ok()?;
1845 /// assert!(output.stdout.is_empty());
1846 /// # Ok(())
1847 /// # }
1848 /// #
1849 /// # if cfg!(all(unix, not(target_os = "android"), not(all(target_vendor = "apple", not(target_os = "macos"))))) {
1850 /// # test().unwrap();
1851 /// # }
1852 /// ```
1853 fn from(inherit: io::Stdout) -> Stdio {
1854 Stdio::from_inner(inherit.into())
1855 }
1856}
1857
1858#[stable(feature = "stdio_from_stdio", since = "1.74.0")]
1859impl From<io::Stderr> for Stdio {
1860 /// Redirect command stdout/stderr to our stderr
1861 ///
1862 /// # Examples
1863 ///
1864 // Ferrocene annotation: QNX does not have a `whoami` binary
1865 /// ```rust,ignore-qnx
1866 /// #![feature(exit_status_error)]
1867 /// use std::io;
1868 /// use std::process::Command;
1869 ///
1870 /// # fn test() -> Result<(), Box<dyn std::error::Error>> {
1871 /// let output = Command::new("whoami")
1872 /// .stdout(io::stderr())
1873 /// .output()?;
1874 /// output.status.exit_ok()?;
1875 /// assert!(output.stdout.is_empty());
1876 /// # Ok(())
1877 /// # }
1878 /// #
1879 /// # if cfg!(all(unix, not(target_os = "android"), not(all(target_vendor = "apple", not(target_os = "macos"))))) {
1880 /// # test().unwrap();
1881 /// # }
1882 /// ```
1883 fn from(inherit: io::Stderr) -> Stdio {
1884 Stdio::from_inner(inherit.into())
1885 }
1886}
1887
1888#[stable(feature = "anonymous_pipe", since = "1.87.0")]
1889impl From<io::PipeWriter> for Stdio {
1890 fn from(pipe: io::PipeWriter) -> Self {
1891 Stdio::from_inner(pipe.into_inner().into())
1892 }
1893}
1894
1895#[stable(feature = "anonymous_pipe", since = "1.87.0")]
1896impl From<io::PipeReader> for Stdio {
1897 fn from(pipe: io::PipeReader) -> Self {
1898 Stdio::from_inner(pipe.into_inner().into())
1899 }
1900}
1901
1902/// Describes the result of a process after it has terminated.
1903///
1904/// This `struct` is used to represent the exit status or other termination of a child process.
1905/// Child processes are created via the [`Command`] struct and their exit
1906/// status is exposed through the [`status`] method, or the [`wait`] method
1907/// of a [`Child`] process.
1908///
1909/// An `ExitStatus` represents every possible disposition of a process. On Unix this
1910/// is the **wait status**. It is *not* simply an *exit status* (a value passed to `exit`).
1911///
1912/// For proper error reporting of failed processes, print the value of `ExitStatus` or
1913/// `ExitStatusError` using their implementations of [`Display`](crate::fmt::Display).
1914///
1915/// # Differences from `ExitCode`
1916///
1917/// [`ExitCode`] is intended for terminating the currently running process, via
1918/// the `Termination` trait, in contrast to `ExitStatus`, which represents the
1919/// termination of a child process. These APIs are separate due to platform
1920/// compatibility differences and their expected usage; it is not generally
1921/// possible to exactly reproduce an `ExitStatus` from a child for the current
1922/// process after the fact.
1923///
1924/// [`status`]: Command::status
1925/// [`wait`]: Child::wait
1926//
1927// We speak slightly loosely (here and in various other places in the stdlib docs) about `exit`
1928// vs `_exit`. Naming of Unix system calls is not standardised across Unices, so terminology is a
1929// matter of convention and tradition. For clarity we usually speak of `exit`, even when we might
1930// mean an underlying system call such as `_exit`.
1931#[derive(PartialEq, Eq, Clone, Copy, Debug)]
1932#[stable(feature = "process", since = "1.0.0")]
1933pub struct ExitStatus(imp::ExitStatus);
1934
1935/// The default value is one which indicates successful completion.
1936#[stable(feature = "process_exitstatus_default", since = "1.73.0")]
1937impl Default for ExitStatus {
1938 fn default() -> Self {
1939 // Ideally this would be done by ExitCode::default().into() but that is complicated.
1940 ExitStatus::from_inner(imp::ExitStatus::default())
1941 }
1942}
1943
1944impl ExitStatus {
1945 /// Was termination successful? Returns a `Result`.
1946 ///
1947 /// # Examples
1948 ///
1949 /// ```
1950 /// #![feature(exit_status_error)]
1951 /// # if cfg!(all(unix, not(all(target_vendor = "apple", not(target_os = "macos"))))) {
1952 /// use std::process::Command;
1953 ///
1954 /// let status = Command::new("ls")
1955 /// .arg("/dev/nonexistent")
1956 /// .status()
1957 /// .expect("ls could not be executed");
1958 ///
1959 /// println!("ls: {status}");
1960 /// status.exit_ok().expect_err("/dev/nonexistent could be listed!");
1961 /// # } // cfg!(unix)
1962 /// ```
1963 #[unstable(feature = "exit_status_error", issue = "84908")]
1964 pub fn exit_ok(&self) -> Result<(), ExitStatusError> {
1965 self.0.exit_ok().map_err(ExitStatusError)
1966 }
1967
1968 /// Was termination successful? Signal termination is not considered a
1969 /// success, and success is defined as a zero exit status.
1970 ///
1971 /// # Examples
1972 ///
1973 /// ```rust,no_run
1974 /// use std::process::Command;
1975 ///
1976 /// let status = Command::new("mkdir")
1977 /// .arg("projects")
1978 /// .status()
1979 /// .expect("failed to execute mkdir");
1980 ///
1981 /// if status.success() {
1982 /// println!("'projects/' directory created");
1983 /// } else {
1984 /// println!("failed to create 'projects/' directory: {status}");
1985 /// }
1986 /// ```
1987 #[must_use]
1988 #[stable(feature = "process", since = "1.0.0")]
1989 pub fn success(&self) -> bool {
1990 self.0.exit_ok().is_ok()
1991 }
1992
1993 /// Returns the exit code of the process, if any.
1994 ///
1995 /// In Unix terms the return value is the **exit status**: the value passed to `exit`, if the
1996 /// process finished by calling `exit`. Note that on Unix the exit status is truncated to 8
1997 /// bits, and that values that didn't come from a program's call to `exit` may be invented by the
1998 /// runtime system (often, for example, 255, 254, 127 or 126).
1999 ///
2000 /// On Unix, this will return `None` if the process was terminated by a signal.
2001 /// [`ExitStatusExt`](crate::os::unix::process::ExitStatusExt) is an
2002 /// extension trait for extracting any such signal, and other details, from the `ExitStatus`.
2003 ///
2004 /// # Examples
2005 ///
2006 /// ```no_run
2007 /// use std::process::Command;
2008 ///
2009 /// let status = Command::new("mkdir")
2010 /// .arg("projects")
2011 /// .status()
2012 /// .expect("failed to execute mkdir");
2013 ///
2014 /// match status.code() {
2015 /// Some(code) => println!("Exited with status code: {code}"),
2016 /// None => println!("Process terminated by signal")
2017 /// }
2018 /// ```
2019 #[must_use]
2020 #[stable(feature = "process", since = "1.0.0")]
2021 pub fn code(&self) -> Option<i32> {
2022 self.0.code()
2023 }
2024}
2025
2026impl AsInner<imp::ExitStatus> for ExitStatus {
2027 #[inline]
2028 fn as_inner(&self) -> &imp::ExitStatus {
2029 &self.0
2030 }
2031}
2032
2033impl FromInner<imp::ExitStatus> for ExitStatus {
2034 fn from_inner(s: imp::ExitStatus) -> ExitStatus {
2035 ExitStatus(s)
2036 }
2037}
2038
2039#[stable(feature = "process", since = "1.0.0")]
2040impl fmt::Display for ExitStatus {
2041 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2042 self.0.fmt(f)
2043 }
2044}
2045
2046/// Describes the result of a process after it has failed
2047///
2048/// Produced by the [`.exit_ok`](ExitStatus::exit_ok) method on [`ExitStatus`].
2049///
2050/// # Examples
2051///
2052// Ferrocene annotation: QNX does not have the binaries
2053/// ```ignore-qnx
2054/// #![feature(exit_status_error)]
2055/// # if cfg!(all(unix, not(target_os = "android"), not(all(target_vendor = "apple", not(target_os = "macos"))))) {
2056/// use std::process::{Command, ExitStatusError};
2057///
2058/// fn run(cmd: &str) -> Result<(), ExitStatusError> {
2059/// Command::new(cmd).status().unwrap().exit_ok()?;
2060/// Ok(())
2061/// }
2062///
2063/// run("true").unwrap();
2064/// run("false").unwrap_err();
2065/// # } // cfg!(unix)
2066/// ```
2067#[derive(PartialEq, Eq, Clone, Copy, Debug)]
2068#[unstable(feature = "exit_status_error", issue = "84908")]
2069// The definition of imp::ExitStatusError should ideally be such that
2070// Result<(), imp::ExitStatusError> has an identical representation to imp::ExitStatus.
2071pub struct ExitStatusError(imp::ExitStatusError);
2072
2073#[unstable(feature = "exit_status_error", issue = "84908")]
2074#[doc(test(attr(allow(unused_features))))]
2075impl ExitStatusError {
2076 /// Reports the exit code, if applicable, from an `ExitStatusError`.
2077 ///
2078 /// In Unix terms the return value is the **exit status**: the value passed to `exit`, if the
2079 /// process finished by calling `exit`. Note that on Unix the exit status is truncated to 8
2080 /// bits, and that values that didn't come from a program's call to `exit` may be invented by the
2081 /// runtime system (often, for example, 255, 254, 127 or 126).
2082 ///
2083 /// On Unix, this will return `None` if the process was terminated by a signal. If you want to
2084 /// handle such situations specially, consider using methods from
2085 /// [`ExitStatusExt`](crate::os::unix::process::ExitStatusExt).
2086 ///
2087 /// If the process finished by calling `exit` with a nonzero value, this will return
2088 /// that exit status.
2089 ///
2090 /// If the error was something else, it will return `None`.
2091 ///
2092 /// If the process exited successfully (ie, by calling `exit(0)`), there is no
2093 /// `ExitStatusError`. So the return value from `ExitStatusError::code()` is always nonzero.
2094 ///
2095 /// # Examples
2096 ///
2097 // Ferrocene annotation: QNX does not have the binaries
2098 /// ```ignore-qnx
2099 /// #![feature(exit_status_error)]
2100 /// # #[cfg(all(unix, not(target_os = "android"), not(all(target_vendor = "apple", not(target_os = "macos")))))] {
2101 /// use std::process::Command;
2102 ///
2103 /// let bad = Command::new("false").status().unwrap().exit_ok().unwrap_err();
2104 /// assert_eq!(bad.code(), Some(1));
2105 /// # } // #[cfg(unix)]
2106 /// ```
2107 #[must_use]
2108 pub fn code(&self) -> Option<i32> {
2109 self.code_nonzero().map(Into::into)
2110 }
2111
2112 /// Reports the exit code, if applicable, from an `ExitStatusError`, as a [`NonZero`].
2113 ///
2114 /// This is exactly like [`code()`](Self::code), except that it returns a <code>[NonZero]<[i32]></code>.
2115 ///
2116 /// Plain `code`, returning a plain integer, is provided because it is often more convenient.
2117 /// The returned value from `code()` is indeed also nonzero; use `code_nonzero()` when you want
2118 /// a type-level guarantee of nonzeroness.
2119 ///
2120 /// # Examples
2121 ///
2122 // Ferrocene annotation: QNX does not have the binaries
2123 /// ```ignore-qnx
2124 /// #![feature(exit_status_error)]
2125 ///
2126 /// # if cfg!(all(unix, not(target_os = "android"), not(all(target_vendor = "apple", not(target_os = "macos"))))) {
2127 /// use std::num::NonZero;
2128 /// use std::process::Command;
2129 ///
2130 /// let bad = Command::new("false").status().unwrap().exit_ok().unwrap_err();
2131 /// assert_eq!(bad.code_nonzero().unwrap(), NonZero::new(1).unwrap());
2132 /// # } // cfg!(unix)
2133 /// ```
2134 #[must_use]
2135 pub fn code_nonzero(&self) -> Option<NonZero<i32>> {
2136 self.0.code()
2137 }
2138
2139 /// Converts an `ExitStatusError` (back) to an `ExitStatus`.
2140 #[must_use]
2141 pub fn into_status(&self) -> ExitStatus {
2142 ExitStatus(self.0.into())
2143 }
2144}
2145
2146#[unstable(feature = "exit_status_error", issue = "84908")]
2147impl From<ExitStatusError> for ExitStatus {
2148 fn from(error: ExitStatusError) -> Self {
2149 Self(error.0.into())
2150 }
2151}
2152
2153#[unstable(feature = "exit_status_error", issue = "84908")]
2154impl fmt::Display for ExitStatusError {
2155 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2156 write!(f, "process exited unsuccessfully: {}", self.into_status())
2157 }
2158}
2159
2160#[unstable(feature = "exit_status_error", issue = "84908")]
2161impl crate::error::Error for ExitStatusError {}
2162
2163/// This type represents the status code the current process can return
2164/// to its parent under normal termination.
2165///
2166/// `ExitCode` is intended to be consumed only by the standard library (via
2167/// [`Termination::report()`]). For forwards compatibility with potentially
2168/// unusual targets, this type currently does not provide `Eq`, `Hash`, or
2169/// access to the raw value. This type does provide `PartialEq` for
2170/// comparison, but note that there may potentially be multiple failure
2171/// codes, some of which will _not_ compare equal to `ExitCode::FAILURE`.
2172/// The standard library provides the canonical `SUCCESS` and `FAILURE`
2173/// exit codes as well as `From<u8> for ExitCode` for constructing other
2174/// arbitrary exit codes.
2175///
2176/// # Portability
2177///
2178/// Numeric values used in this type don't have portable meanings, and
2179/// different platforms may mask different amounts of them.
2180///
2181/// For the platform's canonical successful and unsuccessful codes, see
2182/// the [`SUCCESS`] and [`FAILURE`] associated items.
2183///
2184/// [`SUCCESS`]: ExitCode::SUCCESS
2185/// [`FAILURE`]: ExitCode::FAILURE
2186///
2187/// # Differences from `ExitStatus`
2188///
2189/// `ExitCode` is intended for terminating the currently running process, via
2190/// the `Termination` trait, in contrast to [`ExitStatus`], which represents the
2191/// termination of a child process. These APIs are separate due to platform
2192/// compatibility differences and their expected usage; it is not generally
2193/// possible to exactly reproduce an `ExitStatus` from a child for the current
2194/// process after the fact.
2195///
2196/// # Examples
2197///
2198/// `ExitCode` can be returned from the `main` function of a crate, as it implements
2199/// [`Termination`]:
2200///
2201/// ```
2202/// use std::process::ExitCode;
2203/// # fn check_foo() -> bool { true }
2204///
2205/// fn main() -> ExitCode {
2206/// if !check_foo() {
2207/// return ExitCode::from(42);
2208/// }
2209///
2210/// ExitCode::SUCCESS
2211/// }
2212/// ```
2213#[derive(Clone, Copy, Debug, PartialEq)]
2214#[stable(feature = "process_exitcode", since = "1.61.0")]
2215pub struct ExitCode(imp::ExitCode);
2216
2217#[stable(feature = "process_exitcode", since = "1.61.0")]
2218impl ExitCode {
2219 /// The canonical `ExitCode` for successful termination on this platform.
2220 ///
2221 /// Note that a `()`-returning `main` implicitly results in a successful
2222 /// termination, so there's no need to return this from `main` unless
2223 /// you're also returning other possible codes.
2224 #[stable(feature = "process_exitcode", since = "1.61.0")]
2225 pub const SUCCESS: ExitCode = ExitCode(imp::ExitCode::SUCCESS);
2226
2227 /// The canonical `ExitCode` for unsuccessful termination on this platform.
2228 ///
2229 /// If you're only returning this and `SUCCESS` from `main`, consider
2230 /// instead returning `Err(_)` and `Ok(())` respectively, which will
2231 /// return the same codes (but will also `eprintln!` the error).
2232 #[stable(feature = "process_exitcode", since = "1.61.0")]
2233 pub const FAILURE: ExitCode = ExitCode(imp::ExitCode::FAILURE);
2234
2235 /// Exit the current process with the given `ExitCode`.
2236 ///
2237 /// Note that this has the same caveats as [`process::exit()`][exit], namely that this function
2238 /// terminates the process immediately, so no destructors on the current stack or any other
2239 /// thread's stack will be run. Also see those docs for some important notes on interop with C
2240 /// code. If a clean shutdown is needed, it is recommended to simply return this ExitCode from
2241 /// the `main` function, as demonstrated in the [type documentation](#examples).
2242 ///
2243 /// # Differences from `process::exit()`
2244 ///
2245 /// `process::exit()` accepts any `i32` value as the exit code for the process; however, there
2246 /// are platforms that only use a subset of that value (see [`process::exit` platform-specific
2247 /// behavior][exit#platform-specific-behavior]). `ExitCode` exists because of this; only
2248 /// `ExitCode`s that are supported by a majority of our platforms can be created, so those
2249 /// problems don't exist (as much) with this method.
2250 ///
2251 /// # Examples
2252 ///
2253 /// ```
2254 /// #![feature(exitcode_exit_method)]
2255 /// # use std::process::ExitCode;
2256 /// # use std::fmt;
2257 /// # enum UhOhError { GenericProblem, Specific, WithCode { exit_code: ExitCode, _x: () } }
2258 /// # impl fmt::Display for UhOhError {
2259 /// # fn fmt(&self, _: &mut fmt::Formatter<'_>) -> fmt::Result { unimplemented!() }
2260 /// # }
2261 /// // there's no way to gracefully recover from an UhOhError, so we just
2262 /// // print a message and exit
2263 /// fn handle_unrecoverable_error(err: UhOhError) -> ! {
2264 /// eprintln!("UH OH! {err}");
2265 /// let code = match err {
2266 /// UhOhError::GenericProblem => ExitCode::FAILURE,
2267 /// UhOhError::Specific => ExitCode::from(3),
2268 /// UhOhError::WithCode { exit_code, .. } => exit_code,
2269 /// };
2270 /// code.exit_process()
2271 /// }
2272 /// ```
2273 #[unstable(feature = "exitcode_exit_method", issue = "97100")]
2274 pub fn exit_process(self) -> ! {
2275 exit(self.to_i32())
2276 }
2277}
2278
2279impl ExitCode {
2280 // This is private/perma-unstable because ExitCode is opaque; we don't know that i32 will serve
2281 // all usecases, for example windows seems to use u32, unix uses the 8-15th bits of an i32, we
2282 // likely want to isolate users anything that could restrict the platform specific
2283 // representation of an ExitCode
2284 //
2285 // More info: https://internals.rust-lang.org/t/mini-pre-rfc-redesigning-process-exitstatus/5426
2286 /// Converts an `ExitCode` into an i32
2287 #[unstable(
2288 feature = "process_exitcode_internals",
2289 reason = "exposed only for libstd",
2290 issue = "none"
2291 )]
2292 #[inline]
2293 #[doc(hidden)]
2294 pub fn to_i32(self) -> i32 {
2295 self.0.as_i32()
2296 }
2297}
2298
2299/// The default value is [`ExitCode::SUCCESS`]
2300#[stable(feature = "process_exitcode_default", since = "1.75.0")]
2301impl Default for ExitCode {
2302 fn default() -> Self {
2303 ExitCode::SUCCESS
2304 }
2305}
2306
2307#[stable(feature = "process_exitcode", since = "1.61.0")]
2308impl From<u8> for ExitCode {
2309 /// Constructs an `ExitCode` from an arbitrary u8 value.
2310 fn from(code: u8) -> Self {
2311 ExitCode(imp::ExitCode::from(code))
2312 }
2313}
2314
2315impl AsInner<imp::ExitCode> for ExitCode {
2316 #[inline]
2317 fn as_inner(&self) -> &imp::ExitCode {
2318 &self.0
2319 }
2320}
2321
2322impl FromInner<imp::ExitCode> for ExitCode {
2323 fn from_inner(s: imp::ExitCode) -> ExitCode {
2324 ExitCode(s)
2325 }
2326}
2327
2328impl Child {
2329 /// Forces the child process to exit. If the child has already exited, `Ok(())`
2330 /// is returned.
2331 ///
2332 /// The mapping to [`ErrorKind`]s is not part of the compatibility contract of the function.
2333 ///
2334 /// This is equivalent to sending a SIGKILL on Unix platforms.
2335 ///
2336 /// # Examples
2337 ///
2338 /// ```no_run
2339 /// use std::process::Command;
2340 ///
2341 /// let mut command = Command::new("yes");
2342 /// if let Ok(mut child) = command.spawn() {
2343 /// child.kill().expect("command couldn't be killed");
2344 /// } else {
2345 /// println!("yes command didn't start");
2346 /// }
2347 /// ```
2348 ///
2349 /// [`ErrorKind`]: io::ErrorKind
2350 /// [`InvalidInput`]: io::ErrorKind::InvalidInput
2351 #[stable(feature = "process", since = "1.0.0")]
2352 #[cfg_attr(not(test), rustc_diagnostic_item = "child_kill")]
2353 pub fn kill(&mut self) -> io::Result<()> {
2354 self.handle.kill()
2355 }
2356
2357 /// Returns the OS-assigned process identifier associated with this child.
2358 ///
2359 /// # Examples
2360 ///
2361 /// ```no_run
2362 /// use std::process::Command;
2363 ///
2364 /// let mut command = Command::new("ls");
2365 /// if let Ok(child) = command.spawn() {
2366 /// println!("Child's ID is {}", child.id());
2367 /// } else {
2368 /// println!("ls command didn't start");
2369 /// }
2370 /// ```
2371 #[must_use]
2372 #[stable(feature = "process_id", since = "1.3.0")]
2373 #[cfg_attr(not(test), rustc_diagnostic_item = "child_id")]
2374 pub fn id(&self) -> u32 {
2375 self.handle.id()
2376 }
2377
2378 /// Waits for the child to exit completely, returning the status that it
2379 /// exited with. This function will continue to have the same return value
2380 /// after it has been called at least once.
2381 ///
2382 /// The stdin handle to the child process, if any, will be closed
2383 /// before waiting. This helps avoid deadlock: it ensures that the
2384 /// child does not block waiting for input from the parent, while
2385 /// the parent waits for the child to exit.
2386 ///
2387 /// # Examples
2388 ///
2389 /// ```no_run
2390 /// use std::process::Command;
2391 ///
2392 /// let mut command = Command::new("ls");
2393 /// if let Ok(mut child) = command.spawn() {
2394 /// child.wait().expect("command wasn't running");
2395 /// println!("Child has finished its execution!");
2396 /// } else {
2397 /// println!("ls command didn't start");
2398 /// }
2399 /// ```
2400 #[stable(feature = "process", since = "1.0.0")]
2401 pub fn wait(&mut self) -> io::Result<ExitStatus> {
2402 drop(self.stdin.take());
2403 self.handle.wait().map(ExitStatus)
2404 }
2405
2406 /// Attempts to collect the exit status of the child if it has already
2407 /// exited.
2408 ///
2409 /// This function will not block the calling thread and will only
2410 /// check to see if the child process has exited or not. If the child has
2411 /// exited then on Unix the process ID is reaped. This function is
2412 /// guaranteed to repeatedly return a successful exit status so long as the
2413 /// child has already exited.
2414 ///
2415 /// If the child has exited, then `Ok(Some(status))` is returned. If the
2416 /// exit status is not available at this time then `Ok(None)` is returned.
2417 /// If an error occurs, then that error is returned.
2418 ///
2419 /// Note that unlike `wait`, this function will not attempt to drop stdin.
2420 ///
2421 /// # Examples
2422 ///
2423 /// ```no_run
2424 /// use std::process::Command;
2425 ///
2426 /// let mut child = Command::new("ls").spawn()?;
2427 ///
2428 /// match child.try_wait() {
2429 /// Ok(Some(status)) => println!("exited with: {status}"),
2430 /// Ok(None) => {
2431 /// println!("status not ready yet, let's really wait");
2432 /// let res = child.wait();
2433 /// println!("result: {res:?}");
2434 /// }
2435 /// Err(e) => println!("error attempting to wait: {e}"),
2436 /// }
2437 /// # std::io::Result::Ok(())
2438 /// ```
2439 #[stable(feature = "process_try_wait", since = "1.18.0")]
2440 pub fn try_wait(&mut self) -> io::Result<Option<ExitStatus>> {
2441 Ok(self.handle.try_wait()?.map(ExitStatus))
2442 }
2443
2444 /// Simultaneously waits for the child to exit and collect all remaining
2445 /// output on the stdout/stderr handles, returning an `Output`
2446 /// instance.
2447 ///
2448 /// The stdin handle to the child process, if any, will be closed
2449 /// before waiting. This helps avoid deadlock: it ensures that the
2450 /// child does not block waiting for input from the parent, while
2451 /// the parent waits for the child to exit.
2452 ///
2453 /// By default, stdin, stdout and stderr are inherited from the parent.
2454 /// In order to capture the output into this `Result<Output>` it is
2455 /// necessary to create new pipes between parent and child. Use
2456 /// `stdout(Stdio::piped())` or `stderr(Stdio::piped())`, respectively.
2457 ///
2458 /// # Examples
2459 ///
2460 /// ```should_panic
2461 /// use std::process::{Command, Stdio};
2462 ///
2463 /// let child = Command::new("/bin/cat")
2464 /// .arg("file.txt")
2465 /// .stdout(Stdio::piped())
2466 /// .spawn()
2467 /// .expect("failed to execute child");
2468 ///
2469 /// let output = child
2470 /// .wait_with_output()
2471 /// .expect("failed to wait on child");
2472 ///
2473 /// assert!(output.status.success());
2474 /// ```
2475 ///
2476 #[stable(feature = "process", since = "1.0.0")]
2477 pub fn wait_with_output(mut self) -> io::Result<Output> {
2478 drop(self.stdin.take());
2479
2480 let (mut stdout, mut stderr) = (Vec::new(), Vec::new());
2481 match (self.stdout.take(), self.stderr.take()) {
2482 (None, None) => {}
2483 (Some(mut out), None) => {
2484 let res = out.read_to_end(&mut stdout);
2485 res.unwrap();
2486 }
2487 (None, Some(mut err)) => {
2488 let res = err.read_to_end(&mut stderr);
2489 res.unwrap();
2490 }
2491 (Some(out), Some(err)) => {
2492 let res = imp::read_output(out.inner, &mut stdout, err.inner, &mut stderr);
2493 res.unwrap();
2494 }
2495 }
2496
2497 let status = self.wait()?;
2498 Ok(Output { status, stdout, stderr })
2499 }
2500}
2501
2502/// Terminates the current process with the specified exit code.
2503///
2504/// This function will never return and will immediately terminate the current
2505/// process. The exit code is passed through to the underlying OS and will be
2506/// available for consumption by another process.
2507///
2508/// Note that because this function never returns, and that it terminates the
2509/// process, no destructors on the current stack or any other thread's stack
2510/// will be run. If a clean shutdown is needed it is recommended to only call
2511/// this function at a known point where there are no more destructors left
2512/// to run; or, preferably, simply return a type implementing [`Termination`]
2513/// (such as [`ExitCode`] or `Result`) from the `main` function and avoid this
2514/// function altogether:
2515///
2516/// ```
2517/// # use std::io::Error as MyError;
2518/// fn main() -> Result<(), MyError> {
2519/// // ...
2520/// Ok(())
2521/// }
2522/// ```
2523///
2524/// In its current implementation, this function will execute exit handlers registered with `atexit`
2525/// as well as other platform-specific exit handlers (e.g. `fini` sections of ELF shared objects).
2526/// This means that Rust requires that all exit handlers are safe to execute at any time. In
2527/// particular, if an exit handler cleans up some state that might be concurrently accessed by other
2528/// threads, it is required that the exit handler performs suitable synchronization with those
2529/// threads. (The alternative to this requirement would be to not run exit handlers at all, which is
2530/// considered undesirable. Note that returning from `main` also calls `exit`, so making `exit` an
2531/// unsafe operation is not an option.)
2532///
2533/// ## Platform-specific behavior
2534///
2535/// **Unix**: On Unix-like platforms, it is unlikely that all 32 bits of `exit`
2536/// will be visible to a parent process inspecting the exit code. On most
2537/// Unix-like platforms, only the eight least-significant bits are considered.
2538///
2539/// For example, the exit code for this example will be `0` on Linux, but `256`
2540/// on Windows:
2541///
2542/// ```no_run
2543/// use std::process;
2544///
2545/// process::exit(0x0100);
2546/// ```
2547///
2548/// ### Safe interop with C code
2549///
2550/// On Unix, this function is currently implemented using the `exit` C function [`exit`][C-exit]. As
2551/// of C23, the C standard does not permit multiple threads to call `exit` concurrently. Rust
2552/// mitigates this with a lock, but if C code calls `exit`, that can still cause undefined behavior.
2553/// Note that returning from `main` is equivalent to calling `exit`.
2554///
2555/// Therefore, it is undefined behavior to have two concurrent threads perform the following
2556/// without synchronization:
2557/// - One thread calls Rust's `exit` function or returns from Rust's `main` function
2558/// - Another thread calls the C function `exit` or `quick_exit`, or returns from C's `main` function
2559///
2560/// Note that if a binary contains multiple copies of the Rust runtime (e.g., when combining
2561/// multiple `cdylib` or `staticlib`), they each have their own separate lock, so from the
2562/// perspective of code running in one of the Rust runtimes, the "outside" Rust code is basically C
2563/// code, and concurrent `exit` again causes undefined behavior.
2564///
2565/// Individual C implementations might provide more guarantees than the standard and permit concurrent
2566/// calls to `exit`; consult the documentation of your C implementation for details.
2567///
2568/// For some of the on-going discussion to make `exit` thread-safe in C, see:
2569/// - [Rust issue #126600](https://github.com/rust-lang/rust/issues/126600)
2570/// - [Austin Group Bugzilla (for POSIX)](https://austingroupbugs.net/view.php?id=1845)
2571/// - [GNU C library Bugzilla](https://sourceware.org/bugzilla/show_bug.cgi?id=31997)
2572///
2573/// [C-exit]: https://en.cppreference.com/w/c/program/exit
2574#[stable(feature = "rust1", since = "1.0.0")]
2575#[cfg_attr(not(test), rustc_diagnostic_item = "process_exit")]
2576pub fn exit(code: i32) -> ! {
2577 crate::rt::cleanup();
2578 crate::sys::exit::exit(code)
2579}
2580
2581/// Terminates the process in an abnormal fashion.
2582///
2583/// The function will never return and will immediately terminate the current
2584/// process in a platform specific "abnormal" manner. As a consequence,
2585/// no destructors on the current stack or any other thread's stack
2586/// will be run, Rust IO buffers (eg, from `BufWriter`) will not be flushed,
2587/// and C stdio buffers will (on most platforms) not be flushed.
2588///
2589/// This is in contrast to the default behavior of [`panic!`] which unwinds
2590/// the current thread's stack and calls all destructors.
2591/// When `panic="abort"` is set, either as an argument to `rustc` or in a
2592/// crate's Cargo.toml, [`panic!`] and `abort` are similar. However,
2593/// [`panic!`] will still call the [panic hook] while `abort` will not.
2594///
2595/// If a clean shutdown is needed it is recommended to only call
2596/// this function at a known point where there are no more destructors left
2597/// to run.
2598///
2599/// The process's termination will be similar to that from the C `abort()`
2600/// function. On Unix, the process will terminate with signal `SIGABRT`, which
2601/// typically means that the shell prints "Aborted".
2602///
2603/// # Examples
2604///
2605/// ```no_run
2606/// use std::process;
2607///
2608/// fn main() {
2609/// println!("aborting");
2610///
2611/// process::abort();
2612///
2613/// // execution never gets here
2614/// }
2615/// ```
2616///
2617/// The `abort` function terminates the process, so the destructor will not
2618/// get run on the example below:
2619///
2620/// ```no_run
2621/// use std::process;
2622///
2623/// struct HasDrop;
2624///
2625/// impl Drop for HasDrop {
2626/// fn drop(&mut self) {
2627/// println!("This will never be printed!");
2628/// }
2629/// }
2630///
2631/// fn main() {
2632/// let _x = HasDrop;
2633/// process::abort();
2634/// // the destructor implemented for HasDrop will never get run
2635/// }
2636/// ```
2637///
2638/// [panic hook]: crate::panic::set_hook
2639#[stable(feature = "process_abort", since = "1.17.0")]
2640#[cold]
2641#[cfg_attr(not(test), rustc_diagnostic_item = "process_abort")]
2642#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
2643pub fn abort() -> ! {
2644 crate::sys::abort_internal();
2645}
2646
2647#[doc(inline)]
2648#[unstable(feature = "abort_immediate", issue = "154601")]
2649pub use core::process::abort_immediate;
2650
2651/// Returns the OS-assigned process identifier associated with this process.
2652///
2653/// # Examples
2654///
2655/// ```no_run
2656/// use std::process;
2657///
2658/// println!("My pid is {}", process::id());
2659/// ```
2660#[must_use]
2661#[stable(feature = "getpid", since = "1.26.0")]
2662pub fn id() -> u32 {
2663 imp::getpid()
2664}
2665
2666/// A trait for implementing arbitrary return types in the `main` function.
2667///
2668/// The C-main function only supports returning integers.
2669/// So, every type implementing the `Termination` trait has to be converted
2670/// to an integer.
2671///
2672/// The default implementations are returning `libc::EXIT_SUCCESS` to indicate
2673/// a successful execution. In case of a failure, `libc::EXIT_FAILURE` is returned.
2674///
2675/// Because different runtimes have different specifications on the return value
2676/// of the `main` function, this trait is likely to be available only on
2677/// standard library's runtime for convenience. Other runtimes are not required
2678/// to provide similar functionality.
2679#[cfg_attr(not(any(test, doctest)), lang = "termination")]
2680#[stable(feature = "termination_trait_lib", since = "1.61.0")]
2681#[rustc_on_unimplemented(on(
2682 cause = "MainFunctionType",
2683 message = "`main` has invalid return type `{Self}`",
2684 label = "`main` can only return types that implement `{This}`"
2685))]
2686pub trait Termination {
2687 /// Is called to get the representation of the value as status code.
2688 /// This status code is returned to the operating system.
2689 #[stable(feature = "termination_trait_lib", since = "1.61.0")]
2690 fn report(self) -> ExitCode;
2691}
2692
2693#[stable(feature = "termination_trait_lib", since = "1.61.0")]
2694impl Termination for () {
2695 #[inline]
2696 fn report(self) -> ExitCode {
2697 ExitCode::SUCCESS
2698 }
2699}
2700
2701#[stable(feature = "termination_trait_lib", since = "1.61.0")]
2702impl Termination for ! {
2703 fn report(self) -> ExitCode {
2704 self
2705 }
2706}
2707
2708#[stable(feature = "termination_trait_lib", since = "1.61.0")]
2709impl Termination for Infallible {
2710 fn report(self) -> ExitCode {
2711 match self {}
2712 }
2713}
2714
2715#[stable(feature = "termination_trait_lib", since = "1.61.0")]
2716impl Termination for ExitCode {
2717 #[inline]
2718 fn report(self) -> ExitCode {
2719 self
2720 }
2721}
2722
2723#[stable(feature = "termination_trait_lib", since = "1.61.0")]
2724impl<T: Termination, E: fmt::Debug> Termination for Result<T, E> {
2725 fn report(self) -> ExitCode {
2726 match self {
2727 Ok(val) => val.report(),
2728 Err(err) => {
2729 io::attempt_print_to_stderr(format_args_nl!("Error: {err:?}"));
2730 ExitCode::FAILURE
2731 }
2732 }
2733 }
2734}