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<'_>) -> 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<'_>) -> 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 /// # Examples
1066 ///
1067 /// ```no_run
1068 /// use std::process::Command;
1069 ///
1070 /// Command::new("ls")
1071 /// .spawn()
1072 /// .expect("ls command failed to start");
1073 /// ```
1074 #[stable(feature = "process", since = "1.0.0")]
1075 pub fn spawn(&mut self) -> io::Result<Child> {
1076 self.inner.spawn(imp::Stdio::Inherit, true).map(Child::from_inner)
1077 }
1078
1079 /// Executes the command as a child process, waiting for it to finish and
1080 /// collecting all of its output.
1081 ///
1082 /// By default, stdout and stderr are captured (and used to provide the
1083 /// resulting output). Stdin is not inherited from the parent and any
1084 /// attempt by the child process to read from the stdin stream will result
1085 /// in the stream immediately closing.
1086 ///
1087 /// # Examples
1088 ///
1089 /// ```should_panic
1090 /// use std::process::Command;
1091 /// use std::io::{self, Write};
1092 /// let output = Command::new("/bin/cat")
1093 /// .arg("file.txt")
1094 /// .output()?;
1095 ///
1096 /// println!("status: {}", output.status);
1097 /// io::stdout().write_all(&output.stdout)?;
1098 /// io::stderr().write_all(&output.stderr)?;
1099 ///
1100 /// assert!(output.status.success());
1101 /// # io::Result::Ok(())
1102 /// ```
1103 #[stable(feature = "process", since = "1.0.0")]
1104 pub fn output(&mut self) -> io::Result<Output> {
1105 let (status, stdout, stderr) = imp::output(&mut self.inner)?;
1106 Ok(Output { status: ExitStatus(status), stdout, stderr })
1107 }
1108
1109 /// Executes a command as a child process, waiting for it to finish and
1110 /// collecting its status.
1111 ///
1112 /// By default, stdin, stdout and stderr are inherited from the parent.
1113 ///
1114 /// # Examples
1115 ///
1116 /// ```should_panic
1117 /// use std::process::Command;
1118 ///
1119 /// let status = Command::new("/bin/cat")
1120 /// .arg("file.txt")
1121 /// .status()
1122 /// .expect("failed to execute process");
1123 ///
1124 /// println!("process finished with: {status}");
1125 ///
1126 /// assert!(status.success());
1127 /// ```
1128 #[stable(feature = "process", since = "1.0.0")]
1129 pub fn status(&mut self) -> io::Result<ExitStatus> {
1130 self.inner
1131 .spawn(imp::Stdio::Inherit, true)
1132 .map(Child::from_inner)
1133 .and_then(|mut p| p.wait())
1134 }
1135
1136 /// Returns the path to the program that was given to [`Command::new`].
1137 ///
1138 /// # Examples
1139 ///
1140 /// ```
1141 /// use std::process::Command;
1142 ///
1143 /// let cmd = Command::new("echo");
1144 /// assert_eq!(cmd.get_program(), "echo");
1145 /// ```
1146 #[must_use]
1147 #[stable(feature = "command_access", since = "1.57.0")]
1148 pub fn get_program(&self) -> &OsStr {
1149 self.inner.get_program()
1150 }
1151
1152 /// Returns an iterator of the arguments that will be passed to the program.
1153 ///
1154 /// This does not include the path to the program as the first argument;
1155 /// it only includes the arguments specified with [`Command::arg`] and
1156 /// [`Command::args`].
1157 ///
1158 /// # Examples
1159 ///
1160 /// ```
1161 /// use std::ffi::OsStr;
1162 /// use std::process::Command;
1163 ///
1164 /// let mut cmd = Command::new("echo");
1165 /// cmd.arg("first").arg("second");
1166 /// let args: Vec<&OsStr> = cmd.get_args().collect();
1167 /// assert_eq!(args, &["first", "second"]);
1168 /// ```
1169 #[stable(feature = "command_access", since = "1.57.0")]
1170 pub fn get_args(&self) -> CommandArgs<'_> {
1171 CommandArgs { inner: self.inner.get_args() }
1172 }
1173
1174 /// Returns an iterator of the environment variables explicitly set for the child process.
1175 ///
1176 /// Environment variables explicitly set using [`Command::env`], [`Command::envs`], and
1177 /// [`Command::env_remove`] can be retrieved with this method.
1178 ///
1179 /// Note that this output does not include environment variables inherited from the parent
1180 /// process. To see the full list of environment variables, including those inherited from the
1181 /// parent process, use [`Command::get_resolved_envs`].
1182 ///
1183 /// Each element is a tuple key/value pair `(&OsStr, Option<&OsStr>)`. A [`None`] value
1184 /// indicates its key was explicitly removed via [`Command::env_remove`]. The associated key for
1185 /// the [`None`] value will no longer inherit from its parent process.
1186 ///
1187 /// An empty iterator can indicate that no explicit mappings were added or that
1188 /// [`Command::env_clear`] was called. After calling [`Command::env_clear`], the child process
1189 /// will not inherit any environment variables from its parent process.
1190 ///
1191 /// # Examples
1192 ///
1193 /// ```
1194 /// use std::ffi::OsStr;
1195 /// use std::process::Command;
1196 ///
1197 /// let mut cmd = Command::new("ls");
1198 /// cmd.env("TERM", "dumb").env_remove("TZ");
1199 /// let envs: Vec<(&OsStr, Option<&OsStr>)> = cmd.get_envs().collect();
1200 /// assert_eq!(envs, &[
1201 /// (OsStr::new("TERM"), Some(OsStr::new("dumb"))),
1202 /// (OsStr::new("TZ"), None)
1203 /// ]);
1204 /// ```
1205 #[stable(feature = "command_access", since = "1.57.0")]
1206 pub fn get_envs(&self) -> CommandEnvs<'_> {
1207 CommandEnvs { iter: self.inner.get_envs() }
1208 }
1209
1210 /// Returns an iterator of the environment variables that will be set when the process is spawned.
1211 ///
1212 /// This returns the environment as it would be if the command were executed at the time of calling
1213 /// this method. The returned environment includes:
1214 /// - All inherited environment variables from the parent process (unless [`Command::env_clear`] was called)
1215 /// - All environment variables explicitly set via [`Command::env`] or [`Command::envs`]
1216 /// - Excluding any environment variables removed via [`Command::env_remove`]
1217 ///
1218 /// Note that the returned environment is a snapshot at the time this method is called and will not
1219 /// reflect any subsequent changes to the `Command` or the parent process's environment. Additionally,
1220 /// it will not reflect changes made in a `pre_exec` hook (on Unix platforms).
1221 ///
1222 /// Each element is a tuple `(OsString, OsString)` representing an environment variable key and value.
1223 ///
1224 /// # Examples
1225 ///
1226 /// ```
1227 /// #![feature(command_resolved_envs)]
1228 /// use std::process::Command;
1229 /// use std::ffi::{OsString, OsStr};
1230 /// use std::env;
1231 /// use std::collections::HashMap;
1232 ///
1233 /// let mut cmd = Command::new("ls");
1234 /// cmd.env("TZ", "UTC");
1235 /// unsafe { env::set_var("EDITOR", "vim"); }
1236 ///
1237 /// let resolved: HashMap<OsString, OsString> = cmd.get_resolved_envs().collect();
1238 /// assert_eq!(resolved.get(OsStr::new("TZ")), Some(&OsString::from("UTC")));
1239 /// assert_eq!(resolved.get(OsStr::new("EDITOR")), Some(&OsString::from("vim")));
1240 /// ```
1241 #[unstable(feature = "command_resolved_envs", issue = "149070")]
1242 pub fn get_resolved_envs(&self) -> CommandResolvedEnvs {
1243 self.inner.get_resolved_envs()
1244 }
1245
1246 /// Returns the working directory for the child process.
1247 ///
1248 /// This returns [`None`] if the working directory will not be changed.
1249 ///
1250 /// # Examples
1251 ///
1252 /// ```
1253 /// use std::path::Path;
1254 /// use std::process::Command;
1255 ///
1256 /// let mut cmd = Command::new("ls");
1257 /// assert_eq!(cmd.get_current_dir(), None);
1258 /// cmd.current_dir("/bin");
1259 /// assert_eq!(cmd.get_current_dir(), Some(Path::new("/bin")));
1260 /// ```
1261 #[must_use]
1262 #[stable(feature = "command_access", since = "1.57.0")]
1263 pub fn get_current_dir(&self) -> Option<&Path> {
1264 self.inner.get_current_dir()
1265 }
1266
1267 /// Returns whether the environment will be cleared for the child process.
1268 ///
1269 /// This returns `true` if [`Command::env_clear`] was called, and `false` otherwise.
1270 /// When `true`, the child process will not inherit any environment variables from
1271 /// its parent process.
1272 ///
1273 /// # Examples
1274 ///
1275 /// ```
1276 /// #![feature(command_resolved_envs)]
1277 /// use std::process::Command;
1278 ///
1279 /// let mut cmd = Command::new("ls");
1280 /// assert_eq!(cmd.get_env_clear(), false);
1281 ///
1282 /// cmd.env_clear();
1283 /// assert_eq!(cmd.get_env_clear(), true);
1284 /// ```
1285 #[must_use]
1286 #[unstable(feature = "command_resolved_envs", issue = "149070")]
1287 pub fn get_env_clear(&self) -> bool {
1288 self.inner.get_env_clear()
1289 }
1290}
1291
1292#[stable(feature = "rust1", since = "1.0.0")]
1293impl fmt::Debug for Command {
1294 /// Format the program and arguments of a Command for display. Any
1295 /// non-utf8 data is lossily converted using the utf8 replacement
1296 /// character.
1297 ///
1298 /// The default format approximates a shell invocation of the program along with its
1299 /// arguments. It does not include most of the other command properties. The output is not guaranteed to work
1300 /// (e.g. due to lack of shell-escaping or differences in path resolution).
1301 /// On some platforms you can use [the alternate syntax] to show more fields.
1302 ///
1303 /// Note that the debug implementation is platform-specific.
1304 ///
1305 /// [the alternate syntax]: fmt#sign0
1306 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1307 self.inner.fmt(f)
1308 }
1309}
1310
1311impl AsInner<imp::Command> for Command {
1312 #[inline]
1313 fn as_inner(&self) -> &imp::Command {
1314 &self.inner
1315 }
1316}
1317
1318impl AsInnerMut<imp::Command> for Command {
1319 #[inline]
1320 fn as_inner_mut(&mut self) -> &mut imp::Command {
1321 &mut self.inner
1322 }
1323}
1324
1325/// An iterator over the command arguments.
1326///
1327/// This struct is created by [`Command::get_args`]. See its documentation for
1328/// more.
1329#[must_use = "iterators are lazy and do nothing unless consumed"]
1330#[stable(feature = "command_access", since = "1.57.0")]
1331#[derive(Debug)]
1332pub struct CommandArgs<'a> {
1333 inner: imp::CommandArgs<'a>,
1334}
1335
1336#[stable(feature = "command_access", since = "1.57.0")]
1337impl<'a> Iterator for CommandArgs<'a> {
1338 type Item = &'a OsStr;
1339 fn next(&mut self) -> Option<&'a OsStr> {
1340 self.inner.next()
1341 }
1342 fn size_hint(&self) -> (usize, Option<usize>) {
1343 self.inner.size_hint()
1344 }
1345}
1346
1347#[stable(feature = "command_access", since = "1.57.0")]
1348impl<'a> ExactSizeIterator for CommandArgs<'a> {
1349 fn len(&self) -> usize {
1350 self.inner.len()
1351 }
1352 fn is_empty(&self) -> bool {
1353 self.inner.is_empty()
1354 }
1355}
1356
1357/// An iterator over the command environment variables.
1358///
1359/// This struct is created by
1360/// [`Command::get_envs`][crate::process::Command::get_envs]. See its
1361/// documentation for more.
1362#[must_use = "iterators are lazy and do nothing unless consumed"]
1363#[stable(feature = "command_access", since = "1.57.0")]
1364pub struct CommandEnvs<'a> {
1365 iter: imp::CommandEnvs<'a>,
1366}
1367
1368#[stable(feature = "command_access", since = "1.57.0")]
1369impl<'a> Iterator for CommandEnvs<'a> {
1370 type Item = (&'a OsStr, Option<&'a OsStr>);
1371
1372 fn next(&mut self) -> Option<Self::Item> {
1373 self.iter.next()
1374 }
1375
1376 fn size_hint(&self) -> (usize, Option<usize>) {
1377 self.iter.size_hint()
1378 }
1379}
1380
1381#[stable(feature = "command_access", since = "1.57.0")]
1382impl<'a> ExactSizeIterator for CommandEnvs<'a> {
1383 fn len(&self) -> usize {
1384 self.iter.len()
1385 }
1386
1387 fn is_empty(&self) -> bool {
1388 self.iter.is_empty()
1389 }
1390}
1391
1392#[stable(feature = "command_access", since = "1.57.0")]
1393impl<'a> fmt::Debug for CommandEnvs<'a> {
1394 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1395 self.iter.fmt(f)
1396 }
1397}
1398
1399#[unstable(feature = "command_resolved_envs", issue = "149070")]
1400pub use imp::CommandResolvedEnvs;
1401
1402/// The output of a finished process.
1403///
1404/// This is returned in a Result by either the [`output`] method of a
1405/// [`Command`], or the [`wait_with_output`] method of a [`Child`]
1406/// process.
1407///
1408/// [`output`]: Command::output
1409/// [`wait_with_output`]: Child::wait_with_output
1410#[derive(PartialEq, Eq, Clone)]
1411#[stable(feature = "process", since = "1.0.0")]
1412pub struct Output {
1413 /// The status (exit code) of the process.
1414 #[stable(feature = "process", since = "1.0.0")]
1415 pub status: ExitStatus,
1416 /// The data that the process wrote to stdout.
1417 #[stable(feature = "process", since = "1.0.0")]
1418 pub stdout: Vec<u8>,
1419 /// The data that the process wrote to stderr.
1420 #[stable(feature = "process", since = "1.0.0")]
1421 pub stderr: Vec<u8>,
1422}
1423
1424impl Output {
1425 /// Returns an error if a nonzero exit status was received.
1426 ///
1427 /// If the [`Command`] exited successfully,
1428 /// `self` is returned.
1429 ///
1430 /// This is equivalent to calling [`exit_ok`](ExitStatus::exit_ok)
1431 /// on [`Output.status`](Output::status).
1432 ///
1433 /// Note that this will throw away the [`Output::stderr`] field in the error case.
1434 /// If the child process outputs useful informantion to stderr, you can:
1435 /// * Use `cmd.stderr(Stdio::inherit())` to forward the
1436 /// stderr child process to the parent's stderr,
1437 /// usually printing it to console where the user can see it.
1438 /// This is usually correct for command-line applications.
1439 /// * Capture `stderr` using a custom error type.
1440 /// This is usually correct for libraries.
1441 ///
1442 /// # Examples
1443 ///
1444 /// ```
1445 /// # #![allow(unused_features)]
1446 /// #![feature(exit_status_error)]
1447 /// # #[cfg(all(unix, not(target_os = "android"), not(all(target_vendor = "apple", not(target_os = "macos")))))] {
1448 /// use std::process::Command;
1449 /// assert!(Command::new("false").output().unwrap().exit_ok().is_err());
1450 /// # }
1451 /// ```
1452 #[unstable(feature = "exit_status_error", issue = "84908")]
1453 pub fn exit_ok(self) -> Result<Self, ExitStatusError> {
1454 self.status.exit_ok()?;
1455 Ok(self)
1456 }
1457}
1458
1459// If either stderr or stdout are valid utf8 strings it prints the valid
1460// strings, otherwise it prints the byte sequence instead
1461#[stable(feature = "process_output_debug", since = "1.7.0")]
1462impl fmt::Debug for Output {
1463 fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
1464 let stdout_utf8 = str::from_utf8(&self.stdout);
1465 let stdout_debug: &dyn fmt::Debug = match stdout_utf8 {
1466 Ok(ref s) => s,
1467 Err(_) => &self.stdout,
1468 };
1469
1470 let stderr_utf8 = str::from_utf8(&self.stderr);
1471 let stderr_debug: &dyn fmt::Debug = match stderr_utf8 {
1472 Ok(ref s) => s,
1473 Err(_) => &self.stderr,
1474 };
1475
1476 fmt.debug_struct("Output")
1477 .field("status", &self.status)
1478 .field("stdout", stdout_debug)
1479 .field("stderr", stderr_debug)
1480 .finish()
1481 }
1482}
1483
1484/// Describes what to do with a standard I/O stream for a child process when
1485/// passed to the [`stdin`], [`stdout`], and [`stderr`] methods of [`Command`].
1486///
1487/// [`stdin`]: Command::stdin
1488/// [`stdout`]: Command::stdout
1489/// [`stderr`]: Command::stderr
1490#[stable(feature = "process", since = "1.0.0")]
1491pub struct Stdio(imp::Stdio);
1492
1493impl Stdio {
1494 /// A new pipe should be arranged to connect the parent and child processes.
1495 ///
1496 /// # Examples
1497 ///
1498 /// With stdout:
1499 ///
1500 /// ```no_run
1501 /// use std::process::{Command, Stdio};
1502 ///
1503 /// let output = Command::new("echo")
1504 /// .arg("Hello, world!")
1505 /// .stdout(Stdio::piped())
1506 /// .output()
1507 /// .expect("Failed to execute command");
1508 ///
1509 /// assert_eq!(String::from_utf8_lossy(&output.stdout), "Hello, world!\n");
1510 /// // Nothing echoed to console
1511 /// ```
1512 ///
1513 /// With stdin:
1514 ///
1515 /// ```no_run
1516 /// use std::io::Write;
1517 /// use std::process::{Command, Stdio};
1518 ///
1519 /// let mut child = Command::new("rev")
1520 /// .stdin(Stdio::piped())
1521 /// .stdout(Stdio::piped())
1522 /// .spawn()
1523 /// .expect("Failed to spawn child process");
1524 ///
1525 /// let mut stdin = child.stdin.take().expect("Failed to open stdin");
1526 /// std::thread::spawn(move || {
1527 /// stdin.write_all("Hello, world!".as_bytes()).expect("Failed to write to stdin");
1528 /// });
1529 ///
1530 /// let output = child.wait_with_output().expect("Failed to read stdout");
1531 /// assert_eq!(String::from_utf8_lossy(&output.stdout), "!dlrow ,olleH");
1532 /// ```
1533 ///
1534 /// Writing more than a pipe buffer's worth of input to stdin without also reading
1535 /// stdout and stderr at the same time may cause a deadlock.
1536 /// This is an issue when running any program that doesn't guarantee that it reads
1537 /// its entire stdin before writing more than a pipe buffer's worth of output.
1538 /// The size of a pipe buffer varies on different targets.
1539 ///
1540 #[must_use]
1541 #[stable(feature = "process", since = "1.0.0")]
1542 pub fn piped() -> Stdio {
1543 Stdio(imp::Stdio::MakePipe)
1544 }
1545
1546 /// The child inherits from the corresponding parent descriptor.
1547 ///
1548 /// # Examples
1549 ///
1550 /// With stdout:
1551 ///
1552 /// ```no_run
1553 /// use std::process::{Command, Stdio};
1554 ///
1555 /// let output = Command::new("echo")
1556 /// .arg("Hello, world!")
1557 /// .stdout(Stdio::inherit())
1558 /// .output()
1559 /// .expect("Failed to execute command");
1560 ///
1561 /// assert_eq!(String::from_utf8_lossy(&output.stdout), "");
1562 /// // "Hello, world!" echoed to console
1563 /// ```
1564 ///
1565 /// With stdin:
1566 ///
1567 /// ```no_run
1568 /// use std::process::{Command, Stdio};
1569 /// use std::io::{self, Write};
1570 ///
1571 /// let output = Command::new("rev")
1572 /// .stdin(Stdio::inherit())
1573 /// .stdout(Stdio::piped())
1574 /// .output()?;
1575 ///
1576 /// print!("You piped in the reverse of: ");
1577 /// io::stdout().write_all(&output.stdout)?;
1578 /// # io::Result::Ok(())
1579 /// ```
1580 #[must_use]
1581 #[stable(feature = "process", since = "1.0.0")]
1582 pub fn inherit() -> Stdio {
1583 Stdio(imp::Stdio::Inherit)
1584 }
1585
1586 /// This stream will be ignored. This is the equivalent of attaching the
1587 /// stream to `/dev/null`.
1588 ///
1589 /// # Examples
1590 ///
1591 /// With stdout:
1592 ///
1593 /// ```no_run
1594 /// use std::process::{Command, Stdio};
1595 ///
1596 /// let output = Command::new("echo")
1597 /// .arg("Hello, world!")
1598 /// .stdout(Stdio::null())
1599 /// .output()
1600 /// .expect("Failed to execute command");
1601 ///
1602 /// assert_eq!(String::from_utf8_lossy(&output.stdout), "");
1603 /// // Nothing echoed to console
1604 /// ```
1605 ///
1606 /// With stdin:
1607 ///
1608 /// ```no_run
1609 /// use std::process::{Command, Stdio};
1610 ///
1611 /// let output = Command::new("rev")
1612 /// .stdin(Stdio::null())
1613 /// .stdout(Stdio::piped())
1614 /// .output()
1615 /// .expect("Failed to execute command");
1616 ///
1617 /// assert_eq!(String::from_utf8_lossy(&output.stdout), "");
1618 /// // Ignores any piped-in input
1619 /// ```
1620 #[must_use]
1621 #[stable(feature = "process", since = "1.0.0")]
1622 pub fn null() -> Stdio {
1623 Stdio(imp::Stdio::Null)
1624 }
1625
1626 /// Returns `true` if this requires [`Command`] to create a new pipe.
1627 ///
1628 /// # Example
1629 ///
1630 /// ```
1631 /// #![feature(stdio_makes_pipe)]
1632 /// use std::process::Stdio;
1633 ///
1634 /// let io = Stdio::piped();
1635 /// assert_eq!(io.makes_pipe(), true);
1636 /// ```
1637 #[unstable(feature = "stdio_makes_pipe", issue = "98288")]
1638 pub fn makes_pipe(&self) -> bool {
1639 matches!(self.0, imp::Stdio::MakePipe)
1640 }
1641}
1642
1643impl FromInner<imp::Stdio> for Stdio {
1644 fn from_inner(inner: imp::Stdio) -> Stdio {
1645 Stdio(inner)
1646 }
1647}
1648
1649#[stable(feature = "std_debug", since = "1.16.0")]
1650impl fmt::Debug for Stdio {
1651 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1652 f.debug_struct("Stdio").finish_non_exhaustive()
1653 }
1654}
1655
1656#[stable(feature = "stdio_from", since = "1.20.0")]
1657impl From<ChildStdin> for Stdio {
1658 /// Converts a [`ChildStdin`] into a [`Stdio`].
1659 ///
1660 /// # Examples
1661 ///
1662 /// `ChildStdin` will be converted to `Stdio` using `Stdio::from` under the hood.
1663 ///
1664 /// ```rust,no_run
1665 /// use std::process::{Command, Stdio};
1666 ///
1667 /// let reverse = Command::new("rev")
1668 /// .stdin(Stdio::piped())
1669 /// .spawn()
1670 /// .expect("failed reverse command");
1671 ///
1672 /// let _echo = Command::new("echo")
1673 /// .arg("Hello, world!")
1674 /// .stdout(reverse.stdin.unwrap()) // Converted into a Stdio here
1675 /// .output()
1676 /// .expect("failed echo command");
1677 ///
1678 /// // "!dlrow ,olleH" echoed to console
1679 /// ```
1680 fn from(child: ChildStdin) -> Stdio {
1681 Stdio::from_inner(child.into_inner().into())
1682 }
1683}
1684
1685#[stable(feature = "stdio_from", since = "1.20.0")]
1686impl From<ChildStdout> for Stdio {
1687 /// Converts a [`ChildStdout`] into a [`Stdio`].
1688 ///
1689 /// # Examples
1690 ///
1691 /// `ChildStdout` will be converted to `Stdio` using `Stdio::from` under the hood.
1692 ///
1693 /// ```rust,no_run
1694 /// use std::process::{Command, Stdio};
1695 ///
1696 /// let hello = Command::new("echo")
1697 /// .arg("Hello, world!")
1698 /// .stdout(Stdio::piped())
1699 /// .spawn()
1700 /// .expect("failed echo command");
1701 ///
1702 /// let reverse = Command::new("rev")
1703 /// .stdin(hello.stdout.unwrap()) // Converted into a Stdio here
1704 /// .output()
1705 /// .expect("failed reverse command");
1706 ///
1707 /// assert_eq!(reverse.stdout, b"!dlrow ,olleH\n");
1708 /// ```
1709 fn from(child: ChildStdout) -> Stdio {
1710 Stdio::from_inner(child.into_inner().into())
1711 }
1712}
1713
1714#[stable(feature = "stdio_from", since = "1.20.0")]
1715impl From<ChildStderr> for Stdio {
1716 /// Converts a [`ChildStderr`] into a [`Stdio`].
1717 ///
1718 /// # Examples
1719 ///
1720 /// ```rust,no_run
1721 /// use std::process::{Command, Stdio};
1722 ///
1723 /// let reverse = Command::new("rev")
1724 /// .arg("non_existing_file.txt")
1725 /// .stderr(Stdio::piped())
1726 /// .spawn()
1727 /// .expect("failed reverse command");
1728 ///
1729 /// let cat = Command::new("cat")
1730 /// .arg("-")
1731 /// .stdin(reverse.stderr.unwrap()) // Converted into a Stdio here
1732 /// .output()
1733 /// .expect("failed echo command");
1734 ///
1735 /// assert_eq!(
1736 /// String::from_utf8_lossy(&cat.stdout),
1737 /// "rev: cannot open non_existing_file.txt: No such file or directory\n"
1738 /// );
1739 /// ```
1740 fn from(child: ChildStderr) -> Stdio {
1741 Stdio::from_inner(child.into_inner().into())
1742 }
1743}
1744
1745#[stable(feature = "stdio_from", since = "1.20.0")]
1746impl From<fs::File> for Stdio {
1747 /// Converts a [`File`](fs::File) into a [`Stdio`].
1748 ///
1749 /// # Examples
1750 ///
1751 /// `File` will be converted to `Stdio` using `Stdio::from` under the hood.
1752 ///
1753 /// ```rust,no_run
1754 /// use std::fs::File;
1755 /// use std::process::Command;
1756 ///
1757 /// // With the `foo.txt` file containing "Hello, world!"
1758 /// let file = File::open("foo.txt")?;
1759 ///
1760 /// let reverse = Command::new("rev")
1761 /// .stdin(file) // Implicit File conversion into a Stdio
1762 /// .output()?;
1763 ///
1764 /// assert_eq!(reverse.stdout, b"!dlrow ,olleH");
1765 /// # std::io::Result::Ok(())
1766 /// ```
1767 fn from(file: fs::File) -> Stdio {
1768 Stdio::from_inner(file.into_inner().into())
1769 }
1770}
1771
1772#[stable(feature = "stdio_from_stdio", since = "1.74.0")]
1773impl From<io::Stdout> for Stdio {
1774 /// Redirect command stdout/stderr to our stdout
1775 ///
1776 /// # Examples
1777 ///
1778 /// ```rust
1779 /// #![feature(exit_status_error)]
1780 /// use std::io;
1781 /// use std::process::Command;
1782 ///
1783 /// # fn test() -> Result<(), Box<dyn std::error::Error>> {
1784 /// let output = Command::new("whoami")
1785 // "whoami" is a command which exists on both Unix and Windows,
1786 // and which succeeds, producing some stdout output but no stderr.
1787 /// .stdout(io::stdout())
1788 /// .output()?;
1789 /// output.status.exit_ok()?;
1790 /// assert!(output.stdout.is_empty());
1791 /// # Ok(())
1792 /// # }
1793 /// #
1794 /// # if cfg!(all(unix, not(target_os = "android"), not(all(target_vendor = "apple", not(target_os = "macos"))))) {
1795 /// # test().unwrap();
1796 /// # }
1797 /// ```
1798 fn from(inherit: io::Stdout) -> Stdio {
1799 Stdio::from_inner(inherit.into())
1800 }
1801}
1802
1803#[stable(feature = "stdio_from_stdio", since = "1.74.0")]
1804impl From<io::Stderr> for Stdio {
1805 /// Redirect command stdout/stderr to our stderr
1806 ///
1807 /// # Examples
1808 ///
1809 /// ```rust
1810 /// #![feature(exit_status_error)]
1811 /// use std::io;
1812 /// use std::process::Command;
1813 ///
1814 /// # fn test() -> Result<(), Box<dyn std::error::Error>> {
1815 /// let output = Command::new("whoami")
1816 /// .stdout(io::stderr())
1817 /// .output()?;
1818 /// output.status.exit_ok()?;
1819 /// assert!(output.stdout.is_empty());
1820 /// # Ok(())
1821 /// # }
1822 /// #
1823 /// # if cfg!(all(unix, not(target_os = "android"), not(all(target_vendor = "apple", not(target_os = "macos"))))) {
1824 /// # test().unwrap();
1825 /// # }
1826 /// ```
1827 fn from(inherit: io::Stderr) -> Stdio {
1828 Stdio::from_inner(inherit.into())
1829 }
1830}
1831
1832#[stable(feature = "anonymous_pipe", since = "1.87.0")]
1833impl From<io::PipeWriter> for Stdio {
1834 fn from(pipe: io::PipeWriter) -> Self {
1835 Stdio::from_inner(pipe.into_inner().into())
1836 }
1837}
1838
1839#[stable(feature = "anonymous_pipe", since = "1.87.0")]
1840impl From<io::PipeReader> for Stdio {
1841 fn from(pipe: io::PipeReader) -> Self {
1842 Stdio::from_inner(pipe.into_inner().into())
1843 }
1844}
1845
1846/// Describes the result of a process after it has terminated.
1847///
1848/// This `struct` is used to represent the exit status or other termination of a child process.
1849/// Child processes are created via the [`Command`] struct and their exit
1850/// status is exposed through the [`status`] method, or the [`wait`] method
1851/// of a [`Child`] process.
1852///
1853/// An `ExitStatus` represents every possible disposition of a process. On Unix this
1854/// is the **wait status**. It is *not* simply an *exit status* (a value passed to `exit`).
1855///
1856/// For proper error reporting of failed processes, print the value of `ExitStatus` or
1857/// `ExitStatusError` using their implementations of [`Display`](crate::fmt::Display).
1858///
1859/// # Differences from `ExitCode`
1860///
1861/// [`ExitCode`] is intended for terminating the currently running process, via
1862/// the `Termination` trait, in contrast to `ExitStatus`, which represents the
1863/// termination of a child process. These APIs are separate due to platform
1864/// compatibility differences and their expected usage; it is not generally
1865/// possible to exactly reproduce an `ExitStatus` from a child for the current
1866/// process after the fact.
1867///
1868/// [`status`]: Command::status
1869/// [`wait`]: Child::wait
1870//
1871// We speak slightly loosely (here and in various other places in the stdlib docs) about `exit`
1872// vs `_exit`. Naming of Unix system calls is not standardised across Unices, so terminology is a
1873// matter of convention and tradition. For clarity we usually speak of `exit`, even when we might
1874// mean an underlying system call such as `_exit`.
1875#[derive(PartialEq, Eq, Clone, Copy, Debug)]
1876#[stable(feature = "process", since = "1.0.0")]
1877pub struct ExitStatus(imp::ExitStatus);
1878
1879/// The default value is one which indicates successful completion.
1880#[stable(feature = "process_exitstatus_default", since = "1.73.0")]
1881impl Default for ExitStatus {
1882 fn default() -> Self {
1883 // Ideally this would be done by ExitCode::default().into() but that is complicated.
1884 ExitStatus::from_inner(imp::ExitStatus::default())
1885 }
1886}
1887
1888impl ExitStatus {
1889 /// Was termination successful? Returns a `Result`.
1890 ///
1891 /// # Examples
1892 ///
1893 /// ```
1894 /// #![feature(exit_status_error)]
1895 /// # if cfg!(all(unix, not(all(target_vendor = "apple", not(target_os = "macos"))))) {
1896 /// use std::process::Command;
1897 ///
1898 /// let status = Command::new("ls")
1899 /// .arg("/dev/nonexistent")
1900 /// .status()
1901 /// .expect("ls could not be executed");
1902 ///
1903 /// println!("ls: {status}");
1904 /// status.exit_ok().expect_err("/dev/nonexistent could be listed!");
1905 /// # } // cfg!(unix)
1906 /// ```
1907 #[unstable(feature = "exit_status_error", issue = "84908")]
1908 pub fn exit_ok(&self) -> Result<(), ExitStatusError> {
1909 self.0.exit_ok().map_err(ExitStatusError)
1910 }
1911
1912 /// Was termination successful? Signal termination is not considered a
1913 /// success, and success is defined as a zero exit status.
1914 ///
1915 /// # Examples
1916 ///
1917 /// ```rust,no_run
1918 /// use std::process::Command;
1919 ///
1920 /// let status = Command::new("mkdir")
1921 /// .arg("projects")
1922 /// .status()
1923 /// .expect("failed to execute mkdir");
1924 ///
1925 /// if status.success() {
1926 /// println!("'projects/' directory created");
1927 /// } else {
1928 /// println!("failed to create 'projects/' directory: {status}");
1929 /// }
1930 /// ```
1931 #[must_use]
1932 #[stable(feature = "process", since = "1.0.0")]
1933 pub fn success(&self) -> bool {
1934 self.0.exit_ok().is_ok()
1935 }
1936
1937 /// Returns the exit code of the process, if any.
1938 ///
1939 /// In Unix terms the return value is the **exit status**: the value passed to `exit`, if the
1940 /// process finished by calling `exit`. Note that on Unix the exit status is truncated to 8
1941 /// bits, and that values that didn't come from a program's call to `exit` may be invented by the
1942 /// runtime system (often, for example, 255, 254, 127 or 126).
1943 ///
1944 /// On Unix, this will return `None` if the process was terminated by a signal.
1945 /// [`ExitStatusExt`](crate::os::unix::process::ExitStatusExt) is an
1946 /// extension trait for extracting any such signal, and other details, from the `ExitStatus`.
1947 ///
1948 /// # Examples
1949 ///
1950 /// ```no_run
1951 /// use std::process::Command;
1952 ///
1953 /// let status = Command::new("mkdir")
1954 /// .arg("projects")
1955 /// .status()
1956 /// .expect("failed to execute mkdir");
1957 ///
1958 /// match status.code() {
1959 /// Some(code) => println!("Exited with status code: {code}"),
1960 /// None => println!("Process terminated by signal")
1961 /// }
1962 /// ```
1963 #[must_use]
1964 #[stable(feature = "process", since = "1.0.0")]
1965 pub fn code(&self) -> Option<i32> {
1966 self.0.code()
1967 }
1968}
1969
1970impl AsInner<imp::ExitStatus> for ExitStatus {
1971 #[inline]
1972 fn as_inner(&self) -> &imp::ExitStatus {
1973 &self.0
1974 }
1975}
1976
1977impl FromInner<imp::ExitStatus> for ExitStatus {
1978 fn from_inner(s: imp::ExitStatus) -> ExitStatus {
1979 ExitStatus(s)
1980 }
1981}
1982
1983#[stable(feature = "process", since = "1.0.0")]
1984impl fmt::Display for ExitStatus {
1985 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1986 self.0.fmt(f)
1987 }
1988}
1989
1990/// Describes the result of a process after it has failed
1991///
1992/// Produced by the [`.exit_ok`](ExitStatus::exit_ok) method on [`ExitStatus`].
1993///
1994/// # Examples
1995///
1996/// ```
1997/// #![feature(exit_status_error)]
1998/// # if cfg!(all(unix, not(target_os = "android"), not(all(target_vendor = "apple", not(target_os = "macos"))))) {
1999/// use std::process::{Command, ExitStatusError};
2000///
2001/// fn run(cmd: &str) -> Result<(), ExitStatusError> {
2002/// Command::new(cmd).status().unwrap().exit_ok()?;
2003/// Ok(())
2004/// }
2005///
2006/// run("true").unwrap();
2007/// run("false").unwrap_err();
2008/// # } // cfg!(unix)
2009/// ```
2010#[derive(PartialEq, Eq, Clone, Copy, Debug)]
2011#[unstable(feature = "exit_status_error", issue = "84908")]
2012// The definition of imp::ExitStatusError should ideally be such that
2013// Result<(), imp::ExitStatusError> has an identical representation to imp::ExitStatus.
2014pub struct ExitStatusError(imp::ExitStatusError);
2015
2016#[unstable(feature = "exit_status_error", issue = "84908")]
2017#[doc(test(attr(allow(unused_features))))]
2018impl ExitStatusError {
2019 /// Reports the exit code, if applicable, from an `ExitStatusError`.
2020 ///
2021 /// In Unix terms the return value is the **exit status**: the value passed to `exit`, if the
2022 /// process finished by calling `exit`. Note that on Unix the exit status is truncated to 8
2023 /// bits, and that values that didn't come from a program's call to `exit` may be invented by the
2024 /// runtime system (often, for example, 255, 254, 127 or 126).
2025 ///
2026 /// On Unix, this will return `None` if the process was terminated by a signal. If you want to
2027 /// handle such situations specially, consider using methods from
2028 /// [`ExitStatusExt`](crate::os::unix::process::ExitStatusExt).
2029 ///
2030 /// If the process finished by calling `exit` with a nonzero value, this will return
2031 /// that exit status.
2032 ///
2033 /// If the error was something else, it will return `None`.
2034 ///
2035 /// If the process exited successfully (ie, by calling `exit(0)`), there is no
2036 /// `ExitStatusError`. So the return value from `ExitStatusError::code()` is always nonzero.
2037 ///
2038 /// # Examples
2039 ///
2040 /// ```
2041 /// #![feature(exit_status_error)]
2042 /// # #[cfg(all(unix, not(target_os = "android"), not(all(target_vendor = "apple", not(target_os = "macos")))))] {
2043 /// use std::process::Command;
2044 ///
2045 /// let bad = Command::new("false").status().unwrap().exit_ok().unwrap_err();
2046 /// assert_eq!(bad.code(), Some(1));
2047 /// # } // #[cfg(unix)]
2048 /// ```
2049 #[must_use]
2050 pub fn code(&self) -> Option<i32> {
2051 self.code_nonzero().map(Into::into)
2052 }
2053
2054 /// Reports the exit code, if applicable, from an `ExitStatusError`, as a [`NonZero`].
2055 ///
2056 /// This is exactly like [`code()`](Self::code), except that it returns a <code>[NonZero]<[i32]></code>.
2057 ///
2058 /// Plain `code`, returning a plain integer, is provided because it is often more convenient.
2059 /// The returned value from `code()` is indeed also nonzero; use `code_nonzero()` when you want
2060 /// a type-level guarantee of nonzeroness.
2061 ///
2062 /// # Examples
2063 ///
2064 /// ```
2065 /// #![feature(exit_status_error)]
2066 ///
2067 /// # if cfg!(all(unix, not(target_os = "android"), not(all(target_vendor = "apple", not(target_os = "macos"))))) {
2068 /// use std::num::NonZero;
2069 /// use std::process::Command;
2070 ///
2071 /// let bad = Command::new("false").status().unwrap().exit_ok().unwrap_err();
2072 /// assert_eq!(bad.code_nonzero().unwrap(), NonZero::new(1).unwrap());
2073 /// # } // cfg!(unix)
2074 /// ```
2075 #[must_use]
2076 pub fn code_nonzero(&self) -> Option<NonZero<i32>> {
2077 self.0.code()
2078 }
2079
2080 /// Converts an `ExitStatusError` (back) to an `ExitStatus`.
2081 #[must_use]
2082 pub fn into_status(&self) -> ExitStatus {
2083 ExitStatus(self.0.into())
2084 }
2085}
2086
2087#[unstable(feature = "exit_status_error", issue = "84908")]
2088impl From<ExitStatusError> for ExitStatus {
2089 fn from(error: ExitStatusError) -> Self {
2090 Self(error.0.into())
2091 }
2092}
2093
2094#[unstable(feature = "exit_status_error", issue = "84908")]
2095impl fmt::Display for ExitStatusError {
2096 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2097 write!(f, "process exited unsuccessfully: {}", self.into_status())
2098 }
2099}
2100
2101#[unstable(feature = "exit_status_error", issue = "84908")]
2102impl crate::error::Error for ExitStatusError {}
2103
2104/// This type represents the status code the current process can return
2105/// to its parent under normal termination.
2106///
2107/// `ExitCode` is intended to be consumed only by the standard library (via
2108/// [`Termination::report()`]). For forwards compatibility with potentially
2109/// unusual targets, this type currently does not provide `Eq`, `Hash`, or
2110/// access to the raw value. This type does provide `PartialEq` for
2111/// comparison, but note that there may potentially be multiple failure
2112/// codes, some of which will _not_ compare equal to `ExitCode::FAILURE`.
2113/// The standard library provides the canonical `SUCCESS` and `FAILURE`
2114/// exit codes as well as `From<u8> for ExitCode` for constructing other
2115/// arbitrary exit codes.
2116///
2117/// # Portability
2118///
2119/// Numeric values used in this type don't have portable meanings, and
2120/// different platforms may mask different amounts of them.
2121///
2122/// For the platform's canonical successful and unsuccessful codes, see
2123/// the [`SUCCESS`] and [`FAILURE`] associated items.
2124///
2125/// [`SUCCESS`]: ExitCode::SUCCESS
2126/// [`FAILURE`]: ExitCode::FAILURE
2127///
2128/// # Differences from `ExitStatus`
2129///
2130/// `ExitCode` is intended for terminating the currently running process, via
2131/// the `Termination` trait, in contrast to [`ExitStatus`], which represents the
2132/// termination of a child process. These APIs are separate due to platform
2133/// compatibility differences and their expected usage; it is not generally
2134/// possible to exactly reproduce an `ExitStatus` from a child for the current
2135/// process after the fact.
2136///
2137/// # Examples
2138///
2139/// `ExitCode` can be returned from the `main` function of a crate, as it implements
2140/// [`Termination`]:
2141///
2142/// ```
2143/// use std::process::ExitCode;
2144/// # fn check_foo() -> bool { true }
2145///
2146/// fn main() -> ExitCode {
2147/// if !check_foo() {
2148/// return ExitCode::from(42);
2149/// }
2150///
2151/// ExitCode::SUCCESS
2152/// }
2153/// ```
2154#[derive(Clone, Copy, Debug, PartialEq)]
2155#[stable(feature = "process_exitcode", since = "1.61.0")]
2156pub struct ExitCode(imp::ExitCode);
2157
2158#[stable(feature = "process_exitcode", since = "1.61.0")]
2159impl ExitCode {
2160 /// The canonical `ExitCode` for successful termination on this platform.
2161 ///
2162 /// Note that a `()`-returning `main` implicitly results in a successful
2163 /// termination, so there's no need to return this from `main` unless
2164 /// you're also returning other possible codes.
2165 #[stable(feature = "process_exitcode", since = "1.61.0")]
2166 pub const SUCCESS: ExitCode = ExitCode(imp::ExitCode::SUCCESS);
2167
2168 /// The canonical `ExitCode` for unsuccessful termination on this platform.
2169 ///
2170 /// If you're only returning this and `SUCCESS` from `main`, consider
2171 /// instead returning `Err(_)` and `Ok(())` respectively, which will
2172 /// return the same codes (but will also `eprintln!` the error).
2173 #[stable(feature = "process_exitcode", since = "1.61.0")]
2174 pub const FAILURE: ExitCode = ExitCode(imp::ExitCode::FAILURE);
2175
2176 /// Exit the current process with the given `ExitCode`.
2177 ///
2178 /// Note that this has the same caveats as [`process::exit()`][exit], namely that this function
2179 /// terminates the process immediately, so no destructors on the current stack or any other
2180 /// thread's stack will be run. Also see those docs for some important notes on interop with C
2181 /// code. If a clean shutdown is needed, it is recommended to simply return this ExitCode from
2182 /// the `main` function, as demonstrated in the [type documentation](#examples).
2183 ///
2184 /// # Differences from `process::exit()`
2185 ///
2186 /// `process::exit()` accepts any `i32` value as the exit code for the process; however, there
2187 /// are platforms that only use a subset of that value (see [`process::exit` platform-specific
2188 /// behavior][exit#platform-specific-behavior]). `ExitCode` exists because of this; only
2189 /// `ExitCode`s that are supported by a majority of our platforms can be created, so those
2190 /// problems don't exist (as much) with this method.
2191 ///
2192 /// # Examples
2193 ///
2194 /// ```
2195 /// #![feature(exitcode_exit_method)]
2196 /// # use std::process::ExitCode;
2197 /// # use std::fmt;
2198 /// # enum UhOhError { GenericProblem, Specific, WithCode { exit_code: ExitCode, _x: () } }
2199 /// # impl fmt::Display for UhOhError {
2200 /// # fn fmt(&self, _: &mut fmt::Formatter<'_>) -> fmt::Result { unimplemented!() }
2201 /// # }
2202 /// // there's no way to gracefully recover from an UhOhError, so we just
2203 /// // print a message and exit
2204 /// fn handle_unrecoverable_error(err: UhOhError) -> ! {
2205 /// eprintln!("UH OH! {err}");
2206 /// let code = match err {
2207 /// UhOhError::GenericProblem => ExitCode::FAILURE,
2208 /// UhOhError::Specific => ExitCode::from(3),
2209 /// UhOhError::WithCode { exit_code, .. } => exit_code,
2210 /// };
2211 /// code.exit_process()
2212 /// }
2213 /// ```
2214 #[unstable(feature = "exitcode_exit_method", issue = "97100")]
2215 pub fn exit_process(self) -> ! {
2216 exit(self.to_i32())
2217 }
2218}
2219
2220impl ExitCode {
2221 // This is private/perma-unstable because ExitCode is opaque; we don't know that i32 will serve
2222 // all usecases, for example windows seems to use u32, unix uses the 8-15th bits of an i32, we
2223 // likely want to isolate users anything that could restrict the platform specific
2224 // representation of an ExitCode
2225 //
2226 // More info: https://internals.rust-lang.org/t/mini-pre-rfc-redesigning-process-exitstatus/5426
2227 /// Converts an `ExitCode` into an i32
2228 #[unstable(
2229 feature = "process_exitcode_internals",
2230 reason = "exposed only for libstd",
2231 issue = "none"
2232 )]
2233 #[inline]
2234 #[doc(hidden)]
2235 pub fn to_i32(self) -> i32 {
2236 self.0.as_i32()
2237 }
2238}
2239
2240/// The default value is [`ExitCode::SUCCESS`]
2241#[stable(feature = "process_exitcode_default", since = "1.75.0")]
2242impl Default for ExitCode {
2243 fn default() -> Self {
2244 ExitCode::SUCCESS
2245 }
2246}
2247
2248#[stable(feature = "process_exitcode", since = "1.61.0")]
2249impl From<u8> for ExitCode {
2250 /// Constructs an `ExitCode` from an arbitrary u8 value.
2251 fn from(code: u8) -> Self {
2252 ExitCode(imp::ExitCode::from(code))
2253 }
2254}
2255
2256impl AsInner<imp::ExitCode> for ExitCode {
2257 #[inline]
2258 fn as_inner(&self) -> &imp::ExitCode {
2259 &self.0
2260 }
2261}
2262
2263impl FromInner<imp::ExitCode> for ExitCode {
2264 fn from_inner(s: imp::ExitCode) -> ExitCode {
2265 ExitCode(s)
2266 }
2267}
2268
2269impl Child {
2270 /// Forces the child process to exit. If the child has already exited, `Ok(())`
2271 /// is returned.
2272 ///
2273 /// The mapping to [`ErrorKind`]s is not part of the compatibility contract of the function.
2274 ///
2275 /// This is equivalent to sending a SIGKILL on Unix platforms.
2276 ///
2277 /// # Examples
2278 ///
2279 /// ```no_run
2280 /// use std::process::Command;
2281 ///
2282 /// let mut command = Command::new("yes");
2283 /// if let Ok(mut child) = command.spawn() {
2284 /// child.kill().expect("command couldn't be killed");
2285 /// } else {
2286 /// println!("yes command didn't start");
2287 /// }
2288 /// ```
2289 ///
2290 /// [`ErrorKind`]: io::ErrorKind
2291 /// [`InvalidInput`]: io::ErrorKind::InvalidInput
2292 #[stable(feature = "process", since = "1.0.0")]
2293 #[cfg_attr(not(test), rustc_diagnostic_item = "child_kill")]
2294 pub fn kill(&mut self) -> io::Result<()> {
2295 self.handle.kill()
2296 }
2297
2298 /// Returns the OS-assigned process identifier associated with this child.
2299 ///
2300 /// # Examples
2301 ///
2302 /// ```no_run
2303 /// use std::process::Command;
2304 ///
2305 /// let mut command = Command::new("ls");
2306 /// if let Ok(child) = command.spawn() {
2307 /// println!("Child's ID is {}", child.id());
2308 /// } else {
2309 /// println!("ls command didn't start");
2310 /// }
2311 /// ```
2312 #[must_use]
2313 #[stable(feature = "process_id", since = "1.3.0")]
2314 #[cfg_attr(not(test), rustc_diagnostic_item = "child_id")]
2315 pub fn id(&self) -> u32 {
2316 self.handle.id()
2317 }
2318
2319 /// Waits for the child to exit completely, returning the status that it
2320 /// exited with. This function will continue to have the same return value
2321 /// after it has been called at least once.
2322 ///
2323 /// The stdin handle to the child process, if any, will be closed
2324 /// before waiting. This helps avoid deadlock: it ensures that the
2325 /// child does not block waiting for input from the parent, while
2326 /// the parent waits for the child to exit.
2327 ///
2328 /// # Examples
2329 ///
2330 /// ```no_run
2331 /// use std::process::Command;
2332 ///
2333 /// let mut command = Command::new("ls");
2334 /// if let Ok(mut child) = command.spawn() {
2335 /// child.wait().expect("command wasn't running");
2336 /// println!("Child has finished its execution!");
2337 /// } else {
2338 /// println!("ls command didn't start");
2339 /// }
2340 /// ```
2341 #[stable(feature = "process", since = "1.0.0")]
2342 pub fn wait(&mut self) -> io::Result<ExitStatus> {
2343 drop(self.stdin.take());
2344 self.handle.wait().map(ExitStatus)
2345 }
2346
2347 /// Attempts to collect the exit status of the child if it has already
2348 /// exited.
2349 ///
2350 /// This function will not block the calling thread and will only
2351 /// check to see if the child process has exited or not. If the child has
2352 /// exited then on Unix the process ID is reaped. This function is
2353 /// guaranteed to repeatedly return a successful exit status so long as the
2354 /// child has already exited.
2355 ///
2356 /// If the child has exited, then `Ok(Some(status))` is returned. If the
2357 /// exit status is not available at this time then `Ok(None)` is returned.
2358 /// If an error occurs, then that error is returned.
2359 ///
2360 /// Note that unlike `wait`, this function will not attempt to drop stdin.
2361 ///
2362 /// # Examples
2363 ///
2364 /// ```no_run
2365 /// use std::process::Command;
2366 ///
2367 /// let mut child = Command::new("ls").spawn()?;
2368 ///
2369 /// match child.try_wait() {
2370 /// Ok(Some(status)) => println!("exited with: {status}"),
2371 /// Ok(None) => {
2372 /// println!("status not ready yet, let's really wait");
2373 /// let res = child.wait();
2374 /// println!("result: {res:?}");
2375 /// }
2376 /// Err(e) => println!("error attempting to wait: {e}"),
2377 /// }
2378 /// # std::io::Result::Ok(())
2379 /// ```
2380 #[stable(feature = "process_try_wait", since = "1.18.0")]
2381 pub fn try_wait(&mut self) -> io::Result<Option<ExitStatus>> {
2382 Ok(self.handle.try_wait()?.map(ExitStatus))
2383 }
2384
2385 /// Simultaneously waits for the child to exit and collect all remaining
2386 /// output on the stdout/stderr handles, returning an `Output`
2387 /// instance.
2388 ///
2389 /// The stdin handle to the child process, if any, will be closed
2390 /// before waiting. This helps avoid deadlock: it ensures that the
2391 /// child does not block waiting for input from the parent, while
2392 /// the parent waits for the child to exit.
2393 ///
2394 /// By default, stdin, stdout and stderr are inherited from the parent.
2395 /// In order to capture the output into this `Result<Output>` it is
2396 /// necessary to create new pipes between parent and child. Use
2397 /// `stdout(Stdio::piped())` or `stderr(Stdio::piped())`, respectively.
2398 ///
2399 /// # Examples
2400 ///
2401 /// ```should_panic
2402 /// use std::process::{Command, Stdio};
2403 ///
2404 /// let child = Command::new("/bin/cat")
2405 /// .arg("file.txt")
2406 /// .stdout(Stdio::piped())
2407 /// .spawn()
2408 /// .expect("failed to execute child");
2409 ///
2410 /// let output = child
2411 /// .wait_with_output()
2412 /// .expect("failed to wait on child");
2413 ///
2414 /// assert!(output.status.success());
2415 /// ```
2416 ///
2417 #[stable(feature = "process", since = "1.0.0")]
2418 pub fn wait_with_output(mut self) -> io::Result<Output> {
2419 drop(self.stdin.take());
2420
2421 let (mut stdout, mut stderr) = (Vec::new(), Vec::new());
2422 match (self.stdout.take(), self.stderr.take()) {
2423 (None, None) => {}
2424 (Some(mut out), None) => {
2425 let res = out.read_to_end(&mut stdout);
2426 res.unwrap();
2427 }
2428 (None, Some(mut err)) => {
2429 let res = err.read_to_end(&mut stderr);
2430 res.unwrap();
2431 }
2432 (Some(out), Some(err)) => {
2433 let res = imp::read_output(out.inner, &mut stdout, err.inner, &mut stderr);
2434 res.unwrap();
2435 }
2436 }
2437
2438 let status = self.wait()?;
2439 Ok(Output { status, stdout, stderr })
2440 }
2441}
2442
2443/// Terminates the current process with the specified exit code.
2444///
2445/// This function will never return and will immediately terminate the current
2446/// process. The exit code is passed through to the underlying OS and will be
2447/// available for consumption by another process.
2448///
2449/// Note that because this function never returns, and that it terminates the
2450/// process, no destructors on the current stack or any other thread's stack
2451/// will be run. If a clean shutdown is needed it is recommended to only call
2452/// this function at a known point where there are no more destructors left
2453/// to run; or, preferably, simply return a type implementing [`Termination`]
2454/// (such as [`ExitCode`] or `Result`) from the `main` function and avoid this
2455/// function altogether:
2456///
2457/// ```
2458/// # use std::io::Error as MyError;
2459/// fn main() -> Result<(), MyError> {
2460/// // ...
2461/// Ok(())
2462/// }
2463/// ```
2464///
2465/// In its current implementation, this function will execute exit handlers registered with `atexit`
2466/// as well as other platform-specific exit handlers (e.g. `fini` sections of ELF shared objects).
2467/// This means that Rust requires that all exit handlers are safe to execute at any time. In
2468/// particular, if an exit handler cleans up some state that might be concurrently accessed by other
2469/// threads, it is required that the exit handler performs suitable synchronization with those
2470/// threads. (The alternative to this requirement would be to not run exit handlers at all, which is
2471/// considered undesirable. Note that returning from `main` also calls `exit`, so making `exit` an
2472/// unsafe operation is not an option.)
2473///
2474/// ## Platform-specific behavior
2475///
2476/// **Unix**: On Unix-like platforms, it is unlikely that all 32 bits of `exit`
2477/// will be visible to a parent process inspecting the exit code. On most
2478/// Unix-like platforms, only the eight least-significant bits are considered.
2479///
2480/// For example, the exit code for this example will be `0` on Linux, but `256`
2481/// on Windows:
2482///
2483/// ```no_run
2484/// use std::process;
2485///
2486/// process::exit(0x0100);
2487/// ```
2488///
2489/// ### Safe interop with C code
2490///
2491/// On Unix, this function is currently implemented using the `exit` C function [`exit`][C-exit]. As
2492/// of C23, the C standard does not permit multiple threads to call `exit` concurrently. Rust
2493/// mitigates this with a lock, but if C code calls `exit`, that can still cause undefined behavior.
2494/// Note that returning from `main` is equivalent to calling `exit`.
2495///
2496/// Therefore, it is undefined behavior to have two concurrent threads perform the following
2497/// without synchronization:
2498/// - One thread calls Rust's `exit` function or returns from Rust's `main` function
2499/// - Another thread calls the C function `exit` or `quick_exit`, or returns from C's `main` function
2500///
2501/// Note that if a binary contains multiple copies of the Rust runtime (e.g., when combining
2502/// multiple `cdylib` or `staticlib`), they each have their own separate lock, so from the
2503/// perspective of code running in one of the Rust runtimes, the "outside" Rust code is basically C
2504/// code, and concurrent `exit` again causes undefined behavior.
2505///
2506/// Individual C implementations might provide more guarantees than the standard and permit concurrent
2507/// calls to `exit`; consult the documentation of your C implementation for details.
2508///
2509/// For some of the on-going discussion to make `exit` thread-safe in C, see:
2510/// - [Rust issue #126600](https://github.com/rust-lang/rust/issues/126600)
2511/// - [Austin Group Bugzilla (for POSIX)](https://austingroupbugs.net/view.php?id=1845)
2512/// - [GNU C library Bugzilla](https://sourceware.org/bugzilla/show_bug.cgi?id=31997)
2513///
2514/// [C-exit]: https://en.cppreference.com/w/c/program/exit
2515#[stable(feature = "rust1", since = "1.0.0")]
2516#[cfg_attr(not(test), rustc_diagnostic_item = "process_exit")]
2517pub fn exit(code: i32) -> ! {
2518 crate::rt::cleanup();
2519 crate::sys::exit::exit(code)
2520}
2521
2522/// Terminates the process in an abnormal fashion.
2523///
2524/// The function will never return and will immediately terminate the current
2525/// process in a platform specific "abnormal" manner. As a consequence,
2526/// no destructors on the current stack or any other thread's stack
2527/// will be run, Rust IO buffers (eg, from `BufWriter`) will not be flushed,
2528/// and C stdio buffers will (on most platforms) not be flushed.
2529///
2530/// This is in contrast to the default behavior of [`panic!`] which unwinds
2531/// the current thread's stack and calls all destructors.
2532/// When `panic="abort"` is set, either as an argument to `rustc` or in a
2533/// crate's Cargo.toml, [`panic!`] and `abort` are similar. However,
2534/// [`panic!`] will still call the [panic hook] while `abort` will not.
2535///
2536/// If a clean shutdown is needed it is recommended to only call
2537/// this function at a known point where there are no more destructors left
2538/// to run.
2539///
2540/// The process's termination will be similar to that from the C `abort()`
2541/// function. On Unix, the process will terminate with signal `SIGABRT`, which
2542/// typically means that the shell prints "Aborted".
2543///
2544/// # Examples
2545///
2546/// ```no_run
2547/// use std::process;
2548///
2549/// fn main() {
2550/// println!("aborting");
2551///
2552/// process::abort();
2553///
2554/// // execution never gets here
2555/// }
2556/// ```
2557///
2558/// The `abort` function terminates the process, so the destructor will not
2559/// get run on the example below:
2560///
2561/// ```no_run
2562/// use std::process;
2563///
2564/// struct HasDrop;
2565///
2566/// impl Drop for HasDrop {
2567/// fn drop(&mut self) {
2568/// println!("This will never be printed!");
2569/// }
2570/// }
2571///
2572/// fn main() {
2573/// let _x = HasDrop;
2574/// process::abort();
2575/// // the destructor implemented for HasDrop will never get run
2576/// }
2577/// ```
2578///
2579/// [panic hook]: crate::panic::set_hook
2580#[stable(feature = "process_abort", since = "1.17.0")]
2581#[cold]
2582#[cfg_attr(not(test), rustc_diagnostic_item = "process_abort")]
2583#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
2584pub fn abort() -> ! {
2585 crate::sys::abort_internal();
2586}
2587
2588#[doc(inline)]
2589#[unstable(feature = "abort_immediate", issue = "154601")]
2590pub use core::process::abort_immediate;
2591
2592/// Returns the OS-assigned process identifier associated with this process.
2593///
2594/// # Examples
2595///
2596/// ```no_run
2597/// use std::process;
2598///
2599/// println!("My pid is {}", process::id());
2600/// ```
2601#[must_use]
2602#[stable(feature = "getpid", since = "1.26.0")]
2603pub fn id() -> u32 {
2604 imp::getpid()
2605}
2606
2607/// A trait for implementing arbitrary return types in the `main` function.
2608///
2609/// The C-main function only supports returning integers.
2610/// So, every type implementing the `Termination` trait has to be converted
2611/// to an integer.
2612///
2613/// The default implementations are returning `libc::EXIT_SUCCESS` to indicate
2614/// a successful execution. In case of a failure, `libc::EXIT_FAILURE` is returned.
2615///
2616/// Because different runtimes have different specifications on the return value
2617/// of the `main` function, this trait is likely to be available only on
2618/// standard library's runtime for convenience. Other runtimes are not required
2619/// to provide similar functionality.
2620#[cfg_attr(not(any(test, doctest)), lang = "termination")]
2621#[stable(feature = "termination_trait_lib", since = "1.61.0")]
2622#[rustc_on_unimplemented(on(
2623 cause = "MainFunctionType",
2624 message = "`main` has invalid return type `{Self}`",
2625 label = "`main` can only return types that implement `{This}`"
2626))]
2627pub trait Termination {
2628 /// Is called to get the representation of the value as status code.
2629 /// This status code is returned to the operating system.
2630 #[stable(feature = "termination_trait_lib", since = "1.61.0")]
2631 fn report(self) -> ExitCode;
2632}
2633
2634#[stable(feature = "termination_trait_lib", since = "1.61.0")]
2635impl Termination for () {
2636 #[inline]
2637 fn report(self) -> ExitCode {
2638 ExitCode::SUCCESS
2639 }
2640}
2641
2642#[stable(feature = "termination_trait_lib", since = "1.61.0")]
2643impl Termination for ! {
2644 fn report(self) -> ExitCode {
2645 self
2646 }
2647}
2648
2649#[stable(feature = "termination_trait_lib", since = "1.61.0")]
2650impl Termination for Infallible {
2651 fn report(self) -> ExitCode {
2652 match self {}
2653 }
2654}
2655
2656#[stable(feature = "termination_trait_lib", since = "1.61.0")]
2657impl Termination for ExitCode {
2658 #[inline]
2659 fn report(self) -> ExitCode {
2660 self
2661 }
2662}
2663
2664#[stable(feature = "termination_trait_lib", since = "1.61.0")]
2665impl<T: Termination, E: fmt::Debug> Termination for Result<T, E> {
2666 fn report(self) -> ExitCode {
2667 match self {
2668 Ok(val) => val.report(),
2669 Err(err) => {
2670 io::attempt_print_to_stderr(format_args_nl!("Error: {err:?}"));
2671 ExitCode::FAILURE
2672 }
2673 }
2674 }
2675}